init.svg 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!-- Created with Inkscape (http://www.inkscape.org/) -->
  3. <svg
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:cc="http://creativecommons.org/ns#"
  6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  7. xmlns:svg="http://www.w3.org/2000/svg"
  8. xmlns="http://www.w3.org/2000/svg"
  9. xmlns:xlink="http://www.w3.org/1999/xlink"
  10. xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  11. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  12. width="600"
  13. height="800"
  14. id="svg2"
  15. version="1.1"
  16. inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
  17. sodipodi:docname="init.svg"
  18. enable-background="new">
  19. <defs
  20. id="defs4">
  21. <linearGradient
  22. id="linearGradient4039">
  23. <stop
  24. style="stop-color:#000000;stop-opacity:1;"
  25. offset="0"
  26. id="stop4041" />
  27. <stop
  28. style="stop-color:#ffffff;stop-opacity:1;"
  29. offset="1"
  30. id="stop4043" />
  31. </linearGradient>
  32. <inkscape:path-effect
  33. effect="skeletal"
  34. id="path-effect3850"
  35. is_visible="true"
  36. pattern="m 1.0878566,2.8242869 10.0000004,5 0,-10 z"
  37. copytype="single_stretched"
  38. prop_scale="1"
  39. scale_y_rel="false"
  40. spacing="0"
  41. normal_offset="0"
  42. tang_offset="0"
  43. prop_units="false"
  44. vertical_pattern="false"
  45. fuse_tolerance="0" />
  46. <inkscape:path-effect
  47. effect="skeletal"
  48. id="path-effect3846"
  49. is_visible="true"
  50. pattern="M 0,5 10,10 10,0 z"
  51. copytype="single_stretched"
  52. prop_scale="1"
  53. scale_y_rel="false"
  54. spacing="0"
  55. normal_offset="0"
  56. tang_offset="0"
  57. prop_units="false"
  58. vertical_pattern="false"
  59. fuse_tolerance="0" />
  60. <inkscape:path-effect
  61. effect="skeletal"
  62. id="path-effect3842"
  63. is_visible="true"
  64. pattern="M 0,5 10,10 10,0 z"
  65. copytype="single_stretched"
  66. prop_scale="1"
  67. scale_y_rel="false"
  68. spacing="0"
  69. normal_offset="0"
  70. tang_offset="0"
  71. prop_units="false"
  72. vertical_pattern="false"
  73. fuse_tolerance="0" />
  74. <clipPath
  75. clipPathUnits="userSpaceOnUse"
  76. id="clipPath3215">
  77. <rect
  78. style="fill:none;stroke:#ff0000;stroke-width:0.49999997;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  79. id="rect3217"
  80. width="132.77922"
  81. height="96.700287"
  82. x="26.121317"
  83. y="109.09779" />
  84. </clipPath>
  85. <filter
  86. inkscape:collect="always"
  87. id="filter3243">
  88. <feBlend
  89. inkscape:collect="always"
  90. mode="lighten"
  91. in2="BackgroundImage"
  92. id="feBlend3245" />
  93. </filter>
  94. <linearGradient
  95. inkscape:collect="always"
  96. xlink:href="#linearGradient4039"
  97. id="linearGradient4045"
  98. x1="150.19951"
  99. y1="109.51034"
  100. x2="300.47745"
  101. y2="109.51034"
  102. gradientUnits="userSpaceOnUse"
  103. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,150.20603)" />
  104. <linearGradient
  105. inkscape:collect="always"
  106. xlink:href="#linearGradient4039-7"
  107. id="linearGradient4045-8"
  108. x1="150.19951"
  109. y1="109.51034"
  110. x2="300.47745"
  111. y2="109.51034"
  112. gradientUnits="userSpaceOnUse"
  113. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,150.20603)" />
  114. <linearGradient
  115. id="linearGradient4039-7">
  116. <stop
  117. style="stop-color:#000000;stop-opacity:1;"
  118. offset="0"
  119. id="stop4041-9" />
  120. <stop
  121. style="stop-color:#000000;stop-opacity:0;"
  122. offset="1"
  123. id="stop4043-2" />
  124. </linearGradient>
  125. <linearGradient
  126. y2="109.51034"
  127. x2="300.47745"
  128. y1="109.51034"
  129. x1="150.19951"
  130. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,150.20603)"
  131. gradientUnits="userSpaceOnUse"
  132. id="linearGradient4062"
  133. xlink:href="#linearGradient4039-7"
  134. inkscape:collect="always" />
  135. <linearGradient
  136. y2="109.51034"
  137. x2="300.47745"
  138. y1="109.51034"
  139. x1="150.19951"
  140. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,150.20603)"
  141. gradientUnits="userSpaceOnUse"
  142. id="linearGradient4062-2"
  143. xlink:href="#linearGradient4039-7-3"
  144. inkscape:collect="always" />
  145. <linearGradient
  146. id="linearGradient4039-7-3">
  147. <stop
  148. style="stop-color:#000000;stop-opacity:1;"
  149. offset="0"
  150. id="stop4041-9-7" />
  151. <stop
  152. style="stop-color:#000000;stop-opacity:0;"
  153. offset="1"
  154. id="stop4043-2-5" />
  155. </linearGradient>
  156. <linearGradient
  157. y2="109.51034"
  158. x2="300.47745"
  159. y1="109.51034"
  160. x1="150.19951"
  161. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,150.20603)"
  162. gradientUnits="userSpaceOnUse"
  163. id="linearGradient4096"
  164. xlink:href="#linearGradient4039-7-3"
  165. inkscape:collect="always" />
  166. <linearGradient
  167. y2="109.51034"
  168. x2="300.47745"
  169. y1="109.51034"
  170. x1="150.19951"
  171. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,150.20603)"
  172. gradientUnits="userSpaceOnUse"
  173. id="linearGradient4096-2"
  174. xlink:href="#linearGradient4039-7-3-2"
  175. inkscape:collect="always" />
  176. <linearGradient
  177. id="linearGradient4039-7-3-2">
  178. <stop
  179. style="stop-color:#000000;stop-opacity:1;"
  180. offset="0"
  181. id="stop4041-9-7-8" />
  182. <stop
  183. style="stop-color:#000000;stop-opacity:0;"
  184. offset="1"
  185. id="stop4043-2-5-9" />
  186. </linearGradient>
  187. <linearGradient
  188. y2="109.51034"
  189. x2="300.47745"
  190. y1="109.51034"
  191. x1="150.19951"
  192. gradientTransform="matrix(1.2079564,0,0,0.68284789,-981.04035,150.20603)"
  193. gradientUnits="userSpaceOnUse"
  194. id="linearGradient4130"
  195. xlink:href="#linearGradient4039-7-3-2"
  196. inkscape:collect="always" />
  197. <linearGradient
  198. y2="109.51034"
  199. x2="300.47745"
  200. y1="109.51034"
  201. x1="150.19951"
  202. gradientTransform="matrix(1.2079564,0,0,0.68284789,-981.04035,450.20603)"
  203. gradientUnits="userSpaceOnUse"
  204. id="linearGradient4130-3"
  205. xlink:href="#linearGradient4039-7-3-2-6"
  206. inkscape:collect="always" />
  207. <linearGradient
  208. id="linearGradient4039-7-3-2-6">
  209. <stop
  210. style="stop-color:#000000;stop-opacity:1;"
  211. offset="0"
  212. id="stop4041-9-7-8-1" />
  213. <stop
  214. style="stop-color:#000000;stop-opacity:0;"
  215. offset="1"
  216. id="stop4043-2-5-9-2" />
  217. </linearGradient>
  218. <linearGradient
  219. y2="109.51034"
  220. x2="300.47745"
  221. y1="109.51034"
  222. x1="150.19951"
  223. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,450.20603)"
  224. gradientUnits="userSpaceOnUse"
  225. id="linearGradient4096-9"
  226. xlink:href="#linearGradient4039-7-3-3"
  227. inkscape:collect="always" />
  228. <linearGradient
  229. id="linearGradient4039-7-3-3">
  230. <stop
  231. style="stop-color:#000000;stop-opacity:1;"
  232. offset="0"
  233. id="stop4041-9-7-1" />
  234. <stop
  235. style="stop-color:#000000;stop-opacity:0;"
  236. offset="1"
  237. id="stop4043-2-5-94" />
  238. </linearGradient>
  239. <linearGradient
  240. y2="109.51034"
  241. x2="300.47745"
  242. y1="109.51034"
  243. x1="150.19951"
  244. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,450.20603)"
  245. gradientUnits="userSpaceOnUse"
  246. id="linearGradient4062-7"
  247. xlink:href="#linearGradient4039-7-8"
  248. inkscape:collect="always" />
  249. <linearGradient
  250. id="linearGradient4039-7-8">
  251. <stop
  252. style="stop-color:#000000;stop-opacity:1;"
  253. offset="0"
  254. id="stop4041-9-4" />
  255. <stop
  256. style="stop-color:#000000;stop-opacity:0;"
  257. offset="1"
  258. id="stop4043-2-50" />
  259. </linearGradient>
  260. <linearGradient
  261. inkscape:collect="always"
  262. xlink:href="#linearGradient4039-6"
  263. id="linearGradient4045-3"
  264. x1="150.19951"
  265. y1="109.51034"
  266. x2="300.47745"
  267. y2="109.51034"
  268. gradientUnits="userSpaceOnUse"
  269. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,150.20603)" />
  270. <linearGradient
  271. id="linearGradient4039-6">
  272. <stop
  273. style="stop-color:#000000;stop-opacity:1;"
  274. offset="0"
  275. id="stop4041-1" />
  276. <stop
  277. style="stop-color:#000000;stop-opacity:0;"
  278. offset="1"
  279. id="stop4043-0" />
  280. </linearGradient>
  281. <linearGradient
  282. y2="109.51034"
  283. x2="300.47745"
  284. y1="109.51034"
  285. x1="150.19951"
  286. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,450.20603)"
  287. gradientUnits="userSpaceOnUse"
  288. id="linearGradient4179"
  289. xlink:href="#linearGradient4039-6"
  290. inkscape:collect="always" />
  291. <linearGradient
  292. inkscape:collect="always"
  293. xlink:href="#linearGradient4039"
  294. id="linearGradient4234"
  295. gradientUnits="userSpaceOnUse"
  296. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,150.20603)"
  297. x1="150.19951"
  298. y1="109.51034"
  299. x2="300.47745"
  300. y2="109.51034" />
  301. <linearGradient
  302. inkscape:collect="always"
  303. xlink:href="#linearGradient4039-7"
  304. id="linearGradient4236"
  305. gradientUnits="userSpaceOnUse"
  306. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,150.20603)"
  307. x1="150.19951"
  308. y1="109.51034"
  309. x2="300.47745"
  310. y2="109.51034" />
  311. <linearGradient
  312. inkscape:collect="always"
  313. xlink:href="#linearGradient4039-7-3"
  314. id="linearGradient4238"
  315. gradientUnits="userSpaceOnUse"
  316. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,150.20603)"
  317. x1="150.19951"
  318. y1="109.51034"
  319. x2="300.47745"
  320. y2="109.51034" />
  321. <linearGradient
  322. inkscape:collect="always"
  323. xlink:href="#linearGradient4039-7-3-2"
  324. id="linearGradient4240"
  325. gradientUnits="userSpaceOnUse"
  326. gradientTransform="matrix(1.2079564,0,0,0.68284789,-981.04035,150.20603)"
  327. x1="150.19951"
  328. y1="109.51034"
  329. x2="300.47745"
  330. y2="109.51034" />
  331. <linearGradient
  332. inkscape:collect="always"
  333. xlink:href="#linearGradient4039"
  334. id="linearGradient4290"
  335. gradientUnits="userSpaceOnUse"
  336. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,150.20603)"
  337. x1="150.19951"
  338. y1="109.51034"
  339. x2="300.47745"
  340. y2="109.51034" />
  341. <linearGradient
  342. inkscape:collect="always"
  343. xlink:href="#linearGradient4039-7"
  344. id="linearGradient4292"
  345. gradientUnits="userSpaceOnUse"
  346. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,150.20603)"
  347. x1="150.19951"
  348. y1="109.51034"
  349. x2="300.47745"
  350. y2="109.51034" />
  351. <linearGradient
  352. inkscape:collect="always"
  353. xlink:href="#linearGradient4039-7-3"
  354. id="linearGradient4294"
  355. gradientUnits="userSpaceOnUse"
  356. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,150.20603)"
  357. x1="150.19951"
  358. y1="109.51034"
  359. x2="300.47745"
  360. y2="109.51034" />
  361. <linearGradient
  362. inkscape:collect="always"
  363. xlink:href="#linearGradient4039-7-3-2"
  364. id="linearGradient4296"
  365. gradientUnits="userSpaceOnUse"
  366. gradientTransform="matrix(1.2079564,0,0,0.68284789,-981.04035,150.20603)"
  367. x1="150.19951"
  368. y1="109.51034"
  369. x2="300.47745"
  370. y2="109.51034" />
  371. <linearGradient
  372. inkscape:collect="always"
  373. xlink:href="#linearGradient4039-6"
  374. id="linearGradient4298"
  375. gradientUnits="userSpaceOnUse"
  376. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,450.20603)"
  377. x1="150.19951"
  378. y1="109.51034"
  379. x2="300.47745"
  380. y2="109.51034" />
  381. <linearGradient
  382. inkscape:collect="always"
  383. xlink:href="#linearGradient4039-7-8"
  384. id="linearGradient4300"
  385. gradientUnits="userSpaceOnUse"
  386. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,450.20603)"
  387. x1="150.19951"
  388. y1="109.51034"
  389. x2="300.47745"
  390. y2="109.51034" />
  391. <linearGradient
  392. inkscape:collect="always"
  393. xlink:href="#linearGradient4039-7-3-3"
  394. id="linearGradient4302"
  395. gradientUnits="userSpaceOnUse"
  396. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,450.20603)"
  397. x1="150.19951"
  398. y1="109.51034"
  399. x2="300.47745"
  400. y2="109.51034" />
  401. <linearGradient
  402. inkscape:collect="always"
  403. xlink:href="#linearGradient4039-7-3-2-6"
  404. id="linearGradient4304"
  405. gradientUnits="userSpaceOnUse"
  406. gradientTransform="matrix(1.2079564,0,0,0.68284789,-981.04035,450.20603)"
  407. x1="150.19951"
  408. y1="109.51034"
  409. x2="300.47745"
  410. y2="109.51034" />
  411. <linearGradient
  412. inkscape:collect="always"
  413. xlink:href="#linearGradient4039"
  414. id="linearGradient4341"
  415. gradientUnits="userSpaceOnUse"
  416. gradientTransform="matrix(1.3726428,0,0,0.68284789,-412.5249,150.20603)"
  417. x1="150.19951"
  418. y1="109.51034"
  419. x2="300.47745"
  420. y2="109.51034" />
  421. <linearGradient
  422. inkscape:collect="always"
  423. xlink:href="#linearGradient4039-7"
  424. id="linearGradient4343"
  425. gradientUnits="userSpaceOnUse"
  426. gradientTransform="matrix(1.3726428,0,0,0.68284789,-618.52487,150.20603)"
  427. x1="150.19951"
  428. y1="109.51034"
  429. x2="300.47745"
  430. y2="109.51034" />
  431. <linearGradient
  432. inkscape:collect="always"
  433. xlink:href="#linearGradient4039-7-3"
  434. id="linearGradient4345"
  435. gradientUnits="userSpaceOnUse"
  436. gradientTransform="matrix(1.3726428,0,0,0.68284789,-824.52487,150.20603)"
  437. x1="150.19951"
  438. y1="109.51034"
  439. x2="300.47745"
  440. y2="109.51034" />
  441. <linearGradient
  442. inkscape:collect="always"
  443. xlink:href="#linearGradient4039-7-3-2"
  444. id="linearGradient4347"
  445. gradientUnits="userSpaceOnUse"
  446. gradientTransform="matrix(1.2079564,0,0,0.68284789,-981.04035,150.20603)"
  447. x1="150.19951"
  448. y1="109.51034"
  449. x2="300.47745"
  450. y2="109.51034" />
  451. </defs>
  452. <sodipodi:namedview
  453. id="base"
  454. pagecolor="#ffffff"
  455. bordercolor="#666666"
  456. borderopacity="1.0"
  457. inkscape:pageopacity="0.0"
  458. inkscape:pageshadow="2"
  459. inkscape:zoom="1.4142136"
  460. inkscape:cx="172.94671"
  461. inkscape:cy="530.41986"
  462. inkscape:document-units="px"
  463. inkscape:current-layer="Screen3"
  464. showgrid="false"
  465. inkscape:showpageshadow="false"
  466. inkscape:window-width="1920"
  467. inkscape:window-height="1086"
  468. inkscape:window-x="0"
  469. inkscape:window-y="27"
  470. inkscape:window-maximized="1"
  471. showguides="true"
  472. inkscape:guide-bbox="true"
  473. inkscape:snap-global="false">
  474. <sodipodi:guide
  475. orientation="1,0"
  476. position="152.13675,679.65812"
  477. id="guide3862"
  478. inkscape:locked="false" />
  479. <sodipodi:guide
  480. orientation="0,1"
  481. position="631.09837,682.50499"
  482. id="guide3864"
  483. inkscape:locked="false" />
  484. <sodipodi:guide
  485. orientation="0,1"
  486. position="258.44752,430.36285"
  487. id="guide3866"
  488. inkscape:locked="false" />
  489. <sodipodi:guide
  490. orientation="1,0"
  491. position="-214.37657,1023.7575"
  492. id="guide3868"
  493. inkscape:locked="false" />
  494. <sodipodi:guide
  495. orientation="1,0"
  496. position="489.82906,377.61996"
  497. id="guide3870"
  498. inkscape:locked="false" />
  499. <sodipodi:guide
  500. orientation="1,0"
  501. position="570.63517,395.27269"
  502. id="guide3872"
  503. inkscape:locked="false" />
  504. <sodipodi:guide
  505. orientation="1,0"
  506. position="190.06248,713.49993"
  507. id="guide3874"
  508. inkscape:locked="false" />
  509. <sodipodi:guide
  510. orientation="1,0"
  511. position="399.31624,492.99145"
  512. id="guide3876"
  513. inkscape:locked="false" />
  514. <sodipodi:guide
  515. orientation="0,1"
  516. position="110.25,575.75"
  517. id="guide3903"
  518. inkscape:locked="false" />
  519. <sodipodi:guide
  520. orientation="1,0"
  521. position="242.99996,526.99992"
  522. id="guide3878"
  523. inkscape:locked="false" />
  524. <sodipodi:guide
  525. orientation="0.0038141018,0.99999273"
  526. position="-55.861436,530.33009"
  527. id="guide3882"
  528. inkscape:locked="false" />
  529. <sodipodi:guide
  530. orientation="1,0"
  531. position="338.52737,373.70593"
  532. id="guide3888"
  533. inkscape:locked="false" />
  534. <sodipodi:guide
  535. orientation="0,1"
  536. position="311.295,186.3903"
  537. id="guide3978"
  538. inkscape:locked="false" />
  539. <sodipodi:guide
  540. orientation="1,0"
  541. position="284.44444,235.55556"
  542. id="guide3980"
  543. inkscape:locked="false" />
  544. <sodipodi:guide
  545. orientation="0,1"
  546. position="221.43925,344.1253"
  547. id="guide3990"
  548. inkscape:locked="false" />
  549. <sodipodi:guide
  550. orientation="1,0"
  551. position="193.16239,322.73504"
  552. id="guide4002"
  553. inkscape:locked="false" />
  554. <sodipodi:guide
  555. orientation="1,0"
  556. position="513.35944,90.509654"
  557. id="guide4004"
  558. inkscape:locked="false" />
  559. <sodipodi:guide
  560. orientation="0,1"
  561. position="-30.999994,277.49994"
  562. id="guide4006"
  563. inkscape:locked="false" />
  564. <sodipodi:guide
  565. orientation="0,1"
  566. position="194.90764,228.79739"
  567. id="guide4008"
  568. inkscape:locked="false" />
  569. <sodipodi:guide
  570. orientation="0,1"
  571. position="226.5,364.5"
  572. id="guide4014"
  573. inkscape:locked="false" />
  574. <sodipodi:guide
  575. orientation="0,1"
  576. position="288,291"
  577. id="guide4016"
  578. inkscape:locked="false" />
  579. <sodipodi:guide
  580. orientation="1,0"
  581. position="417.72333,380.95378"
  582. id="guide4018"
  583. inkscape:locked="false" />
  584. <sodipodi:guide
  585. orientation="1,0"
  586. position="332,1466"
  587. id="guide4020"
  588. inkscape:locked="false" />
  589. <sodipodi:guide
  590. orientation="1,0"
  591. position="517.81974,386.55171"
  592. id="guide4022"
  593. inkscape:locked="false" />
  594. <sodipodi:guide
  595. orientation="1,0"
  596. position="437.3455,147.7853"
  597. id="guide4024"
  598. inkscape:locked="false" />
  599. <sodipodi:guide
  600. orientation="0,1"
  601. position="470.61408,163.6952"
  602. id="guide4034"
  603. inkscape:locked="false" />
  604. <sodipodi:guide
  605. orientation="0,1"
  606. position="188.66757,36.261886"
  607. id="guide4036"
  608. inkscape:locked="false" />
  609. <sodipodi:guide
  610. orientation="0,1"
  611. position="55.555556,119.48718"
  612. id="guide4042"
  613. inkscape:locked="false" />
  614. <sodipodi:guide
  615. orientation="1,0"
  616. position="489.82906,802.79304"
  617. id="guide4046"
  618. inkscape:locked="false" />
  619. <sodipodi:guide
  620. orientation="1,0"
  621. position="489.82906,126.15385"
  622. id="guide4054"
  623. inkscape:locked="false" />
  624. <sodipodi:guide
  625. orientation="1,0"
  626. position="527.17949,127.26496"
  627. id="guide4056"
  628. inkscape:locked="false" />
  629. <sodipodi:guide
  630. orientation="0,1"
  631. position="453.2242,51.51757"
  632. id="guide4058"
  633. inkscape:locked="false" />
  634. <sodipodi:guide
  635. orientation="0,1"
  636. position="501.41026,101.75214"
  637. id="guide3220"
  638. inkscape:locked="false" />
  639. <sodipodi:guide
  640. orientation="1,0"
  641. position="67.539557,285.60756"
  642. id="guide3295"
  643. inkscape:locked="false" />
  644. <sodipodi:guide
  645. orientation="1,0"
  646. position="-3.8426606,641.4169"
  647. id="guide3297"
  648. inkscape:locked="false" />
  649. <sodipodi:guide
  650. orientation="1,0"
  651. position="80.610173,682.50499"
  652. id="guide3299"
  653. inkscape:locked="false" />
  654. <sodipodi:guide
  655. orientation="1,0"
  656. position="60.99999,308.99995"
  657. id="guide3301"
  658. inkscape:locked="false" />
  659. <sodipodi:guide
  660. orientation="1,0"
  661. position="115.96549,445.4772"
  662. id="guide4210"
  663. inkscape:locked="false" />
  664. <sodipodi:guide
  665. orientation="0,1"
  666. position="42.603184,624.19851"
  667. id="guide4212"
  668. inkscape:locked="false" />
  669. <sodipodi:guide
  670. orientation="0,1"
  671. position="-13.25,609.25"
  672. id="guide4214"
  673. inkscape:locked="false" />
  674. <sodipodi:guide
  675. orientation="0,1"
  676. position="-1.1057256,-0.030211082"
  677. id="guide3522"
  678. inkscape:locked="false" />
  679. <sodipodi:guide
  680. orientation="1,0"
  681. position="0,805.11325"
  682. id="guide3524"
  683. inkscape:locked="false" />
  684. <sodipodi:guide
  685. orientation="0,1"
  686. position="-12.761161,800.08613"
  687. id="guide3526"
  688. inkscape:locked="false" />
  689. <sodipodi:guide
  690. orientation="1,0"
  691. position="600.06018,816.51007"
  692. id="guide3528"
  693. inkscape:locked="false" />
  694. <sodipodi:guide
  695. orientation="0,1"
  696. position="513.35952,257.38687"
  697. id="guide3581"
  698. inkscape:locked="false" />
  699. <sodipodi:guide
  700. orientation="1,0"
  701. position="235.79145,885.35388"
  702. id="guide3587"
  703. inkscape:locked="false" />
  704. <sodipodi:guide
  705. orientation="1,0"
  706. position="487.90358,275.41804"
  707. id="guide4428"
  708. inkscape:locked="false" />
  709. <sodipodi:guide
  710. orientation="6.4528878e-09,1"
  711. position="242.53759,724.78434"
  712. id="guide4389"
  713. inkscape:locked="false" />
  714. <sodipodi:guide
  715. orientation="1,0"
  716. position="-150.01748,739.32795"
  717. id="guide3626"
  718. inkscape:locked="false" />
  719. <sodipodi:guide
  720. orientation="1,0"
  721. position="229.10256,610.94016"
  722. id="guide3628"
  723. inkscape:locked="false" />
  724. <sodipodi:guide
  725. orientation="1,0"
  726. position="-121.25,562.375"
  727. id="guide3630"
  728. inkscape:locked="false" />
  729. <sodipodi:guide
  730. orientation="0,1"
  731. position="-52.5,712.5"
  732. id="guide3632"
  733. inkscape:locked="false" />
  734. <sodipodi:guide
  735. orientation="0,1"
  736. position="-150.01748,747.01328"
  737. id="guide3636"
  738. inkscape:locked="false" />
  739. <sodipodi:guide
  740. orientation="1,0"
  741. position="-120,1326"
  742. id="guide4403"
  743. inkscape:locked="false" />
  744. <sodipodi:guide
  745. orientation="0,1"
  746. position="373.99994,424.99993"
  747. id="guide3649"
  748. inkscape:locked="false" />
  749. <sodipodi:guide
  750. orientation="0,1"
  751. position="434.3403,129.40053"
  752. id="guide3788"
  753. inkscape:locked="false" />
  754. <sodipodi:guide
  755. orientation="1,0"
  756. position="489.82906,157.15447"
  757. id="guide3863"
  758. inkscape:locked="false" />
  759. <sodipodi:guide
  760. orientation="1,0"
  761. position="210.85039,767.12243"
  762. id="guide3865"
  763. inkscape:locked="false" />
  764. </sodipodi:namedview>
  765. <metadata
  766. id="metadata7">
  767. <rdf:RDF>
  768. <cc:Work
  769. rdf:about="">
  770. <dc:format>image/svg+xml</dc:format>
  771. <dc:type
  772. rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
  773. <dc:title />
  774. </cc:Work>
  775. </rdf:RDF>
  776. </metadata>
  777. <g
  778. inkscape:groupmode="layer"
  779. id="layer3"
  780. inkscape:label="Screen1"
  781. style="display:inline;filter:url(#filter3243)">
  782. <g
  783. id="Screen1"
  784. inkscape:label="#g4271">
  785. <rect
  786. style="fill:#ffffff;fill-opacity:1;stroke:none"
  787. id="rect3965"
  788. width="75.281731"
  789. height="799.35895"
  790. x="524"
  791. y="0.46947202" />
  792. <g
  793. id="g3080">
  794. <rect
  795. style="fill:#000000;fill-opacity:1;stroke:none"
  796. id="rect3951"
  797. width="75.281731"
  798. height="799.35895"
  799. x="-2.0186897e-07"
  800. y="0.46947202" />
  801. <rect
  802. y="0.46947202"
  803. x="73.17157"
  804. height="799.35895"
  805. width="79.610161"
  806. id="rect3953"
  807. style="fill:#393939;fill-opacity:1;stroke:none" />
  808. <rect
  809. style="fill:#737373;fill-opacity:1;stroke:none"
  810. id="rect3955"
  811. width="75.281731"
  812. height="799.35895"
  813. x="152"
  814. y="0.46947202" />
  815. <rect
  816. y="0.46947202"
  817. x="226"
  818. height="799.35895"
  819. width="75.281731"
  820. id="rect3957"
  821. style="fill:#898989;fill-opacity:1;stroke:none" />
  822. <rect
  823. style="fill:#a1a1a1;fill-opacity:1;stroke:none"
  824. id="rect3959"
  825. width="75.281731"
  826. height="799.35895"
  827. x="298"
  828. y="0.46947202" />
  829. <rect
  830. y="0.46947202"
  831. x="373.29291"
  832. height="799.35895"
  833. width="75.988838"
  834. id="rect3961"
  835. style="fill:#b3b3b3;fill-opacity:1;stroke:none" />
  836. <rect
  837. style="fill:#d4d4d4;fill-opacity:1;stroke:none"
  838. id="rect3963"
  839. width="78.110161"
  840. height="799.35895"
  841. x="446"
  842. y="0.46947202" />
  843. </g>
  844. <g
  845. transform="translate(16,0)"
  846. id="g3089">
  847. <text
  848. xml:space="preserve"
  849. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  850. x="183.91794"
  851. y="260.00009"
  852. id="text3107"><tspan
  853. sodipodi:role="line"
  854. x="183.91794"
  855. y="260.00009"
  856. id="tspan3111"
  857. style="font-size:48px;line-height:1.25;font-family:sans-serif">TEST IN </tspan><tspan
  858. sodipodi:role="line"
  859. x="183.91794"
  860. y="320.00009"
  861. id="tspan3117"
  862. style="font-size:48px;line-height:1.25;font-family:sans-serif"> </tspan></text>
  863. <text
  864. xml:space="preserve"
  865. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  866. x="142.91403"
  867. y="350.00009"
  868. id="text3121"><tspan
  869. sodipodi:role="line"
  870. id="tspan3123"
  871. x="142.91403"
  872. y="350.00009"
  873. style="font-size:48px;line-height:1.25;font-family:sans-serif">PROGRESS</tspan></text>
  874. </g>
  875. <text
  876. inkscape:label="#text4008"
  877. id="mfdID"
  878. y="37.060791"
  879. x="21.696693"
  880. style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
  881. xml:space="preserve"><tspan
  882. style="font-weight:bold;font-size:24px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';fill:#fffbff;fill-opacity:1"
  883. y="37.060791"
  884. x="21.696693"
  885. id="tspan4010"
  886. sodipodi:role="line">MFD0</tspan></text>
  887. </g>
  888. </g>
  889. <g
  890. inkscape:groupmode="layer"
  891. id="layer2"
  892. inkscape:label="Screen2"
  893. style="display:inline">
  894. <g
  895. id="Screen2"
  896. inkscape:label="#g4361">
  897. <rect
  898. y="0.00012755394"
  899. x="0.24998857"
  900. height="93.406143"
  901. width="150"
  902. id="rect3069"
  903. style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  904. <rect
  905. y="93.406273"
  906. x="0.24998857"
  907. height="93.406143"
  908. width="150"
  909. id="rect3069-3"
  910. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  911. <rect
  912. y="186.37999"
  913. x="0.24998857"
  914. height="93.406143"
  915. width="150"
  916. id="rect3069-3-6"
  917. style="fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  918. <rect
  919. y="372.75986"
  920. x="0.24998857"
  921. height="93.406143"
  922. width="150"
  923. id="rect3069-7"
  924. style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  925. <rect
  926. y="279.35373"
  927. x="0.24998857"
  928. height="93.406143"
  929. width="150"
  930. id="rect3069-5"
  931. style="fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  932. <rect
  933. y="466.13977"
  934. x="0.23742473"
  935. height="93.406143"
  936. width="150"
  937. id="rect3069-56"
  938. style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  939. <rect
  940. y="559.5459"
  941. x="0.23742473"
  942. height="93.406143"
  943. width="150"
  944. id="rect3069-3-2"
  945. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  946. <rect
  947. y="652.51959"
  948. x="0.23742473"
  949. height="93.406143"
  950. width="150"
  951. id="rect3069-3-6-9"
  952. style="fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  953. <rect
  954. y="745.49335"
  955. x="0.23742473"
  956. height="54.515278"
  957. width="150"
  958. id="rect3069-5-2"
  959. style="fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  960. <rect
  961. y="0.00013"
  962. x="300.24997"
  963. height="93.406143"
  964. width="150"
  965. id="rect3069-70"
  966. style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  967. <rect
  968. y="93.406273"
  969. x="300.24997"
  970. height="93.406143"
  971. width="150"
  972. id="rect3069-3-9"
  973. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  974. <rect
  975. y="186.38"
  976. x="300.24997"
  977. height="93.406143"
  978. width="150"
  979. id="rect3069-3-6-3"
  980. style="fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  981. <rect
  982. y="372.75986"
  983. x="300.24997"
  984. height="93.406143"
  985. width="150"
  986. id="rect3069-7-6"
  987. style="fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  988. <rect
  989. y="279.35373"
  990. x="300.24997"
  991. height="93.406143"
  992. width="150"
  993. id="rect3069-5-0"
  994. style="fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  995. <rect
  996. y="466.13977"
  997. x="300.23743"
  998. height="93.406143"
  999. width="150"
  1000. id="rect3069-56-6"
  1001. style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  1002. <rect
  1003. y="559.5459"
  1004. x="300.23743"
  1005. height="93.406143"
  1006. width="150"
  1007. id="rect3069-3-2-2"
  1008. style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  1009. <rect
  1010. y="652.51959"
  1011. x="300.23743"
  1012. height="93.406143"
  1013. width="150"
  1014. id="rect3069-3-6-9-6"
  1015. style="fill:#ffff00;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  1016. <rect
  1017. y="745.49335"
  1018. x="300.23743"
  1019. height="54.515278"
  1020. width="150"
  1021. id="rect3069-5-2-1"
  1022. style="fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  1023. <g
  1024. id="g3382"
  1025. transform="matrix(1,0,0,1.6652767,-0.21423,-17.3273)">
  1026. <rect
  1027. y="10.26235"
  1028. x="150.61372"
  1029. height="10.253046"
  1030. width="149.19951"
  1031. id="rect3157-3"
  1032. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1033. <rect
  1034. y="20.26235"
  1035. x="150.61372"
  1036. height="10.253046"
  1037. width="149.19951"
  1038. id="rect3157-3-6"
  1039. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1040. <rect
  1041. y="30.262352"
  1042. x="150.61372"
  1043. height="10.253046"
  1044. width="149.19951"
  1045. id="rect3157-3-6-7"
  1046. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1047. <rect
  1048. y="40.262352"
  1049. x="150.61372"
  1050. height="10.253046"
  1051. width="149.19951"
  1052. id="rect3157-3-6-7-5"
  1053. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1054. <rect
  1055. y="50.262348"
  1056. x="150.61372"
  1057. height="10.253046"
  1058. width="149.19951"
  1059. id="rect3157-3-6-7-5-3"
  1060. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1061. <rect
  1062. y="60.262348"
  1063. x="150.61372"
  1064. height="10.253046"
  1065. width="149.19951"
  1066. id="rect3157-3-6-7-5-3-5"
  1067. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1068. <rect
  1069. y="70.262344"
  1070. x="150.61372"
  1071. height="10.253046"
  1072. width="149.19951"
  1073. id="rect3157-3-6-7-5-3-5-6"
  1074. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1075. <rect
  1076. y="80.262337"
  1077. x="150.61372"
  1078. height="10.253046"
  1079. width="149.19951"
  1080. id="rect3157-3-6-7-5-3-5-6-2"
  1081. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1082. <rect
  1083. y="90.262337"
  1084. x="150.61372"
  1085. height="10.253046"
  1086. width="149.19951"
  1087. id="rect3157-3-6-7-5-3-5-6-2-1"
  1088. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1089. <rect
  1090. y="100.26234"
  1091. x="150.61372"
  1092. height="10.253046"
  1093. width="149.19951"
  1094. id="rect3157-3-6-7-5-3-5-6-2-1-2"
  1095. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1096. <rect
  1097. y="110.26234"
  1098. x="150.61372"
  1099. height="10.253046"
  1100. width="149.19951"
  1101. id="rect3157-3-6-7-5-3-5-6-2-1-2-7"
  1102. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1103. <rect
  1104. y="120.26234"
  1105. x="150.61372"
  1106. height="10.253046"
  1107. width="149.19951"
  1108. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0"
  1109. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1110. </g>
  1111. <g
  1112. style="display:inline"
  1113. id="g3382-9"
  1114. transform="matrix(1,0,0,1.6652767,-0.21423,182.67169)">
  1115. <rect
  1116. y="10.26235"
  1117. x="150.61372"
  1118. height="10.253046"
  1119. width="149.19951"
  1120. id="rect3157-3-3"
  1121. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1122. <rect
  1123. y="20.26235"
  1124. x="150.61372"
  1125. height="10.253046"
  1126. width="149.19951"
  1127. id="rect3157-3-6-6"
  1128. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1129. <rect
  1130. y="30.262352"
  1131. x="150.61372"
  1132. height="10.253046"
  1133. width="149.19951"
  1134. id="rect3157-3-6-7-0"
  1135. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1136. <rect
  1137. y="40.262352"
  1138. x="150.61372"
  1139. height="10.253046"
  1140. width="149.19951"
  1141. id="rect3157-3-6-7-5-6"
  1142. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1143. <rect
  1144. y="50.262348"
  1145. x="150.61372"
  1146. height="10.253046"
  1147. width="149.19951"
  1148. id="rect3157-3-6-7-5-3-2"
  1149. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1150. <rect
  1151. y="60.262348"
  1152. x="150.61372"
  1153. height="10.253046"
  1154. width="149.19951"
  1155. id="rect3157-3-6-7-5-3-5-61"
  1156. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1157. <rect
  1158. y="70.262344"
  1159. x="150.61372"
  1160. height="10.253046"
  1161. width="149.19951"
  1162. id="rect3157-3-6-7-5-3-5-6-8"
  1163. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1164. <rect
  1165. y="80.262337"
  1166. x="150.61372"
  1167. height="10.253046"
  1168. width="149.19951"
  1169. id="rect3157-3-6-7-5-3-5-6-2-7"
  1170. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1171. <rect
  1172. y="90.262337"
  1173. x="150.61372"
  1174. height="10.253046"
  1175. width="149.19951"
  1176. id="rect3157-3-6-7-5-3-5-6-2-1-9"
  1177. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1178. <rect
  1179. y="100.26234"
  1180. x="150.61372"
  1181. height="10.253046"
  1182. width="149.19951"
  1183. id="rect3157-3-6-7-5-3-5-6-2-1-2-2"
  1184. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1185. <rect
  1186. y="110.26234"
  1187. x="150.61372"
  1188. height="10.253046"
  1189. width="149.19951"
  1190. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-02"
  1191. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1192. <rect
  1193. y="120.26234"
  1194. x="150.61372"
  1195. height="10.253046"
  1196. width="149.19951"
  1197. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-3"
  1198. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1199. </g>
  1200. <g
  1201. style="display:inline"
  1202. id="g3382-7"
  1203. transform="matrix(1,0,0,1.6652767,-0.21423,382.67068)">
  1204. <rect
  1205. y="10.26235"
  1206. x="150.61372"
  1207. height="10.253046"
  1208. width="149.19951"
  1209. id="rect3157-3-5"
  1210. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1211. <rect
  1212. y="20.26235"
  1213. x="150.61372"
  1214. height="10.253046"
  1215. width="149.19951"
  1216. id="rect3157-3-6-9"
  1217. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1218. <rect
  1219. y="30.262352"
  1220. x="150.61372"
  1221. height="10.253046"
  1222. width="149.19951"
  1223. id="rect3157-3-6-7-2"
  1224. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1225. <rect
  1226. y="40.262352"
  1227. x="150.61372"
  1228. height="10.253046"
  1229. width="149.19951"
  1230. id="rect3157-3-6-7-5-2"
  1231. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1232. <rect
  1233. y="50.262348"
  1234. x="150.61372"
  1235. height="10.253046"
  1236. width="149.19951"
  1237. id="rect3157-3-6-7-5-3-8"
  1238. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1239. <rect
  1240. y="60.262348"
  1241. x="150.61372"
  1242. height="10.253046"
  1243. width="149.19951"
  1244. id="rect3157-3-6-7-5-3-5-9"
  1245. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1246. <rect
  1247. y="70.262344"
  1248. x="150.61372"
  1249. height="10.253046"
  1250. width="149.19951"
  1251. id="rect3157-3-6-7-5-3-5-6-7"
  1252. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1253. <rect
  1254. y="80.262337"
  1255. x="150.61372"
  1256. height="10.253046"
  1257. width="149.19951"
  1258. id="rect3157-3-6-7-5-3-5-6-2-3"
  1259. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1260. <rect
  1261. y="90.262337"
  1262. x="150.61372"
  1263. height="10.253046"
  1264. width="149.19951"
  1265. id="rect3157-3-6-7-5-3-5-6-2-1-6"
  1266. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1267. <rect
  1268. y="100.26234"
  1269. x="150.61372"
  1270. height="10.253046"
  1271. width="149.19951"
  1272. id="rect3157-3-6-7-5-3-5-6-2-1-2-1"
  1273. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1274. <rect
  1275. y="110.26234"
  1276. x="150.61372"
  1277. height="10.253046"
  1278. width="149.19951"
  1279. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-2"
  1280. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1281. <rect
  1282. y="120.26234"
  1283. x="150.61372"
  1284. height="10.253046"
  1285. width="149.19951"
  1286. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-9"
  1287. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1288. </g>
  1289. <g
  1290. style="display:inline"
  1291. id="g3382-3"
  1292. transform="matrix(1,0,0,1.6652767,-0.21423,582.81739)">
  1293. <rect
  1294. y="10.26235"
  1295. x="150.61372"
  1296. height="10.253046"
  1297. width="149.19951"
  1298. id="rect3157-3-1"
  1299. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1300. <rect
  1301. y="20.26235"
  1302. x="150.61372"
  1303. height="10.253046"
  1304. width="149.19951"
  1305. id="rect3157-3-6-94"
  1306. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1307. <rect
  1308. y="30.262352"
  1309. x="150.61372"
  1310. height="10.253046"
  1311. width="149.19951"
  1312. id="rect3157-3-6-7-7"
  1313. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1314. <rect
  1315. y="40.262352"
  1316. x="150.61372"
  1317. height="10.253046"
  1318. width="149.19951"
  1319. id="rect3157-3-6-7-5-8"
  1320. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1321. <rect
  1322. y="50.262348"
  1323. x="150.61372"
  1324. height="10.253046"
  1325. width="149.19951"
  1326. id="rect3157-3-6-7-5-3-4"
  1327. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1328. <rect
  1329. y="60.262348"
  1330. x="150.61372"
  1331. height="10.253046"
  1332. width="149.19951"
  1333. id="rect3157-3-6-7-5-3-5-5"
  1334. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1335. <rect
  1336. y="70.262344"
  1337. x="150.61372"
  1338. height="10.253046"
  1339. width="149.19951"
  1340. id="rect3157-3-6-7-5-3-5-6-0"
  1341. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1342. <rect
  1343. y="80.262337"
  1344. x="150.61372"
  1345. height="10.253046"
  1346. width="149.19951"
  1347. id="rect3157-3-6-7-5-3-5-6-2-36"
  1348. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1349. <rect
  1350. y="90.262337"
  1351. x="150.61372"
  1352. height="10.253046"
  1353. width="149.19951"
  1354. id="rect3157-3-6-7-5-3-5-6-2-1-1"
  1355. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1356. <rect
  1357. y="100.26234"
  1358. x="150.61372"
  1359. height="10.253046"
  1360. width="149.19951"
  1361. id="rect3157-3-6-7-5-3-5-6-2-1-2-0"
  1362. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1363. <rect
  1364. y="110.26234"
  1365. x="150.61372"
  1366. height="10.253046"
  1367. width="149.19951"
  1368. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-6"
  1369. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1370. <rect
  1371. y="120.26234"
  1372. x="150.61372"
  1373. height="10.253046"
  1374. width="149.19951"
  1375. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-32"
  1376. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1377. </g>
  1378. <g
  1379. style="display:inline"
  1380. id="g3382-0"
  1381. transform="matrix(1,0,0,1.6652767,299.78577,-17.327302)">
  1382. <rect
  1383. y="10.26235"
  1384. x="150.61372"
  1385. height="10.253046"
  1386. width="149.19951"
  1387. id="rect3157-3-61"
  1388. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1389. <rect
  1390. y="20.26235"
  1391. x="150.61372"
  1392. height="10.253046"
  1393. width="149.19951"
  1394. id="rect3157-3-6-5"
  1395. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1396. <rect
  1397. y="30.262352"
  1398. x="150.61372"
  1399. height="10.253046"
  1400. width="149.19951"
  1401. id="rect3157-3-6-7-54"
  1402. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1403. <rect
  1404. y="40.262352"
  1405. x="150.61372"
  1406. height="10.253046"
  1407. width="149.19951"
  1408. id="rect3157-3-6-7-5-7"
  1409. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1410. <rect
  1411. y="50.262348"
  1412. x="150.61372"
  1413. height="10.253046"
  1414. width="149.19951"
  1415. id="rect3157-3-6-7-5-3-6"
  1416. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1417. <rect
  1418. y="60.262348"
  1419. x="150.61372"
  1420. height="10.253046"
  1421. width="149.19951"
  1422. id="rect3157-3-6-7-5-3-5-56"
  1423. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1424. <rect
  1425. y="70.262344"
  1426. x="150.61372"
  1427. height="10.253046"
  1428. width="149.19951"
  1429. id="rect3157-3-6-7-5-3-5-6-9"
  1430. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1431. <rect
  1432. y="80.262337"
  1433. x="150.61372"
  1434. height="10.253046"
  1435. width="149.19951"
  1436. id="rect3157-3-6-7-5-3-5-6-2-37"
  1437. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1438. <rect
  1439. y="90.262337"
  1440. x="150.61372"
  1441. height="10.253046"
  1442. width="149.19951"
  1443. id="rect3157-3-6-7-5-3-5-6-2-1-4"
  1444. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1445. <rect
  1446. y="100.26234"
  1447. x="150.61372"
  1448. height="10.253046"
  1449. width="149.19951"
  1450. id="rect3157-3-6-7-5-3-5-6-2-1-2-5"
  1451. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1452. <rect
  1453. y="110.26234"
  1454. x="150.61372"
  1455. height="10.253046"
  1456. width="149.19951"
  1457. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-25"
  1458. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1459. <rect
  1460. y="120.26234"
  1461. x="150.61372"
  1462. height="10.253046"
  1463. width="149.19951"
  1464. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-4"
  1465. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1466. </g>
  1467. <g
  1468. style="display:inline"
  1469. id="g3382-9-7"
  1470. transform="matrix(1,0,0,1.6652767,299.78577,182.67169)">
  1471. <rect
  1472. y="10.26235"
  1473. x="150.61372"
  1474. height="10.253046"
  1475. width="149.19951"
  1476. id="rect3157-3-3-4"
  1477. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1478. <rect
  1479. y="20.26235"
  1480. x="150.61372"
  1481. height="10.253046"
  1482. width="149.19951"
  1483. id="rect3157-3-6-6-4"
  1484. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1485. <rect
  1486. y="30.262352"
  1487. x="150.61372"
  1488. height="10.253046"
  1489. width="149.19951"
  1490. id="rect3157-3-6-7-0-3"
  1491. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1492. <rect
  1493. y="40.262352"
  1494. x="150.61372"
  1495. height="10.253046"
  1496. width="149.19951"
  1497. id="rect3157-3-6-7-5-6-0"
  1498. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1499. <rect
  1500. y="50.262348"
  1501. x="150.61372"
  1502. height="10.253046"
  1503. width="149.19951"
  1504. id="rect3157-3-6-7-5-3-2-7"
  1505. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1506. <rect
  1507. y="60.262348"
  1508. x="150.61372"
  1509. height="10.253046"
  1510. width="149.19951"
  1511. id="rect3157-3-6-7-5-3-5-61-8"
  1512. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1513. <rect
  1514. y="70.262344"
  1515. x="150.61372"
  1516. height="10.253046"
  1517. width="149.19951"
  1518. id="rect3157-3-6-7-5-3-5-6-8-6"
  1519. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1520. <rect
  1521. y="80.262337"
  1522. x="150.61372"
  1523. height="10.253046"
  1524. width="149.19951"
  1525. id="rect3157-3-6-7-5-3-5-6-2-7-8"
  1526. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1527. <rect
  1528. y="90.262337"
  1529. x="150.61372"
  1530. height="10.253046"
  1531. width="149.19951"
  1532. id="rect3157-3-6-7-5-3-5-6-2-1-9-8"
  1533. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1534. <rect
  1535. y="100.26234"
  1536. x="150.61372"
  1537. height="10.253046"
  1538. width="149.19951"
  1539. id="rect3157-3-6-7-5-3-5-6-2-1-2-2-4"
  1540. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1541. <rect
  1542. y="110.26234"
  1543. x="150.61372"
  1544. height="10.253046"
  1545. width="149.19951"
  1546. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-02-3"
  1547. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1548. <rect
  1549. y="120.26234"
  1550. x="150.61372"
  1551. height="10.253046"
  1552. width="149.19951"
  1553. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-3-1"
  1554. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1555. </g>
  1556. <g
  1557. style="display:inline"
  1558. id="g3382-7-4"
  1559. transform="matrix(1,0,0,1.6652767,299.78577,382.67068)">
  1560. <rect
  1561. y="10.26235"
  1562. x="150.61372"
  1563. height="10.253046"
  1564. width="149.19951"
  1565. id="rect3157-3-5-9"
  1566. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1567. <rect
  1568. y="20.26235"
  1569. x="150.61372"
  1570. height="10.253046"
  1571. width="149.19951"
  1572. id="rect3157-3-6-9-2"
  1573. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1574. <rect
  1575. y="30.262352"
  1576. x="150.61372"
  1577. height="10.253046"
  1578. width="149.19951"
  1579. id="rect3157-3-6-7-2-0"
  1580. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1581. <rect
  1582. y="40.262352"
  1583. x="150.61372"
  1584. height="10.253046"
  1585. width="149.19951"
  1586. id="rect3157-3-6-7-5-2-6"
  1587. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1588. <rect
  1589. y="50.262348"
  1590. x="150.61372"
  1591. height="10.253046"
  1592. width="149.19951"
  1593. id="rect3157-3-6-7-5-3-8-8"
  1594. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1595. <rect
  1596. y="60.262348"
  1597. x="150.61372"
  1598. height="10.253046"
  1599. width="149.19951"
  1600. id="rect3157-3-6-7-5-3-5-9-9"
  1601. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1602. <rect
  1603. y="70.262344"
  1604. x="150.61372"
  1605. height="10.253046"
  1606. width="149.19951"
  1607. id="rect3157-3-6-7-5-3-5-6-7-2"
  1608. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1609. <rect
  1610. y="80.262337"
  1611. x="150.61372"
  1612. height="10.253046"
  1613. width="149.19951"
  1614. id="rect3157-3-6-7-5-3-5-6-2-3-6"
  1615. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1616. <rect
  1617. y="90.262337"
  1618. x="150.61372"
  1619. height="10.253046"
  1620. width="149.19951"
  1621. id="rect3157-3-6-7-5-3-5-6-2-1-6-6"
  1622. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1623. <rect
  1624. y="100.26234"
  1625. x="150.61372"
  1626. height="10.253046"
  1627. width="149.19951"
  1628. id="rect3157-3-6-7-5-3-5-6-2-1-2-1-4"
  1629. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1630. <rect
  1631. y="110.26234"
  1632. x="150.61372"
  1633. height="10.253046"
  1634. width="149.19951"
  1635. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-2-9"
  1636. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1637. <rect
  1638. y="120.26234"
  1639. x="150.61372"
  1640. height="10.253046"
  1641. width="149.19951"
  1642. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-9-5"
  1643. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1644. </g>
  1645. <g
  1646. style="display:inline"
  1647. id="g3382-3-0"
  1648. transform="matrix(1,0,0,1.6652767,299.78577,582.81739)">
  1649. <rect
  1650. y="10.26235"
  1651. x="150.61372"
  1652. height="10.253046"
  1653. width="149.19951"
  1654. id="rect3157-3-1-4"
  1655. style="fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1656. <rect
  1657. y="20.26235"
  1658. x="150.61372"
  1659. height="10.253046"
  1660. width="149.19951"
  1661. id="rect3157-3-6-94-8"
  1662. style="fill:#f2f2f2;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1663. <rect
  1664. y="30.262352"
  1665. x="150.61372"
  1666. height="10.253046"
  1667. width="149.19951"
  1668. id="rect3157-3-6-7-7-7"
  1669. style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1670. <rect
  1671. y="40.262352"
  1672. x="150.61372"
  1673. height="10.253046"
  1674. width="149.19951"
  1675. id="rect3157-3-6-7-5-8-1"
  1676. style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1677. <rect
  1678. y="50.262348"
  1679. x="150.61372"
  1680. height="10.253046"
  1681. width="149.19951"
  1682. id="rect3157-3-6-7-5-3-4-7"
  1683. style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1684. <rect
  1685. y="60.262348"
  1686. x="150.61372"
  1687. height="10.253046"
  1688. width="149.19951"
  1689. id="rect3157-3-6-7-5-3-5-5-2"
  1690. style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1691. <rect
  1692. y="70.262344"
  1693. x="150.61372"
  1694. height="10.253046"
  1695. width="149.19951"
  1696. id="rect3157-3-6-7-5-3-5-6-0-7"
  1697. style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1698. <rect
  1699. y="80.262337"
  1700. x="150.61372"
  1701. height="10.253046"
  1702. width="149.19951"
  1703. id="rect3157-3-6-7-5-3-5-6-2-36-2"
  1704. style="fill:#666666;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1705. <rect
  1706. y="90.262337"
  1707. x="150.61372"
  1708. height="10.253046"
  1709. width="149.19951"
  1710. id="rect3157-3-6-7-5-3-5-6-2-1-1-2"
  1711. style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1712. <rect
  1713. y="100.26234"
  1714. x="150.61372"
  1715. height="10.253046"
  1716. width="149.19951"
  1717. id="rect3157-3-6-7-5-3-5-6-2-1-2-0-6"
  1718. style="fill:#333333;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1719. <rect
  1720. y="110.26234"
  1721. x="150.61372"
  1722. height="10.253046"
  1723. width="149.19951"
  1724. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-6-1"
  1725. style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1726. <rect
  1727. y="120.26234"
  1728. x="150.61372"
  1729. height="10.253046"
  1730. width="149.19951"
  1731. id="rect3157-3-6-7-5-3-5-6-2-1-2-7-0-32-0"
  1732. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  1733. </g>
  1734. </g>
  1735. </g>
  1736. <g
  1737. inkscape:groupmode="layer"
  1738. id="layer4"
  1739. inkscape:label="Screen3"
  1740. style="display:inline">
  1741. <g
  1742. id="Screen3"
  1743. inkscape:label="#g6715"
  1744. transform="matrix(1.00469,0,0,1.0033987,-0.99317005,-1.397259)">
  1745. <rect
  1746. y="595.46936"
  1747. x="450.07339"
  1748. height="182.78708"
  1749. width="133.64316"
  1750. id="rect5008-3-6"
  1751. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  1752. <rect
  1753. y="96.959198"
  1754. x="18.866776"
  1755. height="281.78201"
  1756. width="426.96399"
  1757. id="rect5008-3"
  1758. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  1759. <g
  1760. inkscape:label="#g4425"
  1761. transform="translate(7.986161,-0.4784181)"
  1762. id="flitape"
  1763. style="display:inline">
  1764. <text
  1765. inkscape:label="#text3445-7-6"
  1766. id="altNum2-3-3"
  1767. y="247.9144"
  1768. x="48.377186"
  1769. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  1770. xml:space="preserve"><tspan
  1771. y="247.9144"
  1772. x="48.377186"
  1773. id="tspan3447-5-2-6-6"
  1774. sodipodi:role="line"
  1775. style="font-size:24px;line-height:1.25;font-family:sans-serif">0</tspan></text>
  1776. <path
  1777. sodipodi:type="arc"
  1778. style="fill:#f6faff;fill-opacity:1;stroke:none"
  1779. id="path3547"
  1780. sodipodi:cx="52.59145"
  1781. sodipodi:cy="224.49097"
  1782. sodipodi:rx="1.9335092"
  1783. sodipodi:ry="1.8368338"
  1784. d="m 54.524959,224.49097 c 0,1.01445 -0.865662,1.83683 -1.933509,1.83683 -1.067848,0 -1.933509,-0.82238 -1.933509,-1.83683 0,-1.01446 0.865661,-1.83684 1.933509,-1.83684 1.067847,0 1.933509,0.82238 1.933509,1.83684 z"
  1785. transform="matrix(1.4593886,0,0,1.5361985,-21.531524,-104.00338)" />
  1786. <path
  1787. transform="matrix(1.4593886,0,0,1.5361985,-21.531524,-149.00496)"
  1788. d="m 54.524959,224.49097 c 0,1.01445 -0.865662,1.83683 -1.933509,1.83683 -1.067848,0 -1.933509,-0.82238 -1.933509,-1.83683 0,-1.01446 0.865661,-1.83684 1.933509,-1.83684 1.067847,0 1.933509,0.82238 1.933509,1.83684 z"
  1789. sodipodi:ry="1.8368338"
  1790. sodipodi:rx="1.9335092"
  1791. sodipodi:cy="224.49097"
  1792. sodipodi:cx="52.59145"
  1793. id="path4317"
  1794. style="fill:#f6faff;fill-opacity:1;stroke:none"
  1795. sodipodi:type="arc" />
  1796. <path
  1797. transform="matrix(1.4593886,0,0,1.5361985,-21.531524,-194.00655)"
  1798. d="m 54.524959,224.49097 c 0,1.01445 -0.865662,1.83683 -1.933509,1.83683 -1.067848,0 -1.933509,-0.82238 -1.933509,-1.83683 0,-1.01446 0.865661,-1.83684 1.933509,-1.83684 1.067847,0 1.933509,0.82238 1.933509,1.83684 z"
  1799. sodipodi:ry="1.8368338"
  1800. sodipodi:rx="1.9335092"
  1801. sodipodi:cy="224.49097"
  1802. sodipodi:cx="52.59145"
  1803. id="path4319"
  1804. style="fill:#f6faff;fill-opacity:1;stroke:none"
  1805. sodipodi:type="arc" />
  1806. <path
  1807. sodipodi:type="arc"
  1808. style="fill:#f6faff;fill-opacity:1;stroke:none"
  1809. id="path4321"
  1810. sodipodi:cx="52.59145"
  1811. sodipodi:cy="224.49097"
  1812. sodipodi:rx="1.9335092"
  1813. sodipodi:ry="1.8368338"
  1814. d="m 54.524959,224.49097 c 0,1.01445 -0.865662,1.83683 -1.933509,1.83683 -1.067848,0 -1.933509,-0.82238 -1.933509,-1.83683 0,-1.01446 0.865661,-1.83684 1.933509,-1.83684 1.067847,0 1.933509,0.82238 1.933509,1.83684 z"
  1815. transform="matrix(1.4593886,0,0,1.5361985,-21.531524,-239.00813)" />
  1816. <text
  1817. xml:space="preserve"
  1818. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  1819. x="48.377186"
  1820. y="157.9144"
  1821. id="text4323"
  1822. inkscape:label="#text3445-7-6"><tspan
  1823. sodipodi:role="line"
  1824. id="tspan4325"
  1825. x="48.377186"
  1826. y="157.9144"
  1827. style="font-size:24px;line-height:1.25;font-family:sans-serif">1</tspan></text>
  1828. <text
  1829. xml:space="preserve"
  1830. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  1831. x="48.377186"
  1832. y="67.914398"
  1833. id="text4327"
  1834. inkscape:label="#text3445-7-6"><tspan
  1835. sodipodi:role="line"
  1836. id="tspan4329"
  1837. x="48.377186"
  1838. y="67.914398"
  1839. style="font-size:24px;line-height:1.25;font-family:sans-serif">2</tspan></text>
  1840. <path
  1841. transform="matrix(1.4593886,0,0,1.5361985,-21.531524,-284.00973)"
  1842. d="m 54.524959,224.49097 c 0,1.01445 -0.865662,1.83683 -1.933509,1.83683 -1.067848,0 -1.933509,-0.82238 -1.933509,-1.83683 0,-1.01446 0.865661,-1.83684 1.933509,-1.83684 1.067847,0 1.933509,0.82238 1.933509,1.83684 z"
  1843. sodipodi:ry="1.8368338"
  1844. sodipodi:rx="1.9335092"
  1845. sodipodi:cy="224.49097"
  1846. sodipodi:cx="52.59145"
  1847. id="path4331"
  1848. style="fill:#f6faff;fill-opacity:1;stroke:none"
  1849. sodipodi:type="arc" />
  1850. <path
  1851. sodipodi:type="arc"
  1852. style="fill:#f6faff;fill-opacity:1;stroke:none"
  1853. id="path4333"
  1854. sodipodi:cx="52.59145"
  1855. sodipodi:cy="224.49097"
  1856. sodipodi:rx="1.9335092"
  1857. sodipodi:ry="1.8368338"
  1858. d="m 54.524959,224.49097 c 0,1.01445 -0.865662,1.83683 -1.933509,1.83683 -1.067848,0 -1.933509,-0.82238 -1.933509,-1.83683 0,-1.01446 0.865661,-1.83684 1.933509,-1.83684 1.067847,0 1.933509,0.82238 1.933509,1.83684 z"
  1859. transform="matrix(1.4593886,0,0,1.5361985,-21.531524,-329.01131)" />
  1860. </g>
  1861. <g
  1862. transform="translate(9.7310908,-0.70454398)"
  1863. inkscape:label="#g4345"
  1864. id="altBack"
  1865. style="display:inline">
  1866. <rect
  1867. style="fill:#6c747c;fill-opacity:1;stroke:none"
  1868. id="rect4325-3"
  1869. width="112.65155"
  1870. height="236.44418"
  1871. x="443.93372"
  1872. y="5.3165746" />
  1873. <rect
  1874. style="fill:#6a5335;fill-opacity:1;stroke:none"
  1875. id="rect4325"
  1876. width="112.65155"
  1877. height="128.27875"
  1878. x="443.93372"
  1879. y="241.60254" />
  1880. </g>
  1881. <g
  1882. inkscape:label="#g3831"
  1883. id="Alt_Group"
  1884. style="display:inline"
  1885. transform="translate(1.04949,0.67678)">
  1886. <text
  1887. xml:space="preserve"
  1888. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-size:22.57536866px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;"
  1889. x="472.06665"
  1890. y="251.01608"
  1891. id="altNum0"
  1892. inkscape:label="#text3445"><tspan
  1893. sodipodi:role="line"
  1894. id="tspan3447"
  1895. x="472.06665"
  1896. y="251.01608"
  1897. style="font-size:22.57536866px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;">0</tspan></text>
  1898. <text
  1899. xml:space="preserve"
  1900. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-size:22.57536866px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;"
  1901. x="472.06665"
  1902. y="204.03134"
  1903. id="altNum1"
  1904. inkscape:label="#text3445-7"><tspan
  1905. sodipodi:role="line"
  1906. id="tspan3447-5"
  1907. x="472.06665"
  1908. y="204.03134"
  1909. style="font-size:22.57536866px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;">0</tspan></text>
  1910. <text
  1911. xml:space="preserve"
  1912. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-size:22.57536866px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;"
  1913. x="472.06665"
  1914. y="157.30142"
  1915. id="altNum2"
  1916. inkscape:label="#text3445-7-6"><tspan
  1917. sodipodi:role="line"
  1918. id="tspan3447-5-2"
  1919. x="472.06665"
  1920. y="157.30142"
  1921. style="font-size:22.57536866px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;">0</tspan></text>
  1922. <g
  1923. id="alttape"
  1924. inkscape:label="#g4548"
  1925. transform="translate(8.399819,325.1601)">
  1926. <g
  1927. inkscape:label="#g4350"
  1928. style="stroke:#ffffff;stroke-width:1.49479043;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1929. id="g4350"
  1930. transform="matrix(1.332591,0,0,1.332591,73.8399,-827.07472)">
  1931. <path
  1932. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1933. d="m 279.07168,627.24101 12.17832,0"
  1934. id="path3020"
  1935. inkscape:connector-curvature="0" />
  1936. <path
  1937. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1938. d="m 279.07168,620.24003 6.10689,0"
  1939. id="path3022"
  1940. inkscape:connector-curvature="0" />
  1941. <path
  1942. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1943. d="m 279.07168,613.23904 6.10689,0"
  1944. id="path3024"
  1945. inkscape:connector-curvature="0" />
  1946. <path
  1947. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1948. d="m 279.07168,606.23809 6.10689,0"
  1949. id="path3026"
  1950. inkscape:connector-curvature="0" />
  1951. <path
  1952. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1953. d="m 279.07168,599.23713 6.10689,0"
  1954. id="path3028"
  1955. inkscape:connector-curvature="0" />
  1956. <path
  1957. inkscape:connector-curvature="0"
  1958. id="path3039"
  1959. d="m 279.07168,592.23617 12.17832,0"
  1960. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  1961. <path
  1962. inkscape:connector-curvature="0"
  1963. id="path3041-6"
  1964. d="m 279.07168,585.23518 6.10689,0"
  1965. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  1966. <path
  1967. inkscape:connector-curvature="0"
  1968. id="path3043"
  1969. d="m 279.07168,578.23423 6.10689,0"
  1970. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  1971. <path
  1972. inkscape:connector-curvature="0"
  1973. id="path3045"
  1974. d="m 279.07168,571.23328 6.10689,0"
  1975. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  1976. <path
  1977. inkscape:connector-curvature="0"
  1978. id="path3047"
  1979. d="m 279.07168,564.23229 6.10689,0"
  1980. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  1981. <path
  1982. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1983. d="m 279.07168,557.23131 12.17832,0"
  1984. id="path3051"
  1985. inkscape:connector-curvature="0" />
  1986. <path
  1987. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1988. d="m 279.07168,550.23039 6.10689,0"
  1989. id="path3053"
  1990. inkscape:connector-curvature="0" />
  1991. <path
  1992. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1993. d="m 279.07168,543.22941 6.10689,0"
  1994. id="path3055"
  1995. inkscape:connector-curvature="0" />
  1996. <path
  1997. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  1998. d="m 279.07168,536.22845 6.10689,0"
  1999. id="path3057"
  2000. inkscape:connector-curvature="0" />
  2001. <path
  2002. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2003. d="m 279.07168,529.22749 6.10689,0"
  2004. id="path3059"
  2005. inkscape:connector-curvature="0" />
  2006. <path
  2007. inkscape:connector-curvature="0"
  2008. id="path3063"
  2009. d="m 279.07168,522.22651 12.17832,0"
  2010. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2011. <path
  2012. inkscape:connector-curvature="0"
  2013. id="path3065"
  2014. d="m 279.07168,515.22556 6.10689,0"
  2015. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2016. <path
  2017. inkscape:connector-curvature="0"
  2018. id="path3067"
  2019. d="m 279.07168,508.2246 6.10689,0"
  2020. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2021. <path
  2022. inkscape:connector-curvature="0"
  2023. id="path3069"
  2024. d="m 279.07168,501.22365 6.10689,0"
  2025. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2026. <path
  2027. inkscape:connector-curvature="0"
  2028. id="path3071"
  2029. d="m 279.07168,494.22263 6.10689,0"
  2030. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2031. <path
  2032. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2033. d="m 279.07168,487.22169 12.17832,0"
  2034. id="path3075"
  2035. inkscape:connector-curvature="0" />
  2036. <path
  2037. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2038. d="m 279.07168,480.22074 6.10689,0"
  2039. id="path3077"
  2040. inkscape:connector-curvature="0" />
  2041. <path
  2042. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2043. d="m 279.07168,473.21978 6.10689,0"
  2044. id="path3079"
  2045. inkscape:connector-curvature="0" />
  2046. <path
  2047. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2048. d="m 279.07168,466.21883 6.10689,0"
  2049. id="path3081"
  2050. inkscape:connector-curvature="0" />
  2051. <path
  2052. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2053. d="m 279.07168,459.21781 6.10689,0"
  2054. id="path3083"
  2055. inkscape:connector-curvature="0" />
  2056. <path
  2057. inkscape:connector-curvature="0"
  2058. id="path3087"
  2059. d="m 279.07168,452.21687 12.17832,0"
  2060. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2061. <path
  2062. inkscape:connector-curvature="0"
  2063. id="path3089"
  2064. d="m 279.07168,445.21592 6.10689,0"
  2065. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2066. <path
  2067. inkscape:connector-curvature="0"
  2068. id="path3091"
  2069. d="m 279.07168,438.21496 6.10689,0"
  2070. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2071. <path
  2072. inkscape:connector-curvature="0"
  2073. id="path3093"
  2074. d="m 279.07168,431.21401 6.10689,0"
  2075. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2076. <path
  2077. inkscape:connector-curvature="0"
  2078. id="path3095"
  2079. d="m 279.07168,424.21299 6.10689,0"
  2080. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2081. <path
  2082. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2083. d="m 279.07168,417.21207 12.17832,0"
  2084. id="path3099"
  2085. inkscape:connector-curvature="0" />
  2086. <path
  2087. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2088. d="m 279.07168,410.21111 6.10689,0"
  2089. id="path3101"
  2090. inkscape:connector-curvature="0" />
  2091. <path
  2092. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2093. d="m 279.07168,403.21016 6.10689,0"
  2094. id="path3103"
  2095. inkscape:connector-curvature="0" />
  2096. <path
  2097. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2098. d="m 279.07168,396.20915 6.10689,0"
  2099. id="path3105"
  2100. inkscape:connector-curvature="0" />
  2101. <path
  2102. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2103. d="m 279.07168,389.20819 6.10689,0"
  2104. id="path3107"
  2105. inkscape:connector-curvature="0" />
  2106. <path
  2107. inkscape:connector-curvature="0"
  2108. id="path3111"
  2109. d="m 279.07168,382.20725 12.17832,0"
  2110. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2111. <path
  2112. inkscape:connector-curvature="0"
  2113. id="path3113"
  2114. d="m 279.07168,375.2063 6.10689,0"
  2115. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2116. <path
  2117. inkscape:connector-curvature="0"
  2118. id="path3115"
  2119. d="m 279.07168,368.20534 6.10689,0"
  2120. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2121. <path
  2122. inkscape:connector-curvature="0"
  2123. id="path3117"
  2124. d="m 279.07168,361.20433 6.10689,0"
  2125. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2126. <path
  2127. inkscape:connector-curvature="0"
  2128. id="path3119"
  2129. d="m 279.07168,354.20337 6.10689,0"
  2130. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2131. <path
  2132. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2133. d="m 279.07168,662.24583 12.17832,0"
  2134. id="path3219"
  2135. inkscape:connector-curvature="0" />
  2136. <path
  2137. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2138. d="m 279.07168,655.24484 6.10689,0"
  2139. id="path3221"
  2140. inkscape:connector-curvature="0" />
  2141. <path
  2142. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2143. d="m 279.07168,648.24386 6.10689,0"
  2144. id="path3223"
  2145. inkscape:connector-curvature="0" />
  2146. <path
  2147. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2148. d="m 279.07168,641.24291 6.10689,0"
  2149. id="path3225"
  2150. inkscape:connector-curvature="0" />
  2151. <path
  2152. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2153. d="m 279.07168,634.24195 6.10689,0"
  2154. id="path3227"
  2155. inkscape:connector-curvature="0" />
  2156. <path
  2157. inkscape:connector-curvature="0"
  2158. id="path3231"
  2159. d="m 279.07168,697.25065 12.17832,0"
  2160. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2161. <path
  2162. inkscape:connector-curvature="0"
  2163. id="path3233"
  2164. d="m 279.07168,690.24967 6.10689,0"
  2165. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2166. <path
  2167. inkscape:connector-curvature="0"
  2168. id="path3235"
  2169. d="m 279.07168,683.24869 6.10689,0"
  2170. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2171. <path
  2172. inkscape:connector-curvature="0"
  2173. id="path3237"
  2174. d="m 279.07168,676.24773 6.10689,0"
  2175. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2176. <path
  2177. inkscape:connector-curvature="0"
  2178. id="path3239"
  2179. d="m 279.07168,669.24677 6.10689,0"
  2180. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2181. <path
  2182. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2183. d="m 279.07168,725.25449 6.10689,0"
  2184. id="path3245"
  2185. inkscape:connector-curvature="0" />
  2186. <path
  2187. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2188. d="m 279.07168,718.25354 6.10689,0"
  2189. id="path3247"
  2190. inkscape:connector-curvature="0" />
  2191. <path
  2192. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2193. d="m 279.07168,711.25255 6.10689,0"
  2194. id="path3249"
  2195. inkscape:connector-curvature="0" />
  2196. <path
  2197. style="fill:none;stroke:#ffffff;stroke-width:1.49479043;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2198. d="m 279.07168,704.25163 6.10689,0"
  2199. id="path3251"
  2200. inkscape:connector-curvature="0" />
  2201. </g>
  2202. </g>
  2203. <text
  2204. xml:space="preserve"
  2205. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2206. x="472.06665"
  2207. y="110.73952"
  2208. id="altNum3"
  2209. inkscape:label="#text3445-7-6"><tspan
  2210. sodipodi:role="line"
  2211. id="tspan3447-5-2-7"
  2212. x="472.06665"
  2213. y="110.73952"
  2214. style="font-size:24px;line-height:1.25;font-family:sans-serif">0</tspan></text>
  2215. <text
  2216. xml:space="preserve"
  2217. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2218. x="472.06665"
  2219. y="64.141937"
  2220. id="altNum4"
  2221. inkscape:label="#text3445-7-6"><tspan
  2222. sodipodi:role="line"
  2223. id="tspan3447-5-2-7-9"
  2224. x="472.06665"
  2225. y="64.141937"
  2226. style="font-size:24px;line-height:1.25;font-family:sans-serif">0</tspan></text>
  2227. <text
  2228. xml:space="preserve"
  2229. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2230. x="472.06665"
  2231. y="17.417496"
  2232. id="altNum5"
  2233. inkscape:label="#text3445-7-6"><tspan
  2234. sodipodi:role="line"
  2235. id="tspan3447-5-2-7-9-6"
  2236. x="472.06665"
  2237. y="17.417496"
  2238. style="font-size:24px;line-height:1.25;font-family:sans-serif">0</tspan></text>
  2239. <text
  2240. transform="scale(0.95407321,1.0481376)"
  2241. id="Hnum0"
  2242. y="235.58058"
  2243. x="510.08847"
  2244. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2245. xml:space="preserve"
  2246. inkscape:label="#text3445-3"><tspan
  2247. y="235.58058"
  2248. x="510.08847"
  2249. id="tspan3447-6"
  2250. sodipodi:role="line"
  2251. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start">000</tspan></text>
  2252. <text
  2253. transform="scale(0.95407321,1.0481376)"
  2254. id="Hnum1"
  2255. y="190.83296"
  2256. x="509.29745"
  2257. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2258. xml:space="preserve"
  2259. inkscape:label="#text3445-3-3"><tspan
  2260. y="190.83296"
  2261. x="509.29745"
  2262. id="tspan3447-6-5"
  2263. sodipodi:role="line"
  2264. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start">1</tspan></text>
  2265. <text
  2266. transform="scale(0.95407321,1.0481376)"
  2267. id="Hnum2"
  2268. y="146.19527"
  2269. x="509.95663"
  2270. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2271. xml:space="preserve"
  2272. inkscape:label="#text3445-3-3-9"><tspan
  2273. y="146.19527"
  2274. x="509.95663"
  2275. id="tspan3447-6-5-1"
  2276. sodipodi:role="line"
  2277. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start">2</tspan></text>
  2278. <text
  2279. transform="scale(0.95407321,1.0481376)"
  2280. id="Hnum3"
  2281. y="101.08603"
  2282. x="506.18927"
  2283. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2284. xml:space="preserve"
  2285. inkscape:label="#text3445-3-3-9-0"><tspan
  2286. y="101.08603"
  2287. x="506.18927"
  2288. id="tspan3447-6-5-1-6"
  2289. sodipodi:role="line"
  2290. style="font-size:18px;line-height:1.25;font-family:sans-serif">3</tspan></text>
  2291. <text
  2292. transform="scale(0.95407321,1.0481376)"
  2293. id="Hnum4"
  2294. y="57.076363"
  2295. x="506.68146"
  2296. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2297. xml:space="preserve"
  2298. inkscape:label="#text3445-3-3-9-2"><tspan
  2299. y="57.076363"
  2300. x="506.68146"
  2301. id="tspan3447-6-5-1-61"
  2302. sodipodi:role="line"
  2303. style="font-size:18px;line-height:1.25;font-family:sans-serif">4</tspan></text>
  2304. <text
  2305. transform="scale(0.95407321,1.0481376)"
  2306. id="Hnum5"
  2307. y="12.680064"
  2308. x="506.17169"
  2309. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2310. xml:space="preserve"
  2311. inkscape:label="#text3445-3-3-9-8"><tspan
  2312. y="12.680064"
  2313. x="506.17169"
  2314. id="tspan3447-6-5-1-7"
  2315. sodipodi:role="line"
  2316. style="font-size:18px;line-height:1.25;font-family:sans-serif">500</tspan></text>
  2317. <text
  2318. transform="scale(0.95407321,1.0481376)"
  2319. id="Hnum-2"
  2320. y="325.35046"
  2321. x="521.41791"
  2322. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2323. xml:space="preserve"
  2324. inkscape:label="#text4417"><tspan
  2325. y="325.35046"
  2326. x="521.41791"
  2327. id="tspan4419"
  2328. sodipodi:role="line"
  2329. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start">2</tspan></text>
  2330. <text
  2331. transform="scale(0.95407321,1.0481376)"
  2332. id="Hnum-1"
  2333. y="280.46658"
  2334. x="521.36517"
  2335. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
  2336. xml:space="preserve"
  2337. inkscape:label="#text4421"><tspan
  2338. y="280.46658"
  2339. x="521.36517"
  2340. id="tspan4423"
  2341. sodipodi:role="line"
  2342. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:15.9355545px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start">1</tspan></text>
  2343. <text
  2344. xml:space="preserve"
  2345. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-size:22.57536866px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;"
  2346. x="472.06665"
  2347. y="344.52805"
  2348. id="altNum-2"
  2349. inkscape:label="#text3445-7-6"><tspan
  2350. sodipodi:role="line"
  2351. id="tspan3551"
  2352. x="472.06665"
  2353. y="344.52805"
  2354. style="font-size:22.57536866px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;">-0</tspan></text>
  2355. <text
  2356. inkscape:label="#text3445-7-6"
  2357. id="altNum-1"
  2358. y="297.75467"
  2359. x="472.06665"
  2360. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-size:22.57536866px;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;"
  2361. xml:space="preserve"><tspan
  2362. y="297.75467"
  2363. x="472.06665"
  2364. id="tspan3555"
  2365. sodipodi:role="line"
  2366. style="font-size:22.57536866px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal;text-anchor:start;text-align:start;writing-mode:lr;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;">-0</tspan></text>
  2367. </g>
  2368. <g
  2369. inkscape:label="#g4795"
  2370. transform="translate(-123.85356,-0.59283)"
  2371. id="radarAlttape"
  2372. style="display:inline">
  2373. <rect
  2374. style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1.99194431;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2375. id="rect3687"
  2376. width="40.117374"
  2377. height="248.20337"
  2378. x="648.7948"
  2379. y="-4.508728" />
  2380. <path
  2381. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2382. d="m 687.52883,241.36752 -14.75582,0"
  2383. id="path4457"
  2384. inkscape:connector-curvature="0" />
  2385. <path
  2386. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2387. d="m 687.54024,120.21907 -14.75582,0"
  2388. id="path4457-3"
  2389. inkscape:connector-curvature="0" />
  2390. <path
  2391. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2392. d="m 687.18696,180.79329 -12.99614,0"
  2393. id="path4457-6"
  2394. inkscape:connector-curvature="0" />
  2395. <path
  2396. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2397. d="m 686.92574,192.90811 -9.39956,0"
  2398. id="path4457-6-7"
  2399. inkscape:connector-curvature="0" />
  2400. <path
  2401. inkscape:connector-curvature="0"
  2402. id="path4502"
  2403. d="m 686.92574,205.02292 -9.39956,0"
  2404. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2405. <path
  2406. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2407. d="m 686.92574,217.13779 -9.39956,0"
  2408. id="path4504"
  2409. inkscape:connector-curvature="0" />
  2410. <path
  2411. inkscape:connector-curvature="0"
  2412. id="path4506"
  2413. d="m 686.92574,229.2526 -9.39956,0"
  2414. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2415. <path
  2416. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2417. d="m 686.92574,168.67845 -9.39956,0"
  2418. id="path4508"
  2419. inkscape:connector-curvature="0" />
  2420. <path
  2421. inkscape:connector-curvature="0"
  2422. id="path4510"
  2423. d="m 686.92574,156.56358 -9.39956,0"
  2424. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2425. <path
  2426. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2427. d="m 686.92574,144.44871 -9.39956,0"
  2428. id="path4512"
  2429. inkscape:connector-curvature="0" />
  2430. <path
  2431. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2432. d="m 686.92574,132.3339 -9.39956,0"
  2433. id="path4516"
  2434. inkscape:connector-curvature="0" />
  2435. <g
  2436. id="g4627"
  2437. transform="matrix(0.91862367,0,0,1,52.783939,0)">
  2438. <text
  2439. inkscape:label="#text3445-7"
  2440. id="altNum1-5"
  2441. y="238.65036"
  2442. x="674.55505"
  2443. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2444. xml:space="preserve"><tspan
  2445. y="238.65036"
  2446. x="674.55505"
  2447. id="tspan3447-5-3"
  2448. sodipodi:role="line"
  2449. style="font-size:20px;line-height:1.25;font-family:sans-serif">0</tspan></text>
  2450. <text
  2451. xml:space="preserve"
  2452. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2453. x="675.07263"
  2454. y="125.61604"
  2455. id="text4539"
  2456. inkscape:label="#text3445-7"><tspan
  2457. sodipodi:role="line"
  2458. id="tspan4541"
  2459. x="675.07263"
  2460. y="125.61604"
  2461. style="font-size:20px;line-height:1.25;font-family:sans-serif">1</tspan></text>
  2462. <text
  2463. inkscape:label="#text3445-7"
  2464. id="text4543"
  2465. y="63.944778"
  2466. x="675.22888"
  2467. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2468. xml:space="preserve"><tspan
  2469. y="63.944778"
  2470. x="675.22888"
  2471. id="tspan4545"
  2472. sodipodi:role="line"
  2473. style="font-size:20px;line-height:1.25;font-family:sans-serif">2</tspan></text>
  2474. <text
  2475. xml:space="preserve"
  2476. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2477. x="674.82849"
  2478. y="2.0000153"
  2479. id="text4547"
  2480. inkscape:label="#text3445-7"><tspan
  2481. sodipodi:role="line"
  2482. id="tspan4549"
  2483. x="674.82849"
  2484. y="2.0000153"
  2485. style="font-size:20px;line-height:1.25;font-family:sans-serif">3</tspan></text>
  2486. </g>
  2487. <path
  2488. inkscape:connector-curvature="0"
  2489. id="path4675"
  2490. d="m 686.92574,104.74442 -9.39956,0"
  2491. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2492. <path
  2493. inkscape:connector-curvature="0"
  2494. id="path4677"
  2495. d="m 687.54024,89.269751 -14.75582,0"
  2496. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2497. <path
  2498. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2499. d="m 686.92574,73.795165 -9.39956,0"
  2500. id="path4679"
  2501. inkscape:connector-curvature="0" />
  2502. <path
  2503. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2504. d="m 687.54024,58.320493 -14.75582,0"
  2505. id="path4681"
  2506. inkscape:connector-curvature="0" />
  2507. <path
  2508. inkscape:connector-curvature="0"
  2509. id="path4683"
  2510. d="m 686.92574,42.845885 -9.39956,0"
  2511. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2512. <path
  2513. inkscape:connector-curvature="0"
  2514. id="path4685"
  2515. d="m 687.54024,27.371214 -14.75582,0"
  2516. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2517. <path
  2518. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2519. d="m 686.92574,11.896605 -9.39956,0"
  2520. id="path4687"
  2521. inkscape:connector-curvature="0" />
  2522. </g>
  2523. <g
  2524. transform="translate(6.5779108,0.73837)"
  2525. inkscape:label="#g4458"
  2526. id="speedtape"
  2527. style="display:inline">
  2528. <rect
  2529. style="fill:#6c747c;fill-opacity:1;stroke:none"
  2530. id="rect4371"
  2531. width="87.685814"
  2532. height="349.35327"
  2533. x="65.544678"
  2534. y="38.711792" />
  2535. <path
  2536. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2537. d="m 152.13675,241.36752 -19.24516,0"
  2538. id="path4216"
  2539. inkscape:connector-curvature="0" />
  2540. <path
  2541. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2542. d="m 152.13675,176.55796 -19.24516,0"
  2543. id="path4218"
  2544. inkscape:connector-curvature="0" />
  2545. <path
  2546. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2547. d="m 152.13675,144.74725 -19.24516,0"
  2548. id="path4220"
  2549. inkscape:connector-curvature="0" />
  2550. <path
  2551. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2552. d="m 152.13675,160.65263 -8.4443,0"
  2553. id="path4222"
  2554. inkscape:connector-curvature="0" />
  2555. <path
  2556. inkscape:connector-curvature="0"
  2557. id="path4224"
  2558. d="m 152.13675,112.93661 -19.24516,0"
  2559. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2560. <path
  2561. inkscape:connector-curvature="0"
  2562. id="path4226"
  2563. d="m 152.13675,97.031277 -8.4443,0"
  2564. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2565. <path
  2566. inkscape:connector-curvature="0"
  2567. id="path4228"
  2568. d="m 152.13675,128.8419 -8.4443,0"
  2569. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2570. <path
  2571. inkscape:connector-curvature="0"
  2572. id="path4230"
  2573. d="m 152.13675,81.125831 -19.24516,0"
  2574. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2575. <path
  2576. inkscape:connector-curvature="0"
  2577. id="path4232"
  2578. d="m 152.13675,49.31518 -19.24516,0"
  2579. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2580. <path
  2581. inkscape:connector-curvature="0"
  2582. id="path4234"
  2583. d="m 152.13675,65.220506 -8.4443,0"
  2584. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2585. <path
  2586. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2587. d="m 152.13675,17.504479 -19.24516,0"
  2588. id="path4236"
  2589. inkscape:connector-curvature="0" />
  2590. <path
  2591. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2592. d="m 152.13675,33.409766 -8.4443,0"
  2593. id="path4240"
  2594. inkscape:connector-curvature="0" />
  2595. <text
  2596. xml:space="preserve"
  2597. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2598. x="131.6839"
  2599. y="183.48776"
  2600. id="altNum2-3"
  2601. inkscape:label="#text3445-7-6"><tspan
  2602. sodipodi:role="line"
  2603. id="tspan3447-5-2-6"
  2604. x="131.6839"
  2605. y="183.48776"
  2606. style="font-size:24px;line-height:1.25;font-family:sans-serif">20</tspan></text>
  2607. <text
  2608. inkscape:label="#text3445-7-6"
  2609. id="text4394"
  2610. y="119.93649"
  2611. x="131.6839"
  2612. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2613. xml:space="preserve"><tspan
  2614. y="119.93649"
  2615. x="131.6839"
  2616. id="tspan4396"
  2617. sodipodi:role="line"
  2618. style="font-size:24px;line-height:1.25;font-family:sans-serif">40</tspan></text>
  2619. <text
  2620. xml:space="preserve"
  2621. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
  2622. x="131.6839"
  2623. y="56.385223"
  2624. id="text4398"
  2625. inkscape:label="#text3445-7-6"><tspan
  2626. sodipodi:role="line"
  2627. id="tspan4400"
  2628. x="131.6839"
  2629. y="56.385223"
  2630. style="font-size:24px;line-height:1.25;font-family:sans-serif">60</tspan></text>
  2631. </g>
  2632. <rect
  2633. y="50.69239"
  2634. x="39.951527"
  2635. height="56.922085"
  2636. width="109.8878"
  2637. id="rect5008"
  2638. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
  2639. <path
  2640. sodipodi:nodetypes="cccccssccccccsssccsccsccccccccccccccc"
  2641. inkscape:connector-curvature="0"
  2642. id="mask"
  2643. d="m 0.04371705,0.3662066 0,800.1163434 600.07726295,0 0,-800.1163434 z M 94.304375,52.639837 c 28.397085,0 51.406255,23.04043 51.406255,51.437503 0,0.0422 1e-4,0.0829 0,0.125 l -26.6875,0 0,-17.687503 -48.968753,0 0,17.687503 -27.15625,0 c -1.1e-4,-0.0421 0,-0.0828 0,-0.125 0,-28.397073 23.00917,-51.437503 51.406248,-51.437503 z M 292.89813,108.98359 c 52.14462,0 91.62714,27.29281 114.875,68.03125 l 0,130.4375 c -22.71262,37.61699 -67.66422,63.44944 -114.875,64.28125 -51.08271,0.90002 -91.94769,-26.0381 -114.68751,-68.03125 l 0,-126.6875 c 23.41881,-35.46398 62.66914,-68.03125 114.68751,-68.03125 z m -267.281253,9.625 136.406253,0 0,250.9375 -136.406253,0 z m 427.156253,0 112.15624,0 0,250.9375 -112.15624,0 z m 45.53125,524.71875 37.34374,0 0,78.5 -37.34374,0 z"
  2644. style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:2.98791647;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2645. <path
  2646. inkscape:connector-curvature="0"
  2647. id="path3874"
  2648. d="m 67.839819,240.98391 27.80078,0"
  2649. style="fill:none;stroke:#00ff00;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2650. <path
  2651. inkscape:connector-curvature="0"
  2652. id="path3884"
  2653. d="m 162.12073,240.98391 16.23493,0"
  2654. style="fill:none;stroke:#00ff00;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2655. <path
  2656. inkscape:connector-curvature="0"
  2657. id="path3892"
  2658. d="m 545.02233,240.98391 18.63834,0"
  2659. style="fill:none;stroke:#00ff00;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2660. <path
  2661. inkscape:connector-curvature="0"
  2662. id="path3900"
  2663. d="m 409.33539,240.72667 43.07195,0"
  2664. style="fill:none;stroke:#00ff00;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2665. <path
  2666. inkscape:connector-curvature="0"
  2667. id="path3041"
  2668. d="m 97.262243,117.53 64.624757,0 0,250.94017 -66.558725,0"
  2669. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2670. <path
  2671. inkscape:connector-curvature="0"
  2672. id="path3811"
  2673. d="m 91.779641,117.67599 -66.666665,0"
  2674. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2675. <path
  2676. inkscape:connector-curvature="0"
  2677. id="path3813"
  2678. d="m 92.491443,368.50007 -65.982906,0"
  2679. style="fill:none;stroke:#ffffff;stroke-width:1.99194431;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2680. <path
  2681. sodipodi:nodetypes="cccccccccc"
  2682. inkscape:transform-center-x="83.030324"
  2683. inkscape:label="#path3634"
  2684. inkscape:connector-curvature="0"
  2685. id="n2_1Needle"
  2686. d="m 17.510861,102.42099 0,3.21131 12.619631,0 0.02847,7.25825 3.976584,-4.49176 3.996593,-4.31945 -3.996593,-4.372732 -3.976584,-4.48755 -0.01,4.121431 -0.01847,3.080501"
  2687. style="fill:#ffffff;fill-opacity:1;stroke:none;display:inline" />
  2688. <path
  2689. inkscape:transform-center-x="81.28258"
  2690. inkscape:label="#path3638"
  2691. inkscape:connector-curvature="0"
  2692. id="n2_2Needle"
  2693. d="m 18.9163,114.74902 11.482724,0 9.823166,-10.67763 -9.823166,-10.809472 -11.482724,0"
  2694. style="fill:none;stroke:#ffffff;stroke-width:2.48993039;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2695. <path
  2696. transform="matrix(1.0455068,0,0,0.87261147,-34.529701,-3.078603)"
  2697. d="m 451.13403,602.71722 c 0,61.31231 -63.94965,111.01575 -142.83554,111.01575 -78.88589,0 -142.83554,-49.70344 -142.83554,-111.01575 0,-61.3123 63.94965,-111.01574 142.83554,-111.01574 78.88589,0 142.83554,49.70344 142.83554,111.01574 z"
  2698. sodipodi:ry="111.01575"
  2699. sodipodi:rx="142.83554"
  2700. sodipodi:cy="602.71722"
  2701. sodipodi:cx="308.29849"
  2702. id="path6003"
  2703. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3.12820029;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2704. sodipodi:type="arc" />
  2705. <rect
  2706. y="645.20154"
  2707. x="500.56705"
  2708. height="78.502357"
  2709. width="37.35043"
  2710. id="rect3584"
  2711. style="fill:#000000;fill-opacity:1;stroke:none;display:inline" />
  2712. <g
  2713. transform="matrix(0.97601718,0,0,0.99022562,23.647777,8.5323574)"
  2714. id="g4050"
  2715. style="display:inline">
  2716. <rect
  2717. style="fill:none;stroke:#ffffff;stroke-width:3.98388863;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2718. id="rect3838"
  2719. width="41.367519"
  2720. height="82.564102"
  2721. x="487.00854"
  2722. y="641.53845" />
  2723. <rect
  2724. style="fill:none;stroke:#ffffff;stroke-width:4.10633087;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2725. id="rect4392"
  2726. width="1.931903"
  2727. height="19.941973"
  2728. x="506.27737"
  2729. y="701.06647" />
  2730. </g>
  2731. <path
  2732. inkscape:connector-curvature="0"
  2733. id="path4038"
  2734. d="m 162.87472,645.20152 0,0 305.24651,0 0,120.87295 -305.24651,0 z"
  2735. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2736. <path
  2737. inkscape:connector-curvature="0"
  2738. id="path4040"
  2739. d="m 63.558477,645.20152 -10.59829,0 0,27.73313 49.743593,0 0,-27.73313 -7.008553,0"
  2740. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2741. <path
  2742. inkscape:connector-curvature="0"
  2743. id="path4044"
  2744. d="m 53.814887,682.84918 -6.49572,0 0,83.22529 106.837603,0 0,-83.22529 -12.30769,0"
  2745. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2746. <path
  2747. inkscape:connector-curvature="0"
  2748. id="path4048"
  2749. d="m 488.17387,760.51432 0,-7.49413 100.09507,0 0,33.84443 -100.09507,0 0,-8.9446"
  2750. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2751. <path
  2752. inkscape:connector-curvature="0"
  2753. id="path4026"
  2754. d="m 426.30185,407.9419 -8.81451,0 0,-25.38332 153.02513,0 0,25.38332 -9.5098,0"
  2755. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2756. <path
  2757. inkscape:connector-curvature="0"
  2758. id="path4028"
  2759. d="m 466.07827,382.55858 0,25.38332"
  2760. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2761. <path
  2762. inkscape:connector-curvature="0"
  2763. id="path4030"
  2764. d="m 476.98561,407.9419 -22.5641,0"
  2765. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2766. <path
  2767. inkscape:connector-curvature="0"
  2768. id="path4032"
  2769. d="m 526.51475,382.55858 0,25.38332 -10.33464,0 18.97705,0"
  2770. style="fill:none;stroke:#ffffff;stroke-width:2.98791647;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2771. <text
  2772. xml:space="preserve"
  2773. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
  2774. x="427.72711"
  2775. y="414.31653"
  2776. id="mark33-7-9-2"
  2777. inkscape:label="#text3221"><tspan
  2778. sodipodi:role="line"
  2779. id="tspan3222-6-5-6-5-5-2-1-6-5-1-7"
  2780. x="427.72711"
  2781. y="414.31653"
  2782. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15.70416927px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">DA</tspan></text>
  2783. <text
  2784. xml:space="preserve"
  2785. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
  2786. x="479.85266"
  2787. y="414.63626"
  2788. id="mark33-7-9-2-0"
  2789. inkscape:label="#text3221"><tspan
  2790. sodipodi:role="line"
  2791. id="tspan3222-6-5-6-5-5-2-1-6-5-1-7-9"
  2792. x="479.85266"
  2793. y="414.63626"
  2794. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15.70416927px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">hPa</tspan></text>
  2795. <text
  2796. xml:space="preserve"
  2797. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;display:inline;fill:#000000;fill-opacity:1;stroke:none"
  2798. x="535.87439"
  2799. y="414.94156"
  2800. id="mark33-7-9-2-3"
  2801. inkscape:label="#text3221"><tspan
  2802. sodipodi:role="line"
  2803. id="tspan3222-6-5-6-5-5-2-1-6-5-1-7-6"
  2804. x="535.87439"
  2805. y="414.94156"
  2806. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:15.70416927px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1">DH</tspan></text>
  2807. <text
  2808. inkscape:label="#text3221"
  2809. id="apArmColl"
  2810. y="246.91647"
  2811. x="291.44327"
  2812. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:none"
  2813. xml:space="preserve"
  2814. inkscape:transform-center-x="-33.603694"
  2815. inkscape:transform-center-y="-9.4623245"><tspan
  2816. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#00ffff;fill-opacity:1"
  2817. y="246.91647"
  2818. x="291.44327"
  2819. id="tspan4657"
  2820. sodipodi:role="line">ALIGNMENT</tspan></text>
  2821. <rect
  2822. y="224.6458"
  2823. x="221.32439"
  2824. height="29.344925"
  2825. width="142.48199"
  2826. id="rect6383"
  2827. style="fill:none;stroke:#ffffff;stroke-width:1.99194419;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
  2828. <text
  2829. inkscape:label="#text3221"
  2830. id="apArmColl-7"
  2831. y="415.36612"
  2832. x="288.75504"
  2833. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:none"
  2834. xml:space="preserve"
  2835. inkscape:transform-center-x="-33.603694"
  2836. inkscape:transform-center-y="-9.4623245"><tspan
  2837. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#00ffff;fill-opacity:1"
  2838. y="415.36612"
  2839. x="288.75504"
  2840. id="tspan4657-5"
  2841. sodipodi:role="line">HDG</tspan></text>
  2842. <rect
  2843. style="fill:#000000;stroke:none"
  2844. id="rect3442"
  2845. width="53.137348"
  2846. height="21.846064"
  2847. x="67.850098"
  2848. y="84.457489" />
  2849. <path
  2850. sodipodi:nodetypes="ccccc"
  2851. inkscape:label="#path3637"
  2852. inkscape:transform-center-x="44.215429"
  2853. inkscape:connector-curvature="0"
  2854. id="nrNeedle2"
  2855. d="m 88.204634,100.54175 -42.88214,2.74943 0.01103,1.69325 42.850517,2.69393 z"
  2856. style="fill:#ffffff;fill-opacity:1;stroke:#d8baba;stroke-width:0.49798608;stroke-linecap:butt;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
  2857. <rect
  2858. style="fill:#000000;stroke:#ffffff;stroke-width:2.98791647;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
  2859. id="rect3442-3"
  2860. width="33.430779"
  2861. height="251.00949"
  2862. x="413.62344"
  2863. y="118.52212" />
  2864. <text
  2865. inkscape:label="#text3221"
  2866. id="apArmColl-7-6"
  2867. y="221.77478"
  2868. x="431.14801"
  2869. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:none"
  2870. xml:space="preserve"
  2871. inkscape:transform-center-x="-33.446829"
  2872. inkscape:transform-center-y="-9.4302731"><tspan
  2873. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#00ffff;fill-opacity:1"
  2874. y="221.77478"
  2875. x="431.14801"
  2876. id="tspan4657-5-7"
  2877. sodipodi:role="line">V</tspan></text>
  2878. <text
  2879. inkscape:label="#text3221"
  2880. id="apArmColl-7-6-5"
  2881. y="240.39505"
  2882. x="431.15289"
  2883. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:none"
  2884. xml:space="preserve"
  2885. inkscape:transform-center-x="-33.290696"
  2886. inkscape:transform-center-y="-9.3983304"><tspan
  2887. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#00ffff;fill-opacity:1"
  2888. y="240.39505"
  2889. x="431.15289"
  2890. id="tspan4657-5-7-3"
  2891. sodipodi:role="line">/</tspan></text>
  2892. <text
  2893. inkscape:label="#text3221"
  2894. id="apArmColl-7-6-56"
  2895. y="261.57306"
  2896. x="431.17242"
  2897. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:none"
  2898. xml:space="preserve"
  2899. inkscape:transform-center-x="-33.290696"
  2900. inkscape:transform-center-y="-9.3983304"><tspan
  2901. style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'Sans Bold';text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#00ffff;fill-opacity:1"
  2902. y="261.57306"
  2903. x="431.17242"
  2904. id="tspan4657-5-7-2"
  2905. sodipodi:role="line">S</tspan></text>
  2906. <g
  2907. style="display:inline"
  2908. id="gsScale"
  2909. inkscape:label="#g4051"
  2910. transform="matrix(-0.65981112,0,0,-0.66066026,472.79659,866.16594)">
  2911. <path
  2912. transform="matrix(1.4159393,0,0,2.0672514,-73.26218,-546.04222)"
  2913. d="m 226.68135,515.54803 c 0,2.2239 -2.6321,4.02672 -5.87895,4.02672 -3.24686,0 -5.87895,-1.80282 -5.87895,-4.02672 0,-2.22389 2.63209,-4.02671 5.87895,-4.02671 3.24685,0 5.87895,1.80282 5.87895,4.02671 z"
  2914. sodipodi:ry="4.0267167"
  2915. sodipodi:rx="5.8789496"
  2916. sodipodi:cy="515.54803"
  2917. sodipodi:cx="220.8024"
  2918. id="path3241-67"
  2919. style="fill:none;stroke:#ffffff;stroke-width:2.64515162;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2920. sodipodi:type="arc" />
  2921. <path
  2922. transform="matrix(1.4159393,0,0,2.0672514,-114.94603,-546.04222)"
  2923. d="m 226.68135,515.54803 c 0,2.2239 -2.6321,4.02672 -5.87895,4.02672 -3.24686,0 -5.87895,-1.80282 -5.87895,-4.02672 0,-2.22389 2.63209,-4.02671 5.87895,-4.02671 3.24685,0 5.87895,1.80282 5.87895,4.02671 z"
  2924. sodipodi:ry="4.0267167"
  2925. sodipodi:rx="5.8789496"
  2926. sodipodi:cy="515.54803"
  2927. sodipodi:cx="220.8024"
  2928. id="path3241-3-5"
  2929. style="fill:none;stroke:#ffffff;stroke-width:2.64515162;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2930. sodipodi:type="arc" />
  2931. <path
  2932. transform="matrix(1.4159393,0,0,2.0672514,60.9361,-546.04222)"
  2933. d="m 226.68135,515.54803 c 0,2.2239 -2.6321,4.02672 -5.87895,4.02672 -3.24686,0 -5.87895,-1.80282 -5.87895,-4.02672 0,-2.22389 2.63209,-4.02671 5.87895,-4.02671 3.24685,0 5.87895,1.80282 5.87895,4.02671 z"
  2934. sodipodi:ry="4.0267167"
  2935. sodipodi:rx="5.8789496"
  2936. sodipodi:cy="515.54803"
  2937. sodipodi:cx="220.8024"
  2938. id="path3241-6-3"
  2939. style="fill:none;stroke:#ffffff;stroke-width:2.64515162;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2940. sodipodi:type="arc" />
  2941. <path
  2942. transform="matrix(1.4159393,0,0,2.0672514,19.25225,-546.04222)"
  2943. d="m 226.68135,515.54803 c 0,2.2239 -2.6321,4.02672 -5.87895,4.02672 -3.24686,0 -5.87895,-1.80282 -5.87895,-4.02672 0,-2.22389 2.63209,-4.02671 5.87895,-4.02671 3.24685,0 5.87895,1.80282 5.87895,4.02671 z"
  2944. sodipodi:ry="4.0267167"
  2945. sodipodi:rx="5.8789496"
  2946. sodipodi:cy="515.54803"
  2947. sodipodi:cx="220.8024"
  2948. id="path3241-3-7-5"
  2949. style="fill:none;stroke:#ffffff;stroke-width:2.64515162;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
  2950. sodipodi:type="arc" />
  2951. </g>
  2952. <text
  2953. inkscape:label="#text3221"
  2954. id="apArmColl-7-9"
  2955. y="358.96451"
  2956. x="290.40189"
  2957. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.21518326px;line-height:0%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:#00ffff;fill-opacity:1;stroke:none"
  2958. xml:space="preserve"
  2959. inkscape:transform-center-x="-33.446829"
  2960. inkscape:transform-center-y="-9.4302731"><tspan
  2961. style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.21518326px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#00ffff;fill-opacity:1"
  2962. y="358.96451"
  2963. x="290.40189"
  2964. id="tspan4657-5-1"
  2965. sodipodi:role="line">0</tspan></text>
  2966. <rect
  2967. y="92.525017"
  2968. x="71.954102"
  2969. height="16.559265"
  2970. width="42.702908"
  2971. id="rect5008-36"
  2972. style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;display:inline" />
  2973. </g>
  2974. </g>
  2975. <g
  2976. inkscape:label="Template"
  2977. inkscape:groupmode="layer"
  2978. id="layer1"
  2979. transform="translate(0,-252.36218)"
  2980. style="opacity:0.40557281;display:none"
  2981. sodipodi:insensitive="true">
  2982. <image
  2983. y="254.13269"
  2984. x="0.64670467"
  2985. id="image3257"
  2986. xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYIAAAIACAYAAACPamvHAAAABHNCSVQICAgIfAhkiAAAIABJREFU eJzt3elzG+dhx/HfLu6DBEiCh3jooChSlmRJdsK0rmMnju1p075oJtNjpn3dF/1z+kd0JjNp3vSw 2zpVatWJ7UqOLFkSKYoSJZ7iTYC4iLMvPLsFCJAEJdmU/Hw/Mx6PIGCxAKn97j57WZKqeoldvHjx qGfhmbzM83/mzJmjnoWn0t/ff9Sz8EwSicRRz8IzGRgYOOpZeCajo6NHPQvPTTwelyTZRzwfAIAj RggAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgA wHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCE AAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAM RwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgA wHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCE AAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAM RwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgA wHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCE AAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAM RwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgA wHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHCEAAAMRwgAwHDeo54BPD2fz6fO zk55PJ7nMr1isajV1VVJkmVZamtrU1tbm6rVatPnJxKJA6dpWZYKhYK2t7dVqVT2fZ7f75fP55PP 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 +56DsNdRLLtj6BzrfhDnSKDaNWFnS8nj8SgQCKi7u1tjY2N1IahWq1pZWWnpZ2RZls6dO6eTJ0+2 dDKb1+tVMpnUzMxMw1ZcMpnU/fv39corr7jTsm1bHR0disfj7pq+EwLnv42NDW1vb+/7nTjDTP39 /UokEu6RQYFAQL29veru7nYP2a2ddjqdrtvSc/ZX4cVCCI7Y+Pi4NjY26s7OjEQi6ujo0JkzZzQ6 Olr3/EqloqtXrzY9Tn238+fP6+///u/rHqs9bNAZv909/YmJCV29erXucefEpFrVarXp0SsHSSaT DQtJ58xrRygUalgwplKpfY+u+elPf3rgkJllWSoWi5qenj7wSJ2Ojg69/fbbDVsFzpnMPp9P8Xi8 7j2r1ao2Nzd1586dlrYmLMtqCOxBPB7Pnudg3L9/X5Zl6fTp03XnGuw+nNPZQVwqlZROp5VMJjU/ P6/19fU95zufz+urr77S+fPnlUgk3N9Z5zupPWTXkcvltL29rY2NDc3OziqXyx3qs+LbQQiOkNfr 1Z//+Z+7C1InBIFAoOkx4MViUVNTU7p+/XpLC9/Ozs66I0L24lzGwhlX/9WvftVwVIfP52s6T09z 6Yhml83YPXZcu4PYcdClKr7//e+39P5bW1stHbIZCARaGsaovYzG5uambty4secO2r1efxj7Pb9a rerevXtKJpPuGdg+n8+Nl7Pgdv7v9XoVj8cVj8eVSCS0tLSkBw8e7LnATqVSunHjhvr7+3Xs2DG1 tbW5l/lwthJqAx4KhRQKhdTT06NEIuGe1MdWwYuFEBwhy7L2PYLC2Yx2dsZNTU3pn//5n1saI3de 52ySO2uwuxfmOzs7evz4sWZnZzU1NaWpqammR9QUCoWmC+GDTu5qxlkw7Z7f2iGYZjs2fT5f00DU zmOz+dn9Xrlc7sCQ1n73zti8syVVq1KpaGNjQ+vr61pdXdXS0lLL+wac16+vr7e8puz1et1zNPbz 5MkTra+vKxqNqr29Xe3t7QqHwwoEAu7ZwB6Pxz0rWPp6OG5kZERer1d3797d8wTIfD6vhw8fanl5 WZFIRLFYzD3T29kqcKZfG59EIqFwOOzOG14chOAIVatVra+vuyf51D7ujG071xqamZnRzZs3W17T tCxL8/PzunXrlrvZ3t3dreHhYfdIHMuyVCqV9OjRI129elWPHz/ec3qZTKZhDdoZfz7oyKTdnGvU 1KpUKnXTz2azDWu+8Xhc7e3te4ZwZmZGfr/fvahftVpVMBhUX19f3QK8lbF4y7KUTqc1MzOjSqUi j8ejSCSi7u5uRSKRumspJZNJTU9PNxz+2qo7d+7oyZMnB86Xc4x+W1vbnofpOvPuDIFtbm5qc3PT XQlwziJ2/nO+09rADg0NuUM5e01b+v/fidXVVfn9fvl8PgUCAXfa0WhUHR0dikQi7mvC4bD6+vqU Tqf3/Qz4dhGCI+ScULa2tla3oHKGGorFonsxs1QqdeghhJmZGf3Lv/yLuzYbjUb12muv6Sc/+Yl7 5EwwGNTly5cVCAR09erVpmciS1+vba+trdWdmGbbtoaGhhQIBFraMeoYHBxsOCw0k8nU7XROp9Pa 2tqqO5muq6tLx44d23N8/MqVK/J4PHVXce3t7dWf/MmftHxl1lrb29u6deuWyuWyLMuS3+9Xf3+/ zp49q+7ubnco79ixY+7WwsLCwqGHPTKZzJ7nkjTT7HpSzuUtnLV8j8ejTCbjrnk7Rwjlcjklk0l3 n0EkEtHw8LAGBwfrzo4eGBhwv2fbtt0L1zkrFdVqVRsbG8pkMu4F7JxrO62vr7snEjrXowqHw5Lk 7mCOxWKHGj7DN4sQHKFqtaqbN29+Y2dZViqVurWuTCajX//618pkMvr5z3+uRCIhj8ejnp4e9fT0 aHBwUP/4j/+o+/fvN53e48ePlUwm3aOYbNvWwMCARkdH9eWXX7Y0T729vXVnm0pffw+zs7N1IXCO jKkNgdfr1djYmB4+fKjV1dWGaTd7zDl09LARcOarWCy6WzvOPpRsNqvx8XF1dXW5ZzKfPHlSHR0d +vzzzzU3N3eoGOw33NWqWCymsbExBQIBdzhmc3Nzz535zmfb2trS4uKient7664Z5Sy4pf8Pg3Pu h8fjUaVS0cOHDzU9Pd10fpxLTywsLKi3t7fhEOjDXhwR3yxuTHPEWj3p6Gk0G9MulUr63e9+pw8/ /LDhsM/Tp0/rr//6r/c8zn56elpfffVV3WOBQEA//OEPdfbs2X0XaM7RMT/60Y8app/JZDQ5OVkX rZ2dHd27d69hGOj48eN666231NnZue93Z1mWwuGwhoeHm85Xq8NDu7+/arWq+fl53bhxo2GoLBaL aXx8vO5Y+1Y8yyWpHfl8Xn6/3722k3O9qqGhoQMvOlh7rSRH7T4a50CCSCTiXp8oHA67VyDdj/Pc Wtyr4MXDFsER+yZDsJdyuaz//u//Vnd3t9599926BeXY2Jj+9E//VL+Sy9lCAAAK2UlEQVT85S8b Lh2QTCb1ySefaHR0VL29ve7jnZ2dev/999Xf36/p6WltbW25O1md6/EMDg7q3Llzddc0cubl+vXr WlhYaJjPpaUlffrpp3rvvffqrldz/vx5+f1+3bt3T/Pz88rlcnXX0IlEIurr69Pg4GDD1oczjWf1 +PFjtbW1ucNqjo6ODl2+fFmffvrpnpde2M0ZX2+Vc2Ob2hMLt7e3tbKyUrfvxefzaWxsTF6vV8vL yyoUCu735Bw80NvbqxMnTtS9f6VSqRu2cf6cyWTq1uxjsZjOnz+vmZkZJZNJd36cIbNoNKqhoSF1 dnbWDSkWi8VDDYXhm0cIDFUoFPSv//qv6ujo0Pj4eN3C8Q/+4A+0srKif/u3f2tYW3WOXPrZz37m nhAmfb0AfPPNN3X69Gn3CqTlclmBQEDBYFDd3d11x5c783Dz5k1du3at6RFJxWJRN2/eVHt7u773 ve+5h5dalqXR0VH19/drdXVVuVxOhULBHX92jpPf/X7S1+HZ65IQh1GtVjU5OalIJKKzZ8/WHa00 MDCgV199VZ9//nlLh9cODw8f6lyCcDisSqWixcVFd4upUqno0aNH7s2BHKFQSGfPnlVvb692dnbc NX0nPvF4vGGYZmtrq+4aU9LXW21TU1N69dVX3c9q27Z6e3sVDoeVyWTcn7mzH8HZGV2rXC67ZyHj xUEIDJZMJvVP//RPikajOn/+vPt4KBTS+++/r/X1df3ud7+re02pVNKnn36qQqGgP/uzP9PAwIC7 NmlZlo4dO3bgJRzK5bJSqZRu3bql69ev73voZKFQ0G9/+1tlMpmG+xHUXprhIMViUdvb27p//74W FxcPtXN7v2neunVLgUBAp0+fdmNq27ZGRkbcnc37sW1bx48fP/RtNSuVirtD3ZFKpXTnzh2dO3dO 7e3tdZc2d6LtvE+z4SLnCKh79+41LKgrlYrm5+cVCoV08uTJunM+nPtlONPfayiqUChocXGRu5W9 gAjBt8RZW6112Hvk7sdZC6vVyjH+T5480a9+9Su1tbXV3Tmro6NDP//5z927ltUqFov6/PPPZdu2 e/ZzR0eH/H7/njepKZfL7uUHHj58qKmpqaYXu2smn8/r+vXrmp+f18jIiEZGRtTe3u7efWuv93Pu jrW+vq6ZmRnNzc1pbW2tYS1Var4/oJUL+2WzWd24ccMdM3f4fD5dvnxZmUxGDx482HeaTzNUVXuf 5lrOrTIHBwfdHcC7zzCu5ZwIVywW9eTJE83Pz+95VdtyuawHDx5oe3tbg4OD7s1vas9F2D39Uqnk ngczNzenpaWluvtf4MVACL4lhUJBU1NTSqfTdfe7Pez9gfeSTqc1PT3tLvw9Ho+WlpZaWvNyzibe fYkG27b16quv6t69ew1DKc5Fzra2tjQ1NaV4PK7e3l73LmpOlJzrz2xuburJkydaXV1VKpU69Bp5 qVTS/Py8VldXdefOHXV0dOjYsWPq7OxUNBp1P3e1WlUul1MqldLq6qqWl5eVyWTceyRIahqCQqGg 1dXVuuGnjY2Nlr4/574FlUqlLsbO2v78/Lx71VNnvp5lB7HP53Mvkd3M1taWMpmM5ubmFIvFFIvF FAqFGu4rXCgUlM1m3XsKZ7PZA4fMisWiFhYWtLm56d7VzDmZrPZ2mE74na0W55yD57FjHM+fJeml 3ka7ePHiUc9CS5zLIdeupTvHuT/NZRp2CwaDddejtyzLXSC2wuPxNNzZyhmCcM4f2O3MmTN1f3bO KnXOKJX+/wgRJwjPc0FQez/e2vdz1nL3Ohu62WUjnGsv1X5+54S+VkWj0YbvT5J7Uxhnq9A5Dv9p OTfb2evz1XJuEtNsC6L2Z/O0P5dmZxA7nJ/D7nms3XJ6Ge2+/tfLzFkpYovgW1IqlZpeOfN5bSbn 8/lDXwW0Vrlcbnoc/mEUCoVn3gl7GM5JTM9DuVx+5h2YB72+Wq0+889J0oH3iK5VqVS+0Z9JswU9 Xj6cRwAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAA hiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiME AGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4 QgAAhiMEAGA4QgAAhiMEAGA4QgAAhiMEAGA4QgAAhvs/1z6oYHQ2zSkAAAAASUVORK5CYII= "
  2987. height="796.26422"
  2988. width="600.30859" />
  2989. </g>
  2990. </svg>