iot-管道(21)_画板 1.svg 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785
  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. </style>
  106. <title>iot-管道(21)</title>
  107. <g id="图层_2">
  108. <g>
  109. <defs>
  110. <rect id="SVGID_1_" y="0" width="150" height="150"/>
  111. </defs>
  112. <clipPath id="SVGID_2_">
  113. <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
  114. </clipPath>
  115. <g class="st0">
  116. <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-26.36" y1="288.54" x2="-26.36" y2="380.46" gradientTransform="matrix(0 -1 -1 0 381.19 129.3)">
  117. <stop offset="0" style="stop-color:#B7B7B7"/>
  118. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  119. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  120. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  121. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  122. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  123. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  124. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  125. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  126. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  127. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  128. <stop offset="0.95" style="stop-color:#888888"/>
  129. <stop offset="1" style="stop-color:#666666"/>
  130. </linearGradient>
  131. <circle class="st1" cx="46.7" cy="155.7" r="46"/>
  132. <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-30.38" y1="287.44" x2="-30.38" y2="379.36" gradientTransform="matrix(6.123234e-017 -1 -1 -6.123234e-017 380.09 123.53)">
  133. <stop offset="0" style="stop-color:#B7B7B7"/>
  134. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  135. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  136. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  137. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  138. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  139. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  140. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  141. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  142. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  143. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  144. <stop offset="0.95" style="stop-color:#888888"/>
  145. <stop offset="1" style="stop-color:#666666"/>
  146. </linearGradient>
  147. <circle class="st2" cx="46.7" cy="153.9" r="46"/>
  148. <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-34.4" y1="286.34" x2="-34.4" y2="378.26" gradientTransform="matrix(6.123234e-017 -1 -1 -6.123234e-017 378.99 117.76)">
  149. <stop offset="0" style="stop-color:#B7B7B7"/>
  150. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  151. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  152. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  153. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  154. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  155. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  156. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  157. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  158. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  159. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  160. <stop offset="0.95" style="stop-color:#888888"/>
  161. <stop offset="1" style="stop-color:#666666"/>
  162. </linearGradient>
  163. <circle class="st3" cx="46.7" cy="152.2" r="46"/>
  164. <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-37.6892" y1="284.1203" x2="-37.6892" y2="376.0403" gradientTransform="matrix(3.316162e-003 -1 -1 -3.316162e-003 376.8935 113.8056)">
  165. <stop offset="0" style="stop-color:#B7B7B7"/>
  166. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  167. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  168. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  169. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  170. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  171. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  172. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  173. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  174. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  175. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  176. <stop offset="0.95" style="stop-color:#888888"/>
  177. <stop offset="1" style="stop-color:#666666"/>
  178. </linearGradient>
  179. <circle class="st4" cx="46.7" cy="150.4" r="46"/>
  180. <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-37.8425" y1="277.0941" x2="-37.8425" y2="369.0145" gradientTransform="matrix(2.041890e-002 -0.9998 -0.9998 -2.041890e-002 370.4696 117.3218)">
  181. <stop offset="0" style="stop-color:#B7B7B7"/>
  182. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  183. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  184. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  185. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  186. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  187. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  188. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  189. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  190. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  191. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  192. <stop offset="0.95" style="stop-color:#888888"/>
  193. <stop offset="1" style="stop-color:#666666"/>
  194. </linearGradient>
  195. <circle class="st5" cx="46.7" cy="148.6" r="46"/>
  196. <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-37.8537" y1="270.1622" x2="-37.8537" y2="362.0834" gradientTransform="matrix(3.769025e-002 -0.9993 -0.9993 -3.769025e-002 364.0949 120.8179)">
  197. <stop offset="0" style="stop-color:#B7B7B7"/>
  198. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  199. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  200. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  201. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  202. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  203. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  204. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  205. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  206. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  207. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  208. <stop offset="0.95" style="stop-color:#888888"/>
  209. <stop offset="1" style="stop-color:#666666"/>
  210. </linearGradient>
  211. <circle class="st6" cx="46.8" cy="146.7" r="46"/>
  212. <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-38.9347" y1="265.2468" x2="-38.9347" y2="357.1668" gradientTransform="matrix(5.000000e-002 -1 -1 -5.000000e-002 357.38 121.3945)">
  213. <stop offset="0" style="stop-color:#B7B7B7"/>
  214. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  215. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  216. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  217. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  218. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  219. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  220. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  221. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  222. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  223. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  224. <stop offset="0.95" style="stop-color:#888888"/>
  225. <stop offset="1" style="stop-color:#666666"/>
  226. </linearGradient>
  227. <circle class="st7" cx="46.8" cy="144.9" r="46"/>
  228. <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-37.6309" y1="256.5039" x2="-37.6309" y2="348.4279" gradientTransform="matrix(7.201964e-002 -0.9974 -0.9974 -7.201964e-002 351.3606 127.3403)">
  229. <stop offset="0" style="stop-color:#B7B7B7"/>
  230. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  231. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  232. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  233. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  234. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  235. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  236. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  237. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  238. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  239. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  240. <stop offset="0.95" style="stop-color:#888888"/>
  241. <stop offset="1" style="stop-color:#666666"/>
  242. </linearGradient>
  243. <circle class="st8" cx="47" cy="143.1" r="46"/>
  244. <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-37.3791" y1="249.7755" x2="-37.3791" y2="341.7012" gradientTransform="matrix(8.906814e-002 -0.996 -0.996 -8.906814e-002 345.0023 130.3903)">
  245. <stop offset="0" style="stop-color:#B7B7B7"/>
  246. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  247. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  248. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  249. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  250. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  251. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  252. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  253. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  254. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  255. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  256. <stop offset="0.95" style="stop-color:#888888"/>
  257. <stop offset="1" style="stop-color:#666666"/>
  258. </linearGradient>
  259. <circle class="st9" cx="47.1" cy="141.3" r="46"/>
  260. <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-37.0111" y1="243.1632" x2="-37.0111" y2="335.0908" gradientTransform="matrix(0.1063 -0.9943 -0.9943 -0.1063 338.7129 133.4123)">
  261. <stop offset="0" style="stop-color:#B7B7B7"/>
  262. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  263. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  264. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  265. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  266. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  267. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  268. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  269. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  270. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  271. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  272. <stop offset="0.95" style="stop-color:#888888"/>
  273. <stop offset="1" style="stop-color:#666666"/>
  274. </linearGradient>
  275. <circle class="st10" cx="47.3" cy="139.5" r="46"/>
  276. <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-36.5831" y1="236.6022" x2="-36.5831" y2="328.5318" gradientTransform="matrix(0.1233 -0.9924 -0.9924 -0.1233 332.4115 136.2237)">
  277. <stop offset="0" style="stop-color:#B7B7B7"/>
  278. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  279. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  280. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  281. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  282. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  283. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  284. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  285. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  286. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  287. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  288. <stop offset="0.95" style="stop-color:#888888"/>
  289. <stop offset="1" style="stop-color:#666666"/>
  290. </linearGradient>
  291. <circle class="st11" cx="47.5" cy="137.7" r="46"/>
  292. <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-36.055" y1="230.1243" x2="-36.055" y2="322.0559" gradientTransform="matrix(0.1402 -0.9901 -0.9901 -0.1402 326.1481 138.9317)">
  293. <stop offset="0" style="stop-color:#B7B7B7"/>
  294. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  295. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  296. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  297. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  298. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  299. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  300. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  301. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  302. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  303. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  304. <stop offset="0.95" style="stop-color:#888888"/>
  305. <stop offset="1" style="stop-color:#666666"/>
  306. </linearGradient>
  307. <circle class="st12" cx="47.7" cy="135.9" r="46"/>
  308. <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-35.4434" y1="223.7363" x2="-35.4434" y2="315.6698" gradientTransform="matrix(0.1571 -0.9876 -0.9876 -0.1571 319.922 141.5237)">
  309. <stop offset="0" style="stop-color:#B7B7B7"/>
  310. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  311. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  312. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  313. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  314. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  315. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  316. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  317. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  318. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  319. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  320. <stop offset="0.95" style="stop-color:#888888"/>
  321. <stop offset="1" style="stop-color:#666666"/>
  322. </linearGradient>
  323. <circle class="st13" cx="48" cy="134.1" r="46"/>
  324. <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-34.745" y1="217.4472" x2="-34.745" y2="309.3826" gradientTransform="matrix(0.174 -0.9847 -0.9847 -0.174 313.7325 144.007)">
  325. <stop offset="0" style="stop-color:#B7B7B7"/>
  326. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  327. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  328. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  329. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  330. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  331. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  332. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  333. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  334. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  335. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  336. <stop offset="0.95" style="stop-color:#888888"/>
  337. <stop offset="1" style="stop-color:#666666"/>
  338. </linearGradient>
  339. <circle class="st14" cx="48.3" cy="132.4" r="46"/>
  340. <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-33.9539" y1="211.2472" x2="-33.9539" y2="303.1844" gradientTransform="matrix(0.1908 -0.9816 -0.9816 -0.1908 307.5887 146.389)">
  341. <stop offset="0" style="stop-color:#B7B7B7"/>
  342. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  343. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  344. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  345. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  346. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  347. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  348. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  349. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  350. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  351. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  352. <stop offset="0.95" style="stop-color:#888888"/>
  353. <stop offset="1" style="stop-color:#666666"/>
  354. </linearGradient>
  355. <circle class="st15" cx="48.6" cy="130.6" r="46"/>
  356. <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-33.1197" y1="205.1112" x2="-33.1197" y2="297.05" gradientTransform="matrix(0.2074 -0.9783 -0.9783 -0.2074 301.4602 148.5744)">
  357. <stop offset="0" style="stop-color:#B7B7B7"/>
  358. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  359. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  360. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  361. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  362. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  363. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  364. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  365. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  366. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  367. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  368. <stop offset="0.95" style="stop-color:#888888"/>
  369. <stop offset="1" style="stop-color:#666666"/>
  370. </linearGradient>
  371. <circle class="st16" cx="49" cy="128.9" r="46"/>
  372. <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-31.9041" y1="198.3477" x2="-31.9041" y2="290.2677" gradientTransform="matrix(0.22 -0.97 -0.97 -0.22 292.2233 149.7258)">
  373. <stop offset="0" style="stop-color:#B7B7B7"/>
  374. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  375. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  376. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  377. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  378. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  379. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  380. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  381. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  382. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  383. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  384. <stop offset="0.95" style="stop-color:#888888"/>
  385. <stop offset="1" style="stop-color:#666666"/>
  386. </linearGradient>
  387. <circle class="st17" cx="49.3" cy="127.2" r="46"/>
  388. <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-31.1672" y1="193.1568" x2="-31.1672" y2="285.0984" gradientTransform="matrix(0.2406 -0.9706 -0.9706 -0.2406 289.3628 152.7342)">
  389. <stop offset="0" style="stop-color:#B7B7B7"/>
  390. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  391. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  392. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  393. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  394. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  395. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  396. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  397. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  398. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  399. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  400. <stop offset="0.95" style="stop-color:#888888"/>
  401. <stop offset="1" style="stop-color:#666666"/>
  402. </linearGradient>
  403. <circle class="st18" cx="49.8" cy="125.5" r="46"/>
  404. <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-30.0958" y1="187.3131" x2="-30.0958" y2="279.2558" gradientTransform="matrix(0.257 -0.9664 -0.9664 -0.257 283.3845 154.6105)">
  405. <stop offset="0" style="stop-color:#B7B7B7"/>
  406. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  407. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  408. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  409. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  410. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  411. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  412. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  413. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  414. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  415. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  416. <stop offset="0.95" style="stop-color:#888888"/>
  417. <stop offset="1" style="stop-color:#666666"/>
  418. </linearGradient>
  419. <circle class="st19" cx="50.2" cy="123.7" r="46"/>
  420. <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-29.1237" y1="181.4247" x2="-29.1237" y2="273.3547" gradientTransform="matrix(0.27 -0.96 -0.96 -0.27 275.7744 155.2003)">
  421. <stop offset="0" style="stop-color:#B7B7B7"/>
  422. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  423. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  424. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  425. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  426. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  427. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  428. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  429. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  430. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  431. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  432. <stop offset="0.95" style="stop-color:#888888"/>
  433. <stop offset="1" style="stop-color:#666666"/>
  434. </linearGradient>
  435. <circle class="st20" cx="50.7" cy="122.1" r="46"/>
  436. <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-27.7591" y1="175.9017" x2="-27.7591" y2="267.846" gradientTransform="matrix(0.2894 -0.9572 -0.9572 -0.2894 271.5743 158.0012)">
  437. <stop offset="0" style="stop-color:#B7B7B7"/>
  438. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  439. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  440. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  441. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  442. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  443. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  444. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  445. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  446. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  447. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  448. <stop offset="0.95" style="stop-color:#888888"/>
  449. <stop offset="1" style="stop-color:#666666"/>
  450. </linearGradient>
  451. <circle class="st21" cx="51.2" cy="120.4" r="46"/>
  452. <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-26.4514" y1="170.3765" x2="-26.4514" y2="262.3213" gradientTransform="matrix(0.3055 -0.9522 -0.9522 -0.3055 265.7654 159.6143)">
  453. <stop offset="0" style="stop-color:#B7B7B7"/>
  454. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  455. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  456. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  457. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  458. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  459. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  460. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  461. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  462. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  463. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  464. <stop offset="0.95" style="stop-color:#888888"/>
  465. <stop offset="1" style="stop-color:#666666"/>
  466. </linearGradient>
  467. <circle class="st22" cx="51.7" cy="118.7" r="46"/>
  468. <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-25.1181" y1="164.9077" x2="-25.1181" y2="256.8527" gradientTransform="matrix(0.3214 -0.9469 -0.9469 -0.3214 259.9927 161.0401)">
  469. <stop offset="0" style="stop-color:#B7B7B7"/>
  470. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  471. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  472. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  473. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  474. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  475. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  476. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  477. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  478. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  479. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  480. <stop offset="0.95" style="stop-color:#888888"/>
  481. <stop offset="1" style="stop-color:#666666"/>
  482. </linearGradient>
  483. <circle class="st23" cx="52.2" cy="117" r="46"/>
  484. <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-23.7355" y1="159.5521" x2="-23.7355" y2="251.4971" gradientTransform="matrix(0.3373 -0.9414 -0.9414 -0.3373 254.2883 162.3702)">
  485. <stop offset="0" style="stop-color:#B7B7B7"/>
  486. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  487. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  488. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  489. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  490. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  491. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  492. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  493. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  494. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  495. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  496. <stop offset="0.95" style="stop-color:#888888"/>
  497. <stop offset="1" style="stop-color:#666666"/>
  498. </linearGradient>
  499. <circle class="st24" cx="52.8" cy="115.4" r="46"/>
  500. <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-22.2556" y1="154.3055" x2="-22.2556" y2="246.2504" gradientTransform="matrix(0.353 -0.9356 -0.9356 -0.353 248.6417 163.632)">
  501. <stop offset="0" style="stop-color:#B7B7B7"/>
  502. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  503. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  504. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  505. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  506. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  507. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  508. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  509. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  510. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  511. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  512. <stop offset="0.95" style="stop-color:#888888"/>
  513. <stop offset="1" style="stop-color:#666666"/>
  514. </linearGradient>
  515. <circle class="st25" cx="53.4" cy="113.8" r="46"/>
  516. <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-20.5608" y1="149.191" x2="-20.5608" y2="241.0529" gradientTransform="matrix(0.37 -0.93 -0.93 -0.37 243.5677 165.3993)">
  517. <stop offset="0" style="stop-color:#B7B7B7"/>
  518. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  519. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  520. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  521. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  522. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  523. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  524. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  525. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  526. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  527. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  528. <stop offset="0.95" style="stop-color:#888888"/>
  529. <stop offset="1" style="stop-color:#666666"/>
  530. </linearGradient>
  531. <circle class="st26" cx="54" cy="112.1" r="46"/>
  532. <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-18.9637" y1="143.1327" x2="-18.9637" y2="235.0527" gradientTransform="matrix(0.38 -0.92 -0.92 -0.38 234.9888 164.5782)">
  533. <stop offset="0" style="stop-color:#B7B7B7"/>
  534. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  535. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  536. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  537. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  538. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  539. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  540. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  541. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  542. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  543. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  544. <stop offset="0.95" style="stop-color:#888888"/>
  545. <stop offset="1" style="stop-color:#666666"/>
  546. </linearGradient>
  547. <circle class="st27" cx="54.7" cy="110.5" r="46"/>
  548. <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-18.3748" y1="140.419" x2="-18.3748" y2="232.339" gradientTransform="matrix(0.4 -0.92 -0.92 -0.4 233.8088 166.416)">
  549. <stop offset="0" style="stop-color:#B7B7B7"/>
  550. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  551. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  552. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  553. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  554. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  555. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  556. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  557. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  558. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  559. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  560. <stop offset="0.95" style="stop-color:#888888"/>
  561. <stop offset="1" style="stop-color:#666666"/>
  562. </linearGradient>
  563. <circle class="st28" cx="55.4" cy="108.9" r="46"/>
  564. <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-15.8264" y1="134.2997" x2="-15.8264" y2="226.2422" gradientTransform="matrix(0.4145 -0.91 -0.91 -0.4145 226.6832 167.676)">
  565. <stop offset="0" style="stop-color:#B7B7B7"/>
  566. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  567. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  568. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  569. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  570. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  571. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  572. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  573. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  574. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  575. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  576. <stop offset="0.95" style="stop-color:#888888"/>
  577. <stop offset="1" style="stop-color:#666666"/>
  578. </linearGradient>
  579. <circle class="st29" cx="56.1" cy="107.3" r="46"/>
  580. <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-14.0886" y1="129.5461" x2="-14.0886" y2="221.4875" gradientTransform="matrix(0.4296 -0.903 -0.903 -0.4296 221.3499 168.4635)">
  581. <stop offset="0" style="stop-color:#B7B7B7"/>
  582. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  583. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  584. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  585. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  586. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  587. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  588. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  589. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  590. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  591. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  592. <stop offset="0.95" style="stop-color:#888888"/>
  593. <stop offset="1" style="stop-color:#666666"/>
  594. </linearGradient>
  595. <circle class="st30" cx="56.8" cy="105.8" r="46"/>
  596. <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-12.3007" y1="124.9181" x2="-12.3007" y2="216.8584" gradientTransform="matrix(0.4445 -0.8958 -0.8958 -0.4445 216.0973 169.1674)">
  597. <stop offset="0" style="stop-color:#B7B7B7"/>
  598. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  599. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  600. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  601. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  602. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  603. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  604. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  605. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  606. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  607. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  608. <stop offset="0.95" style="stop-color:#888888"/>
  609. <stop offset="1" style="stop-color:#666666"/>
  610. </linearGradient>
  611. <circle class="st31" cx="57.5" cy="104.2" r="46"/>
  612. <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-10.446" y1="120.3914" x2="-10.446" y2="212.3305" gradientTransform="matrix(0.4593 -0.8883 -0.8883 -0.4593 210.9054 169.8154)">
  613. <stop offset="0" style="stop-color:#B7B7B7"/>
  614. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  615. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  616. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  617. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  618. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  619. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  620. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  621. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  622. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  623. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  624. <stop offset="0.95" style="stop-color:#888888"/>
  625. <stop offset="1" style="stop-color:#666666"/>
  626. </linearGradient>
  627. <circle class="st32" cx="58.3" cy="102.7" r="46"/>
  628. <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-8.5966" y1="115.9224" x2="-8.5966" y2="207.8602" gradientTransform="matrix(0.4738 -0.8806 -0.8806 -0.4738 205.7813 170.3004)">
  629. <stop offset="0" style="stop-color:#B7B7B7"/>
  630. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  631. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  632. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  633. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  634. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  635. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  636. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  637. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  638. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  639. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  640. <stop offset="0.95" style="stop-color:#888888"/>
  641. <stop offset="1" style="stop-color:#666666"/>
  642. </linearGradient>
  643. <circle class="st33" cx="59.1" cy="101.2" r="46"/>
  644. <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-6.6249" y1="111.6153" x2="-6.6249" y2="203.5518" gradientTransform="matrix(0.4883 -0.8727 -0.8727 -0.4883 200.7229 170.8294)">
  645. <stop offset="0" style="stop-color:#B7B7B7"/>
  646. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  647. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  648. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  649. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  650. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  651. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  652. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  653. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  654. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  655. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  656. <stop offset="0.95" style="stop-color:#888888"/>
  657. <stop offset="1" style="stop-color:#666666"/>
  658. </linearGradient>
  659. <circle class="st34" cx="60" cy="99.7" r="46"/>
  660. <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-4.6801" y1="107.3787" x2="-4.6801" y2="199.3138" gradientTransform="matrix(0.5026 -0.8645 -0.8645 -0.5026 195.7457 171.1906)">
  661. <stop offset="0" style="stop-color:#B7B7B7"/>
  662. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  663. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  664. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  665. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  666. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  667. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  668. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  669. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  670. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  671. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  672. <stop offset="0.95" style="stop-color:#888888"/>
  673. <stop offset="1" style="stop-color:#666666"/>
  674. </linearGradient>
  675. <circle class="st35" cx="60.8" cy="98.2" r="46"/>
  676. <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-3.4701" y1="104.9217" x2="-3.4701" y2="196.8417" gradientTransform="matrix(0.52 -0.86 -0.86 -0.52 193.4654 172.2928)">
  677. <stop offset="0" style="stop-color:#B7B7B7"/>
  678. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  679. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  680. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  681. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  682. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  683. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  684. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  685. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  686. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  687. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  688. <stop offset="0.95" style="stop-color:#888888"/>
  689. <stop offset="1" style="stop-color:#666666"/>
  690. </linearGradient>
  691. <circle class="st36" cx="61.7" cy="96.7" r="46"/>
  692. <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-0.6166" y1="99.2443" x2="-0.6166" y2="191.1765" gradientTransform="matrix(0.5307 -0.8476 -0.8476 -0.5307 185.9954 171.7546)">
  693. <stop offset="0" style="stop-color:#B7B7B7"/>
  694. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  695. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  696. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  697. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  698. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  699. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  700. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  701. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  702. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  703. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  704. <stop offset="0.95" style="stop-color:#888888"/>
  705. <stop offset="1" style="stop-color:#666666"/>
  706. </linearGradient>
  707. <circle class="st37" cx="62.6" cy="95.2" r="46"/>
  708. <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="1.4182" y1="95.285" x2="1.4182" y2="187.2159" gradientTransform="matrix(0.5443 -0.8389 -0.8389 -0.5443 181.2375 171.8588)">
  709. <stop offset="0" style="stop-color:#B7B7B7"/>
  710. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  711. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  712. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  713. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  714. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  715. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  716. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  717. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  718. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  719. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  720. <stop offset="0.95" style="stop-color:#888888"/>
  721. <stop offset="1" style="stop-color:#666666"/>
  722. </linearGradient>
  723. <circle class="st38" cx="63.5" cy="93.8" r="46"/>
  724. <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="3.8236" y1="91.7127" x2="3.8236" y2="183.6327" gradientTransform="matrix(0.56 -0.83 -0.83 -0.56 177.0587 172.9384)">
  725. <stop offset="0" style="stop-color:#B7B7B7"/>
  726. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  727. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  728. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  729. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  730. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  731. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  732. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  733. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  734. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  735. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  736. <stop offset="0.95" style="stop-color:#888888"/>
  737. <stop offset="1" style="stop-color:#666666"/>
  738. </linearGradient>
  739. <circle class="st39" cx="64.5" cy="92.3" r="46"/>
  740. <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="5.6883" y1="87.7597" x2="5.6883" y2="179.6878" gradientTransform="matrix(0.5714 -0.8207 -0.8207 -0.5714 171.92 172.0119)">
  741. <stop offset="0" style="stop-color:#B7B7B7"/>
  742. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  743. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  744. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  745. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  746. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  747. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  748. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  749. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  750. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  751. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  752. <stop offset="0.95" style="stop-color:#888888"/>
  753. <stop offset="1" style="stop-color:#666666"/>
  754. </linearGradient>
  755. <circle class="st40" cx="65.4" cy="90.9" r="46"/>
  756. <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="7.9175" y1="84.1685" x2="7.9175" y2="176.0953" gradientTransform="matrix(0.5848 -0.8112 -0.8112 -0.5848 167.3482 172.0556)">
  757. <stop offset="0" style="stop-color:#B7B7B7"/>
  758. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  759. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  760. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  761. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  762. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  763. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  764. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  765. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  766. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  767. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  768. <stop offset="0.95" style="stop-color:#888888"/>
  769. <stop offset="1" style="stop-color:#666666"/>
  770. </linearGradient>
  771. <circle class="st41" cx="66.4" cy="89.5" r="46"/>
  772. <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="11.084" y1="80.29" x2="11.084" y2="172.2154" gradientTransform="matrix(0.6 -0.8 -0.8 -0.6 162.562 173.354)">
  773. <stop offset="0" style="stop-color:#B7B7B7"/>
  774. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  775. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  776. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  777. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  778. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  779. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  780. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  781. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  782. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  783. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  784. <stop offset="0.95" style="stop-color:#888888"/>
  785. <stop offset="1" style="stop-color:#666666"/>
  786. </linearGradient>
  787. <circle class="st42" cx="67.4" cy="88.1" r="46"/>
  788. <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="12.9621" y1="76.5451" x2="12.9621" y2="168.4651" gradientTransform="matrix(0.61 -0.79 -0.79 -0.61 157.4131 171.8129)">
  789. <stop offset="0" style="stop-color:#B7B7B7"/>
  790. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  791. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  792. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  793. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  794. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  795. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  796. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  797. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  798. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  799. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  800. <stop offset="0.95" style="stop-color:#888888"/>
  801. <stop offset="1" style="stop-color:#666666"/>
  802. </linearGradient>
  803. <circle class="st43" cx="68.5" cy="86.8" r="46"/>
  804. <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="14.6436" y1="73.9489" x2="14.6436" y2="165.8723" gradientTransform="matrix(0.6236 -0.7817 -0.7817 -0.6236 154.1268 171.6645)">
  805. <stop offset="0" style="stop-color:#B7B7B7"/>
  806. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  807. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  808. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  809. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  810. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  811. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  812. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  813. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  814. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  815. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  816. <stop offset="0.95" style="stop-color:#888888"/>
  817. <stop offset="1" style="stop-color:#666666"/>
  818. </linearGradient>
  819. <circle class="st44" cx="69.5" cy="85.4" r="46"/>
  820. <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="18.1205" y1="70.7985" x2="18.1205" y2="162.7185" gradientTransform="matrix(0.64 -0.77 -0.77 -0.64 149.9553 173.6696)">
  821. <stop offset="0" style="stop-color:#B7B7B7"/>
  822. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  823. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  824. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  825. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  826. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  827. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  828. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  829. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  830. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  831. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  832. <stop offset="0.95" style="stop-color:#888888"/>
  833. <stop offset="1" style="stop-color:#666666"/>
  834. </linearGradient>
  835. <circle class="st45" cx="70.6" cy="84.1" r="46"/>
  836. <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="19.9568" y1="67.5193" x2="19.9568" y2="159.4365" gradientTransform="matrix(0.65 -0.76 -0.76 -0.65 145.4164 172.1185)">
  837. <stop offset="0" style="stop-color:#B7B7B7"/>
  838. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  839. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  840. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  841. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  842. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  843. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  844. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  845. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  846. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  847. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  848. <stop offset="0.95" style="stop-color:#888888"/>
  849. <stop offset="1" style="stop-color:#666666"/>
  850. </linearGradient>
  851. <circle class="st46" cx="71.7" cy="82.8" r="46"/>
  852. <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="21.689" y1="64.6959" x2="21.689" y2="156.617" gradientTransform="matrix(0.6609 -0.7505 -0.7505 -0.6609 141.5283 170.9216)">
  853. <stop offset="0" style="stop-color:#B7B7B7"/>
  854. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  855. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  856. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  857. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  858. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  859. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  860. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  861. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  862. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  863. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  864. <stop offset="0.95" style="stop-color:#888888"/>
  865. <stop offset="1" style="stop-color:#666666"/>
  866. </linearGradient>
  867. <circle class="st47" cx="72.8" cy="81.5" r="46"/>
  868. <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="24.0953" y1="61.8243" x2="24.0953" y2="153.745" gradientTransform="matrix(0.673 -0.7396 -0.7396 -0.673 137.4644 170.602)">
  869. <stop offset="0" style="stop-color:#B7B7B7"/>
  870. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  871. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  872. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  873. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  874. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  875. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  876. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  877. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  878. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  879. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  880. <stop offset="0.95" style="stop-color:#888888"/>
  881. <stop offset="1" style="stop-color:#666666"/>
  882. </linearGradient>
  883. <circle class="st48" cx="74" cy="80.2" r="46"/>
  884. <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="26.5295" y1="59.0555" x2="26.5295" y2="150.9758" gradientTransform="matrix(0.6849 -0.7286 -0.7286 -0.6849 133.4646 170.2478)">
  885. <stop offset="0" style="stop-color:#B7B7B7"/>
  886. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  887. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  888. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  889. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  890. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  891. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  892. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  893. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  894. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  895. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  896. <stop offset="0.95" style="stop-color:#888888"/>
  897. <stop offset="1" style="stop-color:#666666"/>
  898. </linearGradient>
  899. <circle class="st49" cx="75.1" cy="79" r="46"/>
  900. <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="28.994" y1="56.3942" x2="28.994" y2="148.3143" gradientTransform="matrix(0.6967 -0.7174 -0.7174 -0.6967 129.5296 169.8568)">
  901. <stop offset="0" style="stop-color:#B7B7B7"/>
  902. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  903. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  904. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  905. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  906. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  907. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  908. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  909. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  910. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  911. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  912. <stop offset="0.95" style="stop-color:#888888"/>
  913. <stop offset="1" style="stop-color:#666666"/>
  914. </linearGradient>
  915. <circle class="st50" cx="76.3" cy="77.7" r="46"/>
  916. <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="31.4768" y1="53.8317" x2="31.4768" y2="145.7517" gradientTransform="matrix(0.7082 -0.706 -0.706 -0.7082 125.66 169.4366)">
  917. <stop offset="0" style="stop-color:#B7B7B7"/>
  918. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  919. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  920. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  921. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  922. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  923. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  924. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  925. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  926. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  927. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  928. <stop offset="0.95" style="stop-color:#888888"/>
  929. <stop offset="1" style="stop-color:#666666"/>
  930. </linearGradient>
  931. <circle class="st51" cx="77.5" cy="76.5" r="46"/>
  932. <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="33.9872" y1="51.3941" x2="33.9872" y2="143.3142" gradientTransform="matrix(0.7196 -0.6944 -0.6944 -0.7196 121.8669 168.9952)">
  933. <stop offset="0" style="stop-color:#B7B7B7"/>
  934. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  935. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  936. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  937. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  938. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  939. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  940. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  941. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  942. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  943. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  944. <stop offset="0.95" style="stop-color:#888888"/>
  945. <stop offset="1" style="stop-color:#666666"/>
  946. </linearGradient>
  947. <circle class="st52" cx="78.7" cy="75.3" r="46"/>
  948. <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="36.5129" y1="49.0581" x2="36.5129" y2="140.9785" gradientTransform="matrix(0.7308 -0.6826 -0.6826 -0.7308 118.1309 168.5204)">
  949. <stop offset="0" style="stop-color:#B7B7B7"/>
  950. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  951. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  952. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  953. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  954. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  955. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  956. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  957. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  958. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  959. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  960. <stop offset="0.95" style="stop-color:#888888"/>
  961. <stop offset="1" style="stop-color:#666666"/>
  962. </linearGradient>
  963. <circle class="st53" cx="79.9" cy="74.2" r="46"/>
  964. <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="38.9939" y1="46.7626" x2="38.9939" y2="138.6833" gradientTransform="matrix(0.7416 -0.6708 -0.6708 -0.7416 114.4912 167.9333)">
  965. <stop offset="0" style="stop-color:#B7B7B7"/>
  966. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  967. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  968. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  969. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  970. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  971. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  972. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  973. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  974. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  975. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  976. <stop offset="0.95" style="stop-color:#888888"/>
  977. <stop offset="1" style="stop-color:#666666"/>
  978. </linearGradient>
  979. <circle class="st54" cx="81.2" cy="73" r="46"/>
  980. <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="41.5713" y1="44.6322" x2="41.5713" y2="136.5534" gradientTransform="matrix(0.7524 -0.6587 -0.6587 -0.7524 110.8836 167.4159)">
  981. <stop offset="0" style="stop-color:#B7B7B7"/>
  982. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  983. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  984. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  985. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  986. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  987. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  988. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  989. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  990. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  991. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  992. <stop offset="0.95" style="stop-color:#888888"/>
  993. <stop offset="1" style="stop-color:#666666"/>
  994. </linearGradient>
  995. <circle class="st55" cx="82.5" cy="71.9" r="46"/>
  996. <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="42.2132" y1="42.8907" x2="42.2132" y2="134.8078" gradientTransform="matrix(0.76 -0.65 -0.65 -0.76 108.4685 164.5764)">
  997. <stop offset="0" style="stop-color:#B7B7B7"/>
  998. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  999. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1000. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1001. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1002. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1003. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1004. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1005. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1006. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1007. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1008. <stop offset="0.95" style="stop-color:#888888"/>
  1009. <stop offset="1" style="stop-color:#666666"/>
  1010. </linearGradient>
  1011. <circle class="st56" cx="83.8" cy="70.8" r="46"/>
  1012. <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="46.7535" y1="40.6716" x2="46.7535" y2="132.5944" gradientTransform="matrix(0.7734 -0.6339 -0.6339 -0.7734 103.8594 166.2998)">
  1013. <stop offset="0" style="stop-color:#B7B7B7"/>
  1014. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1015. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1016. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1017. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1018. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1019. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1020. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1021. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1022. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1023. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1024. <stop offset="0.95" style="stop-color:#888888"/>
  1025. <stop offset="1" style="stop-color:#666666"/>
  1026. </linearGradient>
  1027. <circle class="st57" cx="85.1" cy="69.7" r="46"/>
  1028. <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="49.3617" y1="38.8524" x2="49.3617" y2="130.776" gradientTransform="matrix(0.7836 -0.6213 -0.6213 -0.7836 100.4447 165.7168)">
  1029. <stop offset="0" style="stop-color:#B7B7B7"/>
  1030. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1031. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1032. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1033. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1034. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1035. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1036. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1037. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1038. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1039. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1040. <stop offset="0.95" style="stop-color:#888888"/>
  1041. <stop offset="1" style="stop-color:#666666"/>
  1042. </linearGradient>
  1043. <circle class="st58" cx="86.4" cy="68.6" r="46"/>
  1044. <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="51.9841" y1="37.1389" x2="51.9841" y2="129.0635" gradientTransform="matrix(0.7936 -0.6085 -0.6085 -0.7936 97.093 165.1178)">
  1045. <stop offset="0" style="stop-color:#B7B7B7"/>
  1046. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1047. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1048. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1049. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1050. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1051. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1052. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1053. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1054. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1055. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1056. <stop offset="0.95" style="stop-color:#888888"/>
  1057. <stop offset="1" style="stop-color:#666666"/>
  1058. </linearGradient>
  1059. <circle class="st59" cx="87.8" cy="67.5" r="46"/>
  1060. <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="52.292" y1="35.72" x2="52.292" y2="127.6454" gradientTransform="matrix(0.8 -0.6 -0.6 -0.8 95.274 161.842)">
  1061. <stop offset="0" style="stop-color:#B7B7B7"/>
  1062. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1063. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1064. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1065. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1066. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1067. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1068. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1069. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1070. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1071. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1072. <stop offset="0.95" style="stop-color:#888888"/>
  1073. <stop offset="1" style="stop-color:#666666"/>
  1074. </linearGradient>
  1075. <circle class="st60" cx="89.1" cy="66.5" r="46"/>
  1076. <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="57.3275" y1="34.0557" x2="57.3275" y2="125.9827" gradientTransform="matrix(0.813 -0.5823 -0.5823 -0.813 90.5151 163.9353)">
  1077. <stop offset="0" style="stop-color:#B7B7B7"/>
  1078. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1079. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1080. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1081. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1082. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1083. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1084. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1085. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1086. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1087. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1088. <stop offset="0.95" style="stop-color:#888888"/>
  1089. <stop offset="1" style="stop-color:#666666"/>
  1090. </linearGradient>
  1091. <circle class="st61" cx="90.5" cy="65.5" r="46"/>
  1092. <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="59.9705" y1="32.6556" x2="59.9705" y2="124.584" gradientTransform="matrix(0.8223 -0.569 -0.569 -0.8223 87.3478 163.2852)">
  1093. <stop offset="0" style="stop-color:#B7B7B7"/>
  1094. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1095. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1096. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1097. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1098. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1099. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1100. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1101. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1102. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1103. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1104. <stop offset="0.95" style="stop-color:#888888"/>
  1105. <stop offset="1" style="stop-color:#666666"/>
  1106. </linearGradient>
  1107. <circle class="st62" cx="91.9" cy="64.5" r="46"/>
  1108. <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="60.3805" y1="31.9462" x2="60.3805" y2="123.8662" gradientTransform="matrix(0.83 -0.56 -0.56 -0.83 86.1084 160.9087)">
  1109. <stop offset="0" style="stop-color:#B7B7B7"/>
  1110. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1111. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1112. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1113. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1114. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1115. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1116. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1117. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1118. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1119. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1120. <stop offset="0.95" style="stop-color:#888888"/>
  1121. <stop offset="1" style="stop-color:#666666"/>
  1122. </linearGradient>
  1123. <circle class="st63" cx="93.3" cy="63.5" r="46"/>
  1124. <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="65.3392" y1="30.2006" x2="65.3392" y2="122.1317" gradientTransform="matrix(0.8405 -0.5419 -0.5419 -0.8405 81.1352 162.0299)">
  1125. <stop offset="0" style="stop-color:#B7B7B7"/>
  1126. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1127. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1128. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1129. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1130. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1131. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1132. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1133. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1134. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1135. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1136. <stop offset="0.95" style="stop-color:#888888"/>
  1137. <stop offset="1" style="stop-color:#666666"/>
  1138. </linearGradient>
  1139. <circle class="st64" cx="94.8" cy="62.6" r="46"/>
  1140. <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="68.0618" y1="29.1507" x2="68.0618" y2="121.0832" gradientTransform="matrix(0.8492 -0.528 -0.528 -0.8492 78.0899 161.4191)">
  1141. <stop offset="0" style="stop-color:#B7B7B7"/>
  1142. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1143. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1144. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1145. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1146. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1147. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1148. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1149. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1150. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1151. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1152. <stop offset="0.95" style="stop-color:#888888"/>
  1153. <stop offset="1" style="stop-color:#666666"/>
  1154. </linearGradient>
  1155. <circle class="st65" cx="96.2" cy="61.7" r="46"/>
  1156. <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="70.7857" y1="28.2038" x2="70.7857" y2="120.1377" gradientTransform="matrix(0.8578 -0.514 -0.514 -0.8578 75.1034 160.8065)">
  1157. <stop offset="0" style="stop-color:#B7B7B7"/>
  1158. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1159. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1160. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1161. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1162. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1163. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1164. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1165. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1166. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1167. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1168. <stop offset="0.95" style="stop-color:#888888"/>
  1169. <stop offset="1" style="stop-color:#666666"/>
  1170. </linearGradient>
  1171. <circle class="st66" cx="97.7" cy="60.8" r="46"/>
  1172. <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="73.5025" y1="27.3715" x2="73.5025" y2="119.3069" gradientTransform="matrix(0.8661 -0.4998 -0.4998 -0.8661 72.177 160.1801)">
  1173. <stop offset="0" style="stop-color:#B7B7B7"/>
  1174. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1175. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1176. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1177. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1178. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1179. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1180. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1181. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1182. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1183. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1184. <stop offset="0.95" style="stop-color:#888888"/>
  1185. <stop offset="1" style="stop-color:#666666"/>
  1186. </linearGradient>
  1187. <circle class="st67" cx="99.2" cy="59.9" r="46"/>
  1188. <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="76.2149" y1="26.6242" x2="76.2149" y2="118.561" gradientTransform="matrix(0.8742 -0.4856 -0.4856 -0.8742 69.3022 159.548)">
  1189. <stop offset="0" style="stop-color:#B7B7B7"/>
  1190. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1191. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1192. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1193. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1194. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1195. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1196. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1197. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1198. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1199. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1200. <stop offset="0.95" style="stop-color:#888888"/>
  1201. <stop offset="1" style="stop-color:#666666"/>
  1202. </linearGradient>
  1203. <circle class="st68" cx="100.7" cy="59.1" r="46"/>
  1204. <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="78.9894" y1="26.0481" x2="78.9894" y2="117.9862" gradientTransform="matrix(0.8821 -0.471 -0.471 -0.8821 66.4322 158.9832)">
  1205. <stop offset="0" style="stop-color:#B7B7B7"/>
  1206. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1207. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1208. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1209. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1210. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1211. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1212. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1213. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1214. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1215. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1216. <stop offset="0.95" style="stop-color:#888888"/>
  1217. <stop offset="1" style="stop-color:#666666"/>
  1218. </linearGradient>
  1219. <circle class="st69" cx="102.2" cy="58.2" r="46"/>
  1220. <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="81.686" y1="25.5181" x2="81.686" y2="117.4574" gradientTransform="matrix(0.8897 -0.4565 -0.4565 -0.8897 63.6736 158.3429)">
  1221. <stop offset="0" style="stop-color:#B7B7B7"/>
  1222. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1223. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1224. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1225. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1226. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1227. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1228. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1229. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1230. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1231. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1232. <stop offset="0.95" style="stop-color:#888888"/>
  1233. <stop offset="1" style="stop-color:#666666"/>
  1234. </linearGradient>
  1235. <circle class="st70" cx="103.7" cy="57.4" r="46"/>
  1236. <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="84.4393" y1="25.1419" x2="84.4393" y2="117.0825" gradientTransform="matrix(0.8972 -0.4417 -0.4417 -0.8972 60.9102 157.7742)">
  1237. <stop offset="0" style="stop-color:#B7B7B7"/>
  1238. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1239. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1240. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1241. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1242. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1243. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1244. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1245. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1246. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1247. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1248. <stop offset="0.95" style="stop-color:#888888"/>
  1249. <stop offset="1" style="stop-color:#666666"/>
  1250. </linearGradient>
  1251. <circle class="st71" cx="105.3" cy="56.7" r="46"/>
  1252. <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="87.179" y1="24.8825" x2="87.179" y2="116.8242" gradientTransform="matrix(0.9044 -0.4267 -0.4267 -0.9044 58.202 157.21)">
  1253. <stop offset="0" style="stop-color:#B7B7B7"/>
  1254. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1255. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1256. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1257. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1258. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1259. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1260. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1261. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1262. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1263. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1264. <stop offset="0.95" style="stop-color:#888888"/>
  1265. <stop offset="1" style="stop-color:#666666"/>
  1266. </linearGradient>
  1267. <circle class="st72" cx="106.8" cy="55.9" r="46"/>
  1268. <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="89.9141" y1="24.7202" x2="89.9141" y2="116.6628" gradientTransform="matrix(0.9113 -0.4117 -0.4117 -0.9113 55.5403 156.6386)">
  1269. <stop offset="0" style="stop-color:#B7B7B7"/>
  1270. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1271. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1272. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1273. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1274. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1275. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1276. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1277. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1278. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1279. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1280. <stop offset="0.95" style="stop-color:#888888"/>
  1281. <stop offset="1" style="stop-color:#666666"/>
  1282. </linearGradient>
  1283. <circle class="st73" cx="108.4" cy="55.2" r="46"/>
  1284. <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="92.6307" y1="24.657" x2="92.6307" y2="116.6005" gradientTransform="matrix(0.918 -0.3965 -0.3965 -0.918 52.9369 156.0681)">
  1285. <stop offset="0" style="stop-color:#B7B7B7"/>
  1286. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1287. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1288. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1289. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1290. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1291. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1292. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1293. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1294. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1295. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1296. <stop offset="0.95" style="stop-color:#888888"/>
  1297. <stop offset="1" style="stop-color:#666666"/>
  1298. </linearGradient>
  1299. <circle class="st74" cx="110" cy="54.5" r="46"/>
  1300. <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="96.5406" y1="22.8209" x2="96.5406" y2="114.7409" gradientTransform="matrix(0.92 -0.38 -0.38 -0.92 48.7882 153.5488)">
  1301. <stop offset="0" style="stop-color:#B7B7B7"/>
  1302. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1303. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1304. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1305. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1306. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1307. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1308. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1309. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1310. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1311. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1312. <stop offset="0.95" style="stop-color:#888888"/>
  1313. <stop offset="1" style="stop-color:#666666"/>
  1314. </linearGradient>
  1315. <circle class="st75" cx="111.6" cy="53.8" r="46"/>
  1316. <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="98.0627" y1="24.896" x2="98.0627" y2="116.8406" gradientTransform="matrix(0.9307 -0.3657 -0.3657 -0.9307 47.8252 155.0002)">
  1317. <stop offset="0" style="stop-color:#B7B7B7"/>
  1318. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1319. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1320. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1321. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1322. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1323. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1324. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1325. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1326. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1327. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1328. <stop offset="0.95" style="stop-color:#888888"/>
  1329. <stop offset="1" style="stop-color:#666666"/>
  1330. </linearGradient>
  1331. <circle class="st76" cx="113.2" cy="53.2" r="46"/>
  1332. <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="100.7848" y1="25.2088" x2="100.7848" y2="117.1537" gradientTransform="matrix(0.9367 -0.35 -0.35 -0.9367 45.3081 154.5169)">
  1333. <stop offset="0" style="stop-color:#B7B7B7"/>
  1334. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1335. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1336. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1337. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1338. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1339. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1340. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1341. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1342. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1343. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1344. <stop offset="0.95" style="stop-color:#888888"/>
  1345. <stop offset="1" style="stop-color:#666666"/>
  1346. </linearGradient>
  1347. <circle class="st77" cx="114.8" cy="52.6" r="46"/>
  1348. <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="103.4857" y1="25.6266" x2="103.4857" y2="117.5716" gradientTransform="matrix(0.9425 -0.3343 -0.3343 -0.9425 42.8438 154.035)">
  1349. <stop offset="0" style="stop-color:#B7B7B7"/>
  1350. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1351. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1352. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1353. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1354. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1355. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1356. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1357. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1358. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1359. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1360. <stop offset="0.95" style="stop-color:#888888"/>
  1361. <stop offset="1" style="stop-color:#666666"/>
  1362. </linearGradient>
  1363. <circle class="st78" cx="116.4" cy="52" r="46"/>
  1364. <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="106.1572" y1="26.1376" x2="106.1572" y2="118.0826" gradientTransform="matrix(0.9479 -0.3185 -0.3185 -0.9479 40.4242 153.5528)">
  1365. <stop offset="0" style="stop-color:#B7B7B7"/>
  1366. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1367. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1368. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1369. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1370. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1371. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1372. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1373. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1374. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1375. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1376. <stop offset="0.95" style="stop-color:#888888"/>
  1377. <stop offset="1" style="stop-color:#666666"/>
  1378. </linearGradient>
  1379. <circle class="st79" cx="118.1" cy="51.4" r="46"/>
  1380. <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="108.8653" y1="26.819" x2="108.8653" y2="118.7637" gradientTransform="matrix(0.9532 -0.3024 -0.3024 -0.9532 37.9905 153.1516)">
  1381. <stop offset="0" style="stop-color:#B7B7B7"/>
  1382. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1383. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1384. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1385. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1386. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1387. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1388. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1389. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1390. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1391. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1392. <stop offset="0.95" style="stop-color:#888888"/>
  1393. <stop offset="1" style="stop-color:#666666"/>
  1394. </linearGradient>
  1395. <circle class="st80" cx="119.8" cy="50.8" r="46"/>
  1396. <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="109.2911" y1="28.3575" x2="109.2911" y2="120.2775" gradientTransform="matrix(0.96 -0.29 -0.29 -0.96 37.8881 152.8244)">
  1397. <stop offset="0" style="stop-color:#B7B7B7"/>
  1398. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1399. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1400. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1401. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1402. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1403. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1404. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1405. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1406. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1407. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1408. <stop offset="0.95" style="stop-color:#888888"/>
  1409. <stop offset="1" style="stop-color:#666666"/>
  1410. </linearGradient>
  1411. <circle class="st81" cx="121.4" cy="50.3" r="46"/>
  1412. <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="114.1319" y1="28.4352" x2="114.1319" y2="120.3786" gradientTransform="matrix(0.9628 -0.2701 -0.2701 -0.9628 33.3171 152.318)">
  1413. <stop offset="0" style="stop-color:#B7B7B7"/>
  1414. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1415. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1416. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1417. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1418. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1419. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1420. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1421. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1422. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1423. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1424. <stop offset="0.95" style="stop-color:#888888"/>
  1425. <stop offset="1" style="stop-color:#666666"/>
  1426. </linearGradient>
  1427. <circle class="st82" cx="123.1" cy="49.8" r="46"/>
  1428. <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="116.7495" y1="29.4453" x2="116.7495" y2="121.3878" gradientTransform="matrix(0.9673 -0.2538 -0.2538 -0.9673 31.0195 151.9541)">
  1429. <stop offset="0" style="stop-color:#B7B7B7"/>
  1430. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1431. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1432. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1433. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1434. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1435. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1436. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1437. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1438. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1439. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1440. <stop offset="0.95" style="stop-color:#888888"/>
  1441. <stop offset="1" style="stop-color:#666666"/>
  1442. </linearGradient>
  1443. <circle class="st83" cx="124.8" cy="49.4" r="46"/>
  1444. <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="118.356" y1="29.8658" x2="118.356" y2="121.8764" gradientTransform="matrix(0.97 -0.24 -0.24 -0.97 29.7636 150.3033)">
  1445. <stop offset="0" style="stop-color:#B7B7B7"/>
  1446. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1447. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1448. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1449. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1450. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1451. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1452. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1453. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1454. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1455. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1456. <stop offset="0.95" style="stop-color:#888888"/>
  1457. <stop offset="1" style="stop-color:#666666"/>
  1458. </linearGradient>
  1459. <circle class="st84" cx="126.5" cy="48.9" r="46"/>
  1460. <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="121.1475" y1="33.7139" x2="121.1475" y2="125.6339" gradientTransform="matrix(0.98 -0.22 -0.22 -0.98 27.1558 153.7822)">
  1461. <stop offset="0" style="stop-color:#B7B7B7"/>
  1462. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1463. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1464. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1465. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1466. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1467. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1468. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1469. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1470. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1471. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1472. <stop offset="0.95" style="stop-color:#888888"/>
  1473. <stop offset="1" style="stop-color:#666666"/>
  1474. </linearGradient>
  1475. <circle class="st85" cx="128.2" cy="48.5" r="46"/>
  1476. <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="126.1481" y1="33.8233" x2="126.1481" y2="125.7431" gradientTransform="matrix(0.98 -0.2 -0.2 -0.98 22.478 152.4522)">
  1477. <stop offset="0" style="stop-color:#B7B7B7"/>
  1478. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1479. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1480. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1481. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1482. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1483. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1484. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1485. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1486. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1487. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1488. <stop offset="0.95" style="stop-color:#888888"/>
  1489. <stop offset="1" style="stop-color:#666666"/>
  1490. </linearGradient>
  1491. <circle class="st86" cx="130" cy="48.2" r="46"/>
  1492. <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="126.898" y1="34.5539" x2="126.898" y2="126.4907" gradientTransform="matrix(0.9823 -0.1876 -0.1876 -0.9823 22.166 150.7135)">
  1493. <stop offset="0" style="stop-color:#B7B7B7"/>
  1494. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1495. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1496. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1497. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1498. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1499. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1500. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1501. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1502. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1503. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1504. <stop offset="0.95" style="stop-color:#888888"/>
  1505. <stop offset="1" style="stop-color:#666666"/>
  1506. </linearGradient>
  1507. <circle class="st87" cx="131.7" cy="47.8" r="46"/>
  1508. <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="129.3753" y1="36.1389" x2="129.3753" y2="128.0739" gradientTransform="matrix(0.9853 -0.1707 -0.1707 -0.9853 20.0018 150.4886)">
  1509. <stop offset="0" style="stop-color:#B7B7B7"/>
  1510. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1511. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1512. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1513. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1514. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1515. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1516. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1517. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1518. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1519. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1520. <stop offset="0.95" style="stop-color:#888888"/>
  1521. <stop offset="1" style="stop-color:#666666"/>
  1522. </linearGradient>
  1523. <circle class="st88" cx="133.5" cy="47.5" r="46"/>
  1524. <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="131.8032" y1="37.8353" x2="131.8032" y2="129.7685" gradientTransform="matrix(0.9881 -0.1538 -0.1538 -0.9881 17.8787 150.2919)">
  1525. <stop offset="0" style="stop-color:#B7B7B7"/>
  1526. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1527. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1528. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1529. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1530. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1531. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1532. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1533. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1534. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1535. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1536. <stop offset="0.95" style="stop-color:#888888"/>
  1537. <stop offset="1" style="stop-color:#666666"/>
  1538. </linearGradient>
  1539. <circle class="st89" cx="135.2" cy="47.2" r="46"/>
  1540. <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="134.1947" y1="39.6277" x2="134.1947" y2="131.5589" gradientTransform="matrix(0.9906 -0.1369 -0.1369 -0.9906 15.7792 150.1118)">
  1541. <stop offset="0" style="stop-color:#B7B7B7"/>
  1542. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1543. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1544. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1545. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1546. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1547. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1548. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1549. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1550. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1551. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1552. <stop offset="0.95" style="stop-color:#888888"/>
  1553. <stop offset="1" style="stop-color:#666666"/>
  1554. </linearGradient>
  1555. <circle class="st90" cx="137" cy="46.9" r="46"/>
  1556. <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="136.5273" y1="41.5359" x2="136.5273" y2="133.4651" gradientTransform="matrix(0.9928 -0.12 -0.12 -0.9928 13.7255 149.9669)">
  1557. <stop offset="0" style="stop-color:#B7B7B7"/>
  1558. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1559. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1560. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1561. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1562. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1563. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1564. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1565. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1566. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1567. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1568. <stop offset="0.95" style="stop-color:#888888"/>
  1569. <stop offset="1" style="stop-color:#666666"/>
  1570. </linearGradient>
  1571. <circle class="st91" cx="138.8" cy="46.7" r="46"/>
  1572. <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="138.8032" y1="43.5358" x2="138.8032" y2="135.4631" gradientTransform="matrix(0.9947 -0.103 -0.103 -0.9947 11.7099 149.8358)">
  1573. <stop offset="0" style="stop-color:#B7B7B7"/>
  1574. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1575. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1576. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1577. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1578. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1579. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1580. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1581. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1582. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1583. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1584. <stop offset="0.95" style="stop-color:#888888"/>
  1585. <stop offset="1" style="stop-color:#666666"/>
  1586. </linearGradient>
  1587. <circle class="st92" cx="140.6" cy="46.5" r="46"/>
  1588. <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="141.0303" y1="45.6534" x2="141.0303" y2="137.5788" gradientTransform="matrix(0.9963 -8.593860e-002 -8.593860e-002 -0.9963 9.7248 149.7471)">
  1589. <stop offset="0" style="stop-color:#B7B7B7"/>
  1590. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1591. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1592. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1593. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1594. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1595. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1596. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1597. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1598. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1599. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1600. <stop offset="0.95" style="stop-color:#888888"/>
  1601. <stop offset="1" style="stop-color:#666666"/>
  1602. </linearGradient>
  1603. <circle class="st93" cx="142.4" cy="46.3" r="46"/>
  1604. <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="143.2713" y1="47.9296" x2="143.2713" y2="139.8533" gradientTransform="matrix(0.9976 -6.871179e-002 -6.871179e-002 -0.9976 7.6888 149.724)">
  1605. <stop offset="0" style="stop-color:#B7B7B7"/>
  1606. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1607. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1608. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1609. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1610. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1611. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1612. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1613. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1614. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1615. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1616. <stop offset="0.95" style="stop-color:#888888"/>
  1617. <stop offset="1" style="stop-color:#666666"/>
  1618. </linearGradient>
  1619. <circle class="st94" cx="144.2" cy="46.2" r="46"/>
  1620. <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="145.6025" y1="51.0605" x2="145.6025" y2="142.9805" gradientTransform="matrix(1 -5.000000e-002 -5.000000e-002 -1 5.2445 150.72)">
  1621. <stop offset="0" style="stop-color:#B7B7B7"/>
  1622. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1623. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1624. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1625. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1626. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1627. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1628. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1629. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1630. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1631. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1632. <stop offset="0.95" style="stop-color:#888888"/>
  1633. <stop offset="1" style="stop-color:#666666"/>
  1634. </linearGradient>
  1635. <circle class="st95" cx="146" cy="46.1" r="46"/>
  1636. <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="147.5049" y1="52.7526" x2="147.5049" y2="144.6736" gradientTransform="matrix(0.9994 -3.437621e-002 -3.437621e-002 -0.9994 3.7856 149.7454)">
  1637. <stop offset="0" style="stop-color:#B7B7B7"/>
  1638. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1639. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1640. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1641. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1642. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1643. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1644. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1645. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1646. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1647. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1648. <stop offset="0.95" style="stop-color:#888888"/>
  1649. <stop offset="1" style="stop-color:#666666"/>
  1650. </linearGradient>
  1651. <circle class="st96" cx="147.8" cy="46" r="46"/>
  1652. <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="148.3383" y1="54.7701" x2="148.3383" y2="146.6721" gradientTransform="matrix(1 -2.000000e-002 -2.000000e-002 -1 3.3078 149.25)">
  1653. <stop offset="0" style="stop-color:#B7B7B7"/>
  1654. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1655. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1656. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1657. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1658. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1659. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1660. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1661. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1662. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1663. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1664. <stop offset="0.95" style="stop-color:#888888"/>
  1665. <stop offset="1" style="stop-color:#666666"/>
  1666. </linearGradient>
  1667. <circle class="st97" cx="149.6" cy="46" r="46"/>
  1668. <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="151.48" y1="57.97" x2="151.48" y2="149.89" gradientTransform="matrix(1 0 0 -1 0 149.89)">
  1669. <stop offset="0" style="stop-color:#B7B7B7"/>
  1670. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1671. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1672. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1673. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1674. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1675. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1676. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1677. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1678. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1679. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1680. <stop offset="0.95" style="stop-color:#888888"/>
  1681. <stop offset="1" style="stop-color:#666666"/>
  1682. </linearGradient>
  1683. <circle class="st98" cx="151.5" cy="46" r="46"/>
  1684. </g>
  1685. </g>
  1686. </g>
  1687. </svg>