iot-管道(21)-13.svg 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
  3. <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"
  4. viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve">
  5. <style type="text/css">
  6. .st0{clip-path:url(#SVGID_2_);}
  7. .st1{fill:url(#SVGID_3_);}
  8. .st2{fill:url(#SVGID_4_);}
  9. .st3{fill:url(#SVGID_5_);}
  10. .st4{fill:url(#SVGID_6_);}
  11. .st5{fill:url(#SVGID_7_);}
  12. .st6{fill:url(#SVGID_8_);}
  13. .st7{fill:url(#SVGID_9_);}
  14. .st8{fill:url(#SVGID_10_);}
  15. .st9{fill:url(#SVGID_11_);}
  16. .st10{fill:url(#SVGID_12_);}
  17. .st11{fill:url(#SVGID_13_);}
  18. .st12{fill:url(#SVGID_14_);}
  19. .st13{fill:url(#SVGID_15_);}
  20. .st14{fill:url(#SVGID_16_);}
  21. .st15{fill:url(#SVGID_17_);}
  22. .st16{fill:url(#SVGID_18_);}
  23. .st17{fill:url(#SVGID_19_);}
  24. .st18{fill:url(#SVGID_20_);}
  25. .st19{fill:url(#SVGID_21_);}
  26. .st20{fill:url(#SVGID_22_);}
  27. .st21{fill:url(#SVGID_23_);}
  28. .st22{fill:url(#SVGID_24_);}
  29. .st23{fill:url(#SVGID_25_);}
  30. .st24{fill:url(#SVGID_26_);}
  31. .st25{fill:url(#SVGID_27_);}
  32. .st26{fill:url(#SVGID_28_);}
  33. .st27{fill:url(#SVGID_29_);}
  34. .st28{fill:url(#SVGID_30_);}
  35. .st29{fill:url(#SVGID_31_);}
  36. .st30{fill:url(#SVGID_32_);}
  37. .st31{fill:url(#SVGID_33_);}
  38. .st32{fill:url(#SVGID_34_);}
  39. .st33{fill:url(#SVGID_35_);}
  40. .st34{fill:url(#SVGID_36_);}
  41. .st35{fill:url(#SVGID_37_);}
  42. .st36{fill:url(#SVGID_38_);}
  43. .st37{fill:url(#SVGID_39_);}
  44. .st38{fill:url(#SVGID_40_);}
  45. .st39{fill:url(#SVGID_41_);}
  46. .st40{fill:url(#SVGID_42_);}
  47. .st41{fill:url(#SVGID_43_);}
  48. .st42{fill:url(#SVGID_44_);}
  49. .st43{fill:url(#SVGID_45_);}
  50. .st44{fill:url(#SVGID_46_);}
  51. .st45{fill:url(#SVGID_47_);}
  52. .st46{fill:url(#SVGID_48_);}
  53. .st47{fill:url(#SVGID_49_);}
  54. .st48{fill:url(#SVGID_50_);}
  55. .st49{fill:url(#SVGID_51_);}
  56. .st50{fill:url(#SVGID_52_);}
  57. .st51{fill:url(#SVGID_53_);}
  58. .st52{fill:url(#SVGID_54_);}
  59. .st53{fill:url(#SVGID_55_);}
  60. .st54{fill:url(#SVGID_56_);}
  61. .st55{fill:url(#SVGID_57_);}
  62. .st56{fill:url(#SVGID_58_);}
  63. .st57{fill:url(#SVGID_59_);}
  64. .st58{fill:url(#SVGID_60_);}
  65. .st59{fill:url(#SVGID_61_);}
  66. .st60{fill:url(#SVGID_62_);}
  67. .st61{fill:url(#SVGID_63_);}
  68. .st62{fill:url(#SVGID_64_);}
  69. .st63{fill:url(#SVGID_65_);}
  70. .st64{fill:url(#SVGID_66_);}
  71. .st65{fill:url(#SVGID_67_);}
  72. .st66{fill:url(#SVGID_68_);}
  73. .st67{fill:url(#SVGID_69_);}
  74. .st68{fill:url(#SVGID_70_);}
  75. .st69{fill:url(#SVGID_71_);}
  76. .st70{fill:url(#SVGID_72_);}
  77. .st71{fill:url(#SVGID_73_);}
  78. .st72{fill:url(#SVGID_74_);}
  79. .st73{fill:url(#SVGID_75_);}
  80. .st74{fill:url(#SVGID_76_);}
  81. .st75{fill:url(#SVGID_77_);}
  82. .st76{fill:url(#SVGID_78_);}
  83. .st77{fill:url(#SVGID_79_);}
  84. .st78{fill:url(#SVGID_80_);}
  85. .st79{fill:url(#SVGID_81_);}
  86. .st80{fill:url(#SVGID_82_);}
  87. .st81{fill:url(#SVGID_83_);}
  88. .st82{fill:url(#SVGID_84_);}
  89. .st83{fill:url(#SVGID_85_);}
  90. .st84{fill:url(#SVGID_86_);}
  91. .st85{fill:url(#SVGID_87_);}
  92. .st86{fill:url(#SVGID_88_);}
  93. .st87{fill:url(#SVGID_89_);}
  94. .st88{fill:url(#SVGID_90_);}
  95. .st89{fill:url(#SVGID_91_);}
  96. .st90{fill:url(#SVGID_92_);}
  97. .st91{fill:url(#SVGID_93_);}
  98. .st92{fill:url(#SVGID_94_);}
  99. .st93{fill:url(#SVGID_95_);}
  100. .st94{fill:url(#SVGID_96_);}
  101. .st95{fill:url(#SVGID_97_);}
  102. .st96{fill:url(#SVGID_98_);}
  103. .st97{fill:url(#SVGID_99_);}
  104. .st98{fill:url(#SVGID_100_);}
  105. .st99{clip-path:url(#SVGID_102_);}
  106. .st100{clip-path:url(#SVGID_104_);}
  107. .st101{fill:url(#SVGID_105_);}
  108. .st102{fill:url(#SVGID_106_);}
  109. .st103{fill:url(#SVGID_107_);}
  110. .st104{fill:url(#SVGID_108_);}
  111. .st105{fill:url(#SVGID_109_);}
  112. .st106{fill:url(#SVGID_110_);}
  113. .st107{fill:url(#SVGID_111_);}
  114. .st108{fill:url(#SVGID_112_);}
  115. .st109{fill:url(#SVGID_113_);}
  116. .st110{fill:url(#SVGID_114_);}
  117. .st111{fill:url(#SVGID_115_);}
  118. .st112{fill:url(#SVGID_116_);}
  119. .st113{fill:url(#SVGID_117_);}
  120. .st114{fill:url(#SVGID_118_);}
  121. .st115{fill:url(#SVGID_119_);}
  122. .st116{fill:url(#SVGID_120_);}
  123. .st117{fill:url(#SVGID_121_);}
  124. .st118{fill:url(#SVGID_122_);}
  125. .st119{fill:url(#SVGID_123_);}
  126. .st120{fill:url(#SVGID_124_);}
  127. .st121{fill:url(#SVGID_125_);}
  128. .st122{fill:url(#SVGID_126_);}
  129. .st123{fill:url(#SVGID_127_);}
  130. .st124{fill:url(#SVGID_128_);}
  131. .st125{fill:url(#SVGID_129_);}
  132. .st126{fill:url(#SVGID_130_);}
  133. .st127{fill:url(#SVGID_131_);}
  134. .st128{fill:url(#SVGID_132_);}
  135. .st129{fill:url(#SVGID_133_);}
  136. .st130{fill:url(#SVGID_134_);}
  137. .st131{fill:url(#SVGID_135_);}
  138. .st132{fill:url(#SVGID_136_);}
  139. .st133{fill:url(#SVGID_137_);}
  140. .st134{fill:url(#SVGID_138_);}
  141. .st135{fill:url(#SVGID_139_);}
  142. .st136{fill:url(#SVGID_140_);}
  143. .st137{fill:url(#SVGID_141_);}
  144. .st138{fill:url(#SVGID_142_);}
  145. .st139{fill:url(#SVGID_143_);}
  146. .st140{fill:url(#SVGID_144_);}
  147. .st141{fill:url(#SVGID_145_);}
  148. .st142{fill:url(#SVGID_146_);}
  149. .st143{fill:url(#SVGID_147_);}
  150. .st144{fill:url(#SVGID_148_);}
  151. .st145{fill:url(#SVGID_149_);}
  152. .st146{fill:url(#SVGID_150_);}
  153. .st147{fill:url(#SVGID_151_);}
  154. .st148{fill:url(#SVGID_152_);}
  155. .st149{fill:url(#SVGID_153_);}
  156. .st150{fill:url(#SVGID_154_);}
  157. .st151{fill:url(#SVGID_155_);}
  158. .st152{fill:url(#SVGID_156_);}
  159. .st153{fill:url(#SVGID_157_);}
  160. .st154{fill:url(#SVGID_158_);}
  161. .st155{fill:url(#SVGID_159_);}
  162. .st156{fill:url(#SVGID_160_);}
  163. .st157{fill:url(#SVGID_161_);}
  164. .st158{fill:url(#SVGID_162_);}
  165. .st159{fill:url(#SVGID_163_);}
  166. .st160{fill:url(#SVGID_164_);}
  167. .st161{fill:url(#SVGID_165_);}
  168. .st162{fill:url(#SVGID_166_);}
  169. .st163{fill:url(#SVGID_167_);}
  170. .st164{fill:url(#SVGID_168_);}
  171. .st165{fill:url(#SVGID_169_);}
  172. </style>
  173. <title>iot-管道(21)</title>
  174. <g id="图层_2">
  175. <g>
  176. <defs>
  177. <rect id="SVGID_1_" y="0" width="150" height="150"/>
  178. </defs>
  179. <clipPath id="SVGID_2_">
  180. <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
  181. </clipPath>
  182. <g class="st0">
  183. <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)">
  184. <stop offset="0" style="stop-color:#B7B7B7"/>
  185. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  186. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  187. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  188. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  189. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  190. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  191. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  192. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  193. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  194. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  195. <stop offset="0.95" style="stop-color:#888888"/>
  196. <stop offset="1" style="stop-color:#666666"/>
  197. </linearGradient>
  198. <circle class="st1" cx="103.3" cy="-5.7" r="46"/>
  199. <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)">
  200. <stop offset="0" style="stop-color:#B7B7B7"/>
  201. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  202. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  203. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  204. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  205. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  206. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  207. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  208. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  209. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  210. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  211. <stop offset="0.95" style="stop-color:#888888"/>
  212. <stop offset="1" style="stop-color:#666666"/>
  213. </linearGradient>
  214. <circle class="st2" cx="103.3" cy="-3.9" r="46"/>
  215. <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)">
  216. <stop offset="0" style="stop-color:#B7B7B7"/>
  217. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  218. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  219. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  220. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  221. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  222. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  223. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  224. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  225. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  226. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  227. <stop offset="0.95" style="stop-color:#888888"/>
  228. <stop offset="1" style="stop-color:#666666"/>
  229. </linearGradient>
  230. <circle class="st3" cx="103.3" cy="-2.2" r="46"/>
  231. <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)">
  232. <stop offset="0" style="stop-color:#B7B7B7"/>
  233. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  234. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  235. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  236. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  237. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  238. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  239. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  240. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  241. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  242. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  243. <stop offset="0.95" style="stop-color:#888888"/>
  244. <stop offset="1" style="stop-color:#666666"/>
  245. </linearGradient>
  246. <circle class="st4" cx="103.3" cy="-0.4" r="46"/>
  247. <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)">
  248. <stop offset="0" style="stop-color:#B7B7B7"/>
  249. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  250. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  251. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  252. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  253. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  254. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  255. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  256. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  257. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  258. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  259. <stop offset="0.95" style="stop-color:#888888"/>
  260. <stop offset="1" style="stop-color:#666666"/>
  261. </linearGradient>
  262. <circle class="st5" cx="103.3" cy="1.4" r="46"/>
  263. <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)">
  264. <stop offset="0" style="stop-color:#B7B7B7"/>
  265. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  266. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  267. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  268. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  269. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  270. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  271. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  272. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  273. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  274. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  275. <stop offset="0.95" style="stop-color:#888888"/>
  276. <stop offset="1" style="stop-color:#666666"/>
  277. </linearGradient>
  278. <circle class="st6" cx="103.2" cy="3.3" r="46"/>
  279. <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)">
  280. <stop offset="0" style="stop-color:#B7B7B7"/>
  281. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  282. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  283. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  284. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  285. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  286. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  287. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  288. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  289. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  290. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  291. <stop offset="0.95" style="stop-color:#888888"/>
  292. <stop offset="1" style="stop-color:#666666"/>
  293. </linearGradient>
  294. <circle class="st7" cx="103.2" cy="5.1" r="46"/>
  295. <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)">
  296. <stop offset="0" style="stop-color:#B7B7B7"/>
  297. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  298. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  299. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  300. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  301. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  302. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  303. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  304. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  305. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  306. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  307. <stop offset="0.95" style="stop-color:#888888"/>
  308. <stop offset="1" style="stop-color:#666666"/>
  309. </linearGradient>
  310. <circle class="st8" cx="103" cy="6.9" r="46"/>
  311. <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)">
  312. <stop offset="0" style="stop-color:#B7B7B7"/>
  313. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  314. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  315. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  316. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  317. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  318. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  319. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  320. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  321. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  322. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  323. <stop offset="0.95" style="stop-color:#888888"/>
  324. <stop offset="1" style="stop-color:#666666"/>
  325. </linearGradient>
  326. <circle class="st9" cx="102.9" cy="8.7" r="46"/>
  327. <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)">
  328. <stop offset="0" style="stop-color:#B7B7B7"/>
  329. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  330. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  331. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  332. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  333. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  334. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  335. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  336. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  337. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  338. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  339. <stop offset="0.95" style="stop-color:#888888"/>
  340. <stop offset="1" style="stop-color:#666666"/>
  341. </linearGradient>
  342. <circle class="st10" cx="102.7" cy="10.5" r="46"/>
  343. <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)">
  344. <stop offset="0" style="stop-color:#B7B7B7"/>
  345. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  346. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  347. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  348. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  349. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  350. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  351. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  352. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  353. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  354. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  355. <stop offset="0.95" style="stop-color:#888888"/>
  356. <stop offset="1" style="stop-color:#666666"/>
  357. </linearGradient>
  358. <circle class="st11" cx="102.5" cy="12.3" r="46"/>
  359. <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)">
  360. <stop offset="0" style="stop-color:#B7B7B7"/>
  361. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  362. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  363. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  364. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  365. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  366. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  367. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  368. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  369. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  370. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  371. <stop offset="0.95" style="stop-color:#888888"/>
  372. <stop offset="1" style="stop-color:#666666"/>
  373. </linearGradient>
  374. <circle class="st12" cx="102.3" cy="14.1" r="46"/>
  375. <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)">
  376. <stop offset="0" style="stop-color:#B7B7B7"/>
  377. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  378. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  379. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  380. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  381. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  382. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  383. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  384. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  385. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  386. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  387. <stop offset="0.95" style="stop-color:#888888"/>
  388. <stop offset="1" style="stop-color:#666666"/>
  389. </linearGradient>
  390. <circle class="st13" cx="102" cy="15.8" r="46"/>
  391. <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)">
  392. <stop offset="0" style="stop-color:#B7B7B7"/>
  393. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  394. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  395. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  396. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  397. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  398. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  399. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  400. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  401. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  402. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  403. <stop offset="0.95" style="stop-color:#888888"/>
  404. <stop offset="1" style="stop-color:#666666"/>
  405. </linearGradient>
  406. <circle class="st14" cx="101.7" cy="17.6" r="46"/>
  407. <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)">
  408. <stop offset="0" style="stop-color:#B7B7B7"/>
  409. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  410. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  411. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  412. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  413. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  414. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  415. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  416. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  417. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  418. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  419. <stop offset="0.95" style="stop-color:#888888"/>
  420. <stop offset="1" style="stop-color:#666666"/>
  421. </linearGradient>
  422. <circle class="st15" cx="101.4" cy="19.4" r="46"/>
  423. <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)">
  424. <stop offset="0" style="stop-color:#B7B7B7"/>
  425. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  426. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  427. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  428. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  429. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  430. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  431. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  432. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  433. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  434. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  435. <stop offset="0.95" style="stop-color:#888888"/>
  436. <stop offset="1" style="stop-color:#666666"/>
  437. </linearGradient>
  438. <circle class="st16" cx="101" cy="21.1" r="46"/>
  439. <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)">
  440. <stop offset="0" style="stop-color:#B7B7B7"/>
  441. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  442. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  443. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  444. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  445. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  446. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  447. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  448. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  449. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  450. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  451. <stop offset="0.95" style="stop-color:#888888"/>
  452. <stop offset="1" style="stop-color:#666666"/>
  453. </linearGradient>
  454. <circle class="st17" cx="100.7" cy="22.8" r="46"/>
  455. <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)">
  456. <stop offset="0" style="stop-color:#B7B7B7"/>
  457. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  458. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  459. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  460. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  461. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  462. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  463. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  464. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  465. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  466. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  467. <stop offset="0.95" style="stop-color:#888888"/>
  468. <stop offset="1" style="stop-color:#666666"/>
  469. </linearGradient>
  470. <circle class="st18" cx="100.2" cy="24.5" r="46"/>
  471. <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)">
  472. <stop offset="0" style="stop-color:#B7B7B7"/>
  473. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  474. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  475. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  476. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  477. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  478. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  479. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  480. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  481. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  482. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  483. <stop offset="0.95" style="stop-color:#888888"/>
  484. <stop offset="1" style="stop-color:#666666"/>
  485. </linearGradient>
  486. <circle class="st19" cx="99.8" cy="26.2" r="46"/>
  487. <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)">
  488. <stop offset="0" style="stop-color:#B7B7B7"/>
  489. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  490. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  491. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  492. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  493. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  494. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  495. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  496. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  497. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  498. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  499. <stop offset="0.95" style="stop-color:#888888"/>
  500. <stop offset="1" style="stop-color:#666666"/>
  501. </linearGradient>
  502. <circle class="st20" cx="99.3" cy="27.9" r="46"/>
  503. <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)">
  504. <stop offset="0" style="stop-color:#B7B7B7"/>
  505. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  506. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  507. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  508. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  509. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  510. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  511. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  512. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  513. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  514. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  515. <stop offset="0.95" style="stop-color:#888888"/>
  516. <stop offset="1" style="stop-color:#666666"/>
  517. </linearGradient>
  518. <circle class="st21" cx="98.8" cy="29.6" r="46"/>
  519. <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)">
  520. <stop offset="0" style="stop-color:#B7B7B7"/>
  521. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  522. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  523. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  524. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  525. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  526. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  527. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  528. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  529. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  530. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  531. <stop offset="0.95" style="stop-color:#888888"/>
  532. <stop offset="1" style="stop-color:#666666"/>
  533. </linearGradient>
  534. <circle class="st22" cx="98.3" cy="31.3" r="46"/>
  535. <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)">
  536. <stop offset="0" style="stop-color:#B7B7B7"/>
  537. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  538. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  539. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  540. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  541. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  542. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  543. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  544. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  545. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  546. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  547. <stop offset="0.95" style="stop-color:#888888"/>
  548. <stop offset="1" style="stop-color:#666666"/>
  549. </linearGradient>
  550. <circle class="st23" cx="97.8" cy="33" r="46"/>
  551. <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)">
  552. <stop offset="0" style="stop-color:#B7B7B7"/>
  553. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  554. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  555. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  556. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  557. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  558. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  559. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  560. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  561. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  562. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  563. <stop offset="0.95" style="stop-color:#888888"/>
  564. <stop offset="1" style="stop-color:#666666"/>
  565. </linearGradient>
  566. <circle class="st24" cx="97.2" cy="34.6" r="46"/>
  567. <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)">
  568. <stop offset="0" style="stop-color:#B7B7B7"/>
  569. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  570. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  571. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  572. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  573. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  574. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  575. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  576. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  577. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  578. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  579. <stop offset="0.95" style="stop-color:#888888"/>
  580. <stop offset="1" style="stop-color:#666666"/>
  581. </linearGradient>
  582. <circle class="st25" cx="96.6" cy="36.2" r="46"/>
  583. <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)">
  584. <stop offset="0" style="stop-color:#B7B7B7"/>
  585. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  586. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  587. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  588. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  589. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  590. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  591. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  592. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  593. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  594. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  595. <stop offset="0.95" style="stop-color:#888888"/>
  596. <stop offset="1" style="stop-color:#666666"/>
  597. </linearGradient>
  598. <circle class="st26" cx="96" cy="37.9" r="46"/>
  599. <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)">
  600. <stop offset="0" style="stop-color:#B7B7B7"/>
  601. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  602. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  603. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  604. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  605. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  606. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  607. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  608. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  609. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  610. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  611. <stop offset="0.95" style="stop-color:#888888"/>
  612. <stop offset="1" style="stop-color:#666666"/>
  613. </linearGradient>
  614. <circle class="st27" cx="95.3" cy="39.5" r="46"/>
  615. <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)">
  616. <stop offset="0" style="stop-color:#B7B7B7"/>
  617. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  618. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  619. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  620. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  621. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  622. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  623. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  624. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  625. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  626. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  627. <stop offset="0.95" style="stop-color:#888888"/>
  628. <stop offset="1" style="stop-color:#666666"/>
  629. </linearGradient>
  630. <circle class="st28" cx="94.6" cy="41.1" r="46"/>
  631. <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)">
  632. <stop offset="0" style="stop-color:#B7B7B7"/>
  633. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  634. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  635. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  636. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  637. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  638. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  639. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  640. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  641. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  642. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  643. <stop offset="0.95" style="stop-color:#888888"/>
  644. <stop offset="1" style="stop-color:#666666"/>
  645. </linearGradient>
  646. <circle class="st29" cx="93.9" cy="42.6" r="46"/>
  647. <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)">
  648. <stop offset="0" style="stop-color:#B7B7B7"/>
  649. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  650. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  651. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  652. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  653. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  654. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  655. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  656. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  657. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  658. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  659. <stop offset="0.95" style="stop-color:#888888"/>
  660. <stop offset="1" style="stop-color:#666666"/>
  661. </linearGradient>
  662. <circle class="st30" cx="93.2" cy="44.2" r="46"/>
  663. <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)">
  664. <stop offset="0" style="stop-color:#B7B7B7"/>
  665. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  666. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  667. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  668. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  669. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  670. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  671. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  672. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  673. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  674. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  675. <stop offset="0.95" style="stop-color:#888888"/>
  676. <stop offset="1" style="stop-color:#666666"/>
  677. </linearGradient>
  678. <circle class="st31" cx="92.4" cy="45.8" r="46"/>
  679. <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)">
  680. <stop offset="0" style="stop-color:#B7B7B7"/>
  681. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  682. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  683. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  684. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  685. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  686. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  687. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  688. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  689. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  690. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  691. <stop offset="0.95" style="stop-color:#888888"/>
  692. <stop offset="1" style="stop-color:#666666"/>
  693. </linearGradient>
  694. <circle class="st32" cx="91.7" cy="47.3" r="46"/>
  695. <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)">
  696. <stop offset="0" style="stop-color:#B7B7B7"/>
  697. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  698. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  699. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  700. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  701. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  702. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  703. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  704. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  705. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  706. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  707. <stop offset="0.95" style="stop-color:#888888"/>
  708. <stop offset="1" style="stop-color:#666666"/>
  709. </linearGradient>
  710. <circle class="st33" cx="90.9" cy="48.8" r="46"/>
  711. <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)">
  712. <stop offset="0" style="stop-color:#B7B7B7"/>
  713. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  714. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  715. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  716. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  717. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  718. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  719. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  720. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  721. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  722. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  723. <stop offset="0.95" style="stop-color:#888888"/>
  724. <stop offset="1" style="stop-color:#666666"/>
  725. </linearGradient>
  726. <circle class="st34" cx="90" cy="50.3" r="46"/>
  727. <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)">
  728. <stop offset="0" style="stop-color:#B7B7B7"/>
  729. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  730. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  731. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  732. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  733. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  734. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  735. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  736. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  737. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  738. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  739. <stop offset="0.95" style="stop-color:#888888"/>
  740. <stop offset="1" style="stop-color:#666666"/>
  741. </linearGradient>
  742. <circle class="st35" cx="89.2" cy="51.8" r="46"/>
  743. <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)">
  744. <stop offset="0" style="stop-color:#B7B7B7"/>
  745. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  746. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  747. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  748. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  749. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  750. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  751. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  752. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  753. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  754. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  755. <stop offset="0.95" style="stop-color:#888888"/>
  756. <stop offset="1" style="stop-color:#666666"/>
  757. </linearGradient>
  758. <circle class="st36" cx="88.3" cy="53.3" r="46"/>
  759. <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)">
  760. <stop offset="0" style="stop-color:#B7B7B7"/>
  761. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  762. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  763. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  764. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  765. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  766. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  767. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  768. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  769. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  770. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  771. <stop offset="0.95" style="stop-color:#888888"/>
  772. <stop offset="1" style="stop-color:#666666"/>
  773. </linearGradient>
  774. <circle class="st37" cx="87.4" cy="54.8" r="46"/>
  775. <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)">
  776. <stop offset="0" style="stop-color:#B7B7B7"/>
  777. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  778. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  779. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  780. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  781. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  782. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  783. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  784. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  785. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  786. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  787. <stop offset="0.95" style="stop-color:#888888"/>
  788. <stop offset="1" style="stop-color:#666666"/>
  789. </linearGradient>
  790. <circle class="st38" cx="86.5" cy="56.2" r="46"/>
  791. <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)">
  792. <stop offset="0" style="stop-color:#B7B7B7"/>
  793. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  794. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  795. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  796. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  797. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  798. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  799. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  800. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  801. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  802. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  803. <stop offset="0.95" style="stop-color:#888888"/>
  804. <stop offset="1" style="stop-color:#666666"/>
  805. </linearGradient>
  806. <circle class="st39" cx="85.5" cy="57.6" r="46"/>
  807. <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)">
  808. <stop offset="0" style="stop-color:#B7B7B7"/>
  809. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  810. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  811. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  812. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  813. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  814. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  815. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  816. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  817. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  818. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  819. <stop offset="0.95" style="stop-color:#888888"/>
  820. <stop offset="1" style="stop-color:#666666"/>
  821. </linearGradient>
  822. <circle class="st40" cx="84.6" cy="59.1" r="46"/>
  823. <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)">
  824. <stop offset="0" style="stop-color:#B7B7B7"/>
  825. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  826. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  827. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  828. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  829. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  830. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  831. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  832. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  833. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  834. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  835. <stop offset="0.95" style="stop-color:#888888"/>
  836. <stop offset="1" style="stop-color:#666666"/>
  837. </linearGradient>
  838. <circle class="st41" cx="83.6" cy="60.5" r="46"/>
  839. <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)">
  840. <stop offset="0" style="stop-color:#B7B7B7"/>
  841. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  842. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  843. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  844. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  845. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  846. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  847. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  848. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  849. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  850. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  851. <stop offset="0.95" style="stop-color:#888888"/>
  852. <stop offset="1" style="stop-color:#666666"/>
  853. </linearGradient>
  854. <circle class="st42" cx="82.6" cy="61.8" r="46"/>
  855. <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)">
  856. <stop offset="0" style="stop-color:#B7B7B7"/>
  857. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  858. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  859. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  860. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  861. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  862. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  863. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  864. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  865. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  866. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  867. <stop offset="0.95" style="stop-color:#888888"/>
  868. <stop offset="1" style="stop-color:#666666"/>
  869. </linearGradient>
  870. <circle class="st43" cx="81.5" cy="63.2" r="46"/>
  871. <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)">
  872. <stop offset="0" style="stop-color:#B7B7B7"/>
  873. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  874. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  875. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  876. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  877. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  878. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  879. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  880. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  881. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  882. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  883. <stop offset="0.95" style="stop-color:#888888"/>
  884. <stop offset="1" style="stop-color:#666666"/>
  885. </linearGradient>
  886. <circle class="st44" cx="80.5" cy="64.6" r="46"/>
  887. <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)">
  888. <stop offset="0" style="stop-color:#B7B7B7"/>
  889. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  890. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  891. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  892. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  893. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  894. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  895. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  896. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  897. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  898. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  899. <stop offset="0.95" style="stop-color:#888888"/>
  900. <stop offset="1" style="stop-color:#666666"/>
  901. </linearGradient>
  902. <circle class="st45" cx="79.4" cy="65.9" r="46"/>
  903. <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)">
  904. <stop offset="0" style="stop-color:#B7B7B7"/>
  905. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  906. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  907. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  908. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  909. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  910. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  911. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  912. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  913. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  914. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  915. <stop offset="0.95" style="stop-color:#888888"/>
  916. <stop offset="1" style="stop-color:#666666"/>
  917. </linearGradient>
  918. <circle class="st46" cx="78.3" cy="67.2" r="46"/>
  919. <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)">
  920. <stop offset="0" style="stop-color:#B7B7B7"/>
  921. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  922. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  923. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  924. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  925. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  926. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  927. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  928. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  929. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  930. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  931. <stop offset="0.95" style="stop-color:#888888"/>
  932. <stop offset="1" style="stop-color:#666666"/>
  933. </linearGradient>
  934. <circle class="st47" cx="77.2" cy="68.5" r="46"/>
  935. <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)">
  936. <stop offset="0" style="stop-color:#B7B7B7"/>
  937. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  938. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  939. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  940. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  941. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  942. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  943. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  944. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  945. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  946. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  947. <stop offset="0.95" style="stop-color:#888888"/>
  948. <stop offset="1" style="stop-color:#666666"/>
  949. </linearGradient>
  950. <circle class="st48" cx="76" cy="69.8" r="46"/>
  951. <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)">
  952. <stop offset="0" style="stop-color:#B7B7B7"/>
  953. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  954. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  955. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  956. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  957. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  958. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  959. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  960. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  961. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  962. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  963. <stop offset="0.95" style="stop-color:#888888"/>
  964. <stop offset="1" style="stop-color:#666666"/>
  965. </linearGradient>
  966. <circle class="st49" cx="74.9" cy="71" r="46"/>
  967. <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)">
  968. <stop offset="0" style="stop-color:#B7B7B7"/>
  969. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  970. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  971. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  972. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  973. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  974. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  975. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  976. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  977. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  978. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  979. <stop offset="0.95" style="stop-color:#888888"/>
  980. <stop offset="1" style="stop-color:#666666"/>
  981. </linearGradient>
  982. <circle class="st50" cx="73.7" cy="72.2" r="46"/>
  983. <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)">
  984. <stop offset="0" style="stop-color:#B7B7B7"/>
  985. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  986. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  987. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  988. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  989. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  990. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  991. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  992. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  993. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  994. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  995. <stop offset="0.95" style="stop-color:#888888"/>
  996. <stop offset="1" style="stop-color:#666666"/>
  997. </linearGradient>
  998. <circle class="st51" cx="72.5" cy="73.5" r="46"/>
  999. <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)">
  1000. <stop offset="0" style="stop-color:#B7B7B7"/>
  1001. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1002. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1003. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1004. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1005. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1006. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1007. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1008. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1009. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1010. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1011. <stop offset="0.95" style="stop-color:#888888"/>
  1012. <stop offset="1" style="stop-color:#666666"/>
  1013. </linearGradient>
  1014. <circle class="st52" cx="71.3" cy="74.7" r="46"/>
  1015. <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)">
  1016. <stop offset="0" style="stop-color:#B7B7B7"/>
  1017. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1018. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1019. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1020. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1021. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1022. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1023. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1024. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1025. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1026. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1027. <stop offset="0.95" style="stop-color:#888888"/>
  1028. <stop offset="1" style="stop-color:#666666"/>
  1029. </linearGradient>
  1030. <circle class="st53" cx="70.1" cy="75.8" r="46"/>
  1031. <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)">
  1032. <stop offset="0" style="stop-color:#B7B7B7"/>
  1033. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1034. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1035. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1036. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1037. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1038. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1039. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1040. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1041. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1042. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1043. <stop offset="0.95" style="stop-color:#888888"/>
  1044. <stop offset="1" style="stop-color:#666666"/>
  1045. </linearGradient>
  1046. <circle class="st54" cx="68.8" cy="77" r="46"/>
  1047. <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)">
  1048. <stop offset="0" style="stop-color:#B7B7B7"/>
  1049. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1050. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1051. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1052. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1053. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1054. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1055. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1056. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1057. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1058. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1059. <stop offset="0.95" style="stop-color:#888888"/>
  1060. <stop offset="1" style="stop-color:#666666"/>
  1061. </linearGradient>
  1062. <circle class="st55" cx="67.5" cy="78.1" r="46"/>
  1063. <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)">
  1064. <stop offset="0" style="stop-color:#B7B7B7"/>
  1065. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1066. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1067. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1068. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1069. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1070. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1071. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1072. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1073. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1074. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1075. <stop offset="0.95" style="stop-color:#888888"/>
  1076. <stop offset="1" style="stop-color:#666666"/>
  1077. </linearGradient>
  1078. <circle class="st56" cx="66.2" cy="79.2" r="46"/>
  1079. <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)">
  1080. <stop offset="0" style="stop-color:#B7B7B7"/>
  1081. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1082. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1083. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1084. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1085. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1086. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1087. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1088. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1089. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1090. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1091. <stop offset="0.95" style="stop-color:#888888"/>
  1092. <stop offset="1" style="stop-color:#666666"/>
  1093. </linearGradient>
  1094. <circle class="st57" cx="64.9" cy="80.3" r="46"/>
  1095. <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)">
  1096. <stop offset="0" style="stop-color:#B7B7B7"/>
  1097. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1098. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1099. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1100. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1101. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1102. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1103. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1104. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1105. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1106. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1107. <stop offset="0.95" style="stop-color:#888888"/>
  1108. <stop offset="1" style="stop-color:#666666"/>
  1109. </linearGradient>
  1110. <circle class="st58" cx="63.6" cy="81.4" r="46"/>
  1111. <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)">
  1112. <stop offset="0" style="stop-color:#B7B7B7"/>
  1113. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1114. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1115. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1116. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1117. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1118. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1119. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1120. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1121. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1122. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1123. <stop offset="0.95" style="stop-color:#888888"/>
  1124. <stop offset="1" style="stop-color:#666666"/>
  1125. </linearGradient>
  1126. <circle class="st59" cx="62.2" cy="82.5" r="46"/>
  1127. <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)">
  1128. <stop offset="0" style="stop-color:#B7B7B7"/>
  1129. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1130. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1131. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1132. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1133. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1134. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1135. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1136. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1137. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1138. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1139. <stop offset="0.95" style="stop-color:#888888"/>
  1140. <stop offset="1" style="stop-color:#666666"/>
  1141. </linearGradient>
  1142. <circle class="st60" cx="60.9" cy="83.5" r="46"/>
  1143. <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)">
  1144. <stop offset="0" style="stop-color:#B7B7B7"/>
  1145. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1146. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1147. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1148. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1149. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1150. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1151. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1152. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1153. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1154. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1155. <stop offset="0.95" style="stop-color:#888888"/>
  1156. <stop offset="1" style="stop-color:#666666"/>
  1157. </linearGradient>
  1158. <circle class="st61" cx="59.5" cy="84.5" r="46"/>
  1159. <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)">
  1160. <stop offset="0" style="stop-color:#B7B7B7"/>
  1161. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1162. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1163. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1164. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1165. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1166. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1167. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1168. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1169. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1170. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1171. <stop offset="0.95" style="stop-color:#888888"/>
  1172. <stop offset="1" style="stop-color:#666666"/>
  1173. </linearGradient>
  1174. <circle class="st62" cx="58.1" cy="85.5" r="46"/>
  1175. <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)">
  1176. <stop offset="0" style="stop-color:#B7B7B7"/>
  1177. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1178. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1179. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1180. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1181. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1182. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1183. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1184. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1185. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1186. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1187. <stop offset="0.95" style="stop-color:#888888"/>
  1188. <stop offset="1" style="stop-color:#666666"/>
  1189. </linearGradient>
  1190. <circle class="st63" cx="56.7" cy="86.4" r="46"/>
  1191. <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)">
  1192. <stop offset="0" style="stop-color:#B7B7B7"/>
  1193. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1194. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1195. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1196. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1197. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1198. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1199. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1200. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1201. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1202. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1203. <stop offset="0.95" style="stop-color:#888888"/>
  1204. <stop offset="1" style="stop-color:#666666"/>
  1205. </linearGradient>
  1206. <circle class="st64" cx="55.2" cy="87.4" r="46"/>
  1207. <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)">
  1208. <stop offset="0" style="stop-color:#B7B7B7"/>
  1209. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1210. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1211. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1212. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1213. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1214. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1215. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1216. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1217. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1218. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1219. <stop offset="0.95" style="stop-color:#888888"/>
  1220. <stop offset="1" style="stop-color:#666666"/>
  1221. </linearGradient>
  1222. <circle class="st65" cx="53.8" cy="88.3" r="46"/>
  1223. <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)">
  1224. <stop offset="0" style="stop-color:#B7B7B7"/>
  1225. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1226. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1227. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1228. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1229. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1230. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1231. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1232. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1233. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1234. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1235. <stop offset="0.95" style="stop-color:#888888"/>
  1236. <stop offset="1" style="stop-color:#666666"/>
  1237. </linearGradient>
  1238. <circle class="st66" cx="52.3" cy="89.2" r="46"/>
  1239. <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)">
  1240. <stop offset="0" style="stop-color:#B7B7B7"/>
  1241. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1242. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1243. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1244. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1245. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1246. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1247. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1248. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1249. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1250. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1251. <stop offset="0.95" style="stop-color:#888888"/>
  1252. <stop offset="1" style="stop-color:#666666"/>
  1253. </linearGradient>
  1254. <circle class="st67" cx="50.8" cy="90.1" r="46"/>
  1255. <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)">
  1256. <stop offset="0" style="stop-color:#B7B7B7"/>
  1257. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1258. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1259. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1260. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1261. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1262. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1263. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1264. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1265. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1266. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1267. <stop offset="0.95" style="stop-color:#888888"/>
  1268. <stop offset="1" style="stop-color:#666666"/>
  1269. </linearGradient>
  1270. <circle class="st68" cx="49.3" cy="90.9" r="46"/>
  1271. <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)">
  1272. <stop offset="0" style="stop-color:#B7B7B7"/>
  1273. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1274. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1275. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1276. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1277. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1278. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1279. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1280. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1281. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1282. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1283. <stop offset="0.95" style="stop-color:#888888"/>
  1284. <stop offset="1" style="stop-color:#666666"/>
  1285. </linearGradient>
  1286. <circle class="st69" cx="47.8" cy="91.7" r="46"/>
  1287. <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)">
  1288. <stop offset="0" style="stop-color:#B7B7B7"/>
  1289. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1290. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1291. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1292. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1293. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1294. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1295. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1296. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1297. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1298. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1299. <stop offset="0.95" style="stop-color:#888888"/>
  1300. <stop offset="1" style="stop-color:#666666"/>
  1301. </linearGradient>
  1302. <circle class="st70" cx="46.3" cy="92.5" r="46"/>
  1303. <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)">
  1304. <stop offset="0" style="stop-color:#B7B7B7"/>
  1305. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1306. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1307. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1308. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1309. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1310. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1311. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1312. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1313. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1314. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1315. <stop offset="0.95" style="stop-color:#888888"/>
  1316. <stop offset="1" style="stop-color:#666666"/>
  1317. </linearGradient>
  1318. <circle class="st71" cx="44.7" cy="93.3" r="46"/>
  1319. <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)">
  1320. <stop offset="0" style="stop-color:#B7B7B7"/>
  1321. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1322. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1323. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1324. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1325. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1326. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1327. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1328. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1329. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1330. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1331. <stop offset="0.95" style="stop-color:#888888"/>
  1332. <stop offset="1" style="stop-color:#666666"/>
  1333. </linearGradient>
  1334. <circle class="st72" cx="43.2" cy="94.1" r="46"/>
  1335. <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)">
  1336. <stop offset="0" style="stop-color:#B7B7B7"/>
  1337. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1338. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1339. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1340. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1341. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1342. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1343. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1344. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1345. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1346. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1347. <stop offset="0.95" style="stop-color:#888888"/>
  1348. <stop offset="1" style="stop-color:#666666"/>
  1349. </linearGradient>
  1350. <circle class="st73" cx="41.6" cy="94.8" r="46"/>
  1351. <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)">
  1352. <stop offset="0" style="stop-color:#B7B7B7"/>
  1353. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1354. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1355. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1356. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1357. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1358. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1359. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1360. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1361. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1362. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1363. <stop offset="0.95" style="stop-color:#888888"/>
  1364. <stop offset="1" style="stop-color:#666666"/>
  1365. </linearGradient>
  1366. <circle class="st74" cx="40" cy="95.5" r="46"/>
  1367. <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)">
  1368. <stop offset="0" style="stop-color:#B7B7B7"/>
  1369. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1370. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1371. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1372. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1373. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1374. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1375. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1376. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1377. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1378. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1379. <stop offset="0.95" style="stop-color:#888888"/>
  1380. <stop offset="1" style="stop-color:#666666"/>
  1381. </linearGradient>
  1382. <circle class="st75" cx="38.4" cy="96.2" r="46"/>
  1383. <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)">
  1384. <stop offset="0" style="stop-color:#B7B7B7"/>
  1385. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1386. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1387. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1388. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1389. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1390. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1391. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1392. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1393. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1394. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1395. <stop offset="0.95" style="stop-color:#888888"/>
  1396. <stop offset="1" style="stop-color:#666666"/>
  1397. </linearGradient>
  1398. <circle class="st76" cx="36.8" cy="96.8" r="46"/>
  1399. <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)">
  1400. <stop offset="0" style="stop-color:#B7B7B7"/>
  1401. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1402. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1403. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1404. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1405. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1406. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1407. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1408. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1409. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1410. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1411. <stop offset="0.95" style="stop-color:#888888"/>
  1412. <stop offset="1" style="stop-color:#666666"/>
  1413. </linearGradient>
  1414. <circle class="st77" cx="35.2" cy="97.4" r="46"/>
  1415. <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)">
  1416. <stop offset="0" style="stop-color:#B7B7B7"/>
  1417. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1418. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1419. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1420. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1421. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1422. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1423. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1424. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1425. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1426. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1427. <stop offset="0.95" style="stop-color:#888888"/>
  1428. <stop offset="1" style="stop-color:#666666"/>
  1429. </linearGradient>
  1430. <circle class="st78" cx="33.6" cy="98" r="46"/>
  1431. <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)">
  1432. <stop offset="0" style="stop-color:#B7B7B7"/>
  1433. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1434. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1435. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1436. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1437. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1438. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1439. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1440. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1441. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1442. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1443. <stop offset="0.95" style="stop-color:#888888"/>
  1444. <stop offset="1" style="stop-color:#666666"/>
  1445. </linearGradient>
  1446. <circle class="st79" cx="31.9" cy="98.6" r="46"/>
  1447. <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)">
  1448. <stop offset="0" style="stop-color:#B7B7B7"/>
  1449. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1450. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1451. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1452. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1453. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1454. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1455. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1456. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1457. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1458. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1459. <stop offset="0.95" style="stop-color:#888888"/>
  1460. <stop offset="1" style="stop-color:#666666"/>
  1461. </linearGradient>
  1462. <circle class="st80" cx="30.3" cy="99.1" r="46"/>
  1463. <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)">
  1464. <stop offset="0" style="stop-color:#B7B7B7"/>
  1465. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1466. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1467. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1468. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1469. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1470. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1471. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1472. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1473. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1474. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1475. <stop offset="0.95" style="stop-color:#888888"/>
  1476. <stop offset="1" style="stop-color:#666666"/>
  1477. </linearGradient>
  1478. <circle class="st81" cx="28.6" cy="99.7" r="46"/>
  1479. <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)">
  1480. <stop offset="0" style="stop-color:#B7B7B7"/>
  1481. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1482. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1483. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1484. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1485. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1486. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1487. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1488. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1489. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1490. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1491. <stop offset="0.95" style="stop-color:#888888"/>
  1492. <stop offset="1" style="stop-color:#666666"/>
  1493. </linearGradient>
  1494. <circle class="st82" cx="26.9" cy="100.1" r="46"/>
  1495. <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)">
  1496. <stop offset="0" style="stop-color:#B7B7B7"/>
  1497. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1498. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1499. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1500. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1501. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1502. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1503. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1504. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1505. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1506. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1507. <stop offset="0.95" style="stop-color:#888888"/>
  1508. <stop offset="1" style="stop-color:#666666"/>
  1509. </linearGradient>
  1510. <circle class="st83" cx="25.2" cy="100.6" r="46"/>
  1511. <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)">
  1512. <stop offset="0" style="stop-color:#B7B7B7"/>
  1513. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1514. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1515. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1516. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1517. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1518. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1519. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1520. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1521. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1522. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1523. <stop offset="0.95" style="stop-color:#888888"/>
  1524. <stop offset="1" style="stop-color:#666666"/>
  1525. </linearGradient>
  1526. <circle class="st84" cx="23.5" cy="101" r="46"/>
  1527. <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)">
  1528. <stop offset="0" style="stop-color:#B7B7B7"/>
  1529. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1530. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1531. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1532. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1533. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1534. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1535. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1536. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1537. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1538. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1539. <stop offset="0.95" style="stop-color:#888888"/>
  1540. <stop offset="1" style="stop-color:#666666"/>
  1541. </linearGradient>
  1542. <circle class="st85" cx="21.8" cy="101.4" r="46"/>
  1543. <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)">
  1544. <stop offset="0" style="stop-color:#B7B7B7"/>
  1545. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1546. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1547. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1548. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1549. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1550. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1551. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1552. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1553. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1554. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1555. <stop offset="0.95" style="stop-color:#888888"/>
  1556. <stop offset="1" style="stop-color:#666666"/>
  1557. </linearGradient>
  1558. <circle class="st86" cx="20" cy="101.8" r="46"/>
  1559. <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)">
  1560. <stop offset="0" style="stop-color:#B7B7B7"/>
  1561. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1562. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1563. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1564. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1565. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1566. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1567. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1568. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1569. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1570. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1571. <stop offset="0.95" style="stop-color:#888888"/>
  1572. <stop offset="1" style="stop-color:#666666"/>
  1573. </linearGradient>
  1574. <circle class="st87" cx="18.3" cy="102.2" r="46"/>
  1575. <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)">
  1576. <stop offset="0" style="stop-color:#B7B7B7"/>
  1577. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1578. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1579. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1580. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1581. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1582. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1583. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1584. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1585. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1586. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1587. <stop offset="0.95" style="stop-color:#888888"/>
  1588. <stop offset="1" style="stop-color:#666666"/>
  1589. </linearGradient>
  1590. <circle class="st88" cx="16.5" cy="102.5" r="46"/>
  1591. <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)">
  1592. <stop offset="0" style="stop-color:#B7B7B7"/>
  1593. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1594. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1595. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1596. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1597. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1598. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1599. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1600. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1601. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1602. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1603. <stop offset="0.95" style="stop-color:#888888"/>
  1604. <stop offset="1" style="stop-color:#666666"/>
  1605. </linearGradient>
  1606. <circle class="st89" cx="14.8" cy="102.8" r="46"/>
  1607. <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)">
  1608. <stop offset="0" style="stop-color:#B7B7B7"/>
  1609. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1610. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1611. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1612. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1613. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1614. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1615. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1616. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1617. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1618. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1619. <stop offset="0.95" style="stop-color:#888888"/>
  1620. <stop offset="1" style="stop-color:#666666"/>
  1621. </linearGradient>
  1622. <circle class="st90" cx="13" cy="103" r="46"/>
  1623. <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)">
  1624. <stop offset="0" style="stop-color:#B7B7B7"/>
  1625. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1626. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1627. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1628. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1629. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1630. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1631. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1632. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1633. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1634. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1635. <stop offset="0.95" style="stop-color:#888888"/>
  1636. <stop offset="1" style="stop-color:#666666"/>
  1637. </linearGradient>
  1638. <circle class="st91" cx="11.2" cy="103.3" r="46"/>
  1639. <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)">
  1640. <stop offset="0" style="stop-color:#B7B7B7"/>
  1641. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1642. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1643. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1644. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1645. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1646. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1647. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1648. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1649. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1650. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1651. <stop offset="0.95" style="stop-color:#888888"/>
  1652. <stop offset="1" style="stop-color:#666666"/>
  1653. </linearGradient>
  1654. <circle class="st92" cx="9.4" cy="103.5" r="46"/>
  1655. <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)">
  1656. <stop offset="0" style="stop-color:#B7B7B7"/>
  1657. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1658. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1659. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1660. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1661. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1662. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1663. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1664. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1665. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1666. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1667. <stop offset="0.95" style="stop-color:#888888"/>
  1668. <stop offset="1" style="stop-color:#666666"/>
  1669. </linearGradient>
  1670. <circle class="st93" cx="7.6" cy="103.6" r="46"/>
  1671. <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)">
  1672. <stop offset="0" style="stop-color:#B7B7B7"/>
  1673. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1674. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1675. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1676. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1677. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1678. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1679. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1680. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1681. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1682. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1683. <stop offset="0.95" style="stop-color:#888888"/>
  1684. <stop offset="1" style="stop-color:#666666"/>
  1685. </linearGradient>
  1686. <circle class="st94" cx="5.8" cy="103.8" r="46"/>
  1687. <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)">
  1688. <stop offset="0" style="stop-color:#B7B7B7"/>
  1689. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1690. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1691. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1692. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1693. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1694. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1695. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1696. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1697. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1698. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1699. <stop offset="0.95" style="stop-color:#888888"/>
  1700. <stop offset="1" style="stop-color:#666666"/>
  1701. </linearGradient>
  1702. <circle class="st95" cx="4" cy="103.9" r="46"/>
  1703. <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)">
  1704. <stop offset="0" style="stop-color:#B7B7B7"/>
  1705. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1706. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1707. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1708. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1709. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1710. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1711. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1712. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1713. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1714. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1715. <stop offset="0.95" style="stop-color:#888888"/>
  1716. <stop offset="1" style="stop-color:#666666"/>
  1717. </linearGradient>
  1718. <circle class="st96" cx="2.2" cy="104" r="46"/>
  1719. <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)">
  1720. <stop offset="0" style="stop-color:#B7B7B7"/>
  1721. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1722. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1723. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1724. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1725. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1726. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1727. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1728. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1729. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1730. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1731. <stop offset="0.95" style="stop-color:#888888"/>
  1732. <stop offset="1" style="stop-color:#666666"/>
  1733. </linearGradient>
  1734. <circle class="st97" cx="0.4" cy="104" r="46"/>
  1735. <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)">
  1736. <stop offset="0" style="stop-color:#B7B7B7"/>
  1737. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1738. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1739. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1740. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1741. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1742. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1743. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1744. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1745. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1746. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1747. <stop offset="0.95" style="stop-color:#888888"/>
  1748. <stop offset="1" style="stop-color:#666666"/>
  1749. </linearGradient>
  1750. <circle class="st98" cx="-1.5" cy="104" r="46"/>
  1751. </g>
  1752. </g>
  1753. </g>
  1754. <g>
  1755. <g>
  1756. <defs>
  1757. <rect id="SVGID_101_" y="-200" width="150" height="150"/>
  1758. </defs>
  1759. <clipPath id="SVGID_102_">
  1760. <use xlink:href="#SVGID_101_" style="overflow:visible;"/>
  1761. </clipPath>
  1762. <g id="图层_13" class="st99">
  1763. <g>
  1764. <defs>
  1765. <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 "/>
  1766. </defs>
  1767. <clipPath id="SVGID_104_">
  1768. <use xlink:href="#SVGID_103_" style="overflow:visible;"/>
  1769. </clipPath>
  1770. <g class="st100">
  1771. <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)">
  1772. <stop offset="0" style="stop-color:#B7B7B7"/>
  1773. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1774. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1775. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1776. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1777. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1778. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1779. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1780. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1781. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1782. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1783. <stop offset="0.95" style="stop-color:#888888"/>
  1784. <stop offset="1" style="stop-color:#666666"/>
  1785. </linearGradient>
  1786. <ellipse class="st101" cx="75.3" cy="-26.6" rx="29.8" ry="27"/>
  1787. <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)">
  1788. <stop offset="0" style="stop-color:#B7B7B7"/>
  1789. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1790. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1791. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1792. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1793. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1794. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1795. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1796. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1797. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1798. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1799. <stop offset="0.95" style="stop-color:#888888"/>
  1800. <stop offset="1" style="stop-color:#666666"/>
  1801. </linearGradient>
  1802. <ellipse class="st102" cx="75.3" cy="-25.5" rx="29.8" ry="27"/>
  1803. <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)">
  1804. <stop offset="0" style="stop-color:#B7B7B7"/>
  1805. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1806. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1807. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1808. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1809. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1810. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1811. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1812. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1813. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1814. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1815. <stop offset="0.95" style="stop-color:#888888"/>
  1816. <stop offset="1" style="stop-color:#666666"/>
  1817. </linearGradient>
  1818. <ellipse class="st103" cx="75.3" cy="-24.4" rx="29.8" ry="27"/>
  1819. <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)">
  1820. <stop offset="0" style="stop-color:#B7B7B7"/>
  1821. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1822. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1823. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1824. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1825. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1826. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1827. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1828. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1829. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1830. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1831. <stop offset="0.95" style="stop-color:#888888"/>
  1832. <stop offset="1" style="stop-color:#666666"/>
  1833. </linearGradient>
  1834. <ellipse class="st104" cx="75.3" cy="-23.4" rx="29.8" ry="27"/>
  1835. <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)">
  1836. <stop offset="0" style="stop-color:#B7B7B7"/>
  1837. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1838. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1839. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1840. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1841. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1842. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1843. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1844. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1845. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1846. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1847. <stop offset="0.95" style="stop-color:#888888"/>
  1848. <stop offset="1" style="stop-color:#666666"/>
  1849. </linearGradient>
  1850. <ellipse class="st105" cx="75.3" cy="-22.3" rx="29.8" ry="27"/>
  1851. <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)">
  1852. <stop offset="0" style="stop-color:#B7B7B7"/>
  1853. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1854. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1855. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1856. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1857. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1858. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1859. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1860. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1861. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1862. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1863. <stop offset="0.95" style="stop-color:#888888"/>
  1864. <stop offset="1" style="stop-color:#666666"/>
  1865. </linearGradient>
  1866. <ellipse class="st106" cx="75.3" cy="-21.2" rx="29.8" ry="27"/>
  1867. <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)">
  1868. <stop offset="0" style="stop-color:#B7B7B7"/>
  1869. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1870. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1871. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1872. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1873. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1874. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1875. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1876. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1877. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1878. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1879. <stop offset="0.95" style="stop-color:#888888"/>
  1880. <stop offset="1" style="stop-color:#666666"/>
  1881. </linearGradient>
  1882. <ellipse class="st107" cx="75.3" cy="-20.1" rx="29.8" ry="27"/>
  1883. <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)">
  1884. <stop offset="0" style="stop-color:#B7B7B7"/>
  1885. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1886. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1887. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1888. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1889. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1890. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1891. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1892. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1893. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1894. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1895. <stop offset="0.95" style="stop-color:#888888"/>
  1896. <stop offset="1" style="stop-color:#666666"/>
  1897. </linearGradient>
  1898. <ellipse class="st108" cx="75.3" cy="-19.1" rx="29.8" ry="27"/>
  1899. <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)">
  1900. <stop offset="0" style="stop-color:#B7B7B7"/>
  1901. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1902. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1903. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1904. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1905. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1906. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1907. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1908. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1909. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1910. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1911. <stop offset="0.95" style="stop-color:#888888"/>
  1912. <stop offset="1" style="stop-color:#666666"/>
  1913. </linearGradient>
  1914. <ellipse class="st109" cx="75.3" cy="-18" rx="29.8" ry="27"/>
  1915. <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)">
  1916. <stop offset="0" style="stop-color:#B7B7B7"/>
  1917. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1918. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1919. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1920. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1921. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1922. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1923. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1924. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1925. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1926. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1927. <stop offset="0.95" style="stop-color:#888888"/>
  1928. <stop offset="1" style="stop-color:#666666"/>
  1929. </linearGradient>
  1930. <ellipse class="st110" cx="75.3" cy="-16.9" rx="29.8" ry="27"/>
  1931. <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)">
  1932. <stop offset="0" style="stop-color:#B7B7B7"/>
  1933. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1934. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1935. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1936. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1937. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1938. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1939. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1940. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1941. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1942. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1943. <stop offset="0.95" style="stop-color:#888888"/>
  1944. <stop offset="1" style="stop-color:#666666"/>
  1945. </linearGradient>
  1946. <ellipse class="st111" cx="75.3" cy="-15.8" rx="29.8" ry="27"/>
  1947. <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)">
  1948. <stop offset="0" style="stop-color:#B7B7B7"/>
  1949. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1950. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1951. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1952. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1953. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1954. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1955. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1956. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1957. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1958. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1959. <stop offset="0.95" style="stop-color:#888888"/>
  1960. <stop offset="1" style="stop-color:#666666"/>
  1961. </linearGradient>
  1962. <ellipse class="st112" cx="75.3" cy="-14.8" rx="29.8" ry="27"/>
  1963. <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)">
  1964. <stop offset="0" style="stop-color:#B7B7B7"/>
  1965. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1966. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1967. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1968. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1969. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1970. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1971. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1972. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1973. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1974. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1975. <stop offset="0.95" style="stop-color:#888888"/>
  1976. <stop offset="1" style="stop-color:#666666"/>
  1977. </linearGradient>
  1978. <ellipse class="st113" cx="75.3" cy="-13.7" rx="29.8" ry="27"/>
  1979. <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)">
  1980. <stop offset="0" style="stop-color:#B7B7B7"/>
  1981. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1982. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1983. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1984. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1985. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1986. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1987. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1988. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1989. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1990. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1991. <stop offset="0.95" style="stop-color:#888888"/>
  1992. <stop offset="1" style="stop-color:#666666"/>
  1993. </linearGradient>
  1994. <ellipse class="st114" cx="75.3" cy="-12.6" rx="29.8" ry="27"/>
  1995. <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)">
  1996. <stop offset="0" style="stop-color:#B7B7B7"/>
  1997. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1998. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1999. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2000. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2001. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2002. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2003. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2004. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2005. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2006. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2007. <stop offset="0.95" style="stop-color:#888888"/>
  2008. <stop offset="1" style="stop-color:#666666"/>
  2009. </linearGradient>
  2010. <ellipse class="st115" cx="75.3" cy="-11.5" rx="29.8" ry="27"/>
  2011. <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)">
  2012. <stop offset="0" style="stop-color:#B7B7B7"/>
  2013. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2014. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2015. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2016. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2017. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2018. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2019. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2020. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2021. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2022. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2023. <stop offset="0.95" style="stop-color:#888888"/>
  2024. <stop offset="1" style="stop-color:#666666"/>
  2025. </linearGradient>
  2026. <ellipse class="st116" cx="75.3" cy="-10.5" rx="29.8" ry="27"/>
  2027. <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)">
  2028. <stop offset="0" style="stop-color:#B7B7B7"/>
  2029. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2030. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2031. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2032. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2033. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2034. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2035. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2036. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2037. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2038. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2039. <stop offset="0.95" style="stop-color:#888888"/>
  2040. <stop offset="1" style="stop-color:#666666"/>
  2041. </linearGradient>
  2042. <ellipse class="st117" cx="75.3" cy="-9.4" rx="29.8" ry="27"/>
  2043. <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)">
  2044. <stop offset="0" style="stop-color:#B7B7B7"/>
  2045. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2046. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2047. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2048. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2049. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2050. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2051. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2052. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2053. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2054. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2055. <stop offset="0.95" style="stop-color:#888888"/>
  2056. <stop offset="1" style="stop-color:#666666"/>
  2057. </linearGradient>
  2058. <ellipse class="st118" cx="75.3" cy="-8.3" rx="29.8" ry="27"/>
  2059. <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)">
  2060. <stop offset="0" style="stop-color:#B7B7B7"/>
  2061. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2062. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2063. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2064. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2065. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2066. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2067. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2068. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2069. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2070. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2071. <stop offset="0.95" style="stop-color:#888888"/>
  2072. <stop offset="1" style="stop-color:#666666"/>
  2073. </linearGradient>
  2074. <ellipse class="st119" cx="75.3" cy="-7.2" rx="29.8" ry="27"/>
  2075. <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)">
  2076. <stop offset="0" style="stop-color:#B7B7B7"/>
  2077. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2078. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2079. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2080. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2081. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2082. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2083. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2084. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2085. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2086. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2087. <stop offset="0.95" style="stop-color:#888888"/>
  2088. <stop offset="1" style="stop-color:#666666"/>
  2089. </linearGradient>
  2090. <ellipse class="st120" cx="75.3" cy="-6.1" rx="29.8" ry="27"/>
  2091. <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)">
  2092. <stop offset="0" style="stop-color:#B7B7B7"/>
  2093. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2094. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2095. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2096. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2097. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2098. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2099. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2100. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2101. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2102. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2103. <stop offset="0.95" style="stop-color:#888888"/>
  2104. <stop offset="1" style="stop-color:#666666"/>
  2105. </linearGradient>
  2106. <ellipse class="st121" cx="75.3" cy="-5.1" rx="29.8" ry="27"/>
  2107. <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)">
  2108. <stop offset="0" style="stop-color:#B7B7B7"/>
  2109. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2110. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2111. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2112. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2113. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2114. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2115. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2116. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2117. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2118. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2119. <stop offset="0.95" style="stop-color:#888888"/>
  2120. <stop offset="1" style="stop-color:#666666"/>
  2121. </linearGradient>
  2122. <ellipse class="st122" cx="75.3" cy="-4" rx="29.8" ry="27"/>
  2123. <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)">
  2124. <stop offset="0" style="stop-color:#B7B7B7"/>
  2125. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2126. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2127. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2128. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2129. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2130. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2131. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2132. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2133. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2134. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2135. <stop offset="0.95" style="stop-color:#888888"/>
  2136. <stop offset="1" style="stop-color:#666666"/>
  2137. </linearGradient>
  2138. <ellipse class="st123" cx="75.3" cy="-2.9" rx="29.8" ry="27"/>
  2139. <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)">
  2140. <stop offset="0" style="stop-color:#B7B7B7"/>
  2141. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2142. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2143. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2144. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2145. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2146. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2147. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2148. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2149. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2150. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2151. <stop offset="0.95" style="stop-color:#888888"/>
  2152. <stop offset="1" style="stop-color:#666666"/>
  2153. </linearGradient>
  2154. <ellipse class="st124" cx="75.3" cy="-1.8" rx="29.8" ry="27"/>
  2155. <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)">
  2156. <stop offset="0" style="stop-color:#B7B7B7"/>
  2157. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2158. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2159. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2160. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2161. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2162. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2163. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2164. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2165. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2166. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2167. <stop offset="0.95" style="stop-color:#888888"/>
  2168. <stop offset="1" style="stop-color:#666666"/>
  2169. </linearGradient>
  2170. <ellipse class="st125" cx="75.3" cy="-0.8" rx="29.8" ry="27"/>
  2171. <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)">
  2172. <stop offset="0" style="stop-color:#B7B7B7"/>
  2173. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2174. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2175. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2176. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2177. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2178. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2179. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2180. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2181. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2182. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2183. <stop offset="0.95" style="stop-color:#888888"/>
  2184. <stop offset="1" style="stop-color:#666666"/>
  2185. </linearGradient>
  2186. <ellipse class="st126" cx="75.3" cy="0.3" rx="29.8" ry="27"/>
  2187. <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)">
  2188. <stop offset="0" style="stop-color:#B7B7B7"/>
  2189. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2190. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2191. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2192. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2193. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2194. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2195. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2196. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2197. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2198. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2199. <stop offset="0.95" style="stop-color:#888888"/>
  2200. <stop offset="1" style="stop-color:#666666"/>
  2201. </linearGradient>
  2202. <ellipse class="st127" cx="75.3" cy="1.4" rx="29.8" ry="27"/>
  2203. <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)">
  2204. <stop offset="0" style="stop-color:#B7B7B7"/>
  2205. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2206. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2207. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2208. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2209. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2210. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2211. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2212. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2213. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2214. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2215. <stop offset="0.95" style="stop-color:#888888"/>
  2216. <stop offset="1" style="stop-color:#666666"/>
  2217. </linearGradient>
  2218. <ellipse class="st128" cx="75.3" cy="2.5" rx="29.8" ry="27"/>
  2219. <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)">
  2220. <stop offset="0" style="stop-color:#B7B7B7"/>
  2221. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2222. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2223. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2224. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2225. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2226. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2227. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2228. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2229. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2230. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2231. <stop offset="0.95" style="stop-color:#888888"/>
  2232. <stop offset="1" style="stop-color:#666666"/>
  2233. </linearGradient>
  2234. <ellipse class="st129" cx="75.3" cy="3.5" rx="29.8" ry="27"/>
  2235. <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)">
  2236. <stop offset="0" style="stop-color:#B7B7B7"/>
  2237. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2238. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2239. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2240. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2241. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2242. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2243. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2244. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2245. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2246. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2247. <stop offset="0.95" style="stop-color:#888888"/>
  2248. <stop offset="1" style="stop-color:#666666"/>
  2249. </linearGradient>
  2250. <ellipse class="st130" cx="75.3" cy="4.6" rx="29.8" ry="27"/>
  2251. <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)">
  2252. <stop offset="0" style="stop-color:#B7B7B7"/>
  2253. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2254. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2255. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2256. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2257. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2258. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2259. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2260. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2261. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2262. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2263. <stop offset="0.95" style="stop-color:#888888"/>
  2264. <stop offset="1" style="stop-color:#666666"/>
  2265. </linearGradient>
  2266. <ellipse class="st131" cx="75.3" cy="5.7" rx="29.8" ry="27"/>
  2267. <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)">
  2268. <stop offset="0" style="stop-color:#B7B7B7"/>
  2269. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2270. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2271. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2272. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2273. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2274. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2275. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2276. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2277. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2278. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2279. <stop offset="0.95" style="stop-color:#888888"/>
  2280. <stop offset="1" style="stop-color:#666666"/>
  2281. </linearGradient>
  2282. <ellipse class="st132" cx="75.3" cy="6.8" rx="29.8" ry="27"/>
  2283. <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)">
  2284. <stop offset="0" style="stop-color:#B7B7B7"/>
  2285. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2286. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2287. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2288. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2289. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2290. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2291. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2292. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2293. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2294. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2295. <stop offset="0.95" style="stop-color:#888888"/>
  2296. <stop offset="1" style="stop-color:#666666"/>
  2297. </linearGradient>
  2298. <ellipse class="st133" cx="75.3" cy="7.8" rx="29.8" ry="27"/>
  2299. <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)">
  2300. <stop offset="0" style="stop-color:#B7B7B7"/>
  2301. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2302. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2303. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2304. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2305. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2306. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2307. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2308. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2309. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2310. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2311. <stop offset="0.95" style="stop-color:#888888"/>
  2312. <stop offset="1" style="stop-color:#666666"/>
  2313. </linearGradient>
  2314. <ellipse class="st134" cx="75.3" cy="8.9" rx="29.8" ry="27"/>
  2315. <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)">
  2316. <stop offset="0" style="stop-color:#B7B7B7"/>
  2317. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2318. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2319. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2320. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2321. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2322. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2323. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2324. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2325. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2326. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2327. <stop offset="0.95" style="stop-color:#888888"/>
  2328. <stop offset="1" style="stop-color:#666666"/>
  2329. </linearGradient>
  2330. <ellipse class="st135" cx="75.3" cy="10" rx="29.8" ry="27"/>
  2331. <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)">
  2332. <stop offset="0" style="stop-color:#B7B7B7"/>
  2333. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2334. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2335. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2336. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2337. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2338. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2339. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2340. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2341. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2342. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2343. <stop offset="0.95" style="stop-color:#888888"/>
  2344. <stop offset="1" style="stop-color:#666666"/>
  2345. </linearGradient>
  2346. <ellipse class="st136" cx="75.3" cy="11.1" rx="29.8" ry="27"/>
  2347. <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)">
  2348. <stop offset="0" style="stop-color:#B7B7B7"/>
  2349. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2350. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2351. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2352. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2353. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2354. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2355. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2356. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2357. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2358. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2359. <stop offset="0.95" style="stop-color:#888888"/>
  2360. <stop offset="1" style="stop-color:#666666"/>
  2361. </linearGradient>
  2362. <ellipse class="st137" cx="75.3" cy="12.1" rx="29.8" ry="27"/>
  2363. <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)">
  2364. <stop offset="0" style="stop-color:#B7B7B7"/>
  2365. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2366. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2367. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2368. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2369. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2370. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2371. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2372. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2373. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2374. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2375. <stop offset="0.95" style="stop-color:#888888"/>
  2376. <stop offset="1" style="stop-color:#666666"/>
  2377. </linearGradient>
  2378. <ellipse class="st138" cx="75.3" cy="13.2" rx="29.8" ry="27"/>
  2379. <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)">
  2380. <stop offset="0" style="stop-color:#B7B7B7"/>
  2381. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2382. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2383. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2384. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2385. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2386. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2387. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2388. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2389. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2390. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2391. <stop offset="0.95" style="stop-color:#888888"/>
  2392. <stop offset="1" style="stop-color:#666666"/>
  2393. </linearGradient>
  2394. <ellipse class="st139" cx="75.3" cy="14.3" rx="29.8" ry="27"/>
  2395. <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)">
  2396. <stop offset="0" style="stop-color:#B7B7B7"/>
  2397. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2398. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2399. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2400. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2401. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2402. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2403. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2404. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2405. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2406. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2407. <stop offset="0.95" style="stop-color:#888888"/>
  2408. <stop offset="1" style="stop-color:#666666"/>
  2409. </linearGradient>
  2410. <ellipse class="st140" cx="75.3" cy="15.4" rx="29.8" ry="27"/>
  2411. <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)">
  2412. <stop offset="0" style="stop-color:#B7B7B7"/>
  2413. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2414. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2415. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2416. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2417. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2418. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2419. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2420. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2421. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2422. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2423. <stop offset="0.95" style="stop-color:#888888"/>
  2424. <stop offset="1" style="stop-color:#666666"/>
  2425. </linearGradient>
  2426. <ellipse class="st141" cx="75.3" cy="16.4" rx="29.8" ry="27"/>
  2427. <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)">
  2428. <stop offset="0" style="stop-color:#B7B7B7"/>
  2429. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2430. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2431. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2432. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2433. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2434. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2435. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2436. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2437. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2438. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2439. <stop offset="0.95" style="stop-color:#888888"/>
  2440. <stop offset="1" style="stop-color:#666666"/>
  2441. </linearGradient>
  2442. <ellipse class="st142" cx="75.3" cy="17.5" rx="29.8" ry="27"/>
  2443. <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)">
  2444. <stop offset="0" style="stop-color:#B7B7B7"/>
  2445. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2446. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2447. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2448. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2449. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2450. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2451. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2452. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2453. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2454. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2455. <stop offset="0.95" style="stop-color:#888888"/>
  2456. <stop offset="1" style="stop-color:#666666"/>
  2457. </linearGradient>
  2458. <ellipse class="st143" cx="75.3" cy="18.6" rx="29.8" ry="27"/>
  2459. <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)">
  2460. <stop offset="0" style="stop-color:#B7B7B7"/>
  2461. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2462. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2463. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2464. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2465. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2466. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2467. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2468. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2469. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2470. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2471. <stop offset="0.95" style="stop-color:#888888"/>
  2472. <stop offset="1" style="stop-color:#666666"/>
  2473. </linearGradient>
  2474. <ellipse class="st144" cx="75.3" cy="19.7" rx="29.8" ry="27"/>
  2475. <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)">
  2476. <stop offset="0" style="stop-color:#B7B7B7"/>
  2477. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2478. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2479. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2480. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2481. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2482. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2483. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2484. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2485. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2486. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2487. <stop offset="0.95" style="stop-color:#888888"/>
  2488. <stop offset="1" style="stop-color:#666666"/>
  2489. </linearGradient>
  2490. <ellipse class="st145" cx="75.3" cy="20.7" rx="29.8" ry="27"/>
  2491. <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)">
  2492. <stop offset="0" style="stop-color:#B7B7B7"/>
  2493. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2494. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2495. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2496. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2497. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2498. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2499. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2500. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2501. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2502. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2503. <stop offset="0.95" style="stop-color:#888888"/>
  2504. <stop offset="1" style="stop-color:#666666"/>
  2505. </linearGradient>
  2506. <ellipse class="st146" cx="75.3" cy="21.8" rx="29.8" ry="27"/>
  2507. <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)">
  2508. <stop offset="0" style="stop-color:#B7B7B7"/>
  2509. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2510. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2511. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2512. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2513. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2514. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2515. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2516. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2517. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2518. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2519. <stop offset="0.95" style="stop-color:#888888"/>
  2520. <stop offset="1" style="stop-color:#666666"/>
  2521. </linearGradient>
  2522. <ellipse class="st147" cx="75.3" cy="22.9" rx="29.8" ry="27"/>
  2523. <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)">
  2524. <stop offset="0" style="stop-color:#B7B7B7"/>
  2525. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2526. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2527. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2528. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2529. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2530. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2531. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2532. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2533. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2534. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2535. <stop offset="0.95" style="stop-color:#888888"/>
  2536. <stop offset="1" style="stop-color:#666666"/>
  2537. </linearGradient>
  2538. <ellipse class="st148" cx="75.3" cy="24" rx="29.8" ry="27"/>
  2539. <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)">
  2540. <stop offset="0" style="stop-color:#B7B7B7"/>
  2541. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2542. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2543. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2544. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2545. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2546. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2547. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2548. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2549. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2550. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2551. <stop offset="0.95" style="stop-color:#888888"/>
  2552. <stop offset="1" style="stop-color:#666666"/>
  2553. </linearGradient>
  2554. <ellipse class="st149" cx="75.3" cy="25" rx="29.8" ry="27"/>
  2555. <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)">
  2556. <stop offset="0" style="stop-color:#B7B7B7"/>
  2557. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2558. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2559. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2560. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2561. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2562. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2563. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2564. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2565. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2566. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2567. <stop offset="0.95" style="stop-color:#888888"/>
  2568. <stop offset="1" style="stop-color:#666666"/>
  2569. </linearGradient>
  2570. <ellipse class="st150" cx="75.3" cy="26.1" rx="29.8" ry="27"/>
  2571. <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)">
  2572. <stop offset="0" style="stop-color:#B7B7B7"/>
  2573. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2574. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2575. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2576. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2577. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2578. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2579. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2580. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2581. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2582. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2583. <stop offset="0.95" style="stop-color:#888888"/>
  2584. <stop offset="1" style="stop-color:#666666"/>
  2585. </linearGradient>
  2586. <ellipse class="st151" cx="75.3" cy="27.2" rx="29.8" ry="27"/>
  2587. <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)">
  2588. <stop offset="0" style="stop-color:#B7B7B7"/>
  2589. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2590. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2591. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2592. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2593. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2594. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2595. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2596. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2597. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2598. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2599. <stop offset="0.95" style="stop-color:#888888"/>
  2600. <stop offset="1" style="stop-color:#666666"/>
  2601. </linearGradient>
  2602. <ellipse class="st152" cx="75.3" cy="28.3" rx="29.8" ry="27"/>
  2603. <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)">
  2604. <stop offset="0" style="stop-color:#B7B7B7"/>
  2605. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2606. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2607. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2608. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2609. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2610. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2611. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2612. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2613. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2614. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2615. <stop offset="0.95" style="stop-color:#888888"/>
  2616. <stop offset="1" style="stop-color:#666666"/>
  2617. </linearGradient>
  2618. <ellipse class="st153" cx="75.3" cy="29.3" rx="29.8" ry="27"/>
  2619. <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)">
  2620. <stop offset="0" style="stop-color:#B7B7B7"/>
  2621. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2622. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2623. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2624. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2625. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2626. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2627. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2628. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2629. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2630. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2631. <stop offset="0.95" style="stop-color:#888888"/>
  2632. <stop offset="1" style="stop-color:#666666"/>
  2633. </linearGradient>
  2634. <ellipse class="st154" cx="75.3" cy="30.4" rx="29.8" ry="27"/>
  2635. <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)">
  2636. <stop offset="0" style="stop-color:#B7B7B7"/>
  2637. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2638. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2639. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2640. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2641. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2642. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2643. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2644. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2645. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2646. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2647. <stop offset="0.95" style="stop-color:#888888"/>
  2648. <stop offset="1" style="stop-color:#666666"/>
  2649. </linearGradient>
  2650. <ellipse class="st155" cx="75.3" cy="31.5" rx="29.8" ry="27"/>
  2651. <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)">
  2652. <stop offset="0" style="stop-color:#B7B7B7"/>
  2653. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2654. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2655. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2656. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2657. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2658. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2659. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2660. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2661. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2662. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2663. <stop offset="0.95" style="stop-color:#888888"/>
  2664. <stop offset="1" style="stop-color:#666666"/>
  2665. </linearGradient>
  2666. <ellipse class="st156" cx="75.3" cy="32.6" rx="29.8" ry="27"/>
  2667. <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)">
  2668. <stop offset="0" style="stop-color:#B7B7B7"/>
  2669. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2670. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2671. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2672. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2673. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2674. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2675. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2676. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2677. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2678. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2679. <stop offset="0.95" style="stop-color:#888888"/>
  2680. <stop offset="1" style="stop-color:#666666"/>
  2681. </linearGradient>
  2682. <ellipse class="st157" cx="75.3" cy="33.6" rx="29.8" ry="27"/>
  2683. <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)">
  2684. <stop offset="0" style="stop-color:#B7B7B7"/>
  2685. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2686. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2687. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2688. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2689. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2690. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2691. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2692. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2693. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2694. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2695. <stop offset="0.95" style="stop-color:#888888"/>
  2696. <stop offset="1" style="stop-color:#666666"/>
  2697. </linearGradient>
  2698. <ellipse class="st158" cx="75.3" cy="34.7" rx="29.8" ry="27"/>
  2699. <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)">
  2700. <stop offset="0" style="stop-color:#B7B7B7"/>
  2701. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2702. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2703. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2704. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2705. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2706. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2707. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2708. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2709. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2710. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2711. <stop offset="0.95" style="stop-color:#888888"/>
  2712. <stop offset="1" style="stop-color:#666666"/>
  2713. </linearGradient>
  2714. <ellipse class="st159" cx="75.3" cy="35.8" rx="29.8" ry="27"/>
  2715. <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)">
  2716. <stop offset="0" style="stop-color:#B7B7B7"/>
  2717. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2718. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2719. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2720. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2721. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2722. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2723. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2724. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2725. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2726. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2727. <stop offset="0.95" style="stop-color:#888888"/>
  2728. <stop offset="1" style="stop-color:#666666"/>
  2729. </linearGradient>
  2730. <ellipse class="st160" cx="75.3" cy="36.9" rx="29.8" ry="27"/>
  2731. <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)">
  2732. <stop offset="0" style="stop-color:#B7B7B7"/>
  2733. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2734. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2735. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2736. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2737. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2738. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2739. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2740. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2741. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2742. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2743. <stop offset="0.95" style="stop-color:#888888"/>
  2744. <stop offset="1" style="stop-color:#666666"/>
  2745. </linearGradient>
  2746. <ellipse class="st161" cx="75.3" cy="37.9" rx="29.8" ry="27"/>
  2747. <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)">
  2748. <stop offset="0" style="stop-color:#B7B7B7"/>
  2749. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2750. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2751. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2752. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2753. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2754. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2755. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2756. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2757. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2758. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2759. <stop offset="0.95" style="stop-color:#888888"/>
  2760. <stop offset="1" style="stop-color:#666666"/>
  2761. </linearGradient>
  2762. <ellipse class="st162" cx="75.3" cy="39" rx="29.8" ry="27"/>
  2763. <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)">
  2764. <stop offset="0" style="stop-color:#B7B7B7"/>
  2765. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2766. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2767. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2768. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2769. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2770. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2771. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2772. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2773. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2774. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2775. <stop offset="0.95" style="stop-color:#888888"/>
  2776. <stop offset="1" style="stop-color:#666666"/>
  2777. </linearGradient>
  2778. <ellipse class="st163" cx="75.3" cy="40.1" rx="29.8" ry="27"/>
  2779. <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)">
  2780. <stop offset="0" style="stop-color:#B7B7B7"/>
  2781. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2782. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2783. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2784. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2785. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2786. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2787. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2788. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2789. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2790. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2791. <stop offset="0.95" style="stop-color:#888888"/>
  2792. <stop offset="1" style="stop-color:#666666"/>
  2793. </linearGradient>
  2794. <ellipse class="st164" cx="75.3" cy="41.2" rx="29.8" ry="27"/>
  2795. <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)">
  2796. <stop offset="0" style="stop-color:#B7B7B7"/>
  2797. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2798. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2799. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2800. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2801. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2802. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2803. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2804. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2805. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2806. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2807. <stop offset="0.95" style="stop-color:#888888"/>
  2808. <stop offset="1" style="stop-color:#666666"/>
  2809. </linearGradient>
  2810. <ellipse class="st165" cx="75.3" cy="42.3" rx="29.8" ry="27"/>
  2811. </g>
  2812. </g>
  2813. </g>
  2814. </g>
  2815. </g>
  2816. </svg>