scanner.svg 361 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
  5. xmlns:dc="http://purl.org/dc/elements/1.1/"
  6. xmlns:cc="http://creativecommons.org/ns#"
  7. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  8. xmlns:svg="http://www.w3.org/2000/svg"
  9. xmlns="http://www.w3.org/2000/svg"
  10. xmlns:xlink="http://www.w3.org/1999/xlink"
  11. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  12. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  13. width="64"
  14. height="64"
  15. id="svg5453"
  16. version="1.1"
  17. inkscape:version="0.91 r13725"
  18. sodipodi:docname="scanner.svg">
  19. <defs
  20. id="defs5455">
  21. <linearGradient
  22. id="linearGradient6307">
  23. <stop
  24. id="stop6309"
  25. offset="0"
  26. style="stop-color:#00a5cc;stop-opacity:1" />
  27. <stop
  28. id="stop6311"
  29. offset="1"
  30. style="stop-color:#0086cc;stop-opacity:0" />
  31. </linearGradient>
  32. <linearGradient
  33. id="linearGradient3600-9-14">
  34. <stop
  35. id="stop3602-3-8"
  36. style="stop-color:#f4f4f4;stop-opacity:1"
  37. offset="0" />
  38. <stop
  39. id="stop3604-7-1"
  40. style="stop-color:#dbdbdb;stop-opacity:1"
  41. offset="1" />
  42. </linearGradient>
  43. <linearGradient
  44. id="linearGradient4207"
  45. osb:paint="gradient">
  46. <stop
  47. style="stop-color:#3498db;stop-opacity:1;"
  48. offset="0"
  49. id="stop3371" />
  50. <stop
  51. style="stop-color:#3498db;stop-opacity:0;"
  52. offset="1"
  53. id="stop3373" />
  54. </linearGradient>
  55. <linearGradient
  56. id="linearGradient4503"
  57. inkscape:collect="always">
  58. <stop
  59. id="stop4505"
  60. offset="0"
  61. style="stop-color:#141414;stop-opacity:1" />
  62. <stop
  63. id="stop4507"
  64. offset="1"
  65. style="stop-color:#2d2d2f;stop-opacity:1" />
  66. </linearGradient>
  67. <linearGradient
  68. id="linearGradient3781">
  69. <stop
  70. style="stop-color:#dcdcdc;stop-opacity:1;"
  71. offset="0"
  72. id="stop3783" />
  73. <stop
  74. style="stop-color:#f0f0f0;stop-opacity:1;"
  75. offset="1"
  76. id="stop3785" />
  77. </linearGradient>
  78. <linearGradient
  79. inkscape:collect="always"
  80. xlink:href="#linearGradient4503"
  81. id="linearGradient6444"
  82. x1="409.62869"
  83. y1="546.42883"
  84. x2="409.80545"
  85. y2="499.22943"
  86. gradientUnits="userSpaceOnUse" />
  87. <linearGradient
  88. inkscape:collect="always"
  89. xlink:href="#linearGradient3600-9-14"
  90. id="linearGradient6452"
  91. x1="393.1712"
  92. y1="502.58475"
  93. x2="394.80353"
  94. y2="547.66284"
  95. gradientUnits="userSpaceOnUse" />
  96. <linearGradient
  97. y2="1015.3622"
  98. x2="32"
  99. y1="1017.8702"
  100. x1="32"
  101. spreadMethod="reflect"
  102. gradientTransform="matrix(2.0479406,0,0,1.8000001,1.0864698,-789.55189)"
  103. gradientUnits="userSpaceOnUse"
  104. id="linearGradient4305"
  105. xlink:href="#linearGradient6307"
  106. inkscape:collect="always" />
  107. <linearGradient
  108. inkscape:collect="always"
  109. xlink:href="#linearGradient3781"
  110. id="linearGradient6497"
  111. x1="409.62866"
  112. y1="540.86035"
  113. x2="405.91635"
  114. y2="505.15146"
  115. gradientUnits="userSpaceOnUse"
  116. gradientTransform="translate(-0.5269048,0.08497066)" />
  117. </defs>
  118. <sodipodi:namedview
  119. id="base"
  120. pagecolor="#8b8b8b"
  121. bordercolor="#666666"
  122. borderopacity="1.0"
  123. inkscape:pageopacity="0"
  124. inkscape:pageshadow="2"
  125. inkscape:zoom="2.8284273"
  126. inkscape:cx="48.449112"
  127. inkscape:cy="50.306139"
  128. inkscape:document-units="px"
  129. inkscape:current-layer="layer1"
  130. showgrid="false"
  131. fit-margin-top="0"
  132. fit-margin-left="0"
  133. fit-margin-right="0"
  134. fit-margin-bottom="0"
  135. inkscape:window-width="1366"
  136. inkscape:window-height="630"
  137. inkscape:window-x="0"
  138. inkscape:window-y="36"
  139. inkscape:window-maximized="1"
  140. inkscape:showpageshadow="false"
  141. borderlayer="true"
  142. showguides="false"
  143. inkscape:snap-bbox="true"
  144. inkscape:object-nodes="true"
  145. inkscape:snap-others="false">
  146. <inkscape:grid
  147. type="xygrid"
  148. id="grid4063"
  149. originx="7.9999866px"
  150. originy="7.9999772px" />
  151. <sodipodi:guide
  152. position="0,0"
  153. orientation="0,64"
  154. id="guide4196" />
  155. <sodipodi:guide
  156. position="64,0"
  157. orientation="-64,0"
  158. id="guide4198" />
  159. <sodipodi:guide
  160. position="64,64"
  161. orientation="0,-64"
  162. id="guide4200" />
  163. <sodipodi:guide
  164. position="6,58"
  165. orientation="52,0"
  166. id="guide4202" />
  167. <sodipodi:guide
  168. position="6,6"
  169. orientation="0,52"
  170. id="guide4204" />
  171. <sodipodi:guide
  172. position="58,6"
  173. orientation="-52,0"
  174. id="guide4206" />
  175. <sodipodi:guide
  176. position="58,58"
  177. orientation="0,-52"
  178. id="guide4208" />
  179. <sodipodi:guide
  180. position="23,23"
  181. orientation="0,20"
  182. id="guide4869" />
  183. <sodipodi:guide
  184. position="43,43"
  185. orientation="0,-20"
  186. id="guide4873" />
  187. <sodipodi:guide
  188. position="117.99999,27.999977"
  189. orientation="0,14"
  190. id="guide4223" />
  191. <sodipodi:guide
  192. position="29.000002,48.999966"
  193. orientation="0,-14"
  194. id="guide4227" />
  195. </sodipodi:namedview>
  196. <metadata
  197. id="metadata5458">
  198. <rdf:RDF>
  199. <cc:Work
  200. rdf:about="">
  201. <dc:format>image/svg+xml</dc:format>
  202. <dc:type
  203. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  204. <dc:title></dc:title>
  205. </cc:Work>
  206. </rdf:RDF>
  207. </metadata>
  208. <g
  209. inkscape:label="Capa 1"
  210. inkscape:groupmode="layer"
  211. id="layer1"
  212. transform="translate(-376.57144,-491.79797)">
  213. <rect
  214. style="opacity:1;fill:url(#linearGradient6444);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6452);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  215. id="rect6110"
  216. width="39.639343"
  217. height="49.868904"
  218. x="388.75177"
  219. y="498.86353"
  220. ry="2" />
  221. <rect
  222. style="opacity:1;fill:url(#linearGradient6497);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
  223. id="rect6489"
  224. width="30.052036"
  225. height="39.774754"
  226. x="393.54541"
  227. y="503.91058"
  228. ry="1" />
  229. <g
  230. style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#141415;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
  231. id="text6499"
  232. transform="matrix(0.23899533,0,0,0.23899533,276.78961,394.84733)">
  233. <path
  234. d="m 499.05824,490.79797 0,-3.58 1.095,0 q 0.825,0 1.32,0.5 0.495,0.495 0.495,1.29 0,0.795 -0.495,1.295 -0.495,0.495 -1.32,0.495 l -1.095,0 z m 0.46,-0.44 0.635,0 q 0.62,0 0.98,-0.355 0.365,-0.355 0.365,-0.995 0,-0.635 -0.365,-0.99 -0.36,-0.36 -0.98,-0.36 l -0.635,0 0,2.7 z"
  235. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  236. id="path6538"
  237. inkscape:connector-curvature="0" />
  238. <path
  239. d="m 503.46715,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  240. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  241. id="path6540"
  242. inkscape:connector-curvature="0" />
  243. <path
  244. d="m 505.49293,490.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  245. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  246. id="path6542"
  247. inkscape:connector-curvature="0" />
  248. <path
  249. d="m 507.59207,488.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  250. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  251. id="path6544"
  252. inkscape:connector-curvature="0" />
  253. <path
  254. d="m 510.36691,487.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  255. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  256. id="path6546"
  257. inkscape:connector-curvature="0" />
  258. <path
  259. d="m 512.06113,490.87797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  260. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  261. id="path6548"
  262. inkscape:connector-curvature="0" />
  263. <path
  264. d="m 514.00855,487.21797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  265. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  266. id="path6550"
  267. inkscape:connector-curvature="0" />
  268. <path
  269. d="m 516.4784,488.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  270. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  271. id="path6552"
  272. inkscape:connector-curvature="0" />
  273. <path
  274. d="m 520.62965,487.21797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  275. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  276. id="path6554"
  277. inkscape:connector-curvature="0" />
  278. <path
  279. d="m 523.99449,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  280. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  281. id="path6556"
  282. inkscape:connector-curvature="0" />
  283. <path
  284. d="m 526.02027,490.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  285. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  286. id="path6558"
  287. inkscape:connector-curvature="0" />
  288. <path
  289. d="m 527.3216,490.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  290. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  291. id="path6560"
  292. inkscape:connector-curvature="0" />
  293. <path
  294. d="m 530.1009,490.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  295. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  296. id="path6562"
  297. inkscape:connector-curvature="0" />
  298. <path
  299. d="m 532.14246,488.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  300. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  301. id="path6564"
  302. inkscape:connector-curvature="0" />
  303. <path
  304. d="m 536.94371,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  305. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  306. id="path6566"
  307. inkscape:connector-curvature="0" />
  308. <path
  309. d="m 538.94949,488.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  310. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  311. id="path6568"
  312. inkscape:connector-curvature="0" />
  313. <path
  314. d="m 544.18785,491.87797 0,-1.08 0.02,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 0,-0.34 0.44,0 0,3.53 -0.46,0 z m -0.76,-1.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  315. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  316. id="path6570"
  317. inkscape:connector-curvature="0" />
  318. <path
  319. d="m 547.33918,490.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  320. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  321. id="path6572"
  322. inkscape:connector-curvature="0" />
  323. <path
  324. d="m 548.98473,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  325. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  326. id="path6574"
  327. inkscape:connector-curvature="0" />
  328. <path
  329. d="m 552.11402,490.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  330. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  331. id="path6576"
  332. inkscape:connector-curvature="0" />
  333. <path
  334. d="m 552.85535,488.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  335. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  336. id="path6578"
  337. inkscape:connector-curvature="0" />
  338. <path
  339. d="m 556.32379,490.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  340. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  341. id="path6580"
  342. inkscape:connector-curvature="0" />
  343. <path
  344. d="m 559.2527,487.21797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  345. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  346. id="path6582"
  347. inkscape:connector-curvature="0" />
  348. <path
  349. d="m 561.72254,488.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  350. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  351. id="path6584"
  352. inkscape:connector-curvature="0" />
  353. <path
  354. d="m 564.26145,490.79797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  355. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  356. id="path6586"
  357. inkscape:connector-curvature="0" />
  358. <path
  359. d="m 569.81426,490.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  360. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  361. id="path6588"
  362. inkscape:connector-curvature="0" />
  363. <path
  364. d="m 571.81129,490.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  365. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  366. id="path6590"
  367. inkscape:connector-curvature="0" />
  368. <path
  369. d="m 574.13121,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  370. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  371. id="path6592"
  372. inkscape:connector-curvature="0" />
  373. <path
  374. d="m 576.63629,490.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  375. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  376. id="path6594"
  377. inkscape:connector-curvature="0" />
  378. <path
  379. d="m 580.1652,490.83797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  380. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  381. id="path6596"
  382. inkscape:connector-curvature="0" />
  383. <path
  384. d="m 581.95348,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  385. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  386. id="path6598"
  387. inkscape:connector-curvature="0" />
  388. <path
  389. d="m 585.89777,490.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  390. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  391. id="path6600"
  392. inkscape:connector-curvature="0" />
  393. <path
  394. d="m 589.6048,490.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  395. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  396. id="path6602"
  397. inkscape:connector-curvature="0" />
  398. <path
  399. d="m 591.05035,490.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  400. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  401. id="path6604"
  402. inkscape:connector-curvature="0" />
  403. <path
  404. d="m 592.88645,487.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  405. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  406. id="path6606"
  407. inkscape:connector-curvature="0" />
  408. <path
  409. d="m 594.57066,490.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  410. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  411. id="path6608"
  412. inkscape:connector-curvature="0" />
  413. <path
  414. d="m 596.59645,490.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  415. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  416. id="path6610"
  417. inkscape:connector-curvature="0" />
  418. <path
  419. d="m 598.02137,488.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  420. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  421. id="path6612"
  422. inkscape:connector-curvature="0" />
  423. <path
  424. d="m 601.00027,488.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  425. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  426. id="path6614"
  427. inkscape:connector-curvature="0" />
  428. <path
  429. d="m 603.43012,491.35797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  430. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  431. id="path6616"
  432. inkscape:connector-curvature="0" />
  433. <path
  434. d="m 512.28434,497.08797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  435. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  436. id="path6618"
  437. inkscape:connector-curvature="0" />
  438. <path
  439. d="m 514.07262,497.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  440. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  441. id="path6620"
  442. inkscape:connector-curvature="0" />
  443. <path
  444. d="m 518.03691,497.12797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  445. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  446. id="path6622"
  447. inkscape:connector-curvature="0" />
  448. <path
  449. d="m 520.39777,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  450. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  451. id="path6624"
  452. inkscape:connector-curvature="0" />
  453. <path
  454. d="m 522.68137,493.98297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m -0.735,4.195 q -0.135,0 -0.27,-0.05 l 0.12,-0.4 q 0.065,0.03 0.135,0.03 0.29,0 0.29,-0.38 l 0,-2.78 0.46,0 0,2.78 q 0,0.405 -0.195,0.6 -0.195,0.2 -0.54,0.2 z"
  455. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  456. id="path6626"
  457. inkscape:connector-curvature="0" />
  458. <path
  459. d="m 524.03059,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  460. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  461. id="path6628"
  462. inkscape:connector-curvature="0" />
  463. <path
  464. d="m 526.27418,497.04797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  465. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  466. id="path6630"
  467. inkscape:connector-curvature="0" />
  468. <path
  469. d="m 528.5941,497.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z m -0.55,-1.42 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  470. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  471. id="path6632"
  472. inkscape:connector-curvature="0" />
  473. <path
  474. d="m 532.0384,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  475. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  476. id="path6634"
  477. inkscape:connector-curvature="0" />
  478. <path
  479. d="m 535.38551,497.04797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  480. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  481. id="path6636"
  482. inkscape:connector-curvature="0" />
  483. <path
  484. d="m 536.68684,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  485. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  486. id="path6638"
  487. inkscape:connector-curvature="0" />
  488. <path
  489. d="m 540.63395,497.08797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  490. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  491. id="path6640"
  492. inkscape:connector-curvature="0" />
  493. <path
  494. d="m 541.87082,493.98297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  495. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  496. id="path6642"
  497. inkscape:connector-curvature="0" />
  498. <path
  499. d="m 543.55504,497.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  500. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  501. id="path6644"
  502. inkscape:connector-curvature="0" />
  503. <path
  504. d="m 545.58082,497.04797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  505. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  506. id="path6646"
  507. inkscape:connector-curvature="0" />
  508. <path
  509. d="m 547.39723,497.04797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  510. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  511. id="path6648"
  512. inkscape:connector-curvature="0" />
  513. <path
  514. d="m 549.43098,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  515. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  516. id="path6650"
  517. inkscape:connector-curvature="0" />
  518. <path
  519. d="m 552.77809,493.46797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  520. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  521. id="path6652"
  522. inkscape:connector-curvature="0" />
  523. <path
  524. d="m 557.18293,497.04797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  525. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  526. id="path6654"
  527. inkscape:connector-curvature="0" />
  528. <path
  529. d="m 557.74777,497.04797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  530. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  531. id="path6656"
  532. inkscape:connector-curvature="0" />
  533. <path
  534. d="m 562.50559,493.98297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  535. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  536. id="path6658"
  537. inkscape:connector-curvature="0" />
  538. <path
  539. d="m 563.5691,497.04797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  540. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  541. id="path6660"
  542. inkscape:connector-curvature="0" />
  543. <path
  544. d="m 565.12043,497.12797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  545. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  546. id="path6662"
  547. inkscape:connector-curvature="0" />
  548. <path
  549. d="m 568.05699,497.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  550. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  551. id="path6664"
  552. inkscape:connector-curvature="0" />
  553. <path
  554. d="m 571.38129,498.12797 -0.475,0 0.57,-1.235 -1.01,-2.295 0.5,0 0.73,1.76 0.01,0 0.71,-1.76 0.5,0 -1.535,3.53 z"
  555. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  556. id="path6666"
  557. inkscape:connector-curvature="0" />
  558. <path
  559. d="m 575.23004,497.12797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  560. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  561. id="path6668"
  562. inkscape:connector-curvature="0" />
  563. <path
  564. d="m 576.83973,494.89297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  565. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  566. id="path6670"
  567. inkscape:connector-curvature="0" />
  568. <path
  569. d="m 579.85816,497.04797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  570. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  571. id="path6672"
  572. inkscape:connector-curvature="0" />
  573. <path
  574. d="m 581.49449,497.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  575. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  576. id="path6674"
  577. inkscape:connector-curvature="0" />
  578. <path
  579. d="m 583.86457,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  580. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  581. id="path6676"
  582. inkscape:connector-curvature="0" />
  583. <path
  584. d="m 586.64387,497.12797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  585. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  586. id="path6678"
  587. inkscape:connector-curvature="0" />
  588. <path
  589. d="m 589.24543,497.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  590. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  591. id="path6680"
  592. inkscape:connector-curvature="0" />
  593. <path
  594. d="m 591.56902,496.97797 q -0.1,0.1 -0.24,0.1 -0.14,0 -0.24,-0.1 -0.1,-0.1 -0.1,-0.24 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.14 -0.1,0.24 z"
  595. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  596. id="path6682"
  597. inkscape:connector-curvature="0" />
  598. <path
  599. d="m 497.02844,503.53797 -0.245,-0.365 q -0.4,0.205 -0.86,0.205 -0.785,0 -1.315,-0.54 -0.525,-0.545 -0.525,-1.33 0,-0.785 0.525,-1.325 0.53,-0.545 1.315,-0.545 0.78,0 1.31,0.545 0.53,0.545 0.53,1.325 0,0.865 -0.625,1.42 l 0.25,0.375 -0.36,0.235 z m -1.105,-0.6 q 0.31,0 0.605,-0.14 l -0.42,-0.63 0.36,-0.245 0.415,0.625 q 0.41,-0.4 0.41,-1.04 0,-0.625 -0.4,-1.025 -0.395,-0.405 -0.97,-0.405 -0.575,0 -0.975,0.405 -0.395,0.4 -0.395,1.025 0,0.625 0.395,1.03 0.4,0.4 0.975,0.4 z"
  600. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  601. id="path6684"
  602. inkscape:connector-curvature="0" />
  603. <path
  604. d="m 500.38117,503.29797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  605. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  606. id="path6686"
  607. inkscape:connector-curvature="0" />
  608. <path
  609. d="m 502.02672,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  610. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  611. id="path6688"
  612. inkscape:connector-curvature="0" />
  613. <path
  614. d="m 505.15602,499.71797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  615. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  616. id="path6690"
  617. inkscape:connector-curvature="0" />
  618. <path
  619. d="m 508.52086,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  620. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  621. id="path6692"
  622. inkscape:connector-curvature="0" />
  623. <path
  624. d="m 512.21516,503.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  625. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  626. id="path6694"
  627. inkscape:connector-curvature="0" />
  628. <path
  629. d="m 515.15172,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  630. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  631. id="path6696"
  632. inkscape:connector-curvature="0" />
  633. <path
  634. d="m 518.84602,503.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  635. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  636. id="path6698"
  637. inkscape:connector-curvature="0" />
  638. <path
  639. d="m 520.88758,501.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  640. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  641. id="path6700"
  642. inkscape:connector-curvature="0" />
  643. <path
  644. d="m 523.88648,503.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  645. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  646. id="path6702"
  647. inkscape:connector-curvature="0" />
  648. <path
  649. d="m 525.24289,503.29797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  650. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  651. id="path6704"
  652. inkscape:connector-curvature="0" />
  653. <path
  654. d="m 530.0007,500.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  655. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  656. id="path6706"
  657. inkscape:connector-curvature="0" />
  658. <path
  659. d="m 531.06422,503.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  660. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  661. id="path6708"
  662. inkscape:connector-curvature="0" />
  663. <path
  664. d="m 532.42062,503.29797 0,-2.45 0.44001,0 0,0.34 0.02,0 q 0.10501,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57001,0 0.775,0.47 0.30001,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.26999,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.26999,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  665. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  666. id="path6710"
  667. inkscape:connector-curvature="0" />
  668. <path
  669. d="m 537.78844,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  670. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  671. id="path6712"
  672. inkscape:connector-curvature="0" />
  673. <path
  674. d="m 541.56773,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  675. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  676. id="path6714"
  677. inkscape:connector-curvature="0" />
  678. <path
  679. d="m 543.57352,500.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  680. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  681. id="path6716"
  682. inkscape:connector-curvature="0" />
  683. <path
  684. d="m 548.06187,503.37797 q -0.55499,0 -0.90499,-0.37 -0.34501,-0.37 -0.34501,-0.935 0,-0.535 0.33501,-0.92 0.34,-0.385 0.865,-0.385 0.54499,0 0.87,0.355 0.32999,0.355 0.32999,0.95 l -0.005,0.085 -1.93499,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.53499,0.215 0.495,0 0.67,-0.42 l 0.41001,0.17 q -0.12,0.285 -0.395,0.48 -0.27501,0.19 -0.67501,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.19499,-0.4 -0.17501,-0.19 -0.525,-0.19 -0.255,0 -0.44501,0.16 -0.18499,0.16 -0.255,0.43 l 1.42,0 z"
  685. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  686. id="path6718"
  687. inkscape:connector-curvature="0" />
  688. <path
  689. d="m 550.08766,503.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  690. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  691. id="path6720"
  692. inkscape:connector-curvature="0" />
  693. <path
  694. d="m 551.10328,503.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  695. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  696. id="path6722"
  697. inkscape:connector-curvature="0" />
  698. <path
  699. d="m 552.40461,503.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  700. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  701. id="path6724"
  702. inkscape:connector-curvature="0" />
  703. <path
  704. d="m 555.75172,503.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  705. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  706. id="path6726"
  707. inkscape:connector-curvature="0" />
  708. <path
  709. d="m 556.49305,501.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  710. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  711. id="path6728"
  712. inkscape:connector-curvature="0" />
  713. <path
  714. d="m 559.96148,503.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  715. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  716. id="path6730"
  717. inkscape:connector-curvature="0" />
  718. <path
  719. d="m 562.89039,499.71797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  720. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  721. id="path6732"
  722. inkscape:connector-curvature="0" />
  723. <path
  724. d="m 565.36023,501.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  725. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  726. id="path6734"
  727. inkscape:connector-curvature="0" />
  728. <path
  729. d="m 567.89914,503.29797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  730. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  731. id="path6736"
  732. inkscape:connector-curvature="0" />
  733. <path
  734. d="m 573.45195,503.37797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  735. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  736. id="path6738"
  737. inkscape:connector-curvature="0" />
  738. <path
  739. d="m 575.44898,503.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  740. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  741. id="path6740"
  742. inkscape:connector-curvature="0" />
  743. <path
  744. d="m 577.76891,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  745. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  746. id="path6742"
  747. inkscape:connector-curvature="0" />
  748. <path
  749. d="m 580.27398,503.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  750. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  751. id="path6744"
  752. inkscape:connector-curvature="0" />
  753. <path
  754. d="m 583.18289,500.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  755. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  756. id="path6746"
  757. inkscape:connector-curvature="0" />
  758. <path
  759. d="m 585.67273,501.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  760. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  761. id="path6748"
  762. inkscape:connector-curvature="0" />
  763. <path
  764. d="m 590.27398,503.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  765. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  766. id="path6750"
  767. inkscape:connector-curvature="0" />
  768. <path
  769. d="m 593.78937,503.29797 -0.44,0 0,-0.34 -0.02,0 q -0.10501,0.175 -0.32001,0.3 -0.215,0.12 -0.45499,0.12 -0.46,0 -0.70001,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46001,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.46499,-0.23 0.18001,-0.23 0.18001,-0.53 l 0,-1.35 0.45999,0 0,2.45 z"
  770. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  771. id="path6752"
  772. inkscape:connector-curvature="0" />
  773. <path
  774. d="m 595.62922,503.37797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  775. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  776. id="path6754"
  777. inkscape:connector-curvature="0" />
  778. <path
  779. d="m 597.68625,500.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  780. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  781. id="path6756"
  782. inkscape:connector-curvature="0" />
  783. <path
  784. d="m 599.37047,503.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  785. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  786. id="path6758"
  787. inkscape:connector-curvature="0" />
  788. <path
  789. d="m 601.39625,503.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  790. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  791. id="path6760"
  792. inkscape:connector-curvature="0" />
  793. <path
  794. d="m 602.82117,501.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  795. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  796. id="path6762"
  797. inkscape:connector-curvature="0" />
  798. <path
  799. d="m 605.80008,500.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  800. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  801. id="path6764"
  802. inkscape:connector-curvature="0" />
  803. <path
  804. d="m 608.22992,503.85797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  805. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  806. id="path6766"
  807. inkscape:connector-curvature="0" />
  808. <path
  809. d="m 500.12641,510.62797 -0.475,0 0.57,-1.235 -1.01,-2.295 0.5,0 0.73,1.76 0.01,0 0.71,-1.76 0.5,0 -1.535,3.53 z"
  810. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  811. id="path6768"
  812. inkscape:connector-curvature="0" />
  813. <path
  814. d="m 504.92516,510.62797 0,-1.08 0.02,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 0,-0.34 0.44,0 0,3.53 -0.46,0 z m -0.76,-1.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  815. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  816. id="path6770"
  817. inkscape:connector-curvature="0" />
  818. <path
  819. d="m 508.07648,509.54797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  820. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  821. id="path6772"
  822. inkscape:connector-curvature="0" />
  823. <path
  824. d="m 509.72203,509.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  825. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  826. id="path6774"
  827. inkscape:connector-curvature="0" />
  828. <path
  829. d="m 512.85133,505.96797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  830. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  831. id="path6776"
  832. inkscape:connector-curvature="0" />
  833. <path
  834. d="m 516.21617,509.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  835. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  836. id="path6778"
  837. inkscape:connector-curvature="0" />
  838. <path
  839. d="m 517.78195,509.54797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  840. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  841. id="path6780"
  842. inkscape:connector-curvature="0" />
  843. <path
  844. d="m 522.25477,507.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  845. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  846. id="path6782"
  847. inkscape:connector-curvature="0" />
  848. <path
  849. d="m 525.7232,509.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  850. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  851. id="path6784"
  852. inkscape:connector-curvature="0" />
  853. <path
  854. d="m 529.21711,509.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  855. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  856. id="path6786"
  857. inkscape:connector-curvature="0" />
  858. <path
  859. d="m 532.15367,509.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  860. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  861. id="path6788"
  862. inkscape:connector-curvature="0" />
  863. <path
  864. d="m 535.73297,509.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  865. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  866. id="path6790"
  867. inkscape:connector-curvature="0" />
  868. <path
  869. d="m 537.34266,507.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  870. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  871. id="path6792"
  872. inkscape:connector-curvature="0" />
  873. <path
  874. d="m 540.32156,507.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z m 0.96,-0.525 q -0.13,0 -0.34,-0.11 -0.205,-0.115 -0.24,-0.115 -0.15,0 -0.165,0.175 l -0.38,0 q 0,-0.29 0.17,-0.44 0.175,-0.15 0.385,-0.15 0.13,0 0.34,0.115 0.21,0.11 0.24,0.11 0.15,0 0.165,-0.175 l 0.38,0 q 0,0.29 -0.175,0.44 -0.17,0.15 -0.38,0.15 z"
  875. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  876. id="path6794"
  877. inkscape:connector-curvature="0" />
  878. <path
  879. d="m 543.34211,509.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  880. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  881. id="path6796"
  882. inkscape:connector-curvature="0" />
  883. <path
  884. d="m 545.5857,509.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  885. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  886. id="path6798"
  887. inkscape:connector-curvature="0" />
  888. <path
  889. d="m 548.95563,509.62797 q -0.41001,0 -0.68001,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.19501,0.46 0.66501,0.46 0.21499,0 0.34999,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.33499,-0.325 l -0.495,-0.12 q -0.23501,-0.06 -0.44501,-0.225 -0.20999,-0.17 -0.20999,-0.455 0,-0.325 0.285,-0.525 0.28999,-0.205 0.68499,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.39999,0.165 q -0.135,-0.325 -0.56001,-0.325 -0.20499,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.48501,0.115 q 0.345,0.08 0.50999,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.69499,0.22 z"
  890. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  891. id="path6800"
  892. inkscape:connector-curvature="0" />
  893. <path
  894. d="m 550.56531,507.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  895. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  896. id="path6802"
  897. inkscape:connector-curvature="0" />
  898. <path
  899. d="m 554.41875,509.62797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  900. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  901. id="path6804"
  902. inkscape:connector-curvature="0" />
  903. <path
  904. d="m 556.41578,509.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  905. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  906. id="path6806"
  907. inkscape:connector-curvature="0" />
  908. <path
  909. d="m 558.7357,509.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  910. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  911. id="path6808"
  912. inkscape:connector-curvature="0" />
  913. <path
  914. d="m 561.865,509.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  915. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  916. id="path6810"
  917. inkscape:connector-curvature="0" />
  918. <path
  919. d="m 563.16633,509.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  920. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  921. id="path6812"
  922. inkscape:connector-curvature="0" />
  923. <path
  924. d="m 566.05344,509.54797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  925. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  926. id="path6814"
  927. inkscape:connector-curvature="0" />
  928. <path
  929. d="m 570.81125,506.48297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  930. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  931. id="path6816"
  932. inkscape:connector-curvature="0" />
  933. <path
  934. d="m 572.32477,509.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  935. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  936. id="path6818"
  937. inkscape:connector-curvature="0" />
  938. <path
  939. d="m 573.66086,509.54797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  940. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  941. id="path6820"
  942. inkscape:connector-curvature="0" />
  943. <path
  944. d="m 578.66437,509.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31001,-0.625 0.30999,-0.23 0.765,-0.23 0.40499,0 0.66499,0.15 l 0,-0.07 q 0,-0.27 -0.18499,-0.43 -0.18501,-0.165 -0.45501,-0.165 -0.2,0 -0.365,0.095 -0.15999,0.095 -0.22,0.26 l -0.41999,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.77999,0.275 0.31001,0.275 0.31001,0.775 l 0,1.48 -0.44001,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.80501,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.33499,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  945. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  946. id="path6822"
  947. inkscape:connector-curvature="0" />
  948. <path
  949. d="m 582.32648,509.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  950. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  951. id="path6824"
  952. inkscape:connector-curvature="0" />
  953. <path
  954. d="m 584.57008,509.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  955. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  956. id="path6826"
  957. inkscape:connector-curvature="0" />
  958. <path
  959. d="m 585.1257,509.54797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  960. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  961. id="path6828"
  962. inkscape:connector-curvature="0" />
  963. <path
  964. d="m 589.59852,507.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  965. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  966. id="path6830"
  967. inkscape:connector-curvature="0" />
  968. <path
  969. d="m 592.61695,505.96797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  970. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  971. id="path6832"
  972. inkscape:connector-curvature="0" />
  973. <path
  974. d="m 595.6175,509.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  975. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  976. id="path6834"
  977. inkscape:connector-curvature="0" />
  978. <path
  979. d="m 598.3968,509.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  980. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  981. id="path6836"
  982. inkscape:connector-curvature="0" />
  983. <path
  984. d="m 600.99836,509.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  985. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  986. id="path6838"
  987. inkscape:connector-curvature="0" />
  988. <path
  989. d="m 603.32195,509.47797 q -0.1,0.1 -0.24,0.1 -0.14,0 -0.24,-0.1 -0.1,-0.1 -0.1,-0.24 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.14 -0.1,0.24 z"
  990. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  991. id="path6840"
  992. inkscape:connector-curvature="0" />
  993. <path
  994. d="m 510.63957,522.04797 -0.46,0 0,-3.14 -1,0 0,-0.44 2.46,0 0,0.44 -1,0 0,3.14 z"
  995. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  996. id="path6842"
  997. inkscape:connector-curvature="0" />
  998. <path
  999. d="m 512.74449,522.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1000. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1001. id="path6844"
  1002. inkscape:connector-curvature="0" />
  1003. <path
  1004. d="m 516.18879,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1005. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1006. id="path6846"
  1007. inkscape:connector-curvature="0" />
  1008. <path
  1009. d="m 519.06309,522.12797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1010. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1011. id="path6848"
  1012. inkscape:connector-curvature="0" />
  1013. <path
  1014. d="m 520.73621,519.89297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1015. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1016. id="path6850"
  1017. inkscape:connector-curvature="0" />
  1018. <path
  1019. d="m 524.20465,522.12797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1020. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1021. id="path6852"
  1022. inkscape:connector-curvature="0" />
  1023. <path
  1024. d="m 526.60074,522.08797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  1025. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1026. id="path6854"
  1027. inkscape:connector-curvature="0" />
  1028. <path
  1029. d="m 528.03449,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1030. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1031. id="path6856"
  1032. inkscape:connector-curvature="0" />
  1033. <path
  1034. d="m 530.27809,522.04797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1035. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1036. id="path6858"
  1037. inkscape:connector-curvature="0" />
  1038. <path
  1039. d="m 532.59801,522.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z m -0.55,-1.42 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  1040. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1041. id="path6860"
  1042. inkscape:connector-curvature="0" />
  1043. <path
  1044. d="m 536.3773,522.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1045. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1046. id="path6862"
  1047. inkscape:connector-curvature="0" />
  1048. <path
  1049. d="m 538.38309,519.59797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1050. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1051. id="path6864"
  1052. inkscape:connector-curvature="0" />
  1053. <path
  1054. d="m 542.22145,522.04797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1055. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1056. id="path6866"
  1057. inkscape:connector-curvature="0" />
  1058. <path
  1059. d="m 543.52277,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1060. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1061. id="path6868"
  1062. inkscape:connector-curvature="0" />
  1063. <path
  1064. d="m 547.46988,522.08797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  1065. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1066. id="path6870"
  1067. inkscape:connector-curvature="0" />
  1068. <path
  1069. d="m 548.70676,518.98297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1070. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1071. id="path6872"
  1072. inkscape:connector-curvature="0" />
  1073. <path
  1074. d="m 550.39098,522.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1075. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1076. id="path6874"
  1077. inkscape:connector-curvature="0" />
  1078. <path
  1079. d="m 552.41676,522.04797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1080. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1081. id="path6876"
  1082. inkscape:connector-curvature="0" />
  1083. <path
  1084. d="m 554.23316,522.04797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1085. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1086. id="path6878"
  1087. inkscape:connector-curvature="0" />
  1088. <path
  1089. d="m 556.26691,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1090. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1091. id="path6880"
  1092. inkscape:connector-curvature="0" />
  1093. <path
  1094. d="m 560.06402,522.12797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1095. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1096. id="path6882"
  1097. inkscape:connector-curvature="0" />
  1098. <path
  1099. d="m 561.67371,519.89297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1100. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1101. id="path6884"
  1102. inkscape:connector-curvature="0" />
  1103. <path
  1104. d="m 564.69215,522.04797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1105. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1106. id="path6886"
  1107. inkscape:connector-curvature="0" />
  1108. <path
  1109. d="m 566.32848,522.12797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1110. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1111. id="path6888"
  1112. inkscape:connector-curvature="0" />
  1113. <path
  1114. d="m 568.69855,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1115. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1116. id="path6890"
  1117. inkscape:connector-curvature="0" />
  1118. <path
  1119. d="m 571.47785,522.12797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1120. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1121. id="path6892"
  1122. inkscape:connector-curvature="0" />
  1123. <path
  1124. d="m 574.07941,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1125. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1126. id="path6894"
  1127. inkscape:connector-curvature="0" />
  1128. <path
  1129. d="m 578.08652,522.12797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1130. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1131. id="path6896"
  1132. inkscape:connector-curvature="0" />
  1133. <path
  1134. d="m 579.75965,519.89297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1135. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1136. id="path6898"
  1137. inkscape:connector-curvature="0" />
  1138. <path
  1139. d="m 582.73855,519.59797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1140. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1141. id="path6900"
  1142. inkscape:connector-curvature="0" />
  1143. <path
  1144. d="m 588.26691,522.04797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1145. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1146. id="path6902"
  1147. inkscape:connector-curvature="0" />
  1148. <path
  1149. d="m 589.27176,519.59797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1150. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1151. id="path6904"
  1152. inkscape:connector-curvature="0" />
  1153. <path
  1154. d="m 592.2923,522.12797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1155. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1156. id="path6906"
  1157. inkscape:connector-curvature="0" />
  1158. <path
  1159. d="m 504.89094,528.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1160. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1161. id="path6908"
  1162. inkscape:connector-curvature="0" />
  1163. <path
  1164. d="m 508.8968,528.29797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1165. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1166. id="path6910"
  1167. inkscape:connector-curvature="0" />
  1168. <path
  1169. d="m 509.92164,528.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1170. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1171. id="path6912"
  1172. inkscape:connector-curvature="0" />
  1173. <path
  1174. d="m 511.56797,528.37797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1175. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1176. id="path6914"
  1177. inkscape:connector-curvature="0" />
  1178. <path
  1179. d="m 514.13609,528.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1180. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1181. id="path6916"
  1182. inkscape:connector-curvature="0" />
  1183. <path
  1184. d="m 516.75617,528.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1185. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1186. id="path6918"
  1187. inkscape:connector-curvature="0" />
  1188. <path
  1189. d="m 520.76203,528.29797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1190. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1191. id="path6920"
  1192. inkscape:connector-curvature="0" />
  1193. <path
  1194. d="m 521.32687,528.29797 0,-2.45 0.44001,0 0,0.34 0.02,0 q 0.10501,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57001,0 0.775,0.47 0.30001,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.26999,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.26999,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  1195. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1196. id="path6922"
  1197. inkscape:connector-curvature="0" />
  1198. <path
  1199. d="m 526.87969,528.37797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1200. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1201. id="path6924"
  1202. inkscape:connector-curvature="0" />
  1203. <path
  1204. d="m 528.87672,528.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1205. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1206. id="path6926"
  1207. inkscape:connector-curvature="0" />
  1208. <path
  1209. d="m 531.19664,528.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1210. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1211. id="path6928"
  1212. inkscape:connector-curvature="0" />
  1213. <path
  1214. d="m 534.89094,528.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1215. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1216. id="path6930"
  1217. inkscape:connector-curvature="0" />
  1218. <path
  1219. d="m 537.8275,528.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1220. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1221. id="path6932"
  1222. inkscape:connector-curvature="0" />
  1223. <path
  1224. d="m 540.4968,528.29797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  1225. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1226. id="path6934"
  1227. inkscape:connector-curvature="0" />
  1228. <path
  1229. d="m 545.50031,528.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1230. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1231. id="path6936"
  1232. inkscape:connector-curvature="0" />
  1233. <path
  1234. d="m 548.27961,528.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1235. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1236. id="path6938"
  1237. inkscape:connector-curvature="0" />
  1238. <path
  1239. d="m 550.59547,528.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1240. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1241. id="path6940"
  1242. inkscape:connector-curvature="0" />
  1243. <path
  1244. d="m 552.91539,528.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1245. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1246. id="path6942"
  1247. inkscape:connector-curvature="0" />
  1248. <path
  1249. d="m 556.85969,528.37797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1250. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1251. id="path6944"
  1252. inkscape:connector-curvature="0" />
  1253. <path
  1254. d="m 559.22102,528.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1255. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1256. id="path6946"
  1257. inkscape:connector-curvature="0" />
  1258. <path
  1259. d="m 561.46461,528.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1260. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1261. id="path6948"
  1262. inkscape:connector-curvature="0" />
  1263. <path
  1264. d="m 563.49836,528.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1265. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1266. id="path6950"
  1267. inkscape:connector-curvature="0" />
  1268. <path
  1269. d="m 567.49547,528.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1270. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1271. id="path6952"
  1272. inkscape:connector-curvature="0" />
  1273. <path
  1274. d="m 569.52125,528.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1275. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1276. id="path6954"
  1277. inkscape:connector-curvature="0" />
  1278. <path
  1279. d="m 571.64039,524.71797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  1280. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1281. id="path6956"
  1282. inkscape:connector-curvature="0" />
  1283. <path
  1284. d="m 574.39523,525.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1285. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1286. id="path6958"
  1287. inkscape:connector-curvature="0" />
  1288. <path
  1289. d="m 575.49875,525.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m -0.735,4.195 q -0.135,0 -0.27,-0.05 l 0.12,-0.4 q 0.065,0.03 0.135,0.03 0.29,0 0.29,-0.38 l 0,-2.78 0.46,0 0,2.78 q 0,0.405 -0.195,0.6 -0.195,0.2 -0.54,0.2 z"
  1290. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1291. id="path6960"
  1292. inkscape:connector-curvature="0" />
  1293. <path
  1294. d="m 576.28797,526.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1295. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1296. id="path6962"
  1297. inkscape:connector-curvature="0" />
  1298. <path
  1299. d="m 581.00422,528.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1300. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1301. id="path6964"
  1302. inkscape:connector-curvature="0" />
  1303. <path
  1304. d="m 583.04578,526.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1305. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1306. id="path6966"
  1307. inkscape:connector-curvature="0" />
  1308. <path
  1309. d="m 586.04469,528.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1310. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1311. id="path6968"
  1312. inkscape:connector-curvature="0" />
  1313. <path
  1314. d="m 587.40109,528.29797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  1315. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1316. id="path6970"
  1317. inkscape:connector-curvature="0" />
  1318. <path
  1319. d="m 592.15891,525.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1320. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1321. id="path6972"
  1322. inkscape:connector-curvature="0" />
  1323. <path
  1324. d="m 593.75812,528.37797 q -0.47499,0 -0.81999,-0.375 -0.34501,-0.375 -0.34501,-0.93 0,-0.555 0.34501,-0.93 0.345,-0.375 0.81999,-0.375 0.28001,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46001,0 0,3.58 -0.44001,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.21999,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.32501,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.22499,-0.24 -0.55,-0.24 -0.32,0 -0.54999,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.22999,0.24 0.54999,0.24 z"
  1325. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1326. id="path6974"
  1327. inkscape:connector-curvature="0" />
  1328. <path
  1329. d="m 595.79969,526.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1330. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1331. id="path6976"
  1332. inkscape:connector-curvature="0" />
  1333. <path
  1334. d="m 598.54242,528.85797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  1335. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1336. id="path6978"
  1337. inkscape:connector-curvature="0" />
  1338. <path
  1339. d="m 504.97016,535.62797 -0.475,0 0.57,-1.235 -1.01,-2.295 0.5,0 0.73,1.76 0.01,0 0.71,-1.76 0.5,0 -1.535,3.53 z"
  1340. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1341. id="path6980"
  1342. inkscape:connector-curvature="0" />
  1343. <path
  1344. d="m 508.36891,534.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1345. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1346. id="path6982"
  1347. inkscape:connector-curvature="0" />
  1348. <path
  1349. d="m 509.67023,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1350. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1351. id="path6984"
  1352. inkscape:connector-curvature="0" />
  1353. <path
  1354. d="m 513.61734,534.58797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  1355. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1356. id="path6986"
  1357. inkscape:connector-curvature="0" />
  1358. <path
  1359. d="m 514.85422,531.48297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1360. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1361. id="path6988"
  1362. inkscape:connector-curvature="0" />
  1363. <path
  1364. d="m 516.53844,534.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1365. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1366. id="path6990"
  1367. inkscape:connector-curvature="0" />
  1368. <path
  1369. d="m 518.56422,534.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1370. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1371. id="path6992"
  1372. inkscape:connector-curvature="0" />
  1373. <path
  1374. d="m 520.38062,534.54797 -0.46,0 0,-2.45 0.44001,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.42501,-0.13 0.20499,0 0.34499,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1375. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1376. id="path6994"
  1377. inkscape:connector-curvature="0" />
  1378. <path
  1379. d="m 522.41437,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31001,-0.625 0.30999,-0.23 0.765,-0.23 0.40499,0 0.66499,0.15 l 0,-0.07 q 0,-0.27 -0.18499,-0.43 -0.18501,-0.165 -0.45501,-0.165 -0.2,0 -0.365,0.095 -0.15999,0.095 -0.22,0.26 l -0.41999,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.77999,0.275 0.31001,0.275 0.31001,0.775 l 0,1.48 -0.44001,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.80501,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.33499,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1380. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1381. id="path6996"
  1382. inkscape:connector-curvature="0" />
  1383. <path
  1384. d="m 525.76148,530.96797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  1385. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1386. id="path6998"
  1387. inkscape:connector-curvature="0" />
  1388. <path
  1389. d="m 528.76203,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1390. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1391. id="path7000"
  1392. inkscape:connector-curvature="0" />
  1393. <path
  1394. d="m 532.67414,534.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1395. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1396. id="path7002"
  1397. inkscape:connector-curvature="0" />
  1398. <path
  1399. d="m 535.6107,534.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1400. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1401. id="path7004"
  1402. inkscape:connector-curvature="0" />
  1403. <path
  1404. d="m 538.74,530.96797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  1405. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1406. id="path7006"
  1407. inkscape:connector-curvature="0" />
  1408. <path
  1409. d="m 541.74055,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1410. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1411. id="path7008"
  1412. inkscape:connector-curvature="0" />
  1413. <path
  1414. d="m 544.61484,534.62797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1415. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1416. id="path7010"
  1417. inkscape:connector-curvature="0" />
  1418. <path
  1419. d="m 547.18297,534.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1420. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1421. id="path7012"
  1422. inkscape:connector-curvature="0" />
  1423. <path
  1424. d="m 549.20875,534.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1425. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1426. id="path7014"
  1427. inkscape:connector-curvature="0" />
  1428. <path
  1429. d="m 551.3775,534.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1430. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1431. id="path7016"
  1432. inkscape:connector-curvature="0" />
  1433. <path
  1434. d="m 553.88219,534.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1435. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1436. id="path7018"
  1437. inkscape:connector-curvature="0" />
  1438. <path
  1439. d="m 557.46148,534.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1440. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1441. id="path7020"
  1442. inkscape:connector-curvature="0" />
  1443. <path
  1444. d="m 560.97687,534.54797 -0.44,0 0,-0.34 -0.02,0 q -0.10501,0.175 -0.32001,0.3 -0.215,0.12 -0.45499,0.12 -0.46,0 -0.70001,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46001,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.46499,-0.23 0.18001,-0.23 0.18001,-0.53 l 0,-1.35 0.45999,0 0,2.45 z"
  1445. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1446. id="path7022"
  1447. inkscape:connector-curvature="0" />
  1448. <path
  1449. d="m 562.28742,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1450. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1451. id="path7024"
  1452. inkscape:connector-curvature="0" />
  1453. <path
  1454. d="m 564.75219,534.54797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  1455. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1456. id="path7026"
  1457. inkscape:connector-curvature="0" />
  1458. <path
  1459. d="m 567.01242,531.48297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1460. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1461. id="path7028"
  1462. inkscape:connector-curvature="0" />
  1463. <path
  1464. d="m 568.61164,534.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1465. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1466. id="path7030"
  1467. inkscape:connector-curvature="0" />
  1468. <path
  1469. d="m 571.2132,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1470. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1471. id="path7032"
  1472. inkscape:connector-curvature="0" />
  1473. <path
  1474. d="m 573.9925,534.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1475. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1476. id="path7034"
  1477. inkscape:connector-curvature="0" />
  1478. <path
  1479. d="m 576.92906,534.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1480. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1481. id="path7036"
  1482. inkscape:connector-curvature="0" />
  1483. <path
  1484. d="m 579.43414,534.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1485. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1486. id="path7038"
  1487. inkscape:connector-curvature="0" />
  1488. <path
  1489. d="m 582.92805,534.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1490. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1491. id="path7040"
  1492. inkscape:connector-curvature="0" />
  1493. <path
  1494. d="m 585.86461,534.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1495. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1496. id="path7042"
  1497. inkscape:connector-curvature="0" />
  1498. <path
  1499. d="m 589.65391,534.62797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1500. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1501. id="path7044"
  1502. inkscape:connector-curvature="0" />
  1503. <path
  1504. d="m 593.29133,534.54797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1505. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1506. id="path7046"
  1507. inkscape:connector-curvature="0" />
  1508. <path
  1509. d="m 594.29617,532.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1510. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1511. id="path7048"
  1512. inkscape:connector-curvature="0" />
  1513. <path
  1514. d="m 597.31672,534.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1515. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1516. id="path7050"
  1517. inkscape:connector-curvature="0" />
  1518. <path
  1519. d="m 513.52277,540.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1520. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1521. id="path7052"
  1522. inkscape:connector-curvature="0" />
  1523. <path
  1524. d="m 515.76637,540.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1525. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1526. id="path7054"
  1527. inkscape:connector-curvature="0" />
  1528. <path
  1529. d="m 517.88551,540.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1530. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1531. id="path7056"
  1532. inkscape:connector-curvature="0" />
  1533. <path
  1534. d="m 520.20543,540.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1535. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1536. id="path7058"
  1537. inkscape:connector-curvature="0" />
  1538. <path
  1539. d="m 522.92051,540.87797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1540. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1541. id="path7060"
  1542. inkscape:connector-curvature="0" />
  1543. <path
  1544. d="m 524.90793,537.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1545. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1546. id="path7062"
  1547. inkscape:connector-curvature="0" />
  1548. <path
  1549. d="m 526.80645,540.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1550. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1551. id="path7064"
  1552. inkscape:connector-curvature="0" />
  1553. <path
  1554. d="m 528.86301,537.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1555. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1556. id="path7066"
  1557. inkscape:connector-curvature="0" />
  1558. <path
  1559. d="m 529.92652,540.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1560. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1561. id="path7068"
  1562. inkscape:connector-curvature="0" />
  1563. <path
  1564. d="m 533.44645,540.83797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  1565. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1566. id="path7070"
  1567. inkscape:connector-curvature="0" />
  1568. <path
  1569. d="m 536.30402,540.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1570. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1571. id="path7072"
  1572. inkscape:connector-curvature="0" />
  1573. <path
  1574. d="m 539.09238,540.87797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  1575. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1576. id="path7074"
  1577. inkscape:connector-curvature="0" />
  1578. <path
  1579. d="m 542.7298,540.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1580. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1581. id="path7076"
  1582. inkscape:connector-curvature="0" />
  1583. <path
  1584. d="m 544.37535,540.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1585. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1586. id="path7078"
  1587. inkscape:connector-curvature="0" />
  1588. <path
  1589. d="m 546.40113,540.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1590. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1591. id="path7080"
  1592. inkscape:connector-curvature="0" />
  1593. <path
  1594. d="m 549.03254,540.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1595. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1596. id="path7082"
  1597. inkscape:connector-curvature="0" />
  1598. <path
  1599. d="m 550.83387,538.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1600. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1601. id="path7084"
  1602. inkscape:connector-curvature="0" />
  1603. <path
  1604. d="m 555.55012,540.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1605. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1606. id="path7086"
  1607. inkscape:connector-curvature="0" />
  1608. <path
  1609. d="m 558.48668,540.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1610. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1611. id="path7088"
  1612. inkscape:connector-curvature="0" />
  1613. <path
  1614. d="m 561.59598,538.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1615. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1616. id="path7090"
  1617. inkscape:connector-curvature="0" />
  1618. <path
  1619. d="m 564.37082,537.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1620. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1621. id="path7092"
  1622. inkscape:connector-curvature="0" />
  1623. <path
  1624. d="m 565.41434,538.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z m 0.96,-0.525 q -0.13,0 -0.34,-0.11 -0.205,-0.115 -0.24,-0.115 -0.15,0 -0.165,0.175 l -0.38,0 q 0,-0.29 0.17,-0.44 0.175,-0.15 0.385,-0.15 0.13,0 0.34,0.115 0.21,0.11 0.24,0.11 0.15,0 0.165,-0.175 l 0.38,0 q 0,0.29 -0.175,0.44 -0.17,0.15 -0.38,0.15 z"
  1625. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1626. id="path7094"
  1627. inkscape:connector-curvature="0" />
  1628. <path
  1629. d="m 567.90418,538.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1630. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1631. id="path7096"
  1632. inkscape:connector-curvature="0" />
  1633. <path
  1634. d="m 572.62043,540.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1635. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1636. id="path7098"
  1637. inkscape:connector-curvature="0" />
  1638. <path
  1639. d="m 574.66199,538.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1640. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1641. id="path7100"
  1642. inkscape:connector-curvature="0" />
  1643. <path
  1644. d="m 577.68043,540.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1645. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1646. id="path7102"
  1647. inkscape:connector-curvature="0" />
  1648. <path
  1649. d="m 578.42176,538.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1650. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1651. id="path7104"
  1652. inkscape:connector-curvature="0" />
  1653. <path
  1654. d="m 581.42066,540.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1655. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1656. id="path7106"
  1657. inkscape:connector-curvature="0" />
  1658. <path
  1659. d="m 583.27707,537.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1660. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1661. id="path7108"
  1662. inkscape:connector-curvature="0" />
  1663. <path
  1664. d="m 584.87629,540.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1665. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1666. id="path7110"
  1667. inkscape:connector-curvature="0" />
  1668. <path
  1669. d="m 586.91785,538.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1670. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1671. id="path7112"
  1672. inkscape:connector-curvature="0" />
  1673. <path
  1674. d="m 589.66059,541.35797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  1675. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1676. id="path7114"
  1677. inkscape:connector-curvature="0" />
  1678. <path
  1679. d="m 500.30336,553.29797 0,-3.58 0.46,0 0,3.14 1.55,0 0,0.44 -2.01,0 z"
  1680. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1681. id="path7116"
  1682. inkscape:connector-curvature="0" />
  1683. <path
  1684. d="m 504.81477,553.29797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1685. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1686. id="path7118"
  1687. inkscape:connector-curvature="0" />
  1688. <path
  1689. d="m 506.46031,553.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1690. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1691. id="path7120"
  1692. inkscape:connector-curvature="0" />
  1693. <path
  1694. d="m 509.12039,554.45797 q -0.435,0 -0.71,-0.22 -0.275,-0.215 -0.395,-0.495 l 0.42,-0.175 q 0.07,0.2 0.255,0.335 0.19,0.135 0.43,0.135 0.38,0 0.595,-0.23 0.22,-0.225 0.22,-0.615 l 0,-0.235 -0.02,0 q -0.12,0.18 -0.34,0.3 -0.22,0.12 -0.495,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.275,0 0.495,0.12 0.22,0.12 0.34,0.3 l 0.02,0 0,-0.34 0.44,0 0,2.325 q 0,0.63 -0.365,0.955 -0.365,0.33 -0.89,0.33 z m 0.035,-1.5 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1695. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1696. id="path7122"
  1697. inkscape:connector-curvature="0" />
  1698. <path
  1699. d="m 511.12195,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1700. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1701. id="path7124"
  1702. inkscape:connector-curvature="0" />
  1703. <path
  1704. d="m 515.3132,550.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1705. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1706. id="path7126"
  1707. inkscape:connector-curvature="0" />
  1708. <path
  1709. d="m 516.37672,553.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1710. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1711. id="path7128"
  1712. inkscape:connector-curvature="0" />
  1713. <path
  1714. d="m 518.69664,553.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z m -0.55,-1.42 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  1715. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1716. id="path7130"
  1717. inkscape:connector-curvature="0" />
  1718. <path
  1719. d="m 522.47594,553.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1720. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1721. id="path7132"
  1722. inkscape:connector-curvature="0" />
  1723. <path
  1724. d="m 524.98102,553.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1725. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1726. id="path7134"
  1727. inkscape:connector-curvature="0" />
  1728. <path
  1729. d="m 527.59211,553.37797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1730. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1731. id="path7136"
  1732. inkscape:connector-curvature="0" />
  1733. <path
  1734. d="m 529.39344,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1735. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1736. id="path7138"
  1737. inkscape:connector-curvature="0" />
  1738. <path
  1739. d="m 532.41187,553.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1740. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1741. id="path7140"
  1742. inkscape:connector-curvature="0" />
  1743. <path
  1744. d="m 533.6975,553.29797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  1745. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1746. id="path7142"
  1747. inkscape:connector-curvature="0" />
  1748. <path
  1749. d="m 535.59461,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1750. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1751. id="path7144"
  1752. inkscape:connector-curvature="0" />
  1753. <path
  1754. d="m 538.59352,553.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1755. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1756. id="path7146"
  1757. inkscape:connector-curvature="0" />
  1758. <path
  1759. d="m 540.91344,553.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1760. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1761. id="path7148"
  1762. inkscape:connector-curvature="0" />
  1763. <path
  1764. d="m 543.28352,553.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1765. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1766. id="path7150"
  1767. inkscape:connector-curvature="0" />
  1768. <path
  1769. d="m 545.50711,550.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1770. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1771. id="path7152"
  1772. inkscape:connector-curvature="0" />
  1773. <path
  1774. d="m 548.80695,553.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1775. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1776. id="path7154"
  1777. inkscape:connector-curvature="0" />
  1778. <path
  1779. d="m 550.84852,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1780. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1781. id="path7156"
  1782. inkscape:connector-curvature="0" />
  1783. <path
  1784. d="m 555.59977,553.33797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  1785. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1786. id="path7158"
  1787. inkscape:connector-curvature="0" />
  1788. <path
  1789. d="m 556.83664,550.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  1790. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1791. id="path7160"
  1792. inkscape:connector-curvature="0" />
  1793. <path
  1794. d="m 558.52086,553.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1795. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1796. id="path7162"
  1797. inkscape:connector-curvature="0" />
  1798. <path
  1799. d="m 560.54664,553.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1800. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1801. id="path7164"
  1802. inkscape:connector-curvature="0" />
  1803. <path
  1804. d="m 562.36305,553.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1805. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1806. id="path7166"
  1807. inkscape:connector-curvature="0" />
  1808. <path
  1809. d="m 564.3968,553.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1810. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1811. id="path7168"
  1812. inkscape:connector-curvature="0" />
  1813. <path
  1814. d="m 567.93891,554.37797 -0.475,0 0.57,-1.235 -1.01,-2.295 0.5,0 0.73,1.76 0.01,0 0.71,-1.76 0.5,0 -1.535,3.53 z"
  1815. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1816. id="path7170"
  1817. inkscape:connector-curvature="0" />
  1818. <path
  1819. d="m 572.15266,553.37797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1820. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1821. id="path7172"
  1822. inkscape:connector-curvature="0" />
  1823. <path
  1824. d="m 573.95398,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1825. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1826. id="path7174"
  1827. inkscape:connector-curvature="0" />
  1828. <path
  1829. d="m 576.97242,553.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1830. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1831. id="path7176"
  1832. inkscape:connector-curvature="0" />
  1833. <path
  1834. d="m 578.25805,553.29797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  1835. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1836. id="path7178"
  1837. inkscape:connector-curvature="0" />
  1838. <path
  1839. d="m 580.15516,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1840. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1841. id="path7180"
  1842. inkscape:connector-curvature="0" />
  1843. <path
  1844. d="m 584.87141,553.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1845. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1846. id="path7182"
  1847. inkscape:connector-curvature="0" />
  1848. <path
  1849. d="m 587.80797,553.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1850. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1851. id="path7184"
  1852. inkscape:connector-curvature="0" />
  1853. <path
  1854. d="m 590.93727,553.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1855. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1856. id="path7186"
  1857. inkscape:connector-curvature="0" />
  1858. <path
  1859. d="m 592.36219,551.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1860. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1861. id="path7188"
  1862. inkscape:connector-curvature="0" />
  1863. <path
  1864. d="m 595.83063,553.37797 q -0.41001,0 -0.68001,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.19501,0.46 0.66501,0.46 0.21499,0 0.34999,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.33499,-0.325 l -0.495,-0.12 q -0.23501,-0.06 -0.44501,-0.225 -0.20999,-0.17 -0.20999,-0.455 0,-0.325 0.285,-0.525 0.28999,-0.205 0.68499,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.39999,0.165 q -0.135,-0.325 -0.56001,-0.325 -0.20499,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.48501,0.115 q 0.345,0.08 0.50999,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.69499,0.22 z"
  1865. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1866. id="path7190"
  1867. inkscape:connector-curvature="0" />
  1868. <path
  1869. d="m 598.00031,553.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1870. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1871. id="path7192"
  1872. inkscape:connector-curvature="0" />
  1873. <path
  1874. d="m 600.66461,553.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  1875. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1876. id="path7194"
  1877. inkscape:connector-curvature="0" />
  1878. <path
  1879. d="m 602.185,553.85797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  1880. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1881. id="path7196"
  1882. inkscape:connector-curvature="0" />
  1883. <path
  1884. d="m 509.7309,560.62797 -0.475,0 0.57,-1.235 -1.01,-2.295 0.5,0 0.73,1.76 0.01,0 0.71,-1.76 0.5,0 -1.535,3.53 z"
  1885. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1886. id="path7198"
  1887. inkscape:connector-curvature="0" />
  1888. <path
  1889. d="m 513.77965,559.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1890. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1891. id="path7200"
  1892. inkscape:connector-curvature="0" />
  1893. <path
  1894. d="m 515.78543,557.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  1895. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1896. id="path7202"
  1897. inkscape:connector-curvature="0" />
  1898. <path
  1899. d="m 519.62379,559.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1900. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1901. id="path7204"
  1902. inkscape:connector-curvature="0" />
  1903. <path
  1904. d="m 520.92512,559.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1905. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1906. id="path7206"
  1907. inkscape:connector-curvature="0" />
  1908. <path
  1909. d="m 524.58723,559.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1910. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1911. id="path7208"
  1912. inkscape:connector-curvature="0" />
  1913. <path
  1914. d="m 526.29965,559.54797 0,-0.4 1.395,-1.63 -1.355,0 0,-0.42 1.92,0 0,0.4 -1.395,1.63 1.415,0 0,0.42 -1.98,0 z"
  1915. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1916. id="path7210"
  1917. inkscape:connector-curvature="0" />
  1918. <path
  1919. d="m 530.87434,559.54797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  1920. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1921. id="path7212"
  1922. inkscape:connector-curvature="0" />
  1923. <path
  1924. d="m 531.89918,559.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1925. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1926. id="path7214"
  1927. inkscape:connector-curvature="0" />
  1928. <path
  1929. d="m 533.20051,559.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1930. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1931. id="path7216"
  1932. inkscape:connector-curvature="0" />
  1933. <path
  1934. d="m 535.9798,559.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  1935. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1936. id="path7218"
  1937. inkscape:connector-curvature="0" />
  1938. <path
  1939. d="m 538.58137,559.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  1940. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1941. id="path7220"
  1942. inkscape:connector-curvature="0" />
  1943. <path
  1944. d="m 542.12348,560.62797 -0.475,0 0.57,-1.235 -1.01,-2.295 0.5,0 0.73,1.76 0.01,0 0.71,-1.76 0.5,0 -1.535,3.53 z"
  1945. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1946. id="path7222"
  1947. inkscape:connector-curvature="0" />
  1948. <path
  1949. d="m 545.52223,559.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1950. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1951. id="path7224"
  1952. inkscape:connector-curvature="0" />
  1953. <path
  1954. d="m 547.15855,559.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1955. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1956. id="path7226"
  1957. inkscape:connector-curvature="0" />
  1958. <path
  1959. d="m 549.40551,559.54797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  1960. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1961. id="path7228"
  1962. inkscape:connector-curvature="0" />
  1963. <path
  1964. d="m 552.19762,559.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  1965. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1966. id="path7230"
  1967. inkscape:connector-curvature="0" />
  1968. <path
  1969. d="m 556.14191,559.62797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  1970. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1971. id="path7232"
  1972. inkscape:connector-curvature="0" />
  1973. <path
  1974. d="m 557.94324,557.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1975. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1976. id="path7234"
  1977. inkscape:connector-curvature="0" />
  1978. <path
  1979. d="m 560.96168,559.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  1980. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1981. id="path7236"
  1982. inkscape:connector-curvature="0" />
  1983. <path
  1984. d="m 562.2473,559.54797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  1985. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1986. id="path7238"
  1987. inkscape:connector-curvature="0" />
  1988. <path
  1989. d="m 564.14441,557.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  1990. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1991. id="path7240"
  1992. inkscape:connector-curvature="0" />
  1993. <path
  1994. d="m 567.14332,559.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  1995. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  1996. id="path7242"
  1997. inkscape:connector-curvature="0" />
  1998. <path
  1999. d="m 569.46324,559.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2000. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2001. id="path7244"
  2002. inkscape:connector-curvature="0" />
  2003. <path
  2004. d="m 572.08332,559.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2005. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2006. id="path7246"
  2007. inkscape:connector-curvature="0" />
  2008. <path
  2009. d="m 574.68488,559.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2010. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2011. id="path7248"
  2012. inkscape:connector-curvature="0" />
  2013. <path
  2014. d="m 578.59699,559.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2015. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2016. id="path7250"
  2017. inkscape:connector-curvature="0" />
  2018. <path
  2019. d="m 581.53355,559.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2020. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2021. id="path7252"
  2022. inkscape:connector-curvature="0" />
  2023. <path
  2024. d="m 584.66285,559.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  2025. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2026. id="path7254"
  2027. inkscape:connector-curvature="0" />
  2028. <path
  2029. d="m 587.36848,559.54797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2030. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2031. id="path7256"
  2032. inkscape:connector-curvature="0" />
  2033. <path
  2034. d="m 588.37332,557.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2035. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2036. id="path7258"
  2037. inkscape:connector-curvature="0" />
  2038. <path
  2039. d="m 591.39387,559.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2040. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2041. id="path7260"
  2042. inkscape:connector-curvature="0" />
  2043. <path
  2044. d="m 593.33246,560.10797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  2045. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2046. id="path7262"
  2047. inkscape:connector-curvature="0" />
  2048. <path
  2049. d="m 505.68336,565.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  2050. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2051. id="path7264"
  2052. inkscape:connector-curvature="0" />
  2053. <path
  2054. d="m 506.42469,563.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2055. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2056. id="path7266"
  2057. inkscape:connector-curvature="0" />
  2058. <path
  2059. d="m 509.89312,565.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.19501,0.46 0.665,0.46 0.21501,0 0.35001,-0.095 0.13999,-0.095 0.13999,-0.25 0,-0.24 -0.33499,-0.325 l -0.495,-0.12 q -0.23501,-0.06 -0.445,-0.225 -0.21001,-0.17 -0.21001,-0.455 0,-0.325 0.28501,-0.525 0.28999,-0.205 0.685,-0.205 0.32499,0 0.57999,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.13999,0.085 -0.13999,0.23 0,0.21 0.32499,0.285 l 0.48501,0.115 q 0.34499,0.08 0.50999,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2060. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2061. id="path7268"
  2062. inkscape:connector-curvature="0" />
  2063. <path
  2064. d="m 513.38703,565.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2065. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2066. id="path7270"
  2067. inkscape:connector-curvature="0" />
  2068. <path
  2069. d="m 516.32359,565.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2070. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2071. id="path7272"
  2072. inkscape:connector-curvature="0" />
  2073. <path
  2074. d="m 518.82867,565.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2075. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2076. id="path7274"
  2077. inkscape:connector-curvature="0" />
  2078. <path
  2079. d="m 521.43977,565.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  2080. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2081. id="path7276"
  2082. inkscape:connector-curvature="0" />
  2083. <path
  2084. d="m 523.24109,563.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2085. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2086. id="path7278"
  2087. inkscape:connector-curvature="0" />
  2088. <path
  2089. d="m 526.29953,562.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m -0.735,4.195 q -0.135,0 -0.27,-0.05 l 0.12,-0.4 q 0.065,0.03 0.135,0.03 0.29,0 0.29,-0.38 l 0,-2.78 0.46,0 0,2.78 q 0,0.405 -0.195,0.6 -0.195,0.2 -0.54,0.2 z"
  2090. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2091. id="path7280"
  2092. inkscape:connector-curvature="0" />
  2093. <path
  2094. d="m 527.08875,563.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2095. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2096. id="path7282"
  2097. inkscape:connector-curvature="0" />
  2098. <path
  2099. d="m 530.55719,565.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2100. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2101. id="path7284"
  2102. inkscape:connector-curvature="0" />
  2103. <path
  2104. d="m 533.48609,565.79797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  2105. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2106. id="path7286"
  2107. inkscape:connector-curvature="0" />
  2108. <path
  2109. d="m 534.54172,562.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2110. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2111. id="path7288"
  2112. inkscape:connector-curvature="0" />
  2113. <path
  2114. d="m 535.87523,565.79797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  2115. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2116. id="path7290"
  2117. inkscape:connector-curvature="0" />
  2118. <path
  2119. d="m 538.13547,562.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2120. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2121. id="path7292"
  2122. inkscape:connector-curvature="0" />
  2123. <path
  2124. d="m 539.48469,565.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2125. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2126. id="path7294"
  2127. inkscape:connector-curvature="0" />
  2128. <path
  2129. d="m 541.70828,563.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2130. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2131. id="path7296"
  2132. inkscape:connector-curvature="0" />
  2133. <path
  2134. d="m 544.19812,563.64297 q 0.35501,-0.375 0.905,-0.375 0.55001,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.35499,0.37 -0.905,0.37 -0.54999,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34001,1.575 q 0.24,0.24 0.56499,0.24 0.32501,0 0.56001,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56001,-0.245 -0.32499,0 -0.56499,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2135. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2136. id="path7298"
  2137. inkscape:connector-curvature="0" />
  2138. <path
  2139. d="m 547.66656,565.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2140. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2141. id="path7300"
  2142. inkscape:connector-curvature="0" />
  2143. <path
  2144. d="m 550.63547,562.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2145. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2146. id="path7302"
  2147. inkscape:connector-curvature="0" />
  2148. <path
  2149. d="m 551.69898,565.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2150. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2151. id="path7304"
  2152. inkscape:connector-curvature="0" />
  2153. <path
  2154. d="m 553.73273,565.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z m 0.295,-2.6 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  2155. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2156. id="path7306"
  2157. inkscape:connector-curvature="0" />
  2158. <path
  2159. d="m 555.95633,563.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2160. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2161. id="path7308"
  2162. inkscape:connector-curvature="0" />
  2163. <path
  2164. d="m 561.19469,566.87797 0,-1.08 0.02,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 0,-0.34 0.44,0 0,3.53 -0.46,0 z m -0.76,-1.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2165. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2166. id="path7310"
  2167. inkscape:connector-curvature="0" />
  2168. <path
  2169. d="m 564.34602,565.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2170. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2171. id="path7312"
  2172. inkscape:connector-curvature="0" />
  2173. <path
  2174. d="m 565.99156,565.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2175. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2176. id="path7314"
  2177. inkscape:connector-curvature="0" />
  2178. <path
  2179. d="m 568.61164,565.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2180. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2181. id="path7316"
  2182. inkscape:connector-curvature="0" />
  2183. <path
  2184. d="m 571.2132,565.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2185. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2186. id="path7318"
  2187. inkscape:connector-curvature="0" />
  2188. <path
  2189. d="m 573.4368,563.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2190. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2191. id="path7320"
  2192. inkscape:connector-curvature="0" />
  2193. <path
  2194. d="m 576.73664,565.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2195. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2196. id="path7322"
  2197. inkscape:connector-curvature="0" />
  2198. <path
  2199. d="m 578.7782,563.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2200. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2201. id="path7324"
  2202. inkscape:connector-curvature="0" />
  2203. <path
  2204. d="m 583.74445,565.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  2205. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2206. id="path7326"
  2207. inkscape:connector-curvature="0" />
  2208. <path
  2209. d="m 585.76148,565.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2210. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2211. id="path7328"
  2212. inkscape:connector-curvature="0" />
  2213. <path
  2214. d="m 588.08141,565.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2215. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2216. id="path7330"
  2217. inkscape:connector-curvature="0" />
  2218. <path
  2219. d="m 590.58648,565.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2220. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2221. id="path7332"
  2222. inkscape:connector-curvature="0" />
  2223. <path
  2224. d="m 592.19617,563.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2225. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2226. id="path7334"
  2227. inkscape:connector-curvature="0" />
  2228. <path
  2229. d="m 595.66461,565.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2230. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2231. id="path7336"
  2232. inkscape:connector-curvature="0" />
  2233. <path
  2234. d="m 597.57,565.72797 q -0.1,0.1 -0.24,0.1 -0.14,0 -0.24,-0.1 -0.1,-0.1 -0.1,-0.24 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.14 -0.1,0.24 z"
  2235. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2236. id="path7338"
  2237. inkscape:connector-curvature="0" />
  2238. <path
  2239. d="m 501.77797,578.29797 0,-3.58 0.46,0 1.245,2.18 0.02,0 1.245,-2.18 0.46,0 0,3.58 -0.46,0 0,-2.125 0.02,-0.6 -0.02,0 -1.12,1.965 -0.27,0 -1.12,-1.965 -0.02,0 0.02,0.6 0,2.125 -0.46,0 z"
  2240. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2241. id="path7340"
  2242. inkscape:connector-curvature="0" />
  2243. <path
  2244. d="m 506.95836,578.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2245. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2246. id="path7342"
  2247. inkscape:connector-curvature="0" />
  2248. <path
  2249. d="m 510.40266,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2250. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2251. id="path7344"
  2252. inkscape:connector-curvature="0" />
  2253. <path
  2254. d="m 512.64625,578.29797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  2255. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2256. id="path7346"
  2257. inkscape:connector-curvature="0" />
  2258. <path
  2259. d="m 514.28258,578.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2260. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2261. id="path7348"
  2262. inkscape:connector-curvature="0" />
  2263. <path
  2264. d="m 516.34836,575.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m -0.735,4.195 q -0.135,0 -0.27,-0.05 l 0.12,-0.4 q 0.065,0.03 0.135,0.03 0.29,0 0.29,-0.38 l 0,-2.78 0.46,0 0,2.78 q 0,0.405 -0.195,0.6 -0.195,0.2 -0.54,0.2 z"
  2265. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2266. id="path7350"
  2267. inkscape:connector-curvature="0" />
  2268. <path
  2269. d="m 517.69758,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2270. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2271. id="path7352"
  2272. inkscape:connector-curvature="0" />
  2273. <path
  2274. d="m 519.94117,578.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2275. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2276. id="path7354"
  2277. inkscape:connector-curvature="0" />
  2278. <path
  2279. d="m 522.26109,578.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z m -0.55,-1.42 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  2280. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2281. id="path7356"
  2282. inkscape:connector-curvature="0" />
  2283. <path
  2284. d="m 526.05039,578.37797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  2285. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2286. id="path7358"
  2287. inkscape:connector-curvature="0" />
  2288. <path
  2289. d="m 528.28352,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2290. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2291. id="path7360"
  2292. inkscape:connector-curvature="0" />
  2293. <path
  2294. d="m 530.50711,575.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2295. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2296. id="path7362"
  2297. inkscape:connector-curvature="0" />
  2298. <path
  2299. d="m 533.715,578.33797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  2300. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2301. id="path7364"
  2302. inkscape:connector-curvature="0" />
  2303. <path
  2304. d="m 535.14875,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2305. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2306. id="path7366"
  2307. inkscape:connector-curvature="0" />
  2308. <path
  2309. d="m 537.37234,575.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2310. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2311. id="path7368"
  2312. inkscape:connector-curvature="0" />
  2313. <path
  2314. d="m 540.67219,578.37797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2315. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2316. id="path7370"
  2317. inkscape:connector-curvature="0" />
  2318. <path
  2319. d="m 542.71375,576.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2320. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2321. id="path7372"
  2322. inkscape:connector-curvature="0" />
  2323. <path
  2324. d="m 546.405,578.29797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  2325. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2326. id="path7374"
  2327. inkscape:connector-curvature="0" />
  2328. <path
  2329. d="m 551.16281,575.23297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2330. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2331. id="path7376"
  2332. inkscape:connector-curvature="0" />
  2333. <path
  2334. d="m 552.67633,578.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2335. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2336. id="path7378"
  2337. inkscape:connector-curvature="0" />
  2338. <path
  2339. d="m 555.87523,578.29797 -0.99,-2.45 0.5,0 0.72,1.9 0.01,0 0.73,-1.9 0.49,0 -1,2.45 -0.46,0 z"
  2340. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2341. id="path7380"
  2342. inkscape:connector-curvature="0" />
  2343. <path
  2344. d="m 558.66734,578.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2345. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2346. id="path7382"
  2347. inkscape:connector-curvature="0" />
  2348. <path
  2349. d="m 560.67313,575.84797 0,0.34 0.02,0 q 0.10001,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.45501,0 0.69501,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46001,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.28499,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44001,0 z"
  2350. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2351. id="path7384"
  2352. inkscape:connector-curvature="0" />
  2353. <path
  2354. d="m 563.98367,579.45797 q -0.435,0 -0.71,-0.22 -0.275,-0.215 -0.395,-0.495 l 0.42,-0.175 q 0.07,0.2 0.255,0.335 0.19,0.135 0.43,0.135 0.38,0 0.595,-0.23 0.22,-0.225 0.22,-0.615 l 0,-0.235 -0.02,0 q -0.12,0.18 -0.34,0.3 -0.22,0.12 -0.495,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.275,0 0.495,0.12 0.22,0.12 0.34,0.3 l 0.02,0 0,-0.34 0.44,0 0,2.325 q 0,0.63 -0.365,0.955 -0.365,0.33 -0.89,0.33 z m 0.035,-1.5 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2355. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2356. id="path7386"
  2357. inkscape:connector-curvature="0" />
  2358. <path
  2359. d="m 566.54523,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2360. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2361. id="path7388"
  2362. inkscape:connector-curvature="0" />
  2363. <path
  2364. d="m 568.76883,575.84797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2365. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2366. id="path7390"
  2367. inkscape:connector-curvature="0" />
  2368. <path
  2369. d="m 570.92367,578.29797 0,-0.4 1.395,-1.63 -1.355,0 0,-0.42 1.92,0 0,0.4 -1.395,1.63 1.415,0 0,0.42 -1.98,0 z"
  2370. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2371. id="path7392"
  2372. inkscape:connector-curvature="0" />
  2373. <path
  2374. d="m 574.07453,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2375. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2376. id="path7394"
  2377. inkscape:connector-curvature="0" />
  2378. <path
  2379. d="m 576.73883,578.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2380. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2381. id="path7396"
  2382. inkscape:connector-curvature="0" />
  2383. <path
  2384. d="m 579.66773,574.71797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  2385. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2386. id="path7398"
  2387. inkscape:connector-curvature="0" />
  2388. <path
  2389. d="m 583.03258,578.37797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2390. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2391. id="path7400"
  2392. inkscape:connector-curvature="0" />
  2393. <path
  2394. d="m 585.05836,578.29797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2395. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2396. id="path7402"
  2397. inkscape:connector-curvature="0" />
  2398. <path
  2399. d="m 586.41477,578.29797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  2400. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2401. id="path7404"
  2402. inkscape:connector-curvature="0" />
  2403. <path
  2404. d="m 590.88758,576.14297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2405. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2406. id="path7406"
  2407. inkscape:connector-curvature="0" />
  2408. <path
  2409. d="m 594.35602,578.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2410. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2411. id="path7408"
  2412. inkscape:connector-curvature="0" />
  2413. <path
  2414. d="m 596.5257,578.37797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2415. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2416. id="path7410"
  2417. inkscape:connector-curvature="0" />
  2418. <path
  2419. d="m 599.19,578.37797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2420. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2421. id="path7412"
  2422. inkscape:connector-curvature="0" />
  2423. <path
  2424. d="m 600.71039,578.85797 -0.215,-0.14 0.29,-0.42 q -0.11,-0.02 -0.19,-0.1 -0.08,-0.085 -0.08,-0.21 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.145 -0.15,0.37 l -0.335,0.5 z"
  2425. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2426. id="path7414"
  2427. inkscape:connector-curvature="0" />
  2428. <path
  2429. d="m 496.28922,582.11797 q 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.14 -0.1,0.24 -0.1,0.1 -0.24,0.1 -0.14,0 -0.24,-0.1 -0.1,-0.1 -0.1,-0.24 0,-0.14 0.1,-0.24 z m 0.01,2.38 0.05,-1.34 0.36,0 0.05,1.34 0,1.13 -0.46,0 0,-1.13 z"
  2430. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2431. id="path7416"
  2432. inkscape:connector-curvature="0" />
  2433. <path
  2434. d="m 498.66633,584.62797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  2435. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2436. id="path7418"
  2437. inkscape:connector-curvature="0" />
  2438. <path
  2439. d="m 500.46766,582.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2440. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2441. id="path7420"
  2442. inkscape:connector-curvature="0" />
  2443. <path
  2444. d="m 503.46656,584.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2445. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2446. id="path7422"
  2447. inkscape:connector-curvature="0" />
  2448. <path
  2449. d="m 506.53648,585.62797 0,-1.08 0.02,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 0,-0.34 0.44,0 0,3.53 -0.46,0 z m -0.76,-1.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2450. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2451. id="path7424"
  2452. inkscape:connector-curvature="0" />
  2453. <path
  2454. d="m 509.68781,584.54797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2455. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2456. id="path7426"
  2457. inkscape:connector-curvature="0" />
  2458. <path
  2459. d="m 511.33336,584.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2460. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2461. id="path7428"
  2462. inkscape:connector-curvature="0" />
  2463. <path
  2464. d="m 514.77766,584.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2465. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2466. id="path7430"
  2467. inkscape:connector-curvature="0" />
  2468. <path
  2469. d="m 518.77477,584.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2470. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2471. id="path7432"
  2472. inkscape:connector-curvature="0" />
  2473. <path
  2474. d="m 521.27984,584.62797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2475. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2476. id="path7434"
  2477. inkscape:connector-curvature="0" />
  2478. <path
  2479. d="m 523.78453,584.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2480. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2481. id="path7436"
  2482. inkscape:connector-curvature="0" />
  2483. <path
  2484. d="m 526.91383,580.96797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  2485. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2486. id="path7438"
  2487. inkscape:connector-curvature="0" />
  2488. <path
  2489. d="m 529.38367,582.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2490. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2491. id="path7440"
  2492. inkscape:connector-curvature="0" />
  2493. <path
  2494. d="m 532.36258,582.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2495. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2496. id="path7442"
  2497. inkscape:connector-curvature="0" />
  2498. <path
  2499. d="m 535.66242,584.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2500. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2501. id="path7444"
  2502. inkscape:connector-curvature="0" />
  2503. <path
  2504. d="m 537.70398,582.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2505. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2506. id="path7446"
  2507. inkscape:connector-curvature="0" />
  2508. <path
  2509. d="m 540.70289,584.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2510. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2511. id="path7448"
  2512. inkscape:connector-curvature="0" />
  2513. <path
  2514. d="m 543.62281,584.54797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2515. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2516. id="path7450"
  2517. inkscape:connector-curvature="0" />
  2518. <path
  2519. d="m 545.94273,584.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2520. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2521. id="path7452"
  2522. inkscape:connector-curvature="0" />
  2523. <path
  2524. d="m 548.65781,584.62797 q -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 0.355,-0.375 0.905,-0.375 0.41,0 0.68,0.2 0.27,0.2 0.395,0.505 l -0.42,0.175 q -0.19,-0.46 -0.685,-0.46 -0.305,0 -0.54,0.25 -0.23,0.25 -0.23,0.635 0,0.385 0.23,0.635 0.235,0.25 0.54,0.25 0.515,0 0.71,-0.46 l 0.41,0.175 q -0.125,0.3 -0.405,0.505 -0.275,0.2 -0.685,0.2 z"
  2525. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2526. id="path7454"
  2527. inkscape:connector-curvature="0" />
  2528. <path
  2529. d="m 550.33094,582.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z m 0.745,-2.36 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  2530. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2531. id="path7456"
  2532. inkscape:connector-curvature="0" />
  2533. <path
  2534. d="m 553.30984,582.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2535. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2536. id="path7458"
  2537. inkscape:connector-curvature="0" />
  2538. <path
  2539. d="m 556.60969,584.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2540. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2541. id="path7460"
  2542. inkscape:connector-curvature="0" />
  2543. <path
  2544. d="m 558.96555,581.48297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2545. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2546. id="path7462"
  2547. inkscape:connector-curvature="0" />
  2548. <path
  2549. d="m 560.59977,584.58797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  2550. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2551. id="path7464"
  2552. inkscape:connector-curvature="0" />
  2553. <path
  2554. d="m 561.49305,582.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2555. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2556. id="path7466"
  2557. inkscape:connector-curvature="0" />
  2558. <path
  2559. d="m 565.6443,584.54797 -0.46,0 0,-3.58 0.46,0 0,3.58 z"
  2560. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2561. id="path7468"
  2562. inkscape:connector-curvature="0" />
  2563. <path
  2564. d="m 566.94562,584.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31001,-0.625 0.30999,-0.23 0.765,-0.23 0.40499,0 0.66499,0.15 l 0,-0.07 q 0,-0.27 -0.18499,-0.43 -0.18501,-0.165 -0.45501,-0.165 -0.2,0 -0.365,0.095 -0.15999,0.095 -0.22,0.26 l -0.41999,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.77999,0.275 0.31001,0.275 0.31001,0.775 l 0,1.48 -0.44001,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.80501,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.33499,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2565. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2566. id="path7470"
  2567. inkscape:connector-curvature="0" />
  2568. <path
  2569. d="m 569.83273,584.54797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  2570. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2571. id="path7472"
  2572. inkscape:connector-curvature="0" />
  2573. <path
  2574. d="m 574.83625,584.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2575. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2576. id="path7474"
  2577. inkscape:connector-curvature="0" />
  2578. <path
  2579. d="m 577.05984,582.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2580. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2581. id="path7476"
  2582. inkscape:connector-curvature="0" />
  2583. <path
  2584. d="m 579.54969,582.39297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2585. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2586. id="path7478"
  2587. inkscape:connector-curvature="0" />
  2588. <path
  2589. d="m 584.26594,584.62797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2590. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2591. id="path7480"
  2592. inkscape:connector-curvature="0" />
  2593. <path
  2594. d="m 587.2025,584.62797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2595. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2596. id="path7482"
  2597. inkscape:connector-curvature="0" />
  2598. <path
  2599. d="m 590.3118,582.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2600. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2601. id="path7484"
  2602. inkscape:connector-curvature="0" />
  2603. <path
  2604. d="m 593.08664,581.48297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2605. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2606. id="path7486"
  2607. inkscape:connector-curvature="0" />
  2608. <path
  2609. d="m 594.13016,582.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2610. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2611. id="path7488"
  2612. inkscape:connector-curvature="0" />
  2613. <path
  2614. d="m 597.4407,585.70797 q -0.435,0 -0.71,-0.22 -0.275,-0.215 -0.395,-0.495 l 0.42,-0.175 q 0.07,0.2 0.255,0.335 0.19,0.135 0.43,0.135 0.38,0 0.595,-0.23 0.22,-0.225 0.22,-0.615 l 0,-0.235 -0.02,0 q -0.12,0.18 -0.34,0.3 -0.22,0.12 -0.495,0.12 -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.275,0 0.495,0.12 0.22,0.12 0.34,0.3 l 0.02,0 0,-0.34 0.44,0 0,2.325 q 0,0.63 -0.365,0.955 -0.365,0.33 -0.89,0.33 z m 0.035,-1.5 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2615. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2616. id="path7490"
  2617. inkscape:connector-curvature="0" />
  2618. <path
  2619. d="m 601.37727,584.54797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2620. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2621. id="path7492"
  2622. inkscape:connector-curvature="0" />
  2623. <path
  2624. d="m 602.38211,582.09797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z"
  2625. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2626. id="path7494"
  2627. inkscape:connector-curvature="0" />
  2628. <path
  2629. d="m 605.40266,584.62797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2630. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2631. id="path7496"
  2632. inkscape:connector-curvature="0" />
  2633. <path
  2634. d="m 507.79766,590.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0,0.34 -0.44,0 0,-3.58 0.46,0 0,1.13 -0.02,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  2635. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2636. id="path7498"
  2637. inkscape:connector-curvature="0" />
  2638. <path
  2639. d="m 510.15852,590.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2640. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2641. id="path7500"
  2642. inkscape:connector-curvature="0" />
  2643. <path
  2644. d="m 512.44211,587.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m -0.735,4.195 q -0.135,0 -0.27,-0.05 l 0.12,-0.4 q 0.065,0.03 0.135,0.03 0.29,0 0.29,-0.38 l 0,-2.78 0.46,0 0,2.78 q 0,0.405 -0.195,0.6 -0.195,0.2 -0.54,0.2 z"
  2645. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2646. id="path7502"
  2647. inkscape:connector-curvature="0" />
  2648. <path
  2649. d="m 513.79133,590.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2650. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2651. id="path7504"
  2652. inkscape:connector-curvature="0" />
  2653. <path
  2654. d="m 516.03492,590.79797 -0.46,0 0,-2.45 0.44,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.425,-0.13 0.205,0 0.345,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2655. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2656. id="path7506"
  2657. inkscape:connector-curvature="0" />
  2658. <path
  2659. d="m 518.06867,590.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z m 0.295,-2.6 -0.4,0 0.26,-0.64 0.5,0 -0.36,0.64 z"
  2660. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2661. id="path7508"
  2662. inkscape:connector-curvature="0" />
  2663. <path
  2664. d="m 521.73078,590.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2665. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2666. id="path7510"
  2667. inkscape:connector-curvature="0" />
  2668. <path
  2669. d="m 525.64289,590.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2670. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2671. id="path7512"
  2672. inkscape:connector-curvature="0" />
  2673. <path
  2674. d="m 527.99875,587.73297 q -0.095,0.095 -0.23,0.095 -0.135,0 -0.23,-0.095 -0.095,-0.095 -0.095,-0.23 0,-0.135 0.095,-0.23 0.095,-0.095 0.23,-0.095 0.135,0 0.23,0.095 0.095,0.095 0.095,0.23 0,0.135 -0.095,0.23 z m 0,3.065 -0.46,0 0,-2.45 0.46,0 0,2.45 z"
  2675. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2676. id="path7514"
  2677. inkscape:connector-curvature="0" />
  2678. <path
  2679. d="m 529.51227,590.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2680. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2681. id="path7516"
  2682. inkscape:connector-curvature="0" />
  2683. <path
  2684. d="m 532.12336,590.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  2685. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2686. id="path7518"
  2687. inkscape:connector-curvature="0" />
  2688. <path
  2689. d="m 535.83039,590.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2690. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2691. id="path7520"
  2692. inkscape:connector-curvature="0" />
  2693. <path
  2694. d="m 537.48453,590.83797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  2695. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2696. id="path7522"
  2697. inkscape:connector-curvature="0" />
  2698. <path
  2699. d="m 538.91828,590.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2700. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2701. id="path7524"
  2702. inkscape:connector-curvature="0" />
  2703. <path
  2704. d="m 541.16187,590.79797 -0.46,0 0,-2.45 0.44001,0 0,0.4 0.02,0 q 0.07,-0.2 0.285,-0.33 0.22,-0.13 0.42501,-0.13 0.20499,0 0.34499,0.06 l -0.175,0.43 q -0.09,-0.035 -0.245,-0.035 -0.25,0 -0.445,0.2 -0.19,0.195 -0.19,0.515 l 0,1.34 z"
  2705. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2706. id="path7526"
  2707. inkscape:connector-curvature="0" />
  2708. <path
  2709. d="m 542.51828,590.79797 0,-2.45 0.44,0 0,0.34 0.02,0 q 0.105,-0.175 0.32,-0.295 0.22,-0.125 0.435,-0.125 0.57,0 0.775,0.47 0.3,-0.47 0.855,-0.47 0.435,0 0.655,0.28 0.22,0.275 0.22,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 0,-1.43 q 0,-0.37 -0.135,-0.525 -0.135,-0.155 -0.41,-0.155 -0.27,0 -0.45,0.23 -0.175,0.23 -0.175,0.525 l 0,1.355 -0.46,0 z"
  2710. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2711. id="path7528"
  2712. inkscape:connector-curvature="0" />
  2713. <path
  2714. d="m 547.88609,590.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2715. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2716. id="path7530"
  2717. inkscape:connector-curvature="0" />
  2718. <path
  2719. d="m 551.61539,590.83797 q -0.385,0 -0.59,-0.205 -0.2,-0.205 -0.2,-0.58 l 0,-1.285 -0.43,0 0,-0.42 0.43,0 0,-0.75 0.46,0 0,0.75 0.6,0 0,0.42 -0.6,0 0,1.25 q 0,0.4 0.33,0.4 0.125,0 0.21,-0.04 l 0.16,0.395 q -0.15,0.065 -0.37,0.065 z"
  2720. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2721. id="path7532"
  2722. inkscape:connector-curvature="0" />
  2723. <path
  2724. d="m 554.47297,590.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2725. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2726. id="path7534"
  2727. inkscape:connector-curvature="0" />
  2728. <path
  2729. d="m 557.41633,590.87797 q -0.28,0 -0.505,-0.12 -0.22,-0.12 -0.33,-0.3 l -0.02,0 0.02,0.34 0,1.08 -0.46,0 0,-3.53 0.44,0 0,0.34 0.02,0 q 0.11,-0.18 0.33,-0.3 0.225,-0.12 0.505,-0.12 0.475,0 0.82,0.375 0.345,0.375 0.345,0.93 0,0.555 -0.345,0.93 -0.345,0.375 -0.82,0.375 z m -0.075,-0.42 q 0.32,0 0.55,-0.24 0.23,-0.245 0.23,-0.645 0,-0.4 -0.23,-0.64 -0.23,-0.245 -0.55,-0.245 -0.325,0 -0.555,0.24 -0.225,0.24 -0.225,0.645 0,0.405 0.225,0.645 0.23,0.24 0.555,0.24 z"
  2730. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2731. id="path7536"
  2732. inkscape:connector-curvature="0" />
  2733. <path
  2734. d="m 561.12336,590.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2735. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2736. id="path7538"
  2737. inkscape:connector-curvature="0" />
  2738. <path
  2739. d="m 562.1282,588.34797 0,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-2.45 0.44,0 z m 0.96,-0.525 q -0.13,0 -0.34,-0.11 -0.205,-0.115 -0.24,-0.115 -0.15,0 -0.165,0.175 l -0.38,0 q 0,-0.29 0.17,-0.44 0.175,-0.15 0.385,-0.15 0.13,0 0.34,0.115 0.21,0.11 0.24,0.11 0.15,0 0.165,-0.175 l 0.38,0 q 0,0.29 -0.175,0.44 -0.17,0.15 -0.38,0.15 z"
  2740. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2741. id="path7540"
  2742. inkscape:connector-curvature="0" />
  2743. <path
  2744. d="m 565.14875,590.87797 q -0.39,0 -0.655,-0.225 -0.26,-0.225 -0.26,-0.595 0,-0.4 0.31,-0.625 0.31,-0.23 0.765,-0.23 0.405,0 0.665,0.15 l 0,-0.07 q 0,-0.27 -0.185,-0.43 -0.185,-0.165 -0.455,-0.165 -0.2,0 -0.365,0.095 -0.16,0.095 -0.22,0.26 l -0.42,-0.18 q 0.085,-0.22 0.335,-0.405 0.25,-0.19 0.66,-0.19 0.47,0 0.78,0.275 0.31,0.275 0.31,0.775 l 0,1.48 -0.44,0 0,-0.34 -0.02,0 q -0.275,0.42 -0.805,0.42 z m 0.075,-0.42 q 0.285,0 0.515,-0.21 0.235,-0.215 0.235,-0.505 -0.195,-0.16 -0.585,-0.16 -0.335,0 -0.505,0.145 -0.17,0.145 -0.17,0.34 0,0.18 0.155,0.285 0.155,0.105 0.355,0.105 z"
  2745. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2746. id="path7542"
  2747. inkscape:connector-curvature="0" />
  2748. <path
  2749. d="m 567.92805,590.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2750. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2751. id="path7544"
  2752. inkscape:connector-curvature="0" />
  2753. <path
  2754. d="m 569.96961,588.64297 q 0.355,-0.375 0.905,-0.375 0.55,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.355,0.37 -0.905,0.37 -0.55,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34,1.575 q 0.24,0.24 0.565,0.24 0.325,0 0.56,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56,-0.245 -0.325,0 -0.565,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2755. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2756. id="path7546"
  2757. inkscape:connector-curvature="0" />
  2758. <path
  2759. d="m 574.68586,590.87797 q -0.475,0 -0.82,-0.375 -0.345,-0.375 -0.345,-0.93 0,-0.555 0.345,-0.93 0.345,-0.375 0.82,-0.375 0.28,0 0.5,0.12 0.225,0.12 0.335,0.3 l 0.02,0 -0.02,-0.34 0,-1.13 0.46,0 0,3.58 -0.44,0 0,-0.34 -0.02,0 q -0.11,0.18 -0.335,0.3 -0.22,0.12 -0.5,0.12 z m 0.075,-0.42 q 0.325,0 0.55,-0.24 0.23,-0.24 0.23,-0.645 0,-0.405 -0.23,-0.645 -0.225,-0.24 -0.55,-0.24 -0.32,0 -0.55,0.245 -0.23,0.24 -0.23,0.64 0,0.4 0.23,0.645 0.23,0.24 0.55,0.24 z"
  2760. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2761. id="path7548"
  2762. inkscape:connector-curvature="0" />
  2763. <path
  2764. d="m 577.62242,590.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2765. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2766. id="path7550"
  2767. inkscape:connector-curvature="0" />
  2768. <path
  2769. d="m 580.75172,587.21797 0,1.13 -0.02,0.34 0.02,0 q 0.1,-0.175 0.315,-0.295 0.215,-0.125 0.46,-0.125 0.455,0 0.695,0.28 0.24,0.28 0.24,0.75 l 0,1.5 -0.46,0 0,-1.43 q 0,-0.68 -0.605,-0.68 -0.285,0 -0.465,0.23 -0.18,0.225 -0.18,0.525 l 0,1.355 -0.46,0 0,-3.58 0.46,0 z"
  2770. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2771. id="path7552"
  2772. inkscape:connector-curvature="0" />
  2773. <path
  2774. d="m 585.15656,590.79797 -0.44,0 0,-0.34 -0.02,0 q -0.105,0.175 -0.32,0.3 -0.215,0.12 -0.455,0.12 -0.46,0 -0.7,-0.28 -0.235,-0.28 -0.235,-0.75 l 0,-1.5 0.46,0 0,1.425 q 0,0.685 0.605,0.685 0.285,0 0.465,-0.23 0.18,-0.23 0.18,-0.53 l 0,-1.35 0.46,0 0,2.45 z"
  2775. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2776. id="path7554"
  2777. inkscape:connector-curvature="0" />
  2778. <path
  2779. d="m 586.80211,590.87797 q -0.555,0 -0.905,-0.37 -0.345,-0.37 -0.345,-0.935 0,-0.535 0.335,-0.92 0.34,-0.385 0.865,-0.385 0.545,0 0.87,0.355 0.33,0.355 0.33,0.95 l -0.005,0.085 -1.935,0 q 0.02,0.37 0.245,0.585 0.23,0.215 0.535,0.215 0.495,0 0.67,-0.42 l 0.41,0.17 q -0.12,0.285 -0.395,0.48 -0.275,0.19 -0.675,0.19 z m 0.66,-1.6 q -0.015,-0.21 -0.195,-0.4 -0.175,-0.19 -0.525,-0.19 -0.255,0 -0.445,0.16 -0.185,0.16 -0.255,0.43 l 1.42,0 z"
  2780. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2781. id="path7556"
  2782. inkscape:connector-curvature="0" />
  2783. <path
  2784. d="m 589.30719,590.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2785. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2786. id="path7558"
  2787. inkscape:connector-curvature="0" />
  2788. <path
  2789. d="m 590.91687,588.64297 q 0.35501,-0.375 0.905,-0.375 0.55001,0 0.905,0.375 0.355,0.37 0.355,0.93 0,0.56 -0.355,0.935 -0.35499,0.37 -0.905,0.37 -0.54999,0 -0.905,-0.37 -0.355,-0.375 -0.355,-0.935 0,-0.56 0.355,-0.93 z m 0.34001,1.575 q 0.24,0.24 0.56499,0.24 0.32501,0 0.56001,-0.24 0.24,-0.245 0.24,-0.645 0,-0.4 -0.24,-0.64 -0.235,-0.245 -0.56001,-0.245 -0.32499,0 -0.56499,0.245 -0.235,0.24 -0.235,0.64 0,0.4 0.235,0.645 z"
  2790. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2791. id="path7560"
  2792. inkscape:connector-curvature="0" />
  2793. <path
  2794. d="m 594.38531,590.87797 q -0.41,0 -0.68,-0.2 -0.265,-0.2 -0.39,-0.5 l 0.41,-0.17 q 0.195,0.46 0.665,0.46 0.215,0 0.35,-0.095 0.14,-0.095 0.14,-0.25 0,-0.24 -0.335,-0.325 l -0.495,-0.12 q -0.235,-0.06 -0.445,-0.225 -0.21,-0.17 -0.21,-0.455 0,-0.325 0.285,-0.525 0.29,-0.205 0.685,-0.205 0.325,0 0.58,0.15 0.255,0.145 0.365,0.42 l -0.4,0.165 q -0.135,-0.325 -0.56,-0.325 -0.205,0 -0.345,0.085 -0.14,0.085 -0.14,0.23 0,0.21 0.325,0.285 l 0.485,0.115 q 0.345,0.08 0.51,0.275 0.165,0.195 0.165,0.44 0,0.33 -0.27,0.55 -0.27,0.22 -0.695,0.22 z"
  2795. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2796. id="path7562"
  2797. inkscape:connector-curvature="0" />
  2798. <path
  2799. d="m 596.2907,590.72797 q -0.1,0.1 -0.24,0.1 -0.14,0 -0.24,-0.1 -0.1,-0.1 -0.1,-0.24 0,-0.14 0.1,-0.24 0.1,-0.1 0.24,-0.1 0.14,0 0.24,0.1 0.1,0.1 0.1,0.24 0,0.14 -0.1,0.24 z m -0.42,-1.04 -0.05,-1.34 0,-1.13 0.46,0 0,1.13 -0.05,1.34 -0.36,0 z"
  2800. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5px;font-family:'Product Sans';-inkscape-font-specification:'Product Sans';text-align:center;text-anchor:middle;fill:#141415;fill-opacity:1"
  2801. id="path7564"
  2802. inkscape:connector-curvature="0" />
  2803. </g>
  2804. <g
  2805. transform="matrix(0.42622951,0,0,0.42622951,433.66162,103.5383)"
  2806. id="layer1-0"
  2807. inkscape:label="Layer 1">
  2808. <g
  2809. id="g12303" />
  2810. <g
  2811. transform="matrix(1.0050959,0,0,1.0529573,-127.88386,-128.12129)"
  2812. id="g4301">
  2813. <rect
  2814. y="1038.1"
  2815. x="23.613815"
  2816. height="9"
  2817. width="90.10939"
  2818. id="rect5537"
  2819. style="opacity:0.8;fill:url(#linearGradient4305);fill-opacity:1;stroke:none" />
  2820. <rect
  2821. style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none"
  2822. id="rect3099"
  2823. width="90.10939"
  2824. height="1.0186652"
  2825. x="23.613815"
  2826. y="1042.0812" />
  2827. </g>
  2828. </g>
  2829. </g>
  2830. </svg>