cx-copter-schematic-F_Cu.svg 194 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840
  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <svg
  5. xmlns:svg="http://www.w3.org/2000/svg"
  6. xmlns="http://www.w3.org/2000/svg"
  7. xmlns:xlink="http://www.w3.org/1999/xlink"
  8. xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  9. version="1.1"
  10. width="59.9948mm" height="59.9948mm" viewBox="0.0000 0.0000 59.9948 59.9948">
  11. <title>SVG Image created as cx-copter-schematic-F_Cu.svg date 2026-06-01T11:49:58 </title>
  12. <desc>Image generated by PCBNEW </desc>
  13. <g style="fill:#000000; fill-opacity:1.0000;stroke:#000000; stroke-opacity:1.0000;
  14. stroke-linecap:round; stroke-linejoin:round;"
  15. transform="translate(0 0) scale(1 1)">
  16. </g>
  17. <g style="fill:none;
  18. stroke:#000000; stroke-width:0.3000; stroke-opacity:1;
  19. stroke-linecap:round; stroke-linejoin:round;">
  20. <text x="56.7516" y="3.6295"
  21. transform="scale(-1 1) translate(-113.503110 0)"
  22. textLength="13.1714" font-size="2.0000" lengthAdjust="spacingAndGlyphs"
  23. text-anchor="start" opacity="0" stroke-opacity="0">cx-copter </text>
  24. <g class="stroked-text"><desc>cx-copter </desc>
  25. <path d="M55.5542 3.3589
  26. L55.6970 3.4303
  27. " />
  28. <path d="M55.6970 3.4303
  29. L55.9828 3.4303
  30. " />
  31. <path d="M55.9828 3.4303
  32. L56.1256 3.3589
  33. " />
  34. <path d="M56.1256 3.3589
  35. L56.1970 3.2875
  36. " />
  37. <path d="M56.1970 3.2875
  38. L56.2685 3.1446
  39. " />
  40. <path d="M56.2685 3.1446
  41. L56.2685 2.7161
  42. " />
  43. <path d="M56.2685 2.7161
  44. L56.1970 2.5732
  45. " />
  46. <path d="M56.1970 2.5732
  47. L56.1256 2.5018
  48. " />
  49. <path d="M56.1256 2.5018
  50. L55.9828 2.4303
  51. " />
  52. <path d="M55.9828 2.4303
  53. L55.6970 2.4303
  54. " />
  55. <path d="M55.6970 2.4303
  56. L55.5542 2.5018
  57. " />
  58. <path d="M55.0542 3.4303
  59. L54.2685 2.4303
  60. " />
  61. <path d="M55.0542 2.4303
  62. L54.2685 3.4303
  63. " />
  64. <path d="M53.6970 2.8589
  65. L52.5542 2.8589
  66. " />
  67. <path d="M51.1970 3.3589
  68. L51.3399 3.4303
  69. " />
  70. <path d="M51.3399 3.4303
  71. L51.6256 3.4303
  72. " />
  73. <path d="M51.6256 3.4303
  74. L51.7685 3.3589
  75. " />
  76. <path d="M51.7685 3.3589
  77. L51.8399 3.2875
  78. " />
  79. <path d="M51.8399 3.2875
  80. L51.9113 3.1446
  81. " />
  82. <path d="M51.9113 3.1446
  83. L51.9113 2.7161
  84. " />
  85. <path d="M51.9113 2.7161
  86. L51.8399 2.5732
  87. " />
  88. <path d="M51.8399 2.5732
  89. L51.7685 2.5018
  90. " />
  91. <path d="M51.7685 2.5018
  92. L51.6256 2.4303
  93. " />
  94. <path d="M51.6256 2.4303
  95. L51.3399 2.4303
  96. " />
  97. <path d="M51.3399 2.4303
  98. L51.1970 2.5018
  99. " />
  100. <path d="M50.3399 3.4303
  101. L50.4828 3.3589
  102. " />
  103. <path d="M50.4828 3.3589
  104. L50.5542 3.2875
  105. " />
  106. <path d="M50.5542 3.2875
  107. L50.6256 3.1446
  108. " />
  109. <path d="M50.6256 3.1446
  110. L50.6256 2.7161
  111. " />
  112. <path d="M50.6256 2.7161
  113. L50.5542 2.5732
  114. " />
  115. <path d="M50.5542 2.5732
  116. L50.4828 2.5018
  117. " />
  118. <path d="M50.4828 2.5018
  119. L50.3399 2.4303
  120. " />
  121. <path d="M50.3399 2.4303
  122. L50.1256 2.4303
  123. " />
  124. <path d="M50.1256 2.4303
  125. L49.9828 2.5018
  126. " />
  127. <path d="M49.9828 2.5018
  128. L49.9113 2.5732
  129. " />
  130. <path d="M49.9113 2.5732
  131. L49.8399 2.7161
  132. " />
  133. <path d="M49.8399 2.7161
  134. L49.8399 3.1446
  135. " />
  136. <path d="M49.8399 3.1446
  137. L49.9113 3.2875
  138. " />
  139. <path d="M49.9113 3.2875
  140. L49.9828 3.3589
  141. " />
  142. <path d="M49.9828 3.3589
  143. L50.1256 3.4303
  144. " />
  145. <path d="M50.1256 3.4303
  146. L50.3399 3.4303
  147. " />
  148. <path d="M49.1970 2.4303
  149. L49.1970 3.9303
  150. " />
  151. <path d="M49.1970 2.5018
  152. L49.0542 2.4303
  153. " />
  154. <path d="M49.0542 2.4303
  155. L48.7685 2.4303
  156. " />
  157. <path d="M48.7685 2.4303
  158. L48.6256 2.5018
  159. " />
  160. <path d="M48.6256 2.5018
  161. L48.5542 2.5732
  162. " />
  163. <path d="M48.5542 2.5732
  164. L48.4828 2.7161
  165. " />
  166. <path d="M48.4828 2.7161
  167. L48.4828 3.1446
  168. " />
  169. <path d="M48.4828 3.1446
  170. L48.5542 3.2875
  171. " />
  172. <path d="M48.5542 3.2875
  173. L48.6256 3.3589
  174. " />
  175. <path d="M48.6256 3.3589
  176. L48.7685 3.4303
  177. " />
  178. <path d="M48.7685 3.4303
  179. L49.0542 3.4303
  180. " />
  181. <path d="M49.0542 3.4303
  182. L49.1970 3.3589
  183. " />
  184. <path d="M48.0542 2.4303
  185. L47.4828 2.4303
  186. " />
  187. <path d="M47.8399 1.9304
  188. L47.8399 3.2161
  189. " />
  190. <path d="M47.8399 3.2161
  191. L47.7685 3.3589
  192. " />
  193. <path d="M47.7685 3.3589
  194. L47.6256 3.4303
  195. " />
  196. <path d="M47.6256 3.4303
  197. L47.4828 3.4303
  198. " />
  199. <path d="M46.4113 3.3589
  200. L46.5542 3.4303
  201. " />
  202. <path d="M46.5542 3.4303
  203. L46.8399 3.4303
  204. " />
  205. <path d="M46.8399 3.4303
  206. L46.9828 3.3589
  207. " />
  208. <path d="M46.9828 3.3589
  209. L47.0542 3.2161
  210. " />
  211. <path d="M47.0542 3.2161
  212. L47.0542 2.6446
  213. " />
  214. <path d="M47.0542 2.6446
  215. L46.9828 2.5018
  216. " />
  217. <path d="M46.9828 2.5018
  218. L46.8399 2.4303
  219. " />
  220. <path d="M46.8399 2.4303
  221. L46.5542 2.4303
  222. " />
  223. <path d="M46.5542 2.4303
  224. L46.4113 2.5018
  225. " />
  226. <path d="M46.4113 2.5018
  227. L46.3399 2.6446
  228. " />
  229. <path d="M46.3399 2.6446
  230. L46.3399 2.7875
  231. " />
  232. <path d="M46.3399 2.7875
  233. L47.0542 2.9303
  234. " />
  235. <path d="M45.6970 3.4303
  236. L45.6970 2.4303
  237. " />
  238. <path d="M45.6970 2.7161
  239. L45.6256 2.5732
  240. " />
  241. <path d="M45.6256 2.5732
  242. L45.5542 2.5018
  243. " />
  244. <path d="M45.5542 2.5018
  245. L45.4113 2.4303
  246. " />
  247. <path d="M45.4113 2.4303
  248. L45.2685 2.4303
  249. " />
  250. </g><text x="56.7516" y="6.0444"
  251. transform="scale(-1 1) translate(-113.503110 0)"
  252. textLength="11.3143" font-size="2.0000" lengthAdjust="spacingAndGlyphs"
  253. text-anchor="start" opacity="0" stroke-opacity="0">beta v1.1</text>
  254. <g class="stroked-text"><desc>beta v1.1</desc>
  255. <path d="M56.1970 5.8453
  256. L56.1970 4.3453
  257. " />
  258. <path d="M56.1970 4.9167
  259. L56.0542 4.8453
  260. " />
  261. <path d="M56.0542 4.8453
  262. L55.7685 4.8453
  263. " />
  264. <path d="M55.7685 4.8453
  265. L55.6256 4.9167
  266. " />
  267. <path d="M55.6256 4.9167
  268. L55.5542 4.9881
  269. " />
  270. <path d="M55.5542 4.9881
  271. L55.4828 5.1310
  272. " />
  273. <path d="M55.4828 5.1310
  274. L55.4828 5.5596
  275. " />
  276. <path d="M55.4828 5.5596
  277. L55.5542 5.7024
  278. " />
  279. <path d="M55.5542 5.7024
  280. L55.6256 5.7738
  281. " />
  282. <path d="M55.6256 5.7738
  283. L55.7685 5.8453
  284. " />
  285. <path d="M55.7685 5.8453
  286. L56.0542 5.8453
  287. " />
  288. <path d="M56.0542 5.8453
  289. L56.1970 5.7738
  290. " />
  291. <path d="M54.2685 5.7738
  292. L54.4113 5.8453
  293. " />
  294. <path d="M54.4113 5.8453
  295. L54.6970 5.8453
  296. " />
  297. <path d="M54.6970 5.8453
  298. L54.8399 5.7738
  299. " />
  300. <path d="M54.8399 5.7738
  301. L54.9113 5.6310
  302. " />
  303. <path d="M54.9113 5.6310
  304. L54.9113 5.0596
  305. " />
  306. <path d="M54.9113 5.0596
  307. L54.8399 4.9167
  308. " />
  309. <path d="M54.8399 4.9167
  310. L54.6970 4.8453
  311. " />
  312. <path d="M54.6970 4.8453
  313. L54.4113 4.8453
  314. " />
  315. <path d="M54.4113 4.8453
  316. L54.2685 4.9167
  317. " />
  318. <path d="M54.2685 4.9167
  319. L54.1970 5.0596
  320. " />
  321. <path d="M54.1970 5.0596
  322. L54.1970 5.2024
  323. " />
  324. <path d="M54.1970 5.2024
  325. L54.9113 5.3453
  326. " />
  327. <path d="M53.7685 4.8453
  328. L53.1970 4.8453
  329. " />
  330. <path d="M53.5542 4.3453
  331. L53.5542 5.6310
  332. " />
  333. <path d="M53.5542 5.6310
  334. L53.4828 5.7738
  335. " />
  336. <path d="M53.4828 5.7738
  337. L53.3399 5.8453
  338. " />
  339. <path d="M53.3399 5.8453
  340. L53.1970 5.8453
  341. " />
  342. <path d="M52.0542 5.8453
  343. L52.0542 5.0596
  344. " />
  345. <path d="M52.0542 5.0596
  346. L52.1256 4.9167
  347. " />
  348. <path d="M52.1256 4.9167
  349. L52.2685 4.8453
  350. " />
  351. <path d="M52.2685 4.8453
  352. L52.5542 4.8453
  353. " />
  354. <path d="M52.5542 4.8453
  355. L52.6970 4.9167
  356. " />
  357. <path d="M52.0542 5.7738
  358. L52.1970 5.8453
  359. " />
  360. <path d="M52.1970 5.8453
  361. L52.5542 5.8453
  362. " />
  363. <path d="M52.5542 5.8453
  364. L52.6970 5.7738
  365. " />
  366. <path d="M52.6970 5.7738
  367. L52.7685 5.6310
  368. " />
  369. <path d="M52.7685 5.6310
  370. L52.7685 5.4881
  371. " />
  372. <path d="M52.7685 5.4881
  373. L52.6970 5.3453
  374. " />
  375. <path d="M52.6970 5.3453
  376. L52.5542 5.2738
  377. " />
  378. <path d="M52.5542 5.2738
  379. L52.1970 5.2738
  380. " />
  381. <path d="M52.1970 5.2738
  382. L52.0542 5.2024
  383. " />
  384. <path d="M50.3399 4.8453
  385. L49.9828 5.8453
  386. " />
  387. <path d="M49.9828 5.8453
  388. L49.6256 4.8453
  389. " />
  390. <path d="M48.2685 5.8453
  391. L49.1256 5.8453
  392. " />
  393. <path d="M48.6970 5.8453
  394. L48.6970 4.3453
  395. " />
  396. <path d="M48.6970 4.3453
  397. L48.8399 4.5596
  398. " />
  399. <path d="M48.8399 4.5596
  400. L48.9828 4.7024
  401. " />
  402. <path d="M48.9828 4.7024
  403. L49.1256 4.7738
  404. " />
  405. <path d="M47.6256 5.7024
  406. L47.5542 5.7738
  407. " />
  408. <path d="M47.5542 5.7738
  409. L47.6256 5.8453
  410. " />
  411. <path d="M47.6256 5.8453
  412. L47.6970 5.7738
  413. " />
  414. <path d="M47.6970 5.7738
  415. L47.6256 5.7024
  416. " />
  417. <path d="M47.6256 5.7024
  418. L47.6256 5.8453
  419. " />
  420. <path d="M46.1256 5.8453
  421. L46.9828 5.8453
  422. " />
  423. <path d="M46.5542 5.8453
  424. L46.5542 4.3453
  425. " />
  426. <path d="M46.5542 4.3453
  427. L46.6970 4.5596
  428. " />
  429. <path d="M46.6970 4.5596
  430. L46.8399 4.7024
  431. " />
  432. <path d="M46.8399 4.7024
  433. L46.9828 4.7738
  434. " />
  435. </g></g>
  436. <g style="fill:#000000; fill-opacity:1.0000; stroke:none;">
  437. <circle cx="13.0016" cy="20.0944" r="0.5000" />
  438. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  439. d="M 4.2141,9.1444
  440. 4.1950,9.0488
  441. 4.1408,8.9677
  442. 4.0597,8.9135
  443. 3.9641,8.8944
  444. 3.2891,8.8944
  445. 3.1934,8.9135
  446. 3.1123,8.9677
  447. 3.0581,9.0488
  448. 3.0391,9.1444
  449. 3.0391,10.0944
  450. 3.0581,10.1901
  451. 3.1123,10.2712
  452. 3.1934,10.3254
  453. 3.2891,10.3444
  454. 3.9641,10.3444
  455. 4.0597,10.3254
  456. 4.1408,10.2712
  457. 4.1950,10.1901
  458. 4.2141,10.0944
  459. Z" />
  460. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  461. d="M 2.1391,9.1444
  462. 2.1200,9.0488
  463. 2.0658,8.9677
  464. 1.9847,8.9135
  465. 1.8891,8.8944
  466. 1.2141,8.8944
  467. 1.1184,8.9135
  468. 1.0373,8.9677
  469. 0.9831,9.0488
  470. 0.9641,9.1444
  471. 0.9641,10.0944
  472. 0.9831,10.1901
  473. 1.0373,10.2712
  474. 1.1184,10.3254
  475. 1.2141,10.3444
  476. 1.8891,10.3444
  477. 1.9847,10.3254
  478. 2.0658,10.2712
  479. 2.1200,10.1901
  480. 2.1391,10.0944
  481. Z" />
  482. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  483. d="M 23.0266,10.6194
  484. 22.9309,10.6385
  485. 22.8498,10.6927
  486. 22.7956,10.7738
  487. 22.7766,10.8694
  488. 22.7766,11.5694
  489. 22.7956,11.6651
  490. 22.8498,11.7462
  491. 22.9309,11.8004
  492. 23.0266,11.8194
  493. 23.9266,11.8194
  494. 24.0222,11.8004
  495. 24.1033,11.7462
  496. 24.1575,11.6651
  497. 24.1766,11.5694
  498. 24.1766,10.8694
  499. 24.1575,10.7738
  500. 24.1033,10.6927
  501. 24.0222,10.6385
  502. 23.9266,10.6194
  503. Z" />
  504. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  505. d="M 23.0266,12.6194
  506. 22.9309,12.6385
  507. 22.8498,12.6927
  508. 22.7956,12.7738
  509. 22.7766,12.8694
  510. 22.7766,13.5694
  511. 22.7956,13.6651
  512. 22.8498,13.7462
  513. 22.9309,13.8004
  514. 23.0266,13.8194
  515. 23.9266,13.8194
  516. 24.0222,13.8004
  517. 24.1033,13.7462
  518. 24.1575,13.6651
  519. 24.1766,13.5694
  520. 24.1766,12.8694
  521. 24.1575,12.7738
  522. 24.1033,12.6927
  523. 24.0222,12.6385
  524. 23.9266,12.6194
  525. Z" />
  526. <circle cx="17.6516" cy="41.9694" r="0.5000" />
  527. <circle cx="23.1016" cy="25.1944" r="0.5000" />
  528. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  529. d="M 36.6416,39.2719
  530. 36.6539,39.3341
  531. 36.6891,39.3868
  532. 36.7419,39.4221
  533. 36.8041,39.4344
  534. 37.6991,39.4344
  535. 37.7612,39.4221
  536. 37.8140,39.3868
  537. 37.8492,39.3341
  538. 37.8616,39.2719
  539. 37.8616,38.9469
  540. 37.8492,38.8848
  541. 37.8140,38.8320
  542. 37.7612,38.7968
  543. 37.6991,38.7844
  544. 36.8041,38.7844
  545. 36.7419,38.7968
  546. 36.6891,38.8320
  547. 36.6539,38.8848
  548. 36.6416,38.9469
  549. Z" />
  550. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  551. d="M 36.6416,37.3719
  552. 36.6539,37.4341
  553. 36.6891,37.4868
  554. 36.7419,37.5221
  555. 36.8041,37.5344
  556. 37.6991,37.5344
  557. 37.7612,37.5221
  558. 37.8140,37.4868
  559. 37.8492,37.4341
  560. 37.8616,37.3719
  561. 37.8616,37.0469
  562. 37.8492,36.9848
  563. 37.8140,36.9320
  564. 37.7612,36.8968
  565. 37.6991,36.8844
  566. 36.8041,36.8844
  567. 36.7419,36.8968
  568. 36.6891,36.9320
  569. 36.6539,36.9848
  570. 36.6416,37.0469
  571. Z" />
  572. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  573. d="M 39.2616,38.3219
  574. 39.2739,38.3841
  575. 39.3091,38.4368
  576. 39.3619,38.4721
  577. 39.4241,38.4844
  578. 40.3191,38.4844
  579. 40.3812,38.4721
  580. 40.4340,38.4368
  581. 40.4692,38.3841
  582. 40.4816,38.3219
  583. 40.4816,37.9969
  584. 40.4692,37.9348
  585. 40.4340,37.8820
  586. 40.3812,37.8468
  587. 40.3191,37.8344
  588. 39.4241,37.8344
  589. 39.3619,37.8468
  590. 39.3091,37.8820
  591. 39.2739,37.9348
  592. 39.2616,37.9969
  593. Z" />
  594. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  595. d="M 53.4216,47.1044
  596. 53.4147,47.0700
  597. 53.3952,47.0408
  598. 53.3660,47.0213
  599. 53.3316,47.0144
  600. 52.0116,47.0144
  601. 51.9771,47.0213
  602. 51.9479,47.0408
  603. 51.9284,47.0700
  604. 51.9216,47.1044
  605. 51.9216,47.8244
  606. 51.9284,47.8589
  607. 51.9479,47.8881
  608. 51.9771,47.9076
  609. 52.0116,47.9144
  610. 53.3316,47.9144
  611. 53.3660,47.9076
  612. 53.3952,47.8881
  613. 53.4147,47.8589
  614. 53.4216,47.8244
  615. Z" />
  616. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  617. d="M 53.4216,50.4044
  618. 53.4147,50.3700
  619. 53.3952,50.3408
  620. 53.3660,50.3213
  621. 53.3316,50.3144
  622. 52.0116,50.3144
  623. 51.9771,50.3213
  624. 51.9479,50.3408
  625. 51.9284,50.3700
  626. 51.9216,50.4044
  627. 51.9216,51.1244
  628. 51.9284,51.1589
  629. 51.9479,51.1881
  630. 51.9771,51.2076
  631. 52.0116,51.2144
  632. 53.3316,51.2144
  633. 53.3660,51.2076
  634. 53.3952,51.1881
  635. 53.4147,51.1589
  636. 53.4216,51.1244
  637. Z" />
  638. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  639. d="M 48.5216,50.4044
  640. 48.5147,50.3700
  641. 48.4952,50.3408
  642. 48.4660,50.3213
  643. 48.4316,50.3144
  644. 47.1116,50.3144
  645. 47.0771,50.3213
  646. 47.0479,50.3408
  647. 47.0284,50.3700
  648. 47.0216,50.4044
  649. 47.0216,51.1244
  650. 47.0284,51.1589
  651. 47.0479,51.1881
  652. 47.0771,51.2076
  653. 47.1116,51.2144
  654. 48.4316,51.2144
  655. 48.4660,51.2076
  656. 48.4952,51.1881
  657. 48.5147,51.1589
  658. 48.5216,51.1244
  659. Z" />
  660. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  661. d="M 48.5216,47.1044
  662. 48.5147,47.0700
  663. 48.4952,47.0408
  664. 48.4660,47.0213
  665. 48.4316,47.0144
  666. 47.1116,47.0144
  667. 47.0771,47.0213
  668. 47.0479,47.0408
  669. 47.0284,47.0700
  670. 47.0216,47.1044
  671. 47.0216,47.8244
  672. 47.0284,47.8589
  673. 47.0479,47.8881
  674. 47.0771,47.9076
  675. 47.1116,47.9144
  676. 48.4316,47.9144
  677. 48.4660,47.9076
  678. 48.4952,47.8881
  679. 48.5147,47.8589
  680. 48.5216,47.8244
  681. Z" />
  682. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  683. d="M 53.4316,41.5144
  684. 53.4247,41.4800
  685. 53.4052,41.4508
  686. 53.3760,41.4313
  687. 53.3416,41.4244
  688. 52.0216,41.4244
  689. 51.9871,41.4313
  690. 51.9579,41.4508
  691. 51.9384,41.4800
  692. 51.9316,41.5144
  693. 51.9316,42.2344
  694. 51.9384,42.2689
  695. 51.9579,42.2981
  696. 51.9871,42.3176
  697. 52.0216,42.3244
  698. 53.3416,42.3244
  699. 53.3760,42.3176
  700. 53.4052,42.2981
  701. 53.4247,42.2689
  702. 53.4316,42.2344
  703. Z" />
  704. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  705. d="M 53.4316,44.8144
  706. 53.4247,44.7800
  707. 53.4052,44.7508
  708. 53.3760,44.7313
  709. 53.3416,44.7244
  710. 52.0216,44.7244
  711. 51.9871,44.7313
  712. 51.9579,44.7508
  713. 51.9384,44.7800
  714. 51.9316,44.8144
  715. 51.9316,45.5344
  716. 51.9384,45.5689
  717. 51.9579,45.5981
  718. 51.9871,45.6176
  719. 52.0216,45.6244
  720. 53.3416,45.6244
  721. 53.3760,45.6176
  722. 53.4052,45.5981
  723. 53.4247,45.5689
  724. 53.4316,45.5344
  725. Z" />
  726. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  727. d="M 48.5316,44.8144
  728. 48.5247,44.7800
  729. 48.5052,44.7508
  730. 48.4760,44.7313
  731. 48.4416,44.7244
  732. 47.1216,44.7244
  733. 47.0871,44.7313
  734. 47.0579,44.7508
  735. 47.0384,44.7800
  736. 47.0316,44.8144
  737. 47.0316,45.5344
  738. 47.0384,45.5689
  739. 47.0579,45.5981
  740. 47.0871,45.6176
  741. 47.1216,45.6244
  742. 48.4416,45.6244
  743. 48.4760,45.6176
  744. 48.5052,45.5981
  745. 48.5247,45.5689
  746. 48.5316,45.5344
  747. Z" />
  748. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  749. d="M 48.5316,41.5144
  750. 48.5247,41.4800
  751. 48.5052,41.4508
  752. 48.4760,41.4313
  753. 48.4416,41.4244
  754. 47.1216,41.4244
  755. 47.0871,41.4313
  756. 47.0579,41.4508
  757. 47.0384,41.4800
  758. 47.0316,41.5144
  759. 47.0316,42.2344
  760. 47.0384,42.2689
  761. 47.0579,42.2981
  762. 47.0871,42.3176
  763. 47.1216,42.3244
  764. 48.4416,42.3244
  765. 48.4760,42.3176
  766. 48.5052,42.2981
  767. 48.5247,42.2689
  768. 48.5316,42.2344
  769. Z" />
  770. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  771. d="M 39.8216,42.5094
  772. 41.5216,42.5094
  773. 41.5216,40.8094
  774. 39.8216,40.8094
  775. Z" />
  776. <circle cx="38.1316" cy="41.6594" r="0.8500" />
  777. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  778. d="M 31.9766,48.3844
  779. 31.9956,48.4801
  780. 32.0498,48.5612
  781. 32.1309,48.6154
  782. 32.2266,48.6344
  783. 32.9266,48.6344
  784. 33.0222,48.6154
  785. 33.1033,48.5612
  786. 33.1575,48.4801
  787. 33.1766,48.3844
  788. 33.1766,47.4844
  789. 33.1575,47.3888
  790. 33.1033,47.3077
  791. 33.0222,47.2535
  792. 32.9266,47.2344
  793. 32.2266,47.2344
  794. 32.1309,47.2535
  795. 32.0498,47.3077
  796. 31.9956,47.3888
  797. 31.9766,47.4844
  798. Z" />
  799. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  800. d="M 33.9766,48.3844
  801. 33.9956,48.4801
  802. 34.0498,48.5612
  803. 34.1309,48.6154
  804. 34.2266,48.6344
  805. 34.9266,48.6344
  806. 35.0222,48.6154
  807. 35.1033,48.5612
  808. 35.1575,48.4801
  809. 35.1766,48.3844
  810. 35.1766,47.4844
  811. 35.1575,47.3888
  812. 35.1033,47.3077
  813. 35.0222,47.2535
  814. 34.9266,47.2344
  815. 34.2266,47.2344
  816. 34.1309,47.2535
  817. 34.0498,47.3077
  818. 33.9956,47.3888
  819. 33.9766,47.4844
  820. Z" />
  821. <circle cx="21.0016" cy="40.9444" r="0.5000" />
  822. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  823. d="M 42.1891,34.0244
  824. 42.1700,33.9288
  825. 42.1158,33.8477
  826. 42.0347,33.7935
  827. 41.9391,33.7744
  828. 39.9391,33.7744
  829. 39.8434,33.7935
  830. 39.7623,33.8477
  831. 39.7081,33.9288
  832. 39.6891,34.0244
  833. 39.6891,35.3244
  834. 39.7081,35.4201
  835. 39.7623,35.5012
  836. 39.8434,35.5554
  837. 39.9391,35.5744
  838. 41.9391,35.5744
  839. 42.0347,35.5554
  840. 42.1158,35.5012
  841. 42.1700,35.4201
  842. 42.1891,35.3244
  843. Z" />
  844. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  845. d="M 38.1891,34.0244
  846. 38.1700,33.9288
  847. 38.1158,33.8477
  848. 38.0347,33.7935
  849. 37.9391,33.7744
  850. 35.9391,33.7744
  851. 35.8434,33.7935
  852. 35.7623,33.8477
  853. 35.7081,33.9288
  854. 35.6891,34.0244
  855. 35.6891,35.3244
  856. 35.7081,35.4201
  857. 35.7623,35.5012
  858. 35.8434,35.5554
  859. 35.9391,35.5744
  860. 37.9391,35.5744
  861. 38.0347,35.5554
  862. 38.1158,35.5012
  863. 38.1700,35.4201
  864. 38.1891,35.3244
  865. Z" />
  866. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  867. d="M 39.8216,31.9544
  868. 41.5216,31.9544
  869. 41.5216,30.2544
  870. 39.8216,30.2544
  871. Z" />
  872. <circle cx="38.1316" cy="31.1044" r="0.8500" />
  873. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  874. d="M 32.8916,37.8594
  875. 32.9106,37.9551
  876. 32.9648,38.0362
  877. 33.0459,38.0904
  878. 33.1416,38.1094
  879. 33.8416,38.1094
  880. 33.9372,38.0904
  881. 34.0183,38.0362
  882. 34.0725,37.9551
  883. 34.0916,37.8594
  884. 34.0916,36.9594
  885. 34.0725,36.8638
  886. 34.0183,36.7827
  887. 33.9372,36.7285
  888. 33.8416,36.7094
  889. 33.1416,36.7094
  890. 33.0459,36.7285
  891. 32.9648,36.7827
  892. 32.9106,36.8638
  893. 32.8916,36.9594
  894. Z" />
  895. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  896. d="M 34.8916,37.8594
  897. 34.9106,37.9551
  898. 34.9648,38.0362
  899. 35.0459,38.0904
  900. 35.1416,38.1094
  901. 35.8416,38.1094
  902. 35.9372,38.0904
  903. 36.0183,38.0362
  904. 36.0725,37.9551
  905. 36.0916,37.8594
  906. 36.0916,36.9594
  907. 36.0725,36.8638
  908. 36.0183,36.7827
  909. 35.9372,36.7285
  910. 35.8416,36.7094
  911. 35.1416,36.7094
  912. 35.0459,36.7285
  913. 34.9648,36.7827
  914. 34.9106,36.8638
  915. 34.8916,36.9594
  916. Z" />
  917. <circle cx="25.4266" cy="6.8444" r="0.5000" />
  918. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  919. d="M 35.8116,31.2844
  920. 35.9072,31.2654
  921. 35.9883,31.2112
  922. 36.0425,31.1301
  923. 36.0616,31.0344
  924. 36.0616,30.3344
  925. 36.0425,30.2388
  926. 35.9883,30.1577
  927. 35.9072,30.1035
  928. 35.8116,30.0844
  929. 34.9116,30.0844
  930. 34.8159,30.1035
  931. 34.7348,30.1577
  932. 34.6806,30.2388
  933. 34.6616,30.3344
  934. 34.6616,31.0344
  935. 34.6806,31.1301
  936. 34.7348,31.2112
  937. 34.8159,31.2654
  938. 34.9116,31.2844
  939. Z" />
  940. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  941. d="M 35.8116,29.2844
  942. 35.9072,29.2654
  943. 35.9883,29.2112
  944. 36.0425,29.1301
  945. 36.0616,29.0344
  946. 36.0616,28.3344
  947. 36.0425,28.2388
  948. 35.9883,28.1577
  949. 35.9072,28.1035
  950. 35.8116,28.0844
  951. 34.9116,28.0844
  952. 34.8159,28.1035
  953. 34.7348,28.1577
  954. 34.6806,28.2388
  955. 34.6616,28.3344
  956. 34.6616,29.0344
  957. 34.6806,29.1301
  958. 34.7348,29.2112
  959. 34.8159,29.2654
  960. 34.9116,29.2844
  961. Z" />
  962. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  963. d="M 16.2266,45.7194
  964. 16.2075,45.6238
  965. 16.1533,45.5427
  966. 16.0722,45.4885
  967. 15.9766,45.4694
  968. 15.4516,45.4694
  969. 15.3559,45.4885
  970. 15.2748,45.5427
  971. 15.2206,45.6238
  972. 15.2016,45.7194
  973. 15.2016,46.6194
  974. 15.2206,46.7151
  975. 15.2748,46.7962
  976. 15.3559,46.8504
  977. 15.4516,46.8694
  978. 15.9766,46.8694
  979. 16.0722,46.8504
  980. 16.1533,46.7962
  981. 16.2075,46.7151
  982. 16.2266,46.6194
  983. Z" />
  984. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  985. d="M 14.4016,45.7194
  986. 14.3825,45.6238
  987. 14.3283,45.5427
  988. 14.2472,45.4885
  989. 14.1516,45.4694
  990. 13.6266,45.4694
  991. 13.5309,45.4885
  992. 13.4498,45.5427
  993. 13.3956,45.6238
  994. 13.3766,45.7194
  995. 13.3766,46.6194
  996. 13.3956,46.7151
  997. 13.4498,46.7962
  998. 13.5309,46.8504
  999. 13.6266,46.8694
  1000. 14.1516,46.8694
  1001. 14.2472,46.8504
  1002. 14.3283,46.7962
  1003. 14.3825,46.7151
  1004. 14.4016,46.6194
  1005. Z" />
  1006. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1007. d="M 11.1266,24.6569
  1008. 11.0309,24.6760
  1009. 10.9498,24.7302
  1010. 10.8956,24.8113
  1011. 10.8766,24.9069
  1012. 10.8766,25.5819
  1013. 10.8956,25.6776
  1014. 10.9498,25.7587
  1015. 11.0309,25.8129
  1016. 11.1266,25.8319
  1017. 12.0766,25.8319
  1018. 12.1722,25.8129
  1019. 12.2533,25.7587
  1020. 12.3075,25.6776
  1021. 12.3266,25.5819
  1022. 12.3266,24.9069
  1023. 12.3075,24.8113
  1024. 12.2533,24.7302
  1025. 12.1722,24.6760
  1026. 12.0766,24.6569
  1027. Z" />
  1028. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1029. d="M 11.1266,26.7319
  1030. 11.0309,26.7510
  1031. 10.9498,26.8052
  1032. 10.8956,26.8863
  1033. 10.8766,26.9819
  1034. 10.8766,27.6569
  1035. 10.8956,27.7526
  1036. 10.9498,27.8337
  1037. 11.0309,27.8879
  1038. 11.1266,27.9069
  1039. 12.0766,27.9069
  1040. 12.1722,27.8879
  1041. 12.2533,27.8337
  1042. 12.3075,27.7526
  1043. 12.3266,27.6569
  1044. 12.3266,26.9819
  1045. 12.3075,26.8863
  1046. 12.2533,26.8052
  1047. 12.1722,26.7510
  1048. 12.0766,26.7319
  1049. Z" />
  1050. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1051. d="M 53.4316,52.7044
  1052. 53.4247,52.6700
  1053. 53.4052,52.6408
  1054. 53.3760,52.6213
  1055. 53.3416,52.6144
  1056. 52.0216,52.6144
  1057. 51.9871,52.6213
  1058. 51.9579,52.6408
  1059. 51.9384,52.6700
  1060. 51.9316,52.7044
  1061. 51.9316,53.4244
  1062. 51.9384,53.4589
  1063. 51.9579,53.4881
  1064. 51.9871,53.5076
  1065. 52.0216,53.5144
  1066. 53.3416,53.5144
  1067. 53.3760,53.5076
  1068. 53.4052,53.4881
  1069. 53.4247,53.4589
  1070. 53.4316,53.4244
  1071. Z" />
  1072. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1073. d="M 53.4316,56.0044
  1074. 53.4247,55.9700
  1075. 53.4052,55.9408
  1076. 53.3760,55.9213
  1077. 53.3416,55.9144
  1078. 52.0216,55.9144
  1079. 51.9871,55.9213
  1080. 51.9579,55.9408
  1081. 51.9384,55.9700
  1082. 51.9316,56.0044
  1083. 51.9316,56.7244
  1084. 51.9384,56.7589
  1085. 51.9579,56.7881
  1086. 51.9871,56.8076
  1087. 52.0216,56.8144
  1088. 53.3416,56.8144
  1089. 53.3760,56.8076
  1090. 53.4052,56.7881
  1091. 53.4247,56.7589
  1092. 53.4316,56.7244
  1093. Z" />
  1094. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1095. d="M 48.5316,56.0044
  1096. 48.5247,55.9700
  1097. 48.5052,55.9408
  1098. 48.4760,55.9213
  1099. 48.4416,55.9144
  1100. 47.1216,55.9144
  1101. 47.0871,55.9213
  1102. 47.0579,55.9408
  1103. 47.0384,55.9700
  1104. 47.0316,56.0044
  1105. 47.0316,56.7244
  1106. 47.0384,56.7589
  1107. 47.0579,56.7881
  1108. 47.0871,56.8076
  1109. 47.1216,56.8144
  1110. 48.4416,56.8144
  1111. 48.4760,56.8076
  1112. 48.5052,56.7881
  1113. 48.5247,56.7589
  1114. 48.5316,56.7244
  1115. Z" />
  1116. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1117. d="M 48.5316,52.7044
  1118. 48.5247,52.6700
  1119. 48.5052,52.6408
  1120. 48.4760,52.6213
  1121. 48.4416,52.6144
  1122. 47.1216,52.6144
  1123. 47.0871,52.6213
  1124. 47.0579,52.6408
  1125. 47.0384,52.6700
  1126. 47.0316,52.7044
  1127. 47.0316,53.4244
  1128. 47.0384,53.4589
  1129. 47.0579,53.4881
  1130. 47.0871,53.5076
  1131. 47.1216,53.5144
  1132. 48.4416,53.5144
  1133. 48.4760,53.5076
  1134. 48.5052,53.4881
  1135. 48.5247,53.4589
  1136. 48.5316,53.4244
  1137. Z" />
  1138. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1139. d="M 21.1016,10.6194
  1140. 21.0059,10.6385
  1141. 20.9248,10.6927
  1142. 20.8706,10.7738
  1143. 20.8516,10.8694
  1144. 20.8516,11.5694
  1145. 20.8706,11.6651
  1146. 20.9248,11.7462
  1147. 21.0059,11.8004
  1148. 21.1016,11.8194
  1149. 22.0016,11.8194
  1150. 22.0972,11.8004
  1151. 22.1783,11.7462
  1152. 22.2325,11.6651
  1153. 22.2516,11.5694
  1154. 22.2516,10.8694
  1155. 22.2325,10.7738
  1156. 22.1783,10.6927
  1157. 22.0972,10.6385
  1158. 22.0016,10.6194
  1159. Z" />
  1160. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1161. d="M 21.1016,12.6194
  1162. 21.0059,12.6385
  1163. 20.9248,12.6927
  1164. 20.8706,12.7738
  1165. 20.8516,12.8694
  1166. 20.8516,13.5694
  1167. 20.8706,13.6651
  1168. 20.9248,13.7462
  1169. 21.0059,13.8004
  1170. 21.1016,13.8194
  1171. 22.0016,13.8194
  1172. 22.0972,13.8004
  1173. 22.1783,13.7462
  1174. 22.2325,13.6651
  1175. 22.2516,13.5694
  1176. 22.2516,12.8694
  1177. 22.2325,12.7738
  1178. 22.1783,12.6927
  1179. 22.0972,12.6385
  1180. 22.0016,12.6194
  1181. Z" />
  1182. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1183. d="M 31.7391,24.9444
  1184. 31.7200,24.8488
  1185. 31.6658,24.7677
  1186. 31.5847,24.7135
  1187. 31.4891,24.6944
  1188. 30.8641,24.6944
  1189. 30.7684,24.7135
  1190. 30.6873,24.7677
  1191. 30.6331,24.8488
  1192. 30.6141,24.9444
  1193. 30.6141,26.1944
  1194. 30.6331,26.2901
  1195. 30.6873,26.3712
  1196. 30.7684,26.4254
  1197. 30.8641,26.4444
  1198. 31.4891,26.4444
  1199. 31.5847,26.4254
  1200. 31.6658,26.3712
  1201. 31.7200,26.2901
  1202. 31.7391,26.1944
  1203. Z" />
  1204. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1205. d="M 28.8141,24.9444
  1206. 28.7950,24.8488
  1207. 28.7408,24.7677
  1208. 28.6597,24.7135
  1209. 28.5641,24.6944
  1210. 27.9391,24.6944
  1211. 27.8434,24.7135
  1212. 27.7623,24.7677
  1213. 27.7081,24.8488
  1214. 27.6891,24.9444
  1215. 27.6891,26.1944
  1216. 27.7081,26.2901
  1217. 27.7623,26.3712
  1218. 27.8434,26.4254
  1219. 27.9391,26.4444
  1220. 28.5641,26.4444
  1221. 28.6597,26.4254
  1222. 28.7408,26.3712
  1223. 28.7950,26.2901
  1224. 28.8141,26.1944
  1225. Z" />
  1226. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1227. d="M 36.8516,12.1944
  1228. 36.9472,12.1754
  1229. 37.0283,12.1212
  1230. 37.0825,12.0401
  1231. 37.1016,11.9444
  1232. 37.1016,9.9444
  1233. 37.0825,9.8488
  1234. 37.0283,9.7677
  1235. 36.9472,9.7135
  1236. 36.8516,9.6944
  1237. 35.5516,9.6944
  1238. 35.4559,9.7135
  1239. 35.3748,9.7677
  1240. 35.3206,9.8488
  1241. 35.3016,9.9444
  1242. 35.3016,11.9444
  1243. 35.3206,12.0401
  1244. 35.3748,12.1212
  1245. 35.4559,12.1754
  1246. 35.5516,12.1944
  1247. Z" />
  1248. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1249. d="M 36.8516,8.1944
  1250. 36.9472,8.1754
  1251. 37.0283,8.1212
  1252. 37.0825,8.0401
  1253. 37.1016,7.9444
  1254. 37.1016,5.9444
  1255. 37.0825,5.8488
  1256. 37.0283,5.7677
  1257. 36.9472,5.7135
  1258. 36.8516,5.6944
  1259. 35.5516,5.6944
  1260. 35.4559,5.7135
  1261. 35.3748,5.7677
  1262. 35.3206,5.8488
  1263. 35.3016,5.9444
  1264. 35.3016,7.9444
  1265. 35.3206,8.0401
  1266. 35.3748,8.1212
  1267. 35.4559,8.1754
  1268. 35.5516,8.1944
  1269. Z" />
  1270. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1271. d="M 7.3516,31.5444
  1272. 7.3516,32.5444
  1273. 8.3516,32.5444
  1274. 8.3516,31.5444
  1275. Z" />
  1276. <circle cx="7.8516" cy="30.7744" r="0.5000" />
  1277. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1278. d="M 9.1016,19.4444
  1279. 9.0825,19.3488
  1280. 9.0283,19.2677
  1281. 8.9472,19.2135
  1282. 8.8516,19.1944
  1283. 6.8516,19.1944
  1284. 6.7559,19.2135
  1285. 6.6748,19.2677
  1286. 6.6206,19.3488
  1287. 6.6016,19.4444
  1288. 6.6016,20.7444
  1289. 6.6206,20.8401
  1290. 6.6748,20.9212
  1291. 6.7559,20.9754
  1292. 6.8516,20.9944
  1293. 8.8516,20.9944
  1294. 8.9472,20.9754
  1295. 9.0283,20.9212
  1296. 9.0825,20.8401
  1297. 9.1016,20.7444
  1298. Z" />
  1299. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1300. d="M 5.1016,19.4444
  1301. 5.0825,19.3488
  1302. 5.0283,19.2677
  1303. 4.9472,19.2135
  1304. 4.8516,19.1944
  1305. 2.8516,19.1944
  1306. 2.7559,19.2135
  1307. 2.6748,19.2677
  1308. 2.6206,19.3488
  1309. 2.6016,19.4444
  1310. 2.6016,20.7444
  1311. 2.6206,20.8401
  1312. 2.6748,20.9212
  1313. 2.7559,20.9754
  1314. 2.8516,20.9944
  1315. 4.8516,20.9944
  1316. 4.9472,20.9754
  1317. 5.0283,20.9212
  1318. 5.0825,20.8401
  1319. 5.1016,20.7444
  1320. Z" />
  1321. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1322. d="M 6.8266,25.2694
  1323. 6.7309,25.2885
  1324. 6.6498,25.3427
  1325. 6.5956,25.4238
  1326. 6.5766,25.5194
  1327. 6.5766,26.1444
  1328. 6.5956,26.2401
  1329. 6.6498,26.3212
  1330. 6.7309,26.3754
  1331. 6.8266,26.3944
  1332. 8.0766,26.3944
  1333. 8.1722,26.3754
  1334. 8.2533,26.3212
  1335. 8.3075,26.2401
  1336. 8.3266,26.1444
  1337. 8.3266,25.5194
  1338. 8.3075,25.4238
  1339. 8.2533,25.3427
  1340. 8.1722,25.2885
  1341. 8.0766,25.2694
  1342. Z" />
  1343. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1344. d="M 6.8266,28.1944
  1345. 6.7309,28.2135
  1346. 6.6498,28.2677
  1347. 6.5956,28.3488
  1348. 6.5766,28.4444
  1349. 6.5766,29.0694
  1350. 6.5956,29.1651
  1351. 6.6498,29.2462
  1352. 6.7309,29.3004
  1353. 6.8266,29.3194
  1354. 8.0766,29.3194
  1355. 8.1722,29.3004
  1356. 8.2533,29.2462
  1357. 8.3075,29.1651
  1358. 8.3266,29.0694
  1359. 8.3266,28.4444
  1360. 8.3075,28.3488
  1361. 8.2533,28.2677
  1362. 8.1722,28.2135
  1363. 8.0766,28.1944
  1364. Z" />
  1365. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1366. d="M 32.8766,16.7194
  1367. 32.8956,16.8151
  1368. 32.9498,16.8962
  1369. 33.0309,16.9504
  1370. 33.1266,16.9694
  1371. 33.8266,16.9694
  1372. 33.9222,16.9504
  1373. 34.0033,16.8962
  1374. 34.0575,16.8151
  1375. 34.0766,16.7194
  1376. 34.0766,15.8194
  1377. 34.0575,15.7238
  1378. 34.0033,15.6427
  1379. 33.9222,15.5885
  1380. 33.8266,15.5694
  1381. 33.1266,15.5694
  1382. 33.0309,15.5885
  1383. 32.9498,15.6427
  1384. 32.8956,15.7238
  1385. 32.8766,15.8194
  1386. Z" />
  1387. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1388. d="M 34.8766,16.7194
  1389. 34.8956,16.8151
  1390. 34.9498,16.8962
  1391. 35.0309,16.9504
  1392. 35.1266,16.9694
  1393. 35.8266,16.9694
  1394. 35.9222,16.9504
  1395. 36.0033,16.8962
  1396. 36.0575,16.8151
  1397. 36.0766,16.7194
  1398. 36.0766,15.8194
  1399. 36.0575,15.7238
  1400. 36.0033,15.6427
  1401. 35.9222,15.5885
  1402. 35.8266,15.5694
  1403. 35.1266,15.5694
  1404. 35.0309,15.5885
  1405. 34.9498,15.6427
  1406. 34.8956,15.7238
  1407. 34.8766,15.8194
  1408. Z" />
  1409. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1410. d="M 49.5141,10.4569
  1411. 49.5331,10.5526
  1412. 49.5873,10.6337
  1413. 49.6684,10.6879
  1414. 49.7641,10.7069
  1415. 50.4391,10.7069
  1416. 50.5347,10.6879
  1417. 50.6158,10.6337
  1418. 50.6700,10.5526
  1419. 50.6891,10.4569
  1420. 50.6891,9.5069
  1421. 50.6700,9.4113
  1422. 50.6158,9.3302
  1423. 50.5347,9.2760
  1424. 50.4391,9.2569
  1425. 49.7641,9.2569
  1426. 49.6684,9.2760
  1427. 49.5873,9.3302
  1428. 49.5331,9.4113
  1429. 49.5141,9.5069
  1430. Z" />
  1431. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1432. d="M 51.5891,10.4569
  1433. 51.6081,10.5526
  1434. 51.6623,10.6337
  1435. 51.7434,10.6879
  1436. 51.8391,10.7069
  1437. 52.5141,10.7069
  1438. 52.6097,10.6879
  1439. 52.6908,10.6337
  1440. 52.7450,10.5526
  1441. 52.7641,10.4569
  1442. 52.7641,9.5069
  1443. 52.7450,9.4113
  1444. 52.6908,9.3302
  1445. 52.6097,9.2760
  1446. 52.5141,9.2569
  1447. 51.8391,9.2569
  1448. 51.7434,9.2760
  1449. 51.6623,9.3302
  1450. 51.6081,9.4113
  1451. 51.5891,9.5069
  1452. Z" />
  1453. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1454. d="M 24.2891,24.0694
  1455. 24.3081,24.1651
  1456. 24.3623,24.2462
  1457. 24.4434,24.3004
  1458. 24.5391,24.3194
  1459. 25.0641,24.3194
  1460. 25.1597,24.3004
  1461. 25.2408,24.2462
  1462. 25.2950,24.1651
  1463. 25.3141,24.0694
  1464. 25.3141,23.1694
  1465. 25.2950,23.0738
  1466. 25.2408,22.9927
  1467. 25.1597,22.9385
  1468. 25.0641,22.9194
  1469. 24.5391,22.9194
  1470. 24.4434,22.9385
  1471. 24.3623,22.9927
  1472. 24.3081,23.0738
  1473. 24.2891,23.1694
  1474. Z" />
  1475. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1476. d="M 26.1141,24.0694
  1477. 26.1331,24.1651
  1478. 26.1873,24.2462
  1479. 26.2684,24.3004
  1480. 26.3641,24.3194
  1481. 26.8891,24.3194
  1482. 26.9847,24.3004
  1483. 27.0658,24.2462
  1484. 27.1200,24.1651
  1485. 27.1391,24.0694
  1486. 27.1391,23.1694
  1487. 27.1200,23.0738
  1488. 27.0658,22.9927
  1489. 26.9847,22.9385
  1490. 26.8891,22.9194
  1491. 26.3641,22.9194
  1492. 26.2684,22.9385
  1493. 26.1873,22.9927
  1494. 26.1331,23.0738
  1495. 26.1141,23.1694
  1496. Z" />
  1497. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1498. d="M 29.0016,41.7644
  1499. 29.0016,40.0644
  1500. 27.3016,40.0644
  1501. 27.3016,41.7644
  1502. Z" />
  1503. <circle cx="28.1516" cy="43.4544" r="0.8500" />
  1504. <circle cx="28.1516" cy="45.9944" r="0.8500" />
  1505. <circle cx="28.1516" cy="48.5344" r="0.8500" />
  1506. <circle cx="1.8016" cy="5.5444" r="0.5000" />
  1507. <circle cx="42.0016" cy="49.3444" r="0.5000" />
  1508. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1509. d="M 16.2266,52.2944
  1510. 16.2075,52.1988
  1511. 16.1533,52.1177
  1512. 16.0722,52.0635
  1513. 15.9766,52.0444
  1514. 15.3266,52.0444
  1515. 15.2309,52.0635
  1516. 15.1498,52.1177
  1517. 15.0956,52.1988
  1518. 15.0766,52.2944
  1519. 15.0766,53.5944
  1520. 15.0956,53.6901
  1521. 15.1498,53.7712
  1522. 15.2309,53.8254
  1523. 15.3266,53.8444
  1524. 15.9766,53.8444
  1525. 16.0722,53.8254
  1526. 16.1533,53.7712
  1527. 16.2075,53.6901
  1528. 16.2266,53.5944
  1529. Z" />
  1530. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1531. d="M 13.2766,52.2944
  1532. 13.2575,52.1988
  1533. 13.2033,52.1177
  1534. 13.1222,52.0635
  1535. 13.0266,52.0444
  1536. 12.3766,52.0444
  1537. 12.2809,52.0635
  1538. 12.1998,52.1177
  1539. 12.1456,52.1988
  1540. 12.1266,52.2944
  1541. 12.1266,53.5944
  1542. 12.1456,53.6901
  1543. 12.1998,53.7712
  1544. 12.2809,53.8254
  1545. 12.3766,53.8444
  1546. 13.0266,53.8444
  1547. 13.1222,53.8254
  1548. 13.2033,53.7712
  1549. 13.2575,53.6901
  1550. 13.2766,53.5944
  1551. Z" />
  1552. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1553. d="M 45.2516,59.1944
  1554. 45.3472,59.1754
  1555. 45.4283,59.1212
  1556. 45.4825,59.0401
  1557. 45.5016,58.9444
  1558. 45.5016,56.9444
  1559. 45.4825,56.8488
  1560. 45.4283,56.7677
  1561. 45.3472,56.7135
  1562. 45.2516,56.6944
  1563. 43.9516,56.6944
  1564. 43.8559,56.7135
  1565. 43.7748,56.7677
  1566. 43.7206,56.8488
  1567. 43.7016,56.9444
  1568. 43.7016,58.9444
  1569. 43.7206,59.0401
  1570. 43.7748,59.1212
  1571. 43.8559,59.1754
  1572. 43.9516,59.1944
  1573. Z" />
  1574. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1575. d="M 45.2516,55.1944
  1576. 45.3472,55.1754
  1577. 45.4283,55.1212
  1578. 45.4825,55.0401
  1579. 45.5016,54.9444
  1580. 45.5016,52.9444
  1581. 45.4825,52.8488
  1582. 45.4283,52.7677
  1583. 45.3472,52.7135
  1584. 45.2516,52.6944
  1585. 43.9516,52.6944
  1586. 43.8559,52.7135
  1587. 43.7748,52.7677
  1588. 43.7206,52.8488
  1589. 43.7016,52.9444
  1590. 43.7016,54.9444
  1591. 43.7206,55.0401
  1592. 43.7748,55.1212
  1593. 43.8559,55.1754
  1594. 43.9516,55.1944
  1595. Z" />
  1596. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1597. d="M 42.1816,55.1244
  1598. 42.1625,55.0288
  1599. 42.1083,54.9477
  1600. 42.0272,54.8935
  1601. 41.9316,54.8744
  1602. 39.9316,54.8744
  1603. 39.8359,54.8935
  1604. 39.7548,54.9477
  1605. 39.7006,55.0288
  1606. 39.6816,55.1244
  1607. 39.6816,56.4244
  1608. 39.7006,56.5201
  1609. 39.7548,56.6012
  1610. 39.8359,56.6554
  1611. 39.9316,56.6744
  1612. 41.9316,56.6744
  1613. 42.0272,56.6554
  1614. 42.1083,56.6012
  1615. 42.1625,56.5201
  1616. 42.1816,56.4244
  1617. Z" />
  1618. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1619. d="M 38.1816,55.1244
  1620. 38.1625,55.0288
  1621. 38.1083,54.9477
  1622. 38.0272,54.8935
  1623. 37.9316,54.8744
  1624. 35.9316,54.8744
  1625. 35.8359,54.8935
  1626. 35.7548,54.9477
  1627. 35.7006,55.0288
  1628. 35.6816,55.1244
  1629. 35.6816,56.4244
  1630. 35.7006,56.5201
  1631. 35.7548,56.6012
  1632. 35.8359,56.6554
  1633. 35.9316,56.6744
  1634. 37.9316,56.6744
  1635. 38.0272,56.6554
  1636. 38.1083,56.6012
  1637. 38.1625,56.5201
  1638. 38.1816,56.4244
  1639. Z" />
  1640. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1641. d="M 36.6166,49.8019
  1642. 36.6289,49.8641
  1643. 36.6641,49.9168
  1644. 36.7169,49.9521
  1645. 36.7791,49.9644
  1646. 37.6741,49.9644
  1647. 37.7362,49.9521
  1648. 37.7890,49.9168
  1649. 37.8242,49.8641
  1650. 37.8366,49.8019
  1651. 37.8366,49.4769
  1652. 37.8242,49.4148
  1653. 37.7890,49.3620
  1654. 37.7362,49.3268
  1655. 37.6741,49.3144
  1656. 36.7791,49.3144
  1657. 36.7169,49.3268
  1658. 36.6641,49.3620
  1659. 36.6289,49.4148
  1660. 36.6166,49.4769
  1661. Z" />
  1662. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1663. d="M 36.6166,47.9019
  1664. 36.6289,47.9641
  1665. 36.6641,48.0168
  1666. 36.7169,48.0521
  1667. 36.7791,48.0644
  1668. 37.6741,48.0644
  1669. 37.7362,48.0521
  1670. 37.7890,48.0168
  1671. 37.8242,47.9641
  1672. 37.8366,47.9019
  1673. 37.8366,47.5769
  1674. 37.8242,47.5148
  1675. 37.7890,47.4620
  1676. 37.7362,47.4268
  1677. 37.6741,47.4144
  1678. 36.7791,47.4144
  1679. 36.7169,47.4268
  1680. 36.6641,47.4620
  1681. 36.6289,47.5148
  1682. 36.6166,47.5769
  1683. Z" />
  1684. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1685. d="M 39.2366,48.8519
  1686. 39.2489,48.9141
  1687. 39.2841,48.9668
  1688. 39.3369,49.0021
  1689. 39.3991,49.0144
  1690. 40.2941,49.0144
  1691. 40.3562,49.0021
  1692. 40.4090,48.9668
  1693. 40.4442,48.9141
  1694. 40.4566,48.8519
  1695. 40.4566,48.5269
  1696. 40.4442,48.4648
  1697. 40.4090,48.4120
  1698. 40.3562,48.3768
  1699. 40.2941,48.3644
  1700. 39.3991,48.3644
  1701. 39.3369,48.3768
  1702. 39.2841,48.4120
  1703. 39.2489,48.4648
  1704. 39.2366,48.5269
  1705. Z" />
  1706. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1707. d="M 19.1516,10.6194
  1708. 19.0559,10.6385
  1709. 18.9748,10.6927
  1710. 18.9206,10.7738
  1711. 18.9016,10.8694
  1712. 18.9016,11.5694
  1713. 18.9206,11.6651
  1714. 18.9748,11.7462
  1715. 19.0559,11.8004
  1716. 19.1516,11.8194
  1717. 20.0516,11.8194
  1718. 20.1472,11.8004
  1719. 20.2283,11.7462
  1720. 20.2825,11.6651
  1721. 20.3016,11.5694
  1722. 20.3016,10.8694
  1723. 20.2825,10.7738
  1724. 20.2283,10.6927
  1725. 20.1472,10.6385
  1726. 20.0516,10.6194
  1727. Z" />
  1728. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1729. d="M 19.1516,12.6194
  1730. 19.0559,12.6385
  1731. 18.9748,12.6927
  1732. 18.9206,12.7738
  1733. 18.9016,12.8694
  1734. 18.9016,13.5694
  1735. 18.9206,13.6651
  1736. 18.9748,13.7462
  1737. 19.0559,13.8004
  1738. 19.1516,13.8194
  1739. 20.0516,13.8194
  1740. 20.1472,13.8004
  1741. 20.2283,13.7462
  1742. 20.2825,13.6651
  1743. 20.3016,13.5694
  1744. 20.3016,12.8694
  1745. 20.2825,12.7738
  1746. 20.2283,12.6927
  1747. 20.1472,12.6385
  1748. 20.0516,12.6194
  1749. Z" />
  1750. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1751. d="M 51.5516,21.2069
  1752. 51.4559,21.2260
  1753. 51.3748,21.2802
  1754. 51.3206,21.3613
  1755. 51.3016,21.4569
  1756. 51.3016,22.1319
  1757. 51.3206,22.2276
  1758. 51.3748,22.3087
  1759. 51.4559,22.3629
  1760. 51.5516,22.3819
  1761. 52.5016,22.3819
  1762. 52.5972,22.3629
  1763. 52.6783,22.3087
  1764. 52.7325,22.2276
  1765. 52.7516,22.1319
  1766. 52.7516,21.4569
  1767. 52.7325,21.3613
  1768. 52.6783,21.2802
  1769. 52.5972,21.2260
  1770. 52.5016,21.2069
  1771. Z" />
  1772. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1773. d="M 51.5516,23.2819
  1774. 51.4559,23.3010
  1775. 51.3748,23.3552
  1776. 51.3206,23.4363
  1777. 51.3016,23.5319
  1778. 51.3016,24.2069
  1779. 51.3206,24.3026
  1780. 51.3748,24.3837
  1781. 51.4559,24.4379
  1782. 51.5516,24.4569
  1783. 52.5016,24.4569
  1784. 52.5972,24.4379
  1785. 52.6783,24.3837
  1786. 52.7325,24.3026
  1787. 52.7516,24.2069
  1788. 52.7516,23.5319
  1789. 52.7325,23.4363
  1790. 52.6783,23.3552
  1791. 52.5972,23.3010
  1792. 52.5016,23.2819
  1793. Z" />
  1794. <circle cx="33.3766" cy="20.9694" r="0.5000" />
  1795. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1796. d="M 9.5516,49.5194
  1797. 9.5325,49.4238
  1798. 9.4783,49.3427
  1799. 9.3972,49.2885
  1800. 9.3016,49.2694
  1801. 8.6016,49.2694
  1802. 8.5059,49.2885
  1803. 8.4248,49.3427
  1804. 8.3706,49.4238
  1805. 8.3516,49.5194
  1806. 8.3516,50.4194
  1807. 8.3706,50.5151
  1808. 8.4248,50.5962
  1809. 8.5059,50.6504
  1810. 8.6016,50.6694
  1811. 9.3016,50.6694
  1812. 9.3972,50.6504
  1813. 9.4783,50.5962
  1814. 9.5325,50.5151
  1815. 9.5516,50.4194
  1816. Z" />
  1817. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1818. d="M 7.5516,49.5194
  1819. 7.5325,49.4238
  1820. 7.4783,49.3427
  1821. 7.3972,49.2885
  1822. 7.3016,49.2694
  1823. 6.6016,49.2694
  1824. 6.5059,49.2885
  1825. 6.4248,49.3427
  1826. 6.3706,49.4238
  1827. 6.3516,49.5194
  1828. 6.3516,50.4194
  1829. 6.3706,50.5151
  1830. 6.4248,50.5962
  1831. 6.5059,50.6504
  1832. 6.6016,50.6694
  1833. 7.3016,50.6694
  1834. 7.3972,50.6504
  1835. 7.4783,50.5962
  1836. 7.5325,50.5151
  1837. 7.5516,50.4194
  1838. Z" />
  1839. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1840. d="M 19.1516,34.5444
  1841. 19.0559,34.5635
  1842. 18.9748,34.6177
  1843. 18.9206,34.6988
  1844. 18.9016,34.7944
  1845. 18.9016,35.4944
  1846. 18.9206,35.5901
  1847. 18.9748,35.6712
  1848. 19.0559,35.7254
  1849. 19.1516,35.7444
  1850. 20.0516,35.7444
  1851. 20.1472,35.7254
  1852. 20.2283,35.6712
  1853. 20.2825,35.5901
  1854. 20.3016,35.4944
  1855. 20.3016,34.7944
  1856. 20.2825,34.6988
  1857. 20.2283,34.6177
  1858. 20.1472,34.5635
  1859. 20.0516,34.5444
  1860. Z" />
  1861. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1862. d="M 19.1516,36.5444
  1863. 19.0559,36.5635
  1864. 18.9748,36.6177
  1865. 18.9206,36.6988
  1866. 18.9016,36.7944
  1867. 18.9016,37.4944
  1868. 18.9206,37.5901
  1869. 18.9748,37.6712
  1870. 19.0559,37.7254
  1871. 19.1516,37.7444
  1872. 20.0516,37.7444
  1873. 20.1472,37.7254
  1874. 20.2283,37.6712
  1875. 20.2825,37.5901
  1876. 20.3016,37.4944
  1877. 20.3016,36.7944
  1878. 20.2825,36.6988
  1879. 20.2283,36.6177
  1880. 20.1472,36.5635
  1881. 20.0516,36.5444
  1882. Z" />
  1883. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1884. d="M 6.5516,23.8194
  1885. 6.5420,23.7716
  1886. 6.5149,23.7310
  1887. 6.4744,23.7040
  1888. 6.4266,23.6944
  1889. 6.1766,23.6944
  1890. 6.1287,23.7040
  1891. 6.0882,23.7310
  1892. 6.0611,23.7716
  1893. 6.0516,23.8194
  1894. 6.0516,24.0694
  1895. 6.0611,24.1173
  1896. 6.0882,24.1578
  1897. 6.1287,24.1849
  1898. 6.1766,24.1944
  1899. 6.4266,24.1944
  1900. 6.4744,24.1849
  1901. 6.5149,24.1578
  1902. 6.5420,24.1173
  1903. 6.5516,24.0694
  1904. Z" />
  1905. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1906. d="M 4.3516,23.8194
  1907. 4.3420,23.7716
  1908. 4.3149,23.7310
  1909. 4.2744,23.7040
  1910. 4.2266,23.6944
  1911. 3.9766,23.6944
  1912. 3.9287,23.7040
  1913. 3.8882,23.7310
  1914. 3.8611,23.7716
  1915. 3.8516,23.8194
  1916. 3.8516,24.0694
  1917. 3.8611,24.1173
  1918. 3.8882,24.1578
  1919. 3.9287,24.1849
  1920. 3.9766,24.1944
  1921. 4.2266,24.1944
  1922. 4.2744,24.1849
  1923. 4.3149,24.1578
  1924. 4.3420,24.1173
  1925. 4.3516,24.0694
  1926. Z" />
  1927. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1928. d="M 23.7266,50.0444
  1929. 23.6309,50.0635
  1930. 23.5498,50.1177
  1931. 23.4956,50.1988
  1932. 23.4766,50.2944
  1933. 23.4766,51.0444
  1934. 23.4956,51.1401
  1935. 23.5498,51.2212
  1936. 23.6309,51.2754
  1937. 23.7266,51.2944
  1938. 24.9766,51.2944
  1939. 25.0722,51.2754
  1940. 25.1533,51.2212
  1941. 25.2075,51.1401
  1942. 25.2266,51.0444
  1943. 25.2266,50.2944
  1944. 25.2075,50.1988
  1945. 25.1533,50.1177
  1946. 25.0722,50.0635
  1947. 24.9766,50.0444
  1948. Z" />
  1949. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1950. d="M 23.7266,52.8444
  1951. 23.6309,52.8635
  1952. 23.5498,52.9177
  1953. 23.4956,52.9988
  1954. 23.4766,53.0944
  1955. 23.4766,53.8444
  1956. 23.4956,53.9401
  1957. 23.5498,54.0212
  1958. 23.6309,54.0754
  1959. 23.7266,54.0944
  1960. 24.9766,54.0944
  1961. 25.0722,54.0754
  1962. 25.1533,54.0212
  1963. 25.2075,53.9401
  1964. 25.2266,53.8444
  1965. 25.2266,53.0944
  1966. 25.2075,52.9988
  1967. 25.1533,52.9177
  1968. 25.0722,52.8635
  1969. 24.9766,52.8444
  1970. Z" />
  1971. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  1972. d="M 39.8116,53.0544
  1973. 41.5116,53.0544
  1974. 41.5116,51.3544
  1975. 39.8116,51.3544
  1976. Z" />
  1977. <circle cx="38.1216" cy="52.2044" r="0.8500" />
  1978. </g>
  1979. <g style="fill:none;
  1980. stroke:#000000; stroke-width:1.5000; stroke-opacity:1;
  1981. stroke-linecap:round; stroke-linejoin:round;">
  1982. <path d="M31.1166 19.1694
  1983. L31.1166 19.6694
  1984. " />
  1985. <path d="M28.5766 19.1694
  1986. L28.5766 19.6694
  1987. " />
  1988. <path d="M26.0366 19.1694
  1989. L26.0366 19.6694
  1990. " />
  1991. <path d="M23.4966 19.1694
  1992. L23.4966 19.6694
  1993. " />
  1994. <path d="M20.9566 19.1694
  1995. L20.9566 19.6694
  1996. " />
  1997. <path d="M18.4166 19.1694
  1998. L18.4166 19.6694
  1999. " />
  2000. <path d="M15.8766 19.1694
  2001. L15.8766 19.6694
  2002. " />
  2003. <path d="M18.4166 9.0094
  2004. L18.4166 9.5094
  2005. " />
  2006. <path d="M20.9566 9.0094
  2007. L20.9566 9.5094
  2008. " />
  2009. <path d="M23.4966 9.0094
  2010. L23.4966 9.5094
  2011. " />
  2012. <path d="M26.0366 9.0094
  2013. L26.0366 9.5094
  2014. " />
  2015. <path d="M28.5766 9.0094
  2016. L28.5766 9.5094
  2017. " />
  2018. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2019. d="M 3.0016,12.3319
  2020. 2.9059,12.3510
  2021. 2.8248,12.4052
  2022. 2.7706,12.4863
  2023. 2.7516,12.5819
  2024. 2.7516,13.2569
  2025. 2.7706,13.3526
  2026. 2.8248,13.4337
  2027. 2.9059,13.4879
  2028. 3.0016,13.5069
  2029. 3.9516,13.5069
  2030. 4.0472,13.4879
  2031. 4.1283,13.4337
  2032. 4.1825,13.3526
  2033. 4.2016,13.2569
  2034. 4.2016,12.5819
  2035. 4.1825,12.4863
  2036. 4.1283,12.4052
  2037. 4.0472,12.3510
  2038. 3.9516,12.3319
  2039. Z" />
  2040. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2041. d="M 3.0016,14.4069
  2042. 2.9059,14.4260
  2043. 2.8248,14.4802
  2044. 2.7706,14.5613
  2045. 2.7516,14.6569
  2046. 2.7516,15.3319
  2047. 2.7706,15.4276
  2048. 2.8248,15.5087
  2049. 2.9059,15.5629
  2050. 3.0016,15.5819
  2051. 3.9516,15.5819
  2052. 4.0472,15.5629
  2053. 4.1283,15.5087
  2054. 4.1825,15.4276
  2055. 4.2016,15.3319
  2056. 4.2016,14.6569
  2057. 4.1825,14.5613
  2058. 4.1283,14.4802
  2059. 4.0472,14.4260
  2060. 3.9516,14.4069
  2061. Z" />
  2062. </g>
  2063. <g style="fill:#000000; fill-opacity:1.0000; stroke:none;">
  2064. <circle cx="21.7966" cy="50.7094" r="0.8000" />
  2065. <circle cx="19.2566" cy="50.7094" r="0.8000" />
  2066. <circle cx="16.7166" cy="50.7094" r="0.8000" />
  2067. <circle cx="14.1766" cy="50.7094" r="0.8000" />
  2068. <circle cx="14.1766" cy="48.1694" r="0.8000" />
  2069. <circle cx="16.7166" cy="48.1694" r="0.8000" />
  2070. <circle cx="19.2566" cy="48.1694" r="0.8000" />
  2071. <circle cx="21.7966" cy="48.1694" r="0.8000" />
  2072. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2073. d="M 43.5516,25.8344
  2074. 43.5516,27.5344
  2075. 45.2516,27.5344
  2076. 45.2516,25.8344
  2077. Z" />
  2078. <circle cx="44.4016" cy="24.1444" r="0.8500" />
  2079. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2080. d="M 33.8766,29.6444
  2081. 33.9722,29.6254
  2082. 34.0533,29.5712
  2083. 34.1075,29.4901
  2084. 34.1266,29.3944
  2085. 34.1266,28.6944
  2086. 34.1075,28.5988
  2087. 34.0533,28.5177
  2088. 33.9722,28.4635
  2089. 33.8766,28.4444
  2090. 32.9766,28.4444
  2091. 32.8809,28.4635
  2092. 32.7998,28.5177
  2093. 32.7456,28.5988
  2094. 32.7266,28.6944
  2095. 32.7266,29.3944
  2096. 32.7456,29.4901
  2097. 32.7998,29.5712
  2098. 32.8809,29.6254
  2099. 32.9766,29.6444
  2100. Z" />
  2101. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2102. d="M 33.8766,27.6444
  2103. 33.9722,27.6254
  2104. 34.0533,27.5712
  2105. 34.1075,27.4901
  2106. 34.1266,27.3944
  2107. 34.1266,26.6944
  2108. 34.1075,26.5988
  2109. 34.0533,26.5177
  2110. 33.9722,26.4635
  2111. 33.8766,26.4444
  2112. 32.9766,26.4444
  2113. 32.8809,26.4635
  2114. 32.7998,26.5177
  2115. 32.7456,26.5988
  2116. 32.7266,26.6944
  2117. 32.7266,27.3944
  2118. 32.7456,27.4901
  2119. 32.7998,27.5712
  2120. 32.8809,27.6254
  2121. 32.9766,27.6444
  2122. Z" />
  2123. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2124. d="M 12.0766,31.7069
  2125. 12.1722,31.6879
  2126. 12.2533,31.6337
  2127. 12.3075,31.5526
  2128. 12.3266,31.4569
  2129. 12.3266,30.7819
  2130. 12.3075,30.6863
  2131. 12.2533,30.6052
  2132. 12.1722,30.5510
  2133. 12.0766,30.5319
  2134. 11.1266,30.5319
  2135. 11.0309,30.5510
  2136. 10.9498,30.6052
  2137. 10.8956,30.6863
  2138. 10.8766,30.7819
  2139. 10.8766,31.4569
  2140. 10.8956,31.5526
  2141. 10.9498,31.6337
  2142. 11.0309,31.6879
  2143. 11.1266,31.7069
  2144. Z" />
  2145. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2146. d="M 12.0766,29.6319
  2147. 12.1722,29.6129
  2148. 12.2533,29.5587
  2149. 12.3075,29.4776
  2150. 12.3266,29.3819
  2151. 12.3266,28.7069
  2152. 12.3075,28.6113
  2153. 12.2533,28.5302
  2154. 12.1722,28.4760
  2155. 12.0766,28.4569
  2156. 11.1266,28.4569
  2157. 11.0309,28.4760
  2158. 10.9498,28.5302
  2159. 10.8956,28.6113
  2160. 10.8766,28.7069
  2161. 10.8766,29.3819
  2162. 10.8956,29.4776
  2163. 10.9498,29.5587
  2164. 11.0309,29.6129
  2165. 11.1266,29.6319
  2166. Z" />
  2167. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2168. d="M 47.5766,22.4944
  2169. 47.4809,22.5135
  2170. 47.3998,22.5677
  2171. 47.3456,22.6488
  2172. 47.3266,22.7444
  2173. 47.3266,23.4194
  2174. 47.3456,23.5151
  2175. 47.3998,23.5962
  2176. 47.4809,23.6504
  2177. 47.5766,23.6694
  2178. 48.5266,23.6694
  2179. 48.6222,23.6504
  2180. 48.7033,23.5962
  2181. 48.7575,23.5151
  2182. 48.7766,23.4194
  2183. 48.7766,22.7444
  2184. 48.7575,22.6488
  2185. 48.7033,22.5677
  2186. 48.6222,22.5135
  2187. 48.5266,22.4944
  2188. Z" />
  2189. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2190. d="M 47.5766,24.5694
  2191. 47.4809,24.5885
  2192. 47.3998,24.6427
  2193. 47.3456,24.7238
  2194. 47.3266,24.8194
  2195. 47.3266,25.4944
  2196. 47.3456,25.5901
  2197. 47.3998,25.6712
  2198. 47.4809,25.7254
  2199. 47.5766,25.7444
  2200. 48.5266,25.7444
  2201. 48.6222,25.7254
  2202. 48.7033,25.6712
  2203. 48.7575,25.5901
  2204. 48.7766,25.4944
  2205. 48.7766,24.8194
  2206. 48.7575,24.7238
  2207. 48.7033,24.6427
  2208. 48.6222,24.5885
  2209. 48.5266,24.5694
  2210. Z" />
  2211. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2212. d="M 22.6016,56.8944
  2213. 22.6168,56.9710
  2214. 22.6601,57.0359
  2215. 22.7250,57.0792
  2216. 22.8016,57.0944
  2217. 23.2016,57.0944
  2218. 23.2781,57.0792
  2219. 23.3430,57.0359
  2220. 23.3863,56.9710
  2221. 23.4016,56.8944
  2222. 23.4016,55.2944
  2223. 23.3863,55.2179
  2224. 23.3430,55.1530
  2225. 23.2781,55.1097
  2226. 23.2016,55.0944
  2227. 22.8016,55.0944
  2228. 22.7250,55.1097
  2229. 22.6601,55.1530
  2230. 22.6168,55.2179
  2231. 22.6016,55.2944
  2232. Z" />
  2233. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2234. d="M 26.8016,56.8944
  2235. 26.8168,56.9710
  2236. 26.8601,57.0359
  2237. 26.9250,57.0792
  2238. 27.0016,57.0944
  2239. 27.4016,57.0944
  2240. 27.4781,57.0792
  2241. 27.5430,57.0359
  2242. 27.5863,56.9710
  2243. 27.6016,56.8944
  2244. 27.6016,55.2944
  2245. 27.5863,55.2179
  2246. 27.5430,55.1530
  2247. 27.4781,55.1097
  2248. 27.4016,55.0944
  2249. 27.0016,55.0944
  2250. 26.9250,55.1097
  2251. 26.8601,55.1530
  2252. 26.8168,55.2179
  2253. 26.8016,55.2944
  2254. Z" />
  2255. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2256. d="M 49.5516,14.3569
  2257. 49.5706,14.4526
  2258. 49.6248,14.5337
  2259. 49.7059,14.5879
  2260. 49.8016,14.6069
  2261. 50.3266,14.6069
  2262. 50.4222,14.5879
  2263. 50.5033,14.5337
  2264. 50.5575,14.4526
  2265. 50.5766,14.3569
  2266. 50.5766,13.4569
  2267. 50.5575,13.3613
  2268. 50.5033,13.2802
  2269. 50.4222,13.2260
  2270. 50.3266,13.2069
  2271. 49.8016,13.2069
  2272. 49.7059,13.2260
  2273. 49.6248,13.2802
  2274. 49.5706,13.3613
  2275. 49.5516,13.4569
  2276. Z" />
  2277. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2278. d="M 51.3766,14.3569
  2279. 51.3956,14.4526
  2280. 51.4498,14.5337
  2281. 51.5309,14.5879
  2282. 51.6266,14.6069
  2283. 52.1516,14.6069
  2284. 52.2472,14.5879
  2285. 52.3283,14.5337
  2286. 52.3825,14.4526
  2287. 52.4016,14.3569
  2288. 52.4016,13.4569
  2289. 52.3825,13.3613
  2290. 52.3283,13.2802
  2291. 52.2472,13.2260
  2292. 52.1516,13.2069
  2293. 51.6266,13.2069
  2294. 51.5309,13.2260
  2295. 51.4498,13.2802
  2296. 51.3956,13.3613
  2297. 51.3766,13.4569
  2298. Z" />
  2299. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2300. d="M 49.5516,21.2069
  2301. 49.4559,21.2260
  2302. 49.3748,21.2802
  2303. 49.3206,21.3613
  2304. 49.3016,21.4569
  2305. 49.3016,22.1319
  2306. 49.3206,22.2276
  2307. 49.3748,22.3087
  2308. 49.4559,22.3629
  2309. 49.5516,22.3819
  2310. 50.5016,22.3819
  2311. 50.5972,22.3629
  2312. 50.6783,22.3087
  2313. 50.7325,22.2276
  2314. 50.7516,22.1319
  2315. 50.7516,21.4569
  2316. 50.7325,21.3613
  2317. 50.6783,21.2802
  2318. 50.5972,21.2260
  2319. 50.5016,21.2069
  2320. Z" />
  2321. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2322. d="M 49.5516,23.2819
  2323. 49.4559,23.3010
  2324. 49.3748,23.3552
  2325. 49.3206,23.4363
  2326. 49.3016,23.5319
  2327. 49.3016,24.2069
  2328. 49.3206,24.3026
  2329. 49.3748,24.3837
  2330. 49.4559,24.4379
  2331. 49.5516,24.4569
  2332. 50.5016,24.4569
  2333. 50.5972,24.4379
  2334. 50.6783,24.3837
  2335. 50.7325,24.3026
  2336. 50.7516,24.2069
  2337. 50.7516,23.5319
  2338. 50.7325,23.4363
  2339. 50.6783,23.3552
  2340. 50.5972,23.3010
  2341. 50.5016,23.2819
  2342. Z" />
  2343. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2344. d="M 21.1016,14.8444
  2345. 21.0059,14.8635
  2346. 20.9248,14.9177
  2347. 20.8706,14.9988
  2348. 20.8516,15.0944
  2349. 20.8516,15.7944
  2350. 20.8706,15.8901
  2351. 20.9248,15.9712
  2352. 21.0059,16.0254
  2353. 21.1016,16.0444
  2354. 22.0016,16.0444
  2355. 22.0972,16.0254
  2356. 22.1783,15.9712
  2357. 22.2325,15.8901
  2358. 22.2516,15.7944
  2359. 22.2516,15.0944
  2360. 22.2325,14.9988
  2361. 22.1783,14.9177
  2362. 22.0972,14.8635
  2363. 22.0016,14.8444
  2364. Z" />
  2365. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2366. d="M 21.1016,16.8444
  2367. 21.0059,16.8635
  2368. 20.9248,16.9177
  2369. 20.8706,16.9988
  2370. 20.8516,17.0944
  2371. 20.8516,17.7944
  2372. 20.8706,17.8901
  2373. 20.9248,17.9712
  2374. 21.0059,18.0254
  2375. 21.1016,18.0444
  2376. 22.0016,18.0444
  2377. 22.0972,18.0254
  2378. 22.1783,17.9712
  2379. 22.2325,17.8901
  2380. 22.2516,17.7944
  2381. 22.2516,17.0944
  2382. 22.2325,16.9988
  2383. 22.1783,16.9177
  2384. 22.0972,16.8635
  2385. 22.0016,16.8444
  2386. Z" />
  2387. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2388. d="M 36.6016,28.6994
  2389. 36.6139,28.7616
  2390. 36.6491,28.8143
  2391. 36.7019,28.8496
  2392. 36.7641,28.8619
  2393. 37.6591,28.8619
  2394. 37.7212,28.8496
  2395. 37.7740,28.8143
  2396. 37.8092,28.7616
  2397. 37.8216,28.6994
  2398. 37.8216,28.3744
  2399. 37.8092,28.3123
  2400. 37.7740,28.2595
  2401. 37.7212,28.2243
  2402. 37.6591,28.2119
  2403. 36.7641,28.2119
  2404. 36.7019,28.2243
  2405. 36.6491,28.2595
  2406. 36.6139,28.3123
  2407. 36.6016,28.3744
  2408. Z" />
  2409. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2410. d="M 36.6016,26.7994
  2411. 36.6139,26.8616
  2412. 36.6491,26.9143
  2413. 36.7019,26.9496
  2414. 36.7641,26.9619
  2415. 37.6591,26.9619
  2416. 37.7212,26.9496
  2417. 37.7740,26.9143
  2418. 37.8092,26.8616
  2419. 37.8216,26.7994
  2420. 37.8216,26.4744
  2421. 37.8092,26.4123
  2422. 37.7740,26.3595
  2423. 37.7212,26.3243
  2424. 37.6591,26.3119
  2425. 36.7641,26.3119
  2426. 36.7019,26.3243
  2427. 36.6491,26.3595
  2428. 36.6139,26.4123
  2429. 36.6016,26.4744
  2430. Z" />
  2431. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2432. d="M 39.2216,27.7494
  2433. 39.2339,27.8116
  2434. 39.2691,27.8643
  2435. 39.3219,27.8996
  2436. 39.3841,27.9119
  2437. 40.2791,27.9119
  2438. 40.3412,27.8996
  2439. 40.3940,27.8643
  2440. 40.4292,27.8116
  2441. 40.4416,27.7494
  2442. 40.4416,27.4244
  2443. 40.4292,27.3623
  2444. 40.3940,27.3095
  2445. 40.3412,27.2743
  2446. 40.2791,27.2619
  2447. 39.3841,27.2619
  2448. 39.3219,27.2743
  2449. 39.2691,27.3095
  2450. 39.2339,27.3623
  2451. 39.2216,27.4244
  2452. Z" />
  2453. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2454. d="M 4.7516,7.4944
  2455. 4.7706,7.5901
  2456. 4.8248,7.6712
  2457. 4.9059,7.7254
  2458. 5.0016,7.7444
  2459. 7.0016,7.7444
  2460. 7.0972,7.7254
  2461. 7.1783,7.6712
  2462. 7.2325,7.5901
  2463. 7.2516,7.4944
  2464. 7.2516,6.1944
  2465. 7.2325,6.0988
  2466. 7.1783,6.0177
  2467. 7.0972,5.9635
  2468. 7.0016,5.9444
  2469. 5.0016,5.9444
  2470. 4.9059,5.9635
  2471. 4.8248,6.0177
  2472. 4.7706,6.0988
  2473. 4.7516,6.1944
  2474. Z" />
  2475. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2476. d="M 8.7516,7.4944
  2477. 8.7706,7.5901
  2478. 8.8248,7.6712
  2479. 8.9059,7.7254
  2480. 9.0016,7.7444
  2481. 11.0016,7.7444
  2482. 11.0972,7.7254
  2483. 11.1783,7.6712
  2484. 11.2325,7.5901
  2485. 11.2516,7.4944
  2486. 11.2516,6.1944
  2487. 11.2325,6.0988
  2488. 11.1783,6.0177
  2489. 11.0972,5.9635
  2490. 11.0016,5.9444
  2491. 9.0016,5.9444
  2492. 8.9059,5.9635
  2493. 8.8248,6.0177
  2494. 8.7706,6.0988
  2495. 8.7516,6.1944
  2496. Z" />
  2497. <circle cx="21.8016" cy="43.5944" r="0.7000" />
  2498. <circle cx="19.2616" cy="43.5944" r="0.7000" />
  2499. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2500. d="M 54.3266,41.0094
  2501. 54.2309,41.0285
  2502. 54.1498,41.0827
  2503. 54.0956,41.1638
  2504. 54.0766,41.2594
  2505. 54.0766,41.9344
  2506. 54.0956,42.0301
  2507. 54.1498,42.1112
  2508. 54.2309,42.1654
  2509. 54.3266,42.1844
  2510. 55.2766,42.1844
  2511. 55.3722,42.1654
  2512. 55.4533,42.1112
  2513. 55.5075,42.0301
  2514. 55.5266,41.9344
  2515. 55.5266,41.2594
  2516. 55.5075,41.1638
  2517. 55.4533,41.0827
  2518. 55.3722,41.0285
  2519. 55.2766,41.0094
  2520. Z" />
  2521. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2522. d="M 54.3266,43.0844
  2523. 54.2309,43.1035
  2524. 54.1498,43.1577
  2525. 54.0956,43.2388
  2526. 54.0766,43.3344
  2527. 54.0766,44.0094
  2528. 54.0956,44.1051
  2529. 54.1498,44.1862
  2530. 54.2309,44.2404
  2531. 54.3266,44.2594
  2532. 55.2766,44.2594
  2533. 55.3722,44.2404
  2534. 55.4533,44.1862
  2535. 55.5075,44.1051
  2536. 55.5266,44.0094
  2537. 55.5266,43.3344
  2538. 55.5075,43.2388
  2539. 55.4533,43.1577
  2540. 55.3722,43.1035
  2541. 55.2766,43.0844
  2542. Z" />
  2543. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2544. d="M 26.0766,45.3194
  2545. 26.0575,45.2238
  2546. 26.0033,45.1427
  2547. 25.9222,45.0885
  2548. 25.8266,45.0694
  2549. 25.2016,45.0694
  2550. 25.1059,45.0885
  2551. 25.0248,45.1427
  2552. 24.9706,45.2238
  2553. 24.9516,45.3194
  2554. 24.9516,46.5694
  2555. 24.9706,46.6651
  2556. 25.0248,46.7462
  2557. 25.1059,46.8004
  2558. 25.2016,46.8194
  2559. 25.8266,46.8194
  2560. 25.9222,46.8004
  2561. 26.0033,46.7462
  2562. 26.0575,46.6651
  2563. 26.0766,46.5694
  2564. Z" />
  2565. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2566. d="M 23.1516,45.3194
  2567. 23.1325,45.2238
  2568. 23.0783,45.1427
  2569. 22.9972,45.0885
  2570. 22.9016,45.0694
  2571. 22.2766,45.0694
  2572. 22.1809,45.0885
  2573. 22.0998,45.1427
  2574. 22.0456,45.2238
  2575. 22.0266,45.3194
  2576. 22.0266,46.5694
  2577. 22.0456,46.6651
  2578. 22.0998,46.7462
  2579. 22.1809,46.8004
  2580. 22.2766,46.8194
  2581. 22.9016,46.8194
  2582. 22.9972,46.8004
  2583. 23.0783,46.7462
  2584. 23.1325,46.6651
  2585. 23.1516,46.5694
  2586. Z" />
  2587. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2588. d="M 39.8366,21.3894
  2589. 41.5366,21.3894
  2590. 41.5366,19.6894
  2591. 39.8366,19.6894
  2592. Z" />
  2593. <circle cx="38.1466" cy="20.5394" r="0.8500" />
  2594. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2595. d="M 48.7266,11.6944
  2596. 48.8222,11.6754
  2597. 48.9033,11.6212
  2598. 48.9575,11.5401
  2599. 48.9766,11.4444
  2600. 48.9766,10.7694
  2601. 48.9575,10.6738
  2602. 48.9033,10.5927
  2603. 48.8222,10.5385
  2604. 48.7266,10.5194
  2605. 47.7766,10.5194
  2606. 47.6809,10.5385
  2607. 47.5998,10.5927
  2608. 47.5456,10.6738
  2609. 47.5266,10.7694
  2610. 47.5266,11.4444
  2611. 47.5456,11.5401
  2612. 47.5998,11.6212
  2613. 47.6809,11.6754
  2614. 47.7766,11.6944
  2615. Z" />
  2616. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2617. d="M 48.7266,9.6194
  2618. 48.8222,9.6004
  2619. 48.9033,9.5462
  2620. 48.9575,9.4651
  2621. 48.9766,9.3694
  2622. 48.9766,8.6944
  2623. 48.9575,8.5988
  2624. 48.9033,8.5177
  2625. 48.8222,8.4635
  2626. 48.7266,8.4444
  2627. 47.7766,8.4444
  2628. 47.6809,8.4635
  2629. 47.5998,8.5177
  2630. 47.5456,8.5988
  2631. 47.5266,8.6944
  2632. 47.5266,9.3694
  2633. 47.5456,9.4651
  2634. 47.5998,9.5462
  2635. 47.6809,9.6004
  2636. 47.7766,9.6194
  2637. Z" />
  2638. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2639. d="M 52.4016,15.4069
  2640. 52.3825,15.3113
  2641. 52.3283,15.2302
  2642. 52.2472,15.1760
  2643. 52.1516,15.1569
  2644. 51.6266,15.1569
  2645. 51.5309,15.1760
  2646. 51.4498,15.2302
  2647. 51.3956,15.3113
  2648. 51.3766,15.4069
  2649. 51.3766,16.3069
  2650. 51.3956,16.4026
  2651. 51.4498,16.4837
  2652. 51.5309,16.5379
  2653. 51.6266,16.5569
  2654. 52.1516,16.5569
  2655. 52.2472,16.5379
  2656. 52.3283,16.4837
  2657. 52.3825,16.4026
  2658. 52.4016,16.3069
  2659. Z" />
  2660. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2661. d="M 50.5766,15.4069
  2662. 50.5575,15.3113
  2663. 50.5033,15.2302
  2664. 50.4222,15.1760
  2665. 50.3266,15.1569
  2666. 49.8016,15.1569
  2667. 49.7059,15.1760
  2668. 49.6248,15.2302
  2669. 49.5706,15.3113
  2670. 49.5516,15.4069
  2671. 49.5516,16.3069
  2672. 49.5706,16.4026
  2673. 49.6248,16.4837
  2674. 49.7059,16.5379
  2675. 49.8016,16.5569
  2676. 50.3266,16.5569
  2677. 50.4222,16.5379
  2678. 50.5033,16.4837
  2679. 50.5575,16.4026
  2680. 50.5766,16.3069
  2681. Z" />
  2682. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2683. d="M 23.7016,29.2444
  2684. 23.7168,29.3210
  2685. 23.7601,29.3859
  2686. 23.8250,29.4292
  2687. 23.9016,29.4444
  2688. 24.3016,29.4444
  2689. 24.3781,29.4292
  2690. 24.4430,29.3859
  2691. 24.4863,29.3210
  2692. 24.5016,29.2444
  2693. 24.5016,27.6444
  2694. 24.4863,27.5679
  2695. 24.4430,27.5030
  2696. 24.3781,27.4597
  2697. 24.3016,27.4444
  2698. 23.9016,27.4444
  2699. 23.8250,27.4597
  2700. 23.7601,27.5030
  2701. 23.7168,27.5679
  2702. 23.7016,27.6444
  2703. Z" />
  2704. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2705. d="M 27.9016,29.2444
  2706. 27.9168,29.3210
  2707. 27.9601,29.3859
  2708. 28.0250,29.4292
  2709. 28.1016,29.4444
  2710. 28.5016,29.4444
  2711. 28.5781,29.4292
  2712. 28.6430,29.3859
  2713. 28.6863,29.3210
  2714. 28.7016,29.2444
  2715. 28.7016,27.6444
  2716. 28.6863,27.5679
  2717. 28.6430,27.5030
  2718. 28.5781,27.4597
  2719. 28.5016,27.4444
  2720. 28.1016,27.4444
  2721. 28.0250,27.4597
  2722. 27.9601,27.5030
  2723. 27.9168,27.5679
  2724. 27.9016,27.6444
  2725. Z" />
  2726. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2727. d="M 49.5266,12.4569
  2728. 49.5456,12.5526
  2729. 49.5998,12.6337
  2730. 49.6809,12.6879
  2731. 49.7766,12.7069
  2732. 50.4516,12.7069
  2733. 50.5472,12.6879
  2734. 50.6283,12.6337
  2735. 50.6825,12.5526
  2736. 50.7016,12.4569
  2737. 50.7016,11.5069
  2738. 50.6825,11.4113
  2739. 50.6283,11.3302
  2740. 50.5472,11.2760
  2741. 50.4516,11.2569
  2742. 49.7766,11.2569
  2743. 49.6809,11.2760
  2744. 49.5998,11.3302
  2745. 49.5456,11.4113
  2746. 49.5266,11.5069
  2747. Z" />
  2748. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2749. d="M 51.6016,12.4569
  2750. 51.6206,12.5526
  2751. 51.6748,12.6337
  2752. 51.7559,12.6879
  2753. 51.8516,12.7069
  2754. 52.5266,12.7069
  2755. 52.6222,12.6879
  2756. 52.7033,12.6337
  2757. 52.7575,12.5526
  2758. 52.7766,12.4569
  2759. 52.7766,11.5069
  2760. 52.7575,11.4113
  2761. 52.7033,11.3302
  2762. 52.6222,11.2760
  2763. 52.5266,11.2569
  2764. 51.8516,11.2569
  2765. 51.7559,11.2760
  2766. 51.6748,11.3302
  2767. 51.6206,11.4113
  2768. 51.6016,11.5069
  2769. Z" />
  2770. <circle cx="33.3516" cy="31.5444" r="0.5000" />
  2771. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2772. d="M 8.7516,57.8444
  2773. 8.7706,57.9401
  2774. 8.8248,58.0212
  2775. 8.9059,58.0754
  2776. 9.0016,58.0944
  2777. 9.5266,58.0944
  2778. 9.6222,58.0754
  2779. 9.7033,58.0212
  2780. 9.7575,57.9401
  2781. 9.7766,57.8444
  2782. 9.7766,56.9444
  2783. 9.7575,56.8488
  2784. 9.7033,56.7677
  2785. 9.6222,56.7135
  2786. 9.5266,56.6944
  2787. 9.0016,56.6944
  2788. 8.9059,56.7135
  2789. 8.8248,56.7677
  2790. 8.7706,56.8488
  2791. 8.7516,56.9444
  2792. Z" />
  2793. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2794. d="M 10.5766,57.8444
  2795. 10.5956,57.9401
  2796. 10.6498,58.0212
  2797. 10.7309,58.0754
  2798. 10.8266,58.0944
  2799. 11.3516,58.0944
  2800. 11.4472,58.0754
  2801. 11.5283,58.0212
  2802. 11.5825,57.9401
  2803. 11.6016,57.8444
  2804. 11.6016,56.9444
  2805. 11.5825,56.8488
  2806. 11.5283,56.7677
  2807. 11.4472,56.7135
  2808. 11.3516,56.6944
  2809. 10.8266,56.6944
  2810. 10.7309,56.7135
  2811. 10.6498,56.7677
  2812. 10.5956,56.8488
  2813. 10.5766,56.9444
  2814. Z" />
  2815. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2816. d="M 13.1266,24.6569
  2817. 13.0309,24.6760
  2818. 12.9498,24.7302
  2819. 12.8956,24.8113
  2820. 12.8766,24.9069
  2821. 12.8766,25.5819
  2822. 12.8956,25.6776
  2823. 12.9498,25.7587
  2824. 13.0309,25.8129
  2825. 13.1266,25.8319
  2826. 14.0766,25.8319
  2827. 14.1722,25.8129
  2828. 14.2533,25.7587
  2829. 14.3075,25.6776
  2830. 14.3266,25.5819
  2831. 14.3266,24.9069
  2832. 14.3075,24.8113
  2833. 14.2533,24.7302
  2834. 14.1722,24.6760
  2835. 14.0766,24.6569
  2836. Z" />
  2837. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2838. d="M 13.1266,26.7319
  2839. 13.0309,26.7510
  2840. 12.9498,26.8052
  2841. 12.8956,26.8863
  2842. 12.8766,26.9819
  2843. 12.8766,27.6569
  2844. 12.8956,27.7526
  2845. 12.9498,27.8337
  2846. 13.0309,27.8879
  2847. 13.1266,27.9069
  2848. 14.0766,27.9069
  2849. 14.1722,27.8879
  2850. 14.2533,27.8337
  2851. 14.3075,27.7526
  2852. 14.3266,27.6569
  2853. 14.3266,26.9819
  2854. 14.3075,26.8863
  2855. 14.2533,26.8052
  2856. 14.1722,26.7510
  2857. 14.0766,26.7319
  2858. Z" />
  2859. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2860. d="M 30.5516,20.8819
  2861. 30.4559,20.9010
  2862. 30.3748,20.9552
  2863. 30.3206,21.0363
  2864. 30.3016,21.1319
  2865. 30.3016,21.8069
  2866. 30.3206,21.9026
  2867. 30.3748,21.9837
  2868. 30.4559,22.0379
  2869. 30.5516,22.0569
  2870. 31.5016,22.0569
  2871. 31.5972,22.0379
  2872. 31.6783,21.9837
  2873. 31.7325,21.9026
  2874. 31.7516,21.8069
  2875. 31.7516,21.1319
  2876. 31.7325,21.0363
  2877. 31.6783,20.9552
  2878. 31.5972,20.9010
  2879. 31.5016,20.8819
  2880. Z" />
  2881. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2882. d="M 30.5516,22.9569
  2883. 30.4559,22.9760
  2884. 30.3748,23.0302
  2885. 30.3206,23.1113
  2886. 30.3016,23.2069
  2887. 30.3016,23.8819
  2888. 30.3206,23.9776
  2889. 30.3748,24.0587
  2890. 30.4559,24.1129
  2891. 30.5516,24.1319
  2892. 31.5016,24.1319
  2893. 31.5972,24.1129
  2894. 31.6783,24.0587
  2895. 31.7325,23.9776
  2896. 31.7516,23.8819
  2897. 31.7516,23.2069
  2898. 31.7325,23.1113
  2899. 31.6783,23.0302
  2900. 31.5972,22.9760
  2901. 31.5016,22.9569
  2902. Z" />
  2903. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2904. d="M 35.8216,52.3644
  2905. 35.9172,52.3454
  2906. 35.9983,52.2912
  2907. 36.0525,52.2101
  2908. 36.0716,52.1144
  2909. 36.0716,51.4144
  2910. 36.0525,51.3188
  2911. 35.9983,51.2377
  2912. 35.9172,51.1835
  2913. 35.8216,51.1644
  2914. 34.9216,51.1644
  2915. 34.8259,51.1835
  2916. 34.7448,51.2377
  2917. 34.6906,51.3188
  2918. 34.6716,51.4144
  2919. 34.6716,52.1144
  2920. 34.6906,52.2101
  2921. 34.7448,52.2912
  2922. 34.8259,52.3454
  2923. 34.9216,52.3644
  2924. Z" />
  2925. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2926. d="M 35.8216,50.3644
  2927. 35.9172,50.3454
  2928. 35.9983,50.2912
  2929. 36.0525,50.2101
  2930. 36.0716,50.1144
  2931. 36.0716,49.4144
  2932. 36.0525,49.3188
  2933. 35.9983,49.2377
  2934. 35.9172,49.1835
  2935. 35.8216,49.1644
  2936. 34.9216,49.1644
  2937. 34.8259,49.1835
  2938. 34.7448,49.2377
  2939. 34.6906,49.3188
  2940. 34.6716,49.4144
  2941. 34.6716,50.1144
  2942. 34.6906,50.2101
  2943. 34.7448,50.2912
  2944. 34.8259,50.3454
  2945. 34.9216,50.3644
  2946. Z" />
  2947. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2948. d="M 35.8416,41.8594
  2949. 35.9372,41.8404
  2950. 36.0183,41.7862
  2951. 36.0725,41.7051
  2952. 36.0916,41.6094
  2953. 36.0916,40.9094
  2954. 36.0725,40.8138
  2955. 36.0183,40.7327
  2956. 35.9372,40.6785
  2957. 35.8416,40.6594
  2958. 34.9416,40.6594
  2959. 34.8459,40.6785
  2960. 34.7648,40.7327
  2961. 34.7106,40.8138
  2962. 34.6916,40.9094
  2963. 34.6916,41.6094
  2964. 34.7106,41.7051
  2965. 34.7648,41.7862
  2966. 34.8459,41.8404
  2967. 34.9416,41.8594
  2968. Z" />
  2969. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2970. d="M 35.8416,39.8594
  2971. 35.9372,39.8404
  2972. 36.0183,39.7862
  2973. 36.0725,39.7051
  2974. 36.0916,39.6094
  2975. 36.0916,38.9094
  2976. 36.0725,38.8138
  2977. 36.0183,38.7327
  2978. 35.9372,38.6785
  2979. 35.8416,38.6594
  2980. 34.9416,38.6594
  2981. 34.8459,38.6785
  2982. 34.7648,38.7327
  2983. 34.7106,38.8138
  2984. 34.6916,38.9094
  2985. 34.6916,39.6094
  2986. 34.7106,39.7051
  2987. 34.7648,39.7862
  2988. 34.8459,39.8404
  2989. 34.9416,39.8594
  2990. Z" />
  2991. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  2992. d="M 8.0141,16.3694
  2993. 7.9950,16.2738
  2994. 7.9408,16.1927
  2995. 7.8597,16.1385
  2996. 7.7641,16.1194
  2997. 7.0891,16.1194
  2998. 6.9934,16.1385
  2999. 6.9123,16.1927
  3000. 6.8581,16.2738
  3001. 6.8391,16.3694
  3002. 6.8391,17.3194
  3003. 6.8581,17.4151
  3004. 6.9123,17.4962
  3005. 6.9934,17.5504
  3006. 7.0891,17.5694
  3007. 7.7641,17.5694
  3008. 7.8597,17.5504
  3009. 7.9408,17.4962
  3010. 7.9950,17.4151
  3011. 8.0141,17.3194
  3012. Z" />
  3013. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3014. d="M 5.9391,16.3694
  3015. 5.9200,16.2738
  3016. 5.8658,16.1927
  3017. 5.7847,16.1385
  3018. 5.6891,16.1194
  3019. 5.0141,16.1194
  3020. 4.9184,16.1385
  3021. 4.8373,16.1927
  3022. 4.7831,16.2738
  3023. 4.7641,16.3694
  3024. 4.7641,17.3194
  3025. 4.7831,17.4151
  3026. 4.8373,17.4962
  3027. 4.9184,17.5504
  3028. 5.0141,17.5694
  3029. 5.6891,17.5694
  3030. 5.7847,17.5504
  3031. 5.8658,17.4962
  3032. 5.9200,17.4151
  3033. 5.9391,17.3194
  3034. Z" />
  3035. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3036. d="M 4.7516,14.9194
  3037. 4.7671,15.0264
  3038. 4.8214,15.1373
  3039. 4.9087,15.2246
  3040. 5.0196,15.2788
  3041. 5.1266,15.2944
  3042. 6.3766,15.2944
  3043. 6.4836,15.2788
  3044. 6.5945,15.2246
  3045. 6.6817,15.1373
  3046. 6.7360,15.0264
  3047. 6.7516,14.9194
  3048. 6.7516,14.1694
  3049. 6.7360,14.0624
  3050. 6.6817,13.9515
  3051. 6.5945,13.8642
  3052. 6.4836,13.8100
  3053. 6.3766,13.7944
  3054. 5.1266,13.7944
  3055. 5.0196,13.8100
  3056. 4.9087,13.8642
  3057. 4.8214,13.9515
  3058. 4.7671,14.0624
  3059. 4.7516,14.1694
  3060. Z" />
  3061. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3062. d="M 4.7516,12.6194
  3063. 4.7671,12.7264
  3064. 4.8214,12.8373
  3065. 4.9087,12.9246
  3066. 5.0196,12.9788
  3067. 5.1266,12.9944
  3068. 6.3766,12.9944
  3069. 6.4836,12.9788
  3070. 6.5945,12.9246
  3071. 6.6817,12.8373
  3072. 6.7360,12.7264
  3073. 6.7516,12.6194
  3074. 6.7516,11.8694
  3075. 6.7360,11.7624
  3076. 6.6817,11.6515
  3077. 6.5945,11.5642
  3078. 6.4836,11.5100
  3079. 6.3766,11.4944
  3080. 5.1266,11.4944
  3081. 5.0196,11.5100
  3082. 4.9087,11.5642
  3083. 4.8214,11.6515
  3084. 4.7671,11.7624
  3085. 4.7516,11.8694
  3086. Z" />
  3087. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3088. d="M 11.0516,13.6444
  3089. 11.0630,13.7507
  3090. 11.1127,13.8841
  3091. 11.1980,13.9980
  3092. 11.3119,14.0833
  3093. 11.4453,14.1330
  3094. 11.5516,14.1444
  3095. 12.5516,14.1444
  3096. 12.6578,14.1330
  3097. 12.7912,14.0833
  3098. 12.9051,13.9980
  3099. 12.9904,13.8841
  3100. 13.0401,13.7507
  3101. 13.0516,13.6444
  3102. 13.0516,10.8444
  3103. 13.0401,10.7382
  3104. 12.9904,10.6048
  3105. 12.9051,10.4909
  3106. 12.7912,10.4056
  3107. 12.6578,10.3559
  3108. 12.5516,10.3444
  3109. 11.5516,10.3444
  3110. 11.4453,10.3559
  3111. 11.3119,10.4056
  3112. 11.1980,10.4909
  3113. 11.1127,10.6048
  3114. 11.0630,10.7382
  3115. 11.0516,10.8444
  3116. Z" />
  3117. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3118. d="M 4.7516,10.3194
  3119. 4.7671,10.4264
  3120. 4.8214,10.5373
  3121. 4.9087,10.6246
  3122. 5.0196,10.6788
  3123. 5.1266,10.6944
  3124. 6.3766,10.6944
  3125. 6.4836,10.6788
  3126. 6.5945,10.6246
  3127. 6.6817,10.5373
  3128. 6.7360,10.4264
  3129. 6.7516,10.3194
  3130. 6.7516,9.5694
  3131. 6.7360,9.4624
  3132. 6.6817,9.3515
  3133. 6.5945,9.2642
  3134. 6.4836,9.2100
  3135. 6.3766,9.1944
  3136. 5.1266,9.1944
  3137. 5.0196,9.2100
  3138. 4.9087,9.2642
  3139. 4.8214,9.3515
  3140. 4.7671,9.4624
  3141. 4.7516,9.5694
  3142. Z" />
  3143. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3144. d="M 21.7766,24.2619
  3145. 21.7661,24.2093
  3146. 21.7363,24.1647
  3147. 21.6917,24.1349
  3148. 21.6391,24.1244
  3149. 20.3141,24.1244
  3150. 20.2614,24.1349
  3151. 20.2168,24.1647
  3152. 20.1870,24.2093
  3153. 20.1766,24.2619
  3154. 20.1766,24.5369
  3155. 20.1870,24.5896
  3156. 20.2168,24.6342
  3157. 20.2614,24.6640
  3158. 20.3141,24.6744
  3159. 21.6391,24.6744
  3160. 21.6917,24.6640
  3161. 21.7363,24.6342
  3162. 21.7661,24.5896
  3163. 21.7766,24.5369
  3164. Z" />
  3165. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3166. d="M 21.7766,25.5319
  3167. 21.7661,25.4793
  3168. 21.7363,25.4347
  3169. 21.6917,25.4049
  3170. 21.6391,25.3944
  3171. 20.3141,25.3944
  3172. 20.2614,25.4049
  3173. 20.2168,25.4347
  3174. 20.1870,25.4793
  3175. 20.1766,25.5319
  3176. 20.1766,25.8069
  3177. 20.1870,25.8596
  3178. 20.2168,25.9042
  3179. 20.2614,25.9340
  3180. 20.3141,25.9444
  3181. 21.6391,25.9444
  3182. 21.6917,25.9340
  3183. 21.7363,25.9042
  3184. 21.7661,25.8596
  3185. 21.7766,25.8069
  3186. Z" />
  3187. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3188. d="M 21.7766,26.8019
  3189. 21.7661,26.7493
  3190. 21.7363,26.7047
  3191. 21.6917,26.6749
  3192. 21.6391,26.6644
  3193. 20.3141,26.6644
  3194. 20.2614,26.6749
  3195. 20.2168,26.7047
  3196. 20.1870,26.7493
  3197. 20.1766,26.8019
  3198. 20.1766,27.0769
  3199. 20.1870,27.1296
  3200. 20.2168,27.1742
  3201. 20.2614,27.2040
  3202. 20.3141,27.2144
  3203. 21.6391,27.2144
  3204. 21.6917,27.2040
  3205. 21.7363,27.1742
  3206. 21.7661,27.1296
  3207. 21.7766,27.0769
  3208. Z" />
  3209. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3210. d="M 21.7766,28.0719
  3211. 21.7661,28.0193
  3212. 21.7363,27.9747
  3213. 21.6917,27.9449
  3214. 21.6391,27.9344
  3215. 20.3141,27.9344
  3216. 20.2614,27.9449
  3217. 20.2168,27.9747
  3218. 20.1870,28.0193
  3219. 20.1766,28.0719
  3220. 20.1766,28.3469
  3221. 20.1870,28.3996
  3222. 20.2168,28.4442
  3223. 20.2614,28.4740
  3224. 20.3141,28.4844
  3225. 21.6391,28.4844
  3226. 21.6917,28.4740
  3227. 21.7363,28.4442
  3228. 21.7661,28.3996
  3229. 21.7766,28.3469
  3230. Z" />
  3231. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3232. d="M 21.7766,29.3419
  3233. 21.7661,29.2893
  3234. 21.7363,29.2447
  3235. 21.6917,29.2149
  3236. 21.6391,29.2044
  3237. 20.3141,29.2044
  3238. 20.2614,29.2149
  3239. 20.2168,29.2447
  3240. 20.1870,29.2893
  3241. 20.1766,29.3419
  3242. 20.1766,29.6169
  3243. 20.1870,29.6696
  3244. 20.2168,29.7142
  3245. 20.2614,29.7440
  3246. 20.3141,29.7544
  3247. 21.6391,29.7544
  3248. 21.6917,29.7440
  3249. 21.7363,29.7142
  3250. 21.7661,29.6696
  3251. 21.7766,29.6169
  3252. Z" />
  3253. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3254. d="M 21.7766,30.6119
  3255. 21.7661,30.5593
  3256. 21.7363,30.5147
  3257. 21.6917,30.4849
  3258. 21.6391,30.4744
  3259. 20.3141,30.4744
  3260. 20.2614,30.4849
  3261. 20.2168,30.5147
  3262. 20.1870,30.5593
  3263. 20.1766,30.6119
  3264. 20.1766,30.8869
  3265. 20.1870,30.9396
  3266. 20.2168,30.9842
  3267. 20.2614,31.0140
  3268. 20.3141,31.0244
  3269. 21.6391,31.0244
  3270. 21.6917,31.0140
  3271. 21.7363,30.9842
  3272. 21.7661,30.9396
  3273. 21.7766,30.8869
  3274. Z" />
  3275. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3276. d="M 21.7766,31.8819
  3277. 21.7661,31.8293
  3278. 21.7363,31.7847
  3279. 21.6917,31.7549
  3280. 21.6391,31.7444
  3281. 20.3141,31.7444
  3282. 20.2614,31.7549
  3283. 20.2168,31.7847
  3284. 20.1870,31.8293
  3285. 20.1766,31.8819
  3286. 20.1766,32.1569
  3287. 20.1870,32.2096
  3288. 20.2168,32.2542
  3289. 20.2614,32.2840
  3290. 20.3141,32.2944
  3291. 21.6391,32.2944
  3292. 21.6917,32.2840
  3293. 21.7363,32.2542
  3294. 21.7661,32.2096
  3295. 21.7766,32.1569
  3296. Z" />
  3297. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3298. d="M 21.7766,33.1519
  3299. 21.7661,33.0993
  3300. 21.7363,33.0547
  3301. 21.6917,33.0249
  3302. 21.6391,33.0144
  3303. 20.3141,33.0144
  3304. 20.2614,33.0249
  3305. 20.2168,33.0547
  3306. 20.1870,33.0993
  3307. 20.1766,33.1519
  3308. 20.1766,33.4269
  3309. 20.1870,33.4796
  3310. 20.2168,33.5242
  3311. 20.2614,33.5540
  3312. 20.3141,33.5644
  3313. 21.6391,33.5644
  3314. 21.6917,33.5540
  3315. 21.7363,33.5242
  3316. 21.7661,33.4796
  3317. 21.7766,33.4269
  3318. Z" />
  3319. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3320. d="M 16.4766,33.1519
  3321. 16.4661,33.0993
  3322. 16.4363,33.0547
  3323. 16.3917,33.0249
  3324. 16.3391,33.0144
  3325. 15.0141,33.0144
  3326. 14.9614,33.0249
  3327. 14.9168,33.0547
  3328. 14.8870,33.0993
  3329. 14.8766,33.1519
  3330. 14.8766,33.4269
  3331. 14.8870,33.4796
  3332. 14.9168,33.5242
  3333. 14.9614,33.5540
  3334. 15.0141,33.5644
  3335. 16.3391,33.5644
  3336. 16.3917,33.5540
  3337. 16.4363,33.5242
  3338. 16.4661,33.4796
  3339. 16.4766,33.4269
  3340. Z" />
  3341. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3342. d="M 16.4766,31.8819
  3343. 16.4661,31.8293
  3344. 16.4363,31.7847
  3345. 16.3917,31.7549
  3346. 16.3391,31.7444
  3347. 15.0141,31.7444
  3348. 14.9614,31.7549
  3349. 14.9168,31.7847
  3350. 14.8870,31.8293
  3351. 14.8766,31.8819
  3352. 14.8766,32.1569
  3353. 14.8870,32.2096
  3354. 14.9168,32.2542
  3355. 14.9614,32.2840
  3356. 15.0141,32.2944
  3357. 16.3391,32.2944
  3358. 16.3917,32.2840
  3359. 16.4363,32.2542
  3360. 16.4661,32.2096
  3361. 16.4766,32.1569
  3362. Z" />
  3363. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3364. d="M 16.4766,30.6119
  3365. 16.4661,30.5593
  3366. 16.4363,30.5147
  3367. 16.3917,30.4849
  3368. 16.3391,30.4744
  3369. 15.0141,30.4744
  3370. 14.9614,30.4849
  3371. 14.9168,30.5147
  3372. 14.8870,30.5593
  3373. 14.8766,30.6119
  3374. 14.8766,30.8869
  3375. 14.8870,30.9396
  3376. 14.9168,30.9842
  3377. 14.9614,31.0140
  3378. 15.0141,31.0244
  3379. 16.3391,31.0244
  3380. 16.3917,31.0140
  3381. 16.4363,30.9842
  3382. 16.4661,30.9396
  3383. 16.4766,30.8869
  3384. Z" />
  3385. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3386. d="M 16.4766,29.3419
  3387. 16.4661,29.2893
  3388. 16.4363,29.2447
  3389. 16.3917,29.2149
  3390. 16.3391,29.2044
  3391. 15.0141,29.2044
  3392. 14.9614,29.2149
  3393. 14.9168,29.2447
  3394. 14.8870,29.2893
  3395. 14.8766,29.3419
  3396. 14.8766,29.6169
  3397. 14.8870,29.6696
  3398. 14.9168,29.7142
  3399. 14.9614,29.7440
  3400. 15.0141,29.7544
  3401. 16.3391,29.7544
  3402. 16.3917,29.7440
  3403. 16.4363,29.7142
  3404. 16.4661,29.6696
  3405. 16.4766,29.6169
  3406. Z" />
  3407. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3408. d="M 16.4766,28.0719
  3409. 16.4661,28.0193
  3410. 16.4363,27.9747
  3411. 16.3917,27.9449
  3412. 16.3391,27.9344
  3413. 15.0141,27.9344
  3414. 14.9614,27.9449
  3415. 14.9168,27.9747
  3416. 14.8870,28.0193
  3417. 14.8766,28.0719
  3418. 14.8766,28.3469
  3419. 14.8870,28.3996
  3420. 14.9168,28.4442
  3421. 14.9614,28.4740
  3422. 15.0141,28.4844
  3423. 16.3391,28.4844
  3424. 16.3917,28.4740
  3425. 16.4363,28.4442
  3426. 16.4661,28.3996
  3427. 16.4766,28.3469
  3428. Z" />
  3429. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3430. d="M 16.4766,26.8019
  3431. 16.4661,26.7493
  3432. 16.4363,26.7047
  3433. 16.3917,26.6749
  3434. 16.3391,26.6644
  3435. 15.0141,26.6644
  3436. 14.9614,26.6749
  3437. 14.9168,26.7047
  3438. 14.8870,26.7493
  3439. 14.8766,26.8019
  3440. 14.8766,27.0769
  3441. 14.8870,27.1296
  3442. 14.9168,27.1742
  3443. 14.9614,27.2040
  3444. 15.0141,27.2144
  3445. 16.3391,27.2144
  3446. 16.3917,27.2040
  3447. 16.4363,27.1742
  3448. 16.4661,27.1296
  3449. 16.4766,27.0769
  3450. Z" />
  3451. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3452. d="M 16.4766,25.5319
  3453. 16.4661,25.4793
  3454. 16.4363,25.4347
  3455. 16.3917,25.4049
  3456. 16.3391,25.3944
  3457. 15.0141,25.3944
  3458. 14.9614,25.4049
  3459. 14.9168,25.4347
  3460. 14.8870,25.4793
  3461. 14.8766,25.5319
  3462. 14.8766,25.8069
  3463. 14.8870,25.8596
  3464. 14.9168,25.9042
  3465. 14.9614,25.9340
  3466. 15.0141,25.9444
  3467. 16.3391,25.9444
  3468. 16.3917,25.9340
  3469. 16.4363,25.9042
  3470. 16.4661,25.8596
  3471. 16.4766,25.8069
  3472. Z" />
  3473. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3474. d="M 16.4766,24.2619
  3475. 16.4661,24.2093
  3476. 16.4363,24.1647
  3477. 16.3917,24.1349
  3478. 16.3391,24.1244
  3479. 15.0141,24.1244
  3480. 14.9614,24.1349
  3481. 14.9168,24.1647
  3482. 14.8870,24.2093
  3483. 14.8766,24.2619
  3484. 14.8766,24.5369
  3485. 14.8870,24.5896
  3486. 14.9168,24.6342
  3487. 14.9614,24.6640
  3488. 15.0141,24.6744
  3489. 16.3391,24.6744
  3490. 16.3917,24.6640
  3491. 16.4363,24.6342
  3492. 16.4661,24.5896
  3493. 16.4766,24.5369
  3494. Z" />
  3495. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3496. d="M 21.4766,45.3194
  3497. 21.4575,45.2238
  3498. 21.4033,45.1427
  3499. 21.3222,45.0885
  3500. 21.2266,45.0694
  3501. 20.4266,45.0694
  3502. 20.3309,45.0885
  3503. 20.2498,45.1427
  3504. 20.1956,45.2238
  3505. 20.1766,45.3194
  3506. 20.1766,46.5694
  3507. 20.1956,46.6651
  3508. 20.2498,46.7462
  3509. 20.3309,46.8004
  3510. 20.4266,46.8194
  3511. 21.2266,46.8194
  3512. 21.3222,46.8004
  3513. 21.4033,46.7462
  3514. 21.4575,46.6651
  3515. 21.4766,46.5694
  3516. Z" />
  3517. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3518. d="M 18.3766,45.3194
  3519. 18.3575,45.2238
  3520. 18.3033,45.1427
  3521. 18.2222,45.0885
  3522. 18.1266,45.0694
  3523. 17.3266,45.0694
  3524. 17.2309,45.0885
  3525. 17.1498,45.1427
  3526. 17.0956,45.2238
  3527. 17.0766,45.3194
  3528. 17.0766,46.5694
  3529. 17.0956,46.6651
  3530. 17.1498,46.7462
  3531. 17.2309,46.8004
  3532. 17.3266,46.8194
  3533. 18.1266,46.8194
  3534. 18.2222,46.8004
  3535. 18.3033,46.7462
  3536. 18.3575,46.6651
  3537. 18.3766,46.5694
  3538. Z" />
  3539. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3540. d="M 25.0266,36.3194
  3541. 25.0075,36.2238
  3542. 24.9533,36.1427
  3543. 24.8722,36.0885
  3544. 24.7766,36.0694
  3545. 24.0266,36.0694
  3546. 23.9309,36.0885
  3547. 23.8498,36.1427
  3548. 23.7956,36.2238
  3549. 23.7766,36.3194
  3550. 23.7766,37.5694
  3551. 23.7956,37.6651
  3552. 23.8498,37.7462
  3553. 23.9309,37.8004
  3554. 24.0266,37.8194
  3555. 24.7766,37.8194
  3556. 24.8722,37.8004
  3557. 24.9533,37.7462
  3558. 25.0075,37.6651
  3559. 25.0266,37.5694
  3560. Z" />
  3561. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3562. d="M 22.2266,36.3194
  3563. 22.2075,36.2238
  3564. 22.1533,36.1427
  3565. 22.0722,36.0885
  3566. 21.9766,36.0694
  3567. 21.2266,36.0694
  3568. 21.1309,36.0885
  3569. 21.0498,36.1427
  3570. 20.9956,36.2238
  3571. 20.9766,36.3194
  3572. 20.9766,37.5694
  3573. 20.9956,37.6651
  3574. 21.0498,37.7462
  3575. 21.1309,37.8004
  3576. 21.2266,37.8194
  3577. 21.9766,37.8194
  3578. 22.0722,37.8004
  3579. 22.1533,37.7462
  3580. 22.2075,37.6651
  3581. 22.2266,37.5694
  3582. Z" />
  3583. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3584. d="M 48.3766,21.9819
  3585. 48.4722,21.9629
  3586. 48.5533,21.9087
  3587. 48.6075,21.8276
  3588. 48.6266,21.7319
  3589. 48.6266,20.5319
  3590. 48.6075,20.4363
  3591. 48.5533,20.3552
  3592. 48.4722,20.3010
  3593. 48.3766,20.2819
  3594. 43.1766,20.2819
  3595. 43.0809,20.3010
  3596. 42.9998,20.3552
  3597. 42.9456,20.4363
  3598. 42.9266,20.5319
  3599. 42.9266,21.7319
  3600. 42.9456,21.8276
  3601. 42.9998,21.9087
  3602. 43.0809,21.9629
  3603. 43.1766,21.9819
  3604. Z" />
  3605. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3606. d="M 48.3766,17.4819
  3607. 48.4722,17.4629
  3608. 48.5533,17.4087
  3609. 48.6075,17.3276
  3610. 48.6266,17.2319
  3611. 48.6266,16.0319
  3612. 48.6075,15.9363
  3613. 48.5533,15.8552
  3614. 48.4722,15.8010
  3615. 48.3766,15.7819
  3616. 43.1766,15.7819
  3617. 43.0809,15.8010
  3618. 42.9998,15.8552
  3619. 42.9456,15.9363
  3620. 42.9266,16.0319
  3621. 42.9266,17.2319
  3622. 42.9456,17.3276
  3623. 42.9998,17.4087
  3624. 43.0809,17.4629
  3625. 43.1766,17.4819
  3626. Z" />
  3627. <circle cx="33.3816" cy="42.0994" r="0.5000" />
  3628. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3629. d="M 28.7016,16.8444
  3630. 28.6825,16.7488
  3631. 28.6283,16.6677
  3632. 28.5472,16.6135
  3633. 28.4516,16.5944
  3634. 27.7766,16.5944
  3635. 27.6809,16.6135
  3636. 27.5998,16.6677
  3637. 27.5456,16.7488
  3638. 27.5266,16.8444
  3639. 27.5266,17.7944
  3640. 27.5456,17.8901
  3641. 27.5998,17.9712
  3642. 27.6809,18.0254
  3643. 27.7766,18.0444
  3644. 28.4516,18.0444
  3645. 28.5472,18.0254
  3646. 28.6283,17.9712
  3647. 28.6825,17.8901
  3648. 28.7016,17.7944
  3649. Z" />
  3650. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3651. d="M 26.6266,16.8444
  3652. 26.6075,16.7488
  3653. 26.5533,16.6677
  3654. 26.4722,16.6135
  3655. 26.3766,16.5944
  3656. 25.7016,16.5944
  3657. 25.6059,16.6135
  3658. 25.5248,16.6677
  3659. 25.4706,16.7488
  3660. 25.4516,16.8444
  3661. 25.4516,17.7944
  3662. 25.4706,17.8901
  3663. 25.5248,17.9712
  3664. 25.6059,18.0254
  3665. 25.7016,18.0444
  3666. 26.3766,18.0444
  3667. 26.4722,18.0254
  3668. 26.5533,17.9712
  3669. 26.6075,17.8901
  3670. 26.6266,17.7944
  3671. Z" />
  3672. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3673. d="M 49.0016,13.0819
  3674. 48.9825,12.9863
  3675. 48.9283,12.9052
  3676. 48.8472,12.8510
  3677. 48.7516,12.8319
  3678. 46.7516,12.8319
  3679. 46.6559,12.8510
  3680. 46.5748,12.9052
  3681. 46.5206,12.9863
  3682. 46.5016,13.0819
  3683. 46.5016,14.3819
  3684. 46.5206,14.4776
  3685. 46.5748,14.5587
  3686. 46.6559,14.6129
  3687. 46.7516,14.6319
  3688. 48.7516,14.6319
  3689. 48.8472,14.6129
  3690. 48.9283,14.5587
  3691. 48.9825,14.4776
  3692. 49.0016,14.3819
  3693. Z" />
  3694. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3695. d="M 45.0016,13.0819
  3696. 44.9825,12.9863
  3697. 44.9283,12.9052
  3698. 44.8472,12.8510
  3699. 44.7516,12.8319
  3700. 42.7516,12.8319
  3701. 42.6559,12.8510
  3702. 42.5748,12.9052
  3703. 42.5206,12.9863
  3704. 42.5016,13.0819
  3705. 42.5016,14.3819
  3706. 42.5206,14.4776
  3707. 42.5748,14.5587
  3708. 42.6559,14.6129
  3709. 42.7516,14.6319
  3710. 44.7516,14.6319
  3711. 44.8472,14.6129
  3712. 44.9283,14.5587
  3713. 44.9825,14.4776
  3714. 45.0016,14.3819
  3715. Z" />
  3716. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3717. d="M 17.9266,55.2444
  3718. 18.0222,55.2254
  3719. 18.1033,55.1712
  3720. 18.1575,55.0901
  3721. 18.1766,54.9944
  3722. 18.1766,54.2944
  3723. 18.1575,54.1988
  3724. 18.1033,54.1177
  3725. 18.0222,54.0635
  3726. 17.9266,54.0444
  3727. 17.0266,54.0444
  3728. 16.9309,54.0635
  3729. 16.8498,54.1177
  3730. 16.7956,54.1988
  3731. 16.7766,54.2944
  3732. 16.7766,54.9944
  3733. 16.7956,55.0901
  3734. 16.8498,55.1712
  3735. 16.9309,55.2254
  3736. 17.0266,55.2444
  3737. Z" />
  3738. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3739. d="M 17.9266,53.2444
  3740. 18.0222,53.2254
  3741. 18.1033,53.1712
  3742. 18.1575,53.0901
  3743. 18.1766,52.9944
  3744. 18.1766,52.2944
  3745. 18.1575,52.1988
  3746. 18.1033,52.1177
  3747. 18.0222,52.0635
  3748. 17.9266,52.0444
  3749. 17.0266,52.0444
  3750. 16.9309,52.0635
  3751. 16.8498,52.1177
  3752. 16.7956,52.1988
  3753. 16.7766,52.2944
  3754. 16.7766,52.9944
  3755. 16.7956,53.0901
  3756. 16.8498,53.1712
  3757. 16.9309,53.2254
  3758. 17.0266,53.2444
  3759. Z" />
  3760. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3761. d="M 36.6266,18.1344
  3762. 36.6389,18.1966
  3763. 36.6741,18.2493
  3764. 36.7269,18.2846
  3765. 36.7891,18.2969
  3766. 37.6841,18.2969
  3767. 37.7462,18.2846
  3768. 37.7990,18.2493
  3769. 37.8342,18.1966
  3770. 37.8466,18.1344
  3771. 37.8466,17.8094
  3772. 37.8342,17.7473
  3773. 37.7990,17.6945
  3774. 37.7462,17.6593
  3775. 37.6841,17.6469
  3776. 36.7891,17.6469
  3777. 36.7269,17.6593
  3778. 36.6741,17.6945
  3779. 36.6389,17.7473
  3780. 36.6266,17.8094
  3781. Z" />
  3782. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3783. d="M 36.6266,16.2344
  3784. 36.6389,16.2966
  3785. 36.6741,16.3493
  3786. 36.7269,16.3846
  3787. 36.7891,16.3969
  3788. 37.6841,16.3969
  3789. 37.7462,16.3846
  3790. 37.7990,16.3493
  3791. 37.8342,16.2966
  3792. 37.8466,16.2344
  3793. 37.8466,15.9094
  3794. 37.8342,15.8473
  3795. 37.7990,15.7945
  3796. 37.7462,15.7593
  3797. 37.6841,15.7469
  3798. 36.7891,15.7469
  3799. 36.7269,15.7593
  3800. 36.6741,15.7945
  3801. 36.6389,15.8473
  3802. 36.6266,15.9094
  3803. Z" />
  3804. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3805. d="M 39.2466,17.1844
  3806. 39.2589,17.2466
  3807. 39.2941,17.2993
  3808. 39.3469,17.3346
  3809. 39.4091,17.3469
  3810. 40.3041,17.3469
  3811. 40.3662,17.3346
  3812. 40.4190,17.2993
  3813. 40.4542,17.2466
  3814. 40.4666,17.1844
  3815. 40.4666,16.8594
  3816. 40.4542,16.7973
  3817. 40.4190,16.7445
  3818. 40.3662,16.7093
  3819. 40.3041,16.6969
  3820. 39.4091,16.6969
  3821. 39.3469,16.7093
  3822. 39.2941,16.7445
  3823. 39.2589,16.7973
  3824. 39.2466,16.8594
  3825. Z" />
  3826. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3827. d="M 54.3066,35.4019
  3828. 54.2109,35.4210
  3829. 54.1298,35.4752
  3830. 54.0756,35.5563
  3831. 54.0566,35.6519
  3832. 54.0566,36.3269
  3833. 54.0756,36.4226
  3834. 54.1298,36.5037
  3835. 54.2109,36.5579
  3836. 54.3066,36.5769
  3837. 55.2566,36.5769
  3838. 55.3522,36.5579
  3839. 55.4333,36.5037
  3840. 55.4875,36.4226
  3841. 55.5066,36.3269
  3842. 55.5066,35.6519
  3843. 55.4875,35.5563
  3844. 55.4333,35.4752
  3845. 55.3522,35.4210
  3846. 55.2566,35.4019
  3847. Z" />
  3848. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3849. d="M 54.3066,37.4769
  3850. 54.2109,37.4960
  3851. 54.1298,37.5502
  3852. 54.0756,37.6313
  3853. 54.0566,37.7269
  3854. 54.0566,38.4019
  3855. 54.0756,38.4976
  3856. 54.1298,38.5787
  3857. 54.2109,38.6329
  3858. 54.3066,38.6519
  3859. 55.2566,38.6519
  3860. 55.3522,38.6329
  3861. 55.4333,38.5787
  3862. 55.4875,38.4976
  3863. 55.5066,38.4019
  3864. 55.5066,37.7269
  3865. 55.4875,37.6313
  3866. 55.4333,37.5502
  3867. 55.3522,37.4960
  3868. 55.2566,37.4769
  3869. Z" />
  3870. <circle cx="33.0016" cy="6.9444" r="0.5000" />
  3871. <circle cx="33.3816" cy="52.6344" r="0.5000" />
  3872. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3873. d="M 54.3066,46.6094
  3874. 54.2109,46.6285
  3875. 54.1298,46.6827
  3876. 54.0756,46.7638
  3877. 54.0566,46.8594
  3878. 54.0566,47.5344
  3879. 54.0756,47.6301
  3880. 54.1298,47.7112
  3881. 54.2109,47.7654
  3882. 54.3066,47.7844
  3883. 55.2566,47.7844
  3884. 55.3522,47.7654
  3885. 55.4333,47.7112
  3886. 55.4875,47.6301
  3887. 55.5066,47.5344
  3888. 55.5066,46.8594
  3889. 55.4875,46.7638
  3890. 55.4333,46.6827
  3891. 55.3522,46.6285
  3892. 55.2566,46.6094
  3893. Z" />
  3894. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3895. d="M 54.3066,48.6844
  3896. 54.2109,48.7035
  3897. 54.1298,48.7577
  3898. 54.0756,48.8388
  3899. 54.0566,48.9344
  3900. 54.0566,49.6094
  3901. 54.0756,49.7051
  3902. 54.1298,49.7862
  3903. 54.2109,49.8404
  3904. 54.3066,49.8594
  3905. 55.2566,49.8594
  3906. 55.3522,49.8404
  3907. 55.4333,49.7862
  3908. 55.4875,49.7051
  3909. 55.5066,49.6094
  3910. 55.5066,48.9344
  3911. 55.4875,48.8388
  3912. 55.4333,48.7577
  3913. 55.3522,48.7035
  3914. 55.2566,48.6844
  3915. Z" />
  3916. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3917. d="M 42.2066,23.4594
  3918. 42.1875,23.3638
  3919. 42.1333,23.2827
  3920. 42.0522,23.2285
  3921. 41.9566,23.2094
  3922. 39.9566,23.2094
  3923. 39.8609,23.2285
  3924. 39.7798,23.2827
  3925. 39.7256,23.3638
  3926. 39.7066,23.4594
  3927. 39.7066,24.7594
  3928. 39.7256,24.8551
  3929. 39.7798,24.9362
  3930. 39.8609,24.9904
  3931. 39.9566,25.0094
  3932. 41.9566,25.0094
  3933. 42.0522,24.9904
  3934. 42.1333,24.9362
  3935. 42.1875,24.8551
  3936. 42.2066,24.7594
  3937. Z" />
  3938. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3939. d="M 38.2066,23.4594
  3940. 38.1875,23.3638
  3941. 38.1333,23.2827
  3942. 38.0522,23.2285
  3943. 37.9566,23.2094
  3944. 35.9566,23.2094
  3945. 35.8609,23.2285
  3946. 35.7798,23.2827
  3947. 35.7256,23.3638
  3948. 35.7066,23.4594
  3949. 35.7066,24.7594
  3950. 35.7256,24.8551
  3951. 35.7798,24.9362
  3952. 35.8609,24.9904
  3953. 35.9566,25.0094
  3954. 37.9566,25.0094
  3955. 38.0522,24.9904
  3956. 38.1333,24.9362
  3957. 38.1875,24.8551
  3958. 38.2066,24.7594
  3959. Z" />
  3960. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3961. d="M 20.9266,7.5444
  3962. 20.9456,7.6401
  3963. 20.9998,7.7212
  3964. 21.0809,7.7754
  3965. 21.1766,7.7944
  3966. 21.8766,7.7944
  3967. 21.9722,7.7754
  3968. 22.0533,7.7212
  3969. 22.1075,7.6401
  3970. 22.1266,7.5444
  3971. 22.1266,6.6444
  3972. 22.1075,6.5488
  3973. 22.0533,6.4677
  3974. 21.9722,6.4135
  3975. 21.8766,6.3944
  3976. 21.1766,6.3944
  3977. 21.0809,6.4135
  3978. 20.9998,6.4677
  3979. 20.9456,6.5488
  3980. 20.9266,6.6444
  3981. Z" />
  3982. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  3983. d="M 22.9266,7.5444
  3984. 22.9456,7.6401
  3985. 22.9998,7.7212
  3986. 23.0809,7.7754
  3987. 23.1766,7.7944
  3988. 23.8766,7.7944
  3989. 23.9722,7.7754
  3990. 24.0533,7.7212
  3991. 24.1075,7.6401
  3992. 24.1266,7.5444
  3993. 24.1266,6.6444
  3994. 24.1075,6.5488
  3995. 24.0533,6.4677
  3996. 23.9722,6.4135
  3997. 23.8766,6.3944
  3998. 23.1766,6.3944
  3999. 23.0809,6.4135
  4000. 22.9998,6.4677
  4001. 22.9456,6.5488
  4002. 22.9266,6.6444
  4003. Z" />
  4004. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4005. d="M 53.4316,35.9144
  4006. 53.4247,35.8800
  4007. 53.4052,35.8508
  4008. 53.3760,35.8313
  4009. 53.3416,35.8244
  4010. 52.0216,35.8244
  4011. 51.9871,35.8313
  4012. 51.9579,35.8508
  4013. 51.9384,35.8800
  4014. 51.9316,35.9144
  4015. 51.9316,36.6344
  4016. 51.9384,36.6689
  4017. 51.9579,36.6981
  4018. 51.9871,36.7176
  4019. 52.0216,36.7244
  4020. 53.3416,36.7244
  4021. 53.3760,36.7176
  4022. 53.4052,36.6981
  4023. 53.4247,36.6689
  4024. 53.4316,36.6344
  4025. Z" />
  4026. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4027. d="M 53.4316,39.2144
  4028. 53.4247,39.1800
  4029. 53.4052,39.1508
  4030. 53.3760,39.1313
  4031. 53.3416,39.1244
  4032. 52.0216,39.1244
  4033. 51.9871,39.1313
  4034. 51.9579,39.1508
  4035. 51.9384,39.1800
  4036. 51.9316,39.2144
  4037. 51.9316,39.9344
  4038. 51.9384,39.9689
  4039. 51.9579,39.9981
  4040. 51.9871,40.0176
  4041. 52.0216,40.0244
  4042. 53.3416,40.0244
  4043. 53.3760,40.0176
  4044. 53.4052,39.9981
  4045. 53.4247,39.9689
  4046. 53.4316,39.9344
  4047. Z" />
  4048. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4049. d="M 48.5316,39.2144
  4050. 48.5247,39.1800
  4051. 48.5052,39.1508
  4052. 48.4760,39.1313
  4053. 48.4416,39.1244
  4054. 47.1216,39.1244
  4055. 47.0871,39.1313
  4056. 47.0579,39.1508
  4057. 47.0384,39.1800
  4058. 47.0316,39.2144
  4059. 47.0316,39.9344
  4060. 47.0384,39.9689
  4061. 47.0579,39.9981
  4062. 47.0871,40.0176
  4063. 47.1216,40.0244
  4064. 48.4416,40.0244
  4065. 48.4760,40.0176
  4066. 48.5052,39.9981
  4067. 48.5247,39.9689
  4068. 48.5316,39.9344
  4069. Z" />
  4070. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4071. d="M 48.5316,35.9144
  4072. 48.5247,35.8800
  4073. 48.5052,35.8508
  4074. 48.4760,35.8313
  4075. 48.4416,35.8244
  4076. 47.1216,35.8244
  4077. 47.0871,35.8313
  4078. 47.0579,35.8508
  4079. 47.0384,35.8800
  4080. 47.0316,35.9144
  4081. 47.0316,36.6344
  4082. 47.0384,36.6689
  4083. 47.0579,36.6981
  4084. 47.0871,36.7176
  4085. 47.1216,36.7244
  4086. 48.4416,36.7244
  4087. 48.4760,36.7176
  4088. 48.5052,36.6981
  4089. 48.5247,36.6689
  4090. 48.5316,36.6344
  4091. Z" />
  4092. <circle cx="8.0016" cy="46.5444" r="0.5000" />
  4093. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4094. d="M 8.3391,52.3694
  4095. 8.3581,52.4651
  4096. 8.4123,52.5462
  4097. 8.4934,52.6004
  4098. 8.5891,52.6194
  4099. 9.2641,52.6194
  4100. 9.3597,52.6004
  4101. 9.4408,52.5462
  4102. 9.4950,52.4651
  4103. 9.5141,52.3694
  4104. 9.5141,51.4194
  4105. 9.4950,51.3238
  4106. 9.4408,51.2427
  4107. 9.3597,51.1885
  4108. 9.2641,51.1694
  4109. 8.5891,51.1694
  4110. 8.4934,51.1885
  4111. 8.4123,51.2427
  4112. 8.3581,51.3238
  4113. 8.3391,51.4194
  4114. Z" />
  4115. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4116. d="M 10.4141,52.3694
  4117. 10.4331,52.4651
  4118. 10.4873,52.5462
  4119. 10.5684,52.6004
  4120. 10.6641,52.6194
  4121. 11.3391,52.6194
  4122. 11.4347,52.6004
  4123. 11.5158,52.5462
  4124. 11.5700,52.4651
  4125. 11.5891,52.3694
  4126. 11.5891,51.4194
  4127. 11.5700,51.3238
  4128. 11.5158,51.2427
  4129. 11.4347,51.1885
  4130. 11.3391,51.1694
  4131. 10.6641,51.1694
  4132. 10.5684,51.1885
  4133. 10.4873,51.2427
  4134. 10.4331,51.3238
  4135. 10.4141,51.4194
  4136. Z" />
  4137. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4138. d="M 23.0516,14.8444
  4139. 22.9559,14.8635
  4140. 22.8748,14.9177
  4141. 22.8206,14.9988
  4142. 22.8016,15.0944
  4143. 22.8016,15.7944
  4144. 22.8206,15.8901
  4145. 22.8748,15.9712
  4146. 22.9559,16.0254
  4147. 23.0516,16.0444
  4148. 23.9516,16.0444
  4149. 24.0472,16.0254
  4150. 24.1283,15.9712
  4151. 24.1825,15.8901
  4152. 24.2016,15.7944
  4153. 24.2016,15.0944
  4154. 24.1825,14.9988
  4155. 24.1283,14.9177
  4156. 24.0472,14.8635
  4157. 23.9516,14.8444
  4158. Z" />
  4159. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4160. d="M 23.0516,16.8444
  4161. 22.9559,16.8635
  4162. 22.8748,16.9177
  4163. 22.8206,16.9988
  4164. 22.8016,17.0944
  4165. 22.8016,17.7944
  4166. 22.8206,17.8901
  4167. 22.8748,17.9712
  4168. 22.9559,18.0254
  4169. 23.0516,18.0444
  4170. 23.9516,18.0444
  4171. 24.0472,18.0254
  4172. 24.1283,17.9712
  4173. 24.1825,17.8901
  4174. 24.2016,17.7944
  4175. 24.2016,17.0944
  4176. 24.1825,16.9988
  4177. 24.1283,16.9177
  4178. 24.0472,16.8635
  4179. 23.9516,16.8444
  4180. Z" />
  4181. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4182. d="M 9.1266,24.6569
  4183. 9.0309,24.6760
  4184. 8.9498,24.7302
  4185. 8.8956,24.8113
  4186. 8.8766,24.9069
  4187. 8.8766,25.5819
  4188. 8.8956,25.6776
  4189. 8.9498,25.7587
  4190. 9.0309,25.8129
  4191. 9.1266,25.8319
  4192. 10.0766,25.8319
  4193. 10.1722,25.8129
  4194. 10.2533,25.7587
  4195. 10.3075,25.6776
  4196. 10.3266,25.5819
  4197. 10.3266,24.9069
  4198. 10.3075,24.8113
  4199. 10.2533,24.7302
  4200. 10.1722,24.6760
  4201. 10.0766,24.6569
  4202. Z" />
  4203. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4204. d="M 9.1266,26.7319
  4205. 9.0309,26.7510
  4206. 8.9498,26.8052
  4207. 8.8956,26.8863
  4208. 8.8766,26.9819
  4209. 8.8766,27.6569
  4210. 8.8956,27.7526
  4211. 8.9498,27.8337
  4212. 9.0309,27.8879
  4213. 9.1266,27.9069
  4214. 10.0766,27.9069
  4215. 10.1722,27.8879
  4216. 10.2533,27.8337
  4217. 10.3075,27.7526
  4218. 10.3266,27.6569
  4219. 10.3266,26.9819
  4220. 10.3075,26.8863
  4221. 10.2533,26.8052
  4222. 10.1722,26.7510
  4223. 10.0766,26.7319
  4224. Z" />
  4225. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4226. d="M 30.1516,14.8444
  4227. 30.1325,14.7488
  4228. 30.0783,14.6677
  4229. 29.9972,14.6135
  4230. 29.9016,14.5944
  4231. 29.2266,14.5944
  4232. 29.1309,14.6135
  4233. 29.0498,14.6677
  4234. 28.9956,14.7488
  4235. 28.9766,14.8444
  4236. 28.9766,15.7944
  4237. 28.9956,15.8901
  4238. 29.0498,15.9712
  4239. 29.1309,16.0254
  4240. 29.2266,16.0444
  4241. 29.9016,16.0444
  4242. 29.9972,16.0254
  4243. 30.0783,15.9712
  4244. 30.1325,15.8901
  4245. 30.1516,15.7944
  4246. Z" />
  4247. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4248. d="M 28.0766,14.8444
  4249. 28.0575,14.7488
  4250. 28.0033,14.6677
  4251. 27.9222,14.6135
  4252. 27.8266,14.5944
  4253. 27.1516,14.5944
  4254. 27.0559,14.6135
  4255. 26.9748,14.6677
  4256. 26.9206,14.7488
  4257. 26.9016,14.8444
  4258. 26.9016,15.7944
  4259. 26.9206,15.8901
  4260. 26.9748,15.9712
  4261. 27.0559,16.0254
  4262. 27.1516,16.0444
  4263. 27.8266,16.0444
  4264. 27.9222,16.0254
  4265. 28.0033,15.9712
  4266. 28.0575,15.8901
  4267. 28.0766,15.7944
  4268. Z" />
  4269. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4270. d="M 16.2016,54.6444
  4271. 16.1825,54.5488
  4272. 16.1283,54.4677
  4273. 16.0472,54.4135
  4274. 15.9516,54.3944
  4275. 15.3266,54.3944
  4276. 15.2309,54.4135
  4277. 15.1498,54.4677
  4278. 15.0956,54.5488
  4279. 15.0766,54.6444
  4280. 15.0766,55.8944
  4281. 15.0956,55.9901
  4282. 15.1498,56.0712
  4283. 15.2309,56.1254
  4284. 15.3266,56.1444
  4285. 15.9516,56.1444
  4286. 16.0472,56.1254
  4287. 16.1283,56.0712
  4288. 16.1825,55.9901
  4289. 16.2016,55.8944
  4290. Z" />
  4291. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4292. d="M 13.2766,54.6444
  4293. 13.2575,54.5488
  4294. 13.2033,54.4677
  4295. 13.1222,54.4135
  4296. 13.0266,54.3944
  4297. 12.4016,54.3944
  4298. 12.3059,54.4135
  4299. 12.2248,54.4677
  4300. 12.1706,54.5488
  4301. 12.1516,54.6444
  4302. 12.1516,55.8944
  4303. 12.1706,55.9901
  4304. 12.2248,56.0712
  4305. 12.3059,56.1254
  4306. 12.4016,56.1444
  4307. 13.0266,56.1444
  4308. 13.1222,56.1254
  4309. 13.2033,56.0712
  4310. 13.2575,55.9901
  4311. 13.2766,55.8944
  4312. Z" />
  4313. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4314. d="M 54.3166,52.1894
  4315. 54.2209,52.2085
  4316. 54.1398,52.2627
  4317. 54.0856,52.3438
  4318. 54.0666,52.4394
  4319. 54.0666,53.1144
  4320. 54.0856,53.2101
  4321. 54.1398,53.2912
  4322. 54.2209,53.3454
  4323. 54.3166,53.3644
  4324. 55.2666,53.3644
  4325. 55.3622,53.3454
  4326. 55.4433,53.2912
  4327. 55.4975,53.2101
  4328. 55.5166,53.1144
  4329. 55.5166,52.4394
  4330. 55.4975,52.3438
  4331. 55.4433,52.2627
  4332. 55.3622,52.2085
  4333. 55.2666,52.1894
  4334. Z" />
  4335. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4336. d="M 54.3166,54.2644
  4337. 54.2209,54.2835
  4338. 54.1398,54.3377
  4339. 54.0856,54.4188
  4340. 54.0666,54.5144
  4341. 54.0666,55.1894
  4342. 54.0856,55.2851
  4343. 54.1398,55.3662
  4344. 54.2209,55.4204
  4345. 54.3166,55.4394
  4346. 55.2666,55.4394
  4347. 55.3622,55.4204
  4348. 55.4433,55.3662
  4349. 55.4975,55.2851
  4350. 55.5166,55.1894
  4351. 55.5166,54.5144
  4352. 55.4975,54.4188
  4353. 55.4433,54.3377
  4354. 55.3622,54.2835
  4355. 55.2666,54.2644
  4356. Z" />
  4357. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4358. d="M 28.7016,21.1444
  4359. 28.6825,21.0488
  4360. 28.6283,20.9677
  4361. 28.5472,20.9135
  4362. 28.4516,20.8944
  4363. 27.7766,20.8944
  4364. 27.6809,20.9135
  4365. 27.5998,20.9677
  4366. 27.5456,21.0488
  4367. 27.5266,21.1444
  4368. 27.5266,22.0944
  4369. 27.5456,22.1901
  4370. 27.5998,22.2712
  4371. 27.6809,22.3254
  4372. 27.7766,22.3444
  4373. 28.4516,22.3444
  4374. 28.5472,22.3254
  4375. 28.6283,22.2712
  4376. 28.6825,22.1901
  4377. 28.7016,22.0944
  4378. Z" />
  4379. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4380. d="M 26.6266,21.1444
  4381. 26.6075,21.0488
  4382. 26.5533,20.9677
  4383. 26.4722,20.9135
  4384. 26.3766,20.8944
  4385. 25.7016,20.8944
  4386. 25.6059,20.9135
  4387. 25.5248,20.9677
  4388. 25.4706,21.0488
  4389. 25.4516,21.1444
  4390. 25.4516,22.0944
  4391. 25.4706,22.1901
  4392. 25.5248,22.2712
  4393. 25.6059,22.3254
  4394. 25.7016,22.3444
  4395. 26.3766,22.3444
  4396. 26.4722,22.3254
  4397. 26.5533,22.2712
  4398. 26.6075,22.1901
  4399. 26.6266,22.0944
  4400. Z" />
  4401. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4402. d="M 11.6516,47.3694
  4403. 11.5559,47.3885
  4404. 11.4748,47.4427
  4405. 11.4206,47.5238
  4406. 11.4016,47.6194
  4407. 11.4016,48.2944
  4408. 11.4206,48.3901
  4409. 11.4748,48.4712
  4410. 11.5559,48.5254
  4411. 11.6516,48.5444
  4412. 12.6016,48.5444
  4413. 12.6972,48.5254
  4414. 12.7783,48.4712
  4415. 12.8325,48.3901
  4416. 12.8516,48.2944
  4417. 12.8516,47.6194
  4418. 12.8325,47.5238
  4419. 12.7783,47.4427
  4420. 12.6972,47.3885
  4421. 12.6016,47.3694
  4422. Z" />
  4423. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4424. d="M 11.6516,49.4444
  4425. 11.5559,49.4635
  4426. 11.4748,49.5177
  4427. 11.4206,49.5988
  4428. 11.4016,49.6944
  4429. 11.4016,50.3694
  4430. 11.4206,50.4651
  4431. 11.4748,50.5462
  4432. 11.5559,50.6004
  4433. 11.6516,50.6194
  4434. 12.6016,50.6194
  4435. 12.6972,50.6004
  4436. 12.7783,50.5462
  4437. 12.8325,50.4651
  4438. 12.8516,50.3694
  4439. 12.8516,49.6944
  4440. 12.8325,49.5988
  4441. 12.7783,49.5177
  4442. 12.6972,49.4635
  4443. 12.6016,49.4444
  4444. Z" />
  4445. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4446. d="M 22.9266,52.9444
  4447. 22.9075,52.8488
  4448. 22.8533,52.7677
  4449. 22.7722,52.7135
  4450. 22.6766,52.6944
  4451. 21.9766,52.6944
  4452. 21.8809,52.7135
  4453. 21.7998,52.7677
  4454. 21.7456,52.8488
  4455. 21.7266,52.9444
  4456. 21.7266,53.8444
  4457. 21.7456,53.9401
  4458. 21.7998,54.0212
  4459. 21.8809,54.0754
  4460. 21.9766,54.0944
  4461. 22.6766,54.0944
  4462. 22.7722,54.0754
  4463. 22.8533,54.0212
  4464. 22.9075,53.9401
  4465. 22.9266,53.8444
  4466. Z" />
  4467. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4468. d="M 20.9266,52.9444
  4469. 20.9075,52.8488
  4470. 20.8533,52.7677
  4471. 20.7722,52.7135
  4472. 20.6766,52.6944
  4473. 19.9766,52.6944
  4474. 19.8809,52.7135
  4475. 19.7998,52.7677
  4476. 19.7456,52.8488
  4477. 19.7266,52.9444
  4478. 19.7266,53.8444
  4479. 19.7456,53.9401
  4480. 19.7998,54.0212
  4481. 19.8809,54.0754
  4482. 19.9766,54.0944
  4483. 20.6766,54.0944
  4484. 20.7722,54.0754
  4485. 20.8533,54.0212
  4486. 20.9075,53.9401
  4487. 20.9266,53.8444
  4488. Z" />
  4489. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4490. d="M 42.1916,44.5694
  4491. 42.1725,44.4738
  4492. 42.1183,44.3927
  4493. 42.0372,44.3385
  4494. 41.9416,44.3194
  4495. 39.9416,44.3194
  4496. 39.8459,44.3385
  4497. 39.7648,44.3927
  4498. 39.7106,44.4738
  4499. 39.6916,44.5694
  4500. 39.6916,45.8694
  4501. 39.7106,45.9651
  4502. 39.7648,46.0462
  4503. 39.8459,46.1004
  4504. 39.9416,46.1194
  4505. 41.9416,46.1194
  4506. 42.0372,46.1004
  4507. 42.1183,46.0462
  4508. 42.1725,45.9651
  4509. 42.1916,45.8694
  4510. Z" />
  4511. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4512. d="M 38.1916,44.5694
  4513. 38.1725,44.4738
  4514. 38.1183,44.3927
  4515. 38.0372,44.3385
  4516. 37.9416,44.3194
  4517. 35.9416,44.3194
  4518. 35.8459,44.3385
  4519. 35.7648,44.3927
  4520. 35.7106,44.4738
  4521. 35.6916,44.5694
  4522. 35.6916,45.8694
  4523. 35.7106,45.9651
  4524. 35.7648,46.0462
  4525. 35.8459,46.1004
  4526. 35.9416,46.1194
  4527. 37.9416,46.1194
  4528. 38.0372,46.1004
  4529. 38.1183,46.0462
  4530. 38.1725,45.9651
  4531. 38.1916,45.8694
  4532. Z" />
  4533. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4534. d="M 35.8266,20.7194
  4535. 35.9222,20.7004
  4536. 36.0033,20.6462
  4537. 36.0575,20.5651
  4538. 36.0766,20.4694
  4539. 36.0766,19.7694
  4540. 36.0575,19.6738
  4541. 36.0033,19.5927
  4542. 35.9222,19.5385
  4543. 35.8266,19.5194
  4544. 34.9266,19.5194
  4545. 34.8309,19.5385
  4546. 34.7498,19.5927
  4547. 34.6956,19.6738
  4548. 34.6766,19.7694
  4549. 34.6766,20.4694
  4550. 34.6956,20.5651
  4551. 34.7498,20.6462
  4552. 34.8309,20.7004
  4553. 34.9266,20.7194
  4554. Z" />
  4555. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4556. d="M 35.8266,18.7194
  4557. 35.9222,18.7004
  4558. 36.0033,18.6462
  4559. 36.0575,18.5651
  4560. 36.0766,18.4694
  4561. 36.0766,17.7694
  4562. 36.0575,17.6738
  4563. 36.0033,17.5927
  4564. 35.9222,17.5385
  4565. 35.8266,17.5194
  4566. 34.9266,17.5194
  4567. 34.8309,17.5385
  4568. 34.7498,17.5927
  4569. 34.6956,17.6738
  4570. 34.6766,17.7694
  4571. 34.6766,18.4694
  4572. 34.6956,18.5651
  4573. 34.7498,18.6462
  4574. 34.8309,18.7004
  4575. 34.9266,18.7194
  4576. Z" />
  4577. <circle cx="20.9766" cy="21.7444" r="0.5000" />
  4578. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4579. d="M 49.7016,17.0694
  4580. 49.6442,17.0809
  4581. 49.5955,17.1134
  4582. 49.5630,17.1620
  4583. 49.5516,17.2194
  4584. 49.5516,18.2444
  4585. 49.5630,18.3018
  4586. 49.5955,18.3505
  4587. 49.6442,18.3830
  4588. 49.7016,18.3944
  4589. 50.0016,18.3944
  4590. 50.0590,18.3830
  4591. 50.1076,18.3505
  4592. 50.1401,18.3018
  4593. 50.1516,18.2444
  4594. 50.1516,17.2194
  4595. 50.1401,17.1620
  4596. 50.1076,17.1134
  4597. 50.0590,17.0809
  4598. 50.0016,17.0694
  4599. Z" />
  4600. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4601. d="M 50.6516,17.0694
  4602. 50.5942,17.0809
  4603. 50.5455,17.1134
  4604. 50.5130,17.1620
  4605. 50.5016,17.2194
  4606. 50.5016,18.2444
  4607. 50.5130,18.3018
  4608. 50.5455,18.3505
  4609. 50.5942,18.3830
  4610. 50.6516,18.3944
  4611. 50.9516,18.3944
  4612. 51.0090,18.3830
  4613. 51.0576,18.3505
  4614. 51.0901,18.3018
  4615. 51.1016,18.2444
  4616. 51.1016,17.2194
  4617. 51.0901,17.1620
  4618. 51.0576,17.1134
  4619. 51.0090,17.0809
  4620. 50.9516,17.0694
  4621. Z" />
  4622. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4623. d="M 51.6016,17.0694
  4624. 51.5442,17.0809
  4625. 51.4955,17.1134
  4626. 51.4630,17.1620
  4627. 51.4516,17.2194
  4628. 51.4516,18.2444
  4629. 51.4630,18.3018
  4630. 51.4955,18.3505
  4631. 51.5442,18.3830
  4632. 51.6016,18.3944
  4633. 51.9016,18.3944
  4634. 51.9590,18.3830
  4635. 52.0076,18.3505
  4636. 52.0401,18.3018
  4637. 52.0516,18.2444
  4638. 52.0516,17.2194
  4639. 52.0401,17.1620
  4640. 52.0076,17.1134
  4641. 51.9590,17.0809
  4642. 51.9016,17.0694
  4643. Z" />
  4644. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4645. d="M 51.6016,19.3444
  4646. 51.5442,19.3559
  4647. 51.4955,19.3884
  4648. 51.4630,19.4370
  4649. 51.4516,19.4944
  4650. 51.4516,20.5194
  4651. 51.4630,20.5768
  4652. 51.4955,20.6255
  4653. 51.5442,20.6580
  4654. 51.6016,20.6694
  4655. 51.9016,20.6694
  4656. 51.9590,20.6580
  4657. 52.0076,20.6255
  4658. 52.0401,20.5768
  4659. 52.0516,20.5194
  4660. 52.0516,19.4944
  4661. 52.0401,19.4370
  4662. 52.0076,19.3884
  4663. 51.9590,19.3559
  4664. 51.9016,19.3444
  4665. Z" />
  4666. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4667. d="M 50.6516,19.3444
  4668. 50.5942,19.3559
  4669. 50.5455,19.3884
  4670. 50.5130,19.4370
  4671. 50.5016,19.4944
  4672. 50.5016,20.5194
  4673. 50.5130,20.5768
  4674. 50.5455,20.6255
  4675. 50.5942,20.6580
  4676. 50.6516,20.6694
  4677. 50.9516,20.6694
  4678. 51.0090,20.6580
  4679. 51.0576,20.6255
  4680. 51.0901,20.5768
  4681. 51.1016,20.5194
  4682. 51.1016,19.4944
  4683. 51.0901,19.4370
  4684. 51.0576,19.3884
  4685. 51.0090,19.3559
  4686. 50.9516,19.3444
  4687. Z" />
  4688. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  4689. d="M 49.7016,19.3444
  4690. 49.6442,19.3559
  4691. 49.5955,19.3884
  4692. 49.5630,19.4370
  4693. 49.5516,19.4944
  4694. 49.5516,20.5194
  4695. 49.5630,20.5768
  4696. 49.5955,20.6255
  4697. 49.6442,20.6580
  4698. 49.7016,20.6694
  4699. 50.0016,20.6694
  4700. 50.0590,20.6580
  4701. 50.1076,20.6255
  4702. 50.1401,20.5768
  4703. 50.1516,20.5194
  4704. 50.1516,19.4944
  4705. 50.1401,19.4370
  4706. 50.1076,19.3884
  4707. 50.0590,19.3559
  4708. 50.0016,19.3444
  4709. Z" />
  4710. <circle cx="47.4516" cy="27.4944" r="0.7000" />
  4711. <circle cx="45.8766" cy="11.1069" r="0.7000" />
  4712. <circle cx="24.4016" cy="40.5444" r="0.7000" />
  4713. <circle cx="27.2016" cy="54.0194" r="0.7000" />
  4714. <circle cx="41.4016" cy="12.7444" r="0.7000" />
  4715. <circle cx="29.7016" cy="27.4444" r="0.7000" />
  4716. <circle cx="34.1016" cy="45.0694" r="0.7000" />
  4717. <circle cx="41.4016" cy="9.0444" r="0.7000" />
  4718. <circle cx="44.2016" cy="37.1944" r="0.7000" />
  4719. <circle cx="34.7266" cy="33.4194" r="0.7000" />
  4720. <circle cx="27.2016" cy="51.9194" r="0.7000" />
  4721. <circle cx="10.5766" cy="54.0194" r="0.7000" />
  4722. <circle cx="44.2016" cy="28.1444" r="0.7000" />
  4723. <circle cx="19.6016" cy="38.9444" r="0.7000" />
  4724. <circle cx="12.2016" cy="35.1444" r="0.7000" />
  4725. <circle cx="44.1516" cy="45.0694" r="0.7000" />
  4726. <circle cx="8.3016" cy="55.2944" r="0.7000" />
  4727. <circle cx="16.3016" cy="15.4444" r="0.7000" />
  4728. <circle cx="7.6016" cy="23.7444" r="0.7000" />
  4729. <circle cx="5.6516" cy="55.2444" r="0.7000" />
  4730. <circle cx="13.0266" cy="15.4444" r="0.7000" />
  4731. <circle cx="1.7016" cy="29.6444" r="0.7000" />
  4732. <circle cx="16.1766" cy="42.9444" r="0.7000" />
  4733. <circle cx="14.0516" cy="40.7944" r="0.7000" />
  4734. <circle cx="29.6766" cy="34.1694" r="0.7000" />
  4735. <circle cx="26.6266" cy="34.1694" r="0.7000" />
  4736. <circle cx="33.3516" cy="22.9944" r="0.7000" />
  4737. <circle cx="15.6766" cy="22.9444" r="0.7000" />
  4738. <circle cx="45.8266" cy="29.5444" r="0.7000" />
  4739. <circle cx="13.5416" cy="29.4794" r="0.7000" />
  4740. </g>
  4741. <g style="fill:none;
  4742. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4743. stroke-linecap:round; stroke-linejoin:round;">
  4744. <path d="M7.8516 20.0944
  4745. L7.8016 20.0444
  4746. " />
  4747. <path d="M7.8016 20.0444
  4748. L7.8016 17.2194
  4749. " />
  4750. <path d="M7.8016 17.2194
  4751. L7.4266 16.8444
  4752. " />
  4753. <path d="M7.6016 23.7444
  4754. L7.4516 23.8944
  4755. " />
  4756. <path d="M7.4516 23.8944
  4757. L7.4516 25.8319
  4758. " />
  4759. <path d="M7.4516 25.8319
  4760. L8.0391 25.2444
  4761. " />
  4762. <path d="M8.0391 25.2444
  4763. L9.6016 25.2444
  4764. " />
  4765. <path d="M7.8516 30.7744
  4766. L7.8516 29.1569
  4767. " />
  4768. </g>
  4769. <g style="fill:none;
  4770. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4771. stroke-linecap:round; stroke-linejoin:round;">
  4772. <path d="M56.4991 47.1969
  4773. L57.6016 46.0944
  4774. " />
  4775. <path d="M54.7916 52.7769
  4776. L56.3691 52.7769
  4777. " />
  4778. <path d="M29.5641 15.2719
  4779. L31.1166 13.7194
  4780. " />
  4781. </g>
  4782. <g style="fill:none;
  4783. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4784. stroke-linecap:round; stroke-linejoin:round;">
  4785. <path d="M31.0266 19.3294
  4786. L31.1166 19.4194
  4787. " />
  4788. <path d="M31.0266 21.4694
  4789. L31.0266 19.5094
  4790. " />
  4791. <path d="M50.0641 13.9069
  4792. L47.9266 13.9069
  4793. " />
  4794. </g>
  4795. <g style="fill:none;
  4796. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4797. stroke-linecap:round; stroke-linejoin:round;">
  4798. <path d="M57.6016 46.0944
  4799. L57.6016 40.2694
  4800. " />
  4801. <path d="M29.5641 15.3194
  4802. L29.5641 15.2719
  4803. " />
  4804. <path d="M50.1141 9.9944
  4805. L50.1016 9.9819
  4806. " />
  4807. <path d="M57.6016 51.5444
  4808. L57.6016 46.0944
  4809. " />
  4810. <path d="M32.7516 6.9444
  4811. L32.7516 12.0844
  4812. " />
  4813. </g>
  4814. <g style="fill:none;
  4815. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4816. stroke-linecap:round; stroke-linejoin:round;">
  4817. <path d="M47.9266 13.9069
  4818. L47.7516 13.7319
  4819. " />
  4820. </g>
  4821. <g style="fill:none;
  4822. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4823. stroke-linecap:round; stroke-linejoin:round;">
  4824. <path d="M45.8766 11.1069
  4825. L48.2516 11.1069
  4826. " />
  4827. <path d="M48.2516 11.1069
  4828. L48.2516 13.2319
  4829. " />
  4830. <path d="M56.2741 41.5969
  4831. L57.6016 40.2694
  4832. " />
  4833. <path d="M54.7916 52.7769
  4834. L52.9691 52.7769
  4835. " />
  4836. <path d="M57.6016 40.2694
  4837. L57.6016 37.2194
  4838. " />
  4839. <path d="M34.2391 11.1069
  4840. L33.7291 11.1069
  4841. " />
  4842. <path d="M50.1016 9.9819
  4843. L48.9766 11.1069
  4844. " />
  4845. <path d="M50.6766 34.2694
  4846. L52.6816 36.2744
  4847. " />
  4848. <path d="M47.4516 27.4944
  4849. L47.4516 33.0444
  4850. " />
  4851. <path d="M52.9691 52.7769
  4852. L52.6816 53.0644
  4853. " />
  4854. <path d="M5.7516 9.9444
  4855. L3.9516 9.9444
  4856. " />
  4857. <path d="M34.2391 11.1069
  4858. L45.8766 11.1069
  4859. " />
  4860. <path d="M33.7291 11.1069
  4861. L32.7516 12.0844
  4862. " />
  4863. <path d="M54.7816 47.1969
  4864. L56.4991 47.1969
  4865. " />
  4866. <path d="M30.5766 4.7694
  4867. L32.7516 6.9444
  4868. " />
  4869. <path d="M5.7516 7.0944
  4870. L5.7516 9.9444
  4871. " />
  4872. <path d="M56.3691 52.7769
  4873. L57.6016 51.5444
  4874. " />
  4875. </g>
  4876. <g style="fill:none;
  4877. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4878. stroke-linecap:round; stroke-linejoin:round;">
  4879. <path d="M31.0266 19.5094
  4880. L31.1166 19.4194
  4881. " />
  4882. </g>
  4883. <g style="fill:none;
  4884. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4885. stroke-linecap:round; stroke-linejoin:round;">
  4886. <path d="M52.9391 47.1969
  4887. L52.6716 47.4644
  4888. " />
  4889. <path d="M56.6566 36.2744
  4890. L52.6816 36.2744
  4891. " />
  4892. <path d="M52.9591 41.5969
  4893. L52.6816 41.8744
  4894. " />
  4895. <path d="M6.0016 6.8444
  4896. L8.0766 4.7694
  4897. " />
  4898. <path d="M50.1141 11.9819
  4899. L50.1141 9.9944
  4900. " />
  4901. <path d="M57.6016 37.2194
  4902. L56.6566 36.2744
  4903. " />
  4904. <path d="M54.7816 47.1969
  4905. L52.9391 47.1969
  4906. " />
  4907. <path d="M6.0016 6.8444
  4908. L5.7516 7.0944
  4909. " />
  4910. <path d="M3.9516 9.9444
  4911. L3.6266 9.6194
  4912. " />
  4913. <path d="M31.1166 13.7194
  4914. L31.1166 19.4194
  4915. " />
  4916. <path d="M47.4516 33.0444
  4917. L48.6766 34.2694
  4918. " />
  4919. <path d="M54.8016 41.5969
  4920. L52.9591 41.5969
  4921. " />
  4922. <path d="M32.7516 12.0844
  4923. L31.1166 13.7194
  4924. " />
  4925. <path d="M54.8016 41.5969
  4926. L56.2741 41.5969
  4927. " />
  4928. <path d="M48.9766 11.1069
  4929. L48.2516 11.1069
  4930. " />
  4931. <path d="M8.0766 4.7694
  4932. L30.5766 4.7694
  4933. " />
  4934. <path d="M48.6766 34.2694
  4935. L50.6766 34.2694
  4936. " />
  4937. <path d="M48.2516 13.2319
  4938. L47.7516 13.7319
  4939. " />
  4940. </g>
  4941. <g style="fill:none;
  4942. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4943. stroke-linecap:round; stroke-linejoin:round;">
  4944. <path d="M26.0391 19.4169
  4945. L26.0366 19.4194
  4946. " />
  4947. <path d="M52.9016 18.8819
  4948. L53.5766 19.5569
  4949. " />
  4950. </g>
  4951. <g style="fill:none;
  4952. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4953. stroke-linecap:round; stroke-linejoin:round;">
  4954. <path d="M46.2466 50.7644
  4955. L44.1516 48.6694
  4956. " />
  4957. <path d="M51.4516 8.0819
  4958. L49.2016 8.0819
  4959. " />
  4960. </g>
  4961. <g style="fill:none;
  4962. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4963. stroke-linecap:round; stroke-linejoin:round;">
  4964. <path d="M15.6766 26.9394
  4965. L13.9816 26.9394
  4966. " />
  4967. </g>
  4968. <g style="fill:none;
  4969. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4970. stroke-linecap:round; stroke-linejoin:round;">
  4971. <path d="M4.0266 3.0444
  4972. L1.5516 5.5194
  4973. " />
  4974. </g>
  4975. <g style="fill:none;
  4976. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4977. stroke-linecap:round; stroke-linejoin:round;">
  4978. <path d="M26.0391 17.3194
  4979. L26.0391 19.4169
  4980. " />
  4981. <path d="M4.0766 23.9444
  4982. L3.4766 23.3444
  4983. " />
  4984. </g>
  4985. <g style="fill:none;
  4986. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  4987. stroke-linecap:round; stroke-linejoin:round;">
  4988. <path d="M47.7816 56.3644
  4989. L47.0216 56.3644
  4990. " />
  4991. <path d="M44.1516 53.4944
  4992. L44.1516 45.0694
  4993. " />
  4994. </g>
  4995. <g style="fill:none;
  4996. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  4997. stroke-linecap:round; stroke-linejoin:round;">
  4998. <path d="M11.6016 27.3069
  4999. L13.5891 27.3069
  5000. " />
  5001. </g>
  5002. <g style="fill:none;
  5003. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5004. stroke-linecap:round; stroke-linejoin:round;">
  5005. <path d="M35.4916 36.7094
  5006. L35.4916 37.4094
  5007. " />
  5008. </g>
  5009. <g style="fill:none;
  5010. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5011. stroke-linecap:round; stroke-linejoin:round;">
  5012. <path d="M3.4766 26.1694
  5013. L3.4766 23.3444
  5014. " />
  5015. <path d="M12.1266 51.3944
  5016. L11.6266 51.8944
  5017. " />
  5018. <path d="M29.7016 27.4444
  5019. L32.3516 27.4444
  5020. " />
  5021. <path d="M37.2516 37.2094
  5022. L35.6916 37.2094
  5023. " />
  5024. </g>
  5025. <g style="fill:none;
  5026. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5027. stroke-linecap:round; stroke-linejoin:round;">
  5028. <path d="M47.0216 56.3644
  5029. L44.1516 53.4944
  5030. " />
  5031. <path d="M44.2016 37.1944
  5032. L44.2016 45.0194
  5033. " />
  5034. </g>
  5035. <g style="fill:none;
  5036. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5037. stroke-linecap:round; stroke-linejoin:round;">
  5038. <path d="M26.0391 22.8069
  5039. L26.0391 21.6194
  5040. " />
  5041. <path d="M12.1266 50.0319
  5042. L12.1266 51.3944
  5043. " />
  5044. </g>
  5045. <g style="fill:none;
  5046. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5047. stroke-linecap:round; stroke-linejoin:round;">
  5048. <path d="M1.5516 9.6194
  5049. L1.5516 14.2194
  5050. " />
  5051. </g>
  5052. <g style="fill:none;
  5053. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5054. stroke-linecap:round; stroke-linejoin:round;">
  5055. <path d="M26.7766 23.5444
  5056. L26.0391 22.8069
  5057. " />
  5058. </g>
  5059. <g style="fill:none;
  5060. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5061. stroke-linecap:round; stroke-linejoin:round;">
  5062. <path d="M52.0266 23.8694
  5063. L50.0266 23.8694
  5064. " />
  5065. </g>
  5066. <g style="fill:none;
  5067. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5068. stroke-linecap:round; stroke-linejoin:round;">
  5069. <path d="M13.9816 26.9394
  5070. L13.6016 27.3194
  5071. " />
  5072. <path d="M6.2016 35.1444
  5073. L3.4766 32.4194
  5074. " />
  5075. </g>
  5076. <g style="fill:none;
  5077. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5078. stroke-linecap:round; stroke-linejoin:round;">
  5079. <path d="M36.2016 3.8444
  5080. L35.4016 3.0444
  5081. " />
  5082. </g>
  5083. <g style="fill:none;
  5084. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5085. stroke-linecap:round; stroke-linejoin:round;">
  5086. <path d="M50.8016 17.7319
  5087. L50.8016 16.5944
  5088. " />
  5089. <path d="M26.0016 50.6694
  5090. L24.3516 50.6694
  5091. " />
  5092. </g>
  5093. <g style="fill:none;
  5094. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5095. stroke-linecap:round; stroke-linejoin:round;">
  5096. <path d="M49.4716 43.4844
  5097. L47.7816 45.1744
  5098. " />
  5099. <path d="M34.5766 45.5444
  5100. L34.1016 45.0694
  5101. " />
  5102. <path d="M41.4141 9.0319
  5103. L41.4016 9.0444
  5104. " />
  5105. <path d="M52.1766 8.8069
  5106. L51.4516 8.0819
  5107. " />
  5108. <path d="M48.2516 9.0319
  5109. L41.4141 9.0319
  5110. " />
  5111. </g>
  5112. <g style="fill:none;
  5113. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5114. stroke-linecap:round; stroke-linejoin:round;">
  5115. <path d="M27.2016 56.0944
  5116. L27.2016 54.0194
  5117. " />
  5118. </g>
  5119. <g style="fill:none;
  5120. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5121. stroke-linecap:round; stroke-linejoin:round;">
  5122. <path d="M49.3916 37.9644
  5123. L47.7816 39.5744
  5124. " />
  5125. </g>
  5126. <g style="fill:none;
  5127. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5128. stroke-linecap:round; stroke-linejoin:round;">
  5129. <path d="M24.4016 40.5444
  5130. L22.8016 38.9444
  5131. " />
  5132. <path d="M27.4891 15.3194
  5133. L26.7266 15.3194
  5134. " />
  5135. </g>
  5136. <g style="fill:none;
  5137. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5138. stroke-linecap:round; stroke-linejoin:round;">
  5139. <path d="M36.2016 6.9444
  5140. L36.2016 3.8444
  5141. " />
  5142. <path d="M48.7391 25.1569
  5143. L50.0266 23.8694
  5144. " />
  5145. <path d="M47.7816 39.5744
  5146. L46.5816 39.5744
  5147. " />
  5148. </g>
  5149. <g style="fill:none;
  5150. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5151. stroke-linecap:round; stroke-linejoin:round;">
  5152. <path d="M29.7016 24.3194
  5153. L28.9266 23.5444
  5154. " />
  5155. <path d="M28.3016 28.4444
  5156. L28.7016 28.4444
  5157. " />
  5158. </g>
  5159. <g style="fill:none;
  5160. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5161. stroke-linecap:round; stroke-linejoin:round;">
  5162. <path d="M52.1891 11.9819
  5163. L53.5766 13.3694
  5164. " />
  5165. </g>
  5166. <g style="fill:none;
  5167. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5168. stroke-linecap:round; stroke-linejoin:round;">
  5169. <path d="M50.8016 17.7319
  5170. L50.8016 18.6069
  5171. " />
  5172. </g>
  5173. <g style="fill:none;
  5174. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5175. stroke-linecap:round; stroke-linejoin:round;">
  5176. <path d="M53.5766 23.4819
  5177. L53.1891 23.8694
  5178. " />
  5179. </g>
  5180. <g style="fill:none;
  5181. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5182. stroke-linecap:round; stroke-linejoin:round;">
  5183. <path d="M3.4766 23.3444
  5184. L3.4766 14.9944
  5185. " />
  5186. </g>
  5187. <g style="fill:none;
  5188. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5189. stroke-linecap:round; stroke-linejoin:round;">
  5190. <path d="M5.3516 16.8444
  5191. L5.3516 14.9444
  5192. " />
  5193. </g>
  5194. <g style="fill:none;
  5195. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5196. stroke-linecap:round; stroke-linejoin:round;">
  5197. <path d="M26.0391 16.0069
  5198. L26.0391 17.3194
  5199. " />
  5200. </g>
  5201. <g style="fill:none;
  5202. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5203. stroke-linecap:round; stroke-linejoin:round;">
  5204. <path d="M47.7716 50.7644
  5205. L46.2466 50.7644
  5206. " />
  5207. <path d="M5.3516 14.9444
  5208. L5.7516 14.5444
  5209. " />
  5210. <path d="M44.2016 27.9444
  5211. L45.4616 26.6844
  5212. " />
  5213. <path d="M54.8016 43.6719
  5214. L54.6141 43.4844
  5215. " />
  5216. <path d="M2.3266 14.9944
  5217. L3.4766 14.9944
  5218. " />
  5219. </g>
  5220. <g style="fill:none;
  5221. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5222. stroke-linecap:round; stroke-linejoin:round;">
  5223. <path d="M11.6016 27.3194
  5224. L11.6016 29.0444
  5225. " />
  5226. </g>
  5227. <g style="fill:none;
  5228. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5229. stroke-linecap:round; stroke-linejoin:round;">
  5230. <path d="M34.7266 35.9444
  5231. L35.4916 36.7094
  5232. " />
  5233. <path d="M35.4016 3.0444
  5234. L4.0266 3.0444
  5235. " />
  5236. </g>
  5237. <g style="fill:none;
  5238. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5239. stroke-linecap:round; stroke-linejoin:round;">
  5240. <path d="M24.0516 50.3694
  5241. L24.0516 45.4726
  5242. " />
  5243. </g>
  5244. <g style="fill:none;
  5245. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5246. stroke-linecap:round; stroke-linejoin:round;">
  5247. <path d="M54.6641 54.7244
  5248. L49.4216 54.7244
  5249. " />
  5250. </g>
  5251. <g style="fill:none;
  5252. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5253. stroke-linecap:round; stroke-linejoin:round;">
  5254. <path d="M11.6266 51.8944
  5255. L11.0016 51.8944
  5256. " />
  5257. <path d="M22.8016 38.9444
  5258. L19.6016 38.9444
  5259. " />
  5260. <path d="M4.6266 27.3194
  5261. L3.4766 26.1694
  5262. " />
  5263. </g>
  5264. <g style="fill:none;
  5265. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5266. stroke-linecap:round; stroke-linejoin:round;">
  5267. <path d="M54.7916 54.8519
  5268. L54.6641 54.7244
  5269. " />
  5270. </g>
  5271. <g style="fill:none;
  5272. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5273. stroke-linecap:round; stroke-linejoin:round;">
  5274. <path d="M36.8041 27.0444
  5275. L33.4266 27.0444
  5276. " />
  5277. <path d="M12.7016 52.9444
  5278. L11.6516 52.9444
  5279. " />
  5280. </g>
  5281. <g style="fill:none;
  5282. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5283. stroke-linecap:round; stroke-linejoin:round;">
  5284. <path d="M49.4216 54.7244
  5285. L47.7816 56.3644
  5286. " />
  5287. <path d="M54.6816 37.9644
  5288. L49.3916 37.9644
  5289. " />
  5290. <path d="M49.4216 49.1144
  5291. L47.7716 50.7644
  5292. " />
  5293. </g>
  5294. <g style="fill:none;
  5295. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5296. stroke-linecap:round; stroke-linejoin:round;">
  5297. <path d="M27.2016 49.4844
  5298. L27.2016 51.9194
  5299. " />
  5300. <path d="M34.5766 47.9344
  5301. L34.7716 47.7394
  5302. " />
  5303. </g>
  5304. <g style="fill:none;
  5305. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5306. stroke-linecap:round; stroke-linejoin:round;">
  5307. <path d="M48.0516 25.1569
  5308. L48.7391 25.1569
  5309. " />
  5310. <path d="M39.3016 6.9444
  5311. L36.2016 6.9444
  5312. " />
  5313. <path d="M44.2016 45.0194
  5314. L44.1516 45.0694
  5315. " />
  5316. </g>
  5317. <g style="fill:none;
  5318. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5319. stroke-linecap:round; stroke-linejoin:round;">
  5320. <path d="M4.1016 23.9444
  5321. L4.0766 23.9444
  5322. " />
  5323. <path d="M35.4766 16.2694
  5324. L37.0391 16.2694
  5325. " />
  5326. <path d="M24.3116 50.7094
  5327. L24.3516 50.6694
  5328. " />
  5329. <path d="M12.4016 51.8944
  5330. L11.0016 51.8944
  5331. " />
  5332. <path d="M32.3516 27.4444
  5333. L32.7516 27.0444
  5334. " />
  5335. <path d="M50.8016 18.6069
  5336. L51.0766 18.8819
  5337. " />
  5338. <path d="M9.6016 27.3194
  5339. L11.6016 27.3194
  5340. " />
  5341. </g>
  5342. <g style="fill:none;
  5343. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5344. stroke-linecap:round; stroke-linejoin:round;">
  5345. <path d="M34.7266 33.4194
  5346. L34.7266 35.9444
  5347. " />
  5348. <path d="M41.4016 12.7444
  5349. L39.0016 12.7444
  5350. " />
  5351. </g>
  5352. <g style="fill:none;
  5353. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5354. stroke-linecap:round; stroke-linejoin:round;">
  5355. <path d="M21.7966 50.7094
  5356. L24.3116 50.7094
  5357. " />
  5358. </g>
  5359. <g style="fill:none;
  5360. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5361. stroke-linecap:round; stroke-linejoin:round;">
  5362. <path d="M52.1766 9.9819
  5363. L52.1766 8.8069
  5364. " />
  5365. </g>
  5366. <g style="fill:none;
  5367. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5368. stroke-linecap:round; stroke-linejoin:round;">
  5369. <path d="M26.0391 19.4219
  5370. L26.0366 19.4194
  5371. " />
  5372. </g>
  5373. <g style="fill:none;
  5374. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5375. stroke-linecap:round; stroke-linejoin:round;">
  5376. <path d="M52.1891 11.9819
  5377. L52.1891 9.9944
  5378. " />
  5379. <path d="M49.2016 8.0819
  5380. L48.2516 9.0319
  5381. " />
  5382. <path d="M46.9891 25.1569
  5383. L48.0516 25.1569
  5384. " />
  5385. </g>
  5386. <g style="fill:none;
  5387. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5388. stroke-linecap:round; stroke-linejoin:round;">
  5389. <path d="M37.2116 26.6369
  5390. L36.8041 27.0444
  5391. " />
  5392. </g>
  5393. <g style="fill:none;
  5394. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5395. stroke-linecap:round; stroke-linejoin:round;">
  5396. <path d="M1.5516 5.5194
  5397. L1.5516 9.6194
  5398. " />
  5399. </g>
  5400. <g style="fill:none;
  5401. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5402. stroke-linecap:round; stroke-linejoin:round;">
  5403. <path d="M27.2016 51.8694
  5404. L26.0016 50.6694
  5405. " />
  5406. <path d="M50.8016 16.5944
  5407. L50.0641 15.8569
  5408. " />
  5409. <path d="M26.7266 15.3194
  5410. L26.0391 16.0069
  5411. " />
  5412. </g>
  5413. <g style="fill:none;
  5414. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5415. stroke-linecap:round; stroke-linejoin:round;">
  5416. <path d="M44.2016 28.1444
  5417. L44.2016 27.9444
  5418. " />
  5419. </g>
  5420. <g style="fill:none;
  5421. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5422. stroke-linecap:round; stroke-linejoin:round;">
  5423. <path d="M28.1516 48.5344
  5424. L27.2016 49.4844
  5425. " />
  5426. </g>
  5427. <g style="fill:none;
  5428. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5429. stroke-linecap:round; stroke-linejoin:round;">
  5430. <path d="M41.4016 9.0444
  5431. L39.3016 6.9444
  5432. " />
  5433. <path d="M34.5766 47.9344
  5434. L34.5766 45.5444
  5435. " />
  5436. </g>
  5437. <g style="fill:none;
  5438. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5439. stroke-linecap:round; stroke-linejoin:round;">
  5440. <path d="M11.6516 52.9444
  5441. L10.5766 54.0194
  5442. " />
  5443. <path d="M3.4766 32.4194
  5444. L3.4766 26.1694
  5445. " />
  5446. <path d="M12.2016 35.1444
  5447. L6.2016 35.1444
  5448. " />
  5449. <path d="M32.7516 27.0444
  5450. L33.4266 27.0444
  5451. " />
  5452. </g>
  5453. <g style="fill:none;
  5454. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5455. stroke-linecap:round; stroke-linejoin:round;">
  5456. <path d="M1.5516 14.2194
  5457. L2.3266 14.9944
  5458. " />
  5459. </g>
  5460. <g style="fill:none;
  5461. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5462. stroke-linecap:round; stroke-linejoin:round;">
  5463. <path d="M24.4016 36.9444
  5464. L24.4016 40.5444
  5465. " />
  5466. </g>
  5467. <g style="fill:none;
  5468. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5469. stroke-linecap:round; stroke-linejoin:round;">
  5470. <path d="M54.6141 43.4844
  5471. L49.4716 43.4844
  5472. " />
  5473. <path d="M54.7816 38.0644
  5474. L54.6816 37.9644
  5475. " />
  5476. <path d="M3.4766 14.9944
  5477. L5.3016 14.9944
  5478. " />
  5479. </g>
  5480. <g style="fill:none;
  5481. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5482. stroke-linecap:round; stroke-linejoin:round;">
  5483. <path d="M24.3516 50.6694
  5484. L24.0516 50.3694
  5485. " />
  5486. <path d="M37.0391 16.2694
  5487. L37.2366 16.0719
  5488. " />
  5489. <path d="M35.6916 37.2094
  5490. L35.4916 37.4094
  5491. " />
  5492. <path d="M29.7016 27.4444
  5493. L29.7016 24.3194
  5494. " />
  5495. </g>
  5496. <g style="fill:none;
  5497. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5498. stroke-linecap:round; stroke-linejoin:round;">
  5499. <path d="M54.6241 49.1144
  5500. L49.4216 49.1144
  5501. " />
  5502. <path d="M52.1891 9.9944
  5503. L52.1766 9.9819
  5504. " />
  5505. </g>
  5506. <g style="fill:none;
  5507. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5508. stroke-linecap:round; stroke-linejoin:round;">
  5509. <path d="M27.2016 54.0194
  5510. L27.2016 51.8694
  5511. " />
  5512. <path d="M12.7016 52.9444
  5513. L12.7016 52.1944
  5514. " />
  5515. </g>
  5516. <g style="fill:none;
  5517. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5518. stroke-linecap:round; stroke-linejoin:round;">
  5519. <path d="M53.5766 13.3694
  5520. L53.5766 23.4819
  5521. " />
  5522. <path d="M45.4616 26.6844
  5523. L46.9891 25.1569
  5524. " />
  5525. <path d="M46.5816 39.5744
  5526. L44.2016 37.1944
  5527. " />
  5528. </g>
  5529. <g style="fill:none;
  5530. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5531. stroke-linecap:round; stroke-linejoin:round;">
  5532. <path d="M22.1734 43.5944
  5533. L21.8016 43.5944
  5534. " />
  5535. <path d="M12.7016 52.1944
  5536. L12.4016 51.8944
  5537. " />
  5538. <path d="M13.5891 27.3069
  5539. L13.6016 27.3194
  5540. " />
  5541. </g>
  5542. <g style="fill:none;
  5543. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5544. stroke-linecap:round; stroke-linejoin:round;">
  5545. <path d="M44.2566 45.1744
  5546. L44.1516 45.0694
  5547. " />
  5548. <path d="M39.0016 12.7444
  5549. L35.4766 16.2694
  5550. " />
  5551. </g>
  5552. <g style="fill:none;
  5553. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5554. stroke-linecap:round; stroke-linejoin:round;">
  5555. <path d="M28.7016 28.4444
  5556. L29.7016 27.4444
  5557. " />
  5558. <path d="M9.6016 27.3194
  5559. L4.6266 27.3194
  5560. " />
  5561. <path d="M51.0766 18.8819
  5562. L52.9016 18.8819
  5563. " />
  5564. <path d="M26.0391 21.6194
  5565. L26.0391 19.4219
  5566. " />
  5567. <path d="M26.0391 22.8069
  5568. L26.6266 23.3944
  5569. " />
  5570. </g>
  5571. <g style="fill:none;
  5572. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5573. stroke-linecap:round; stroke-linejoin:round;">
  5574. <path d="M53.1891 23.8694
  5575. L52.0266 23.8694
  5576. " />
  5577. </g>
  5578. <g style="fill:none;
  5579. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5580. stroke-linecap:round; stroke-linejoin:round;">
  5581. <path d="M31.0266 23.5444
  5582. L26.7766 23.5444
  5583. " />
  5584. </g>
  5585. <g style="fill:none;
  5586. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5587. stroke-linecap:round; stroke-linejoin:round;">
  5588. <path d="M54.7816 49.2719
  5589. L54.6241 49.1144
  5590. " />
  5591. </g>
  5592. <g style="fill:none;
  5593. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5594. stroke-linecap:round; stroke-linejoin:round;">
  5595. <path d="M24.0516 45.4726
  5596. L22.1734 43.5944
  5597. " />
  5598. </g>
  5599. <g style="fill:none;
  5600. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5601. stroke-linecap:round; stroke-linejoin:round;">
  5602. <path d="M44.4016 26.6844
  5603. L45.4616 26.6844
  5604. " />
  5605. <path d="M47.7816 45.1744
  5606. L44.2566 45.1744
  5607. " />
  5608. </g>
  5609. <g style="fill:none;
  5610. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5611. stroke-linecap:round; stroke-linejoin:round;">
  5612. <path d="M34.7716 47.7394
  5613. L37.2266 47.7394
  5614. " />
  5615. </g>
  5616. <g style="fill:none;
  5617. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5618. stroke-linecap:round; stroke-linejoin:round;">
  5619. <path d="M44.2016 28.1444
  5620. L44.2016 37.1944
  5621. " />
  5622. </g>
  5623. <g style="fill:none;
  5624. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5625. stroke-linecap:round; stroke-linejoin:round;">
  5626. <path d="M25.4266 6.8444
  5627. L23.7766 6.8444
  5628. " />
  5629. <path d="M23.7766 6.8444
  5630. L23.5266 7.0944
  5631. " />
  5632. <path d="M23.5266 9.2294
  5633. L23.4966 9.2594
  5634. " />
  5635. <path d="M23.4966 11.1994
  5636. L23.4766 11.2194
  5637. " />
  5638. <path d="M23.5266 7.0944
  5639. L23.5266 9.2294
  5640. " />
  5641. <path d="M23.4966 9.2594
  5642. L23.4966 11.1994
  5643. " />
  5644. <path d="M12.1266 47.9569
  5645. L9.9891 47.9569
  5646. " />
  5647. </g>
  5648. <g style="fill:none;
  5649. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5650. stroke-linecap:round; stroke-linejoin:round;">
  5651. <path d="M10.0016 6.8444
  5652. L10.0016 11.7444
  5653. " />
  5654. </g>
  5655. <g style="fill:none;
  5656. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5657. stroke-linecap:round; stroke-linejoin:round;">
  5658. <path d="M17.7266 45.9444
  5659. L17.7266 45.1694
  5660. " />
  5661. <path d="M8.9266 54.5194
  5662. L9.6766 55.2694
  5663. " />
  5664. <path d="M15.6766 25.6694
  5665. L14.0266 25.6694
  5666. " />
  5667. <path d="M23.5016 13.2444
  5668. L23.4766 13.2194
  5669. " />
  5670. <path d="M13.0266 15.4444
  5671. L13.0266 23.8194
  5672. " />
  5673. <path d="M13.5891 25.2319
  5674. L13.6016 25.2444
  5675. " />
  5676. </g>
  5677. <g style="fill:none;
  5678. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5679. stroke-linecap:round; stroke-linejoin:round;">
  5680. <path d="M9.5016 12.2444
  5681. L12.0516 12.2444
  5682. " />
  5683. </g>
  5684. <g style="fill:none;
  5685. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5686. stroke-linecap:round; stroke-linejoin:round;">
  5687. <path d="M12.0516 14.4694
  5688. L12.0516 12.2444
  5689. " />
  5690. <path d="M17.7266 45.1694
  5691. L17.0266 44.4694
  5692. " />
  5693. <path d="M23.5016 15.4444
  5694. L23.5016 13.2444
  5695. " />
  5696. <path d="M11.6016 25.2319
  5697. L13.5891 25.2319
  5698. " />
  5699. </g>
  5700. <g style="fill:none;
  5701. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5702. stroke-linecap:round; stroke-linejoin:round;">
  5703. <path d="M10.0016 11.7444
  5704. L9.5016 12.2444
  5705. " />
  5706. </g>
  5707. <g style="fill:none;
  5708. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5709. stroke-linecap:round; stroke-linejoin:round;">
  5710. <path d="M19.6016 13.2194
  5711. L21.5516 13.2194
  5712. " />
  5713. <path d="M6.5016 23.7444
  5714. L6.3016 23.9444
  5715. " />
  5716. <path d="M13.0266 23.8194
  5717. L11.6016 25.2444
  5718. " />
  5719. <path d="M9.6016 25.2444
  5720. L11.6016 25.2444
  5721. " />
  5722. </g>
  5723. <g style="fill:none;
  5724. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5725. stroke-linecap:round; stroke-linejoin:round;">
  5726. <path d="M7.4266 16.8444
  5727. L8.3266 15.9444
  5728. " />
  5729. </g>
  5730. <g style="fill:none;
  5731. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5732. stroke-linecap:round; stroke-linejoin:round;">
  5733. <path d="M17.0266 44.4694
  5734. L14.5266 44.4694
  5735. " />
  5736. </g>
  5737. <g style="fill:none;
  5738. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5739. stroke-linecap:round; stroke-linejoin:round;">
  5740. <path d="M8.3266 13.4194
  5741. L9.5016 12.2444
  5742. " />
  5743. </g>
  5744. <g style="fill:none;
  5745. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5746. stroke-linecap:round; stroke-linejoin:round;">
  5747. <path d="M21.5516 13.2194
  5748. L23.4766 13.2194
  5749. " />
  5750. <path d="M21.5516 15.4444
  5751. L23.5016 15.4444
  5752. " />
  5753. </g>
  5754. <g style="fill:none;
  5755. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5756. stroke-linecap:round; stroke-linejoin:round;">
  5757. <path d="M4.1516 12.2444
  5758. L3.4766 12.9194
  5759. " />
  5760. </g>
  5761. <g style="fill:none;
  5762. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5763. stroke-linecap:round; stroke-linejoin:round;">
  5764. <path d="M13.8891 46.1694
  5765. L13.8891 47.8819
  5766. " />
  5767. <path d="M14.5266 44.4694
  5768. L13.8891 45.1069
  5769. " />
  5770. <path d="M9.9891 47.9569
  5771. L8.9266 49.0194
  5772. " />
  5773. <path d="M12.1266 47.9569
  5774. L13.9641 47.9569
  5775. " />
  5776. <path d="M13.0266 15.4444
  5777. L12.0516 14.4694
  5778. " />
  5779. <path d="M8.3266 55.3194
  5780. L8.3016 55.2944
  5781. " />
  5782. </g>
  5783. <g style="fill:none;
  5784. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5785. stroke-linecap:round; stroke-linejoin:round;">
  5786. <path d="M5.7516 12.2444
  5787. L4.1516 12.2444
  5788. " />
  5789. </g>
  5790. <g style="fill:none;
  5791. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5792. stroke-linecap:round; stroke-linejoin:round;">
  5793. <path d="M3.3016 55.2444
  5794. L5.6516 55.2444
  5795. " />
  5796. <path d="M9.6766 55.3194
  5797. L8.3266 55.3194
  5798. " />
  5799. <path d="M21.5516 15.4444
  5800. L16.3016 15.4444
  5801. " />
  5802. <path d="M8.9266 49.0194
  5803. L8.9266 54.5194
  5804. " />
  5805. <path d="M14.0266 25.6694
  5806. L13.6016 25.2444
  5807. " />
  5808. </g>
  5809. <g style="fill:none;
  5810. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5811. stroke-linecap:round; stroke-linejoin:round;">
  5812. <path d="M5.7516 12.2444
  5813. L9.5016 12.2444
  5814. " />
  5815. </g>
  5816. <g style="fill:none;
  5817. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5818. stroke-linecap:round; stroke-linejoin:round;">
  5819. <path d="M1.7016 29.6444
  5820. L1.7016 53.6444
  5821. " />
  5822. </g>
  5823. <g style="fill:none;
  5824. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5825. stroke-linecap:round; stroke-linejoin:round;">
  5826. <path d="M8.3266 15.9444
  5827. L8.3266 13.4194
  5828. " />
  5829. </g>
  5830. <g style="fill:none;
  5831. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5832. stroke-linecap:round; stroke-linejoin:round;">
  5833. <path d="M13.8891 47.8819
  5834. L14.1766 48.1694
  5835. " />
  5836. <path d="M1.7016 53.6444
  5837. L3.3016 55.2444
  5838. " />
  5839. <path d="M7.6016 23.7444
  5840. L6.5016 23.7444
  5841. " />
  5842. <path d="M9.6766 55.2694
  5843. L12.7141 55.2694
  5844. " />
  5845. <path d="M13.8891 45.1069
  5846. L13.8891 46.1694
  5847. " />
  5848. <path d="M17.6516 42.0194
  5849. L17.1016 42.0194
  5850. " />
  5851. <path d="M12.9516 33.1944
  5852. L9.0016 33.1944
  5853. " />
  5854. <path d="M17.1016 42.0194
  5855. L16.1766 42.9444
  5856. " />
  5857. <path d="M14.0516 34.2944
  5858. L12.9516 33.1944
  5859. " />
  5860. <path d="M19.2566 48.1694
  5861. L19.2566 43.5994
  5862. " />
  5863. <path d="M14.0516 40.7944
  5864. L14.0516 34.2944
  5865. " />
  5866. <path d="M9.0016 33.1944
  5867. L7.8516 32.0444
  5868. " />
  5869. <path d="M18.7016 41.9694
  5870. L19.2616 42.5294
  5871. " />
  5872. <path d="M19.2566 43.5994
  5873. L19.2616 43.5944
  5874. " />
  5875. <path d="M17.6516 41.9694
  5876. L18.7016 41.9694
  5877. " />
  5878. <path d="M19.2616 42.5294
  5879. L19.2616 43.5944
  5880. " />
  5881. <path d="M23.5266 24.7194
  5882. L22.5766 25.6694
  5883. " />
  5884. <path d="M23.5016 17.4444
  5885. L23.5016 19.4144
  5886. " />
  5887. <path d="M23.5266 19.4494
  5888. L23.4966 19.4194
  5889. " />
  5890. <path d="M23.5266 21.6194
  5891. L23.5266 24.7194
  5892. " />
  5893. <path d="M23.5016 19.4144
  5894. L23.4966 19.4194
  5895. " />
  5896. <path d="M23.5266 21.6194
  5897. L23.5266 19.4494
  5898. " />
  5899. <path d="M22.5766 25.6694
  5900. L20.9766 25.6694
  5901. " />
  5902. <path d="M37.2516 39.1094
  5903. L35.5416 39.1094
  5904. " />
  5905. <path d="M35.5416 39.1094
  5906. L35.3916 39.2594
  5907. " />
  5908. </g>
  5909. <g style="fill:none;
  5910. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5911. stroke-linecap:round; stroke-linejoin:round;">
  5912. <path d="M36.9416 42.8494
  5913. L38.1316 41.6594
  5914. " />
  5915. <path d="M36.9416 45.2194
  5916. L36.9416 42.8494
  5917. " />
  5918. <path d="M38.8716 39.1594
  5919. L39.8716 38.1594
  5920. " />
  5921. <path d="M38.8716 40.9194
  5922. L38.8716 39.1594
  5923. " />
  5924. <path d="M38.1316 41.6594
  5925. L38.8716 40.9194
  5926. " />
  5927. </g>
  5928. <g style="fill:none;
  5929. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5930. stroke-linecap:round; stroke-linejoin:round;">
  5931. <path d="M49.0416 53.0644
  5932. L51.3416 50.7644
  5933. " />
  5934. <path d="M51.3416 50.7644
  5935. L52.6716 50.7644
  5936. " />
  5937. <path d="M47.7816 53.0644
  5938. L49.0416 53.0644
  5939. " />
  5940. <path d="M52.6816 45.1744
  5941. L51.3316 45.1744
  5942. " />
  5943. <path d="M51.3316 45.1744
  5944. L49.0416 47.4644
  5945. " />
  5946. <path d="M49.0416 47.4644
  5947. L47.7716 47.4644
  5948. " />
  5949. <path d="M47.7816 41.8744
  5950. L49.0816 41.8744
  5951. " />
  5952. <path d="M51.3816 39.5744
  5953. L52.6816 39.5744
  5954. " />
  5955. <path d="M49.0816 41.8744
  5956. L51.3816 39.5744
  5957. " />
  5958. </g>
  5959. <g style="fill:none;
  5960. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5961. stroke-linecap:round; stroke-linejoin:round;">
  5962. <path d="M45.7766 21.1319
  5963. L41.2791 21.1319
  5964. " />
  5965. <path d="M40.9391 34.6744
  5966. L40.9391 31.3719
  5967. " />
  5968. <path d="M40.9916 24.1444
  5969. L40.9566 24.1094
  5970. " />
  5971. <path d="M41.6516 30.1244
  5972. L40.6716 31.1044
  5973. " />
  5974. <path d="M44.4016 24.1444
  5975. L40.9916 24.1444
  5976. " />
  5977. </g>
  5978. <g style="fill:none;
  5979. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  5980. stroke-linecap:round; stroke-linejoin:round;">
  5981. <path d="M51.7516 20.0069
  5982. L51.7516 21.5194
  5983. " />
  5984. </g>
  5985. <g style="fill:none;
  5986. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  5987. stroke-linecap:round; stroke-linejoin:round;">
  5988. <path d="M40.9416 45.2194
  5989. L40.9416 41.9294
  5990. " />
  5991. <path d="M41.6516 24.8044
  5992. L41.6516 30.1244
  5993. " />
  5994. <path d="M40.9566 24.1094
  5995. L40.9566 20.8094
  5996. " />
  5997. </g>
  5998. <g style="fill:none;
  5999. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6000. stroke-linecap:round; stroke-linejoin:round;">
  6001. <path d="M39.4216 25.6444
  6002. L40.9566 24.1094
  6003. " />
  6004. </g>
  6005. <g style="fill:none;
  6006. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6007. stroke-linecap:round; stroke-linejoin:round;">
  6008. <path d="M40.9316 52.4744
  6009. L40.6616 52.2044
  6010. " />
  6011. <path d="M48.0516 23.0819
  6012. L47.7266 23.0819
  6013. " />
  6014. <path d="M45.7766 21.1319
  6015. L46.4391 21.7944
  6016. " />
  6017. <path d="M41.5316 45.8094
  6018. L41.5316 51.3344
  6019. " />
  6020. <path d="M40.9566 24.1094
  6021. L41.6516 24.8044
  6022. " />
  6023. <path d="M45.7766 21.1319
  6024. L44.4016 22.5069
  6025. " />
  6026. <path d="M43.1016 57.9444
  6027. L44.6016 57.9444
  6028. " />
  6029. <path d="M41.6116 35.3469
  6030. L41.6116 40.7194
  6031. " />
  6032. <path d="M40.9316 55.7744
  6033. L40.9316 52.4744
  6034. " />
  6035. <path d="M50.0266 21.7944
  6036. L52.0266 21.7944
  6037. " />
  6038. </g>
  6039. <g style="fill:none;
  6040. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6041. stroke-linecap:round; stroke-linejoin:round;">
  6042. <path d="M51.7516 21.5194
  6043. L52.0266 21.7944
  6044. " />
  6045. </g>
  6046. <g style="fill:none;
  6047. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6048. stroke-linecap:round; stroke-linejoin:round;">
  6049. <path d="M40.9391 31.3719
  6050. L40.6716 31.1044
  6051. " />
  6052. <path d="M46.4391 21.7944
  6053. L50.0266 21.7944
  6054. " />
  6055. <path d="M47.7266 23.0819
  6056. L46.4391 21.7944
  6057. " />
  6058. </g>
  6059. <g style="fill:none;
  6060. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6061. stroke-linecap:round; stroke-linejoin:round;">
  6062. <path d="M31.1766 25.5694
  6063. L31.2516 25.6444
  6064. " />
  6065. </g>
  6066. <g style="fill:none;
  6067. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6068. stroke-linecap:round; stroke-linejoin:round;">
  6069. <path d="M40.9316 55.7744
  6070. L43.1016 57.9444
  6071. " />
  6072. <path d="M41.6116 40.7194
  6073. L40.6716 41.6594
  6074. " />
  6075. <path d="M40.9416 41.9294
  6076. L40.6716 41.6594
  6077. " />
  6078. <path d="M44.4016 22.5069
  6079. L44.4016 24.1444
  6080. " />
  6081. <path d="M40.9416 45.2194
  6082. L41.5316 45.8094
  6083. " />
  6084. <path d="M40.9566 20.8094
  6085. L40.6866 20.5394
  6086. " />
  6087. </g>
  6088. <g style="fill:none;
  6089. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6090. stroke-linecap:round; stroke-linejoin:round;">
  6091. <path d="M51.3266 20.0069
  6092. L50.8016 20.0069
  6093. " />
  6094. <path d="M31.2516 25.6444
  6095. L39.4216 25.6444
  6096. " />
  6097. <path d="M51.7516 20.0069
  6098. L51.3266 20.0069
  6099. " />
  6100. </g>
  6101. <g style="fill:none;
  6102. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6103. stroke-linecap:round; stroke-linejoin:round;">
  6104. <path d="M40.9391 34.6744
  6105. L41.6116 35.3469
  6106. " />
  6107. <path d="M41.2791 21.1319
  6108. L40.6866 20.5394
  6109. " />
  6110. <path d="M41.5316 51.3344
  6111. L40.6616 52.2044
  6112. " />
  6113. </g>
  6114. <g style="fill:none;
  6115. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6116. stroke-linecap:round; stroke-linejoin:round;">
  6117. <path d="M31.5766 46.0294
  6118. L32.5766 47.0294
  6119. " />
  6120. <path d="M20.9766 33.2894
  6121. L20.9766 33.4944
  6122. " />
  6123. <path d="M33.3816 52.6344
  6124. L33.4816 52.5344
  6125. " />
  6126. <path d="M32.5766 47.0294
  6127. L32.5766 49.9094
  6128. " />
  6129. <path d="M26.2016 33.7444
  6130. L26.6266 34.1694
  6131. " />
  6132. <path d="M32.5766 49.9094
  6133. L33.4816 50.8144
  6134. " />
  6135. <path d="M34.4316 51.7644
  6136. L35.3716 51.7644
  6137. " />
  6138. <path d="M31.5766 36.0694
  6139. L31.5766 46.0294
  6140. " />
  6141. <path d="M33.4816 50.8144
  6142. L34.4316 51.7644
  6143. " />
  6144. <path d="M21.2266 33.7444
  6145. L26.2016 33.7444
  6146. " />
  6147. <path d="M33.4816 52.5344
  6148. L33.4816 50.8144
  6149. " />
  6150. <path d="M20.9766 33.4944
  6151. L21.2266 33.7444
  6152. " />
  6153. <path d="M29.6766 34.1694
  6154. L31.5766 36.0694
  6155. " />
  6156. <path d="M17.5266 32.8444
  6157. L16.7016 32.0194
  6158. " />
  6159. <path d="M16.7016 32.0194
  6160. L15.6766 32.0194
  6161. " />
  6162. <path d="M17.5266 39.4944
  6163. L17.5266 32.8444
  6164. " />
  6165. <path d="M18.8516 40.8194
  6166. L17.5266 39.4944
  6167. " />
  6168. <path d="M21.1516 40.8194
  6169. L18.8516 40.8194
  6170. " />
  6171. <path d="M25.5141 45.1819
  6172. L21.1516 40.8194
  6173. " />
  6174. <path d="M25.5141 45.9944
  6175. L25.5141 45.1819
  6176. " />
  6177. <path d="M28.1516 45.9944
  6178. L25.5141 45.9944
  6179. " />
  6180. </g>
  6181. <g style="fill:none;
  6182. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6183. stroke-linecap:round; stroke-linejoin:round;">
  6184. <path d="M38.7416 28.6769
  6185. L38.7416 30.4944
  6186. " />
  6187. <path d="M38.7416 30.4944
  6188. L38.1316 31.1044
  6189. " />
  6190. <path d="M36.9391 32.2969
  6191. L38.1316 31.1044
  6192. " />
  6193. <path d="M36.9391 34.6744
  6194. L36.9391 32.2969
  6195. " />
  6196. <path d="M39.8316 27.5869
  6197. L38.7416 28.6769
  6198. " />
  6199. </g>
  6200. <g style="fill:none;
  6201. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6202. stroke-linecap:round; stroke-linejoin:round;">
  6203. <path d="M31.1766 31.9444
  6204. L33.4916 34.2594
  6205. " />
  6206. <path d="M33.4916 41.9894
  6207. L33.3816 42.0994
  6208. " />
  6209. <path d="M33.4916 40.4194
  6210. L33.4916 41.9894
  6211. " />
  6212. <path d="M22.2066 30.7494
  6213. L23.4016 31.9444
  6214. " />
  6215. <path d="M23.4016 31.9444
  6216. L31.1766 31.9444
  6217. " />
  6218. <path d="M34.3316 41.2594
  6219. L35.3916 41.2594
  6220. " />
  6221. <path d="M33.4916 34.2594
  6222. L33.4916 37.4094
  6223. " />
  6224. <path d="M33.4916 37.4094
  6225. L33.4916 40.4194
  6226. " />
  6227. <path d="M20.9766 30.7494
  6228. L22.2066 30.7494
  6229. " />
  6230. <path d="M33.4916 40.4194
  6231. L34.3316 41.2594
  6232. " />
  6233. <path d="M33.4266 29.0444
  6234. L33.4616 29.0794
  6235. " />
  6236. <path d="M32.7516 30.9444
  6237. L33.3516 31.5444
  6238. " />
  6239. <path d="M33.4616 30.1944
  6240. L33.9516 30.6844
  6241. " />
  6242. <path d="M20.9766 29.4794
  6243. L22.3315 29.4794
  6244. " />
  6245. <path d="M22.3315 29.4794
  6246. L23.7965 30.9444
  6247. " />
  6248. <path d="M33.4616 29.0794
  6249. L33.4616 30.1944
  6250. " />
  6251. <path d="M23.7965 30.9444
  6252. L32.7516 30.9444
  6253. " />
  6254. <path d="M33.9516 30.6844
  6255. L35.3616 30.6844
  6256. " />
  6257. <path d="M33.3516 31.5444
  6258. L33.4616 31.4344
  6259. " />
  6260. <path d="M33.4616 31.4344
  6261. L33.4616 30.1944
  6262. " />
  6263. <path d="M35.5091 28.5369
  6264. L35.3616 28.6844
  6265. " />
  6266. <path d="M37.2116 28.5369
  6267. L35.5091 28.5369
  6268. " />
  6269. <path d="M16.7166 48.1694
  6270. L16.7166 47.7094
  6271. " />
  6272. <path d="M16.7166 47.7094
  6273. L15.7141 46.7069
  6274. " />
  6275. <path d="M15.7141 46.7069
  6276. L15.7141 46.1694
  6277. " />
  6278. <path d="M20.9566 9.2594
  6279. L20.9566 9.9244
  6280. " />
  6281. <path d="M21.5516 10.5194
  6282. L21.5516 11.2194
  6283. " />
  6284. <path d="M20.9566 9.9244
  6285. L21.5516 10.5194
  6286. " />
  6287. <path d="M24.8016 25.3444
  6288. L24.5766 25.5694
  6289. " />
  6290. <path d="M23.3016 26.8444
  6291. L24.5766 25.5694
  6292. " />
  6293. <path d="M24.1016 28.4444
  6294. L24.1016 26.0444
  6295. " />
  6296. <path d="M21.9366 28.2094
  6297. L23.3016 26.8444
  6298. " />
  6299. <path d="M24.8016 23.6194
  6300. L24.8016 25.3444
  6301. " />
  6302. <path d="M20.9766 28.2094
  6303. L21.9366 28.2094
  6304. " />
  6305. <path d="M24.5766 25.5694
  6306. L28.2516 25.5694
  6307. " />
  6308. <path d="M11.2266 30.7494
  6309. L15.6766 30.7494
  6310. " />
  6311. <path d="M9.3691 30.7494
  6312. L11.2266 30.7494
  6313. " />
  6314. <path d="M7.4516 28.8319
  6315. L9.3691 30.7494
  6316. " />
  6317. <path d="M33.3766 20.9694
  6318. L33.3766 22.9694
  6319. " />
  6320. <path d="M35.3766 20.1194
  6321. L34.3366 20.1194
  6322. " />
  6323. <path d="M33.4766 19.2594
  6324. L33.4766 16.2694
  6325. " />
  6326. <path d="M33.3766 22.9694
  6327. L33.3516 22.9944
  6328. " />
  6329. <path d="M33.4766 20.8694
  6330. L33.4766 19.2594
  6331. " />
  6332. <path d="M33.3766 20.9694
  6333. L33.4766 20.8694
  6334. " />
  6335. <path d="M15.6766 22.9444
  6336. L15.6766 24.3994
  6337. " />
  6338. <path d="M34.3366 20.1194
  6339. L33.4766 19.2594
  6340. " />
  6341. <path d="M28.1516 40.9144
  6342. L28.1516 33.7694
  6343. " />
  6344. <path d="M27.2266 32.8444
  6345. L22.7266 32.8444
  6346. " />
  6347. <path d="M28.1516 33.7694
  6348. L27.2266 32.8444
  6349. " />
  6350. <path d="M22.7266 32.8444
  6351. L21.9016 32.0194
  6352. " />
  6353. <path d="M21.9016 32.0194
  6354. L20.9766 32.0194
  6355. " />
  6356. <path d="M14.9766 58.1944
  6357. L14.1766 57.3944
  6358. " />
  6359. <path d="M30.1766 44.1194
  6360. L30.1766 57.1694
  6361. " />
  6362. <path d="M29.5116 43.4544
  6363. L30.1766 44.1194
  6364. " />
  6365. <path d="M30.1766 57.1694
  6366. L29.1516 58.1944
  6367. " />
  6368. <path d="M29.1516 58.1944
  6369. L14.9766 58.1944
  6370. " />
  6371. <path d="M13.3266 57.3944
  6372. L11.0891 57.3944
  6373. " />
  6374. <path d="M28.1516 43.4544
  6375. L29.5116 43.4544
  6376. " />
  6377. <path d="M14.1766 56.5444
  6378. L13.3266 57.3944
  6379. " />
  6380. <path d="M14.1766 57.3944
  6381. L14.1766 56.5444
  6382. " />
  6383. <path d="M14.1766 50.7594
  6384. L14.1766 56.5444
  6385. " />
  6386. <path d="M17.4766 52.6444
  6387. L15.9516 52.6444
  6388. " />
  6389. <path d="M16.7166 51.8794
  6390. L15.6516 52.9444
  6391. " />
  6392. <path d="M16.7166 50.7094
  6393. L16.7166 51.8794
  6394. " />
  6395. </g>
  6396. <g style="fill:none;
  6397. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6398. stroke-linecap:round; stroke-linejoin:round;">
  6399. <path d="M36.9316 55.7744
  6400. L36.9316 53.3944
  6401. " />
  6402. <path d="M36.9316 53.3944
  6403. L38.1216 52.2044
  6404. " />
  6405. <path d="M38.1216 52.2044
  6406. L38.7416 51.5844
  6407. " />
  6408. <path d="M38.7416 51.5844
  6409. L38.7416 49.7944
  6410. " />
  6411. <path d="M38.7416 49.7944
  6412. L39.8466 48.6894
  6413. " />
  6414. </g>
  6415. <g style="fill:none;
  6416. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6417. stroke-linecap:round; stroke-linejoin:round;">
  6418. <path d="M37.2266 49.6394
  6419. L35.4966 49.6394
  6420. " />
  6421. <path d="M35.4966 49.6394
  6422. L35.3716 49.7644
  6423. " />
  6424. <path d="M19.6016 10.7944
  6425. L19.6016 11.2194
  6426. " />
  6427. <path d="M18.4166 9.2594
  6428. L18.4166 9.6094
  6429. " />
  6430. <path d="M18.4166 9.6094
  6431. L19.6016 10.7944
  6432. " />
  6433. <path d="M6.9516 47.4444
  6434. L6.9516 49.9694
  6435. " />
  6436. <path d="M6.9516 56.6694
  6437. L6.9516 49.9694
  6438. " />
  6439. <path d="M15.6766 41.4944
  6440. L10.7516 46.4194
  6441. " />
  6442. <path d="M7.6766 57.3944
  6443. L6.9516 56.6694
  6444. " />
  6445. <path d="M10.7516 46.4194
  6446. L7.9766 46.4194
  6447. " />
  6448. <path d="M9.2641 57.3944
  6449. L7.6766 57.3944
  6450. " />
  6451. <path d="M7.9766 46.4194
  6452. L6.9516 47.4444
  6453. " />
  6454. <path d="M15.6766 33.2894
  6455. L15.6766 41.4944
  6456. " />
  6457. <path d="M19.6016 34.5444
  6458. L18.8016 33.7444
  6459. " />
  6460. <path d="M19.6016 35.1444
  6461. L19.6016 34.5444
  6462. " />
  6463. <path d="M18.8016 33.7444
  6464. L18.8016 30.9698
  6465. " />
  6466. <path d="M16.0412 28.2094
  6467. L15.6766 28.2094
  6468. " />
  6469. <path d="M18.8016 30.9698
  6470. L16.0412 28.2094
  6471. " />
  6472. <path d="M21.4016 37.1444
  6473. L21.6016 36.9444
  6474. " />
  6475. <path d="M19.6016 37.1444
  6476. L21.4016 37.1444
  6477. " />
  6478. <path d="M22.3266 53.3944
  6479. L24.2766 53.3944
  6480. " />
  6481. <path d="M24.2766 53.3944
  6482. L24.3516 53.4694
  6483. " />
  6484. <path d="M28.5766 17.7819
  6485. L28.1141 17.3194
  6486. " />
  6487. <path d="M28.5766 21.1569
  6488. L28.1141 21.6194
  6489. " />
  6490. <path d="M28.5766 19.4194
  6491. L28.5766 17.7819
  6492. " />
  6493. <path d="M28.5766 19.4194
  6494. L28.5766 21.1569
  6495. " />
  6496. <path d="M20.9566 19.4194
  6497. L20.9566 18.0394
  6498. " />
  6499. <path d="M20.9766 21.6194
  6500. L20.9766 19.4394
  6501. " />
  6502. <path d="M20.9766 19.4394
  6503. L20.9566 19.4194
  6504. " />
  6505. <path d="M20.9566 18.0394
  6506. L21.5516 17.4444
  6507. " />
  6508. <path d="M20.9766 21.6194
  6509. L20.9766 24.3994
  6510. " />
  6511. <path d="M19.2566 50.7094
  6512. L19.2566 52.3244
  6513. " />
  6514. <path d="M19.2566 52.3244
  6515. L20.3266 53.3944
  6516. " />
  6517. <path d="M22.5891 45.9444
  6518. L20.8266 45.9444
  6519. " />
  6520. <path d="M21.7966 46.9144
  6521. L20.8266 45.9444
  6522. " />
  6523. <path d="M21.7966 48.1694
  6524. L21.7966 46.9144
  6525. " />
  6526. <path d="M23.0016 56.0944
  6527. L22.1766 55.2694
  6528. " />
  6529. <path d="M22.1766 55.2694
  6530. L16.8516 55.2694
  6531. " />
  6532. <path d="M16.8516 55.2694
  6533. L17.4766 54.6444
  6534. " />
  6535. <path d="M15.6391 55.2694
  6536. L16.8516 55.2694
  6537. " />
  6538. <path d="M51.7516 15.9944
  6539. L51.8891 15.8569
  6540. " />
  6541. <path d="M51.8891 13.9069
  6542. L51.8891 15.8569
  6543. " />
  6544. <path d="M51.7516 17.7319
  6545. L51.7516 15.9944
  6546. " />
  6547. </g>
  6548. <g style="fill:none;
  6549. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6550. stroke-linecap:round; stroke-linejoin:round;">
  6551. <path d="M38.7566 19.9294
  6552. L38.1466 20.5394
  6553. " />
  6554. <path d="M36.9566 24.1094
  6555. L36.9566 21.7294
  6556. " />
  6557. <path d="M38.7566 18.1219
  6558. L38.7566 19.9294
  6559. " />
  6560. <path d="M36.9566 21.7294
  6561. L38.1466 20.5394
  6562. " />
  6563. <path d="M39.8566 17.0219
  6564. L38.7566 18.1219
  6565. " />
  6566. </g>
  6567. <g style="fill:none;
  6568. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6569. stroke-linecap:round; stroke-linejoin:round;">
  6570. <path d="M15.9516 7.0944
  6571. L21.5266 7.0944
  6572. " />
  6573. <path d="M20.9716 26.9444
  6574. L19.1516 26.9444
  6575. " />
  6576. <path d="M17.1766 21.2694
  6577. L15.1766 21.2694
  6578. " />
  6579. <path d="M15.1766 21.2694
  6580. L14.5766 20.6694
  6581. " />
  6582. <path d="M14.5766 8.4694
  6583. L15.9516 7.0944
  6584. " />
  6585. <path d="M20.9766 26.9394
  6586. L20.9716 26.9444
  6587. " />
  6588. <path d="M18.2266 22.3194
  6589. L17.1766 21.2694
  6590. " />
  6591. <path d="M14.5766 20.6694
  6592. L14.5766 8.4694
  6593. " />
  6594. <path d="M18.2266 26.0194
  6595. L18.2266 22.3194
  6596. " />
  6597. <path d="M19.1516 26.9444
  6598. L18.2266 26.0194
  6599. " />
  6600. <path d="M45.8266 29.5444
  6601. L45.8266 34.3194
  6602. " />
  6603. <path d="M13.5416 29.4794
  6604. L15.6766 29.4794
  6605. " />
  6606. <path d="M45.8266 34.3194
  6607. L47.7816 36.2744
  6608. " />
  6609. <path d="M48.7516 16.6319
  6610. L49.8516 17.7319
  6611. " />
  6612. </g>
  6613. <g style="fill:none;
  6614. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6615. stroke-linecap:round; stroke-linejoin:round;">
  6616. <path d="M43.7516 14.6069
  6617. L45.7766 16.6319
  6618. " />
  6619. </g>
  6620. <g style="fill:none;
  6621. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6622. stroke-linecap:round; stroke-linejoin:round;">
  6623. <path d="M45.7766 16.6319
  6624. L48.7516 16.6319
  6625. " />
  6626. </g>
  6627. <g style="fill:none;
  6628. stroke:#000000; stroke-width:1.0000; stroke-opacity:1;
  6629. stroke-linecap:round; stroke-linejoin:round;">
  6630. <path d="M43.7516 13.7319
  6631. L43.7516 14.6069
  6632. " />
  6633. </g>
  6634. <g style="fill:none;
  6635. stroke:#000000; stroke-width:0.5000; stroke-opacity:1;
  6636. stroke-linecap:round; stroke-linejoin:round;">
  6637. <path d="M35.3766 18.1194
  6638. L37.0891 18.1194
  6639. " />
  6640. <path d="M37.0891 18.1194
  6641. L37.2366 17.9719
  6642. " />
  6643. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  6644. d="M 4.9894,0.5007
  6645. 4.6135,0.5171
  6646. 4.5919,0.5190
  6647. 4.2242,0.5674
  6648. 4.2029,0.5712
  6649. 3.8408,0.6515
  6650. 3.8199,0.6571
  6651. 3.4662,0.7686
  6652. 3.4458,0.7760
  6653. 3.1033,0.9179
  6654. 3.0836,0.9271
  6655. 2.7547,1.0983
  6656. 2.7359,1.1092
  6657. 2.4232,1.3084
  6658. 2.4054,1.3208
  6659. 2.1112,1.5466
  6660. 2.1112,1.5466
  6661. 2.0946,1.5605
  6662. 1.8212,1.8110
  6663. 1.8058,1.8264
  6664. 1.5553,2.0998
  6665. 1.5414,2.1164
  6666. 1.3156,2.4106
  6667. 1.3032,2.4284
  6668. 1.1040,2.7411
  6669. 1.0931,2.7599
  6670. 0.9219,3.0888
  6671. 0.9127,3.1085
  6672. 0.7799,3.4292
  6673. 0.7708,3.4510
  6674. 0.7634,3.4714
  6675. 0.6519,3.8251
  6676. 0.6463,3.8461
  6677. 0.5660,4.2081
  6678. 0.5622,4.2294
  6679. 0.5138,4.5971
  6680. 0.5119,4.6187
  6681. 0.4973,4.9543
  6682. 0.4955,4.9946
  6683. 0.4953,5.0054
  6684. 0.4953,27.9460
  6685. 0.5143,28.0413
  6686. 0.5682,28.1221
  6687. 0.6490,28.1761
  6688. 0.7443,28.1950
  6689. 0.8396,28.1761
  6690. 0.8688,28.1617
  6691. 0.9478,28.1160
  6692. 0.9478,28.1160
  6693. 1.1538,28.0307
  6694. 1.1538,28.0307
  6695. 1.1538,28.0307
  6696. 1.1538,28.0307
  6697. 1.3691,27.9730
  6698. 1.3691,27.9730
  6699. 1.3691,27.9730
  6700. 1.5901,27.9439
  6701. 1.8130,27.9439
  6702. 2.0340,27.9730
  6703. 2.2493,28.0307
  6704. 2.2493,28.0307
  6705. 2.4553,28.1160
  6706. 2.4553,28.1160
  6707. 2.6483,28.2275
  6708. 2.8252,28.3632
  6709. 2.9828,28.5208
  6710. 3.1185,28.6977
  6711. 3.2300,28.8907
  6712. 3.2300,28.8907
  6713. 3.3153,29.0966
  6714. 3.3153,29.0967
  6715. 3.3730,29.3120
  6716. 3.3956,29.4841
  6717. 3.4021,29.5330
  6718. 3.4021,29.7559
  6719. 3.3730,29.9769
  6720. 3.3421,30.0922
  6721. 3.3153,30.1922
  6722. 3.3153,30.1922
  6723. 3.2300,30.3982
  6724. 3.2300,30.3982
  6725. 3.2300,30.3982
  6726. 3.1185,30.5912
  6727. 3.0035,30.7411
  6728. 2.9605,30.8282
  6729. 2.9521,30.8927
  6730. 2.9521,53.0233
  6731. 2.9710,53.1186
  6732. 3.0250,53.1994
  6733. 3.7466,53.9210
  6734. 3.8274,53.9750
  6735. 3.9227,53.9939
  6736. 4.4033,53.9939
  6737. 4.4986,53.9750
  6738. 4.5549,53.9425
  6739. 4.7048,53.8275
  6740. 4.8978,53.7160
  6741. 4.8978,53.7160
  6742. 4.8978,53.7160
  6743. 5.1038,53.6307
  6744. 5.1038,53.6307
  6745. 5.1038,53.6307
  6746. 5.1038,53.6307
  6747. 5.3191,53.5730
  6748. 5.3191,53.5730
  6749. 5.3191,53.5730
  6750. 5.4846,53.5512
  6751. 5.5766,53.5200
  6752. 5.6496,53.4560
  6753. 5.6926,53.3688
  6754. 5.7011,53.3044
  6755. 5.7011,51.3902
  6756. 5.6821,51.2949
  6757. 5.6432,51.2306
  6758. 5.6377,51.2241
  6759. 5.6377,51.2241
  6760. 5.5095,51.0391
  6761. 5.4165,50.8341
  6762. 5.3615,50.6158
  6763. 5.3574,50.5648
  6764. 5.3511,50.4837
  6765. 5.3511,50.4837
  6766. 5.3511,49.4552
  6767. 5.3615,49.3230
  6768. 5.4165,49.1048
  6769. 5.5095,48.8998
  6770. 5.5136,48.8940
  6771. 5.6377,48.7148
  6772. 5.6432,48.7082
  6773. 5.6897,48.6229
  6774. 5.7011,48.5487
  6775. 5.7011,47.3460
  6776. 5.7011,47.3460
  6777. 5.7085,47.2989
  6778. 5.7318,47.1516
  6779. 5.7568,47.0748
  6780. 5.7927,46.9644
  6781. 5.8820,46.7890
  6782. 5.9977,46.6298
  6783. 6.2535,46.3740
  6784. 6.5456,46.0819
  6785. 6.5995,46.0012
  6786. 6.6063,45.9828
  6787. 6.6110,45.9685
  6788. 6.6110,45.9685
  6789. 6.6110,45.9684
  6790. 6.6110,45.9684
  6791. 6.7182,45.7580
  6792. 6.7182,45.7580
  6793. 6.7182,45.7580
  6794. 6.8570,45.5669
  6795. 6.8570,45.5669
  6796. 6.8570,45.5669
  6797. 7.0240,45.3999
  6798. 7.0240,45.3999
  6799. 7.0241,45.3999
  6800. 7.2151,45.2611
  6801. 7.2288,45.2541
  6802. 7.4256,45.1539
  6803. 7.4256,45.1539
  6804. 7.4256,45.1539
  6805. 7.5505,45.1133
  6806. 7.6502,45.0809
  6807. 7.6502,45.0809
  6808. 7.6502,45.0809
  6809. 7.8835,45.0439
  6810. 7.8835,45.0439
  6811. 7.8835,45.0439
  6812. 8.1196,45.0439
  6813. 8.1197,45.0439
  6814. 8.1197,45.0439
  6815. 8.3529,45.0809
  6816. 8.5864,45.1568
  6817. 8.6634,45.1689
  6818. 10.1304,45.1689
  6819. 10.2257,45.1500
  6820. 10.3065,45.0960
  6821. 11.6260,43.7765
  6822. 12.9529,42.4496
  6823. 13.0068,42.3689
  6824. 13.0258,42.2736
  6825. 13.0068,42.1783
  6826. 12.9529,42.0975
  6827. 12.9284,42.0760
  6828. 12.9279,42.0757
  6829. 12.7703,41.9181
  6830. 12.6346,41.7412
  6831. 12.5231,41.5482
  6832. 12.4378,41.3422
  6833. 12.3802,41.1269
  6834. 12.3511,40.9059
  6835. 12.3511,40.6830
  6836. 12.3802,40.4620
  6837. 12.4378,40.2467
  6838. 12.4524,40.2116
  6839. 12.5231,40.0407
  6840. 12.5231,40.0407
  6841. 12.5231,40.0407
  6842. 12.6346,39.8477
  6843. 12.7496,39.6978
  6844. 12.7926,39.6107
  6845. 12.8011,39.5462
  6846. 12.8011,34.9156
  6847. 12.7821,34.8203
  6848. 12.7281,34.7395
  6849. 12.5065,34.5179
  6850. 12.4257,34.4639
  6851. 12.3304,34.4449
  6852. 8.9031,34.4449
  6853. 8.9031,34.4449
  6854. 8.7087,34.4141
  6855. 8.5215,34.3533
  6856. 8.3461,34.2640
  6857. 8.1869,34.1483
  6858. 7.6565,33.6179
  6859. 7.5757,33.5639
  6860. 7.4804,33.5449
  6861. 7.2935,33.5449
  6862. 7.2935,33.5449
  6863. 7.1741,33.5343
  6864. 6.9785,33.4783
  6865. 6.7981,33.3841
  6866. 6.6404,33.2555
  6867. 6.5119,33.0978
  6868. 6.4176,32.9175
  6869. 6.3617,32.7219
  6870. 6.3511,32.6025
  6871. 6.3511,31.4864
  6872. 6.3617,31.3670
  6873. 6.3898,31.2688
  6874. 6.3978,31.1720
  6875. 6.3898,31.1354
  6876. 6.3903,31.1353
  6877. 6.3880,31.1258
  6878. 6.3511,30.8925
  6879. 6.3511,30.8925
  6880. 6.3511,30.6563
  6881. 6.3848,30.4430
  6882. 6.3810,30.3459
  6883. 6.3404,30.2577
  6884. 6.2690,30.1917
  6885. 6.2419,30.1773
  6886. 6.2069,30.1614
  6887. 6.0219,30.0333
  6888. 5.8627,29.8741
  6889. 5.7345,29.6891
  6890. 5.6415,29.4841
  6891. 5.5865,29.2659
  6892. 5.5847,29.2440
  6893. 5.5761,29.1337
  6894. 5.5761,29.1337
  6895. 5.5761,28.3802
  6896. 5.5865,28.2480
  6897. 5.6415,28.0298
  6898. 5.7345,27.8248
  6899. 5.7462,27.8080
  6900. 5.8627,27.6398
  6901. 5.8627,27.6398
  6902. 5.8627,27.6398
  6903. 6.0219,27.4806
  6904. 6.0219,27.4806
  6905. 6.0298,27.4727
  6906. 6.0279,27.4708
  6907. 6.0770,27.4100
  6908. 6.1044,27.3168
  6909. 6.0940,27.2202
  6910. 6.0475,27.1349
  6911. 6.0293,27.1167
  6912. 6.0298,27.1162
  6913. 6.0219,27.1083
  6914. 6.0219,27.1083
  6915. 5.8627,26.9491
  6916. 5.7345,26.7641
  6917. 5.6415,26.5591
  6918. 5.5865,26.3408
  6919. 5.5761,26.2087
  6920. 5.5761,25.4552
  6921. 5.5865,25.3230
  6922. 5.6071,25.2412
  6923. 5.6120,25.1441
  6924. 5.5794,25.0526
  6925. 5.5142,24.9805
  6926. 5.5053,24.9741
  6927. 5.4567,24.9413
  6928. 5.3047,24.7893
  6929. 5.1842,24.6113
  6930. 5.0996,24.4137
  6931. 5.0539,24.2037
  6932. 5.0511,24.1554
  6933. 5.0511,23.7335
  6934. 5.0511,23.7335
  6935. 5.0523,23.7126
  6936. 5.0539,23.6852
  6937. 5.0996,23.4752
  6938. 5.0996,23.4752
  6939. 5.0996,23.4752
  6940. 5.1335,23.3961
  6941. 5.1842,23.2776
  6942. 5.1842,23.2776
  6943. 5.1842,23.2776
  6944. 5.3009,23.1052
  6945. 5.3047,23.0996
  6946. 5.4567,22.9476
  6947. 5.4730,22.9366
  6948. 5.6347,22.8271
  6949. 5.6382,22.8252
  6950. 5.6806,22.7960
  6951. 5.6869,22.7906
  6952. 5.6869,22.7906
  6953. 5.8461,22.6749
  6954. 6.0215,22.5856
  6955. 6.0215,22.5856
  6956. 6.0215,22.5856
  6957. 6.2087,22.5247
  6958. 6.3844,22.4969
  6959. 6.3968,22.4923
  6960. 6.4099,22.4915
  6961. 6.4420,22.4757
  6962. 6.4756,22.4633
  6963. 6.4971,22.4485
  6964. 6.5355,22.4190
  6965. 6.5831,22.3825
  6966. 6.6471,22.3095
  6967. 6.6784,22.2175
  6968. 6.6720,22.1205
  6969. 6.6290,22.0334
  6970. 6.5560,21.9693
  6971. 6.4923,21.9435
  6972. 6.4369,21.9295
  6973. 6.2319,21.8364
  6974. 6.0469,21.7083
  6975. 5.8877,21.5491
  6976. 5.7595,21.3641
  6977. 5.6665,21.1591
  6978. 5.6115,20.9408
  6979. 5.6102,20.9245
  6980. 5.6011,20.8087
  6981. 5.6011,20.8087
  6982. 5.6011,19.3802
  6983. 5.6115,19.2480
  6984. 5.6665,19.0298
  6985. 5.7595,18.8248
  6986. 5.7721,18.8067
  6987. 5.8877,18.6398
  6988. 5.8877,18.6398
  6989. 5.8877,18.6398
  6990. 6.0469,18.4806
  6991. 6.0621,18.4701
  6992. 6.1296,18.4003
  6993. 6.1652,18.3099
  6994. 6.1636,18.2128
  6995. 6.1249,18.1236
  6996. 5.9970,17.9391
  6997. 5.9040,17.7341
  6998. 5.8490,17.5159
  6999. 5.8440,17.4533
  7000. 5.8397,17.3978
  7001. 5.8386,17.3837
  7002. 5.8386,16.3052
  7003. 5.8490,16.1730
  7004. 5.9040,15.9548
  7005. 5.9970,15.7498
  7006. 6.0048,15.7386
  7007. 6.1252,15.5648
  7008. 6.1252,15.5648
  7009. 6.1252,15.5648
  7010. 6.2844,15.4056
  7011. 6.2844,15.4056
  7012. 6.2844,15.4056
  7013. 6.4694,15.2774
  7014. 6.4694,15.2774
  7015. 6.4694,15.2774
  7016. 6.6744,15.1843
  7017. 6.6800,15.1818
  7018. 6.7590,15.1251
  7019. 6.8102,15.0426
  7020. 6.8261,14.9551
  7021. 6.8261,14.2353
  7022. 6.8071,14.1400
  7023. 6.7531,14.0592
  7024. 6.6723,14.0052
  7025. 6.5771,13.9863
  7026. 6.5298,13.9908
  7027. 6.5228,13.9921
  7028. 6.5228,13.9921
  7029. 6.5228,13.9921
  7030. 6.4738,13.9947
  7031. 6.4702,13.9949
  7032. 6.4702,13.9949
  7033. 5.0852,13.9949
  7034. 4.9899,14.0139
  7035. 4.9091,14.0679
  7036. 4.7562,14.2208
  7037. 4.7562,14.2208
  7038. 4.7562,14.2208
  7039. 4.5774,14.3446
  7040. 4.5712,14.3489
  7041. 4.3662,14.4420
  7042. 4.1480,14.4970
  7043. 4.1480,14.4970
  7044. 4.1480,14.4970
  7045. 4.0819,14.5022
  7046. 4.0158,14.5074
  7047. 2.9373,14.5074
  7048. 2.8051,14.4970
  7049. 2.5869,14.4420
  7050. 2.3819,14.3489
  7051. 2.1969,14.2208
  7052. 2.0377,14.0616
  7053. 1.9095,13.8766
  7054. 1.8165,13.6716
  7055. 1.7615,13.4533
  7056. 1.7511,13.3212
  7057. 1.7511,12.5177
  7058. 1.7615,12.3855
  7059. 1.8165,12.1673
  7060. 1.9095,11.9623
  7061. 2.0377,11.7773
  7062. 2.1969,11.6181
  7063. 2.1969,11.6181
  7064. 2.1969,11.6181
  7065. 2.3819,11.4899
  7066. 2.4224,11.4716
  7067. 2.5013,11.4149
  7068. 2.5525,11.3323
  7069. 2.5682,11.2365
  7070. 2.5461,11.1419
  7071. 2.4920,11.0665
  7072. 2.4923,11.0662
  7073. 2.4902,11.0641
  7074. 2.4894,11.0630
  7075. 2.4867,11.0605
  7076. 2.4844,11.0583
  7077. 2.4844,11.0583
  7078. 2.3252,10.8991
  7079. 2.1970,10.7141
  7080. 2.1040,10.5091
  7081. 2.0490,10.2908
  7082. 2.0485,10.2853
  7083. 2.0386,10.1587
  7084. 2.0386,10.1587
  7085. 2.0386,9.0802
  7086. 2.0490,8.9480
  7087. 2.1040,8.7298
  7088. 2.1970,8.5248
  7089. 2.2432,8.4583
  7090. 2.3252,8.3398
  7091. 2.3252,8.3398
  7092. 2.3252,8.3398
  7093. 2.4844,8.1806
  7094. 2.4844,8.1806
  7095. 2.4844,8.1806
  7096. 2.6694,8.0524
  7097. 2.6694,8.0524
  7098. 2.6694,8.0524
  7099. 2.8082,7.9894
  7100. 2.8744,7.9593
  7101. 2.8744,7.9593
  7102. 2.8744,7.9593
  7103. 3.0926,7.9043
  7104. 3.0926,7.9043
  7105. 3.0926,7.9043
  7106. 3.0926,7.9043
  7107. 3.2248,7.8939
  7108. 3.2248,7.8939
  7109. 3.5081,7.8939
  7110. 3.6034,7.8750
  7111. 3.6841,7.8210
  7112. 3.7381,7.7402
  7113. 3.7571,7.6449
  7114. 3.7563,7.6254
  7115. 3.7558,7.6192
  7116. 3.7511,7.5587
  7117. 3.7511,6.1302
  7118. 3.7615,5.9980
  7119. 3.8165,5.7798
  7120. 3.9095,5.5748
  7121. 4.0377,5.3898
  7122. 4.1969,5.2306
  7123. 4.1969,5.2306
  7124. 4.1969,5.2306
  7125. 4.3819,5.1024
  7126. 4.3819,5.1024
  7127. 4.3819,5.1024
  7128. 4.5188,5.0403
  7129. 4.5869,5.0093
  7130. 4.5869,5.0093
  7131. 4.5869,5.0093
  7132. 4.8051,4.9543
  7133. 4.8051,4.9543
  7134. 4.8051,4.9543
  7135. 4.8051,4.9543
  7136. 4.9373,4.9439
  7137. 4.9373,4.9439
  7138. 5.6769,4.9439
  7139. 5.7722,4.9250
  7140. 5.8530,4.8710
  7141. 6.4049,4.3190
  7142. 7.0990,3.6249
  7143. 7.2901,3.4861
  7144. 7.5006,3.3789
  7145. 7.5006,3.3789
  7146. 7.5006,3.3789
  7147. 7.6291,3.3371
  7148. 7.7252,3.3059
  7149. 7.7252,3.3059
  7150. 7.7252,3.3059
  7151. 7.9585,3.2689
  7152. 7.9585,3.2689
  7153. 7.9585,3.2689
  7154. 30.6946,3.2689
  7155. 30.6946,3.2689
  7156. 30.6947,3.2689
  7157. 30.9279,3.3059
  7158. 30.9279,3.3059
  7159. 31.0796,3.3552
  7160. 31.0796,3.3552
  7161. 31.1525,3.3789
  7162. 31.3630,3.4861
  7163. 31.5541,3.6249
  7164. 33.3952,5.4661
  7165. 33.4760,5.5201
  7166. 33.4944,5.5268
  7167. 33.5775,5.5539
  7168. 33.7880,5.6611
  7169. 33.9791,5.7999
  7170. 34.1461,5.9669
  7171. 34.2849,6.1580
  7172. 34.3921,6.3684
  7173. 34.4651,6.5931
  7174. 34.5021,6.8263
  7175. 34.5021,6.8263
  7176. 34.5021,7.0625
  7177. 34.5021,7.0625
  7178. 34.4651,7.2958
  7179. 34.3954,7.5104
  7180. 34.3921,7.5204
  7181. 34.2953,7.7105
  7182. 34.2805,7.7396
  7183. 34.2828,7.7408
  7184. 34.2551,7.8157
  7185. 34.2521,7.8547
  7186. 34.2521,8.8743
  7187. 34.2710,8.9696
  7188. 34.3250,9.0504
  7189. 34.4058,9.1044
  7190. 34.5011,9.1233
  7191. 34.5963,9.1044
  7192. 34.6771,9.0504
  7193. 34.7469,8.9806
  7194. 34.7469,8.9806
  7195. 34.7469,8.9806
  7196. 34.9319,8.8524
  7197. 34.9319,8.8524
  7198. 34.9319,8.8524
  7199. 35.0926,8.7795
  7200. 35.1369,8.7593
  7201. 35.1369,8.7593
  7202. 35.1369,8.7593
  7203. 35.3551,8.7043
  7204. 35.3551,8.7043
  7205. 35.3551,8.7043
  7206. 35.3552,8.7043
  7207. 35.4873,8.6939
  7208. 36.9158,8.6939
  7209. 37.0480,8.7043
  7210. 37.2662,8.7593
  7211. 37.4171,8.8278
  7212. 37.4712,8.8524
  7213. 37.4712,8.8524
  7214. 37.4712,8.8524
  7215. 37.6562,8.9806
  7216. 37.8154,9.1398
  7217. 37.9436,9.3248
  7218. 37.9436,9.3248
  7219. 37.9436,9.3248
  7220. 37.9995,9.4479
  7221. 38.0052,9.4604
  7222. 38.0618,9.5393
  7223. 38.1444,9.5906
  7224. 38.2319,9.6064
  7225. 45.0082,9.6064
  7226. 45.1035,9.5875
  7227. 45.1183,9.5808
  7228. 45.1228,9.5785
  7229. 45.3288,9.4932
  7230. 45.3288,9.4932
  7231. 45.3288,9.4932
  7232. 45.3288,9.4932
  7233. 45.5441,9.4355
  7234. 45.5441,9.4355
  7235. 45.5441,9.4355
  7236. 45.7651,9.4064
  7237. 45.9880,9.4064
  7238. 46.2090,9.4355
  7239. 46.2090,9.4355
  7240. 46.2090,9.4355
  7241. 46.2358,9.4427
  7242. 46.4243,9.4932
  7243. 46.4243,9.4932
  7244. 46.6303,9.5785
  7245. 46.6348,9.5808
  7246. 46.6372,9.5814
  7247. 46.6378,9.5817
  7248. 46.6378,9.5816
  7249. 46.7286,9.6059
  7250. 46.7449,9.6064
  7251. 47.2593,9.6064
  7252. 47.3546,9.5875
  7253. 47.3618,9.5844
  7254. 47.3619,9.5843
  7255. 47.5801,9.5293
  7256. 47.5801,9.5293
  7257. 47.7123,9.5189
  7258. 47.7123,9.5189
  7259. 48.2783,9.5189
  7260. 48.3736,9.5000
  7261. 48.4544,9.4460
  7262. 48.5083,9.3652
  7263. 48.5211,9.3206
  7264. 48.5214,9.3207
  7265. 48.5535,9.1933
  7266. 48.5790,9.0923
  7267. 48.6720,8.8873
  7268. 48.6810,8.8743
  7269. 48.8002,8.7023
  7270. 48.8002,8.7023
  7271. 48.8002,8.7023
  7272. 48.9594,8.5431
  7273. 48.9594,8.5431
  7274. 48.9594,8.5431
  7275. 49.1444,8.4149
  7276. 49.1444,8.4149
  7277. 49.1444,8.4149
  7278. 49.3099,8.3398
  7279. 49.3494,8.3218
  7280. 49.3494,8.3218
  7281. 49.3494,8.3218
  7282. 49.5676,8.2668
  7283. 49.5676,8.2668
  7284. 49.5676,8.2668
  7285. 49.5677,8.2668
  7286. 49.6998,8.2564
  7287. 50.5033,8.2564
  7288. 50.6355,8.2668
  7289. 50.8537,8.3218
  7290. 50.9928,8.3850
  7291. 51.0587,8.4149
  7292. 51.0587,8.4149
  7293. 51.0587,8.4149
  7294. 51.2437,8.5431
  7295. 51.4029,8.7023
  7296. 51.5311,8.8873
  7297. 51.5311,8.8873
  7298. 51.5311,8.8873
  7299. 51.5356,8.8972
  7300. 51.6242,9.0923
  7301. 51.6792,9.3105
  7302. 51.6792,9.3105
  7303. 51.6896,9.4427
  7304. 51.6896,10.5211
  7305. 51.6792,10.6534
  7306. 51.6221,10.8797
  7307. 51.6146,10.9406
  7308. 51.6146,10.9897
  7309. 51.6335,11.0850
  7310. 51.6366,11.0922
  7311. 51.6367,11.0923
  7312. 51.6917,11.3105
  7313. 51.6917,11.3105
  7314. 51.7021,11.4427
  7315. 51.7021,11.9574
  7316. 51.7210,12.0527
  7317. 51.7750,12.1335
  7318. 51.8558,12.1875
  7319. 51.9511,12.2064
  7320. 52.2158,12.2064
  7321. 52.3480,12.2168
  7322. 52.5662,12.2718
  7323. 52.7196,12.3415
  7324. 52.7712,12.3649
  7325. 52.7712,12.3649
  7326. 52.7712,12.3649
  7327. 52.9562,12.4931
  7328. 53.1154,12.6523
  7329. 53.2436,12.8373
  7330. 53.3366,13.0423
  7331. 53.3917,13.2605
  7332. 53.3917,13.2605
  7333. 53.4021,13.3927
  7334. 53.4021,14.4211
  7335. 53.3917,14.5534
  7336. 53.3366,14.7716
  7337. 53.3333,14.7790
  7338. 53.3112,14.8736
  7339. 53.3269,14.9694
  7340. 53.3333,14.9849
  7341. 53.3366,14.9922
  7342. 53.3917,15.2105
  7343. 53.3917,15.2105
  7344. 53.4021,15.3427
  7345. 53.4021,16.3711
  7346. 53.3928,16.4883
  7347. 53.3917,16.5033
  7348. 53.3386,16.7139
  7349. 53.3366,16.7216
  7350. 53.3276,16.7415
  7351. 53.2436,16.9266
  7352. 53.2436,16.9266
  7353. 53.2436,16.9266
  7354. 53.1388,17.0778
  7355. 53.1154,17.1116
  7356. 53.1154,17.1116
  7357. 53.1099,17.1181
  7358. 53.0634,17.2034
  7359. 53.0521,17.2777
  7360. 53.0521,18.3155
  7361. 53.0459,18.4041
  7362. 53.0459,18.4041
  7363. 53.0235,18.4993
  7364. 52.9978,18.6085
  7365. 52.9971,18.6116
  7366. 52.9277,18.7689
  7367. 52.9065,18.8637
  7368. 52.9233,18.9594
  7369. 52.9277,18.9700
  7370. 52.9971,19.1272
  7371. 53.0459,19.3348
  7372. 53.0459,19.3348
  7373. 53.0521,19.4234
  7374. 53.0521,20.1866
  7375. 53.0710,20.2819
  7376. 53.1250,20.3627
  7377. 53.1593,20.3913
  7378. 53.3062,20.4931
  7379. 53.4654,20.6523
  7380. 53.5936,20.8373
  7381. 53.6867,21.0423
  7382. 53.7417,21.2605
  7383. 53.7417,21.2605
  7384. 53.7521,21.3927
  7385. 53.7521,22.1961
  7386. 53.7505,22.2160
  7387. 53.7417,22.3284
  7388. 53.6906,22.5309
  7389. 53.6867,22.5466
  7390. 53.6690,22.5856
  7391. 53.5936,22.7516
  7392. 53.5936,22.7516
  7393. 53.5936,22.7516
  7394. 53.4654,22.9366
  7395. 53.4654,22.9366
  7396. 53.4654,22.9366
  7397. 53.3062,23.0958
  7398. 53.3062,23.0958
  7399. 53.3062,23.0958
  7400. 53.1606,23.1967
  7401. 53.1212,23.2239
  7402. 52.9162,23.3170
  7403. 52.6980,23.3720
  7404. 52.6980,23.3720
  7405. 52.6980,23.3720
  7406. 52.6319,23.3772
  7407. 52.5658,23.3824
  7408. 51.4873,23.3824
  7409. 51.3551,23.3720
  7410. 51.1369,23.3170
  7411. 51.1369,23.3170
  7412. 51.1369,23.3170
  7413. 51.1315,23.3152
  7414. 51.1296,23.3139
  7415. 51.0860,23.3052
  7416. 51.0427,23.2951
  7417. 51.0343,23.2949
  7418. 51.0188,23.2949
  7419. 50.9235,23.3139
  7420. 50.9163,23.3170
  7421. 50.9163,23.3170
  7422. 50.9162,23.3170
  7423. 50.9162,23.3170
  7424. 50.6980,23.3720
  7425. 50.6980,23.3720
  7426. 50.6980,23.3720
  7427. 50.6319,23.3772
  7428. 50.5658,23.3824
  7429. 50.0152,23.3824
  7430. 49.9199,23.4014
  7431. 49.8391,23.4554
  7432. 49.7851,23.5361
  7433. 49.7685,23.6055
  7434. 49.7683,23.6055
  7435. 49.7680,23.6074
  7436. 49.7670,23.6119
  7437. 49.7667,23.6158
  7438. 49.7667,23.6158
  7439. 49.7667,23.6158
  7440. 49.7667,23.6158
  7441. 49.7275,23.7714
  7442. 49.7116,23.8341
  7443. 49.6827,23.8978
  7444. 49.6186,24.0391
  7445. 49.6186,24.0391
  7446. 49.6186,24.0391
  7447. 49.4904,24.2241
  7448. 49.4904,24.2241
  7449. 49.4904,24.2241
  7450. 49.3312,24.3833
  7451. 49.3312,24.3833
  7452. 49.3312,24.3833
  7453. 49.1537,24.5062
  7454. 49.1462,24.5114
  7455. 48.9412,24.6045
  7456. 48.7230,24.6595
  7457. 48.7230,24.6595
  7458. 48.7230,24.6595
  7459. 48.6569,24.6647
  7460. 48.5908,24.6699
  7461. 47.5123,24.6699
  7462. 47.3801,24.6595
  7463. 47.1619,24.6045
  7464. 46.9569,24.5114
  7465. 46.7719,24.3833
  7466. 46.6559,24.2672
  7467. 46.5751,24.2133
  7468. 46.4798,24.1943
  7469. 46.3845,24.2133
  7470. 46.3038,24.2672
  7471. 46.2498,24.3480
  7472. 46.2330,24.4108
  7473. 46.2204,24.5062
  7474. 46.2204,24.5062
  7475. 46.1576,24.7405
  7476. 46.1576,24.7405
  7477. 46.0648,24.9646
  7478. 46.0648,24.9647
  7479. 45.9435,25.1747
  7480. 45.9435,25.1747
  7481. 45.7958,25.3672
  7482. 45.7958,25.3672
  7483. 45.6243,25.5387
  7484. 45.6243,25.5387
  7485. 45.5031,25.6317
  7486. 45.4318,25.6864
  7487. 45.4318,25.6864
  7488. 45.2218,25.8077
  7489. 45.2218,25.8077
  7490. 45.0817,25.8657
  7491. 44.9977,25.9005
  7492. 44.9976,25.9005
  7493. 44.9976,25.9005
  7494. 44.8145,25.9496
  7495. 44.7633,25.9633
  7496. 44.5228,25.9949
  7497. 44.2803,25.9949
  7498. 44.0398,25.9633
  7499. 43.8783,25.9200
  7500. 43.8055,25.9005
  7501. 43.8055,25.9005
  7502. 43.8055,25.9005
  7503. 43.6185,25.8230
  7504. 43.5814,25.8077
  7505. 43.5814,25.8077
  7506. 43.5813,25.8077
  7507. 43.5256,25.7755
  7508. 43.4336,25.7442
  7509. 43.3366,25.7506
  7510. 43.2495,25.7935
  7511. 43.1854,25.8666
  7512. 43.1542,25.9586
  7513. 43.1521,25.9911
  7514. 43.1521,30.2425
  7515. 43.1521,30.2425
  7516. 43.1151,30.4758
  7517. 43.0431,30.6974
  7518. 43.0421,30.7004
  7519. 42.9349,30.9109
  7520. 42.7961,31.1019
  7521. 42.5950,31.3030
  7522. 42.5410,31.3838
  7523. 42.5221,31.4791
  7524. 42.5221,32.0125
  7525. 42.5221,32.0125
  7526. 42.5114,32.1319
  7527. 42.4520,32.3396
  7528. 42.4540,32.3402
  7529. 42.4396,32.4152
  7530. 42.4396,32.7198
  7531. 42.4585,32.8151
  7532. 42.5125,32.8959
  7533. 42.5504,32.9248
  7534. 42.5495,32.9261
  7535. 42.7437,33.0606
  7536. 42.9029,33.2198
  7537. 43.0311,33.4048
  7538. 43.1242,33.6098
  7539. 43.1792,33.8280
  7540. 43.1792,33.8280
  7541. 43.1896,33.9602
  7542. 43.1896,35.3886
  7543. 43.1896,35.3887
  7544. 43.1792,35.5208
  7545. 43.1242,35.7391
  7546. 43.1242,35.7391
  7547. 43.1214,35.7500
  7548. 43.1232,35.7504
  7549. 43.1121,35.8160
  7550. 43.1121,40.8375
  7551. 43.1121,40.8375
  7552. 43.0880,40.9894
  7553. 43.0751,41.0708
  7554. 43.0021,41.2954
  7555. 42.8949,41.5059
  7556. 42.7561,41.6969
  7557. 42.5950,41.8580
  7558. 42.5410,41.9388
  7559. 42.5221,42.0341
  7560. 42.5221,42.5675
  7561. 42.5221,42.5675
  7562. 42.5114,42.6869
  7563. 42.4520,42.8946
  7564. 42.4552,42.8956
  7565. 42.4421,42.9639
  7566. 42.4421,43.2648
  7567. 42.4610,43.3601
  7568. 42.5150,43.4409
  7569. 42.5529,43.4698
  7570. 42.5520,43.4711
  7571. 42.7462,43.6056
  7572. 42.9054,43.7648
  7573. 43.0336,43.9498
  7574. 43.1266,44.1548
  7575. 43.1817,44.3730
  7576. 43.1817,44.3730
  7577. 43.1921,44.5052
  7578. 43.1921,45.9336
  7579. 43.1857,46.0139
  7580. 43.1817,46.0658
  7581. 43.1328,46.2597
  7582. 43.1266,46.2841
  7583. 43.0543,46.4433
  7584. 43.0322,46.5379
  7585. 43.0321,46.5463
  7586. 43.0321,48.1498
  7587. 43.0510,48.2451
  7588. 43.1050,48.3258
  7589. 43.1461,48.3669
  7590. 43.1461,48.3669
  7591. 43.2849,48.5580
  7592. 43.3921,48.7684
  7593. 43.4651,48.9931
  7594. 43.5021,49.2263
  7595. 43.5021,49.2263
  7596. 43.5021,49.4625
  7597. 43.5021,49.4625
  7598. 43.4651,49.6958
  7599. 43.4651,49.6958
  7600. 43.4561,49.7237
  7601. 43.4059,49.8780
  7602. 43.3921,49.9204
  7603. 43.3911,49.9225
  7604. 43.2849,50.1309
  7605. 43.1461,50.3219
  7606. 43.1461,50.3219
  7607. 43.1461,50.3219
  7608. 43.1050,50.3630
  7609. 43.0510,50.4438
  7610. 43.0321,50.5391
  7611. 43.0321,51.4525
  7612. 43.0321,51.4525
  7613. 42.9990,51.6610
  7614. 42.9951,51.6858
  7615. 42.9765,51.7430
  7616. 42.9225,51.9093
  7617. 42.9221,51.9104
  7618. 42.8149,52.1209
  7619. 42.6761,52.3119
  7620. 42.5850,52.4030
  7621. 42.5310,52.4838
  7622. 42.5121,52.5791
  7623. 42.5121,53.1125
  7624. 42.5121,53.1125
  7625. 42.5014,53.2319
  7626. 42.4420,53.4396
  7627. 42.4452,53.4405
  7628. 42.4321,53.5089
  7629. 42.4321,53.8198
  7630. 42.4510,53.9151
  7631. 42.5050,53.9959
  7632. 42.5429,54.0248
  7633. 42.5420,54.0261
  7634. 42.7362,54.1606
  7635. 42.8954,54.3198
  7636. 43.0236,54.5048
  7637. 43.0236,54.5048
  7638. 43.0236,54.5048
  7639. 43.0282,54.5149
  7640. 43.1166,54.7098
  7641. 43.1717,54.9280
  7642. 43.1717,54.9280
  7643. 43.1821,55.0602
  7644. 43.1821,55.5339
  7645. 43.2010,55.6292
  7646. 43.2550,55.7100
  7647. 43.3358,55.7640
  7648. 43.4311,55.7829
  7649. 43.5263,55.7640
  7650. 43.5340,55.7606
  7651. 43.5369,55.7593
  7652. 43.7551,55.7043
  7653. 43.7552,55.7043
  7654. 43.8873,55.6939
  7655. 45.3158,55.6939
  7656. 45.4480,55.7043
  7657. 45.6662,55.7593
  7658. 45.8196,55.8290
  7659. 45.8712,55.8524
  7660. 45.8712,55.8524
  7661. 45.8712,55.8524
  7662. 46.0562,55.9806
  7663. 46.2154,56.1398
  7664. 46.3436,56.3248
  7665. 46.4367,56.5298
  7666. 46.4917,56.7480
  7667. 46.4917,56.7480
  7668. 46.5021,56.8802
  7669. 46.5021,59.0086
  7670. 46.4917,59.1409
  7671. 46.4794,59.1897
  7672. 46.4744,59.2867
  7673. 46.5071,59.3782
  7674. 46.5722,59.4503
  7675. 46.6600,59.4920
  7676. 46.7208,59.4995
  7677. 54.9894,59.4995
  7678. 55.0002,59.4993
  7679. 55.3761,59.4829
  7680. 55.3977,59.4810
  7681. 55.7653,59.4326
  7682. 55.7867,59.4288
  7683. 56.1487,59.3485
  7684. 56.1697,59.3429
  7685. 56.5234,59.2314
  7686. 56.5438,59.2240
  7687. 56.6266,59.1897
  7688. 56.8863,59.0821
  7689. 56.9060,59.0729
  7690. 57.2349,58.9017
  7691. 57.2537,58.8908
  7692. 57.5664,58.6916
  7693. 57.5842,58.6792
  7694. 57.6041,58.6639
  7695. 57.8784,58.4534
  7696. 57.8950,58.4395
  7697. 58.1684,58.1890
  7698. 58.1838,58.1736
  7699. 58.4343,57.9002
  7700. 58.4482,57.8836
  7701. 58.4933,57.8248
  7702. 58.6740,57.5894
  7703. 58.6864,57.5716
  7704. 58.6880,57.5692
  7705. 58.8856,57.2589
  7706. 58.8965,57.2401
  7707. 59.0677,56.9112
  7708. 59.0769,56.8915
  7709. 59.2188,56.5490
  7710. 59.2262,56.5286
  7711. 59.3377,56.1749
  7712. 59.3433,56.1539
  7713. 59.3487,56.1298
  7714. 59.4236,55.7919
  7715. 59.4274,55.7706
  7716. 59.4758,55.4029
  7717. 59.4777,55.3813
  7718. 59.4941,55.0054
  7719. 59.4943,54.9946
  7720. 59.4943,52.1470
  7721. 59.4753,52.0517
  7722. 59.4214,51.9709
  7723. 59.3406,51.9170
  7724. 59.2453,51.8980
  7725. 59.1500,51.9170
  7726. 59.0692,51.9709
  7727. 59.0153,52.0517
  7728. 59.0085,52.0701
  7729. 58.9921,52.1204
  7730. 58.9921,52.1204
  7731. 58.9921,52.1204
  7732. 58.8849,52.3309
  7733. 58.7461,52.5219
  7734. 57.3466,53.9215
  7735. 57.1555,54.0603
  7736. 56.9769,54.1513
  7737. 56.9450,54.1675
  7738. 56.7204,54.2405
  7739. 56.4871,54.2774
  7740. 56.2510,54.2774
  7741. 55.7838,54.2774
  7742. 55.6885,54.2964
  7743. 55.6813,54.2995
  7744. 55.6813,54.2995
  7745. 55.6812,54.2995
  7746. 55.6812,54.2995
  7747. 55.4630,54.3545
  7748. 55.4630,54.3545
  7749. 55.4630,54.3545
  7750. 55.3969,54.3597
  7751. 55.3308,54.3649
  7752. 54.2523,54.3649
  7753. 54.1201,54.3545
  7754. 54.0772,54.3437
  7755. 53.9802,54.3388
  7756. 53.9187,54.3561
  7757. 53.8967,54.3655
  7758. 53.8666,54.3859
  7759. 53.6751,54.4679
  7760. 53.6372,54.4761
  7761. 53.6155,54.4854
  7762. 53.5945,54.4997
  7763. 53.5711,54.5099
  7764. 53.5547,54.5269
  7765. 53.5352,54.5402
  7766. 53.5213,54.5615
  7767. 53.5036,54.5798
  7768. 53.4950,54.6018
  7769. 53.4821,54.6215
  7770. 53.4774,54.6465
  7771. 53.4681,54.6702
  7772. 53.4685,54.6938
  7773. 53.4641,54.7170
  7774. 53.4693,54.7419
  7775. 53.4698,54.7674
  7776. 53.4792,54.7890
  7777. 53.4841,54.8121
  7778. 53.4984,54.8331
  7779. 53.5086,54.8564
  7780. 53.5256,54.8728
  7781. 53.5389,54.8923
  7782. 53.5602,54.9062
  7783. 53.5785,54.9239
  7784. 53.6023,54.9338
  7785. 53.6202,54.9454
  7786. 53.6391,54.9490
  7787. 53.6602,54.9577
  7788. 53.6751,54.9610
  7789. 53.6751,54.9610
  7790. 53.8666,55.0430
  7791. 53.8666,55.0430
  7792. 54.0390,55.1597
  7793. 54.0390,55.1597
  7794. 54.1863,55.3070
  7795. 54.1863,55.3070
  7796. 54.3030,55.4794
  7797. 54.3030,55.4794
  7798. 54.3850,55.6709
  7799. 54.3850,55.6709
  7800. 54.4293,55.8744
  7801. 54.4293,55.8744
  7802. 54.4321,55.9212
  7803. 54.4321,56.8077
  7804. 54.4293,56.8545
  7805. 54.4293,56.8545
  7806. 54.3850,57.0580
  7807. 54.3850,57.0580
  7808. 54.3458,57.1495
  7809. 54.3030,57.2494
  7810. 54.3030,57.2494
  7811. 54.3030,57.2494
  7812. 54.2966,57.2589
  7813. 54.1863,57.4219
  7814. 54.0390,57.5692
  7815. 53.8666,57.6859
  7816. 53.7516,57.7351
  7817. 53.6751,57.7679
  7818. 53.6751,57.7679
  7819. 53.4716,57.8121
  7820. 53.4716,57.8121
  7821. 53.4716,57.8122
  7822. 53.4560,57.8131
  7823. 53.4248,57.8149
  7824. 53.4248,57.8149
  7825. 51.9383,57.8149
  7826. 51.9095,57.8132
  7827. 51.8915,57.8122
  7828. 51.8915,57.8121
  7829. 51.8915,57.8121
  7830. 51.6880,57.7679
  7831. 51.6880,57.7679
  7832. 51.6880,57.7679
  7833. 51.4966,57.6859
  7834. 51.3241,57.5692
  7835. 51.1768,57.4219
  7836. 51.0601,57.2494
  7837. 50.9781,57.0580
  7838. 50.9725,57.0322
  7839. 50.9338,56.8545
  7840. 50.9338,56.8545
  7841. 50.9338,56.8545
  7842. 50.9311,56.8077
  7843. 50.9311,55.9212
  7844. 50.9311,55.9212
  7845. 50.9338,55.8744
  7846. 50.9338,55.8744
  7847. 50.9338,55.8744
  7848. 50.9338,55.8744
  7849. 50.9781,55.6709
  7850. 50.9781,55.6709
  7851. 51.0368,55.5339
  7852. 51.0601,55.4794
  7853. 51.1768,55.3070
  7854. 51.3241,55.1597
  7855. 51.4352,55.0845
  7856. 51.4966,55.0430
  7857. 51.4966,55.0430
  7858. 51.4966,55.0430
  7859. 51.6096,54.9946
  7860. 51.6880,54.9610
  7861. 51.6880,54.9610
  7862. 51.6880,54.9610
  7863. 51.7029,54.9577
  7864. 51.7920,54.9190
  7865. 51.8595,54.8491
  7866. 51.8950,54.7586
  7867. 51.8933,54.6615
  7868. 51.8545,54.5724
  7869. 51.7846,54.5050
  7870. 51.7029,54.4711
  7871. 51.6880,54.4679
  7872. 51.4966,54.3859
  7873. 51.3241,54.2692
  7874. 51.1768,54.1219
  7875. 51.0601,53.9494
  7876. 50.9781,53.7580
  7877. 50.9781,53.7580
  7878. 50.9338,53.5545
  7879. 50.9338,53.5545
  7880. 50.9338,53.5545
  7881. 50.9323,53.5281
  7882. 50.9077,53.4341
  7883. 50.8490,53.3567
  7884. 50.7651,53.3076
  7885. 50.6689,53.2943
  7886. 50.5749,53.3189
  7887. 50.5076,53.3668
  7888. 49.8562,54.0183
  7889. 49.6970,54.1340
  7890. 49.5216,54.2233
  7891. 49.3658,54.2739
  7892. 49.3344,54.2841
  7893. 49.1400,54.3149
  7894. 49.1255,54.3149
  7895. 49.1036,54.3189
  7896. 49.0787,54.3287
  7897. 49.0525,54.3339
  7898. 49.0173,54.3528
  7899. 49.0131,54.3544
  7900. 49.0117,54.3558
  7901. 49.0082,54.3577
  7902. 48.9975,54.3649
  7903. 48.9666,54.3859
  7904. 48.7751,54.4679
  7905. 48.7751,54.4679
  7906. 48.7751,54.4679
  7907. 48.5716,54.5121
  7908. 48.5716,54.5121
  7909. 48.5716,54.5122
  7910. 48.5560,54.5131
  7911. 48.5248,54.5149
  7912. 48.5248,54.5149
  7913. 47.0383,54.5149
  7914. 47.0095,54.5132
  7915. 46.9915,54.5122
  7916. 46.9915,54.5121
  7917. 46.9915,54.5121
  7918. 46.7880,54.4679
  7919. 46.7880,54.4679
  7920. 46.7880,54.4679
  7921. 46.5966,54.3859
  7922. 46.4241,54.2692
  7923. 46.2768,54.1219
  7924. 46.1601,53.9494
  7925. 46.0781,53.7580
  7926. 46.0781,53.7580
  7927. 46.0338,53.5545
  7928. 46.0338,53.5545
  7929. 46.0338,53.5545
  7930. 46.0323,53.5281
  7931. 46.0311,53.5077
  7932. 46.0311,52.6212
  7933. 46.0338,52.5744
  7934. 46.0338,52.5744
  7935. 46.0338,52.5744
  7936. 46.0338,52.5744
  7937. 46.0781,52.3709
  7938. 46.0781,52.3709
  7939. 46.1409,52.2242
  7940. 46.1601,52.1794
  7941. 46.2768,52.0070
  7942. 46.4241,51.8597
  7943. 46.5966,51.7430
  7944. 46.6348,51.7266
  7945. 46.7880,51.6610
  7946. 46.7880,51.6610
  7947. 46.9915,51.6167
  7948. 46.9915,51.6167
  7949. 47.0383,51.6139
  7950. 47.0383,51.6139
  7951. 48.5248,51.6139
  7952. 48.5248,51.6139
  7953. 48.5716,51.6167
  7954. 48.5802,51.6179
  7955. 48.6772,51.6121
  7956. 48.7646,51.5697
  7957. 48.7902,51.5473
  7958. 49.6134,50.7241
  7959. 50.5269,49.8106
  7960. 50.6861,49.6949
  7961. 50.8615,49.6056
  7962. 50.8615,49.6056
  7963. 50.8615,49.6056
  7964. 51.0487,49.5447
  7965. 51.2431,49.5139
  7966. 51.2431,49.5139
  7967. 51.2431,49.5139
  7968. 51.2431,49.5139
  7969. 51.3054,49.5139
  7970. 51.4007,49.4950
  7971. 51.4075,49.4920
  7972. 51.4271,49.4832
  7973. 51.4866,49.4430
  7974. 51.6780,49.3610
  7975. 51.7184,49.3522
  7976. 51.7421,49.3415
  7977. 51.7609,49.3282
  7978. 51.7820,49.3190
  7979. 51.8001,49.3003
  7980. 51.8213,49.2852
  7981. 51.8335,49.2656
  7982. 51.8495,49.2491
  7983. 51.8590,49.2248
  7984. 51.8728,49.2028
  7985. 51.8766,49.1801
  7986. 51.8850,49.1586
  7987. 51.8846,49.1326
  7988. 51.8889,49.1070
  7989. 51.8837,49.0845
  7990. 51.8833,49.0615
  7991. 51.8729,49.0377
  7992. 51.8671,49.0123
  7993. 51.8537,48.9935
  7994. 51.8445,48.9724
  7995. 51.8258,48.9544
  7996. 51.8107,48.9332
  7997. 51.7912,48.9210
  7998. 51.7746,48.9050
  7999. 51.7480,48.8940
  8000. 51.7284,48.8816
  8001. 51.7115,48.8788
  8002. 51.6929,48.8711
  8003. 51.6780,48.8679
  8004. 51.4866,48.7859
  8005. 51.3141,48.6692
  8006. 51.1668,48.5219
  8007. 51.0501,48.3494
  8008. 50.9751,48.1743
  8009. 50.9681,48.1580
  8010. 50.9681,48.1580
  8011. 50.9238,47.9545
  8012. 50.9238,47.9545
  8013. 50.9238,47.9545
  8014. 50.9228,47.9375
  8015. 50.8982,47.8435
  8016. 50.8396,47.7661
  8017. 50.7557,47.7170
  8018. 50.6595,47.7038
  8019. 50.5655,47.7284
  8020. 50.4982,47.7763
  8021. 50.1456,48.1288
  8022. 49.8562,48.4183
  8023. 49.6970,48.5340
  8024. 49.5216,48.6233
  8025. 49.3344,48.6841
  8026. 49.1400,48.7149
  8027. 49.1377,48.7149
  8028. 49.1363,48.7152
  8029. 49.1302,48.7157
  8030. 49.1303,48.7164
  8031. 49.0425,48.7339
  8032. 48.9982,48.7577
  8033. 48.9733,48.7745
  8034. 48.9566,48.7859
  8035. 48.7651,48.8679
  8036. 48.7651,48.8679
  8037. 48.7651,48.8679
  8038. 48.5616,48.9121
  8039. 48.5616,48.9121
  8040. 48.5616,48.9122
  8041. 48.5460,48.9131
  8042. 48.5148,48.9149
  8043. 48.5148,48.9149
  8044. 47.0283,48.9149
  8045. 46.9995,48.9132
  8046. 46.9815,48.9122
  8047. 46.9815,48.9121
  8048. 46.9815,48.9121
  8049. 46.7780,48.8679
  8050. 46.7780,48.8679
  8051. 46.7780,48.8679
  8052. 46.5866,48.7859
  8053. 46.4141,48.6692
  8054. 46.2668,48.5219
  8055. 46.1501,48.3494
  8056. 46.0751,48.1743
  8057. 46.0681,48.1580
  8058. 46.0681,48.1580
  8059. 46.0238,47.9545
  8060. 46.0238,47.9545
  8061. 46.0238,47.9545
  8062. 46.0211,47.9077
  8063. 46.0211,47.0212
  8064. 46.0211,47.0212
  8065. 46.0238,46.9744
  8066. 46.0238,46.9744
  8067. 46.0238,46.9744
  8068. 46.0238,46.9744
  8069. 46.0681,46.7709
  8070. 46.0681,46.7709
  8071. 46.1071,46.6798
  8072. 46.1501,46.5794
  8073. 46.2668,46.4070
  8074. 46.4141,46.2597
  8075. 46.5866,46.1430
  8076. 46.6248,46.1266
  8077. 46.7780,46.0610
  8078. 46.7780,46.0610
  8079. 46.9815,46.0167
  8080. 46.9815,46.0167
  8081. 47.0283,46.0139
  8082. 47.0283,46.0139
  8083. 48.5148,46.0139
  8084. 48.5148,46.0139
  8085. 48.5616,46.0167
  8086. 48.5712,46.0180
  8087. 48.5714,46.0165
  8088. 48.6567,46.0180
  8089. 48.7471,45.9824
  8090. 48.7885,45.9490
  8091. 49.6415,45.0960
  8092. 50.5169,44.2206
  8093. 50.6761,44.1049
  8094. 50.8515,44.0156
  8095. 50.8515,44.0156
  8096. 50.8515,44.0156
  8097. 51.0387,43.9547
  8098. 51.2331,43.9239
  8099. 51.2331,43.9239
  8100. 51.2331,43.9239
  8101. 51.2331,43.9239
  8102. 51.3154,43.9239
  8103. 51.4107,43.9050
  8104. 51.4175,43.9020
  8105. 51.4371,43.8932
  8106. 51.4966,43.8530
  8107. 51.6880,43.7710
  8108. 51.7284,43.7622
  8109. 51.7521,43.7515
  8110. 51.7709,43.7382
  8111. 51.7920,43.7290
  8112. 51.8101,43.7103
  8113. 51.8313,43.6952
  8114. 51.8435,43.6756
  8115. 51.8595,43.6591
  8116. 51.8690,43.6348
  8117. 51.8828,43.6128
  8118. 51.8866,43.5901
  8119. 51.8950,43.5686
  8120. 51.8946,43.5426
  8121. 51.8989,43.5170
  8122. 51.8937,43.4945
  8123. 51.8933,43.4715
  8124. 51.8829,43.4477
  8125. 51.8771,43.4223
  8126. 51.8637,43.4035
  8127. 51.8545,43.3824
  8128. 51.8358,43.3644
  8129. 51.8207,43.3432
  8130. 51.8012,43.3310
  8131. 51.7846,43.3150
  8132. 51.7580,43.3040
  8133. 51.7384,43.2916
  8134. 51.7215,43.2888
  8135. 51.7029,43.2811
  8136. 51.6880,43.2779
  8137. 51.4966,43.1959
  8138. 51.3241,43.0792
  8139. 51.1768,42.9319
  8140. 51.0601,42.7594
  8141. 50.9781,42.5680
  8142. 50.9780,42.5675
  8143. 50.9338,42.3645
  8144. 50.9338,42.3645
  8145. 50.9338,42.3645
  8146. 50.9338,42.3645
  8147. 50.9328,42.3566
  8148. 50.9010,42.2648
  8149. 50.8365,42.1921
  8150. 50.7491,42.1496
  8151. 50.6521,42.1439
  8152. 50.5603,42.1756
  8153. 50.5100,42.2145
  8154. 50.1997,42.5248
  8155. 49.8962,42.8283
  8156. 49.7370,42.9440
  8157. 49.5616,43.0333
  8158. 49.3744,43.0941
  8159. 49.1800,43.1249
  8160. 49.1477,43.1249
  8161. 49.0525,43.1439
  8162. 49.0082,43.1677
  8163. 48.9666,43.1959
  8164. 48.9666,43.1959
  8165. 48.7751,43.2779
  8166. 48.7751,43.2779
  8167. 48.7751,43.2779
  8168. 48.5716,43.3221
  8169. 48.5716,43.3221
  8170. 48.5716,43.3222
  8171. 48.5560,43.3231
  8172. 48.5248,43.3249
  8173. 48.5248,43.3249
  8174. 47.0383,43.3249
  8175. 47.0095,43.3232
  8176. 46.9915,43.3222
  8177. 46.9915,43.3221
  8178. 46.9915,43.3221
  8179. 46.7880,43.2779
  8180. 46.7880,43.2779
  8181. 46.7880,43.2779
  8182. 46.5966,43.1959
  8183. 46.4241,43.0792
  8184. 46.2768,42.9319
  8185. 46.1601,42.7594
  8186. 46.0781,42.5680
  8187. 46.0780,42.5675
  8188. 46.0338,42.3645
  8189. 46.0338,42.3645
  8190. 46.0338,42.3645
  8191. 46.0321,42.3349
  8192. 46.0311,42.3177
  8193. 46.0311,41.4312
  8194. 46.0338,41.3844
  8195. 46.0338,41.3844
  8196. 46.0338,41.3844
  8197. 46.0338,41.3844
  8198. 46.0781,41.1809
  8199. 46.0781,41.1809
  8200. 46.1253,41.0708
  8201. 46.1601,40.9894
  8202. 46.2768,40.8170
  8203. 46.4241,40.6697
  8204. 46.5966,40.5530
  8205. 46.6348,40.5366
  8206. 46.7880,40.4710
  8207. 46.7880,40.4710
  8208. 46.9915,40.4267
  8209. 46.9915,40.4267
  8210. 47.0383,40.4239
  8211. 47.0383,40.4239
  8212. 48.5248,40.4239
  8213. 48.5248,40.4239
  8214. 48.5716,40.4267
  8215. 48.5941,40.4316
  8216. 48.6913,40.4334
  8217. 48.7817,40.3978
  8218. 48.8231,40.3644
  8219. 49.6915,39.4960
  8220. 50.5669,38.6206
  8221. 50.7261,38.5049
  8222. 50.9015,38.4156
  8223. 50.9015,38.4156
  8224. 50.9015,38.4156
  8225. 51.0887,38.3547
  8226. 51.2831,38.3239
  8227. 51.2831,38.3239
  8228. 51.2831,38.3239
  8229. 51.2831,38.3239
  8230. 51.3154,38.3239
  8231. 51.4107,38.3050
  8232. 51.4175,38.3020
  8233. 51.4371,38.2932
  8234. 51.4966,38.2530
  8235. 51.6880,38.1710
  8236. 51.7284,38.1622
  8237. 51.7521,38.1515
  8238. 51.7709,38.1382
  8239. 51.7920,38.1290
  8240. 51.8101,38.1103
  8241. 51.8313,38.0952
  8242. 51.8435,38.0756
  8243. 51.8595,38.0591
  8244. 51.8690,38.0348
  8245. 51.8828,38.0128
  8246. 51.8866,37.9901
  8247. 51.8950,37.9686
  8248. 51.8946,37.9426
  8249. 51.8989,37.9170
  8250. 51.8937,37.8945
  8251. 51.8933,37.8715
  8252. 51.8829,37.8477
  8253. 51.8771,37.8223
  8254. 51.8637,37.8035
  8255. 51.8545,37.7824
  8256. 51.8358,37.7644
  8257. 51.8207,37.7432
  8258. 51.8012,37.7310
  8259. 51.7846,37.7150
  8260. 51.7580,37.7040
  8261. 51.7384,37.6916
  8262. 51.7215,37.6888
  8263. 51.7029,37.6811
  8264. 51.6880,37.6779
  8265. 51.4966,37.5959
  8266. 51.3241,37.4792
  8267. 51.1768,37.3319
  8268. 51.0601,37.1594
  8269. 50.9781,36.9680
  8270. 50.9564,36.8681
  8271. 50.9338,36.7645
  8272. 50.9338,36.7645
  8273. 50.9338,36.7645
  8274. 50.9321,36.7358
  8275. 50.9075,36.6418
  8276. 50.8596,36.5746
  8277. 50.1280,35.8429
  8278. 50.0472,35.7889
  8279. 49.9519,35.7699
  8280. 49.7811,35.7699
  8281. 49.6858,35.7889
  8282. 49.6050,35.8429
  8283. 49.5510,35.9236
  8284. 49.5321,36.0189
  8285. 49.5321,36.7177
  8286. 49.5293,36.7645
  8287. 49.5293,36.7645
  8288. 49.4850,36.9680
  8289. 49.4850,36.9680
  8290. 49.4292,37.0984
  8291. 49.4030,37.1594
  8292. 49.2863,37.3319
  8293. 49.1390,37.4792
  8294. 48.9666,37.5959
  8295. 48.8516,37.6451
  8296. 48.7751,37.6779
  8297. 48.7751,37.6779
  8298. 48.5716,37.7221
  8299. 48.5716,37.7221
  8300. 48.5716,37.7222
  8301. 48.5560,37.7231
  8302. 48.5248,37.7249
  8303. 48.5248,37.7249
  8304. 47.0383,37.7249
  8305. 47.0095,37.7232
  8306. 46.9915,37.7222
  8307. 46.9915,37.7221
  8308. 46.9915,37.7221
  8309. 46.7880,37.6779
  8310. 46.7880,37.6779
  8311. 46.7880,37.6779
  8312. 46.5966,37.5959
  8313. 46.4241,37.4792
  8314. 46.2768,37.3319
  8315. 46.1601,37.1594
  8316. 46.0781,36.9680
  8317. 46.0564,36.8681
  8318. 46.0338,36.7645
  8319. 46.0338,36.7645
  8320. 46.0338,36.7645
  8321. 46.0318,36.7299
  8322. 46.0311,36.7177
  8323. 46.0311,36.3956
  8324. 46.0121,36.3003
  8325. 45.9581,36.2195
  8326. 44.8727,35.1341
  8327. 44.7570,34.9748
  8328. 44.6677,34.7995
  8329. 44.6068,34.6123
  8330. 44.5903,34.5080
  8331. 44.5761,34.4179
  8332. 44.5761,30.7927
  8333. 44.5571,30.6974
  8334. 44.5246,30.6411
  8335. 44.4096,30.4912
  8336. 44.2981,30.2982
  8337. 44.2128,30.0922
  8338. 44.1552,29.8769
  8339. 44.1261,29.6559
  8340. 44.1261,29.4330
  8341. 44.1552,29.2120
  8342. 44.2128,28.9967
  8343. 44.2203,28.9787
  8344. 44.2981,28.7907
  8345. 44.2981,28.7907
  8346. 44.2981,28.7907
  8347. 44.4096,28.5977
  8348. 44.5453,28.4208
  8349. 44.7029,28.2632
  8350. 44.8798,28.1275
  8351. 44.8996,28.1160
  8352. 45.0728,28.0160
  8353. 45.0728,28.0160
  8354. 45.2788,27.9307
  8355. 45.2788,27.9307
  8356. 45.2788,27.9307
  8357. 45.2788,27.9307
  8358. 45.4941,27.8730
  8359. 45.4941,27.8730
  8360. 45.4941,27.8730
  8361. 45.4941,27.8730
  8362. 45.5350,27.8676
  8363. 45.6270,27.8364
  8364. 45.7000,27.7724
  8365. 45.7430,27.6852
  8366. 45.7500,27.6140
  8367. 45.7511,27.6140
  8368. 45.7511,27.3830
  8369. 45.7527,27.3706
  8370. 45.7802,27.1620
  8371. 45.8378,26.9467
  8372. 45.8389,26.9440
  8373. 45.9231,26.7407
  8374. 45.9231,26.7407
  8375. 45.9231,26.7407
  8376. 46.0346,26.5477
  8377. 46.1703,26.3708
  8378. 46.3279,26.2132
  8379. 46.5048,26.0775
  8380. 46.6978,25.9660
  8381. 46.6978,25.9660
  8382. 46.6978,25.9660
  8383. 46.9038,25.8807
  8384. 46.9038,25.8807
  8385. 46.9038,25.8807
  8386. 46.9038,25.8807
  8387. 47.1191,25.8230
  8388. 47.1191,25.8230
  8389. 47.1191,25.8230
  8390. 47.3401,25.7939
  8391. 47.5630,25.7939
  8392. 47.7840,25.8230
  8393. 47.9993,25.8807
  8394. 47.9993,25.8807
  8395. 48.2053,25.9660
  8396. 48.2053,25.9660
  8397. 48.3983,26.0775
  8398. 48.5752,26.2132
  8399. 48.7328,26.3708
  8400. 48.8685,26.5477
  8401. 48.9800,26.7407
  8402. 48.9800,26.7407
  8403. 49.0653,26.9466
  8404. 49.0653,26.9467
  8405. 49.0818,27.0083
  8406. 49.0993,27.0736
  8407. 49.1230,27.1620
  8408. 49.1521,27.3830
  8409. 49.1521,27.6059
  8410. 49.1250,27.8110
  8411. 49.1230,27.8269
  8412. 49.1046,27.8953
  8413. 49.0653,28.0422
  8414. 49.0299,28.1275
  8415. 48.9800,28.2482
  8416. 48.9800,28.2482
  8417. 48.9777,28.2527
  8418. 48.9771,28.2551
  8419. 48.9768,28.2557
  8420. 48.9769,28.2557
  8421. 48.9526,28.3465
  8422. 48.9521,28.3628
  8423. 48.9521,32.3198
  8424. 48.9710,32.4151
  8425. 49.0250,32.4958
  8426. 49.2252,32.6960
  8427. 49.3059,32.7500
  8428. 49.4012,32.7689
  8429. 50.5585,32.7689
  8430. 50.7946,32.7689
  8431. 50.7946,32.7689
  8432. 50.7947,32.7689
  8433. 51.0279,32.8059
  8434. 51.2525,32.8789
  8435. 51.2525,32.8789
  8436. 51.2525,32.8789
  8437. 51.2525,32.8789
  8438. 51.3452,32.9261
  8439. 51.4630,32.9861
  8440. 51.6541,33.1249
  8441. 53.1868,34.6576
  8442. 53.2675,34.7116
  8443. 53.3628,34.7305
  8444. 53.4581,34.7116
  8445. 53.5046,34.6862
  8446. 53.6869,34.5599
  8447. 53.6869,34.5599
  8448. 53.6869,34.5599
  8449. 53.8238,34.4978
  8450. 53.8919,34.4668
  8451. 53.8919,34.4668
  8452. 53.8919,34.4668
  8453. 54.1101,34.4118
  8454. 54.1101,34.4118
  8455. 54.1101,34.4118
  8456. 54.1101,34.4118
  8457. 54.2423,34.4014
  8458. 55.3208,34.4014
  8459. 55.4530,34.4118
  8460. 55.6712,34.4668
  8461. 55.7836,34.5179
  8462. 55.8762,34.5599
  8463. 55.8762,34.5599
  8464. 55.8762,34.5599
  8465. 56.0612,34.6881
  8466. 56.0612,34.6881
  8467. 56.0612,34.6881
  8468. 56.0741,34.7010
  8469. 56.1549,34.7550
  8470. 56.2502,34.7739
  8471. 56.5385,34.7739
  8472. 56.7746,34.7739
  8473. 56.7746,34.7739
  8474. 56.7747,34.7739
  8475. 57.0079,34.8109
  8476. 57.2325,34.8839
  8477. 57.2326,34.8839
  8478. 57.4430,34.9911
  8479. 57.6341,35.1299
  8480. 58.7461,36.2419
  8481. 58.8220,36.3464
  8482. 58.8577,36.3956
  8483. 58.8849,36.4330
  8484. 58.8849,36.4330
  8485. 58.9590,36.5784
  8486. 58.9590,36.5784
  8487. 58.9631,36.5864
  8488. 58.9921,36.6434
  8489. 59.0117,36.7038
  8490. 59.0158,36.7134
  8491. 59.0372,36.7452
  8492. 59.0560,36.7786
  8493. 59.0643,36.7851
  8494. 59.0702,36.7939
  8495. 59.1022,36.8150
  8496. 59.1323,36.8387
  8497. 59.1425,36.8416
  8498. 59.1513,36.8474
  8499. 59.1889,36.8547
  8500. 59.2258,36.8651
  8501. 59.2363,36.8638
  8502. 59.2467,36.8659
  8503. 59.2842,36.8582
  8504. 59.3222,36.8537
  8505. 59.3315,36.8485
  8506. 59.3419,36.8464
  8507. 59.3736,36.8249
  8508. 59.4070,36.8062
  8509. 59.4136,36.7979
  8510. 59.4223,36.7920
  8511. 59.4435,36.7600
  8512. 59.4672,36.7299
  8513. 59.4700,36.7197
  8514. 59.4759,36.7109
  8515. 59.4831,36.6733
  8516. 59.4935,36.6364
  8517. 59.4943,36.6169
  8518. 59.4943,5.0054
  8519. 59.4941,4.9946
  8520. 59.4923,4.9543
  8521. 59.4777,4.6187
  8522. 59.4758,4.5971
  8523. 59.4274,4.2294
  8524. 59.4236,4.2081
  8525. 59.3433,3.8460
  8526. 59.3377,3.8251
  8527. 59.2262,3.4714
  8528. 59.2188,3.4511
  8529. 59.0769,3.1085
  8530. 59.0677,3.0888
  8531. 58.8965,2.7599
  8532. 58.8856,2.7411
  8533. 58.6864,2.4283
  8534. 58.6740,2.4106
  8535. 58.4482,2.1164
  8536. 58.4343,2.0998
  8537. 58.1838,1.8264
  8538. 58.1684,1.8110
  8539. 57.8950,1.5605
  8540. 57.8784,1.5466
  8541. 57.8263,1.5066
  8542. 57.7391,1.4636
  8543. 57.6422,1.4572
  8544. 57.5502,1.4885
  8545. 57.4772,1.5525
  8546. 57.4342,1.6397
  8547. 57.4257,1.7041
  8548. 57.4257,7.0025
  8549. 57.4257,7.0025
  8550. 44.1130,7.0025
  8551. 44.1130,7.0025
  8552. 44.1130,0.7748
  8553. 44.1130,0.7495
  8554. 44.0940,0.6542
  8555. 44.0400,0.5734
  8556. 43.9593,0.5195
  8557. 43.8640,0.5005
  8558. 5.0607,0.5005
  8559. 5.0002,0.5005
  8560. Z" />
  8561. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  8562. d="M 24.0191,47.2975
  8563. 23.9773,47.3020
  8564. 23.9714,47.3052
  8565. 23.9647,47.3062
  8566. 23.9289,47.3283
  8567. 23.8920,47.3485
  8568. 23.8851,47.3553
  8569. 23.8820,47.3572
  8570. 23.8680,47.3702
  8571. 23.8654,47.3741
  8572. 23.7062,47.5333
  8573. 23.6531,47.5700
  8574. 23.6401,47.5822
  8575. 23.5832,47.6609
  8576. 23.5608,47.7555
  8577. 23.5654,47.8131
  8578. 23.5662,47.8174
  8579. 23.5895,47.9938
  8580. 23.5971,48.0514
  8581. 23.5971,48.2874
  8582. 23.5662,48.5215
  8583. 23.5052,48.7494
  8584. 23.4905,48.7849
  8585. 23.4148,48.9675
  8586. 23.4148,48.9675
  8587. 23.3045,49.1586
  8588. 23.2968,49.1719
  8589. 23.1531,49.3591
  8590. 22.9863,49.5260
  8591. 22.7990,49.6697
  8592. 22.7990,49.6697
  8593. 22.5946,49.7877
  8594. 22.5946,49.7877
  8595. 22.5946,49.7877
  8596. 22.3765,49.8780
  8597. 22.1486,49.9391
  8598. 21.9146,49.9699
  8599. 21.6785,49.9699
  8600. 21.4445,49.9391
  8601. 21.3107,49.9033
  8602. 21.2897,49.8976
  8603. 21.1928,49.8913
  8604. 21.1008,49.9225
  8605. 21.0277,49.9866
  8606. 20.9848,50.0737
  8607. 20.9784,50.1707
  8608. 20.9848,50.2026
  8609. 21.0262,50.3574
  8610. 21.0262,50.3574
  8611. 21.0429,50.4837
  8612. 21.0571,50.5914
  8613. 21.0571,50.8274
  8614. 21.0562,50.8341
  8615. 21.0298,51.0343
  8616. 21.0262,51.0615
  8617. 20.9777,51.2425
  8618. 20.9652,51.2894
  8619. 20.9652,51.2894
  8620. 20.9111,51.4199
  8621. 20.8922,51.5151
  8622. 20.9111,51.6104
  8623. 20.9651,51.6912
  8624. 21.0450,51.7448
  8625. 21.0623,51.7520
  8626. 21.0912,51.7593
  8627. 21.2269,51.8210
  8628. 21.2304,51.8224
  8629. 21.2744,51.8314
  8630. 21.3182,51.8416
  8631. 21.3219,51.8410
  8632. 21.3256,51.8417
  8633. 21.3697,51.8331
  8634. 21.4140,51.8259
  8635. 21.4203,51.8233
  8636. 21.4210,51.8231
  8637. 21.4216,51.8227
  8638. 21.4295,51.8195
  8639. 21.5619,51.7593
  8640. 21.7801,51.7043
  8641. 21.7801,51.7043
  8642. 21.9123,51.6939
  8643. 22.7408,51.6939
  8644. 22.8730,51.7043
  8645. 23.0912,51.7593
  8646. 23.3030,51.8555
  8647. 23.3976,51.8777
  8648. 23.4669,51.8703
  8649. 23.5301,51.8543
  8650. 23.5301,51.8543
  8651. 23.5301,51.8543
  8652. 23.5301,51.8543
  8653. 23.5302,51.8543
  8654. 23.6623,51.8439
  8655. 25.0408,51.8439
  8656. 25.1730,51.8543
  8657. 25.3912,51.9093
  8658. 25.5446,51.9790
  8659. 25.5962,52.0024
  8660. 25.5962,52.0024
  8661. 25.5962,52.0024
  8662. 25.7812,52.1306
  8663. 25.9404,52.2898
  8664. 26.0686,52.4748
  8665. 26.0686,52.4748
  8666. 26.0686,52.4748
  8667. 26.0900,52.5219
  8668. 26.1616,52.6798
  8669. 26.2167,52.8980
  8670. 26.2167,52.8980
  8671. 26.2271,53.0302
  8672. 26.2271,53.9086
  8673. 26.2187,54.0145
  8674. 26.2167,54.0408
  8675. 26.1707,54.2233
  8676. 26.1616,54.2591
  8677. 26.1433,54.2995
  8678. 26.0686,54.4641
  8679. 26.0686,54.4641
  8680. 26.0686,54.4641
  8681. 25.9404,54.6491
  8682. 25.9404,54.6491
  8683. 25.9404,54.6491
  8684. 25.7812,54.8083
  8685. 25.7812,54.8083
  8686. 25.7812,54.8083
  8687. 25.6000,54.9338
  8688. 25.5962,54.9364
  8689. 25.3912,55.0295
  8690. 25.1730,55.0845
  8691. 25.1730,55.0845
  8692. 25.1730,55.0845
  8693. 25.1069,55.0897
  8694. 25.0408,55.0949
  8695. 24.6511,55.0949
  8696. 24.5558,55.1139
  8697. 24.4750,55.1679
  8698. 24.4210,55.2486
  8699. 24.4021,55.3439
  8700. 24.4021,56.6949
  8701. 24.4210,56.7902
  8702. 24.4750,56.8710
  8703. 24.5558,56.9250
  8704. 24.6511,56.9439
  8705. 28.5304,56.9439
  8706. 28.6257,56.9250
  8707. 28.7065,56.8710
  8708. 28.8531,56.7244
  8709. 28.9071,56.6436
  8710. 28.9261,56.5483
  8711. 28.9261,48.0272
  8712. 28.9071,47.9319
  8713. 28.8531,47.8511
  8714. 28.7723,47.7971
  8715. 28.6771,47.7782
  8716. 28.6126,47.7867
  8717. 28.5133,47.8133
  8718. 28.2728,47.8449
  8719. 28.0303,47.8449
  8720. 27.7898,47.8133
  8721. 27.6137,47.7661
  8722. 27.5555,47.7505
  8723. 27.5555,47.7505
  8724. 27.5555,47.7505
  8725. 27.4038,47.6877
  8726. 27.3314,47.6577
  8727. 27.3313,47.6577
  8728. 27.3313,47.6577
  8729. 27.1213,47.5364
  8730. 27.0155,47.4552
  8731. 26.9283,47.4122
  8732. 26.8314,47.4059
  8733. 26.7394,47.4371
  8734. 26.6878,47.4767
  8735. 26.6312,47.5333
  8736. 26.6312,47.5333
  8737. 26.6312,47.5333
  8738. 26.4516,47.6577
  8739. 26.4462,47.6614
  8740. 26.2412,47.7545
  8741. 26.0230,47.8095
  8742. 26.0230,47.8095
  8743. 26.0230,47.8095
  8744. 25.9569,47.8147
  8745. 25.8908,47.8199
  8746. 25.1373,47.8199
  8747. 25.0051,47.8095
  8748. 24.7869,47.7545
  8749. 24.5819,47.6614
  8750. 24.3969,47.5333
  8751. 24.2377,47.3741
  8752. 24.2377,47.3741
  8753. 24.2342,47.3706
  8754. 24.2339,47.3701
  8755. 24.2332,47.3696
  8756. 24.2298,47.3662
  8757. 24.2293,47.3667
  8758. 24.1998,47.3455
  8759. 24.1671,47.3190
  8760. 24.1606,47.3171
  8761. 24.1552,47.3132
  8762. 24.1142,47.3035
  8763. 24.0739,47.2916
  8764. 24.0672,47.2923
  8765. 24.0606,47.2908
  8766. Z" />
  8767. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  8768. d="M 10.6662,49.3201
  8769. 10.5964,49.3876
  8770. 10.5577,49.4767
  8771. 10.5521,49.5294
  8772. 10.5521,50.4836
  8773. 10.5417,50.6158
  8774. 10.4866,50.8341
  8775. 10.4709,50.8688
  8776. 10.4488,50.9634
  8777. 10.4562,51.0326
  8778. 10.5042,51.2230
  8779. 10.5042,51.2230
  8780. 10.5146,51.3552
  8781. 10.5146,52.4336
  8782. 10.5042,52.5658
  8783. 10.4491,52.7841
  8784. 10.4272,52.8323
  8785. 10.3561,52.9891
  8786. 10.3561,52.9891
  8787. 10.3561,52.9891
  8788. 10.2215,53.1833
  8789. 10.2243,53.1852
  8790. 10.2170,53.1985
  8791. 10.1960,53.2300
  8792. 10.1938,53.2408
  8793. 10.1885,53.2506
  8794. 10.1771,53.3252
  8795. 10.1771,53.7699
  8796. 10.1960,53.8652
  8797. 10.2500,53.9460
  8798. 10.3308,54.0000
  8799. 10.4261,54.0189
  8800. 11.1832,54.0189
  8801. 11.2785,54.0000
  8802. 11.3593,53.9460
  8803. 11.3879,53.9117
  8804. 11.3900,53.9086
  8805. 11.4377,53.8398
  8806. 11.5969,53.6806
  8807. 11.5969,53.6806
  8808. 11.5969,53.6806
  8809. 11.7819,53.5524
  8810. 11.7819,53.5524
  8811. 11.7819,53.5524
  8812. 11.9188,53.4903
  8813. 11.9869,53.4593
  8814. 11.9869,53.4593
  8815. 11.9869,53.4593
  8816. 12.2051,53.4043
  8817. 12.2051,53.4043
  8818. 12.2051,53.4043
  8819. 12.2051,53.4043
  8820. 12.3373,53.3939
  8821. 12.3373,53.3939
  8822. 12.6771,53.3939
  8823. 12.7723,53.3750
  8824. 12.8531,53.3210
  8825. 12.9071,53.2402
  8826. 12.9261,53.1449
  8827. 12.9261,52.1084
  8828. 12.9071,52.0131
  8829. 12.8531,51.9323
  8830. 12.8378,51.9170
  8831. 12.8200,51.8991
  8832. 12.6763,51.7119
  8833. 12.5583,51.5075
  8834. 12.4679,51.2894
  8835. 12.4069,51.0615
  8836. 12.3761,50.8274
  8837. 12.3761,50.5914
  8838. 12.4069,50.3574
  8839. 12.4679,50.1294
  8840. 12.5583,49.9114
  8841. 12.5619,49.9041
  8842. 12.5602,49.9033
  8843. 12.5861,49.8204
  8844. 12.5774,49.7237
  8845. 12.5324,49.6376
  8846. 12.4578,49.5753
  8847. 12.3651,49.5464
  8848. 12.3386,49.5449
  8849. 11.5873,49.5449
  8850. 11.4551,49.5345
  8851. 11.2369,49.4795
  8852. 11.0319,49.3864
  8853. 10.9547,49.3329
  8854. 10.9429,49.3247
  8855. 10.8537,49.2861
  8856. 10.7566,49.2844
  8857. Z" />
  8858. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  8859. d="M 55.6785,48.7164
  8860. 55.6713,48.7195
  8861. 55.6713,48.7195
  8862. 55.6712,48.7195
  8863. 55.6712,48.7195
  8864. 55.4530,48.7745
  8865. 55.4530,48.7745
  8866. 55.4530,48.7745
  8867. 55.3869,48.7797
  8868. 55.3208,48.7849
  8869. 54.2423,48.7849
  8870. 54.1101,48.7745
  8871. 54.0454,48.7582
  8872. 54.0154,48.7567
  8873. 53.9860,48.7507
  8874. 53.9710,48.7545
  8875. 53.9484,48.7533
  8876. 53.8906,48.7691
  8877. 53.8674,48.7786
  8878. 53.8566,48.7859
  8879. 53.6651,48.8679
  8880. 53.6291,48.8757
  8881. 53.6091,48.8839
  8882. 53.5862,48.8990
  8883. 53.5611,48.9099
  8884. 53.5461,48.9255
  8885. 53.5280,48.9374
  8886. 53.5127,48.9601
  8887. 53.4936,48.9798
  8888. 53.4857,48.9999
  8889. 53.4736,49.0179
  8890. 53.4681,49.0447
  8891. 53.4581,49.0702
  8892. 53.4585,49.0919
  8893. 53.4541,49.1130
  8894. 53.4593,49.1400
  8895. 53.4598,49.1674
  8896. 53.4684,49.1872
  8897. 53.4725,49.2084
  8898. 53.4876,49.2313
  8899. 53.4986,49.2565
  8900. 53.5141,49.2715
  8901. 53.5261,49.2895
  8902. 53.5488,49.3049
  8903. 53.5685,49.3239
  8904. 53.5902,49.3329
  8905. 53.6065,49.3439
  8906. 53.6270,49.3481
  8907. 53.6502,49.3577
  8908. 53.6651,49.3610
  8909. 53.6651,49.3610
  8910. 53.8566,49.4430
  8911. 53.8566,49.4430
  8912. 54.0290,49.5597
  8913. 54.0290,49.5597
  8914. 54.1763,49.7070
  8915. 54.1763,49.7070
  8916. 54.2930,49.8794
  8917. 54.2930,49.8794
  8918. 54.3750,50.0709
  8919. 54.3750,50.0709
  8920. 54.4193,50.2744
  8921. 54.4193,50.2744
  8922. 54.4221,50.3212
  8923. 54.4221,50.9399
  8924. 54.4410,51.0352
  8925. 54.4950,51.1160
  8926. 54.5758,51.1700
  8927. 54.6711,51.1889
  8928. 55.3308,51.1889
  8929. 55.4630,51.1993
  8930. 55.6148,51.2376
  8931. 55.6455,51.2392
  8932. 55.6757,51.2452
  8933. 55.6936,51.2416
  8934. 55.7119,51.2425
  8935. 55.7408,51.2322
  8936. 55.7710,51.2262
  8937. 55.7862,51.2160
  8938. 55.8034,51.2099
  8939. 55.8517,51.1722
  8940. 56.0281,50.9958
  8941. 56.0821,50.9151
  8942. 56.1011,50.8198
  8943. 56.1011,48.9464
  8944. 56.0821,48.8511
  8945. 56.0281,48.7704
  8946. 55.9473,48.7164
  8947. 55.8521,48.6974
  8948. 55.7738,48.6974
  8949. Z" />
  8950. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  8951. d="M 34.8041,42.8599
  8952. 34.7747,42.8588
  8953. 34.7563,42.8656
  8954. 34.7367,42.8679
  8955. 34.7111,42.8822
  8956. 34.6836,42.8924
  8957. 34.6691,42.9057
  8958. 34.6520,42.9154
  8959. 34.6122,42.9583
  8960. 34.5261,43.0769
  8961. 34.5261,43.0769
  8962. 34.5261,43.0769
  8963. 34.5261,43.0769
  8964. 34.3591,43.2440
  8965. 34.3591,43.2440
  8966. 34.3591,43.2440
  8967. 34.1680,43.3828
  8968. 34.1680,43.3828
  8969. 34.1680,43.3828
  8970. 33.9575,43.4900
  8971. 33.7329,43.5630
  8972. 33.4996,43.5999
  8973. 33.4996,43.5999
  8974. 33.2635,43.5999
  8975. 33.2635,43.5999
  8976. 33.1150,43.5764
  8977. 33.0179,43.5802
  8978. 32.9297,43.6209
  8979. 32.8637,43.6923
  8980. 32.8301,43.7834
  8981. 32.8271,43.8224
  8982. 32.8271,45.4083
  8983. 32.8460,45.5036
  8984. 32.9000,45.5844
  8985. 33.5304,46.2148
  8986. 33.6461,46.3740
  8987. 33.6461,46.3740
  8988. 33.6920,46.4642
  8989. 33.7378,46.5272
  8990. 33.8904,46.6798
  8991. 33.8904,46.6798
  8992. 34.0186,46.8648
  8993. 34.1116,47.0698
  8994. 34.1667,47.2880
  8995. 34.1667,47.2880
  8996. 34.1771,47.4202
  8997. 34.1771,47.9938
  8998. 34.1960,48.0891
  8999. 34.2500,48.1699
  9000. 34.3308,48.2239
  9001. 34.4261,48.2428
  9002. 34.4958,48.2310
  9003. 34.4960,48.2321
  9004. 34.5069,48.2293
  9005. 34.5069,48.2293
  9006. 34.7251,48.1743
  9007. 34.7251,48.1743
  9008. 34.7251,48.1743
  9009. 34.7251,48.1743
  9010. 34.8573,48.1639
  9011. 35.8858,48.1639
  9012. 36.0180,48.1743
  9013. 36.2362,48.2293
  9014. 36.4208,48.3132
  9015. 36.5154,48.3353
  9016. 36.5808,48.3288
  9017. 36.6177,48.3202
  9018. 36.6177,48.3202
  9019. 36.6177,48.3202
  9020. 36.7073,48.3139
  9021. 36.7073,48.3139
  9022. 37.7458,48.3139
  9023. 37.7458,48.3139
  9024. 37.8354,48.3202
  9025. 37.8354,48.3202
  9026. 37.9096,48.3376
  9027. 37.9384,48.3386
  9028. 37.9666,48.3442
  9029. 37.9865,48.3403
  9030. 38.0067,48.3410
  9031. 38.0337,48.3309
  9032. 38.0619,48.3253
  9033. 38.0787,48.3140
  9034. 38.0977,48.3069
  9035. 38.1427,48.2713
  9036. 38.2851,48.1288
  9037. 38.3368,48.0533
  9038. 38.3377,48.0514
  9039. 38.3787,47.9586
  9040. 38.5005,47.7808
  9041. 38.6529,47.6284
  9042. 38.6529,47.6284
  9043. 38.6529,47.6284
  9044. 38.8307,47.5066
  9045. 39.0285,47.4192
  9046. 39.0616,47.4053
  9047. 39.2095,47.3300
  9048. 39.2858,47.2698
  9049. 39.3332,47.1851
  9050. 39.3447,47.0886
  9051. 39.3183,46.9951
  9052. 39.2581,46.9188
  9053. 39.2382,46.9035
  9054. 39.1369,46.8333
  9055. 39.1176,46.8140
  9056. 39.0368,46.7600
  9057. 38.9416,46.7411
  9058. 38.8463,46.7600
  9059. 38.7655,46.8140
  9060. 38.7462,46.8333
  9061. 38.5612,46.9614
  9062. 38.3562,47.0545
  9063. 38.1380,47.1095
  9064. 38.1380,47.1095
  9065. 38.1380,47.1095
  9066. 38.0719,47.1147
  9067. 38.0058,47.1199
  9068. 35.8773,47.1199
  9069. 35.7451,47.1095
  9070. 35.5269,47.0545
  9071. 35.3219,46.9614
  9072. 35.1369,46.8333
  9073. 34.9777,46.6741
  9074. 34.8495,46.4891
  9075. 34.7565,46.2841
  9076. 34.7015,46.0658
  9077. 34.7011,46.0610
  9078. 34.6911,45.9337
  9079. 34.6911,45.9337
  9080. 34.6911,44.5052
  9081. 34.7015,44.3730
  9082. 34.7565,44.1548
  9083. 34.8495,43.9498
  9084. 34.8675,43.9239
  9085. 34.9777,43.7648
  9086. 34.9777,43.7648
  9087. 34.9777,43.7648
  9088. 35.1369,43.6056
  9089. 35.1369,43.6056
  9090. 35.1369,43.6056
  9091. 35.3311,43.4711
  9092. 35.3295,43.4688
  9093. 35.3403,43.4595
  9094. 35.3681,43.4409
  9095. 35.3767,43.4280
  9096. 35.3885,43.4179
  9097. 35.4035,43.3879
  9098. 35.4221,43.3601
  9099. 35.4251,43.3449
  9100. 35.4321,43.3310
  9101. 35.4411,43.2648
  9102. 35.4411,43.1089
  9103. 35.4221,43.0136
  9104. 35.3681,42.9329
  9105. 35.2873,42.8789
  9106. 35.1921,42.8599
  9107. 34.8773,42.8599
  9108. 34.8773,42.8599
  9109. 34.8332,42.8565
  9110. Z" />
  9111. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9112. d="M 55.6985,43.1164
  9113. 55.6913,43.1195
  9114. 55.6913,43.1195
  9115. 55.6912,43.1195
  9116. 55.6912,43.1195
  9117. 55.4730,43.1745
  9118. 55.4730,43.1745
  9119. 55.4730,43.1745
  9120. 55.4069,43.1797
  9121. 55.3408,43.1849
  9122. 54.2623,43.1849
  9123. 54.1301,43.1745
  9124. 54.0692,43.1592
  9125. 53.9721,43.1543
  9126. 53.9120,43.1710
  9127. 53.8892,43.1806
  9128. 53.8666,43.1959
  9129. 53.6751,43.2779
  9130. 53.6379,43.2860
  9131. 53.6168,43.2948
  9132. 53.5951,43.3095
  9133. 53.5711,43.3199
  9134. 53.5552,43.3364
  9135. 53.5363,43.3492
  9136. 53.5218,43.3710
  9137. 53.5036,43.3898
  9138. 53.4953,43.4111
  9139. 53.4826,43.4302
  9140. 53.4777,43.4559
  9141. 53.4681,43.4802
  9142. 53.4685,43.5031
  9143. 53.4641,43.5255
  9144. 53.4693,43.5512
  9145. 53.4698,43.5774
  9146. 53.4789,43.5983
  9147. 53.4835,43.6207
  9148. 53.4981,43.6424
  9149. 53.5086,43.6664
  9150. 53.5250,43.6823
  9151. 53.5378,43.7013
  9152. 53.5597,43.7157
  9153. 53.5785,43.7339
  9154. 53.6016,43.7435
  9155. 53.6188,43.7549
  9156. 53.6383,43.7587
  9157. 53.6602,43.7677
  9158. 53.6751,43.7710
  9159. 53.6751,43.7710
  9160. 53.8666,43.8530
  9161. 53.8666,43.8530
  9162. 54.0390,43.9697
  9163. 54.0390,43.9697
  9164. 54.1863,44.1170
  9165. 54.1863,44.1170
  9166. 54.3030,44.2894
  9167. 54.3030,44.2894
  9168. 54.3850,44.4809
  9169. 54.3850,44.4809
  9170. 54.4293,44.6844
  9171. 54.4293,44.6844
  9172. 54.4321,44.7312
  9173. 54.4321,45.3599
  9174. 54.4510,45.4552
  9175. 54.5050,45.5360
  9176. 54.5858,45.5900
  9177. 54.6811,45.6089
  9178. 55.3208,45.6089
  9179. 55.4530,45.6193
  9180. 55.6713,45.6743
  9181. 55.6766,45.6762
  9182. 55.6785,45.6775
  9183. 55.7221,45.6862
  9184. 55.7654,45.6963
  9185. 55.7738,45.6964
  9186. 55.7744,45.6964
  9187. 55.8697,45.6775
  9188. 55.9505,45.6235
  9189. 56.0281,45.5458
  9190. 56.0821,45.4651
  9191. 56.1011,45.3698
  9192. 56.1011,43.3464
  9193. 56.0821,43.2511
  9194. 56.0281,43.1704
  9195. 55.9473,43.1164
  9196. 55.8521,43.0974
  9197. 55.7938,43.0974
  9198. Z" />
  9199. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9200. d="M 21.0330,42.6104
  9201. 20.9693,42.6231
  9202. 20.8885,42.6770
  9203. 20.8885,42.6770
  9204. 20.8885,42.6770
  9205. 20.8346,42.7578
  9206. 20.8290,42.7860
  9207. 20.8161,42.8506
  9208. 20.8156,42.8531
  9209. 20.8346,42.9484
  9210. 20.8753,43.0467
  9211. 20.9330,43.2620
  9212. 20.9621,43.4830
  9213. 20.9621,43.7059
  9214. 20.9513,43.7874
  9215. 20.9577,43.8844
  9216. 21.0006,43.9715
  9217. 21.0737,44.0356
  9218. 21.1657,44.0668
  9219. 21.1982,44.0689
  9220. 21.2908,44.0689
  9221. 21.4230,44.0793
  9222. 21.6412,44.1343
  9223. 21.6486,44.1377
  9224. 21.7432,44.1598
  9225. 21.8391,44.1441
  9226. 21.8545,44.1377
  9227. 21.8619,44.1343
  9228. 22.0801,44.0793
  9229. 22.0847,44.0786
  9230. 22.0880,44.0774
  9231. 22.0903,44.0768
  9232. 22.0902,44.0765
  9233. 22.1757,44.0444
  9234. 22.2467,43.9781
  9235. 22.2868,43.8896
  9236. 22.2901,43.7925
  9237. 22.2560,43.7016
  9238. 22.2205,43.6568
  9239. 21.8148,43.2511
  9240. 21.2407,42.6770
  9241. 21.1871,42.6412
  9242. 21.1599,42.6231
  9243. 21.1599,42.6231
  9244. 21.1599,42.6231
  9245. 21.1025,42.6116
  9246. 21.0646,42.6041
  9247. 21.0646,42.6041
  9248. Z" />
  9249. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9250. d="M 22.9264,35.0139
  9251. 22.8456,35.0679
  9252. 22.7916,35.1486
  9253. 22.7727,35.2439
  9254. 22.7916,35.3392
  9255. 22.8456,35.4200
  9256. 22.9404,35.5148
  9257. 22.9404,35.5148
  9258. 23.0686,35.6998
  9259. 23.1616,35.9048
  9260. 23.2167,36.1230
  9261. 23.2167,36.1230
  9262. 23.2271,36.2552
  9263. 23.2271,37.6336
  9264. 23.2199,37.7243
  9265. 23.2167,37.7659
  9266. 23.1655,37.9686
  9267. 23.1616,37.9841
  9268. 23.1386,38.0348
  9269. 23.0686,38.1891
  9270. 23.0686,38.1891
  9271. 23.0686,38.1891
  9272. 22.9404,38.3741
  9273. 22.9404,38.3741
  9274. 22.9404,38.3741
  9275. 22.7812,38.5333
  9276. 22.5962,38.6614
  9277. 22.3912,38.7545
  9278. 22.1730,38.8095
  9279. 22.1730,38.8095
  9280. 22.1730,38.8095
  9281. 22.1069,38.8147
  9282. 22.0408,38.8199
  9283. 21.1623,38.8199
  9284. 21.0301,38.8095
  9285. 20.8119,38.7545
  9286. 20.6591,38.6852
  9287. 20.6191,38.6758
  9288. 20.5798,38.6640
  9289. 20.5721,38.6648
  9290. 20.5645,38.6630
  9291. 20.5240,38.6697
  9292. 20.4831,38.6738
  9293. 20.4739,38.6768
  9294. 20.4662,38.6795
  9295. 20.4662,38.6795
  9296. 20.4662,38.6795
  9297. 20.2480,38.7345
  9298. 20.2480,38.7345
  9299. 20.2480,38.7345
  9300. 20.1819,38.7397
  9301. 20.1158,38.7449
  9302. 19.1467,38.7449
  9303. 19.0514,38.7639
  9304. 18.9706,38.8179
  9305. 18.9166,38.8986
  9306. 18.8977,38.9939
  9307. 18.9166,39.0892
  9308. 18.9706,39.1700
  9309. 19.2966,39.4960
  9310. 19.3774,39.5500
  9311. 19.4727,39.5689
  9312. 20.3398,39.5689
  9313. 20.4020,39.5591
  9314. 20.4128,39.5580
  9315. 20.4144,39.5571
  9316. 20.4167,39.5568
  9317. 20.4685,39.5399
  9318. 20.6502,39.4809
  9319. 20.6502,39.4809
  9320. 20.6502,39.4809
  9321. 20.8835,39.4439
  9322. 20.8835,39.4439
  9323. 20.8835,39.4439
  9324. 21.1196,39.4439
  9325. 21.1197,39.4439
  9326. 21.1197,39.4439
  9327. 21.3529,39.4809
  9328. 21.5775,39.5539
  9329. 21.7880,39.6611
  9330. 21.9791,39.7999
  9331. 22.1461,39.9669
  9332. 22.2849,40.1580
  9333. 22.2943,40.1765
  9334. 22.3401,40.2395
  9335. 25.8771,43.7765
  9336. 25.9579,43.8305
  9337. 26.0532,43.8494
  9338. 26.1484,43.8305
  9339. 26.2292,43.7765
  9340. 26.2832,43.6957
  9341. 26.3022,43.6004
  9342. 26.3011,43.5839
  9343. 26.3016,43.5839
  9344. 26.3011,43.5757
  9345. 26.3011,43.3331
  9346. 26.3049,43.3040
  9347. 26.3327,43.0926
  9348. 26.3539,43.0136
  9349. 26.3955,42.8584
  9350. 26.3955,42.8583
  9351. 26.3955,42.8583
  9352. 26.4371,42.7578
  9353. 26.4883,42.6342
  9354. 26.4883,42.6342
  9355. 26.4948,42.6231
  9356. 26.4984,42.6167
  9357. 26.5297,42.5248
  9358. 26.5233,42.4278
  9359. 26.4803,42.3407
  9360. 26.4758,42.3349
  9361. 26.4619,42.3178
  9362. 26.3676,42.1375
  9363. 26.3117,41.9419
  9364. 26.3011,41.8225
  9365. 26.3011,40.0064
  9366. 26.3117,39.8870
  9367. 26.3676,39.6914
  9368. 26.4619,39.5110
  9369. 26.5904,39.3533
  9370. 26.7481,39.2247
  9371. 26.7505,39.2235
  9372. 26.7673,39.2147
  9373. 26.8430,39.1538
  9374. 26.8896,39.0685
  9375. 26.9011,38.9940
  9376. 26.9011,36.1189
  9377. 26.8821,36.0236
  9378. 26.8281,35.9429
  9379. 26.7473,35.8889
  9380. 26.6521,35.8699
  9381. 26.5151,35.8699
  9382. 26.2941,35.8408
  9383. 26.0788,35.7831
  9384. 25.8728,35.6978
  9385. 25.6798,35.5864
  9386. 25.5029,35.4507
  9387. 25.3453,35.2931
  9388. 25.2096,35.1162
  9389. 25.2096,35.1162
  9390. 25.2051,35.1094
  9391. 25.2036,35.1104
  9392. 25.1474,35.0464
  9393. 25.0603,35.0034
  9394. 24.9958,34.9949
  9395. 23.0217,34.9949
  9396. Z" />
  9397. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9398. d="M 53.8690,37.7939
  9399. 53.7882,37.8479
  9400. 53.7342,37.9286
  9401. 53.7152,38.0239
  9402. 53.7342,38.1192
  9403. 53.7882,38.2000
  9404. 53.8567,38.2464
  9405. 53.8561,38.2473
  9406. 53.8659,38.2526
  9407. 53.8662,38.2528
  9408. 53.8666,38.2530
  9409. 53.8666,38.2530
  9410. 53.8666,38.2530
  9411. 54.0390,38.3697
  9412. 54.0390,38.3697
  9413. 54.1863,38.5170
  9414. 54.1863,38.5170
  9415. 54.3030,38.6894
  9416. 54.3030,38.6894
  9417. 54.3850,38.8809
  9418. 54.3850,38.8809
  9419. 54.4293,39.0844
  9420. 54.4293,39.0844
  9421. 54.4321,39.1312
  9422. 54.4321,39.7599
  9423. 54.4510,39.8552
  9424. 54.5050,39.9360
  9425. 54.5858,39.9900
  9426. 54.6811,40.0089
  9427. 55.3408,40.0089
  9428. 55.4730,40.0193
  9429. 55.4730,40.0193
  9430. 55.5410,40.0365
  9431. 55.5717,40.0380
  9432. 55.6018,40.0440
  9433. 55.6197,40.0405
  9434. 55.6380,40.0414
  9435. 55.6669,40.0311
  9436. 55.6971,40.0251
  9437. 55.7123,40.0149
  9438. 55.7295,40.0088
  9439. 55.7779,39.9711
  9440. 55.8619,39.8870
  9441. 56.0281,39.7208
  9442. 56.0821,39.6401
  9443. 56.1011,39.5448
  9444. 56.1011,38.0239
  9445. 56.0821,37.9286
  9446. 56.0281,37.8479
  9447. 55.9473,37.7939
  9448. 55.8521,37.7749
  9449. 53.9642,37.7749
  9450. Z" />
  9451. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9452. d="M 38.8438,36.2150
  9453. 38.7630,36.2690
  9454. 38.7437,36.2883
  9455. 38.7437,36.2883
  9456. 38.7437,36.2883
  9457. 38.6693,36.3398
  9458. 38.5587,36.4164
  9459. 38.3537,36.5095
  9460. 38.1355,36.5645
  9461. 38.1355,36.5645
  9462. 38.1355,36.5645
  9463. 38.0694,36.5697
  9464. 38.0033,36.5749
  9465. 35.8748,36.5749
  9466. 35.7426,36.5645
  9467. 35.5244,36.5095
  9468. 35.4231,36.4635
  9469. 35.3285,36.4414
  9470. 35.2326,36.4571
  9471. 35.1500,36.5083
  9472. 35.0934,36.5872
  9473. 35.0712,36.6818
  9474. 35.0786,36.7511
  9475. 35.0817,36.7630
  9476. 35.0817,36.7630
  9477. 35.0921,36.8952
  9478. 35.0921,37.4099
  9479. 35.1110,37.5052
  9480. 35.1650,37.5860
  9481. 35.2458,37.6400
  9482. 35.3411,37.6589
  9483. 35.9058,37.6589
  9484. 36.0380,37.6693
  9485. 36.2562,37.7243
  9486. 36.4062,37.7925
  9487. 36.5008,37.8146
  9488. 36.5662,37.8081
  9489. 36.6427,37.7902
  9490. 36.6427,37.7902
  9491. 36.7323,37.7839
  9492. 36.7323,37.7839
  9493. 37.7708,37.7839
  9494. 37.7708,37.7839
  9495. 37.8604,37.7902
  9496. 37.8604,37.7902
  9497. 37.9346,37.8076
  9498. 37.9634,37.8086
  9499. 37.9916,37.8142
  9500. 38.0115,37.8103
  9501. 38.0317,37.8110
  9502. 38.0587,37.8009
  9503. 38.0869,37.7953
  9504. 38.1037,37.7840
  9505. 38.1227,37.7769
  9506. 38.1677,37.7413
  9507. 38.3101,37.5988
  9508. 38.3618,37.5233
  9509. 38.3698,37.5052
  9510. 38.4037,37.4286
  9511. 38.4037,37.4286
  9512. 38.4037,37.4286
  9513. 38.5255,37.2508
  9514. 38.5255,37.2508
  9515. 38.5255,37.2508
  9516. 38.6779,37.0984
  9517. 38.6779,37.0984
  9518. 38.6779,37.0984
  9519. 38.8557,36.9766
  9520. 39.0535,36.8892
  9521. 39.0866,36.8753
  9522. 39.2050,36.8150
  9523. 39.2311,36.8017
  9524. 39.3074,36.7416
  9525. 39.3549,36.6568
  9526. 39.3663,36.5603
  9527. 39.3399,36.4668
  9528. 39.2798,36.3905
  9529. 39.2599,36.3752
  9530. 39.1344,36.2883
  9531. 39.1151,36.2690
  9532. 39.0343,36.2150
  9533. 38.9391,36.1960
  9534. Z" />
  9535. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9536. d="M 34.7878,32.2860
  9537. 34.7585,32.2848
  9538. 34.7400,32.2917
  9539. 34.7205,32.2940
  9540. 34.6949,32.3083
  9541. 34.6673,32.3185
  9542. 34.6529,32.3318
  9543. 34.6357,32.3414
  9544. 34.5960,32.3844
  9545. 34.4961,32.5219
  9546. 34.3291,32.6890
  9547. 34.3291,32.6890
  9548. 34.3291,32.6890
  9549. 34.3291,32.6890
  9550. 34.1945,32.7867
  9551. 34.1813,32.8011
  9552. 34.1650,32.8119
  9553. 34.1486,32.8364
  9554. 34.1286,32.8580
  9555. 34.1218,32.8764
  9556. 34.1109,32.8926
  9557. 34.1052,32.9215
  9558. 34.0949,32.9492
  9559. 34.0957,32.9687
  9560. 34.0919,32.9879
  9561. 34.0976,33.0168
  9562. 34.0988,33.0463
  9563. 34.1069,33.0640
  9564. 34.1107,33.0832
  9565. 34.1271,33.1077
  9566. 34.1394,33.1345
  9567. 34.1646,33.1640
  9568. 34.4454,33.4448
  9569. 34.4469,33.4469
  9570. 34.4555,33.4555
  9571. 34.4880,33.4773
  9572. 34.5188,33.5015
  9573. 34.5282,33.5042
  9574. 34.5363,33.5096
  9575. 34.5746,33.5173
  9576. 34.6123,33.5279
  9577. 34.6220,33.5267
  9578. 34.6315,33.5286
  9579. 34.6699,33.5210
  9580. 34.7088,33.5164
  9581. 34.7173,33.5117
  9582. 34.7268,33.5098
  9583. 34.7594,33.4881
  9584. 34.7935,33.4690
  9585. 34.8002,33.4609
  9586. 34.8077,33.4559
  9587. 34.8222,33.4342
  9588. 34.8395,33.4132
  9589. 34.8407,33.4140
  9590. 34.9752,33.2198
  9591. 34.9752,33.2198
  9592. 34.9752,33.2198
  9593. 35.1344,33.0606
  9594. 35.1344,33.0606
  9595. 35.1344,33.0606
  9596. 35.3286,32.9261
  9597. 35.3270,32.9238
  9598. 35.3378,32.9145
  9599. 35.3656,32.8959
  9600. 35.3742,32.8830
  9601. 35.3860,32.8729
  9602. 35.4010,32.8429
  9603. 35.4196,32.8151
  9604. 35.4226,32.7999
  9605. 35.4296,32.7860
  9606. 35.4386,32.7198
  9607. 35.4386,32.5339
  9608. 35.4196,32.4386
  9609. 35.3656,32.3579
  9610. 35.2848,32.3039
  9611. 35.1896,32.2849
  9612. 34.8473,32.2849
  9613. 34.8473,32.2849
  9614. 34.8170,32.2825
  9615. Z" />
  9616. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9617. d="M 25.5367,26.8389
  9618. 25.4559,26.8929
  9619. 25.4019,26.9736
  9620. 25.3830,27.0689
  9621. 25.4019,27.1642
  9622. 25.4042,27.1695
  9623. 25.4447,27.2613
  9624. 25.4956,27.4779
  9625. 25.4956,27.4779
  9626. 25.5021,27.5703
  9627. 25.5021,29.3185
  9628. 25.4949,29.4211
  9629. 25.4968,29.4212
  9630. 25.5006,29.5047
  9631. 25.5419,29.5927
  9632. 25.6137,29.6581
  9633. 25.7051,29.6911
  9634. 25.7423,29.6939
  9635. 31.4771,29.6939
  9636. 31.5723,29.6750
  9637. 31.6531,29.6210
  9638. 31.7071,29.5402
  9639. 31.7261,29.4449
  9640. 31.7261,28.6302
  9641. 31.7261,28.6302
  9642. 31.7365,28.4980
  9643. 31.7915,28.2798
  9644. 31.8845,28.0748
  9645. 31.9071,28.0422
  9646. 32.0127,27.8898
  9647. 32.0127,27.8898
  9648. 32.0127,27.8898
  9649. 32.0936,27.8089
  9650. 32.1476,27.7281
  9651. 32.1665,27.6328
  9652. 32.1476,27.5375
  9653. 32.0936,27.4568
  9654. 32.0128,27.4028
  9655. 31.9175,27.3838
  9656. 31.8567,27.3914
  9657. 31.7530,27.4175
  9658. 31.6855,27.4345
  9659. 31.6855,27.4345
  9660. 31.6194,27.4397
  9661. 31.5533,27.4449
  9662. 30.7998,27.4449
  9663. 30.6676,27.4345
  9664. 30.4494,27.3795
  9665. 30.2444,27.2864
  9666. 30.0594,27.1583
  9667. 29.9002,26.9991
  9668. 29.9002,26.9991
  9669. 29.8923,26.9912
  9670. 29.8904,26.9931
  9671. 29.8296,26.9440
  9672. 29.7364,26.9166
  9673. 29.6398,26.9270
  9674. 29.5545,26.9735
  9675. 29.5363,26.9917
  9676. 29.5358,26.9912
  9677. 29.5279,26.9991
  9678. 29.5279,26.9991
  9679. 29.3687,27.1583
  9680. 29.3687,27.1583
  9681. 29.3687,27.1583
  9682. 29.1837,27.2864
  9683. 29.1837,27.2864
  9684. 28.9787,27.3795
  9685. 28.7605,27.4345
  9686. 28.7605,27.4345
  9687. 28.7605,27.4345
  9688. 28.6944,27.4397
  9689. 28.6283,27.4449
  9690. 27.8748,27.4449
  9691. 27.7426,27.4345
  9692. 27.5244,27.3795
  9693. 27.3194,27.2864
  9694. 27.1344,27.1583
  9695. 26.9752,26.9991
  9696. 26.9254,26.9271
  9697. 26.8555,26.8596
  9698. 26.7652,26.8239
  9699. 26.7207,26.8199
  9700. 25.6320,26.8199
  9701. Z" />
  9702. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9703. d="M 10.5141,26.7573
  9704. 10.4986,26.7637
  9705. 10.4912,26.7670
  9706. 10.2730,26.8220
  9707. 10.2730,26.8220
  9708. 10.2730,26.8220
  9709. 10.2069,26.8272
  9710. 10.1408,26.8324
  9711. 9.2516,26.8324
  9712. 9.1563,26.8514
  9713. 9.0755,26.9054
  9714. 9.0721,26.9088
  9715. 9.0583,26.9232
  9716. 9.0404,26.9491
  9717. 8.8812,27.1083
  9718. 8.8786,27.1101
  9719. 8.8673,27.1218
  9720. 8.8483,27.1515
  9721. 8.8261,27.1790
  9722. 8.8223,27.1921
  9723. 8.8149,27.2036
  9724. 8.8087,27.2383
  9725. 8.7987,27.2722
  9726. 8.8002,27.2858
  9727. 8.7978,27.2993
  9728. 8.8053,27.3337
  9729. 8.8091,27.3688
  9730. 8.8156,27.3808
  9731. 8.8186,27.3942
  9732. 8.8387,27.4231
  9733. 8.8556,27.4540
  9734. 8.8710,27.4695
  9735. 8.8741,27.4739
  9736. 8.8751,27.4746
  9737. 9.0404,27.6398
  9738. 9.1686,27.8248
  9739. 9.1686,27.8248
  9740. 9.1686,27.8248
  9741. 9.1695,27.8269
  9742. 9.2616,28.0298
  9743. 9.3167,28.2480
  9744. 9.3167,28.2480
  9745. 9.3271,28.3802
  9746. 9.3271,28.8358
  9747. 9.3460,28.9311
  9748. 9.4000,29.0119
  9749. 9.8141,29.4260
  9750. 9.8949,29.4800
  9751. 9.9902,29.4989
  9752. 11.6054,29.4989
  9753. 11.7007,29.4800
  9754. 11.7815,29.4260
  9755. 11.8355,29.3452
  9756. 11.8523,29.2824
  9757. 11.8545,29.2659
  9758. 11.8702,29.1470
  9759. 11.9278,28.9317
  9760. 11.9281,28.9311
  9761. 12.0131,28.7257
  9762. 12.0131,28.7257
  9763. 12.0131,28.7257
  9764. 12.1246,28.5327
  9765. 12.2603,28.3558
  9766. 12.4179,28.1982
  9767. 12.5948,28.0625
  9768. 12.7878,27.9510
  9769. 12.7878,27.9510
  9770. 12.7878,27.9510
  9771. 12.9938,27.8657
  9772. 12.9938,27.8657
  9773. 12.9938,27.8657
  9774. 12.9938,27.8657
  9775. 13.2091,27.8080
  9776. 13.2091,27.8080
  9777. 13.2091,27.8080
  9778. 13.4301,27.7789
  9779. 13.6530,27.7789
  9780. 13.6530,27.7789
  9781. 13.7010,27.7852
  9782. 13.7473,27.7822
  9783. 13.7936,27.7800
  9784. 13.7957,27.7790
  9785. 13.7979,27.7789
  9786. 13.8395,27.7584
  9787. 13.8815,27.7386
  9788. 13.8827,27.7371
  9789. 13.8850,27.7359
  9790. 13.9469,27.6667
  9791. 13.9549,27.6533
  9792. 14.0156,27.5158
  9793. 14.1348,27.3418
  9794. 14.1532,27.3234
  9795. 14.1689,27.2972
  9796. 14.1752,27.2797
  9797. 14.1856,27.2642
  9798. 14.1915,27.2344
  9799. 14.2018,27.2058
  9800. 14.2009,27.1872
  9801. 14.2045,27.1689
  9802. 14.1986,27.1391
  9803. 14.1972,27.1087
  9804. 14.1892,27.0919
  9805. 14.1856,27.0736
  9806. 14.1687,27.0484
  9807. 14.1557,27.0209
  9808. 14.1420,27.0083
  9809. 14.1316,26.9929
  9810. 14.1063,26.9760
  9811. 14.0838,26.9555
  9812. 14.0663,26.9492
  9813. 14.0508,26.9389
  9814. 14.0210,26.9330
  9815. 13.9924,26.9227
  9816. 13.9738,26.9236
  9817. 13.9555,26.9199
  9818. 13.9281,26.9199
  9819. 13.9281,26.9199
  9820. 13.7337,26.8891
  9821. 13.6285,26.8549
  9822. 13.5967,26.8446
  9823. 13.5198,26.8324
  9824. 13.0623,26.8324
  9825. 13.0623,26.8324
  9826. 12.9301,26.8220
  9827. 12.7119,26.7670
  9828. 12.7045,26.7637
  9829. 12.6099,26.7415
  9830. 12.5141,26.7573
  9831. 12.4986,26.7637
  9832. 12.4912,26.7670
  9833. 12.2730,26.8220
  9834. 12.2730,26.8220
  9835. 12.2730,26.8220
  9836. 12.2069,26.8272
  9837. 12.1408,26.8324
  9838. 11.0623,26.8324
  9839. 10.9301,26.8220
  9840. 10.7119,26.7670
  9841. 10.7045,26.7637
  9842. 10.6099,26.7415
  9843. Z" />
  9844. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9845. d="M 32.6528,26.8955
  9846. 32.6501,26.8950
  9847. 32.6052,26.9049
  9848. 32.5602,26.9139
  9849. 32.5579,26.9154
  9850. 32.5552,26.9160
  9851. 32.5176,26.9423
  9852. 32.4794,26.9679
  9853. 32.4769,26.9708
  9854. 32.4756,26.9717
  9855. 32.4620,26.9859
  9856. 32.4529,26.9991
  9857. 32.3701,27.0819
  9858. 32.3682,27.0838
  9859. 32.3436,27.1225
  9860. 32.3180,27.1607
  9861. 32.3175,27.1634
  9862. 32.3160,27.1657
  9863. 32.3080,27.2110
  9864. 32.2991,27.2560
  9865. 32.2996,27.2587
  9866. 32.2991,27.2614
  9867. 32.3091,27.3062
  9868. 32.3180,27.3513
  9869. 32.3195,27.3536
  9870. 32.3201,27.3563
  9871. 32.3465,27.3939
  9872. 32.3720,27.4321
  9873. 32.3743,27.4336
  9874. 32.3758,27.4359
  9875. 32.4146,27.4606
  9876. 32.4528,27.4861
  9877. 32.4555,27.4866
  9878. 32.4578,27.4881
  9879. 32.5030,27.4961
  9880. 32.5481,27.5050
  9881. 32.5507,27.5045
  9882. 32.5534,27.5050
  9883. 32.6089,27.4975
  9884. 32.7801,27.4543
  9885. 32.7801,27.4543
  9886. 32.7801,27.4543
  9887. 32.7801,27.4543
  9888. 32.9123,27.4439
  9889. 33.9304,27.4439
  9890. 34.0257,27.4250
  9891. 34.0976,27.3769
  9892. 34.0983,27.3778
  9893. 34.1061,27.3713
  9894. 34.1065,27.3710
  9895. 34.1069,27.3706
  9896. 34.1069,27.3706
  9897. 34.1387,27.3486
  9898. 34.2062,27.2788
  9899. 34.2419,27.1884
  9900. 34.2402,27.0913
  9901. 34.2015,27.0021
  9902. 34.1317,26.9346
  9903. 34.0413,26.8989
  9904. 33.9969,26.8949
  9905. 32.6554,26.8949
  9906. Z" />
  9907. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9908. d="M 26.5003,22.7181
  9909. 26.4112,22.7568
  9910. 26.3437,22.8266
  9911. 26.3080,22.9170
  9912. 26.3048,22.9810
  9913. 26.3146,23.1052
  9914. 26.3146,23.1052
  9915. 26.3146,23.6158
  9916. 26.3146,24.0699
  9917. 26.3335,24.1652
  9918. 26.3875,24.2460
  9919. 26.4683,24.3000
  9920. 26.5636,24.3189
  9921. 26.7207,24.3189
  9922. 26.8160,24.3000
  9923. 26.8968,24.2460
  9924. 26.9254,24.2117
  9925. 26.9310,24.2037
  9926. 26.9752,24.1398
  9927. 27.1344,23.9806
  9928. 27.1344,23.9806
  9929. 27.1344,23.9806
  9930. 27.3194,23.8524
  9931. 27.3194,23.8524
  9932. 27.3194,23.8524
  9933. 27.4979,23.7714
  9934. 27.5768,23.7147
  9935. 27.6281,23.6321
  9936. 27.6438,23.5363
  9937. 27.6216,23.4417
  9938. 27.5650,23.3628
  9939. 27.4824,23.3115
  9940. 27.4558,23.3032
  9941. 27.3619,23.2795
  9942. 27.1569,23.1864
  9943. 26.9719,23.0583
  9944. 26.8127,22.8991
  9945. 26.7764,22.8467
  9946. 26.7577,22.8196
  9947. 26.6878,22.7521
  9948. 26.5975,22.7164
  9949. Z" />
  9950. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  9951. d="M 29.5110,22.7943
  9952. 29.4412,22.8619
  9953. 29.4154,22.8991
  9954. 29.4154,22.8991
  9955. 29.2562,23.0583
  9956. 29.2562,23.0583
  9957. 29.2562,23.0583
  9958. 29.1885,23.1052
  9959. 29.0712,23.1864
  9960. 28.8749,23.2756
  9961. 28.7959,23.3323
  9962. 28.7447,23.4148
  9963. 28.7290,23.5107
  9964. 28.7511,23.6053
  9965. 28.8078,23.6842
  9966. 28.8903,23.7355
  9967. 28.9170,23.7438
  9968. 28.9787,23.7593
  9969. 29.1361,23.8308
  9970. 29.1837,23.8524
  9971. 29.1837,23.8524
  9972. 29.1837,23.8524
  9973. 29.3687,23.9806
  9974. 29.3687,23.9806
  9975. 29.3687,23.9806
  9976. 29.5279,24.1398
  9977. 29.5279,24.1398
  9978. 29.5358,24.1477
  9979. 29.5377,24.1458
  9980. 29.5986,24.1949
  9981. 29.6918,24.2223
  9982. 29.7884,24.2119
  9983. 29.8737,24.1654
  9984. 29.8918,24.1472
  9985. 29.8923,24.1477
  9986. 29.9002,24.1398
  9987. 29.9002,24.1398
  9988. 30.0594,23.9806
  9989. 30.0594,23.9806
  9990. 30.0594,23.9806
  9991. 30.2444,23.8524
  9992. 30.2444,23.8524
  9993. 30.2444,23.8524
  9994. 30.4216,23.7720
  9995. 30.4494,23.7593
  9996. 30.4494,23.7593
  9997. 30.4494,23.7593
  9998. 30.6676,23.7043
  9999. 30.6676,23.7043
  10000. 30.6676,23.7043
  10001. 30.6676,23.7043
  10002. 30.7998,23.6939
  10003. 31.4540,23.6939
  10004. 31.4782,23.6891
  10005. 31.5028,23.6891
  10006. 31.5253,23.6797
  10007. 31.5493,23.6750
  10008. 31.5698,23.6613
  10009. 31.5925,23.6518
  10010. 31.6098,23.6346
  10011. 31.6301,23.6210
  10012. 31.6438,23.6005
  10013. 31.6612,23.5831
  10014. 31.6705,23.5605
  10015. 31.6840,23.5402
  10016. 31.6888,23.5161
  10017. 31.6983,23.4933
  10018. 31.6976,23.4723
  10019. 31.7030,23.4449
  10020. 31.6982,23.3961
  10021. 31.6966,23.3883
  10022. 31.6802,23.3269
  10023. 31.6721,23.2657
  10024. 31.6705,23.2576
  10025. 31.6550,23.2203
  10026. 31.6420,23.1819
  10027. 31.6364,23.1756
  10028. 31.6332,23.1679
  10029. 31.6046,23.1393
  10030. 31.5779,23.1089
  10031. 31.5704,23.1052
  10032. 31.5644,23.0993
  10033. 31.5271,23.0838
  10034. 31.4908,23.0659
  10035. 31.4804,23.0646
  10036. 31.4747,23.0622
  10037. 31.4624,23.0622
  10038. 31.4263,23.0574
  10039. 30.4873,23.0574
  10040. 30.3551,23.0470
  10041. 30.1369,22.9920
  10042. 29.9319,22.8989
  10043. 29.7876,22.7990
  10044. 29.6985,22.7603
  10045. 29.6014,22.7587
  10046. Z" />
  10047. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  10048. d="M 27.0510,6.2889
  10049. 26.9702,6.3429
  10050. 26.9163,6.4236
  10051. 26.8973,6.5189
  10052. 26.9004,6.5579
  10053. 26.9271,6.7263
  10054. 26.9271,6.7264
  10055. 26.9271,6.9625
  10056. 26.9271,6.9625
  10057. 26.8901,7.1958
  10058. 26.8744,7.2441
  10059. 26.8733,7.2537
  10060. 26.8692,7.2624
  10061. 26.8676,7.3016
  10062. 26.8630,7.3406
  10063. 26.8656,7.3499
  10064. 26.8652,7.3595
  10065. 26.8787,7.3963
  10066. 26.8894,7.4341
  10067. 26.8953,7.4417
  10068. 26.8986,7.4507
  10069. 26.9152,7.4669
  10070. 26.9495,7.5104
  10071. 26.9644,7.5222
  10072. 26.9752,7.5301
  10073. 27.0112,7.5508
  10074. 27.1573,7.6630
  10075. 27.1598,7.6648
  10076. 27.2012,7.6840
  10077. 27.2421,7.7041
  10078. 27.2451,7.7043
  10079. 27.2479,7.7056
  10080. 27.2935,7.7075
  10081. 27.3391,7.7105
  10082. 27.3419,7.7095
  10083. 27.3450,7.7096
  10084. 27.3878,7.6939
  10085. 27.4311,7.6793
  10086. 27.4349,7.6767
  10087. 27.4362,7.6762
  10088. 27.4377,7.6748
  10089. 27.4581,7.6612
  10090. 27.6019,7.5508
  10091. 27.6020,7.5508
  10092. 27.8007,7.4361
  10093. 27.8007,7.4361
  10094. 28.0127,7.3483
  10095. 28.1406,7.3140
  10096. 28.2343,7.2889
  10097. 28.2343,7.2889
  10098. 28.2343,7.2889
  10099. 28.4618,7.2589
  10100. 28.6913,7.2589
  10101. 28.9188,7.2889
  10102. 29.1404,7.3483
  10103. 29.3524,7.4361
  10104. 29.3524,7.4361
  10105. 29.5512,7.5508
  10106. 29.5512,7.5508
  10107. 29.7332,7.6905
  10108. 29.8955,7.8528
  10109. 30.0352,8.0348
  10110. 30.0352,8.0348
  10111. 30.1499,8.2335
  10112. 30.1499,8.2336
  10113. 30.2377,8.4456
  10114. 30.2971,8.6672
  10115. 30.3271,8.8947
  10116. 30.3271,9.6242
  10117. 30.2971,9.8517
  10118. 30.2377,10.0733
  10119. 30.1499,10.2853
  10120. 30.1499,10.2853
  10121. 30.0408,10.4743
  10122. 30.0352,10.4840
  10123. 30.0352,10.4841
  10124. 29.9092,10.6482
  10125. 29.8955,10.6661
  10126. 29.7332,10.8284
  10127. 29.7332,10.8284
  10128. 29.7332,10.8284
  10129. 29.6950,10.8577
  10130. 29.5512,10.9680
  10131. 29.5512,10.9681
  10132. 29.3524,11.0828
  10133. 29.3524,11.0828
  10134. 29.3524,11.0828
  10135. 29.1404,11.1706
  10136. 28.9188,11.2300
  10137. 28.6913,11.2599
  10138. 28.4618,11.2599
  10139. 28.2343,11.2300
  10140. 28.0127,11.1706
  10141. 27.8007,11.0828
  10142. 27.6019,10.9680
  10143. 27.4581,10.8577
  10144. 27.3710,10.8147
  10145. 27.2741,10.8084
  10146. 27.1821,10.8396
  10147. 27.1550,10.8577
  10148. 27.0492,10.9389
  10149. 27.0112,10.9680
  10150. 27.0112,10.9681
  10151. 26.8124,11.0828
  10152. 26.8124,11.0828
  10153. 26.8124,11.0828
  10154. 26.6004,11.1706
  10155. 26.3788,11.2300
  10156. 26.1513,11.2599
  10157. 25.9218,11.2599
  10158. 25.6943,11.2300
  10159. 25.4905,11.1754
  10160. 25.3936,11.1690
  10161. 25.3016,11.2002
  10162. 25.2285,11.2643
  10163. 25.1855,11.3514
  10164. 25.1771,11.4159
  10165. 25.1771,11.6336
  10166. 25.1667,11.7658
  10167. 25.1117,11.9841
  10168. 25.0515,12.1165
  10169. 25.0294,12.2111
  10170. 25.0451,12.3069
  10171. 25.0515,12.3224
  10172. 25.1117,12.4548
  10173. 25.1667,12.6730
  10174. 25.1667,12.6730
  10175. 25.1771,12.8052
  10176. 25.1771,13.6336
  10177. 25.1741,13.6716
  10178. 25.1667,13.7658
  10179. 25.1208,13.9477
  10180. 25.1116,13.9841
  10181. 25.0765,14.0616
  10182. 25.0202,14.1855
  10183. 25.0186,14.1891
  10184. 25.0179,14.1903
  10185. 25.0175,14.1913
  10186. 25.0139,14.1992
  10187. 25.0148,14.1996
  10188. 24.9874,14.2825
  10189. 24.9944,14.3794
  10190. 25.0298,14.4549
  10191. 25.0436,14.4748
  10192. 25.0436,14.4748
  10193. 25.1366,14.6798
  10194. 25.1917,14.8980
  10195. 25.1917,14.8980
  10196. 25.2021,15.0302
  10197. 25.2021,15.8586
  10198. 25.1917,15.9909
  10199. 25.1367,16.2091
  10200. 25.0765,16.3415
  10201. 25.0544,16.4361
  10202. 25.0701,16.5319
  10203. 25.0765,16.5474
  10204. 25.1367,16.6798
  10205. 25.1917,16.8980
  10206. 25.1917,16.8980
  10207. 25.2021,17.0302
  10208. 25.2021,17.8586
  10209. 25.2021,17.8587
  10210. 25.1917,17.9908
  10211. 25.1376,18.2054
  10212. 25.1366,18.2091
  10213. 25.1065,18.2755
  10214. 25.0843,18.3701
  10215. 25.1001,18.4660
  10216. 25.1031,18.4738
  10217. 25.1577,18.6056
  10218. 25.2171,18.8272
  10219. 25.2471,19.0547
  10220. 25.2471,19.7842
  10221. 25.2171,20.0117
  10222. 25.1577,20.2333
  10223. 25.0699,20.4453
  10224. 25.0699,20.4453
  10225. 24.9552,20.6440
  10226. 24.9552,20.6441
  10227. 24.9488,20.6523
  10228. 24.8285,20.8091
  10229. 24.7855,20.8962
  10230. 24.7771,20.9607
  10231. 24.7771,21.6699
  10232. 24.7960,21.7652
  10233. 24.8500,21.8460
  10234. 24.9308,21.9000
  10235. 25.0261,21.9189
  10236. 25.1283,21.9189
  10237. 25.2605,21.9293
  10238. 25.4787,21.9843
  10239. 25.6181,22.0477
  10240. 25.6837,22.0774
  10241. 25.6837,22.0774
  10242. 25.6837,22.0774
  10243. 25.8687,22.2056
  10244. 26.0279,22.3648
  10245. 26.0829,22.4442
  10246. 26.1528,22.5118
  10247. 26.2431,22.5474
  10248. 26.3403,22.5458
  10249. 26.4294,22.5071
  10250. 26.4969,22.4373
  10251. 26.5326,22.3469
  10252. 26.5358,22.2829
  10253. 26.5261,22.1587
  10254. 26.5261,21.0802
  10255. 26.5365,20.9480
  10256. 26.5915,20.7298
  10257. 26.6845,20.5248
  10258. 26.7065,20.4931
  10259. 26.8127,20.3398
  10260. 26.8127,20.3398
  10261. 26.8127,20.3398
  10262. 26.8146,20.3380
  10263. 26.8157,20.3362
  10264. 26.8199,20.3312
  10265. 26.8194,20.3308
  10266. 26.8685,20.2572
  10267. 26.8875,20.1619
  10268. 26.8790,20.0975
  10269. 26.8560,20.0117
  10270. 26.8261,19.7842
  10271. 26.8261,19.0547
  10272. 26.8560,18.8272
  10273. 26.8583,18.8186
  10274. 26.8647,18.7216
  10275. 26.8334,18.6296
  10276. 26.8187,18.6085
  10277. 26.8191,18.6083
  10278. 26.7247,18.4720
  10279. 26.6845,18.4141
  10280. 26.5915,18.2091
  10281. 26.5365,17.9908
  10282. 26.5343,17.9639
  10283. 26.5261,17.8587
  10284. 26.5261,17.8587
  10285. 26.5261,16.7802
  10286. 26.5365,16.6480
  10287. 26.5915,16.4298
  10288. 26.6845,16.2248
  10289. 26.7030,16.1982
  10290. 26.8127,16.0398
  10291. 26.8127,16.0398
  10292. 26.8127,16.0398
  10293. 26.9719,15.8806
  10294. 26.9719,15.8806
  10295. 26.9719,15.8806
  10296. 27.1569,15.7524
  10297. 27.1569,15.7524
  10298. 27.1569,15.7524
  10299. 27.2938,15.6903
  10300. 27.3619,15.6593
  10301. 27.3619,15.6593
  10302. 27.3619,15.6593
  10303. 27.5801,15.6043
  10304. 27.5801,15.6043
  10305. 27.5801,15.6043
  10306. 27.5801,15.6043
  10307. 27.7123,15.5939
  10308. 27.7123,15.5939
  10309. 27.7271,15.5939
  10310. 27.8223,15.5750
  10311. 27.9031,15.5210
  10312. 27.9571,15.4402
  10313. 27.9761,15.3449
  10314. 27.9761,14.7802
  10315. 27.9761,14.7802
  10316. 27.9865,14.6480
  10317. 28.0415,14.4298
  10318. 28.1345,14.2248
  10319. 28.1523,14.1992
  10320. 28.2627,14.0398
  10321. 28.2627,14.0398
  10322. 28.2627,14.0398
  10323. 28.4219,13.8806
  10324. 28.4219,13.8806
  10325. 28.4219,13.8806
  10326. 28.6069,13.7524
  10327. 28.6069,13.7524
  10328. 28.6069,13.7524
  10329. 28.7848,13.6716
  10330. 28.8119,13.6593
  10331. 28.8119,13.6593
  10332. 28.8119,13.6593
  10333. 29.0301,13.6043
  10334. 29.0301,13.6043
  10335. 29.0405,13.6026
  10336. 29.0401,13.6004
  10337. 29.1183,13.5784
  10338. 29.1814,13.5326
  10339. 31.1781,11.5358
  10340. 31.2321,11.4551
  10341. 31.2511,11.3598
  10342. 31.2511,7.6691
  10343. 31.2321,7.5738
  10344. 31.1781,7.4930
  10345. 30.0280,6.3429
  10346. 29.9472,6.2889
  10347. 29.8519,6.2699
  10348. 27.1463,6.2699
  10349. Z" />
  10350. <path style="fill:#000000; fill-opacity:1.0000; stroke:none;fill-rule:evenodd;"
  10351. d="M 37.9486,12.6264
  10352. 37.8679,12.6804
  10353. 37.8392,12.7146
  10354. 37.8154,12.7491
  10355. 37.8154,12.7491
  10356. 37.6562,12.9083
  10357. 37.6562,12.9083
  10358. 37.6562,12.9083
  10359. 37.4712,13.0364
  10360. 37.4712,13.0364
  10361. 37.2662,13.1295
  10362. 37.0480,13.1845
  10363. 37.0480,13.1845
  10364. 37.0480,13.1845
  10365. 36.9819,13.1897
  10366. 36.9158,13.1949
  10367. 35.4873,13.1949
  10368. 35.3551,13.1845
  10369. 35.1369,13.1295
  10370. 34.9319,13.0364
  10371. 34.7469,12.9083
  10372. 34.5877,12.7491
  10373. 34.5877,12.7491
  10374. 34.5798,12.7412
  10375. 34.5785,12.7425
  10376. 34.5144,12.6908
  10377. 34.4212,12.6633
  10378. 34.3246,12.6737
  10379. 34.2393,12.7202
  10380. 34.2228,12.7353
  10381. 33.7291,13.2290
  10382. 33.7291,13.2290
  10383. 33.7291,13.2290
  10384. 32.8088,14.1492
  10385. 32.7549,14.2300
  10386. 32.7359,14.3253
  10387. 32.7549,14.4205
  10388. 32.8088,14.5013
  10389. 32.8896,14.5553
  10390. 32.9849,14.5743
  10391. 33.0044,14.5735
  10392. 33.0365,14.5710
  10393. 33.0623,14.5689
  10394. 33.0623,14.5689
  10395. 33.8908,14.5689
  10396. 34.0230,14.5793
  10397. 34.2412,14.6343
  10398. 34.3946,14.7040
  10399. 34.4462,14.7274
  10400. 34.4462,14.7274
  10401. 34.4462,14.7274
  10402. 34.6312,14.8556
  10403. 34.7904,15.0148
  10404. 34.9186,15.1998
  10405. 34.9186,15.1998
  10406. 34.9186,15.1998
  10407. 34.9234,15.2105
  10408. 35.0116,15.4048
  10409. 35.0667,15.6230
  10410. 35.0667,15.6230
  10411. 35.0771,15.7552
  10412. 35.0771,16.2699
  10413. 35.0960,16.3652
  10414. 35.1500,16.4460
  10415. 35.2308,16.5000
  10416. 35.3261,16.5189
  10417. 35.8908,16.5189
  10418. 36.0230,16.5293
  10419. 36.2412,16.5843
  10420. 36.3949,16.6541
  10421. 36.4894,16.6763
  10422. 36.5548,16.6698
  10423. 36.6277,16.6527
  10424. 36.6277,16.6527
  10425. 36.7173,16.6464
  10426. 36.7173,16.6464
  10427. 37.7558,16.6464
  10428. 37.7558,16.6464
  10429. 37.8454,16.6527
  10430. 37.8454,16.6527
  10431. 37.9196,16.6701
  10432. 37.9484,16.6711
  10433. 37.9766,16.6767
  10434. 37.9965,16.6728
  10435. 38.0167,16.6735
  10436. 38.0437,16.6634
  10437. 38.0719,16.6578
  10438. 38.0887,16.6465
  10439. 38.1077,16.6394
  10440. 38.1527,16.6038
  10441. 38.2951,16.4613
  10442. 38.3468,16.3858
  10443. 38.3887,16.2911
  10444. 38.3887,16.2911
  10445. 38.3887,16.2911
  10446. 38.5105,16.1133
  10447. 38.6629,15.9609
  10448. 38.6629,15.9609
  10449. 38.6629,15.9609
  10450. 38.8407,15.8391
  10451. 38.8487,15.8355
  10452. 38.8695,15.8263
  10453. 39.0385,15.7517
  10454. 39.0716,15.7378
  10455. 39.1605,15.6925
  10456. 39.2806,15.6314
  10457. 39.2806,15.6314
  10458. 39.2806,15.6314
  10459. 39.4091,15.5896
  10460. 39.5052,15.5584
  10461. 39.5052,15.5584
  10462. 39.5052,15.5584
  10463. 39.7385,15.5214
  10464. 39.7385,15.5214
  10465. 39.7385,15.5214
  10466. 39.9746,15.5214
  10467. 39.9746,15.5214
  10468. 39.9747,15.5214
  10469. 40.2079,15.5584
  10470. 40.4325,15.6314
  10471. 40.4326,15.6314
  10472. 40.6415,15.7378
  10473. 40.6746,15.7517
  10474. 40.8436,15.8263
  10475. 40.8644,15.8355
  10476. 40.8724,15.8391
  10477. 40.8724,15.8391
  10478. 41.0502,15.9609
  10479. 41.2026,16.1133
  10480. 41.3244,16.2911
  10481. 41.3244,16.2911
  10482. 41.4115,16.4883
  10483. 41.4115,16.4883
  10484. 41.4115,16.4883
  10485. 41.4212,16.5293
  10486. 41.4347,16.5868
  10487. 41.4749,16.6752
  10488. 41.5460,16.7415
  10489. 41.6370,16.7756
  10490. 41.7341,16.7722
  10491. 41.8225,16.7319
  10492. 41.8888,16.6609
  10493. 41.9228,16.5699
  10494. 41.9261,16.5298
  10495. 41.9261,15.9677
  10496. 41.9261,15.9677
  10497. 41.9365,15.8355
  10498. 41.9915,15.6173
  10499. 41.9915,15.6173
  10500. 41.9915,15.6172
  10501. 41.9952,15.6067
  10502. 41.9938,15.6062
  10503. 42.0132,15.5237
  10504. 41.9974,15.4278
  10505. 41.9462,15.3452
  10506. 41.9404,15.3392
  10507. 41.7877,15.1866
  10508. 41.6595,15.0016
  10509. 41.5665,14.7966
  10510. 41.5115,14.5783
  10511. 41.5111,14.5735
  10512. 41.5011,14.4462
  10513. 41.5011,14.4462
  10514. 41.5011,13.0177
  10515. 41.5115,12.8855
  10516. 41.5115,12.8855
  10517. 41.5122,12.8760
  10518. 41.5008,12.7795
  10519. 41.4533,12.6947
  10520. 41.3770,12.6346
  10521. 41.2835,12.6082
  10522. 41.2640,12.6074
  10523. 38.0439,12.6074
  10524. Z" />
  10525. <path style="fill:none;
  10526. stroke:#000000; stroke-width:0.2500; stroke-opacity:1;
  10527. stroke-linecap:round; stroke-linejoin:round;fill:none"
  10528. d="M 59.9948,5.0000
  10529. 59.9943,4.8993
  10530. 59.9862,4.6981
  10531. 59.9700,4.4973
  10532. 59.9457,4.2974
  10533. 59.9134,4.0986
  10534. 59.8731,3.9013
  10535. 59.8249,3.7058
  10536. 59.7689,3.5123
  10537. 59.7051,3.3213
  10538. 59.6337,3.1330
  10539. 59.5548,2.9477
  10540. 59.4684,2.7658
  10541. 59.3748,2.5875
  10542. 59.2741,2.4130
  10543. 59.1665,2.2428
  10544. 59.0521,2.0771
  10545. 58.9311,1.9161
  10546. 58.8038,1.7601
  10547. 58.6702,1.6093
  10548. 58.5307,1.4641
  10549. 58.3855,1.3246
  10550. 58.2347,1.1910
  10551. 58.0787,1.0637
  10552. 57.9177,0.9427
  10553. 57.7520,0.8283
  10554. 57.5818,0.7207
  10555. 57.4073,0.6200
  10556. 57.2290,0.5264
  10557. 57.0471,0.4400
  10558. 56.8618,0.3611
  10559. 56.6735,0.2897
  10560. 56.4825,0.2259
  10561. 56.2890,0.1699
  10562. 56.0935,0.1217
  10563. 55.8962,0.0814
  10564. 55.6974,0.0491
  10565. 55.4975,0.0248
  10566. 55.2967,0.0086
  10567. 55.0955,0.0005
  10568. 54.9948,0.0000
  10569. 4.9948,0.0000
  10570. 4.8941,0.0005
  10571. 4.6929,0.0086
  10572. 4.4921,0.0248
  10573. 4.2922,0.0491
  10574. 4.0934,0.0814
  10575. 3.8961,0.1217
  10576. 3.7006,0.1699
  10577. 3.5071,0.2259
  10578. 3.3161,0.2897
  10579. 3.1278,0.3611
  10580. 2.9425,0.4400
  10581. 2.7606,0.5264
  10582. 2.5822,0.6199
  10583. 2.4078,0.7206
  10584. 2.2376,0.8283
  10585. 2.0719,0.9427
  10586. 1.9109,1.0637
  10587. 1.7549,1.1910
  10588. 1.6041,1.3246
  10589. 1.4589,1.4641
  10590. 1.3193,1.6093
  10591. 1.1858,1.7601
  10592. 1.0584,1.9161
  10593. 0.9374,2.0771
  10594. 0.8230,2.2428
  10595. 0.7154,2.4130
  10596. 0.6147,2.5874
  10597. 0.5211,2.7658
  10598. 0.4348,2.9477
  10599. 0.3558,3.1330
  10600. 0.2844,3.3213
  10601. 0.2206,3.5123
  10602. 0.1646,3.7058
  10603. 0.1164,3.9013
  10604. 0.0761,4.0986
  10605. 0.0438,4.2974
  10606. 0.0195,4.4973
  10607. 0.0033,4.6981
  10608. -0.0048,4.8993
  10609. -0.0052,5.0000
  10610. -0.0052,55.0000
  10611. -0.0047,55.1007
  10612. 0.0034,55.3019
  10613. 0.0196,55.5027
  10614. 0.0439,55.7026
  10615. 0.0762,55.9014
  10616. 0.1165,56.0987
  10617. 0.1647,56.2942
  10618. 0.2207,56.4877
  10619. 0.2845,56.6787
  10620. 0.3559,56.8670
  10621. 0.4348,57.0523
  10622. 0.5212,57.2342
  10623. 0.6147,57.4126
  10624. 0.7154,57.5870
  10625. 0.8231,57.7572
  10626. 0.9375,57.9229
  10627. 1.0585,58.0839
  10628. 1.1858,58.2399
  10629. 1.3194,58.3907
  10630. 1.4589,58.5359
  10631. 1.6041,58.6754
  10632. 1.7549,58.8090
  10633. 1.9109,58.9363
  10634. 2.0719,59.0573
  10635. 2.2376,59.1717
  10636. 2.4078,59.2794
  10637. 2.5822,59.3800
  10638. 2.7606,59.4736
  10639. 2.9425,59.5600
  10640. 3.1278,59.6389
  10641. 3.3161,59.7103
  10642. 3.5071,59.7741
  10643. 3.7006,59.8301
  10644. 3.8961,59.8783
  10645. 4.0934,59.9186
  10646. 4.2922,59.9509
  10647. 4.4921,59.9752
  10648. 4.6929,59.9914
  10649. 4.8941,59.9995
  10650. 4.9948,60.0000
  10651. 54.9948,60.0000
  10652. 55.0955,59.9995
  10653. 55.2967,59.9914
  10654. 55.4975,59.9752
  10655. 55.6974,59.9509
  10656. 55.8962,59.9186
  10657. 56.0935,59.8783
  10658. 56.2890,59.8301
  10659. 56.4825,59.7741
  10660. 56.6735,59.7103
  10661. 56.8618,59.6389
  10662. 57.0471,59.5599
  10663. 57.2290,59.4736
  10664. 57.4073,59.3800
  10665. 57.5817,59.2793
  10666. 57.7519,59.1717
  10667. 57.9177,59.0573
  10668. 58.0787,58.9363
  10669. 58.2347,58.8089
  10670. 58.3854,58.6754
  10671. 58.5306,58.5359
  10672. 58.6702,58.3906
  10673. 58.8037,58.2399
  10674. 58.9311,58.0839
  10675. 59.0520,57.9229
  10676. 59.1664,57.7571
  10677. 59.2741,57.5869
  10678. 59.3748,57.4125
  10679. 59.4684,57.2342
  10680. 59.5547,57.0523
  10681. 59.6336,56.8670
  10682. 59.7050,56.6787
  10683. 59.7688,56.4877
  10684. 59.8248,56.2942
  10685. 59.8730,56.0987
  10686. 59.9133,55.9014
  10687. 59.9456,55.7026
  10688. 59.9699,55.5027
  10689. 59.9861,55.3019
  10690. 59.9942,55.1007
  10691. 59.9948,55.0000
  10692. Z" />
  10693. </g>
  10694. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10695. <circle cx="47.4516" cy="27.4944" r="0.4000" />
  10696. <circle cx="45.8766" cy="11.1069" r="0.4000" />
  10697. <circle cx="24.4016" cy="40.5444" r="0.4000" />
  10698. <circle cx="27.2016" cy="54.0194" r="0.4000" />
  10699. <circle cx="41.4016" cy="12.7444" r="0.4000" />
  10700. <circle cx="29.7016" cy="27.4444" r="0.4000" />
  10701. <circle cx="34.1016" cy="45.0694" r="0.4000" />
  10702. <circle cx="41.4016" cy="9.0444" r="0.4000" />
  10703. <circle cx="44.2016" cy="37.1944" r="0.4000" />
  10704. <circle cx="34.7266" cy="33.4194" r="0.4000" />
  10705. <circle cx="27.2016" cy="51.9194" r="0.4000" />
  10706. <circle cx="10.5766" cy="54.0194" r="0.4000" />
  10707. <circle cx="44.2016" cy="28.1444" r="0.4000" />
  10708. <circle cx="19.6016" cy="38.9444" r="0.4000" />
  10709. <circle cx="12.2016" cy="35.1444" r="0.4000" />
  10710. <circle cx="44.1516" cy="45.0694" r="0.4000" />
  10711. <circle cx="8.3016" cy="55.2944" r="0.4000" />
  10712. <circle cx="16.3016" cy="15.4444" r="0.4000" />
  10713. <circle cx="7.6016" cy="23.7444" r="0.4000" />
  10714. <circle cx="5.6516" cy="55.2444" r="0.4000" />
  10715. <circle cx="13.0266" cy="15.4444" r="0.4000" />
  10716. <circle cx="1.7016" cy="29.6444" r="0.4000" />
  10717. <circle cx="16.1766" cy="42.9444" r="0.4000" />
  10718. <circle cx="14.0516" cy="40.7944" r="0.4000" />
  10719. <circle cx="29.6766" cy="34.1694" r="0.4000" />
  10720. <circle cx="26.6266" cy="34.1694" r="0.4000" />
  10721. <circle cx="33.3516" cy="22.9944" r="0.4000" />
  10722. <circle cx="15.6766" cy="22.9444" r="0.4000" />
  10723. <circle cx="45.8266" cy="29.5444" r="0.4000" />
  10724. <circle cx="13.5416" cy="29.4794" r="0.4000" />
  10725. </g>
  10726. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10727. <circle cx="40.6716" cy="41.6594" r="0.5000" />
  10728. </g>
  10729. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10730. <circle cx="38.1316" cy="41.6594" r="0.5000" />
  10731. </g>
  10732. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10733. <circle cx="40.6716" cy="31.1044" r="0.5000" />
  10734. </g>
  10735. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10736. <circle cx="38.1316" cy="31.1044" r="0.5000" />
  10737. </g>
  10738. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10739. <circle cx="7.8516" cy="32.0444" r="0.3250" />
  10740. </g>
  10741. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10742. <circle cx="7.8516" cy="30.7744" r="0.3250" />
  10743. </g>
  10744. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10745. <circle cx="28.1516" cy="40.9144" r="0.5000" />
  10746. </g>
  10747. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10748. <circle cx="28.1516" cy="43.4544" r="0.5000" />
  10749. </g>
  10750. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10751. <circle cx="28.1516" cy="45.9944" r="0.5000" />
  10752. </g>
  10753. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10754. <circle cx="28.1516" cy="48.5344" r="0.5000" />
  10755. </g>
  10756. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10757. <circle cx="40.6616" cy="52.2044" r="0.5000" />
  10758. </g>
  10759. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10760. <circle cx="38.1216" cy="52.2044" r="0.5000" />
  10761. </g>
  10762. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10763. <circle cx="31.1166" cy="19.4194" r="0.4500" />
  10764. </g>
  10765. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10766. <circle cx="28.5766" cy="19.4194" r="0.4500" />
  10767. </g>
  10768. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10769. <circle cx="26.0366" cy="19.4194" r="0.4500" />
  10770. </g>
  10771. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10772. <circle cx="23.4966" cy="19.4194" r="0.4500" />
  10773. </g>
  10774. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10775. <circle cx="20.9566" cy="19.4194" r="0.4500" />
  10776. </g>
  10777. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10778. <circle cx="18.4166" cy="19.4194" r="0.4500" />
  10779. </g>
  10780. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10781. <circle cx="15.8766" cy="19.4194" r="0.4500" />
  10782. </g>
  10783. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10784. <circle cx="18.4166" cy="9.2594" r="0.4500" />
  10785. </g>
  10786. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10787. <circle cx="20.9566" cy="9.2594" r="0.4500" />
  10788. </g>
  10789. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10790. <circle cx="23.4966" cy="9.2594" r="0.4500" />
  10791. </g>
  10792. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10793. <circle cx="26.0366" cy="9.2594" r="0.4500" />
  10794. </g>
  10795. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10796. <circle cx="28.5766" cy="9.2594" r="0.4500" />
  10797. </g>
  10798. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10799. <circle cx="21.7966" cy="50.7094" r="0.4000" />
  10800. </g>
  10801. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10802. <circle cx="19.2566" cy="50.7094" r="0.4000" />
  10803. </g>
  10804. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10805. <circle cx="16.7166" cy="50.7094" r="0.4000" />
  10806. </g>
  10807. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10808. <circle cx="14.1766" cy="50.7094" r="0.4000" />
  10809. </g>
  10810. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10811. <circle cx="14.1766" cy="48.1694" r="0.4000" />
  10812. </g>
  10813. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10814. <circle cx="16.7166" cy="48.1694" r="0.4000" />
  10815. </g>
  10816. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10817. <circle cx="19.2566" cy="48.1694" r="0.4000" />
  10818. </g>
  10819. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10820. <circle cx="21.7966" cy="48.1694" r="0.4000" />
  10821. </g>
  10822. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10823. <circle cx="44.4016" cy="26.6844" r="0.5000" />
  10824. </g>
  10825. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10826. <circle cx="44.4016" cy="24.1444" r="0.5000" />
  10827. </g>
  10828. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10829. <circle cx="21.8016" cy="43.5944" r="0.4000" />
  10830. </g>
  10831. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10832. <circle cx="19.2616" cy="43.5944" r="0.4000" />
  10833. </g>
  10834. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10835. <circle cx="40.6866" cy="20.5394" r="0.5000" />
  10836. </g>
  10837. <g style="fill:#FFFFFF; fill-opacity:1.0000; stroke:none;">
  10838. <circle cx="38.1466" cy="20.5394" r="0.5000" />
  10839. </g>
  10840. </svg>