123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 63 150" style="enable-background:new 0 0 63 150;" xml:space="preserve">
- <style type="text/css">
- .st0{clip-path:url(#SVGID_2_);}
- .st1{fill:url(#SVGID_3_);}
- .st2{fill:url(#SVGID_4_);}
- .st3{fill:url(#SVGID_5_);}
- .st4{fill:url(#SVGID_6_);}
- .st5{fill:url(#SVGID_7_);}
- .st6{fill:url(#SVGID_8_);}
- .st7{fill:url(#SVGID_9_);}
- .st8{fill:url(#SVGID_10_);}
- .st9{fill:url(#SVGID_11_);}
- .st10{fill:url(#SVGID_12_);}
- .st11{fill:url(#SVGID_13_);}
- .st12{fill:url(#SVGID_14_);}
- .st13{fill:url(#SVGID_15_);}
- .st14{fill:url(#SVGID_16_);}
- .st15{fill:url(#SVGID_17_);}
- .st16{fill:url(#SVGID_18_);}
- .st17{fill:url(#SVGID_19_);}
- .st18{fill:url(#SVGID_20_);}
- .st19{fill:url(#SVGID_21_);}
- .st20{fill:url(#SVGID_22_);}
- .st21{fill:url(#SVGID_23_);}
- .st22{fill:url(#SVGID_24_);}
- .st23{fill:url(#SVGID_25_);}
- .st24{fill:url(#SVGID_26_);}
- .st25{fill:url(#SVGID_27_);}
- .st26{fill:url(#SVGID_28_);}
- .st27{fill:url(#SVGID_29_);}
- .st28{fill:url(#SVGID_30_);}
- .st29{fill:url(#SVGID_31_);}
- .st30{fill:url(#SVGID_32_);}
- .st31{fill:url(#SVGID_33_);}
- .st32{fill:url(#SVGID_34_);}
- .st33{fill:url(#SVGID_35_);}
- .st34{fill:url(#SVGID_36_);}
- .st35{fill:url(#SVGID_37_);}
- .st36{fill:url(#SVGID_38_);}
- .st37{fill:url(#SVGID_39_);}
- .st38{fill:url(#SVGID_40_);}
- .st39{fill:url(#SVGID_41_);}
- .st40{fill:url(#SVGID_42_);}
- .st41{fill:url(#SVGID_43_);}
- .st42{fill:url(#SVGID_44_);}
- .st43{fill:url(#SVGID_45_);}
- .st44{fill:url(#SVGID_46_);}
- .st45{fill:url(#SVGID_47_);}
- .st46{fill:url(#SVGID_48_);}
- .st47{fill:url(#SVGID_49_);}
- .st48{fill:url(#SVGID_50_);}
- .st49{fill:url(#SVGID_51_);}
- .st50{fill:url(#SVGID_52_);}
- .st51{fill:url(#SVGID_53_);}
- .st52{fill:url(#SVGID_54_);}
- .st53{fill:url(#SVGID_55_);}
- .st54{fill:url(#SVGID_56_);}
- .st55{fill:url(#SVGID_57_);}
- .st56{fill:url(#SVGID_58_);}
- .st57{fill:url(#SVGID_59_);}
- .st58{fill:url(#SVGID_60_);}
- .st59{fill:url(#SVGID_61_);}
- .st60{fill:url(#SVGID_62_);}
- .st61{fill:url(#SVGID_63_);}
- .st62{fill:url(#SVGID_64_);}
- .st63{fill:url(#SVGID_65_);}
- .st64{fill:url(#SVGID_66_);}
- .st65{fill:url(#SVGID_67_);}
- .st66{fill:url(#SVGID_68_);}
- .st67{fill:url(#SVGID_69_);}
- .st68{fill:url(#SVGID_70_);}
- .st69{fill:url(#SVGID_71_);}
- .st70{fill:url(#SVGID_72_);}
- .st71{fill:url(#SVGID_73_);}
- .st72{fill:url(#SVGID_74_);}
- .st73{fill:url(#SVGID_75_);}
- .st74{fill:url(#SVGID_76_);}
- .st75{fill:url(#SVGID_77_);}
- .st76{fill:url(#SVGID_78_);}
- .st77{fill:url(#SVGID_79_);}
- .st78{fill:url(#SVGID_80_);}
- .st79{fill:url(#SVGID_81_);}
- .st80{fill:url(#SVGID_82_);}
- .st81{fill:url(#SVGID_83_);}
- .st82{fill:url(#SVGID_84_);}
- .st83{fill:url(#SVGID_85_);}
- .st84{fill:url(#SVGID_86_);}
- .st85{fill:url(#SVGID_87_);}
- .st86{fill:url(#SVGID_88_);}
- .st87{fill:url(#SVGID_89_);}
- .st88{fill:url(#SVGID_90_);}
- .st89{fill:url(#SVGID_91_);}
- .st90{fill:url(#SVGID_92_);}
- .st91{fill:url(#SVGID_93_);}
- .st92{fill:url(#SVGID_94_);}
- .st93{fill:url(#SVGID_95_);}
- .st94{fill:url(#SVGID_96_);}
- .st95{fill:url(#SVGID_97_);}
- .st96{fill:url(#SVGID_98_);}
- .st97{fill:url(#SVGID_99_);}
- .st98{fill:url(#SVGID_100_);}
- .st99{fill:url(#SVGID_101_);}
- .st100{fill:url(#SVGID_102_);}
- .st101{fill:url(#SVGID_103_);}
- .st102{fill:url(#SVGID_104_);}
- .st103{fill:url(#SVGID_105_);}
- .st104{fill:url(#SVGID_106_);}
- .st105{fill:url(#SVGID_107_);}
- .st106{fill:url(#SVGID_108_);}
- .st107{fill:url(#SVGID_109_);}
- .st108{fill:url(#SVGID_110_);}
- .st109{fill:url(#SVGID_111_);}
- .st110{fill:url(#SVGID_112_);}
- .st111{fill:url(#SVGID_113_);}
- .st112{fill:url(#SVGID_114_);}
- .st113{fill:url(#SVGID_115_);}
- .st114{fill:url(#SVGID_116_);}
- .st115{fill:url(#SVGID_117_);}
- .st116{fill:url(#SVGID_118_);}
- .st117{fill:url(#SVGID_119_);}
- .st118{fill:url(#SVGID_120_);}
- .st119{fill:url(#SVGID_121_);}
- .st120{fill:url(#SVGID_122_);}
- </style>
- <title>iot-管道(21)</title>
- <g id="图层_17">
- <g>
- <defs>
- <path id="SVGID_1_" d="M63.8,0H0v128l7,9.5c10.2,13.7,29.5,16.6,43.3,6.5c2.5-1.8,4.6-4,6.5-6.5l7-9.5L63.8,0z"/>
- </defs>
- <clipPath id="SVGID_2_">
- <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
- </clipPath>
- <g class="st0">
-
- <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-991.12" y1="1262.14" x2="-991.12" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st1" cx="31.5" cy="118.5" r="31.5"/>
-
- <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-989.86" y1="1262.14" x2="-989.86" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st2" cx="31.5" cy="117.3" r="31.5"/>
-
- <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-988.61" y1="1262.14" x2="-988.61" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st3" cx="31.5" cy="116" r="31.5"/>
-
- <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-987.36" y1="1262.14" x2="-987.36" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st4" cx="31.5" cy="114.8" r="31.5"/>
-
- <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-986.1" y1="1262.14" x2="-986.1" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st5" cx="31.5" cy="113.5" r="31.5"/>
-
- <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-984.85" y1="1262.14" x2="-984.85" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st6" cx="31.5" cy="112.2" r="31.5"/>
-
- <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-983.59" y1="1262.14" x2="-983.59" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st7" cx="31.5" cy="111" r="31.5"/>
-
- <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-982.34" y1="1262.14" x2="-982.34" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st8" cx="31.5" cy="109.7" r="31.5"/>
-
- <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-981.08" y1="1262.14" x2="-981.08" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st9" cx="31.5" cy="108.5" r="31.5"/>
-
- <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-979.83" y1="1262.14" x2="-979.83" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st10" cx="31.5" cy="107.2" r="31.5"/>
-
- <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-978.57" y1="1262.14" x2="-978.57" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st11" cx="31.5" cy="106" r="31.5"/>
-
- <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-977.32" y1="1262.14" x2="-977.32" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st12" cx="31.5" cy="104.7" r="31.5"/>
-
- <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-976.06" y1="1262.14" x2="-976.06" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st13" cx="31.5" cy="103.5" r="31.5"/>
-
- <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-974.81" y1="1262.14" x2="-974.81" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st14" cx="31.5" cy="102.2" r="31.5"/>
-
- <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-973.55" y1="1262.14" x2="-973.55" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st15" cx="31.5" cy="100.9" r="31.5"/>
-
- <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-972.3" y1="1262.14" x2="-972.3" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st16" cx="31.5" cy="99.7" r="31.5"/>
-
- <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-971.05" y1="1262.14" x2="-971.05" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st17" cx="31.5" cy="98.4" r="31.5"/>
-
- <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-969.79" y1="1262.14" x2="-969.79" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st18" cx="31.5" cy="97.2" r="31.5"/>
-
- <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-968.54" y1="1262.14" x2="-968.54" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st19" cx="31.5" cy="95.9" r="31.5"/>
-
- <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-967.28" y1="1262.14" x2="-967.28" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st20" cx="31.5" cy="94.7" r="31.5"/>
-
- <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-966.03" y1="1262.14" x2="-966.03" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st21" cx="31.5" cy="93.4" r="31.5"/>
-
- <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-964.77" y1="1262.14" x2="-964.77" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st22" cx="31.5" cy="92.2" r="31.5"/>
-
- <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-963.52" y1="1262.14" x2="-963.52" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st23" cx="31.5" cy="90.9" r="31.5"/>
-
- <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-962.26" y1="1262.14" x2="-962.26" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st24" cx="31.5" cy="89.7" r="31.5"/>
-
- <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-961.01" y1="1262.14" x2="-961.01" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st25" cx="31.5" cy="88.4" r="31.5"/>
-
- <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-959.75" y1="1262.14" x2="-959.75" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st26" cx="31.5" cy="87.1" r="31.5"/>
-
- <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-958.5" y1="1262.14" x2="-958.5" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st27" cx="31.5" cy="85.9" r="31.5"/>
-
- <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-957.25" y1="1262.14" x2="-957.25" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st28" cx="31.5" cy="84.6" r="31.5"/>
-
- <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-955.99" y1="1262.14" x2="-955.99" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st29" cx="31.5" cy="83.4" r="31.5"/>
-
- <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-954.74" y1="1262.14" x2="-954.74" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st30" cx="31.5" cy="82.1" r="31.5"/>
-
- <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-953.48" y1="1262.14" x2="-953.48" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st31" cx="31.5" cy="80.9" r="31.5"/>
-
- <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-952.23" y1="1262.14" x2="-952.23" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st32" cx="31.5" cy="79.6" r="31.5"/>
-
- <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-950.97" y1="1262.14" x2="-950.97" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st33" cx="31.5" cy="78.4" r="31.5"/>
-
- <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-949.72" y1="1262.14" x2="-949.72" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st34" cx="31.5" cy="77.1" r="31.5"/>
-
- <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-948.46" y1="1262.14" x2="-948.46" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st35" cx="31.5" cy="75.9" r="31.5"/>
-
- <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-947.21" y1="1262.14" x2="-947.21" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st36" cx="31.5" cy="74.6" r="31.5"/>
-
- <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-945.95" y1="1262.14" x2="-945.95" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st37" cx="31.5" cy="73.3" r="31.5"/>
-
- <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-944.7" y1="1262.14" x2="-944.7" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st38" cx="31.5" cy="72.1" r="31.5"/>
-
- <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-943.44" y1="1262.14" x2="-943.44" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st39" cx="31.5" cy="70.8" r="31.5"/>
-
- <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-942.19" y1="1262.14" x2="-942.19" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st40" cx="31.5" cy="69.6" r="31.5"/>
-
- <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-940.94" y1="1262.14" x2="-940.94" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st41" cx="31.5" cy="68.3" r="31.5"/>
-
- <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-939.68" y1="1262.14" x2="-939.68" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st42" cx="31.5" cy="67.1" r="31.5"/>
-
- <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-938.43" y1="1262.14" x2="-938.43" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st43" cx="31.5" cy="65.8" r="31.5"/>
-
- <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-937.17" y1="1262.14" x2="-937.17" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st44" cx="31.5" cy="64.6" r="31.5"/>
-
- <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-935.92" y1="1262.14" x2="-935.92" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st45" cx="31.5" cy="63.3" r="31.5"/>
-
- <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-934.66" y1="1262.14" x2="-934.66" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st46" cx="31.5" cy="62.1" r="31.5"/>
-
- <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-933.41" y1="1262.14" x2="-933.41" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st47" cx="31.5" cy="60.8" r="31.5"/>
-
- <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-932.15" y1="1262.14" x2="-932.15" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st48" cx="31.5" cy="59.5" r="31.5"/>
-
- <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-930.9" y1="1262.14" x2="-930.9" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st49" cx="31.5" cy="58.3" r="31.5"/>
-
- <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-929.64" y1="1262.14" x2="-929.64" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st50" cx="31.5" cy="57" r="31.5"/>
-
- <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-928.39" y1="1262.14" x2="-928.39" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st51" cx="31.5" cy="55.8" r="31.5"/>
-
- <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-927.14" y1="1262.14" x2="-927.14" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st52" cx="31.5" cy="54.5" r="31.5"/>
-
- <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-925.88" y1="1262.14" x2="-925.88" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st53" cx="31.5" cy="53.3" r="31.5"/>
-
- <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-924.63" y1="1262.14" x2="-924.63" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st54" cx="31.5" cy="52" r="31.5"/>
-
- <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-923.37" y1="1262.14" x2="-923.37" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st55" cx="31.5" cy="50.8" r="31.5"/>
-
- <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-922.12" y1="1262.14" x2="-922.12" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st56" cx="31.5" cy="49.5" r="31.5"/>
-
- <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-920.86" y1="1262.14" x2="-920.86" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st57" cx="31.5" cy="48.3" r="31.5"/>
-
- <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-919.61" y1="1262.14" x2="-919.61" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st58" cx="31.5" cy="47" r="31.5"/>
-
- <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="-918.35" y1="1262.14" x2="-918.35" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st59" cx="31.5" cy="45.7" r="31.5"/>
-
- <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-917.1" y1="1262.14" x2="-917.1" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st60" cx="31.5" cy="44.5" r="31.5"/>
-
- <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-915.84" y1="1262.14" x2="-915.84" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st61" cx="31.5" cy="43.2" r="31.5"/>
-
- <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="-914.59" y1="1262.14" x2="-914.59" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st62" cx="31.5" cy="42" r="31.5"/>
-
- <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-913.34" y1="1262.14" x2="-913.34" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st63" cx="31.5" cy="40.7" r="31.5"/>
-
- <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-912.08" y1="1262.14" x2="-912.08" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st64" cx="31.5" cy="39.5" r="31.5"/>
-
- <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="-910.83" y1="1262.14" x2="-910.83" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st65" cx="31.5" cy="38.2" r="31.5"/>
-
- <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="-909.57" y1="1262.14" x2="-909.57" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st66" cx="31.5" cy="37" r="31.5"/>
-
- <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="-908.32" y1="1262.14" x2="-908.32" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st67" cx="31.5" cy="35.7" r="31.5"/>
-
- <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="-907.06" y1="1262.14" x2="-907.06" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st68" cx="31.5" cy="34.5" r="31.5"/>
-
- <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="-905.81" y1="1262.14" x2="-905.81" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st69" cx="31.5" cy="33.2" r="31.5"/>
-
- <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="-904.55" y1="1262.14" x2="-904.55" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st70" cx="31.5" cy="31.9" r="31.5"/>
-
- <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-903.3" y1="1262.14" x2="-903.3" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st71" cx="31.5" cy="30.7" r="31.5"/>
-
- <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-902.04" y1="1262.14" x2="-902.04" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st72" cx="31.5" cy="29.4" r="31.5"/>
-
- <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-900.79" y1="1262.14" x2="-900.79" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st73" cx="31.5" cy="28.2" r="31.5"/>
-
- <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-899.53" y1="1262.14" x2="-899.53" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st74" cx="31.5" cy="26.9" r="31.5"/>
-
- <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-898.28" y1="1262.14" x2="-898.28" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st75" cx="31.5" cy="25.7" r="31.5"/>
-
- <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-897.03" y1="1262.14" x2="-897.03" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st76" cx="31.5" cy="24.4" r="31.5"/>
-
- <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="-895.77" y1="1262.14" x2="-895.77" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st77" cx="31.5" cy="23.2" r="31.5"/>
-
- <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="-894.52" y1="1262.14" x2="-894.52" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st78" cx="31.5" cy="21.9" r="31.5"/>
-
- <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-893.26" y1="1262.14" x2="-893.26" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st79" cx="31.5" cy="20.7" r="31.5"/>
-
- <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-892.01" y1="1262.14" x2="-892.01" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st80" cx="31.5" cy="19.4" r="31.5"/>
-
- <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-890.75" y1="1262.14" x2="-890.75" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st81" cx="31.5" cy="18.1" r="31.5"/>
-
- <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-889.5" y1="1262.14" x2="-889.5" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st82" cx="31.5" cy="16.9" r="31.5"/>
-
- <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-888.24" y1="1262.14" x2="-888.24" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st83" cx="31.5" cy="15.6" r="31.5"/>
-
- <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-886.99" y1="1262.14" x2="-886.99" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st84" cx="31.5" cy="14.4" r="31.5"/>
-
- <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-885.73" y1="1262.14" x2="-885.73" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st85" cx="31.5" cy="13.1" r="31.5"/>
-
- <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-884.48" y1="1262.14" x2="-884.48" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st86" cx="31.5" cy="11.9" r="31.5"/>
-
- <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-883.23" y1="1262.14" x2="-883.23" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st87" cx="31.5" cy="10.6" r="31.5"/>
-
- <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-881.97" y1="1262.14" x2="-881.97" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st88" cx="31.5" cy="9.4" r="31.5"/>
-
- <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-880.72" y1="1262.14" x2="-880.72" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st89" cx="31.5" cy="8.1" r="31.5"/>
-
- <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="-879.46" y1="1262.14" x2="-879.46" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st90" cx="31.5" cy="6.9" r="31.5"/>
-
- <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-878.21" y1="1262.14" x2="-878.21" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st91" cx="31.5" cy="5.6" r="31.5"/>
-
- <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-876.95" y1="1262.14" x2="-876.95" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st92" cx="31.5" cy="4.3" r="31.5"/>
-
- <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-875.7" y1="1262.14" x2="-875.7" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st93" cx="31.5" cy="3.1" r="31.5"/>
-
- <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="-874.44" y1="1262.14" x2="-874.44" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st94" cx="31.5" cy="1.8" r="31.5"/>
-
- <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="-873.19" y1="1262.14" x2="-873.19" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st95" cx="31.5" cy="0.6" r="31.5"/>
-
- <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="-871.93" y1="1262.14" x2="-871.93" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st96" cx="31.5" cy="-0.7" r="31.5"/>
-
- <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="-870.68" y1="1262.14" x2="-870.68" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st97" cx="31.5" cy="-1.9" r="31.5"/>
-
- <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-869.42" y1="1262.14" x2="-869.42" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st98" cx="31.5" cy="-3.2" r="31.5"/>
-
- <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-868.17" y1="1262.14" x2="-868.17" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st99" cx="31.5" cy="-4.4" r="31.5"/>
-
- <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-866.92" y1="1262.14" x2="-866.92" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st100" cx="31.5" cy="-5.7" r="31.5"/>
-
- <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-865.66" y1="1262.14" x2="-865.66" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st101" cx="31.5" cy="-6.9" r="31.5"/>
-
- <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-864.41" y1="1262.14" x2="-864.41" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st102" cx="31.5" cy="-8.2" r="31.5"/>
-
- <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-863.15" y1="1262.14" x2="-863.15" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st103" cx="31.5" cy="-9.5" r="31.5"/>
-
- <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-861.9" y1="1262.14" x2="-861.9" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st104" cx="31.5" cy="-10.7" r="31.5"/>
-
- <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-860.64" y1="1262.14" x2="-860.64" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st105" cx="31.5" cy="-12" r="31.5"/>
-
- <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-859.39" y1="1262.14" x2="-859.39" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st106" cx="31.5" cy="-13.2" r="31.5"/>
-
- <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-858.13" y1="1262.14" x2="-858.13" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st107" cx="31.5" cy="-14.5" r="31.5"/>
-
- <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-856.88" y1="1262.14" x2="-856.88" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st108" cx="31.5" cy="-15.7" r="31.5"/>
-
- <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="-855.62" y1="1262.14" x2="-855.62" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st109" cx="31.5" cy="-17" r="31.5"/>
-
- <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="-854.37" y1="1262.14" x2="-854.37" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st110" cx="31.5" cy="-18.2" r="31.5"/>
-
- <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="-853.12" y1="1262.14" x2="-853.12" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st111" cx="31.5" cy="-19.5" r="31.5"/>
-
- <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="-851.86" y1="1262.14" x2="-851.86" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st112" cx="31.5" cy="-20.7" r="31.5"/>
-
- <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-850.61" y1="1262.14" x2="-850.61" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st113" cx="31.5" cy="-22" r="31.5"/>
-
- <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-849.35" y1="1262.14" x2="-849.35" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st114" cx="31.5" cy="-23.3" r="31.5"/>
-
- <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-848.1" y1="1262.14" x2="-848.1" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st115" cx="31.5" cy="-24.5" r="31.5"/>
-
- <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-846.84" y1="1262.14" x2="-846.84" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st116" cx="31.5" cy="-25.8" r="31.5"/>
-
- <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-845.59" y1="1262.14" x2="-845.59" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st117" cx="31.5" cy="-27" r="31.5"/>
-
- <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-844.33" y1="1262.14" x2="-844.33" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st118" cx="31.5" cy="-28.3" r="31.5"/>
-
- <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-843.08" y1="1262.14" x2="-843.08" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st119" cx="31.5" cy="-29.5" r="31.5"/>
-
- <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-841.82" y1="1262.14" x2="-841.82" y2="1325.1" gradientTransform="matrix(0 -1 1 0 -1262.14 -872.6)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st120" cx="31.5" cy="-30.8" r="31.5"/>
- </g>
- </g>
- </g>
- </svg>
|