123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979 |
- <?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{fill:url(#SVGID_79_);}
- .st78{fill:url(#SVGID_80_);}
- .st79{fill:url(#SVGID_81_);}
- .st80{fill:url(#SVGID_82_);}
- .st81{fill:url(#SVGID_83_);}
- .st82{fill:url(#SVGID_84_);}
- .st83{fill:url(#SVGID_85_);}
- .st84{fill:url(#SVGID_86_);}
- .st85{fill:url(#SVGID_87_);}
- .st86{fill:url(#SVGID_88_);}
- .st87{fill:url(#SVGID_89_);}
- .st88{fill:url(#SVGID_90_);}
- .st89{fill:url(#SVGID_91_);}
- .st90{fill:url(#SVGID_92_);}
- .st91{fill:url(#SVGID_93_);}
- .st92{fill:url(#SVGID_94_);}
- .st93{fill:url(#SVGID_95_);}
- .st94{fill:url(#SVGID_96_);}
- .st95{fill:url(#SVGID_97_);}
- .st96{fill:url(#SVGID_98_);}
- .st97{fill:url(#SVGID_99_);}
- .st98{fill:url(#SVGID_100_);}
- .st99{clip-path:url(#SVGID_102_);}
- .st100{clip-path:url(#SVGID_104_);}
- .st101{fill:url(#SVGID_105_);}
- .st102{fill:url(#SVGID_106_);}
- .st103{fill:url(#SVGID_107_);}
- .st104{fill:url(#SVGID_108_);}
- .st105{fill:url(#SVGID_109_);}
- .st106{fill:url(#SVGID_110_);}
- .st107{fill:url(#SVGID_111_);}
- .st108{fill:url(#SVGID_112_);}
- .st109{fill:url(#SVGID_113_);}
- .st110{fill:url(#SVGID_114_);}
- .st111{fill:url(#SVGID_115_);}
- .st112{fill:url(#SVGID_116_);}
- .st113{fill:url(#SVGID_117_);}
- .st114{fill:url(#SVGID_118_);}
- .st115{fill:url(#SVGID_119_);}
- .st116{fill:url(#SVGID_120_);}
- .st117{fill:url(#SVGID_121_);}
- .st118{fill:url(#SVGID_122_);}
- .st119{fill:url(#SVGID_123_);}
- .st120{fill:url(#SVGID_124_);}
- .st121{fill:url(#SVGID_125_);}
- .st122{fill:url(#SVGID_126_);}
- .st123{fill:url(#SVGID_127_);}
- .st124{fill:url(#SVGID_128_);}
- .st125{fill:url(#SVGID_129_);}
- .st126{fill:url(#SVGID_130_);}
- .st127{fill:url(#SVGID_131_);}
- .st128{fill:url(#SVGID_132_);}
- .st129{fill:url(#SVGID_133_);}
- .st130{fill:url(#SVGID_134_);}
- .st131{fill:url(#SVGID_135_);}
- .st132{fill:url(#SVGID_136_);}
- .st133{fill:url(#SVGID_137_);}
- .st134{fill:url(#SVGID_138_);}
- .st135{fill:url(#SVGID_139_);}
- .st136{fill:url(#SVGID_140_);}
- .st137{fill:url(#SVGID_141_);}
- .st138{fill:url(#SVGID_142_);}
- .st139{fill:url(#SVGID_143_);}
- .st140{fill:url(#SVGID_144_);}
- .st141{fill:url(#SVGID_145_);}
- .st142{fill:url(#SVGID_146_);}
- .st143{fill:url(#SVGID_147_);}
- .st144{fill:url(#SVGID_148_);}
- .st145{fill:url(#SVGID_149_);}
- .st146{fill:url(#SVGID_150_);}
- .st147{fill:url(#SVGID_151_);}
- .st148{fill:url(#SVGID_152_);}
- .st149{fill:url(#SVGID_153_);}
- .st150{fill:url(#SVGID_154_);}
- .st151{fill:url(#SVGID_155_);}
- .st152{fill:url(#SVGID_156_);}
- .st153{fill:url(#SVGID_157_);}
- .st154{fill:url(#SVGID_158_);}
- .st155{fill:url(#SVGID_159_);}
- .st156{fill:url(#SVGID_160_);}
- .st157{fill:url(#SVGID_161_);}
- .st158{fill:url(#SVGID_162_);}
- .st159{fill:url(#SVGID_163_);}
- .st160{fill:url(#SVGID_164_);}
- .st161{fill:url(#SVGID_165_);}
- .st162{fill:url(#SVGID_166_);}
- .st163{fill:url(#SVGID_167_);}
- .st164{fill:url(#SVGID_168_);}
- .st165{fill:url(#SVGID_169_);}
- </style>
- <title>iot-管道(21)</title>
- <g id="图层_2">
- <g>
- <defs>
- <rect id="SVGID_1_" y="0" width="150" height="150"/>
- </defs>
- <clipPath id="SVGID_2_">
- <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
- </clipPath>
- <g class="st0">
-
- <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="665.64" y1="1132.54" x2="665.64" y2="1224.46" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -1075.1899 -671.3)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st1" cx="103.3" cy="-5.7" r="46"/>
-
- <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="661.6201" y1="1131.4401" x2="661.6201" y2="1223.36" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -1074.09 -665.53)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st2" cx="103.3" cy="-3.9" r="46"/>
-
- <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="657.6" y1="1130.35" x2="657.6" y2="1222.27" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -1073 -659.76)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st3" cx="103.3" cy="-2.2" r="46"/>
-
- <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="652.8182" y1="1130.4148" x2="652.8182" y2="1222.3347" gradientTransform="matrix(-3.316162e-003 1 1 3.316162e-003 -1070.8934 -657.1157)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st4" cx="103.3" cy="-0.4" r="46"/>
-
- <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="644.9796" y1="1135.1355" x2="644.9796" y2="1227.0558" gradientTransform="matrix(-2.041890e-002 0.9998 0.9998 2.041890e-002 -1064.3896 -667.5218)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st5" cx="103.3" cy="1.4" r="46"/>
-
- <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="636.9139" y1="1139.9324" x2="636.9139" y2="1231.8536" gradientTransform="matrix(-3.769025e-002 0.9993 0.9993 3.769025e-002 -1057.8149 -677.8879)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st6" cx="103.2" cy="3.3" r="46"/>
-
- <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="628.7593" y1="1144.6678" x2="628.7593" y2="1236.5903" gradientTransform="matrix(-5.495021e-002 0.9985 0.9985 5.495021e-002 -1051.1298 -688.1347)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st7" cx="103.2" cy="5.1" r="46"/>
-
- <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="620.6076" y1="1149.1881" x2="620.6076" y2="1241.1122" gradientTransform="matrix(-7.201964e-002 0.9974 0.9974 7.201964e-002 -1044.3207 -698.1603)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st8" cx="103" cy="6.9" r="46"/>
-
- <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="608.5973" y1="1152.8561" x2="608.5973" y2="1244.776" gradientTransform="matrix(-9.000000e-002 1 1 9.000000e-002 -1039.59 -707.6301)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st9" cx="102.9" cy="8.7" r="46"/>
-
- <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="603.8735" y1="1158.187" x2="603.8735" y2="1250.1146" gradientTransform="matrix(-0.1063 0.9943 0.9943 0.1063 -1030.4529 -717.9023)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st10" cx="102.7" cy="10.5" r="46"/>
-
- <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="595.4119" y1="1162.5189" x2="595.4119" y2="1254.4485" gradientTransform="matrix(-0.1233 0.9924 0.9924 0.1233 -1023.3715 -727.5237)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st11" cx="102.5" cy="12.3" r="46"/>
-
- <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="586.8618" y1="1166.7659" x2="586.8618" y2="1258.6974" gradientTransform="matrix(-0.1402 0.9901 0.9901 0.1402 -1016.1981 -737.0217)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st12" cx="102.3" cy="14.1" r="46"/>
-
- <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="578.1973" y1="1170.9595" x2="578.1973" y2="1262.8931" gradientTransform="matrix(-0.1571 0.9876 0.9876 0.1571 -1008.962 -746.3737)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st13" cx="102" cy="15.8" r="46"/>
-
- <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="569.4407" y1="1175.0773" x2="569.4407" y2="1267.0127" gradientTransform="matrix(-0.174 0.9847 0.9847 0.174 -1001.6324 -755.597)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st14" cx="101.7" cy="17.6" r="46"/>
-
- <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="562.315" y1="1179.455" x2="562.315" y2="1271.375" gradientTransform="matrix(-0.19 0.98 0.98 0.19 -993.2622 -764.6491)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st15" cx="101.4" cy="19.4" r="46"/>
-
- <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="551.7587" y1="1182.9772" x2="551.7587" y2="1274.9159" gradientTransform="matrix(-0.2074 0.9783 0.9783 0.2074 -986.7603 -773.5444)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st16" cx="101" cy="21.1" r="46"/>
-
- <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="542.8218" y1="1186.7588" x2="542.8218" y2="1278.6991" gradientTransform="matrix(-0.2239 0.9746 0.9746 0.2239 -979.2195 -782.2626)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st17" cx="100.7" cy="22.8" r="46"/>
-
- <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="533.681" y1="1190.5927" x2="533.681" y2="1282.5343" gradientTransform="matrix(-0.2406 0.9706 0.9706 0.2406 -971.6228 -790.9443)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st18" cx="100.2" cy="24.5" r="46"/>
-
- <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="519.926" y1="1193.4968" x2="519.926" y2="1285.4167" gradientTransform="matrix(-0.26 0.97 0.97 0.26 -966.4133 -800.1014)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st19" cx="99.8" cy="26.2" r="46"/>
-
- <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="515.3461" y1="1197.7854" x2="515.3461" y2="1289.729" gradientTransform="matrix(-0.2733 0.9619 0.9619 0.2733 -956.2425 -807.6917)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st20" cx="99.3" cy="27.9" r="46"/>
-
- <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="506.1919" y1="1201.1506" x2="506.1919" y2="1293.0948" gradientTransform="matrix(-0.2894 0.9572 0.9572 0.2894 -948.4543 -815.7812)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st21" cx="98.8" cy="29.6" r="46"/>
-
- <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="496.7939" y1="1204.5653" x2="496.7939" y2="1296.5101" gradientTransform="matrix(-0.3055 0.9522 0.9522 0.3055 -940.6354 -823.8143)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st22" cx="98.3" cy="31.3" r="46"/>
-
- <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="487.4431" y1="1207.7802" x2="487.4431" y2="1299.7252" gradientTransform="matrix(-0.3214 0.9469 0.9469 0.3214 -932.7628 -831.6202)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st23" cx="97.8" cy="33" r="46"/>
-
- <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="478.0044" y1="1210.9269" x2="478.0044" y2="1302.8719" gradientTransform="matrix(-0.3373 0.9414 0.9414 0.3373 -924.8483 -839.3002)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st24" cx="97.2" cy="34.6" r="46"/>
-
- <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="469.6833" y1="1211.9506" x2="469.6833" y2="1303.8706" gradientTransform="matrix(-0.35 0.94 0.94 0.35 -918.3866 -844.3915)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st25" cx="96.6" cy="36.2" r="46"/>
-
- <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="458.8899" y1="1216.9749" x2="458.8899" y2="1308.9193" gradientTransform="matrix(-0.3686 0.9296 0.9296 0.3686 -908.8929 -854.2531)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st26" cx="96" cy="37.9" r="46"/>
-
- <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="454.3084" y1="1220.8173" x2="454.3084" y2="1312.7373" gradientTransform="matrix(-0.38 0.92 0.92 0.38 -898.3088 -860.2082)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st27" cx="95.3" cy="39.5" r="46"/>
-
- <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="439.5803" y1="1222.5867" x2="439.5803" y2="1314.53" gradientTransform="matrix(-0.3994 0.9168 0.9168 0.3994 -892.7872 -868.5776)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st28" cx="94.6" cy="41.1" r="46"/>
-
- <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="429.8799" y1="1225.2161" x2="429.8799" y2="1317.1584" gradientTransform="matrix(-0.4145 0.91 0.91 0.4145 -884.6932 -875.506)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st29" cx="93.9" cy="42.6" r="46"/>
-
- <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="420.099" y1="1227.7554" x2="420.099" y2="1319.6969" gradientTransform="matrix(-0.4296 0.903 0.903 0.4296 -876.5599 -882.3035)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st30" cx="93.2" cy="44.2" r="46"/>
-
- <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="410.247" y1="1230.2266" x2="410.247" y2="1322.1669" gradientTransform="matrix(-0.4445 0.8958 0.8958 0.4445 -868.4073 -888.9674)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st31" cx="92.4" cy="45.8" r="46"/>
-
- <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="400.3186" y1="1232.6116" x2="400.3186" y2="1324.5508" gradientTransform="matrix(-0.4593 0.8883 0.8883 0.4593 -860.2354 -895.5054)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st32" cx="91.7" cy="47.3" r="46"/>
-
- <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="390.4685" y1="1234.7863" x2="390.4685" y2="1326.7241" gradientTransform="matrix(-0.4738 0.8806 0.8806 0.4738 -852.0313 -901.8305)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st33" cx="90.9" cy="48.8" r="46"/>
-
- <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="380.4131" y1="1237.0018" x2="380.4131" y2="1328.9382" gradientTransform="matrix(-0.4883 0.8727 0.8727 0.4883 -843.8129 -908.1295)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st34" cx="90" cy="50.3" r="46"/>
-
- <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="373.4743" y1="1240.9346" x2="373.4743" y2="1332.8545" gradientTransform="matrix(-0.5 0.86 0.86 0.5 -832.7554 -913.935)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st35" cx="89.2" cy="51.8" r="46"/>
-
- <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="356.8052" y1="1239.2583" x2="356.8052" y2="1331.1783" gradientTransform="matrix(-0.52 0.86 0.86 0.52 -829.9454 -920.9528)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st36" cx="88.3" cy="53.3" r="46"/>
-
- <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="350.754" y1="1241.8092" x2="350.754" y2="1333.7292" gradientTransform="matrix(-0.53 0.85 0.85 0.53 -820.0965 -925.1317)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st37" cx="87.4" cy="54.8" r="46"/>
-
- <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="340.2458" y1="1244.4265" x2="340.2458" y2="1336.3574" gradientTransform="matrix(-0.5443 0.8389 0.8389 0.5443 -810.7675 -931.6188)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st38" cx="86.5" cy="56.2" r="46"/>
-
- <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="330.02" y1="1246.0839" x2="330.02" y2="1338.0133" gradientTransform="matrix(-0.558 0.8298 0.8298 0.558 -802.4619 -937.2144)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st39" cx="85.5" cy="57.6" r="46"/>
-
- <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="321.2724" y1="1247.9768" x2="321.2724" y2="1339.8967" gradientTransform="matrix(-0.57 0.82 0.82 0.57 -793.5198 -942.0473)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st40" cx="84.6" cy="59.1" r="46"/>
-
- <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="314.1851" y1="1249.9653" x2="314.1851" y2="1341.8953" gradientTransform="matrix(-0.58 0.81 0.81 0.58 -784.1709 -945.8562)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st41" cx="83.6" cy="60.5" r="46"/>
-
- <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="297.256" y1="1250.7" x2="297.256" y2="1342.6254" gradientTransform="matrix(-0.6 0.8 0.8 0.6 -777.182 -954.5341)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st42" cx="82.6" cy="61.8" r="46"/>
-
- <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="289.0803" y1="1251.4824" x2="289.0803" y2="1343.4069" gradientTransform="matrix(-0.6108 0.7918 0.7918 0.6108 -769.15 -958.1976)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st43" cx="81.5" cy="63.2" r="46"/>
-
- <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="281.9786" y1="1253.7915" x2="281.9786" y2="1345.7115" gradientTransform="matrix(-0.62 0.78 0.78 0.62 -759.1442 -961.7418)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st44" cx="80.5" cy="64.6" r="46"/>
-
- <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="264.6733" y1="1253.6016" x2="264.6733" y2="1345.5215" gradientTransform="matrix(-0.64 0.77 0.77 0.64 -752.5353 -970.1896)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st45" cx="79.4" cy="65.9" r="46"/>
-
- <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="257.8691" y1="1254.5463" x2="257.8691" y2="1346.468" gradientTransform="matrix(-0.6488 0.761 0.761 0.6488 -744.0487 -972.7897)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st46" cx="78.3" cy="67.2" r="46"/>
-
- <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="248.3486" y1="1255.6117" x2="248.3486" y2="1347.6202" gradientTransform="matrix(-0.66 0.75 0.75 0.66 -735.2575 -976.9575)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st47" cx="77.2" cy="68.5" r="46"/>
-
- <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="237.1286" y1="1255.9387" x2="237.1286" y2="1347.8594" gradientTransform="matrix(-0.673 0.7396 0.7396 0.673 -727.2944 -981.8221)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st48" cx="76" cy="69.8" r="46"/>
-
- <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="226.6352" y1="1256.5245" x2="226.6352" y2="1348.4448" gradientTransform="matrix(-0.6849 0.7286 0.7286 0.6849 -718.8947 -986.2278)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st49" cx="74.9" cy="71" r="46"/>
-
- <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="216.116" y1="1257.0142" x2="216.116" y2="1348.9342" gradientTransform="matrix(-0.6967 0.7174 0.7174 0.6967 -710.4896 -990.5268)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st50" cx="73.7" cy="72.2" r="46"/>
-
- <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="205.5642" y1="1257.3831" x2="205.5642" y2="1349.3031" gradientTransform="matrix(-0.7082 0.706 0.706 0.7082 -702.0701 -994.7166)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st51" cx="72.5" cy="73.5" r="46"/>
-
- <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="195.0011" y1="1257.6644" x2="195.0011" y2="1349.5846" gradientTransform="matrix(-0.7196 0.6944 0.6944 0.7196 -693.6469 -998.8153)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st52" cx="71.3" cy="74.7" r="46"/>
-
- <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="184.4061" y1="1257.8337" x2="184.4061" y2="1349.754" gradientTransform="matrix(-0.7308 0.6826 0.6826 0.7308 -685.2109 -1002.8005)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st53" cx="70.1" cy="75.8" r="46"/>
-
- <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="173.942" y1="1257.813" x2="173.942" y2="1349.7336" gradientTransform="matrix(-0.7416 0.6708 0.6708 0.7416 -676.8011 -1006.6033)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st54" cx="68.8" cy="77" r="46"/>
-
- <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="165.7842" y1="1258.0029" x2="165.7842" y2="1350.0115" gradientTransform="matrix(-0.75 0.66 0.66 0.75 -668.4574 -1008.9075)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st55" cx="67.5" cy="78.1" r="46"/>
-
- <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="152.6869" y1="1257.5967" x2="152.6869" y2="1349.5187" gradientTransform="matrix(-0.763 0.6464 0.6464 0.763 -659.886 -1014.0788)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st56" cx="66.2" cy="79.2" r="46"/>
-
- <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="142.0515" y1="1257.3269" x2="142.0515" y2="1349.2496" gradientTransform="matrix(-0.7734 0.6339 0.6339 0.7734 -651.4194 -1017.6699)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st57" cx="64.9" cy="80.3" r="46"/>
-
- <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="133.6709" y1="1258.3954" x2="133.6709" y2="1350.3154" gradientTransform="matrix(-0.78 0.62 0.62 0.78 -641.5118 -1019.6742)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st58" cx="63.6" cy="81.4" r="46"/>
-
- <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="124.1207" y1="1257.1392" x2="124.1207" y2="1349.0592" gradientTransform="matrix(-0.79 0.61 0.61 0.79 -634.4229 -1022.4531)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st59" cx="62.2" cy="82.5" r="46"/>
-
- <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="109.9288" y1="1255.9037" x2="109.9288" y2="1347.8295" gradientTransform="matrix(-0.8034 0.5954 0.5954 0.8034 -625.9288 -1027.9333)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st60" cx="60.9" cy="83.5" r="46"/>
-
- <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="100.4064" y1="1256.7308" x2="100.4064" y2="1348.6509" gradientTransform="matrix(-0.81 0.58 0.58 0.81 -615.6462 -1030.1509)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st61" cx="59.5" cy="84.5" r="46"/>
-
- <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="88.6144" y1="1254.3505" x2="88.6144" y2="1346.2788" gradientTransform="matrix(-0.8223 0.569 0.569 0.8223 -608.9277 -1034.2352)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st62" cx="58.1" cy="85.5" r="46"/>
-
- <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="77.817" y1="1253.4497" x2="77.817" y2="1345.3794" gradientTransform="matrix(-0.8316 0.5554 0.5554 0.8316 -600.3676 -1037.3212)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st63" cx="56.7" cy="86.4" r="46"/>
-
- <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="67.1661" y1="1252.3829" x2="67.1661" y2="1344.3141" gradientTransform="matrix(-0.8405 0.5419 0.5419 0.8405 -591.8452 -1040.2299)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st64" cx="55.2" cy="87.4" r="46"/>
-
- <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="56.3877" y1="1251.2595" x2="56.3877" y2="1343.192" gradientTransform="matrix(-0.8492 0.528 0.528 0.8492 -583.2699 -1043.1292)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st65" cx="53.8" cy="88.3" r="46"/>
-
- <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="45.6117" y1="1250.0085" x2="45.6117" y2="1341.9425" gradientTransform="matrix(-0.8578 0.514 0.514 0.8578 -574.6934 -1045.9266)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st66" cx="52.3" cy="89.2" r="46"/>
-
- <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="34.8547" y1="1248.6538" x2="34.8547" y2="1340.5892" gradientTransform="matrix(-0.8661 0.4998 0.4998 0.8661 -566.1071 -1048.6301)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st67" cx="50.8" cy="90.1" r="46"/>
-
- <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="29.2002" y1="1247.9631" x2="29.2002" y2="1339.8831" gradientTransform="matrix(-0.87 0.49 0.49 0.87 -558.7761 -1048.1743)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st68" cx="49.3" cy="90.9" r="46"/>
-
- <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="13.2516" y1="1245.6157" x2="13.2516" y2="1337.5538" gradientTransform="matrix(-0.8821 0.471 0.471 0.8821 -548.8523 -1053.8333)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st69" cx="47.8" cy="91.7" r="46"/>
-
- <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="2.5514" y1="1243.8953" x2="2.5514" y2="1335.8346" gradientTransform="matrix(-0.8897 0.4565 0.4565 0.8897 -540.2436 -1056.2529)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st70" cx="46.3" cy="92.5" r="46"/>
-
- <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-8.271" y1="1242.094" x2="-8.271" y2="1334.0345" gradientTransform="matrix(-0.8972 0.4417 0.4417 0.8972 -531.5703 -1058.6542)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st71" cx="44.7" cy="93.3" r="46"/>
-
- <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-19.0717" y1="1240.1782" x2="-19.0717" y2="1332.1199" gradientTransform="matrix(-0.9044 0.4267 0.4267 0.9044 -522.8919 -1060.9601)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st72" cx="43.2" cy="94.1" r="46"/>
-
- <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-29.8407" y1="1238.1425" x2="-29.8407" y2="1330.0851" gradientTransform="matrix(-0.9113 0.4117 0.4117 0.9113 -514.2103 -1063.1687)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st73" cx="41.6" cy="94.8" r="46"/>
-
- <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-40.5778" y1="1235.9857" x2="-40.5778" y2="1327.9292" gradientTransform="matrix(-0.918 0.3965 0.3965 0.918 -505.5269 -1065.2882)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st74" cx="40" cy="95.5" r="46"/>
-
- <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-51.432" y1="1233.7313" x2="-51.432" y2="1325.6754" gradientTransform="matrix(-0.9245 0.3811 0.3811 0.9245 -496.7782 -1067.3756)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st75" cx="38.4" cy="96.2" r="46"/>
-
- <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-58.9129" y1="1231.3342" x2="-58.9129" y2="1323.1962" gradientTransform="matrix(-0.93 0.37 0.37 0.93 -490.0593 -1067.9877)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st76" cx="36.8" cy="96.8" r="46"/>
-
- <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="-74.2678" y1="1227.537" x2="-74.2678" y2="1319.457" gradientTransform="matrix(-0.94 0.35 0.35 0.94 -480.0315 -1072.8365)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st77" cx="35.2" cy="97.4" r="46"/>
-
- <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="-83.6357" y1="1226.2365" x2="-83.6357" y2="1318.1815" gradientTransform="matrix(-0.9425 0.3343 0.3343 0.9425 -470.5638 -1073.0151)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="33.6" cy="98" r="46"/>
-
- <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-94.3428" y1="1223.5103" x2="-94.3428" y2="1315.4553" gradientTransform="matrix(-0.9479 0.3185 0.3185 0.9479 -461.8043 -1074.7328)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="98.6" r="46"/>
-
- <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-105.1438" y1="1220.6829" x2="-105.1438" y2="1312.6276" gradientTransform="matrix(-0.9532 0.3024 0.3024 0.9532 -452.9706 -1076.4216)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="30.3" cy="99.1" r="46"/>
-
- <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-115.7654" y1="1217.7202" x2="-115.7654" y2="1309.6643" gradientTransform="matrix(-0.9581 0.2864 0.2864 0.9581 -444.205 -1077.9523)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="28.6" cy="99.7" r="46"/>
-
- <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-126.4714" y1="1214.6385" x2="-126.4714" y2="1306.5819" gradientTransform="matrix(-0.9628 0.2701 0.2701 0.9628 -435.367 -1079.448)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="26.9" cy="100.1" r="46"/>
-
- <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-140.5646" y1="1210.2446" x2="-140.5646" y2="1302.1647" gradientTransform="matrix(-0.97 0.25 0.25 0.97 -425.2825 -1083.0433)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="25.2" cy="100.6" r="46"/>
-
- <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-147.7539" y1="1208.1538" x2="-147.7539" y2="1300.0952" gradientTransform="matrix(-0.9714 0.2373 0.2373 0.9714 -417.7142 -1082.1689)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="23.5" cy="101" r="46"/>
-
- <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-158.3251" y1="1204.7271" x2="-158.3251" y2="1296.6671" gradientTransform="matrix(-0.9753 0.2209 0.2209 0.9753 -408.8935 -1083.3909)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="21.8" cy="101.4" r="46"/>
-
- <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-168.8358" y1="1201.1874" x2="-168.8358" y2="1293.1259" gradientTransform="matrix(-0.9789 0.2043 0.2043 0.9789 -400.0692 -1084.5181)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="20" cy="101.8" r="46"/>
-
- <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-179.4358" y1="1197.5454" x2="-179.4358" y2="1289.4823" gradientTransform="matrix(-0.9823 0.1876 0.1876 0.9823 -391.186 -1085.6135)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="18.3" cy="102.2" r="46"/>
-
- <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-189.985" y1="1193.7775" x2="-189.985" y2="1285.7125" gradientTransform="matrix(-0.9853 0.1707 0.1707 0.9853 -382.3118 -1086.6086)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="16.5" cy="102.5" r="46"/>
-
- <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-200.4694" y1="1189.9008" x2="-200.4694" y2="1281.834" gradientTransform="matrix(-0.9881 0.1538 0.1538 0.9881 -373.4388 -1087.5219)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="14.8" cy="102.8" r="46"/>
-
- <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="-210.9005" y1="1185.9066" x2="-210.9005" y2="1277.8378" gradientTransform="matrix(-0.9906 0.1369 0.1369 0.9906 -364.5792 -1088.3418)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="13" cy="103" r="46"/>
-
- <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-221.2661" y1="1181.8027" x2="-221.2661" y2="1273.7319" gradientTransform="matrix(-0.9928 0.12 0.12 0.9928 -355.7255 -1089.0769)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="11.2" cy="103.3" r="46"/>
-
- <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-231.5772" y1="1177.5801" x2="-231.5772" y2="1269.5073" gradientTransform="matrix(-0.9947 0.103 0.103 0.9947 -346.89 -1089.7158)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="9.4" cy="103.5" r="46"/>
-
- <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-241.8323" y1="1173.2477" x2="-241.8323" y2="1265.173" gradientTransform="matrix(-0.9963 8.593847e-002 8.593847e-002 0.9963 -338.0747 -1090.2671)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="7.6" cy="103.6" r="46"/>
-
- <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="-252.1457" y1="1168.8086" x2="-252.1457" y2="1260.7323" gradientTransform="matrix(-0.9976 6.871183e-002 6.871183e-002 0.9976 -329.1888 -1090.7839)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="5.8" cy="103.8" r="46"/>
-
- <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="-262.2764" y1="1164.2617" x2="-262.2764" y2="1256.184" gradientTransform="matrix(-0.9987 5.163889e-002 5.163889e-002 0.9987 -320.401 -1091.1646)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="4" cy="103.9" r="46"/>
-
- <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="-272.4639" y1="1159.6036" x2="-272.4639" y2="1251.5248" gradientTransform="matrix(-0.9994 3.437623e-002 3.437623e-002 0.9994 -311.5556 -1091.5054)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="2.2" cy="104" r="46"/>
-
- <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="-282.4596" y1="1154.8397" x2="-282.4596" y2="1246.76" gradientTransform="matrix(-0.9999 1.727800e-002 1.727800e-002 0.9999 -302.8049 -1091.7203)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="0.4" cy="104" r="46"/>
-
- <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-292.52" y1="1149.97" x2="-292.52" y2="1241.89" gradientTransform="matrix(-1 0 0 1 -294 -1091.89)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="-1.5" cy="104" r="46"/>
- </g>
- </g>
- </g>
- <g>
- <g>
- <defs>
- <rect id="SVGID_101_" y="-200" width="150" height="150"/>
- </defs>
- <clipPath id="SVGID_102_">
- <use xlink:href="#SVGID_101_" style="overflow:visible;"/>
- </clipPath>
- <g id="图层_13" class="st99">
- <g>
- <defs>
- <polygon id="SVGID_103_" points="105.5,-42.2 45.2,-42.2 45.2,-96.9 75.1,-120.3 105.5,-96.9 "/>
- </defs>
- <clipPath id="SVGID_104_">
- <use xlink:href="#SVGID_103_" style="overflow:visible;"/>
- </clipPath>
- <g class="st100">
-
- <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="678.1" y1="402.43" x2="678.1" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st101" cx="75.3" cy="-26.6" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="679.18" y1="402.43" x2="679.18" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st102" cx="75.3" cy="-25.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="680.25" y1="402.43" x2="680.25" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st103" cx="75.3" cy="-24.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="681.33" y1="402.43" x2="681.33" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st104" cx="75.3" cy="-23.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="682.4" y1="402.43" x2="682.4" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st105" cx="75.3" cy="-22.3" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="683.48" y1="402.43" x2="683.48" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st106" cx="75.3" cy="-21.2" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="684.55" y1="402.43" x2="684.55" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st107" cx="75.3" cy="-20.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="685.63" y1="402.43" x2="685.63" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st108" cx="75.3" cy="-19.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="686.71" y1="402.43" x2="686.71" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st109" cx="75.3" cy="-18" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="687.78" y1="402.43" x2="687.78" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st110" cx="75.3" cy="-16.9" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="688.86" y1="402.43" x2="688.86" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st111" cx="75.3" cy="-15.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="689.93" y1="402.43" x2="689.93" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st112" cx="75.3" cy="-14.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="691.01" y1="402.43" x2="691.01" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st113" cx="75.3" cy="-13.7" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="692.08" y1="402.43" x2="692.08" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st114" cx="75.3" cy="-12.6" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="693.16" y1="402.43" x2="693.16" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st115" cx="75.3" cy="-11.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="694.23" y1="402.43" x2="694.23" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st116" cx="75.3" cy="-10.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="695.31" y1="402.43" x2="695.31" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st117" cx="75.3" cy="-9.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="696.39" y1="402.43" x2="696.39" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st118" cx="75.3" cy="-8.3" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="697.46" y1="402.43" x2="697.46" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st119" cx="75.3" cy="-7.2" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="698.54" y1="402.43" x2="698.54" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st120" cx="75.3" cy="-6.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="699.61" y1="402.43" x2="699.61" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st121" cx="75.3" cy="-5.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="700.69" y1="402.43" x2="700.69" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st122" cx="75.3" cy="-4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="701.76" y1="402.43" x2="701.76" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st123" cx="75.3" cy="-2.9" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="702.84" y1="402.43" x2="702.84" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st124" cx="75.3" cy="-1.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="703.91" y1="402.43" x2="703.91" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st125" cx="75.3" cy="-0.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="704.99" y1="402.43" x2="704.99" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st126" cx="75.3" cy="0.3" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="706.07" y1="402.43" x2="706.07" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st127" cx="75.3" cy="1.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="707.14" y1="402.43" x2="707.14" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st128" cx="75.3" cy="2.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="708.22" y1="402.43" x2="708.22" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st129" cx="75.3" cy="3.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="709.29" y1="402.43" x2="709.29" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st130" cx="75.3" cy="4.6" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="710.37" y1="402.43" x2="710.37" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st131" cx="75.3" cy="5.7" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="711.44" y1="402.43" x2="711.44" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st132" cx="75.3" cy="6.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="712.52" y1="402.43" x2="712.52" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st133" cx="75.3" cy="7.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="713.59" y1="402.43" x2="713.59" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st134" cx="75.3" cy="8.9" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="714.67" y1="402.43" x2="714.67" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st135" cx="75.3" cy="10" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="715.75" y1="402.43" x2="715.75" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st136" cx="75.3" cy="11.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_141_" gradientUnits="userSpaceOnUse" x1="716.82" y1="402.43" x2="716.82" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st137" cx="75.3" cy="12.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_142_" gradientUnits="userSpaceOnUse" x1="717.9" y1="402.43" x2="717.9" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st138" cx="75.3" cy="13.2" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_143_" gradientUnits="userSpaceOnUse" x1="718.97" y1="402.43" x2="718.97" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st139" cx="75.3" cy="14.3" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_144_" gradientUnits="userSpaceOnUse" x1="720.05" y1="402.43" x2="720.05" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st140" cx="75.3" cy="15.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_145_" gradientUnits="userSpaceOnUse" x1="721.12" y1="402.43" x2="721.12" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st141" cx="75.3" cy="16.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_146_" gradientUnits="userSpaceOnUse" x1="722.2" y1="402.43" x2="722.2" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st142" cx="75.3" cy="17.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_147_" gradientUnits="userSpaceOnUse" x1="723.27" y1="402.43" x2="723.27" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st143" cx="75.3" cy="18.6" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_148_" gradientUnits="userSpaceOnUse" x1="724.35" y1="402.43" x2="724.35" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st144" cx="75.3" cy="19.7" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_149_" gradientUnits="userSpaceOnUse" x1="725.42" y1="402.43" x2="725.42" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st145" cx="75.3" cy="20.7" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_150_" gradientUnits="userSpaceOnUse" x1="726.5" y1="402.43" x2="726.5" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st146" cx="75.3" cy="21.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_151_" gradientUnits="userSpaceOnUse" x1="727.58" y1="402.43" x2="727.58" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st147" cx="75.3" cy="22.9" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_152_" gradientUnits="userSpaceOnUse" x1="728.65" y1="402.43" x2="728.65" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st148" cx="75.3" cy="24" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_153_" gradientUnits="userSpaceOnUse" x1="729.73" y1="402.43" x2="729.73" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st149" cx="75.3" cy="25" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_154_" gradientUnits="userSpaceOnUse" x1="730.8" y1="402.43" x2="730.8" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st150" cx="75.3" cy="26.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_155_" gradientUnits="userSpaceOnUse" x1="731.88" y1="402.43" x2="731.88" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st151" cx="75.3" cy="27.2" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_156_" gradientUnits="userSpaceOnUse" x1="732.95" y1="402.43" x2="732.95" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st152" cx="75.3" cy="28.3" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_157_" gradientUnits="userSpaceOnUse" x1="734.03" y1="402.43" x2="734.03" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st153" cx="75.3" cy="29.3" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_158_" gradientUnits="userSpaceOnUse" x1="735.1" y1="402.43" x2="735.1" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st154" cx="75.3" cy="30.4" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_159_" gradientUnits="userSpaceOnUse" x1="736.18" y1="402.43" x2="736.18" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st155" cx="75.3" cy="31.5" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_160_" gradientUnits="userSpaceOnUse" x1="737.26" y1="402.43" x2="737.26" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st156" cx="75.3" cy="32.6" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_161_" gradientUnits="userSpaceOnUse" x1="738.33" y1="402.43" x2="738.33" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st157" cx="75.3" cy="33.6" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_162_" gradientUnits="userSpaceOnUse" x1="739.41" y1="402.43" x2="739.41" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st158" cx="75.3" cy="34.7" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_163_" gradientUnits="userSpaceOnUse" x1="740.48" y1="402.43" x2="740.48" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st159" cx="75.3" cy="35.8" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_164_" gradientUnits="userSpaceOnUse" x1="741.56" y1="402.43" x2="741.56" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st160" cx="75.3" cy="36.9" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_165_" gradientUnits="userSpaceOnUse" x1="742.63" y1="402.43" x2="742.63" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st161" cx="75.3" cy="37.9" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_166_" gradientUnits="userSpaceOnUse" x1="743.71" y1="402.43" x2="743.71" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st162" cx="75.3" cy="39" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_167_" gradientUnits="userSpaceOnUse" x1="744.78" y1="402.43" x2="744.78" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st163" cx="75.3" cy="40.1" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_168_" gradientUnits="userSpaceOnUse" x1="745.86" y1="402.43" x2="745.86" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st164" cx="75.3" cy="41.2" rx="29.8" ry="27"/>
-
- <linearGradient id="SVGID_169_" gradientUnits="userSpaceOnUse" x1="746.94" y1="402.43" x2="746.94" y2="462.01" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -356.87 -704.68)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <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="st165" cx="75.3" cy="42.3" rx="29.8" ry="27"/>
- </g>
- </g>
- </g>
- </g>
- </g>
- </svg>
|