123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
- <style type="text/css">
- .st0{clip-path:url(#SVGID_2_);}
- .st1{fill:url(#SVGID_3_);}
- .st2{fill:url(#SVGID_4_);}
- .st3{fill:url(#SVGID_5_);}
- .st4{fill:url(#SVGID_6_);}
- .st5{fill:url(#SVGID_7_);}
- .st6{fill:url(#SVGID_8_);}
- .st7{fill:url(#SVGID_9_);}
- .st8{fill:url(#SVGID_10_);}
- .st9{fill:url(#SVGID_11_);}
- .st10{fill:url(#SVGID_12_);}
- .st11{fill:url(#SVGID_13_);}
- .st12{fill:url(#SVGID_14_);}
- .st13{fill:url(#SVGID_15_);}
- .st14{fill:url(#SVGID_16_);}
- .st15{fill:url(#SVGID_17_);}
- .st16{fill:url(#SVGID_18_);}
- .st17{fill:url(#SVGID_19_);}
- .st18{fill:url(#SVGID_20_);}
- .st19{fill:url(#SVGID_21_);}
- .st20{fill:url(#SVGID_22_);}
- .st21{fill:url(#SVGID_23_);}
- .st22{fill:url(#SVGID_24_);}
- .st23{fill:url(#SVGID_25_);}
- .st24{fill:url(#SVGID_26_);}
- .st25{fill:url(#SVGID_27_);}
- .st26{fill:url(#SVGID_28_);}
- .st27{fill:url(#SVGID_29_);}
- .st28{fill:url(#SVGID_30_);}
- .st29{fill:url(#SVGID_31_);}
- .st30{fill:url(#SVGID_32_);}
- .st31{fill:url(#SVGID_33_);}
- .st32{fill:url(#SVGID_34_);}
- .st33{fill:url(#SVGID_35_);}
- .st34{fill:url(#SVGID_36_);}
- .st35{fill:url(#SVGID_37_);}
- .st36{fill:url(#SVGID_38_);}
- .st37{fill:url(#SVGID_39_);}
- .st38{fill:url(#SVGID_40_);}
- .st39{fill:url(#SVGID_41_);}
- .st40{fill:url(#SVGID_42_);}
- .st41{fill:url(#SVGID_43_);}
- .st42{fill:url(#SVGID_44_);}
- .st43{fill:url(#SVGID_45_);}
- .st44{fill:url(#SVGID_46_);}
- .st45{fill:url(#SVGID_47_);}
- .st46{fill:url(#SVGID_48_);}
- .st47{fill:url(#SVGID_49_);}
- .st48{fill:url(#SVGID_50_);}
- .st49{fill:url(#SVGID_51_);}
- .st50{fill:url(#SVGID_52_);}
- .st51{fill:url(#SVGID_53_);}
- .st52{fill:url(#SVGID_54_);}
- .st53{fill:url(#SVGID_55_);}
- .st54{fill:url(#SVGID_56_);}
- .st55{fill:url(#SVGID_57_);}
- .st56{fill:url(#SVGID_58_);}
- .st57{fill:url(#SVGID_59_);}
- .st58{fill:url(#SVGID_60_);}
- .st59{fill:url(#SVGID_61_);}
- .st60{fill:url(#SVGID_62_);}
- .st61{fill:url(#SVGID_63_);}
- .st62{fill:url(#SVGID_64_);}
- .st63{fill:url(#SVGID_65_);}
- .st64{fill:url(#SVGID_66_);}
- .st65{fill:url(#SVGID_67_);}
- .st66{fill:url(#SVGID_68_);}
- .st67{fill:url(#SVGID_69_);}
- .st68{fill:url(#SVGID_70_);}
- .st69{fill:url(#SVGID_71_);}
- .st70{fill:url(#SVGID_72_);}
- .st71{fill:url(#SVGID_73_);}
- .st72{fill:url(#SVGID_74_);}
- .st73{fill:url(#SVGID_75_);}
- .st74{fill:url(#SVGID_76_);}
- .st75{fill:url(#SVGID_77_);}
- .st76{fill:url(#SVGID_78_);}
- .st77{clip-path:url(#SVGID_80_);}
- .st78{fill:url(#SVGID_81_);}
- .st79{fill:url(#SVGID_82_);}
- .st80{fill:url(#SVGID_83_);}
- .st81{fill:url(#SVGID_84_);}
- .st82{fill:url(#SVGID_85_);}
- .st83{fill:url(#SVGID_86_);}
- .st84{fill:url(#SVGID_87_);}
- .st85{fill:url(#SVGID_88_);}
- .st86{fill:url(#SVGID_89_);}
- .st87{fill:url(#SVGID_90_);}
- .st88{fill:url(#SVGID_91_);}
- .st89{fill:url(#SVGID_92_);}
- .st90{fill:url(#SVGID_93_);}
- .st91{fill:url(#SVGID_94_);}
- .st92{fill:url(#SVGID_95_);}
- .st93{fill:url(#SVGID_96_);}
- .st94{fill:url(#SVGID_97_);}
- .st95{fill:url(#SVGID_98_);}
- .st96{fill:url(#SVGID_99_);}
- .st97{fill:url(#SVGID_100_);}
- .st98{fill:url(#SVGID_101_);}
- .st99{fill:url(#SVGID_102_);}
- .st100{fill:url(#SVGID_103_);}
- .st101{fill:url(#SVGID_104_);}
- .st102{fill:url(#SVGID_105_);}
- .st103{fill:url(#SVGID_106_);}
- .st104{fill:url(#SVGID_107_);}
- .st105{fill:url(#SVGID_108_);}
- .st106{fill:url(#SVGID_109_);}
- .st107{fill:url(#SVGID_110_);}
- .st108{fill:url(#SVGID_111_);}
- .st109{fill:url(#SVGID_112_);}
- .st110{fill:url(#SVGID_113_);}
- .st111{fill:url(#SVGID_114_);}
- .st112{fill:url(#SVGID_115_);}
- .st113{fill:url(#SVGID_116_);}
- .st114{fill:url(#SVGID_117_);}
- .st115{fill:url(#SVGID_118_);}
- .st116{fill:url(#SVGID_119_);}
- .st117{fill:url(#SVGID_120_);}
- .st118{fill:url(#SVGID_121_);}
- .st119{fill:url(#SVGID_122_);}
- .st120{fill:url(#SVGID_123_);}
- .st121{fill:url(#SVGID_124_);}
- .st122{fill:url(#SVGID_125_);}
- .st123{fill:url(#SVGID_126_);}
- .st124{fill:url(#SVGID_127_);}
- .st125{fill:url(#SVGID_128_);}
- .st126{fill:url(#SVGID_129_);}
- .st127{fill:url(#SVGID_130_);}
- .st128{fill:url(#SVGID_131_);}
- .st129{fill:url(#SVGID_132_);}
- .st130{fill:url(#SVGID_133_);}
- .st131{fill:url(#SVGID_134_);}
- .st132{fill:url(#SVGID_135_);}
- .st133{fill:url(#SVGID_136_);}
- .st134{fill:url(#SVGID_137_);}
- .st135{fill:url(#SVGID_138_);}
- .st136{fill:url(#SVGID_139_);}
- .st137{fill:url(#SVGID_140_);}
- .st138{fill:url(#SVGID_141_);}
- .st139{fill:url(#SVGID_142_);}
- .st140{fill:url(#SVGID_143_);}
- .st141{fill:url(#SVGID_144_);}
- .st142{fill:url(#SVGID_145_);}
- .st143{fill:url(#SVGID_146_);}
- .st144{fill:url(#SVGID_147_);}
- .st145{fill:url(#SVGID_148_);}
- .st146{fill:url(#SVGID_149_);}
- .st147{fill:url(#SVGID_150_);}
- .st148{fill:url(#SVGID_151_);}
- .st149{fill:url(#SVGID_152_);}
- .st150{fill:url(#SVGID_153_);}
- .st151{fill:url(#SVGID_154_);}
- .st152{fill:url(#SVGID_155_);}
- .st153{fill:url(#SVGID_156_);}
- .st154{fill:url(#SVGID_157_);}
- .st155{fill:url(#SVGID_158_);}
- .st156{fill:url(#SVGID_159_);}
- .st157{fill:url(#SVGID_160_);}
- .st158{fill:url(#SVGID_161_);}
- .st159{fill:url(#SVGID_162_);}
- .st160{fill:url(#SVGID_163_);}
- .st161{fill:url(#SVGID_164_);}
- .st162{fill:url(#SVGID_165_);}
- .st163{fill:url(#SVGID_166_);}
- .st164{fill:url(#SVGID_167_);}
- .st165{fill:url(#SVGID_168_);}
- .st166{fill:url(#SVGID_169_);}
- .st167{fill:url(#SVGID_170_);}
- .st168{fill:url(#SVGID_171_);}
- .st169{fill:url(#SVGID_172_);}
- .st170{fill:url(#SVGID_173_);}
- .st171{fill:url(#SVGID_174_);}
- .st172{fill:url(#SVGID_175_);}
- .st173{fill:url(#SVGID_176_);}
- .st174{fill:url(#SVGID_177_);}
- .st175{fill:url(#SVGID_178_);}
- .st176{fill:url(#SVGID_179_);}
- .st177{fill:url(#SVGID_180_);}
- .st178{fill:url(#SVGID_181_);}
- .st179{fill:url(#SVGID_182_);}
- .st180{fill:url(#SVGID_183_);}
- .st181{fill:url(#SVGID_184_);}
- .st182{fill:url(#SVGID_185_);}
- .st183{fill:url(#SVGID_186_);}
- .st184{fill:url(#SVGID_187_);}
- .st185{fill:url(#SVGID_188_);}
- .st186{fill:url(#SVGID_189_);}
- .st187{fill:url(#SVGID_190_);}
- .st188{fill:url(#SVGID_191_);}
- .st189{fill:url(#SVGID_192_);}
- .st190{fill:url(#SVGID_193_);}
- .st191{fill:url(#SVGID_194_);}
- .st192{fill:url(#SVGID_195_);}
- .st193{fill:url(#SVGID_196_);}
- .st194{fill:url(#SVGID_197_);}
- .st195{fill:url(#SVGID_198_);}
- .st196{fill:url(#SVGID_199_);}
- .st197{fill:url(#SVGID_200_);}
- .st198{fill:url(#SVGID_201_);}
- .st199{fill:url(#SVGID_202_);}
- .st200{fill:url(#SVGID_203_);}
- .st201{fill:url(#SVGID_204_);}
- .st202{fill:url(#SVGID_205_);}
- .st203{fill:url(#SVGID_206_);}
- .st204{fill:url(#SVGID_207_);}
- .st205{clip-path:url(#SVGID_209_);}
- .st206{fill:url(#SVGID_210_);}
- .st207{fill:url(#SVGID_211_);}
- .st208{fill:url(#SVGID_212_);}
- .st209{fill:url(#SVGID_213_);}
- .st210{fill:url(#SVGID_214_);}
- .st211{fill:url(#SVGID_215_);}
- .st212{fill:url(#SVGID_216_);}
- .st213{fill:url(#SVGID_217_);}
- .st214{fill:url(#SVGID_218_);}
- .st215{fill:url(#SVGID_219_);}
- .st216{fill:url(#SVGID_220_);}
- .st217{fill:url(#SVGID_221_);}
- .st218{fill:url(#SVGID_222_);}
- .st219{fill:url(#SVGID_223_);}
- .st220{fill:url(#SVGID_224_);}
- .st221{fill:url(#SVGID_225_);}
- .st222{fill:url(#SVGID_226_);}
- .st223{fill:url(#SVGID_227_);}
- .st224{fill:url(#SVGID_228_);}
- .st225{fill:url(#SVGID_229_);}
- .st226{fill:url(#SVGID_230_);}
- .st227{fill:url(#SVGID_231_);}
- .st228{fill:url(#SVGID_232_);}
- .st229{fill:url(#SVGID_233_);}
- .st230{fill:url(#SVGID_234_);}
- .st231{fill:url(#SVGID_235_);}
- .st232{fill:url(#SVGID_236_);}
- .st233{fill:url(#SVGID_237_);}
- .st234{fill:url(#SVGID_238_);}
- .st235{fill:url(#SVGID_239_);}
- .st236{fill:url(#SVGID_240_);}
- .st237{fill:url(#SVGID_241_);}
- .st238{fill:url(#SVGID_242_);}
- .st239{fill:url(#SVGID_243_);}
- .st240{fill:url(#SVGID_244_);}
- .st241{fill:url(#SVGID_245_);}
- .st242{fill:url(#SVGID_246_);}
- .st243{fill:url(#SVGID_247_);}
- .st244{fill:url(#SVGID_248_);}
- .st245{fill:url(#SVGID_249_);}
- .st246{fill:url(#SVGID_250_);}
- .st247{fill:url(#SVGID_251_);}
- .st248{fill:url(#SVGID_252_);}
- .st249{fill:url(#SVGID_253_);}
- .st250{fill:url(#SVGID_254_);}
- .st251{fill:url(#SVGID_255_);}
- .st252{fill:url(#SVGID_256_);}
- .st253{fill:url(#SVGID_257_);}
- .st254{fill:url(#SVGID_258_);}
- .st255{fill:url(#SVGID_259_);}
- .st256{fill:url(#SVGID_260_);}
- .st257{fill:url(#SVGID_261_);}
- .st258{fill:url(#SVGID_262_);}
- .st259{fill:url(#SVGID_263_);}
- .st260{fill:url(#SVGID_264_);}
- .st261{fill:url(#SVGID_265_);}
- .st262{fill:url(#SVGID_266_);}
- .st263{fill:url(#SVGID_267_);}
- .st264{fill:url(#SVGID_268_);}
- .st265{fill:url(#SVGID_269_);}
- .st266{fill:url(#SVGID_270_);}
- .st267{fill:url(#SVGID_271_);}
- .st268{fill:url(#SVGID_272_);}
- .st269{fill:url(#SVGID_273_);}
- .st270{fill:url(#SVGID_274_);}
- .st271{fill:url(#SVGID_275_);}
- .st272{fill:url(#SVGID_276_);}
- .st273{fill:url(#SVGID_277_);}
- .st274{fill:url(#SVGID_278_);}
- .st275{fill:url(#SVGID_279_);}
- .st276{fill:url(#SVGID_280_);}
- .st277{fill:url(#SVGID_281_);}
- .st278{fill:url(#SVGID_282_);}
- </style>
- <title>iot-管道(21)</title>
- <g id="图层_2">
- <g>
- <defs>
- <polygon id="SVGID_1_" points="103.5,200 43.8,200 43.8,290.9 73.3,329.8 103.5,290.9 "/>
- </defs>
- <clipPath id="SVGID_2_">
- <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
- </clipPath>
- <g class="st0">
-
- <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-631.07" y1="601.04" x2="-631.07" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st1" cx="73.6" cy="193.7" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-629.28" y1="601.04" x2="-629.28" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st2" cx="73.6" cy="192" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-627.5" y1="601.04" x2="-627.5" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st3" cx="73.6" cy="190.2" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-625.71" y1="601.04" x2="-625.71" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st4" cx="73.6" cy="188.4" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-623.92" y1="601.04" x2="-623.92" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st5" cx="73.6" cy="186.6" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-622.13" y1="601.04" x2="-622.13" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st6" cx="73.6" cy="184.8" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-620.35" y1="601.04" x2="-620.35" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st7" cx="73.6" cy="183" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-618.56" y1="601.04" x2="-618.56" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st8" cx="73.6" cy="181.2" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-616.77" y1="601.04" x2="-616.77" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st9" cx="73.6" cy="179.4" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-614.99" y1="601.04" x2="-614.99" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st10" cx="73.6" cy="177.7" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-613.2" y1="601.04" x2="-613.2" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st11" cx="73.6" cy="175.9" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-611.41" y1="601.04" x2="-611.41" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st12" cx="73.6" cy="174.1" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-609.62" y1="601.04" x2="-609.62" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st13" cx="73.6" cy="172.3" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-607.84" y1="601.04" x2="-607.84" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st14" cx="73.6" cy="170.5" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-606.05" y1="601.04" x2="-606.05" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st15" cx="73.6" cy="168.7" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-604.26" y1="601.04" x2="-604.26" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st16" cx="73.6" cy="166.9" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-602.47" y1="601.04" x2="-602.47" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st17" cx="73.6" cy="165.1" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-600.69" y1="601.04" x2="-600.69" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st18" cx="73.6" cy="163.4" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-598.9" y1="601.04" x2="-598.9" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st19" cx="73.6" cy="161.6" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-597.11" y1="601.04" x2="-597.11" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st20" cx="73.6" cy="159.8" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-595.33" y1="601.04" x2="-595.33" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st21" cx="73.6" cy="158" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-593.54" y1="601.04" x2="-593.54" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st22" cx="73.6" cy="156.2" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-591.75" y1="601.04" x2="-591.75" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st23" cx="73.6" cy="154.4" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-589.96" y1="601.04" x2="-589.96" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st24" cx="73.6" cy="152.6" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-588.18" y1="601.04" x2="-588.18" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st25" cx="73.6" cy="150.9" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-586.39" y1="601.04" x2="-586.39" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st26" cx="73.6" cy="149.1" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-584.6" y1="601.04" x2="-584.6" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st27" cx="73.6" cy="147.3" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-582.82" y1="601.04" x2="-582.82" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st28" cx="73.6" cy="145.5" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-581.03" y1="601.04" x2="-581.03" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st29" cx="73.6" cy="143.7" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-579.24" y1="601.04" x2="-579.24" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st30" cx="73.6" cy="141.9" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-577.45" y1="601.04" x2="-577.45" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st31" cx="73.6" cy="140.1" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-575.67" y1="601.04" x2="-575.67" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st32" cx="73.6" cy="138.3" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-573.88" y1="601.04" x2="-573.88" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st33" cx="73.6" cy="136.6" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-572.09" y1="601.04" x2="-572.09" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st34" cx="73.6" cy="134.8" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-570.3" y1="601.04" x2="-570.3" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st35" cx="73.6" cy="133" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-568.52" y1="601.04" x2="-568.52" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st36" cx="73.6" cy="131.2" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-566.73" y1="601.04" x2="-566.73" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st37" cx="73.6" cy="129.4" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-564.94" y1="601.04" x2="-564.94" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st38" cx="73.6" cy="127.6" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-563.16" y1="601.04" x2="-563.16" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st39" cx="73.6" cy="125.8" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-561.37" y1="601.04" x2="-561.37" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st40" cx="73.6" cy="124" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-559.58" y1="601.04" x2="-559.58" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st41" cx="73.6" cy="122.3" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-557.79" y1="601.04" x2="-557.79" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st42" cx="73.6" cy="120.5" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-556.01" y1="601.04" x2="-556.01" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st43" cx="73.6" cy="118.7" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-554.22" y1="601.04" x2="-554.22" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st44" cx="73.6" cy="116.9" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-552.43" y1="601.04" x2="-552.43" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st45" cx="73.6" cy="115.1" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-550.65" y1="601.04" x2="-550.65" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st46" cx="73.6" cy="113.3" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-548.86" y1="601.04" x2="-548.86" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st47" cx="73.6" cy="111.5" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-547.07" y1="601.04" x2="-547.07" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st48" cx="73.6" cy="109.7" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-545.28" y1="601.04" x2="-545.28" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st49" cx="73.6" cy="108" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-543.5" y1="601.04" x2="-543.5" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st50" cx="73.6" cy="106.2" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-541.71" y1="601.04" x2="-541.71" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st51" cx="73.6" cy="104.4" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-539.92" y1="601.04" x2="-539.92" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st52" cx="73.6" cy="102.6" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-538.13" y1="601.04" x2="-538.13" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st53" cx="73.6" cy="100.8" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-536.35" y1="601.04" x2="-536.35" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st54" cx="73.6" cy="99" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-534.56" y1="601.04" x2="-534.56" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st55" cx="73.6" cy="97.2" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-532.77" y1="601.04" x2="-532.77" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st56" cx="73.6" cy="95.4" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-530.99" y1="601.04" x2="-530.99" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st57" cx="73.6" cy="93.7" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-529.2" y1="601.04" x2="-529.2" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st58" cx="73.6" cy="91.9" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="-527.41" y1="601.04" x2="-527.41" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st59" cx="73.6" cy="90.1" rx="29.5" ry="44.9"/>
-
- <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-525.62" y1="601.04" x2="-525.62" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st60" cx="73.6" cy="88.3" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-523.84" y1="601.04" x2="-523.84" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st61" cx="73.6" cy="86.5" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="-522.05" y1="601.04" x2="-522.05" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st62" cx="73.6" cy="84.7" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-520.26" y1="601.04" x2="-520.26" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st63" cx="73.6" cy="82.9" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-518.48" y1="601.04" x2="-518.48" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st64" cx="73.6" cy="81.2" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="-516.69" y1="601.04" x2="-516.69" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st65" cx="73.6" cy="79.4" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="-514.9" y1="601.04" x2="-514.9" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st66" cx="73.6" cy="77.6" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="-513.11" y1="601.04" x2="-513.11" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st67" cx="73.6" cy="75.8" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="-511.33" y1="601.04" x2="-511.33" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st68" cx="73.6" cy="74" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="-509.54" y1="601.04" x2="-509.54" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st69" cx="73.6" cy="72.2" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="-507.75" y1="601.04" x2="-507.75" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st70" cx="73.6" cy="70.4" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-505.96" y1="601.04" x2="-505.96" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st71" cx="73.6" cy="68.6" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-504.18" y1="601.04" x2="-504.18" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st72" cx="73.6" cy="66.9" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-502.39" y1="601.04" x2="-502.39" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st73" cx="73.6" cy="65.1" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-500.6" y1="601.04" x2="-500.6" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st74" cx="73.6" cy="63.3" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-498.82" y1="601.04" x2="-498.82" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st75" cx="73.6" cy="61.5" rx="29.5" ry="44.8"/>
-
- <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-497.03" y1="601.04" x2="-497.03" y2="659.94" gradientTransform="matrix(0 -1 1 0 -556.87 -437.32)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st76" cx="73.6" cy="59.7" rx="29.5" ry="44.8"/>
- </g>
- </g>
- </g>
- <g id="图层_4">
- <g>
- <defs>
- <rect id="SVGID_79_" y="0" width="63" height="150"/>
- </defs>
- <clipPath id="SVGID_80_">
- <use xlink:href="#SVGID_79_" style="overflow:visible;"/>
- </clipPath>
- <g class="st77">
-
- <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-444.86" y1="214.65" x2="-444.86" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st78" cx="31.9" cy="0" r="31"/>
-
- <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-443.63" y1="214.65" x2="-443.63" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st79" cx="31.9" cy="1.2" r="31"/>
-
- <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-442.39" y1="214.65" x2="-442.39" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st80" cx="31.9" cy="2.5" r="31"/>
-
- <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-441.15" y1="214.65" x2="-441.15" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st81" cx="31.9" cy="3.7" r="31"/>
-
- <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-439.91" y1="214.65" x2="-439.91" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st82" cx="31.9" cy="4.9" r="31"/>
-
- <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-438.68" y1="214.65" x2="-438.68" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st83" cx="31.9" cy="6.2" r="31"/>
-
- <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-437.44" y1="214.65" x2="-437.44" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st84" cx="31.9" cy="7.4" r="31"/>
-
- <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-436.2" y1="214.65" x2="-436.2" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st85" cx="31.9" cy="8.7" r="31"/>
-
- <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-434.96" y1="214.65" x2="-434.96" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st86" cx="31.9" cy="9.9" r="31"/>
-
- <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-433.73" y1="214.65" x2="-433.73" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st87" cx="31.9" cy="11.1" r="31"/>
-
- <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-432.49" y1="214.65" x2="-432.49" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st88" cx="31.9" cy="12.4" r="31"/>
-
- <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="-431.25" y1="214.65" x2="-431.25" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st89" cx="31.9" cy="13.6" r="31"/>
-
- <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-430.01" y1="214.65" x2="-430.01" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st90" cx="31.9" cy="14.8" r="31"/>
-
- <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-428.78" y1="214.65" x2="-428.78" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st91" cx="31.9" cy="16.1" r="31"/>
-
- <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-427.54" y1="214.65" x2="-427.54" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st92" cx="31.9" cy="17.3" r="31"/>
-
- <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="-426.3" y1="214.65" x2="-426.3" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st93" cx="31.9" cy="18.6" r="31"/>
-
- <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="-425.06" y1="214.65" x2="-425.06" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st94" cx="31.9" cy="19.8" r="31"/>
-
- <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="-423.83" y1="214.65" x2="-423.83" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st95" cx="31.9" cy="21" r="31"/>
-
- <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="-422.59" y1="214.65" x2="-422.59" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st96" cx="31.9" cy="22.3" r="31"/>
-
- <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-421.35" y1="214.65" x2="-421.35" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st97" cx="31.9" cy="23.5" r="31"/>
-
- <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-420.11" y1="214.65" x2="-420.11" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st98" cx="31.9" cy="24.7" r="31"/>
-
- <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-418.88" y1="214.65" x2="-418.88" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st99" cx="31.9" cy="26" r="31"/>
-
- <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-417.64" y1="214.65" x2="-417.64" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st100" cx="31.9" cy="27.2" r="31"/>
-
- <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-416.4" y1="214.65" x2="-416.4" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st101" cx="31.9" cy="28.5" r="31"/>
-
- <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-415.16" y1="214.65" x2="-415.16" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st102" cx="31.9" cy="29.7" r="31"/>
-
- <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-413.93" y1="214.65" x2="-413.93" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st103" cx="31.9" cy="30.9" r="31"/>
-
- <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-412.69" y1="214.65" x2="-412.69" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st104" cx="31.9" cy="32.2" r="31"/>
-
- <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-411.45" y1="214.65" x2="-411.45" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st105" cx="31.9" cy="33.4" r="31"/>
-
- <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-410.21" y1="214.65" x2="-410.21" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st106" cx="31.9" cy="34.6" r="31"/>
-
- <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-408.98" y1="214.65" x2="-408.98" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st107" cx="31.9" cy="35.9" r="31"/>
-
- <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="-407.74" y1="214.65" x2="-407.74" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st108" cx="31.9" cy="37.1" r="31"/>
-
- <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="-406.5" y1="214.65" x2="-406.5" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st109" cx="31.9" cy="38.4" r="31"/>
-
- <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="-405.26" y1="214.65" x2="-405.26" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st110" cx="31.9" cy="39.6" r="31"/>
-
- <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="-404.03" y1="214.65" x2="-404.03" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st111" cx="31.9" cy="40.8" r="31"/>
-
- <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-402.79" y1="214.65" x2="-402.79" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st112" cx="31.9" cy="42.1" r="31"/>
-
- <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-401.55" y1="214.65" x2="-401.55" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st113" cx="31.9" cy="43.3" r="31"/>
-
- <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-400.31" y1="214.65" x2="-400.31" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st114" cx="31.9" cy="44.5" r="31"/>
-
- <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-399.07" y1="214.65" x2="-399.07" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st115" cx="31.9" cy="45.8" r="31"/>
-
- <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-397.84" y1="214.65" x2="-397.84" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st116" cx="31.9" cy="47" r="31"/>
-
- <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-396.6" y1="214.65" x2="-396.6" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st117" cx="31.9" cy="48.3" r="31"/>
-
- <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-395.36" y1="214.65" x2="-395.36" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st118" cx="31.9" cy="49.5" r="31"/>
-
- <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-394.12" y1="214.65" x2="-394.12" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st119" cx="31.9" cy="50.7" r="31"/>
-
- <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-392.89" y1="214.65" x2="-392.89" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st120" cx="31.9" cy="52" r="31"/>
-
- <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-391.65" y1="214.65" x2="-391.65" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st121" cx="31.9" cy="53.2" r="31"/>
-
- <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-390.41" y1="214.65" x2="-390.41" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st122" cx="31.9" cy="54.4" r="31"/>
-
- <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="-389.17" y1="214.65" x2="-389.17" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st123" cx="31.9" cy="55.7" r="31"/>
-
- <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="-387.94" y1="214.65" x2="-387.94" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st124" cx="31.9" cy="56.9" r="31"/>
-
- <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="-386.7" y1="214.65" x2="-386.7" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st125" cx="31.9" cy="58.2" r="31"/>
-
- <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="-385.46" y1="214.65" x2="-385.46" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st126" cx="31.9" cy="59.4" r="31"/>
-
- <linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="-384.22" y1="214.65" x2="-384.22" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st127" cx="31.9" cy="60.6" r="31"/>
-
- <linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="-382.99" y1="214.65" x2="-382.99" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st128" cx="31.9" cy="61.9" r="31"/>
-
- <linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="-381.75" y1="214.65" x2="-381.75" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st129" cx="31.9" cy="63.1" r="31"/>
-
- <linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="-380.51" y1="214.65" x2="-380.51" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st130" cx="31.9" cy="64.3" r="31"/>
-
- <linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="-379.27" y1="214.65" x2="-379.27" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st131" cx="31.9" cy="65.6" r="31"/>
-
- <linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="-378.04" y1="214.65" x2="-378.04" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st132" cx="31.9" cy="66.8" r="31"/>
-
- <linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="-376.8" y1="214.65" x2="-376.8" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st133" cx="31.9" cy="68.1" r="31"/>
-
- <linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="-375.56" y1="214.65" x2="-375.56" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st134" cx="31.9" cy="69.3" r="31"/>
-
- <linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="-374.32" y1="214.65" x2="-374.32" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st135" cx="31.9" cy="70.5" r="31"/>
-
- <linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="-373.09" y1="214.65" x2="-373.09" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st136" cx="31.9" cy="71.8" r="31"/>
-
- <linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="-371.85" y1="214.65" x2="-371.85" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st137" cx="31.9" cy="73" r="31"/>
-
- <linearGradient id="SVGID_141_" gradientUnits="userSpaceOnUse" x1="-370.61" y1="214.65" x2="-370.61" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st138" cx="31.9" cy="74.2" r="31"/>
-
- <linearGradient id="SVGID_142_" gradientUnits="userSpaceOnUse" x1="-369.37" y1="214.65" x2="-369.37" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st139" cx="31.9" cy="75.5" r="31"/>
-
- <linearGradient id="SVGID_143_" gradientUnits="userSpaceOnUse" x1="-368.14" y1="214.65" x2="-368.14" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st140" cx="31.9" cy="76.7" r="31"/>
-
- <linearGradient id="SVGID_144_" gradientUnits="userSpaceOnUse" x1="-366.9" y1="214.65" x2="-366.9" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st141" cx="31.9" cy="78" r="31"/>
-
- <linearGradient id="SVGID_145_" gradientUnits="userSpaceOnUse" x1="-365.66" y1="214.65" x2="-365.66" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st142" cx="31.9" cy="79.2" r="31"/>
-
- <linearGradient id="SVGID_146_" gradientUnits="userSpaceOnUse" x1="-364.42" y1="214.65" x2="-364.42" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st143" cx="31.9" cy="80.4" r="31"/>
-
- <linearGradient id="SVGID_147_" gradientUnits="userSpaceOnUse" x1="-363.19" y1="214.65" x2="-363.19" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st144" cx="31.9" cy="81.7" r="31"/>
-
- <linearGradient id="SVGID_148_" gradientUnits="userSpaceOnUse" x1="-361.95" y1="214.65" x2="-361.95" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st145" cx="31.9" cy="82.9" r="31"/>
-
- <linearGradient id="SVGID_149_" gradientUnits="userSpaceOnUse" x1="-360.71" y1="214.65" x2="-360.71" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st146" cx="31.9" cy="84.1" r="31"/>
-
- <linearGradient id="SVGID_150_" gradientUnits="userSpaceOnUse" x1="-359.47" y1="214.65" x2="-359.47" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st147" cx="31.9" cy="85.4" r="31"/>
-
- <linearGradient id="SVGID_151_" gradientUnits="userSpaceOnUse" x1="-358.24" y1="214.65" x2="-358.24" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st148" cx="31.9" cy="86.6" r="31"/>
-
- <linearGradient id="SVGID_152_" gradientUnits="userSpaceOnUse" x1="-357" y1="214.65" x2="-357" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st149" cx="31.9" cy="87.9" r="31"/>
-
- <linearGradient id="SVGID_153_" gradientUnits="userSpaceOnUse" x1="-355.76" y1="214.65" x2="-355.76" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st150" cx="31.9" cy="89.1" r="31"/>
-
- <linearGradient id="SVGID_154_" gradientUnits="userSpaceOnUse" x1="-354.52" y1="214.65" x2="-354.52" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st151" cx="31.9" cy="90.3" r="31"/>
-
- <linearGradient id="SVGID_155_" gradientUnits="userSpaceOnUse" x1="-353.29" y1="214.65" x2="-353.29" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st152" cx="31.9" cy="91.6" r="31"/>
-
- <linearGradient id="SVGID_156_" gradientUnits="userSpaceOnUse" x1="-352.05" y1="214.65" x2="-352.05" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st153" cx="31.9" cy="92.8" r="31"/>
-
- <linearGradient id="SVGID_157_" gradientUnits="userSpaceOnUse" x1="-350.81" y1="214.65" x2="-350.81" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st154" cx="31.9" cy="94" r="31"/>
-
- <linearGradient id="SVGID_158_" gradientUnits="userSpaceOnUse" x1="-349.57" y1="214.65" x2="-349.57" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st155" cx="31.9" cy="95.3" r="31"/>
-
- <linearGradient id="SVGID_159_" gradientUnits="userSpaceOnUse" x1="-348.34" y1="214.65" x2="-348.34" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st156" cx="31.9" cy="96.5" r="31"/>
-
- <linearGradient id="SVGID_160_" gradientUnits="userSpaceOnUse" x1="-347.1" y1="214.65" x2="-347.1" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st157" cx="31.9" cy="97.8" r="31"/>
-
- <linearGradient id="SVGID_161_" gradientUnits="userSpaceOnUse" x1="-345.86" y1="214.65" x2="-345.86" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st158" cx="31.9" cy="99" r="31.1"/>
-
- <linearGradient id="SVGID_162_" gradientUnits="userSpaceOnUse" x1="-344.62" y1="214.65" x2="-344.62" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st159" cx="31.9" cy="100.2" r="31"/>
-
- <linearGradient id="SVGID_163_" gradientUnits="userSpaceOnUse" x1="-343.39" y1="214.65" x2="-343.39" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st160" cx="31.9" cy="101.5" r="31.1"/>
-
- <linearGradient id="SVGID_164_" gradientUnits="userSpaceOnUse" x1="-342.15" y1="214.65" x2="-342.15" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st161" cx="31.9" cy="102.7" r="31"/>
-
- <linearGradient id="SVGID_165_" gradientUnits="userSpaceOnUse" x1="-340.91" y1="214.65" x2="-340.91" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st162" cx="31.9" cy="103.9" r="31.1"/>
-
- <linearGradient id="SVGID_166_" gradientUnits="userSpaceOnUse" x1="-339.67" y1="214.65" x2="-339.67" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st163" cx="31.9" cy="105.2" r="31.1"/>
-
- <linearGradient id="SVGID_167_" gradientUnits="userSpaceOnUse" x1="-338.44" y1="214.65" x2="-338.44" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st164" cx="31.9" cy="106.4" r="31.1"/>
-
- <linearGradient id="SVGID_168_" gradientUnits="userSpaceOnUse" x1="-337.2" y1="214.65" x2="-337.2" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st165" cx="31.9" cy="107.7" r="31.1"/>
-
- <linearGradient id="SVGID_169_" gradientUnits="userSpaceOnUse" x1="-335.96" y1="214.65" x2="-335.96" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st166" cx="31.9" cy="108.9" r="31"/>
-
- <linearGradient id="SVGID_170_" gradientUnits="userSpaceOnUse" x1="-334.72" y1="214.65" x2="-334.72" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st167" cx="31.9" cy="110.1" r="31.1"/>
-
- <linearGradient id="SVGID_171_" gradientUnits="userSpaceOnUse" x1="-333.49" y1="214.65" x2="-333.49" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st168" cx="31.9" cy="111.4" r="31"/>
-
- <linearGradient id="SVGID_172_" gradientUnits="userSpaceOnUse" x1="-332.25" y1="214.65" x2="-332.25" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st169" cx="31.9" cy="112.6" r="31.1"/>
-
- <linearGradient id="SVGID_173_" gradientUnits="userSpaceOnUse" x1="-331.01" y1="214.65" x2="-331.01" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st170" cx="31.9" cy="113.8" r="31"/>
-
- <linearGradient id="SVGID_174_" gradientUnits="userSpaceOnUse" x1="-329.77" y1="214.65" x2="-329.77" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st171" cx="31.9" cy="115.1" r="31.1"/>
-
- <linearGradient id="SVGID_175_" gradientUnits="userSpaceOnUse" x1="-328.54" y1="214.65" x2="-328.54" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st172" cx="31.9" cy="116.3" r="31"/>
-
- <linearGradient id="SVGID_176_" gradientUnits="userSpaceOnUse" x1="-327.3" y1="214.65" x2="-327.3" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st173" cx="31.9" cy="117.6" r="31.1"/>
-
- <linearGradient id="SVGID_177_" gradientUnits="userSpaceOnUse" x1="-326.06" y1="214.65" x2="-326.06" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st174" cx="31.9" cy="118.8" r="31.1"/>
-
- <linearGradient id="SVGID_178_" gradientUnits="userSpaceOnUse" x1="-324.82" y1="214.65" x2="-324.82" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st175" cx="31.9" cy="120" r="31"/>
-
- <linearGradient id="SVGID_179_" gradientUnits="userSpaceOnUse" x1="-323.59" y1="214.65" x2="-323.59" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st176" cx="31.9" cy="121.3" r="31"/>
-
- <linearGradient id="SVGID_180_" gradientUnits="userSpaceOnUse" x1="-322.35" y1="214.65" x2="-322.35" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st177" cx="31.9" cy="122.5" r="31"/>
-
- <linearGradient id="SVGID_181_" gradientUnits="userSpaceOnUse" x1="-321.11" y1="214.65" x2="-321.11" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st178" cx="31.9" cy="123.7" r="31.1"/>
-
- <linearGradient id="SVGID_182_" gradientUnits="userSpaceOnUse" x1="-319.87" y1="214.65" x2="-319.87" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st179" cx="31.9" cy="125" r="31"/>
-
- <linearGradient id="SVGID_183_" gradientUnits="userSpaceOnUse" x1="-318.64" y1="214.65" x2="-318.64" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st180" cx="31.9" cy="126.2" r="31.1"/>
-
- <linearGradient id="SVGID_184_" gradientUnits="userSpaceOnUse" x1="-317.4" y1="214.65" x2="-317.4" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st181" cx="31.9" cy="127.5" r="31"/>
-
- <linearGradient id="SVGID_185_" gradientUnits="userSpaceOnUse" x1="-316.16" y1="214.65" x2="-316.16" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st182" cx="31.9" cy="128.7" r="31.1"/>
-
- <linearGradient id="SVGID_186_" gradientUnits="userSpaceOnUse" x1="-314.92" y1="214.65" x2="-314.92" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st183" cx="31.9" cy="129.9" r="31.1"/>
-
- <linearGradient id="SVGID_187_" gradientUnits="userSpaceOnUse" x1="-313.68" y1="214.65" x2="-313.68" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st184" cx="31.9" cy="131.2" r="31.1"/>
-
- <linearGradient id="SVGID_188_" gradientUnits="userSpaceOnUse" x1="-312.45" y1="214.65" x2="-312.45" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st185" cx="31.9" cy="132.4" r="31.1"/>
-
- <linearGradient id="SVGID_189_" gradientUnits="userSpaceOnUse" x1="-311.21" y1="214.65" x2="-311.21" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st186" cx="31.9" cy="133.6" r="31.1"/>
-
- <linearGradient id="SVGID_190_" gradientUnits="userSpaceOnUse" x1="-309.97" y1="214.65" x2="-309.97" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st187" cx="31.9" cy="134.9" r="31.1"/>
-
- <linearGradient id="SVGID_191_" gradientUnits="userSpaceOnUse" x1="-308.73" y1="214.65" x2="-308.73" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st188" cx="31.9" cy="136.1" r="31.1"/>
-
- <linearGradient id="SVGID_192_" gradientUnits="userSpaceOnUse" x1="-307.5" y1="214.65" x2="-307.5" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st189" cx="31.9" cy="137.4" r="31.1"/>
-
- <linearGradient id="SVGID_193_" gradientUnits="userSpaceOnUse" x1="-306.26" y1="214.65" x2="-306.26" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st190" cx="31.9" cy="138.6" r="31.1"/>
-
- <linearGradient id="SVGID_194_" gradientUnits="userSpaceOnUse" x1="-305.02" y1="214.65" x2="-305.02" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st191" cx="31.9" cy="139.8" r="31.1"/>
-
- <linearGradient id="SVGID_195_" gradientUnits="userSpaceOnUse" x1="-303.78" y1="214.65" x2="-303.78" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st192" cx="31.9" cy="141.1" r="31.1"/>
-
- <linearGradient id="SVGID_196_" gradientUnits="userSpaceOnUse" x1="-302.55" y1="214.65" x2="-302.55" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st193" cx="31.9" cy="142.3" r="31.1"/>
-
- <linearGradient id="SVGID_197_" gradientUnits="userSpaceOnUse" x1="-301.31" y1="214.65" x2="-301.31" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st194" cx="31.9" cy="143.5" r="31.1"/>
-
- <linearGradient id="SVGID_198_" gradientUnits="userSpaceOnUse" x1="-300.07" y1="214.65" x2="-300.07" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st195" cx="31.9" cy="144.8" r="31.1"/>
-
- <linearGradient id="SVGID_199_" gradientUnits="userSpaceOnUse" x1="-298.83" y1="214.65" x2="-298.83" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st196" cx="31.9" cy="146" r="31.1"/>
-
- <linearGradient id="SVGID_200_" gradientUnits="userSpaceOnUse" x1="-297.6" y1="214.65" x2="-297.6" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st197" cx="31.9" cy="147.3" r="31.1"/>
-
- <linearGradient id="SVGID_201_" gradientUnits="userSpaceOnUse" x1="-296.36" y1="214.65" x2="-296.36" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st198" cx="31.9" cy="148.5" r="31.1"/>
-
- <linearGradient id="SVGID_202_" gradientUnits="userSpaceOnUse" x1="-295.12" y1="214.65" x2="-295.12" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st199" cx="31.9" cy="149.7" r="31.1"/>
-
- <linearGradient id="SVGID_203_" gradientUnits="userSpaceOnUse" x1="-293.88" y1="214.65" x2="-293.88" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st200" cx="31.9" cy="151" r="31.1"/>
-
- <linearGradient id="SVGID_204_" gradientUnits="userSpaceOnUse" x1="-292.65" y1="214.65" x2="-292.65" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st201" cx="31.9" cy="152.2" r="31.1"/>
-
- <linearGradient id="SVGID_205_" gradientUnits="userSpaceOnUse" x1="-291.41" y1="214.65" x2="-291.41" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st202" cx="31.9" cy="153.4" r="31.1"/>
-
- <linearGradient id="SVGID_206_" gradientUnits="userSpaceOnUse" x1="-290.17" y1="214.65" x2="-290.17" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st203" cx="31.9" cy="154.7" r="31.1"/>
-
- <linearGradient id="SVGID_207_" gradientUnits="userSpaceOnUse" x1="-288.93" y1="214.65" x2="-288.93" y2="276.75" gradientTransform="matrix(0 1 -1 0 277.6 444.86)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st204" cx="31.9" cy="155.9" r="31.1"/>
- </g>
- </g>
- <g>
- <defs>
- <polygon id="SVGID_208_" points="150,45 150,112.2 63.1,112.2 26,78.9 63.1,45 "/>
- </defs>
- <clipPath id="SVGID_209_">
- <use xlink:href="#SVGID_208_" style="overflow:visible;"/>
- </clipPath>
- <g class="st205">
-
- <linearGradient id="SVGID_210_" gradientUnits="userSpaceOnUse" x1="-107.07" y1="171.58" x2="-107.07" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st206" cx="68.9" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_211_" gradientUnits="userSpaceOnUse" x1="-105.36" y1="171.58" x2="-105.36" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st207" cx="70.6" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_212_" gradientUnits="userSpaceOnUse" x1="-103.66" y1="171.58" x2="-103.66" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st208" cx="72.3" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_213_" gradientUnits="userSpaceOnUse" x1="-101.95" y1="171.58" x2="-101.95" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st209" cx="74" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_214_" gradientUnits="userSpaceOnUse" x1="-100.24" y1="171.58" x2="-100.24" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st210" cx="75.7" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_215_" gradientUnits="userSpaceOnUse" x1="-98.53" y1="171.58" x2="-98.53" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st211" cx="77.4" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_216_" gradientUnits="userSpaceOnUse" x1="-96.83" y1="171.58" x2="-96.83" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st212" cx="79.1" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_217_" gradientUnits="userSpaceOnUse" x1="-95.12" y1="171.58" x2="-95.12" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st213" cx="80.8" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_218_" gradientUnits="userSpaceOnUse" x1="-93.41" y1="171.58" x2="-93.41" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st214" cx="82.6" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_219_" gradientUnits="userSpaceOnUse" x1="-91.7" y1="171.58" x2="-91.7" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st215" cx="84.3" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_220_" gradientUnits="userSpaceOnUse" x1="-90" y1="171.58" x2="-90" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st216" cx="86" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_221_" gradientUnits="userSpaceOnUse" x1="-88.29" y1="171.58" x2="-88.29" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st217" cx="87.7" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_222_" gradientUnits="userSpaceOnUse" x1="-86.58" y1="171.58" x2="-86.58" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st218" cx="89.4" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_223_" gradientUnits="userSpaceOnUse" x1="-84.87" y1="171.58" x2="-84.87" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st219" cx="91.1" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_224_" gradientUnits="userSpaceOnUse" x1="-83.17" y1="171.58" x2="-83.17" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st220" cx="92.8" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_225_" gradientUnits="userSpaceOnUse" x1="-81.46" y1="171.58" x2="-81.46" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st221" cx="94.5" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_226_" gradientUnits="userSpaceOnUse" x1="-79.75" y1="171.58" x2="-79.75" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st222" cx="96.2" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_227_" gradientUnits="userSpaceOnUse" x1="-78.04" y1="171.58" x2="-78.04" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st223" cx="97.9" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_228_" gradientUnits="userSpaceOnUse" x1="-76.34" y1="171.58" x2="-76.34" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st224" cx="99.6" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_229_" gradientUnits="userSpaceOnUse" x1="-74.63" y1="171.58" x2="-74.63" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st225" cx="101.3" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_230_" gradientUnits="userSpaceOnUse" x1="-72.92" y1="171.58" x2="-72.92" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st226" cx="103" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_231_" gradientUnits="userSpaceOnUse" x1="-71.21" y1="171.58" x2="-71.21" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st227" cx="104.8" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_232_" gradientUnits="userSpaceOnUse" x1="-69.51" y1="171.58" x2="-69.51" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st228" cx="106.4" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_233_" gradientUnits="userSpaceOnUse" x1="-67.8" y1="171.58" x2="-67.8" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st229" cx="108.2" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_234_" gradientUnits="userSpaceOnUse" x1="-66.09" y1="171.58" x2="-66.09" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st230" cx="109.9" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_235_" gradientUnits="userSpaceOnUse" x1="-64.38" y1="171.58" x2="-64.38" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st231" cx="111.6" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_236_" gradientUnits="userSpaceOnUse" x1="-62.68" y1="171.58" x2="-62.68" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st232" cx="113.3" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_237_" gradientUnits="userSpaceOnUse" x1="-60.97" y1="171.58" x2="-60.97" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st233" cx="115" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_238_" gradientUnits="userSpaceOnUse" x1="-59.26" y1="171.58" x2="-59.26" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st234" cx="116.7" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_239_" gradientUnits="userSpaceOnUse" x1="-57.55" y1="171.58" x2="-57.55" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st235" cx="118.4" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_240_" gradientUnits="userSpaceOnUse" x1="-55.85" y1="171.58" x2="-55.85" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st236" cx="120.1" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_241_" gradientUnits="userSpaceOnUse" x1="-54.14" y1="171.58" x2="-54.14" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st237" cx="121.8" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_242_" gradientUnits="userSpaceOnUse" x1="-52.43" y1="171.58" x2="-52.43" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st238" cx="123.5" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_243_" gradientUnits="userSpaceOnUse" x1="-50.72" y1="171.58" x2="-50.72" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st239" cx="125.2" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_244_" gradientUnits="userSpaceOnUse" x1="-49.02" y1="171.58" x2="-49.02" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st240" cx="126.9" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_245_" gradientUnits="userSpaceOnUse" x1="-47.31" y1="171.58" x2="-47.31" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st241" cx="128.6" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_246_" gradientUnits="userSpaceOnUse" x1="-45.6" y1="171.58" x2="-45.6" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st242" cx="130.4" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_247_" gradientUnits="userSpaceOnUse" x1="-43.89" y1="171.58" x2="-43.89" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st243" cx="132.1" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_248_" gradientUnits="userSpaceOnUse" x1="-42.19" y1="171.58" x2="-42.19" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st244" cx="133.8" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_249_" gradientUnits="userSpaceOnUse" x1="-40.48" y1="171.58" x2="-40.48" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st245" cx="135.5" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_250_" gradientUnits="userSpaceOnUse" x1="-38.77" y1="171.58" x2="-38.77" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st246" cx="137.2" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_251_" gradientUnits="userSpaceOnUse" x1="-37.06" y1="171.58" x2="-37.06" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st247" cx="138.9" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_252_" gradientUnits="userSpaceOnUse" x1="-35.36" y1="171.58" x2="-35.36" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st248" cx="140.6" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_253_" gradientUnits="userSpaceOnUse" x1="-33.65" y1="171.58" x2="-33.65" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st249" cx="142.3" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_254_" gradientUnits="userSpaceOnUse" x1="-31.94" y1="171.58" x2="-31.94" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st250" cx="144" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_255_" gradientUnits="userSpaceOnUse" x1="-30.23" y1="171.58" x2="-30.23" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st251" cx="145.7" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_256_" gradientUnits="userSpaceOnUse" x1="-28.53" y1="171.58" x2="-28.53" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st252" cx="147.4" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_257_" gradientUnits="userSpaceOnUse" x1="-26.82" y1="171.58" x2="-26.82" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st253" cx="149.1" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_258_" gradientUnits="userSpaceOnUse" x1="-25.11" y1="171.58" x2="-25.11" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st254" cx="150.9" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_259_" gradientUnits="userSpaceOnUse" x1="-23.4" y1="171.58" x2="-23.4" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st255" cx="152.6" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_260_" gradientUnits="userSpaceOnUse" x1="-21.7" y1="171.58" x2="-21.7" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st256" cx="154.3" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_261_" gradientUnits="userSpaceOnUse" x1="-19.99" y1="171.58" x2="-19.99" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st257" cx="156" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_262_" gradientUnits="userSpaceOnUse" x1="-18.28" y1="171.58" x2="-18.28" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st258" cx="157.7" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_263_" gradientUnits="userSpaceOnUse" x1="-16.57" y1="171.58" x2="-16.57" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st259" cx="159.4" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_264_" gradientUnits="userSpaceOnUse" x1="-14.87" y1="171.58" x2="-14.87" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st260" cx="161.1" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_265_" gradientUnits="userSpaceOnUse" x1="-13.16" y1="171.58" x2="-13.16" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st261" cx="162.8" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_266_" gradientUnits="userSpaceOnUse" x1="-11.45" y1="171.58" x2="-11.45" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st262" cx="164.5" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_267_" gradientUnits="userSpaceOnUse" x1="-9.74" y1="171.58" x2="-9.74" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st263" cx="166.2" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_268_" gradientUnits="userSpaceOnUse" x1="-8.04" y1="171.58" x2="-8.04" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st264" cx="167.9" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_269_" gradientUnits="userSpaceOnUse" x1="-6.33" y1="171.58" x2="-6.33" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st265" cx="169.6" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_270_" gradientUnits="userSpaceOnUse" x1="-4.62" y1="171.58" x2="-4.62" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st266" cx="171.3" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_271_" gradientUnits="userSpaceOnUse" x1="-2.91" y1="171.58" x2="-2.91" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st267" cx="173.1" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_272_" gradientUnits="userSpaceOnUse" x1="-1.21" y1="171.58" x2="-1.21" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st268" cx="174.8" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_273_" gradientUnits="userSpaceOnUse" x1="0.5" y1="171.58" x2="0.5" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st269" cx="176.5" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_274_" gradientUnits="userSpaceOnUse" x1="2.21" y1="171.58" x2="2.21" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st270" cx="178.2" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_275_" gradientUnits="userSpaceOnUse" x1="3.92" y1="171.58" x2="3.92" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st271" cx="179.9" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_276_" gradientUnits="userSpaceOnUse" x1="5.62" y1="171.58" x2="5.62" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st272" cx="181.6" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_277_" gradientUnits="userSpaceOnUse" x1="7.33" y1="171.58" x2="7.33" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st273" cx="183.3" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_278_" gradientUnits="userSpaceOnUse" x1="9.04" y1="171.58" x2="9.04" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st274" cx="185" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_279_" gradientUnits="userSpaceOnUse" x1="10.75" y1="171.58" x2="10.75" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st275" cx="186.7" cy="78.6" rx="42.8" ry="33.2"/>
-
- <linearGradient id="SVGID_280_" gradientUnits="userSpaceOnUse" x1="12.45" y1="171.58" x2="12.45" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st276" cx="188.4" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_281_" gradientUnits="userSpaceOnUse" x1="14.16" y1="171.58" x2="14.16" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st277" cx="190.1" cy="78.6" rx="42.9" ry="33.2"/>
-
- <linearGradient id="SVGID_282_" gradientUnits="userSpaceOnUse" x1="15.87" y1="171.58" x2="15.87" y2="237.9" gradientTransform="matrix(1 0 0 -1 175.96 283.38)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <ellipse class="st278" cx="191.8" cy="78.6" rx="42.8" ry="33.2"/>
- </g>
- </g>
- </g>
- </svg>
|