dispatch-hd-bg.svg 422 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <svg width="1440px" height="854px" viewBox="0 0 1440 854" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  3. <!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com -->
  4. <title>banner</title>
  5. <desc>Created with Sketch.</desc>
  6. <defs>
  7. <polygon id="path-1" points="3.41060513e-13 0 1440 0 1440 879 3.41060513e-13 879"></polygon>
  8. <linearGradient x1="11.1934161%" y1="64.7896028%" x2="102.726909%" y2="32.5646209%" id="linearGradient-3">
  9. <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
  10. <stop stop-color="#7367F0" offset="100%"></stop>
  11. </linearGradient>
  12. <linearGradient x1="60.5651932%" y1="47.7561968%" x2="102.014656%" y2="36.6353657%" id="linearGradient-4">
  13. <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
  14. <stop stop-color="#7367F0" offset="100%"></stop>
  15. </linearGradient>
  16. <linearGradient x1="11.1934161%" y1="64.405604%" x2="100.67531%" y2="33.4308516%" id="linearGradient-5">
  17. <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
  18. <stop stop-color="#7367F0" offset="100%"></stop>
  19. </linearGradient>
  20. <linearGradient x1="11.1934161%" y1="64.405604%" x2="137.94912%" y2="19.3253863%" id="linearGradient-6">
  21. <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
  22. <stop stop-color="#7367F0" offset="100%"></stop>
  23. </linearGradient>
  24. <linearGradient x1="69.8581072%" y1="62.3920092%" x2="23.1552816%" y2="38.4520161%" id="linearGradient-7">
  25. <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
  26. <stop stop-color="#7367F0" offset="100%"></stop>
  27. </linearGradient>
  28. <linearGradient x1="15.3670987%" y1="34.6028368%" x2="53.7292921%" y2="62.5306213%" id="linearGradient-8">
  29. <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
  30. <stop stop-color="#7367F0" offset="100%"></stop>
  31. </linearGradient>
  32. <linearGradient x1="78.0935987%" y1="38.4795415%" x2="4.69510217%" y2="57.9638105%" id="linearGradient-9">
  33. <stop stop-color="#226EF3" offset="0%"></stop>
  34. <stop stop-color="#25CDBF" stop-opacity="0.939739948" offset="100%"></stop>
  35. </linearGradient>
  36. <linearGradient x1="61.1635756%" y1="42.2282375%" x2="2.40663285%" y2="58.5030785%" id="linearGradient-10">
  37. <stop stop-color="#226EF3" offset="0%"></stop>
  38. <stop stop-color="#25CDBF" offset="100%"></stop>
  39. </linearGradient>
  40. <linearGradient x1="15.8128537%" y1="60.5430731%" x2="73.0590173%" y2="42.8887128%" id="linearGradient-11">
  41. <stop stop-color="#8FD7FF" offset="0.68%"></stop>
  42. <stop stop-color="#A1E3FF" offset="25.3%"></stop>
  43. <stop stop-color="#C0F7FF" offset="73.09%"></stop>
  44. <stop stop-color="#CBFFFF" offset="100%"></stop>
  45. </linearGradient>
  46. <linearGradient x1="-0.000137291844%" y1="49.9998857%" x2="100.000011%" y2="49.9998857%" id="linearGradient-12">
  47. <stop stop-color="#4C83FF" offset="0%"></stop>
  48. <stop stop-color="#2AFADF" offset="53.27%"></stop>
  49. <stop stop-color="#FFFFFF" offset="100%"></stop>
  50. </linearGradient>
  51. <linearGradient x1="86.4876392%" y1="53.8446672%" x2="42.5316363%" y2="51.0631262%" id="linearGradient-13">
  52. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  53. <stop stop-color="#005BEA" offset="100%"></stop>
  54. </linearGradient>
  55. <linearGradient x1="116.110228%" y1="50.0013593%" x2="-38.817332%" y2="50.0013593%" id="linearGradient-14">
  56. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  57. <stop stop-color="#1C45A3" offset="100%"></stop>
  58. </linearGradient>
  59. <linearGradient x1="73.3871059%" y1="67.8999342%" x2="-30.429778%" y2="34.0246849%" id="linearGradient-15">
  60. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  61. <stop stop-color="#1C45A3" offset="100%"></stop>
  62. </linearGradient>
  63. <linearGradient x1="24.7120508%" y1="52.6325974%" x2="89.2400561%" y2="24.93205%" id="linearGradient-16">
  64. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  65. <stop stop-color="#005BEA" offset="100%"></stop>
  66. </linearGradient>
  67. <linearGradient x1="-1.91544956%" y1="30.0326356%" x2="259.325949%" y2="134.768226%" id="linearGradient-17">
  68. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  69. <stop stop-color="#005BEA" offset="100%"></stop>
  70. </linearGradient>
  71. <linearGradient x1="103.510431%" y1="57.297819%" x2="-80.7841064%" y2="32.1631807%" id="linearGradient-18">
  72. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  73. <stop stop-color="#005BEA" offset="100%"></stop>
  74. </linearGradient>
  75. <linearGradient x1="-17.0246489%" y1="48.5951161%" x2="98.5753028%" y2="51.0161232%" id="linearGradient-19">
  76. <stop stop-color="#4C83FF" offset="0%"></stop>
  77. <stop stop-color="#2AFADF" offset="100%"></stop>
  78. </linearGradient>
  79. <linearGradient x1="-17.0246489%" y1="48.5951161%" x2="98.5753028%" y2="51.0166092%" id="linearGradient-20">
  80. <stop stop-color="#4C83FF" offset="0%"></stop>
  81. <stop stop-color="#2AFADF" offset="100%"></stop>
  82. </linearGradient>
  83. <linearGradient x1="0.00291562023%" y1="50.0062172%" x2="100.002778%" y2="50.0062172%" id="linearGradient-21">
  84. <stop stop-color="#4C83FF" offset="0%"></stop>
  85. <stop stop-color="#2AFADF" offset="100%"></stop>
  86. </linearGradient>
  87. <linearGradient x1="0.000443038433%" y1="50.0030374%" x2="99.9990687%" y2="50.0030374%" id="linearGradient-22">
  88. <stop stop-color="#4C83FF" offset="0%"></stop>
  89. <stop stop-color="#2AFADF" offset="100%"></stop>
  90. </linearGradient>
  91. <linearGradient x1="-12.5145992%" y1="73.8427696%" x2="56.2968691%" y2="41.4363849%" id="linearGradient-23">
  92. <stop stop-color="#1E2275" offset="0%"></stop>
  93. <stop stop-color="#0046BC" offset="100%"></stop>
  94. </linearGradient>
  95. <linearGradient x1="84.496382%" y1="-28.7407748%" x2="20.3929902%" y2="117.2916%" id="linearGradient-24">
  96. <stop stop-color="#2AFADF" offset="0%"></stop>
  97. <stop stop-color="#4C83FF" offset="100%"></stop>
  98. </linearGradient>
  99. <linearGradient x1="-0.000778119736%" y1="49.9998346%" x2="100.000465%" y2="49.9998346%" id="linearGradient-25">
  100. <stop stop-color="#1E2275" offset="0%"></stop>
  101. <stop stop-color="#0046BC" offset="100%"></stop>
  102. </linearGradient>
  103. <linearGradient x1="55.0024009%" y1="166.64705%" x2="47.6175038%" y2="-10.3984127%" id="linearGradient-26">
  104. <stop stop-color="#D4FFF1" offset="0.54%"></stop>
  105. <stop stop-color="#E5C6C0" offset="32.24%"></stop>
  106. <stop stop-color="#F39496" offset="63.32%"></stop>
  107. <stop stop-color="#FC757C" offset="86.82%"></stop>
  108. <stop stop-color="#FF6A72" offset="100%"></stop>
  109. </linearGradient>
  110. <linearGradient x1="91.9549435%" y1="52.5525182%" x2="-209.873717%" y2="36.5556546%" id="linearGradient-27">
  111. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  112. <stop stop-color="#1C22A3" offset="100%"></stop>
  113. </linearGradient>
  114. <linearGradient x1="-137.027419%" y1="-150.028812%" x2="62.015643%" y2="76.6451538%" id="linearGradient-28">
  115. <stop stop-color="#4C83FF" offset="0%"></stop>
  116. <stop stop-color="#2AFADF" offset="100%"></stop>
  117. </linearGradient>
  118. <linearGradient x1="-120.846368%" y1="-131.595549%" x2="78.1980006%" y2="95.0788833%" id="linearGradient-29">
  119. <stop stop-color="#4C83FF" offset="0%"></stop>
  120. <stop stop-color="#2AFADF" offset="100%"></stop>
  121. </linearGradient>
  122. <linearGradient x1="25.1112094%" y1="89.4673081%" x2="76.5219401%" y2="18.377666%" id="linearGradient-30">
  123. <stop stop-color="#1E2275" offset="0%"></stop>
  124. <stop stop-color="#0046BC" offset="100%"></stop>
  125. </linearGradient>
  126. <linearGradient x1="50.8444347%" y1="95.3415803%" x2="48.3707271%" y2="13.1499546%" id="linearGradient-31">
  127. <stop stop-color="#1E2275" offset="0%"></stop>
  128. <stop stop-color="#0046BC" offset="100%"></stop>
  129. </linearGradient>
  130. <linearGradient x1="38.4450763%" y1="78.6170947%" x2="110.757103%" y2="-84.8036995%" id="linearGradient-32">
  131. <stop stop-color="#FB6583" offset="0.54%"></stop>
  132. <stop stop-color="#FC7688" offset="13.02%"></stop>
  133. <stop stop-color="#FDA797" offset="52.77%"></stop>
  134. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  135. <stop stop-color="#FFD1A3" offset="100%"></stop>
  136. </linearGradient>
  137. <linearGradient x1="41.1233345%" y1="85.9577042%" x2="63.566441%" y2="1.22377889%" id="linearGradient-33">
  138. <stop stop-color="#1E2275" offset="0%"></stop>
  139. <stop stop-color="#0046BC" offset="100%"></stop>
  140. </linearGradient>
  141. <linearGradient x1="-0.00128539276%" y1="49.9990154%" x2="100.000004%" y2="49.9990154%" id="linearGradient-34">
  142. <stop stop-color="#FFFFFF" offset="0%"></stop>
  143. <stop stop-color="#2AFADF" offset="100%"></stop>
  144. </linearGradient>
  145. <linearGradient x1="-153.89178%" y1="-162.112975%" x2="10.7799402%" y2="9.19765562%" id="linearGradient-35">
  146. <stop stop-color="#4C83FF" offset="0%"></stop>
  147. <stop stop-color="#2AFADF" offset="100%"></stop>
  148. </linearGradient>
  149. <linearGradient x1="-153.911783%" y1="-162.111964%" x2="10.7766759%" y2="9.19866613%" id="linearGradient-36">
  150. <stop stop-color="#E975C9" offset="0%"></stop>
  151. <stop stop-color="#E933C9" offset="100%"></stop>
  152. </linearGradient>
  153. <linearGradient x1="0.000139134583%" y1="49.9999524%" x2="100.00004%" y2="49.9999524%" id="linearGradient-37">
  154. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  155. <stop stop-color="#1C22A3" offset="100%"></stop>
  156. </linearGradient>
  157. <linearGradient x1="85.6461917%" y1="35.9379407%" x2="31.9699817%" y2="55.5766097%" id="linearGradient-38">
  158. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  159. <stop stop-color="#005BEA" offset="100%"></stop>
  160. </linearGradient>
  161. <linearGradient x1="-1.3704871%" y1="43.1153353%" x2="88.3865409%" y2="53.8906388%" id="linearGradient-39">
  162. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  163. <stop stop-color="#005BEA" stop-opacity="0" offset="100%"></stop>
  164. </linearGradient>
  165. <linearGradient x1="20.5221108%" y1="49.9378654%" x2="182.251582%" y2="50.2789573%" id="linearGradient-40">
  166. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  167. <stop stop-color="#005BEA" offset="100%"></stop>
  168. </linearGradient>
  169. <linearGradient x1="137.985945%" y1="65.5856724%" x2="41.970057%" y2="48.5776048%" id="linearGradient-41">
  170. <stop stop-color="#1E2275" offset="0%"></stop>
  171. <stop stop-color="#0046BC" offset="100%"></stop>
  172. </linearGradient>
  173. <linearGradient x1="51.1622467%" y1="50.9496283%" x2="46.9683118%" y2="59.6124682%" id="linearGradient-42">
  174. <stop stop-color="#311563" offset="0%"></stop>
  175. <stop stop-color="#5722B6" offset="100%"></stop>
  176. </linearGradient>
  177. <linearGradient x1="-0.170589933%" y1="49.9999353%" x2="100.170355%" y2="49.9999353%" id="linearGradient-43">
  178. <stop stop-color="#E975C9" offset="0%"></stop>
  179. <stop stop-color="#E933C9" offset="100%"></stop>
  180. </linearGradient>
  181. <linearGradient x1="37.3334889%" y1="61.1347952%" x2="54.7270938%" y2="48.0010022%" id="linearGradient-44">
  182. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  183. <stop stop-color="#005BEA" offset="100%"></stop>
  184. </linearGradient>
  185. <linearGradient x1="96.1507235%" y1="54.8112181%" x2="-3.22456152%" y2="44.817765%" id="linearGradient-45">
  186. <stop stop-color="#55FF94" offset="0.63%"></stop>
  187. <stop stop-color="#E9FFF9" offset="100%"></stop>
  188. </linearGradient>
  189. <linearGradient x1="56.6200988%" y1="70.4880921%" x2="40.6541635%" y2="14.6605277%" id="linearGradient-46">
  190. <stop stop-color="#55FF94" offset="0.63%"></stop>
  191. <stop stop-color="#E9FFF9" offset="100%"></stop>
  192. </linearGradient>
  193. <linearGradient x1="4.55213339%" y1="-32.2161982%" x2="60.6454546%" y2="76.0273662%" id="linearGradient-47">
  194. <stop stop-color="#4C83FF" offset="0%"></stop>
  195. <stop stop-color="#2AFADF" offset="100%"></stop>
  196. </linearGradient>
  197. <linearGradient x1="12.6364785%" y1="49.3705593%" x2="190.868917%" y2="51.7594635%" id="linearGradient-48">
  198. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  199. <stop stop-color="#005BEA" offset="100%"></stop>
  200. </linearGradient>
  201. <linearGradient x1="-67.1281017%" y1="50.0367513%" x2="178.210371%" y2="49.9379745%" id="linearGradient-49">
  202. <stop stop-color="#55FF94" offset="0.63%"></stop>
  203. <stop stop-color="#E9FFF9" offset="100%"></stop>
  204. </linearGradient>
  205. <linearGradient x1="19.262273%" y1="25.2707567%" x2="87.5147183%" y2="79.2193366%" id="linearGradient-50">
  206. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  207. <stop stop-color="#005BEA" offset="100%"></stop>
  208. </linearGradient>
  209. <linearGradient x1="-1261.86337%" y1="-3361.60817%" x2="-1301.70059%" y2="-3465.28845%" id="linearGradient-51">
  210. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  211. <stop stop-color="#005BEA" offset="100%"></stop>
  212. </linearGradient>
  213. <linearGradient x1="-6.54865337%" y1="18.7861843%" x2="77.9700958%" y2="77.2800431%" id="linearGradient-52">
  214. <stop stop-color="#FFFFFF" offset="0%"></stop>
  215. <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
  216. </linearGradient>
  217. <linearGradient x1="-0.142634731%" y1="39.8338909%" x2="110.597485%" y2="63.3424314%" id="linearGradient-53">
  218. <stop stop-color="#FFFFFF" offset="0%"></stop>
  219. <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
  220. </linearGradient>
  221. <linearGradient x1="107.693896%" y1="13.4402008%" x2="4.63177122%" y2="84.3033252%" id="linearGradient-54">
  222. <stop stop-color="#FFFFFF" offset="0%"></stop>
  223. <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
  224. </linearGradient>
  225. <linearGradient x1="-52.7207992%" y1="50.0005916%" x2="47.278347%" y2="50.0005916%" id="linearGradient-55">
  226. <stop stop-color="#4C83FF" offset="0%"></stop>
  227. <stop stop-color="#2AFADF" offset="100%"></stop>
  228. </linearGradient>
  229. <linearGradient x1="43.4962564%" y1="-6.39457525%" x2="53.5206035%" y2="80.5583726%" id="linearGradient-56">
  230. <stop stop-color="#4C83FF" offset="0%"></stop>
  231. <stop stop-color="#2AFADF" offset="100%"></stop>
  232. </linearGradient>
  233. <linearGradient x1="49.2714773%" y1="43.1101902%" x2="55.3836812%" y2="101.263515%" id="linearGradient-57">
  234. <stop stop-color="#4C83FF" offset="0%"></stop>
  235. <stop stop-color="#2AFADF" offset="100%"></stop>
  236. </linearGradient>
  237. <linearGradient x1="-73.4325478%" y1="49.9997042%" x2="26.5665984%" y2="49.9997042%" id="linearGradient-58">
  238. <stop stop-color="#4C83FF" offset="0%"></stop>
  239. <stop stop-color="#2AFADF" offset="100%"></stop>
  240. </linearGradient>
  241. <linearGradient x1="44.0235591%" y1="1.56740706%" x2="54.2968276%" y2="84.893488%" id="linearGradient-59">
  242. <stop stop-color="#4C83FF" offset="0%"></stop>
  243. <stop stop-color="#2AFADF" offset="100%"></stop>
  244. </linearGradient>
  245. <linearGradient x1="47.2000825%" y1="31.854441%" x2="58.8938941%" y2="107.80654%" id="linearGradient-60">
  246. <stop stop-color="#4C83FF" offset="0%"></stop>
  247. <stop stop-color="#2AFADF" offset="100%"></stop>
  248. </linearGradient>
  249. <linearGradient x1="-135.568306%" y1="50.0002958%" x2="-35.5689891%" y2="50.0002958%" id="linearGradient-61">
  250. <stop stop-color="#E933C9" offset="0%"></stop>
  251. <stop stop-color="#E975C9" offset="100%"></stop>
  252. </linearGradient>
  253. <linearGradient x1="50%" y1="6.67684596%" x2="50%" y2="93.2130822%" id="linearGradient-62">
  254. <stop stop-color="#4C83FF" offset="0%"></stop>
  255. <stop stop-color="#2AFADF" offset="100%"></stop>
  256. </linearGradient>
  257. <linearGradient x1="50%" y1="14.4318881%" x2="50%" y2="177.24651%" id="linearGradient-63">
  258. <stop stop-color="#4C83FF" offset="0%"></stop>
  259. <stop stop-color="#2AFADF" offset="100%"></stop>
  260. </linearGradient>
  261. <linearGradient x1="-70.2942281%" y1="50.0002958%" x2="29.704918%" y2="50.0002958%" id="linearGradient-64">
  262. <stop stop-color="#4C83FF" offset="0%"></stop>
  263. <stop stop-color="#2AFADF" offset="100%"></stop>
  264. </linearGradient>
  265. <linearGradient x1="49.9989786%" y1="24.0378979%" x2="49.9989786%" y2="114.209983%" id="linearGradient-65">
  266. <stop stop-color="#4C83FF" offset="0%"></stop>
  267. <stop stop-color="#2AFADF" offset="100%"></stop>
  268. </linearGradient>
  269. <linearGradient x1="49.9996595%" y1="4.56899604%" x2="49.9996595%" y2="165.839292%" id="linearGradient-66">
  270. <stop stop-color="#4C83FF" offset="0%"></stop>
  271. <stop stop-color="#2AFADF" offset="100%"></stop>
  272. </linearGradient>
  273. <linearGradient x1="50.4319053%" y1="102.625686%" x2="49.9661638%" y2="8.69548401%" id="linearGradient-67">
  274. <stop stop-color="#4C83FF" offset="0%"></stop>
  275. <stop stop-color="#2AFADF" offset="41.04%"></stop>
  276. <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
  277. </linearGradient>
  278. <linearGradient x1="49.9999046%" y1="-0.422969323%" x2="49.9999046%" y2="100.42303%" id="linearGradient-68">
  279. <stop stop-color="#8FFFFF" offset="0%"></stop>
  280. <stop stop-color="#7367F0" offset="100%"></stop>
  281. </linearGradient>
  282. <linearGradient x1="50.0000954%" y1="-0.423029877%" x2="50.0000954%" y2="100.422969%" id="linearGradient-69">
  283. <stop stop-color="#8FFFFF" offset="0%"></stop>
  284. <stop stop-color="#73D3F0" offset="100%"></stop>
  285. </linearGradient>
  286. <linearGradient x1="49.9975198%" y1="-329.340278%" x2="49.9975198%" y2="170.982143%" id="linearGradient-70">
  287. <stop stop-color="#FB6583" offset="0.54%"></stop>
  288. <stop stop-color="#FC7688" offset="13.02%"></stop>
  289. <stop stop-color="#FDA797" offset="52.77%"></stop>
  290. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  291. <stop stop-color="#FFD1A3" offset="100%"></stop>
  292. </linearGradient>
  293. <linearGradient x1="49.9983165%" y1="-132.127946%" x2="49.9983165%" y2="319.072391%" id="linearGradient-71">
  294. <stop stop-color="#FB6583" offset="0.54%"></stop>
  295. <stop stop-color="#FC7688" offset="13.02%"></stop>
  296. <stop stop-color="#FDA797" offset="52.77%"></stop>
  297. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  298. <stop stop-color="#FFD1A3" offset="100%"></stop>
  299. </linearGradient>
  300. <linearGradient x1="50.0066649%" y1="-393.790989%" x2="50.0066649%" y2="537.403359%" id="linearGradient-72">
  301. <stop stop-color="#FB6583" offset="0.54%"></stop>
  302. <stop stop-color="#FC7688" offset="13.02%"></stop>
  303. <stop stop-color="#FDA797" offset="52.77%"></stop>
  304. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  305. <stop stop-color="#FFD1A3" offset="100%"></stop>
  306. </linearGradient>
  307. <linearGradient x1="0.04%" y1="-0.418702119%" x2="0.04%" y2="100.418566%" id="linearGradient-73">
  308. <stop stop-color="#FFED94" offset="0%"></stop>
  309. <stop stop-color="#FFED94" stop-opacity="0" offset="100%"></stop>
  310. </linearGradient>
  311. <linearGradient x1="0.05%" y1="-1.12195166%" x2="0.05%" y2="101.121861%" id="linearGradient-74">
  312. <stop stop-color="#FFED94" offset="0%"></stop>
  313. <stop stop-color="#FFED94" stop-opacity="0" offset="100%"></stop>
  314. </linearGradient>
  315. <linearGradient x1="-0.02%" y1="-0.418838193%" x2="-0.02%" y2="100.418838%" id="linearGradient-75">
  316. <stop stop-color="#F769B7" offset="0%"></stop>
  317. <stop stop-color="#F769B7" stop-opacity="0" offset="100%"></stop>
  318. </linearGradient>
  319. <linearGradient x1="0.05%" y1="-1.67700849%" x2="0.05%" y2="101.676056%" id="linearGradient-76">
  320. <stop stop-color="#D8F6FB" offset="0%"></stop>
  321. <stop stop-color="#D8F6FB" stop-opacity="0" offset="100%"></stop>
  322. </linearGradient>
  323. <linearGradient x1="50.0202729%" y1="98.6291123%" x2="50.0202729%" y2="-26.2811082%" id="linearGradient-77">
  324. <stop stop-color="#FB6583" stop-opacity="0" offset="0.54%"></stop>
  325. <stop stop-color="#FC7688" stop-opacity="0.1255" offset="13.02%"></stop>
  326. <stop stop-color="#FDA797" stop-opacity="0.5252" offset="52.77%"></stop>
  327. <stop stop-color="#FFC6A0" stop-opacity="0.8293" offset="83.02%"></stop>
  328. <stop stop-color="#FFD1A3" offset="100%"></stop>
  329. </linearGradient>
  330. <linearGradient x1="0.04%" y1="-0.838787813%" x2="0.04%" y2="100.837971%" id="linearGradient-78">
  331. <stop stop-color="#D8F6FB" offset="0%"></stop>
  332. <stop stop-color="#D8F6FB" stop-opacity="0" offset="100%"></stop>
  333. </linearGradient>
  334. <linearGradient x1="-0.01%" y1="50.0001812%" x2="-0.01%" y2="50.0001812%" id="linearGradient-79">
  335. <stop stop-color="#8BE1C6" offset="0.54%"></stop>
  336. <stop stop-color="#2484C6" stop-opacity="0" offset="100%"></stop>
  337. </linearGradient>
  338. <linearGradient x1="-0.01%" y1="-0.558132792%" x2="-0.01%" y2="100.558586%" id="linearGradient-80">
  339. <stop stop-color="#F769B7" offset="0%"></stop>
  340. <stop stop-color="#F769B7" stop-opacity="0" offset="100%"></stop>
  341. </linearGradient>
  342. <linearGradient x1="0.04%" y1="-0.419660353%" x2="0.04%" y2="100.418572%" id="linearGradient-81">
  343. <stop stop-color="#D8F6FB" offset="0%"></stop>
  344. <stop stop-color="#D8F6FB" stop-opacity="0" offset="100%"></stop>
  345. </linearGradient>
  346. <linearGradient x1="-1.13686838e-11%" y1="-0.418843893%" x2="-1.13686838e-11%" y2="100.419388%" id="linearGradient-82">
  347. <stop stop-color="#D8F6FB" offset="0%"></stop>
  348. <stop stop-color="#D8F6FB" stop-opacity="0" offset="100%"></stop>
  349. </linearGradient>
  350. <linearGradient x1="-9.13540905%" y1="-22.3473484%" x2="25.9061227%" y2="18.765739%" id="linearGradient-83">
  351. <stop stop-color="#4C83FF" offset="0%"></stop>
  352. <stop stop-color="#2AFADF" offset="100%"></stop>
  353. </linearGradient>
  354. <linearGradient x1="49.8791424%" y1="180.472934%" x2="50.1499197%" y2="-108.599854%" id="linearGradient-84">
  355. <stop stop-color="#4C83FF" offset="0%"></stop>
  356. <stop stop-color="#2AFADF" offset="100%"></stop>
  357. </linearGradient>
  358. <linearGradient x1="71.3228023%" y1="189.682953%" x2="49.8473363%" y2="47.9579744%" id="linearGradient-85">
  359. <stop stop-color="#4C83FF" offset="0%"></stop>
  360. <stop stop-color="#2AFADF" offset="100%"></stop>
  361. </linearGradient>
  362. <linearGradient x1="-0.01%" y1="-1.67700849%" x2="-0.01%" y2="101.676192%" id="linearGradient-86">
  363. <stop stop-color="#D8F6FB" offset="0%"></stop>
  364. <stop stop-color="#D8F6FB" stop-opacity="0" offset="100%"></stop>
  365. </linearGradient>
  366. <linearGradient x1="74.133493%" y1="64.2835157%" x2="0.117542153%" y2="44.396127%" id="linearGradient-87">
  367. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  368. <stop stop-color="#1C22A3" offset="100%"></stop>
  369. </linearGradient>
  370. <linearGradient x1="10.2539182%" y1="56.3383452%" x2="87.235456%" y2="30.0552922%" id="linearGradient-88">
  371. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  372. <stop stop-color="#005BEA" offset="100%"></stop>
  373. </linearGradient>
  374. <linearGradient x1="14.4723665%" y1="41.9634076%" x2="262.259918%" y2="100.264576%" id="linearGradient-89">
  375. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  376. <stop stop-color="#005BEA" offset="100%"></stop>
  377. </linearGradient>
  378. <linearGradient x1="57.5907995%" y1="76.1359458%" x2="31.794479%" y2="-12.6817275%" id="linearGradient-90">
  379. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  380. <stop stop-color="#005BEA" offset="100%"></stop>
  381. </linearGradient>
  382. <linearGradient x1="12.9412794%" y1="32.9308019%" x2="143.46435%" y2="93.0514%" id="linearGradient-91">
  383. <stop stop-color="#4C83FF" offset="0%"></stop>
  384. <stop stop-color="#2A87DF" stop-opacity="0" offset="100%"></stop>
  385. </linearGradient>
  386. <linearGradient x1="-17.0224177%" y1="48.5957713%" x2="98.5705677%" y2="51.0164866%" id="linearGradient-92">
  387. <stop stop-color="#4C83FF" offset="0%"></stop>
  388. <stop stop-color="#2AFADF" offset="100%"></stop>
  389. </linearGradient>
  390. <linearGradient x1="-17.0224177%" y1="48.5962572%" x2="98.5705677%" y2="51.0169725%" id="linearGradient-93">
  391. <stop stop-color="#4C83FF" offset="0%"></stop>
  392. <stop stop-color="#2AFADF" offset="100%"></stop>
  393. </linearGradient>
  394. <linearGradient x1="-8.44728278%" y1="148.235924%" x2="94.9312084%" y2="-25.5200262%" id="linearGradient-94">
  395. <stop stop-color="#55FF94" offset="0.63%"></stop>
  396. <stop stop-color="#E9FFF9" offset="100%"></stop>
  397. </linearGradient>
  398. <linearGradient x1="50.000663%" y1="100.142778%" x2="50.000663%" y2="-0.0349761462%" id="linearGradient-95">
  399. <stop stop-color="#4C83FF" offset="0%"></stop>
  400. <stop stop-color="#2AFADF" offset="53.27%"></stop>
  401. <stop stop-color="#FFFFFF" offset="100%"></stop>
  402. </linearGradient>
  403. <linearGradient x1="90.2952955%" y1="21.9480518%" x2="42.4746999%" y2="90.4162791%" id="linearGradient-96">
  404. <stop stop-color="#4C83FF" offset="0%"></stop>
  405. <stop stop-color="#2AFADF" offset="53.27%"></stop>
  406. <stop stop-color="#FFFFFF" offset="100%"></stop>
  407. </linearGradient>
  408. <linearGradient x1="-0.422772101%" y1="50.1677095%" x2="100.478071%" y2="50.1677095%" id="linearGradient-97">
  409. <stop stop-color="#4C83FF" offset="0%"></stop>
  410. <stop stop-color="#2AFADF" offset="100%"></stop>
  411. </linearGradient>
  412. <linearGradient x1="50%" y1="100.736895%" x2="50%" y2="-0.736714976%" id="linearGradient-98">
  413. <stop stop-color="#FFD555" offset="0%"></stop>
  414. <stop stop-color="#FFBFDB" offset="100%"></stop>
  415. </linearGradient>
  416. <linearGradient x1="72.3311147%" y1="10.2420024%" x2="31.8527593%" y2="83.9962085%" id="linearGradient-99">
  417. <stop stop-color="#FFFFFF" offset="0%"></stop>
  418. <stop stop-color="#FFFFFF" stop-opacity="0" offset="98.23%"></stop>
  419. </linearGradient>
  420. <linearGradient x1="74.0909688%" y1="6.50703305%" x2="30.059118%" y2="85.1253318%" id="linearGradient-100">
  421. <stop stop-color="#FFFFFF" offset="0%"></stop>
  422. <stop stop-color="#FFFFFF" stop-opacity="0" offset="98.23%"></stop>
  423. </linearGradient>
  424. <linearGradient x1="37.3734735%" y1="71.8310311%" x2="56.7427635%" y2="37.5497509%" id="linearGradient-101">
  425. <stop stop-color="#FFFFFF" offset="0%"></stop>
  426. <stop stop-color="#CA87DF" stop-opacity="0" offset="100%"></stop>
  427. </linearGradient>
  428. <linearGradient x1="230.018073%" y1="88.6897457%" x2="-85.111439%" y2="25.5603532%" id="linearGradient-102">
  429. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  430. <stop stop-color="#1C22A3" offset="100%"></stop>
  431. </linearGradient>
  432. <linearGradient x1="-1.11719209%" y1="49.9996616%" x2="101.117584%" y2="49.9996616%" id="linearGradient-103">
  433. <stop stop-color="#8FFFFF" offset="0%"></stop>
  434. <stop stop-color="#73D3F0" offset="100%"></stop>
  435. </linearGradient>
  436. <linearGradient x1="52.4202567%" y1="120.228119%" x2="49.9158204%" y2="31.9952864%" id="linearGradient-104">
  437. <stop stop-color="#6AFFAE" offset="0%"></stop>
  438. <stop stop-color="#2AFFD2" offset="29.57%"></stop>
  439. <stop stop-color="#FFFFFF" stop-opacity="0" offset="98.23%"></stop>
  440. </linearGradient>
  441. <linearGradient x1="45.2705735%" y1="-8.64365369%" x2="56.1810943%" y2="126.249804%" id="linearGradient-105">
  442. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  443. <stop stop-color="#005BEA" offset="100%"></stop>
  444. </linearGradient>
  445. <linearGradient x1="112.19444%" y1="70.1205916%" x2="-92.266365%" y2="4.78327216%" id="linearGradient-106">
  446. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  447. <stop stop-color="#005BEA" offset="100%"></stop>
  448. </linearGradient>
  449. <linearGradient x1="52.8481528%" y1="-2.76608427%" x2="47.1236506%" y2="103.288305%" id="linearGradient-107">
  450. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  451. <stop stop-color="#005BEA" offset="100%"></stop>
  452. </linearGradient>
  453. <linearGradient x1="244.535675%" y1="116.807844%" x2="30.6786285%" y2="43.5672189%" id="linearGradient-108">
  454. <stop stop-color="#4C83FF" offset="0%"></stop>
  455. <stop stop-color="#2AFADF" offset="100%"></stop>
  456. </linearGradient>
  457. <linearGradient x1="42.6557169%" y1="169.229561%" x2="54.8306493%" y2="20.4317756%" id="linearGradient-109">
  458. <stop stop-color="#4C83FF" offset="0%"></stop>
  459. <stop stop-color="#2AFADF" offset="100%"></stop>
  460. </linearGradient>
  461. <linearGradient x1="54.4990586%" y1="73.1903853%" x2="42.9307172%" y2="30.7041609%" id="linearGradient-110">
  462. <stop stop-color="#4C83FF" offset="0%"></stop>
  463. <stop stop-color="#2AFADF" offset="100%"></stop>
  464. </linearGradient>
  465. <linearGradient x1="63.089754%" y1="86.0831797%" x2="-4.90304279%" y2="26.0458119%" id="linearGradient-111">
  466. <stop stop-color="#736EFE" offset="0%"></stop>
  467. <stop stop-color="#5EFCE8" offset="100%"></stop>
  468. </linearGradient>
  469. <linearGradient x1="80.7420467%" y1="152.747434%" x2="49.4901762%" y2="48.1249174%" id="linearGradient-112">
  470. <stop stop-color="#4C83FF" offset="0%"></stop>
  471. <stop stop-color="#2AFADF" offset="100%"></stop>
  472. </linearGradient>
  473. <linearGradient x1="49.9990738%" y1="-121.217691%" x2="49.9990738%" y2="79.4260149%" id="linearGradient-113">
  474. <stop stop-color="#4C83FF" offset="0%"></stop>
  475. <stop stop-color="#2AFADF" offset="100%"></stop>
  476. </linearGradient>
  477. <linearGradient x1="7.52906094%" y1="60.3008234%" x2="203.02172%" y2="-3.13995953%" id="linearGradient-114">
  478. <stop stop-color="#4C83FF" offset="0%"></stop>
  479. <stop stop-color="#2AFADF" offset="100%"></stop>
  480. </linearGradient>
  481. <linearGradient x1="-84.7928702%" y1="50.0002715%" x2="15.2010514%" y2="50.0002715%" id="linearGradient-115">
  482. <stop stop-color="#1E2275" offset="0%"></stop>
  483. <stop stop-color="#0046BC" offset="100%"></stop>
  484. </linearGradient>
  485. <linearGradient x1="-18.6584756%" y1="57.7629704%" x2="97.7200011%" y2="40.6834912%" id="linearGradient-116">
  486. <stop stop-color="#1E2275" offset="0%"></stop>
  487. <stop stop-color="#0046BC" offset="100%"></stop>
  488. </linearGradient>
  489. <linearGradient x1="-139.65739%" y1="53.3474623%" x2="76.1005708%" y2="49.6464109%" id="linearGradient-117">
  490. <stop stop-color="#1E2275" offset="0%"></stop>
  491. <stop stop-color="#0046BC" offset="100%"></stop>
  492. </linearGradient>
  493. <linearGradient x1="0.639040798%" y1="53.5712656%" x2="58.8277703%" y2="47.4229207%" id="linearGradient-118">
  494. <stop stop-color="#1E2275" offset="0%"></stop>
  495. <stop stop-color="#0046BC" offset="100%"></stop>
  496. </linearGradient>
  497. <linearGradient x1="55.8780656%" y1="59.2717485%" x2="42.138114%" y2="37.4144261%" id="linearGradient-119">
  498. <stop stop-color="#1E2275" offset="0%"></stop>
  499. <stop stop-color="#0046BC" offset="100%"></stop>
  500. </linearGradient>
  501. <linearGradient x1="83.6895636%" y1="50.0028935%" x2="183.691082%" y2="50.0028935%" id="linearGradient-120">
  502. <stop stop-color="#4C83FF" offset="0%"></stop>
  503. <stop stop-color="#2AFADF" offset="100%"></stop>
  504. </linearGradient>
  505. <linearGradient x1="45.5283808%" y1="146.544616%" x2="51.5594187%" y2="55.3876583%" id="linearGradient-121">
  506. <stop stop-color="#4C83FF" offset="0%"></stop>
  507. <stop stop-color="#2AFADF" offset="100%"></stop>
  508. </linearGradient>
  509. <linearGradient x1="50.1667895%" y1="71.931852%" x2="51.4187857%" y2="171.326065%" id="linearGradient-122">
  510. <stop stop-color="#4C83FF" offset="0%"></stop>
  511. <stop stop-color="#2AFADF" offset="100%"></stop>
  512. </linearGradient>
  513. <linearGradient x1="39.881138%" y1="82.9373381%" x2="47.9818607%" y2="51.9700005%" id="linearGradient-123">
  514. <stop stop-color="#4C83FF" offset="0%"></stop>
  515. <stop stop-color="#2AFADF" offset="100%"></stop>
  516. </linearGradient>
  517. <linearGradient x1="8.13307141%" y1="100.27519%" x2="62.6039076%" y2="19.9714132%" id="linearGradient-124">
  518. <stop stop-color="#1E2275" offset="0%"></stop>
  519. <stop stop-color="#0046BC" offset="100%"></stop>
  520. </linearGradient>
  521. <linearGradient x1="55.5042491%" y1="72.5487825%" x2="15.6244515%" y2="-114.342569%" id="linearGradient-125">
  522. <stop stop-color="#1E2275" offset="0%"></stop>
  523. <stop stop-color="#0046BC" offset="100%"></stop>
  524. </linearGradient>
  525. <linearGradient x1="73.6672005%" y1="52.8077968%" x2="-5.28420378%" y2="33.4038884%" id="linearGradient-126">
  526. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  527. <stop stop-color="#1C45A3" offset="100%"></stop>
  528. </linearGradient>
  529. <linearGradient x1="-81.4714972%" y1="43.0831334%" x2="61.4648572%" y2="49.619496%" id="linearGradient-127">
  530. <stop stop-color="#1E2275" offset="0%"></stop>
  531. <stop stop-color="#0046BC" offset="100%"></stop>
  532. </linearGradient>
  533. <linearGradient x1="94.5241045%" y1="50.1828377%" x2="13.31607%" y2="49.8771394%" id="linearGradient-128">
  534. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  535. <stop stop-color="#005BEA" offset="100%"></stop>
  536. </linearGradient>
  537. <linearGradient x1="-6.18462162%" y1="50.0903317%" x2="61.521392%" y2="50.0276915%" id="linearGradient-129">
  538. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  539. <stop stop-color="#005BEA" offset="100%"></stop>
  540. </linearGradient>
  541. <path d="M49.6662252,0.667192633 C49.6620769,0.680173034 49.6594842,0.693672652 49.6553358,0.706653053 C49.6164449,0.819842153 49.5573308,0.93095439 49.4852531,1.03998976 C49.4722895,1.05971997 49.4598444,1.07945018 49.4458437,1.09866118 C49.3675434,1.20665812 49.2736868,1.31153976 49.1621997,1.41226767 C49.0901219,1.4776889 48.9978209,1.53739874 48.9117425,1.59866624 C48.8375906,1.65162628 48.7743281,1.70770161 48.6898053,1.75702714 L23.004205,16.7519869 C22.84916,16.8423304 22.6801144,16.9191744 22.5058834,16.9897878 C22.46077,17.0079604 22.4141009,17.0256137 22.3679504,17.0422286 C22.2595746,17.081689 22.1454947,17.1133612 22.0319334,17.1455526 C21.9147422,17.1787825 21.796514,17.2099354 21.6751745,17.2348578 C21.5320561,17.2644531 21.3879007,17.2914523 21.2406339,17.3101441 C21.2053729,17.3148171 21.1711489,17.3210477 21.1358879,17.3246822 C20.9378037,17.3464892 20.7366083,17.3568736 20.5354129,17.3589504 C20.5032632,17.3594696 20.4716319,17.3594696 20.4394822,17.3594696 C20.2408795,17.3584312 20.0427953,17.3475277 19.8467854,17.3272782 C19.8172283,17.3241629 19.7876713,17.3210477 19.7581142,17.3174131 C19.5636599,17.2945676 19.3717983,17.261857 19.1846036,17.2198005 C19.1498611,17.2120123 19.1161557,17.2031856 19.0819317,17.1948781 C18.9113305,17.1528216 18.7459147,17.1024577 18.5856843,17.0443055 C18.5571644,17.0339212 18.5270888,17.0261329 18.4990873,17.0152294 C18.3072258,16.9409815 18.1236609,16.8563493 17.9540967,16.7587367 L1.29480648,7.15947021 C0.589066944,6.75292403 0.235937904,6.21813149 0.236974994,5.68437739 L0.214677566,21.2992811 C0.214159021,21.8335544 0.56728806,22.3678277 1.27250905,22.7743739 L17.9317993,32.3736403 C18.0930667,32.46658 18.2662607,32.5491354 18.4477514,32.620268 C18.4570852,32.6239025 18.4674561,32.6264986 18.4767899,32.6301331 C18.5047913,32.6410366 18.5348669,32.6488249 18.5633869,32.6592092 C18.668133,32.697112 18.7723605,32.7355339 18.8817734,32.7661677 C18.9398505,32.7827826 19.0005202,32.7952438 19.0601529,32.8097818 C19.0943768,32.8180893 19.1275637,32.826916 19.1623062,32.8347042 C19.1934189,32.841454 19.2234945,32.8507999 19.2546072,32.8570305 C19.3712798,32.8809144 19.489508,32.9016831 19.6087733,32.918298 C19.6507754,32.9240094 19.6938147,32.9276439 19.7358168,32.9323168 C19.7653739,32.9359513 19.7949309,32.9390666 19.824488,32.9421819 C19.8680457,32.9468549 19.9116035,32.9530855 19.9551613,32.95672 C20.0718339,32.9660659 20.189025,32.9722965 20.3067347,32.9748925 C20.3435514,32.975931 20.380368,32.9738541 20.4171847,32.9743733 C20.4493345,32.9743733 20.4804472,32.9738541 20.512597,32.9738541 C20.5660071,32.9733349 20.6194172,32.9748925 20.6723088,32.9728157 C20.8045377,32.9681427 20.9367667,32.9593161 21.0679585,32.9458164 C21.0829963,32.9442588 21.0980341,32.9411435 21.1130719,32.9395859 C21.148333,32.9359513 21.1825569,32.9292015 21.217818,32.9245286 C21.3199713,32.9115482 21.4226432,32.8996062 21.5227223,32.8814337 C21.5667986,32.8731262 21.6077637,32.8580689 21.65184,32.8492423 C21.7742166,32.8238007 21.8919263,32.7926477 22.0096359,32.7594179 C22.0718613,32.7417645 22.1382351,32.7318994 22.1989048,32.7121692 C22.2492037,32.6955543 22.2953542,32.6742664 22.3446159,32.6566131 C22.3912849,32.639479 22.4374354,32.6223448 22.4835859,32.6036531 C22.657817,32.5330397 22.8268626,32.4567149 22.9819075,32.3658521 L48.6675079,17.3708924 C48.6820271,17.3620657 48.6970649,17.3537583 48.7110656,17.3449316 C48.778995,17.3039135 48.8272197,17.2566649 48.888408,17.2130507 C48.975005,17.151264 49.067306,17.0915542 49.1399022,17.0261329 C49.1466433,17.0199023 49.1570142,17.0147102 49.1637553,17.0084796 C49.247241,16.9311164 49.3213929,16.8511571 49.3851739,16.769121 C49.3996932,16.7504292 49.4095455,16.7312182 49.4230277,16.7125264 C49.4370284,16.6927962 49.4494735,16.673066 49.4624371,16.6533358 C49.484216,16.6206252 49.5096247,16.5884338 49.5282923,16.5546848 C49.5661461,16.4877059 49.5977773,16.4196886 49.623186,16.3511521 C49.6273344,16.3407677 49.6283715,16.3303834 49.6320013,16.3199991 C49.6366682,16.3070187 49.6392609,16.2940383 49.6428907,16.2810579 C49.6563729,16.2374437 49.6714107,16.1938296 49.680226,16.1496962 C49.6937081,16.0816789 49.7014863,16.0131424 49.7035605,15.9446059 C49.704079,15.9342216 49.704079,15.9238372 49.704079,15.9129337 L49.7264408,0.298030017 C49.7274135,0.42264187 49.704079,0.545696076 49.6662252,0.667192633 Z" id="path-130"></path>
  542. <path d="M49.6662252,0.667192633 C49.6620769,0.680173034 49.6594842,0.693672652 49.6553358,0.706653053 C49.6164449,0.819842153 49.5573308,0.93095439 49.4852531,1.03998976 C49.4722895,1.05971997 49.4598444,1.07945018 49.4458437,1.09866118 C49.3675434,1.20665812 49.2736868,1.31153976 49.1621997,1.41226767 C49.0901219,1.4776889 48.9978209,1.53739874 48.9117425,1.59866624 C48.8375906,1.65162628 48.7743281,1.70770161 48.6898053,1.75702714 L23.004205,16.7519869 C22.84916,16.8423304 22.6801144,16.9191744 22.5058834,16.9897878 C22.46077,17.0079604 22.4141009,17.0256137 22.3679504,17.0422286 C22.2595746,17.081689 22.1454947,17.1133612 22.0319334,17.1455526 C21.9147422,17.1787825 21.796514,17.2099354 21.6751745,17.2348578 C21.5320561,17.2644531 21.3879007,17.2914523 21.2406339,17.3101441 C21.2053729,17.3148171 21.1711489,17.3210477 21.1358879,17.3246822 C20.9378037,17.3464892 20.7366083,17.3568736 20.5354129,17.3589504 C20.5032632,17.3594696 20.4716319,17.3594696 20.4394822,17.3594696 C20.2408795,17.3584312 20.0427953,17.3475277 19.8467854,17.3272782 C19.8172283,17.3241629 19.7876713,17.3210477 19.7581142,17.3174131 C19.5636599,17.2945676 19.3717983,17.261857 19.1846036,17.2198005 C19.1498611,17.2120123 19.1161557,17.2031856 19.0819317,17.1948781 C18.9113305,17.1528216 18.7459147,17.1024577 18.5856843,17.0443055 C18.5571644,17.0339212 18.5270888,17.0261329 18.4990873,17.0152294 C18.3072258,16.9409815 18.1236609,16.8563493 17.9540967,16.7587367 L1.29480648,7.15947021 C0.589066944,6.75292403 0.235937904,6.21813149 0.236974994,5.68437739 L0.214677566,21.2992811 C0.214159021,21.8335544 0.56728806,22.3678277 1.27250905,22.7743739 L17.9317993,32.3736403 C18.0930667,32.46658 18.2662607,32.5491354 18.4477514,32.620268 C18.4570852,32.6239025 18.4674561,32.6264986 18.4767899,32.6301331 C18.5047913,32.6410366 18.5348669,32.6488249 18.5633869,32.6592092 C18.668133,32.697112 18.7723605,32.7355339 18.8817734,32.7661677 C18.9398505,32.7827826 19.0005202,32.7952438 19.0601529,32.8097818 C19.0943768,32.8180893 19.1275637,32.826916 19.1623062,32.8347042 C19.1934189,32.841454 19.2234945,32.8507999 19.2546072,32.8570305 C19.3712798,32.8809144 19.489508,32.9016831 19.6087733,32.918298 C19.6507754,32.9240094 19.6938147,32.9276439 19.7358168,32.9323168 C19.7653739,32.9359513 19.7949309,32.9390666 19.824488,32.9421819 C19.8680457,32.9468549 19.9116035,32.9530855 19.9551613,32.95672 C20.0718339,32.9660659 20.189025,32.9722965 20.3067347,32.9748925 C20.3435514,32.975931 20.380368,32.9738541 20.4171847,32.9743733 C20.4493345,32.9743733 20.4804472,32.9738541 20.512597,32.9738541 C20.5660071,32.9733349 20.6194172,32.9748925 20.6723088,32.9728157 C20.8045377,32.9681427 20.9367667,32.9593161 21.0679585,32.9458164 C21.0829963,32.9442588 21.0980341,32.9411435 21.1130719,32.9395859 C21.148333,32.9359513 21.1825569,32.9292015 21.217818,32.9245286 C21.3199713,32.9115482 21.4226432,32.8996062 21.5227223,32.8814337 C21.5667986,32.8731262 21.6077637,32.8580689 21.65184,32.8492423 C21.7742166,32.8238007 21.8919263,32.7926477 22.0096359,32.7594179 C22.0718613,32.7417645 22.1382351,32.7318994 22.1989048,32.7121692 C22.2492037,32.6955543 22.2953542,32.6742664 22.3446159,32.6566131 C22.3912849,32.639479 22.4374354,32.6223448 22.4835859,32.6036531 C22.657817,32.5330397 22.8268626,32.4567149 22.9819075,32.3658521 L48.6675079,17.3708924 C48.6820271,17.3620657 48.6970649,17.3537583 48.7110656,17.3449316 C48.778995,17.3039135 48.8272197,17.2566649 48.888408,17.2130507 C48.975005,17.151264 49.067306,17.0915542 49.1399022,17.0261329 C49.1466433,17.0199023 49.1570142,17.0147102 49.1637553,17.0084796 C49.247241,16.9311164 49.3213929,16.8511571 49.3851739,16.769121 C49.3996932,16.7504292 49.4095455,16.7312182 49.4230277,16.7125264 C49.4370284,16.6927962 49.4494735,16.673066 49.4624371,16.6533358 C49.484216,16.6206252 49.5096247,16.5884338 49.5282923,16.5546848 C49.5661461,16.4877059 49.5977773,16.4196886 49.623186,16.3511521 C49.6273344,16.3407677 49.6283715,16.3303834 49.6320013,16.3199991 C49.6366682,16.3070187 49.6392609,16.2940383 49.6428907,16.2810579 C49.6563729,16.2374437 49.6714107,16.1938296 49.680226,16.1496962 C49.6937081,16.0816789 49.7014863,16.0131424 49.7035605,15.9446059 C49.704079,15.9342216 49.704079,15.9238372 49.704079,15.9129337 L49.7264408,0.298030017 C49.7274135,0.42264187 49.704079,0.545696076 49.6662252,0.667192633 Z" id="path-132"></path>
  543. <radialGradient cx="49.990486%" cy="49.8298792%" fx="49.990486%" fy="49.8298792%" r="70.38172%" gradientTransform="translate(0.499905,0.498299),scale(0.580679,1.000000),rotate(-0.083296),translate(-0.499905,-0.498299)" id="radialGradient-134">
  544. <stop stop-color="#29FFC4" offset="0%"></stop>
  545. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  546. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  547. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  548. <stop stop-color="#DDF5EE" offset="100%"></stop>
  549. </radialGradient>
  550. <linearGradient x1="96.1692469%" y1="49.5088169%" x2="2.02747201%" y2="51.3130402%" id="linearGradient-135">
  551. <stop stop-color="#55FF94" offset="0.63%"></stop>
  552. <stop stop-color="#E9FFF9" offset="100%"></stop>
  553. </linearGradient>
  554. <linearGradient x1="96.7240871%" y1="49.9774479%" x2="8.8030699%" y2="50.0490169%" id="linearGradient-136">
  555. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  556. <stop stop-color="#005BEA" offset="100%"></stop>
  557. </linearGradient>
  558. <linearGradient x1="-6.1833487%" y1="50.0899839%" x2="61.5219894%" y2="50.0273449%" id="linearGradient-137">
  559. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  560. <stop stop-color="#005BEA" offset="100%"></stop>
  561. </linearGradient>
  562. <path d="M49.6366682,0.873840623 C49.6325198,0.886821025 49.6299271,0.900320642 49.6257787,0.913301044 C49.5868879,1.02649014 49.5277738,1.13760238 49.455696,1.24663775 C49.4427324,1.26636796 49.4302873,1.28609817 49.4162866,1.30530917 C49.3379864,1.41330611 49.2441297,1.51818775 49.1326426,1.61891566 C49.0605649,1.68433689 48.9682639,1.74404673 48.8821854,1.80531423 C48.8080335,1.85827427 48.7447711,1.9143496 48.6602482,1.96367513 L22.9746479,16.9586348 C22.819603,17.0489784 22.6505574,17.1258224 22.4763263,17.1964358 C22.4312129,17.2146084 22.3845439,17.2322617 22.3383934,17.2488766 C22.2300175,17.288337 22.1159376,17.3200092 22.0023763,17.3522006 C21.8851852,17.3854304 21.766957,17.4165834 21.6456175,17.4415058 C21.5024991,17.4711011 21.3583436,17.4981003 21.2110769,17.5167921 C21.1758158,17.521465 21.1415919,17.5276956 21.1063308,17.5313302 C20.9082467,17.5531372 20.7070513,17.5635215 20.5058559,17.5655984 C20.4737061,17.5661176 20.4420749,17.5661176 20.4099251,17.5661176 C20.2113224,17.5650792 20.0132383,17.5541757 19.8172283,17.5339262 C19.7876713,17.5308109 19.7581142,17.5276956 19.7285572,17.5240611 C19.5341029,17.5012156 19.3422413,17.468505 19.1550466,17.4264485 C19.1203041,17.4186603 19.0865987,17.4098336 19.0523747,17.4015261 C18.8817734,17.3594696 18.7163576,17.3091057 18.5561273,17.2509535 C18.5276073,17.2405692 18.4975317,17.2327809 18.4695303,17.2218774 C18.2776687,17.1476295 18.0941038,17.0629973 17.9245397,16.9653847 L1.26473088,7.3661182 C0.558991343,6.95957202 0.205862303,6.42477949 0.206899393,5.89102538 L0.184601965,21.5059291 C0.18408342,22.0402024 0.537212459,22.5744757 1.24243345,22.9810219 L17.9017237,32.5802883 C18.0629911,32.673228 18.2361851,32.7557834 18.4176758,32.826916 C18.4270096,32.8305505 18.4373805,32.8331466 18.4467143,32.8367811 C18.4747157,32.8476846 18.5047913,32.8554729 18.5333113,32.8658572 C18.6380574,32.9037599 18.7422849,32.9421819 18.8516978,32.9728157 C18.9097749,32.9894306 18.9704446,33.0018918 19.0300773,33.0164298 C19.0643012,33.0247373 19.0974881,33.033564 19.1322306,33.0413522 C19.1633433,33.048102 19.1934189,33.0574479 19.2245316,33.0636785 C19.3406856,33.0875624 19.4594324,33.1083311 19.5786977,33.124946 C19.6206998,33.1306574 19.6637391,33.1342919 19.7062597,33.1389648 C19.7358168,33.1425993 19.7653739,33.1457146 19.7949309,33.1488299 C19.8384887,33.1535029 19.8820464,33.1597335 19.9256042,33.163368 C20.0422768,33.1727139 20.1594679,33.1789445 20.2771776,33.1815405 C20.3139943,33.182579 20.350811,33.1805021 20.3876277,33.1810213 C20.4197774,33.1810213 20.4508901,33.1805021 20.4830399,33.1805021 C20.53645,33.1799829 20.5898602,33.1815405 20.6427517,33.1794637 C20.7749807,33.1747907 20.9072096,33.1659641 21.0384014,33.1524644 C21.0534392,33.1509068 21.068477,33.1477915 21.0835148,33.1462338 C21.1187759,33.1425993 21.1529999,33.1358495 21.1882609,33.1311766 C21.2904142,33.1181962 21.3930861,33.1062542 21.4931653,33.0880816 C21.5372416,33.0797742 21.5782066,33.0647169 21.6222829,33.0558902 C21.7446595,33.0304487 21.8623692,32.9992957 21.9800789,32.9660659 C22.0423043,32.9484125 22.108678,32.9385474 22.1693478,32.9188172 C22.2196466,32.9022023 22.2657971,32.8809144 22.3150589,32.8632611 C22.3617279,32.846127 22.4078784,32.8289928 22.4535103,32.8103011 C22.6277414,32.7396877 22.796787,32.6633629 22.9518319,32.5725001 L48.6374323,17.5775404 C48.6519515,17.5687137 48.6669893,17.5604063 48.68099,17.5515796 C48.7489194,17.5105615 48.7971441,17.4633129 48.8583324,17.4196987 C48.9449294,17.357912 49.0372304,17.2982021 49.1098266,17.2327809 C49.1165677,17.2265503 49.1269386,17.2213582 49.1336797,17.2151276 C49.2171654,17.1377644 49.2913173,17.0578051 49.3550983,16.975769 C49.3696176,16.9570772 49.3794699,16.9378662 49.3929521,16.9191744 C49.4069528,16.8994442 49.4193979,16.879714 49.4328801,16.8599838 C49.454659,16.8272732 49.4800676,16.7950818 49.4987353,16.7613327 C49.536589,16.6943539 49.5682203,16.6263366 49.593629,16.5578 C49.5977773,16.5474157 49.5988144,16.5370314 49.6024442,16.5266471 C49.6071111,16.5136667 49.6097039,16.5006863 49.6133337,16.4877059 C49.6268158,16.4440917 49.6418536,16.4004776 49.6506689,16.3563442 C49.6641511,16.2883269 49.6719292,16.2197904 49.6740034,16.1512539 C49.674522,16.1408696 49.674522,16.1304852 49.674522,16.1195817 L49.6968364,0.504678007 C49.6973379,0.628770645 49.674522,0.75182485 49.6366682,0.873840623 Z" id="path-138"></path>
  563. <path d="M49.6366682,0.873840623 C49.6325198,0.886821025 49.6299271,0.900320642 49.6257787,0.913301044 C49.5868879,1.02649014 49.5277738,1.13760238 49.455696,1.24663775 C49.4427324,1.26636796 49.4302873,1.28609817 49.4162866,1.30530917 C49.3379864,1.41330611 49.2441297,1.51818775 49.1326426,1.61891566 C49.0605649,1.68433689 48.9682639,1.74404673 48.8821854,1.80531423 C48.8080335,1.85827427 48.7447711,1.9143496 48.6602482,1.96367513 L22.9746479,16.9586348 C22.819603,17.0489784 22.6505574,17.1258224 22.4763263,17.1964358 C22.4312129,17.2146084 22.3845439,17.2322617 22.3383934,17.2488766 C22.2300175,17.288337 22.1159376,17.3200092 22.0023763,17.3522006 C21.8851852,17.3854304 21.766957,17.4165834 21.6456175,17.4415058 C21.5024991,17.4711011 21.3583436,17.4981003 21.2110769,17.5167921 C21.1758158,17.521465 21.1415919,17.5276956 21.1063308,17.5313302 C20.9082467,17.5531372 20.7070513,17.5635215 20.5058559,17.5655984 C20.4737061,17.5661176 20.4420749,17.5661176 20.4099251,17.5661176 C20.2113224,17.5650792 20.0132383,17.5541757 19.8172283,17.5339262 C19.7876713,17.5308109 19.7581142,17.5276956 19.7285572,17.5240611 C19.5341029,17.5012156 19.3422413,17.468505 19.1550466,17.4264485 C19.1203041,17.4186603 19.0865987,17.4098336 19.0523747,17.4015261 C18.8817734,17.3594696 18.7163576,17.3091057 18.5561273,17.2509535 C18.5276073,17.2405692 18.4975317,17.2327809 18.4695303,17.2218774 C18.2776687,17.1476295 18.0941038,17.0629973 17.9245397,16.9653847 L1.26473088,7.3661182 C0.558991343,6.95957202 0.205862303,6.42477949 0.206899393,5.89102538 L0.184601965,21.5059291 C0.18408342,22.0402024 0.537212459,22.5744757 1.24243345,22.9810219 L17.9017237,32.5802883 C18.0629911,32.673228 18.2361851,32.7557834 18.4176758,32.826916 C18.4270096,32.8305505 18.4373805,32.8331466 18.4467143,32.8367811 C18.4747157,32.8476846 18.5047913,32.8554729 18.5333113,32.8658572 C18.6380574,32.9037599 18.7422849,32.9421819 18.8516978,32.9728157 C18.9097749,32.9894306 18.9704446,33.0018918 19.0300773,33.0164298 C19.0643012,33.0247373 19.0974881,33.033564 19.1322306,33.0413522 C19.1633433,33.048102 19.1934189,33.0574479 19.2245316,33.0636785 C19.3406856,33.0875624 19.4594324,33.1083311 19.5786977,33.124946 C19.6206998,33.1306574 19.6637391,33.1342919 19.7062597,33.1389648 C19.7358168,33.1425993 19.7653739,33.1457146 19.7949309,33.1488299 C19.8384887,33.1535029 19.8820464,33.1597335 19.9256042,33.163368 C20.0422768,33.1727139 20.1594679,33.1789445 20.2771776,33.1815405 C20.3139943,33.182579 20.350811,33.1805021 20.3876277,33.1810213 C20.4197774,33.1810213 20.4508901,33.1805021 20.4830399,33.1805021 C20.53645,33.1799829 20.5898602,33.1815405 20.6427517,33.1794637 C20.7749807,33.1747907 20.9072096,33.1659641 21.0384014,33.1524644 C21.0534392,33.1509068 21.068477,33.1477915 21.0835148,33.1462338 C21.1187759,33.1425993 21.1529999,33.1358495 21.1882609,33.1311766 C21.2904142,33.1181962 21.3930861,33.1062542 21.4931653,33.0880816 C21.5372416,33.0797742 21.5782066,33.0647169 21.6222829,33.0558902 C21.7446595,33.0304487 21.8623692,32.9992957 21.9800789,32.9660659 C22.0423043,32.9484125 22.108678,32.9385474 22.1693478,32.9188172 C22.2196466,32.9022023 22.2657971,32.8809144 22.3150589,32.8632611 C22.3617279,32.846127 22.4078784,32.8289928 22.4535103,32.8103011 C22.6277414,32.7396877 22.796787,32.6633629 22.9518319,32.5725001 L48.6374323,17.5775404 C48.6519515,17.5687137 48.6669893,17.5604063 48.68099,17.5515796 C48.7489194,17.5105615 48.7971441,17.4633129 48.8583324,17.4196987 C48.9449294,17.357912 49.0372304,17.2982021 49.1098266,17.2327809 C49.1165677,17.2265503 49.1269386,17.2213582 49.1336797,17.2151276 C49.2171654,17.1377644 49.2913173,17.0578051 49.3550983,16.975769 C49.3696176,16.9570772 49.3794699,16.9378662 49.3929521,16.9191744 C49.4069528,16.8994442 49.4193979,16.879714 49.4328801,16.8599838 C49.454659,16.8272732 49.4800676,16.7950818 49.4987353,16.7613327 C49.536589,16.6943539 49.5682203,16.6263366 49.593629,16.5578 C49.5977773,16.5474157 49.5988144,16.5370314 49.6024442,16.5266471 C49.6071111,16.5136667 49.6097039,16.5006863 49.6133337,16.4877059 C49.6268158,16.4440917 49.6418536,16.4004776 49.6506689,16.3563442 C49.6641511,16.2883269 49.6719292,16.2197904 49.6740034,16.1512539 C49.674522,16.1408696 49.674522,16.1304852 49.674522,16.1195817 L49.6968364,0.504678007 C49.6973379,0.628770645 49.674522,0.75182485 49.6366682,0.873840623 Z" id="path-140"></path>
  564. <radialGradient cx="49.9894144%" cy="49.8339355%" fx="49.9894144%" fy="49.8339355%" r="70.3806638%" gradientTransform="translate(0.499894,0.498339),scale(0.580688,1.000000),rotate(-0.083296),translate(-0.499894,-0.498339)" id="radialGradient-142">
  565. <stop stop-color="#FF7BAC" offset="0%"></stop>
  566. <stop stop-color="#FFFFFF" offset="100%"></stop>
  567. </radialGradient>
  568. <linearGradient x1="90.9206168%" y1="49.9293246%" x2="-12.437487%" y2="50.2901895%" id="linearGradient-143">
  569. <stop stop-color="#55FF94" offset="0.63%"></stop>
  570. <stop stop-color="#E9FFF9" offset="100%"></stop>
  571. </linearGradient>
  572. <linearGradient x1="93.2085755%" y1="49.980006%" x2="12.6407833%" y2="50.0455893%" id="linearGradient-144">
  573. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  574. <stop stop-color="#005BEA" offset="100%"></stop>
  575. </linearGradient>
  576. <linearGradient x1="-6.18213443%" y1="50.0903298%" x2="61.5231701%" y2="50.0276909%" id="linearGradient-145">
  577. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  578. <stop stop-color="#005BEA" offset="100%"></stop>
  579. </linearGradient>
  580. <path d="M49.6065926,0.560753341 C49.6024442,0.573733743 49.5998515,0.58723336 49.5957031,0.600213762 C49.5568123,0.713402862 49.4976982,0.824515098 49.4256204,0.93355047 C49.4126568,0.95328068 49.4002117,0.97301089 49.386211,0.992221884 C49.3079108,1.10021882 49.2140541,1.20510047 49.102567,1.30582838 C49.0299707,1.37124961 48.9381883,1.43095945 48.8521098,1.49222695 C48.7779579,1.54518698 48.7146955,1.60126232 48.6301726,1.65058784 L22.9445723,16.6455476 C22.7895274,16.7358912 22.6204818,16.8127351 22.4462507,16.8833485 C22.4011373,16.9015211 22.3544683,16.9191744 22.3083178,16.9357893 C22.1999419,16.9752498 22.085862,17.0069219 21.9723007,17.0391133 C21.8551096,17.0723432 21.7368814,17.1034961 21.6155419,17.1284185 C21.4724235,17.1580138 21.328268,17.185013 21.1810013,17.2037048 C21.1457402,17.2083778 21.1115163,17.2146084 21.0762552,17.2182429 C20.8781711,17.2400499 20.6769757,17.2504343 20.4757803,17.2525111 C20.4436305,17.2530303 20.4119993,17.2530303 20.3798495,17.2530303 C20.1812468,17.2519919 19.9831627,17.2410884 19.7871527,17.220839 C19.7575957,17.2177237 19.7280386,17.2146084 19.6984816,17.2109738 C19.5040273,17.1881283 19.3121657,17.1554177 19.124971,17.1133612 C19.0902285,17.105573 19.0565231,17.0967463 19.0222991,17.0884389 C18.8516978,17.0463824 18.686282,16.9960184 18.5260517,16.9378662 C18.4975317,16.9274819 18.4674561,16.9196936 18.4394547,16.9087901 C18.2475931,16.8345422 18.0640282,16.74991 17.8944641,16.6522974 L1.23465528,7.05303091 C0.528915742,6.64648474 0.175786702,6.1116922 0.176823792,5.5779381 L0.154526364,21.1928418 C0.154007819,21.7271151 0.507136858,22.2613884 1.21235785,22.6679346 L17.8716481,32.2672011 C18.0334341,32.3601407 18.2061095,32.4426961 18.3876002,32.5138287 C18.396934,32.5174632 18.4073049,32.5200593 18.4166387,32.5236938 C18.4446401,32.5345973 18.4747157,32.5423856 18.5032357,32.5527699 C18.6079818,32.5906727 18.7122093,32.6290946 18.8216222,32.6597284 C18.8796993,32.6763433 18.940369,32.6888045 19.0000017,32.7033425 C19.0342256,32.71165 19.0674125,32.7204767 19.102155,32.7282649 C19.1332677,32.7350147 19.1633433,32.7443606 19.194456,32.7505912 C19.31061,32.7744751 19.4293568,32.7952438 19.5486221,32.8118587 C19.5906242,32.8175701 19.6336635,32.8212046 19.6761841,32.8258775 C19.7057412,32.829512 19.7352983,32.8326273 19.7648553,32.8357426 C19.8084131,32.8404156 19.8519708,32.8466462 19.8955286,32.8502807 C20.0122012,32.8596266 20.1293923,32.8658572 20.247102,32.8684533 C20.2839187,32.8694917 20.3207354,32.8674148 20.3575521,32.867934 C20.3897018,32.867934 20.4208145,32.8674148 20.4529643,32.8674148 C20.5063744,32.8668956 20.5597846,32.8684533 20.6126761,32.8663764 C20.7449051,32.8617034 20.877134,32.8528768 21.0083258,32.8393772 C21.0238822,32.8378195 21.0384014,32.8347042 21.0534392,32.8331466 C21.0887003,32.829512 21.1229243,32.8227622 21.1581853,32.8180893 C21.2603386,32.8051089 21.3630105,32.7931669 21.4630897,32.7749944 C21.507166,32.7666869 21.548131,32.7516296 21.5922073,32.742803 C21.7145839,32.7173614 21.8322936,32.6862084 21.9500033,32.6529786 C22.0122287,32.6353252 22.0786024,32.6254601 22.1392722,32.6057299 C22.189571,32.589115 22.23624,32.5678272 22.2849833,32.5501738 C22.3316523,32.5330397 22.3778028,32.5159055 22.4234347,32.4972138 C22.5976658,32.4266004 22.7667114,32.3502756 22.9217563,32.2594128 L48.6073567,17.2644531 C48.6218759,17.2556264 48.6369137,17.247319 48.6509144,17.2384923 C48.7188438,17.1974742 48.7670685,17.1502256 48.8282568,17.1066114 C48.9148538,17.0448247 49.0071547,16.9851149 49.079751,16.9196936 C49.0864921,16.913463 49.096863,16.9082709 49.1036041,16.9020403 C49.1870898,16.8246771 49.2607232,16.7447178 49.3250227,16.6626817 C49.339542,16.6439899 49.3493943,16.6247789 49.3628765,16.6060871 C49.3768772,16.5863569 49.3893223,16.5666267 49.4028045,16.5468965 C49.4245833,16.5141859 49.449992,16.4819945 49.4686597,16.4482455 C49.5065134,16.3812666 49.5381447,16.3132493 49.5635534,16.2447128 C49.5677017,16.2343284 49.5687388,16.2239441 49.5723686,16.2135598 C49.5770355,16.2005794 49.5796283,16.187599 49.5832581,16.1746186 C49.5967402,16.1310044 49.611778,16.0873903 49.6205933,16.0432569 C49.6340755,15.9752396 49.6418536,15.9067031 49.6439278,15.8381666 C49.6444464,15.8277823 49.6444464,15.817398 49.6444464,15.8064944 L49.6668081,0.191590725 C49.6677809,0.316202579 49.6444464,0.439256784 49.6065926,0.560753341 Z" id="path-146"></path>
  581. <path d="M49.6065926,0.560753341 C49.6024442,0.573733743 49.5998515,0.58723336 49.5957031,0.600213762 C49.5568123,0.713402862 49.4976982,0.824515098 49.4256204,0.93355047 C49.4126568,0.95328068 49.4002117,0.97301089 49.386211,0.992221884 C49.3079108,1.10021882 49.2140541,1.20510047 49.102567,1.30582838 C49.0299707,1.37124961 48.9381883,1.43095945 48.8521098,1.49222695 C48.7779579,1.54518698 48.7146955,1.60126232 48.6301726,1.65058784 L22.9445723,16.6455476 C22.7895274,16.7358912 22.6204818,16.8127351 22.4462507,16.8833485 C22.4011373,16.9015211 22.3544683,16.9191744 22.3083178,16.9357893 C22.1999419,16.9752498 22.085862,17.0069219 21.9723007,17.0391133 C21.8551096,17.0723432 21.7368814,17.1034961 21.6155419,17.1284185 C21.4724235,17.1580138 21.328268,17.185013 21.1810013,17.2037048 C21.1457402,17.2083778 21.1115163,17.2146084 21.0762552,17.2182429 C20.8781711,17.2400499 20.6769757,17.2504343 20.4757803,17.2525111 C20.4436305,17.2530303 20.4119993,17.2530303 20.3798495,17.2530303 C20.1812468,17.2519919 19.9831627,17.2410884 19.7871527,17.220839 C19.7575957,17.2177237 19.7280386,17.2146084 19.6984816,17.2109738 C19.5040273,17.1881283 19.3121657,17.1554177 19.124971,17.1133612 C19.0902285,17.105573 19.0565231,17.0967463 19.0222991,17.0884389 C18.8516978,17.0463824 18.686282,16.9960184 18.5260517,16.9378662 C18.4975317,16.9274819 18.4674561,16.9196936 18.4394547,16.9087901 C18.2475931,16.8345422 18.0640282,16.74991 17.8944641,16.6522974 L1.23465528,7.05303091 C0.528915742,6.64648474 0.175786702,6.1116922 0.176823792,5.5779381 L0.154526364,21.1928418 C0.154007819,21.7271151 0.507136858,22.2613884 1.21235785,22.6679346 L17.8716481,32.2672011 C18.0334341,32.3601407 18.2061095,32.4426961 18.3876002,32.5138287 C18.396934,32.5174632 18.4073049,32.5200593 18.4166387,32.5236938 C18.4446401,32.5345973 18.4747157,32.5423856 18.5032357,32.5527699 C18.6079818,32.5906727 18.7122093,32.6290946 18.8216222,32.6597284 C18.8796993,32.6763433 18.940369,32.6888045 19.0000017,32.7033425 C19.0342256,32.71165 19.0674125,32.7204767 19.102155,32.7282649 C19.1332677,32.7350147 19.1633433,32.7443606 19.194456,32.7505912 C19.31061,32.7744751 19.4293568,32.7952438 19.5486221,32.8118587 C19.5906242,32.8175701 19.6336635,32.8212046 19.6761841,32.8258775 C19.7057412,32.829512 19.7352983,32.8326273 19.7648553,32.8357426 C19.8084131,32.8404156 19.8519708,32.8466462 19.8955286,32.8502807 C20.0122012,32.8596266 20.1293923,32.8658572 20.247102,32.8684533 C20.2839187,32.8694917 20.3207354,32.8674148 20.3575521,32.867934 C20.3897018,32.867934 20.4208145,32.8674148 20.4529643,32.8674148 C20.5063744,32.8668956 20.5597846,32.8684533 20.6126761,32.8663764 C20.7449051,32.8617034 20.877134,32.8528768 21.0083258,32.8393772 C21.0238822,32.8378195 21.0384014,32.8347042 21.0534392,32.8331466 C21.0887003,32.829512 21.1229243,32.8227622 21.1581853,32.8180893 C21.2603386,32.8051089 21.3630105,32.7931669 21.4630897,32.7749944 C21.507166,32.7666869 21.548131,32.7516296 21.5922073,32.742803 C21.7145839,32.7173614 21.8322936,32.6862084 21.9500033,32.6529786 C22.0122287,32.6353252 22.0786024,32.6254601 22.1392722,32.6057299 C22.189571,32.589115 22.23624,32.5678272 22.2849833,32.5501738 C22.3316523,32.5330397 22.3778028,32.5159055 22.4234347,32.4972138 C22.5976658,32.4266004 22.7667114,32.3502756 22.9217563,32.2594128 L48.6073567,17.2644531 C48.6218759,17.2556264 48.6369137,17.247319 48.6509144,17.2384923 C48.7188438,17.1974742 48.7670685,17.1502256 48.8282568,17.1066114 C48.9148538,17.0448247 49.0071547,16.9851149 49.079751,16.9196936 C49.0864921,16.913463 49.096863,16.9082709 49.1036041,16.9020403 C49.1870898,16.8246771 49.2607232,16.7447178 49.3250227,16.6626817 C49.339542,16.6439899 49.3493943,16.6247789 49.3628765,16.6060871 C49.3768772,16.5863569 49.3893223,16.5666267 49.4028045,16.5468965 C49.4245833,16.5141859 49.449992,16.4819945 49.4686597,16.4482455 C49.5065134,16.3812666 49.5381447,16.3132493 49.5635534,16.2447128 C49.5677017,16.2343284 49.5687388,16.2239441 49.5723686,16.2135598 C49.5770355,16.2005794 49.5796283,16.187599 49.5832581,16.1746186 C49.5967402,16.1310044 49.611778,16.0873903 49.6205933,16.0432569 C49.6340755,15.9752396 49.6418536,15.9067031 49.6439278,15.8381666 C49.6444464,15.8277823 49.6444464,15.817398 49.6444464,15.8064944 L49.6668081,0.191590725 C49.6677809,0.316202579 49.6444464,0.439256784 49.6065926,0.560753341 Z" id="path-148"></path>
  582. <linearGradient x1="-0.026700024%" y1="50.0577979%" x2="99.9880203%" y2="49.9763856%" id="linearGradient-150">
  583. <stop stop-color="#00C6FF" offset="0%"></stop>
  584. <stop stop-color="#0072FF" offset="100%"></stop>
  585. </linearGradient>
  586. <linearGradient x1="94.2090485%" y1="50.0018548%" x2="-15.5572455%" y2="50.0018548%" id="linearGradient-151">
  587. <stop stop-color="#55FF94" offset="0.63%"></stop>
  588. <stop stop-color="#E9FFF9" offset="100%"></stop>
  589. </linearGradient>
  590. <linearGradient x1="129.2987%" y1="50.2114928%" x2="24.2839403%" y2="49.9520406%" id="linearGradient-152">
  591. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  592. <stop stop-color="#005BEA" offset="100%"></stop>
  593. </linearGradient>
  594. <linearGradient x1="-6.18505181%" y1="50.0899821%" x2="61.519589%" y2="50.0273444%" id="linearGradient-153">
  595. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  596. <stop stop-color="#005BEA" offset="100%"></stop>
  597. </linearGradient>
  598. <path d="M49.5770355,0.767401332 C49.5728872,0.780381733 49.5702945,0.793881351 49.5661461,0.806861752 C49.5267367,0.920050852 49.4681411,1.03116309 49.3960634,1.14019846 C49.3830998,1.15992867 49.3706547,1.17965888 49.356654,1.19886987 C49.2783537,1.30686681 49.1844971,1.41174846 49.0730099,1.51247637 C49.0004137,1.5778976 48.9086312,1.63760744 48.8225528,1.69887494 C48.7484009,1.75183498 48.6851384,1.80791031 48.6006156,1.85723583 L22.9150152,16.8521956 C22.7599703,16.9425391 22.5909247,17.0193831 22.4166936,17.0899965 C22.3710617,17.1081691 22.3249112,17.1258224 22.2787607,17.1424373 C22.1703848,17.1818977 22.056305,17.2135699 21.9427437,17.2457613 C21.8255525,17.2789911 21.7073243,17.3101441 21.5859848,17.3350665 C21.4428664,17.3646618 21.298711,17.391661 21.1514442,17.4103528 C21.1161832,17.4150258 21.0819592,17.4212563 21.0466982,17.4248909 C20.848614,17.4466979 20.6474186,17.4570823 20.4462232,17.4591591 C20.4140735,17.4596783 20.3824422,17.4596783 20.3502924,17.4596783 C20.1516898,17.4586399 19.9541242,17.4477364 19.7581142,17.4274869 C19.7285572,17.4243716 19.6990001,17.4212563 19.6694431,17.4176218 C19.4749887,17.3947763 19.2831271,17.3620657 19.0959325,17.3200092 C19.06119,17.312221 19.0274845,17.3033943 18.9932606,17.2950868 C18.8226593,17.2530303 18.6572435,17.2026664 18.4970132,17.1445142 C18.4684932,17.1341299 18.4384176,17.1263416 18.4104162,17.1154381 C18.2185546,17.0411902 18.0349897,16.956558 17.8654255,16.8589454 L1.20613531,7.2596789 C0.500395775,6.85313273 0.147266736,6.31834019 0.148303826,5.78458609 L0.126524942,21.3994898 C0.126006397,21.9337631 0.479135437,22.4680364 1.18435643,22.8745826 L17.8436467,32.473849 C18.0054327,32.5667887 18.1781081,32.6493441 18.3595988,32.7204767 C18.3689326,32.7241112 18.3793035,32.7267073 18.3886373,32.7303418 C18.4166387,32.7412453 18.4467143,32.7490336 18.4752343,32.7594179 C18.5799803,32.7973207 18.6842079,32.8357426 18.7936208,32.8663764 C18.8516978,32.8829913 18.9123676,32.8954525 18.9720002,32.9099905 C19.0062242,32.918298 19.0394111,32.9271247 19.0741536,32.9349129 C19.1052663,32.9416627 19.1353419,32.9510086 19.1664546,32.9572392 C19.2826086,32.9811231 19.4013554,33.0018918 19.5206207,33.0185067 C19.5626228,33.0242181 19.605662,33.0278526 19.6476642,33.0325255 C19.6772212,33.03616 19.7067783,33.0392753 19.7368539,33.0423906 C19.7804117,33.0470636 19.8239694,33.0532942 19.8675272,33.0569287 C19.9841998,33.0662746 20.1013909,33.0725052 20.2191006,33.0751012 C20.2559173,33.0761397 20.292734,33.0740628 20.3295506,33.074582 C20.3617004,33.074582 20.3928131,33.0740628 20.4249629,33.0740628 C20.478373,33.0735436 20.5317831,33.0751012 20.5846747,33.0730244 C20.7169036,33.0683514 20.8491326,33.0595248 20.9803244,33.0460251 C20.9953622,33.0444675 21.0104,33.0413522 21.0254378,33.0397946 C21.0606989,33.03616 21.0949228,33.0294102 21.1307024,33.0247373 C21.2328558,33.0117569 21.3355276,32.9998149 21.4356068,32.9816424 C21.4796831,32.9733349 21.5206482,32.9582776 21.5647245,32.949451 C21.687101,32.9240094 21.8048107,32.8928564 21.9225204,32.8596266 C21.9847458,32.8419732 22.0511195,32.8321081 22.1117893,32.8123779 C22.1620881,32.795763 22.2087572,32.7744751 22.2575004,32.7568218 C22.3041694,32.7396877 22.3503199,32.7225535 22.3959519,32.7038618 C22.5701829,32.6332484 22.7392285,32.5569236 22.8942734,32.4660608 L48.5798738,17.4711011 C48.5943931,17.4622744 48.6094309,17.453967 48.6234316,17.4451403 C48.6913609,17.4041222 48.7395856,17.3568736 48.8007739,17.3132594 C48.8873709,17.2514727 48.9796719,17.1917629 49.0522682,17.1263416 C49.0590092,17.120111 49.0693801,17.1149189 49.0761212,17.1086883 C49.1596069,17.0313251 49.2332403,16.9513658 49.2975399,16.8693297 C49.3120591,16.8506379 49.3219115,16.8314269 49.3353936,16.8127351 C49.3493943,16.7930049 49.3618394,16.7732747 49.3753216,16.7535445 C49.3971005,16.7208339 49.4225092,16.6886425 49.4411768,16.6548934 C49.4790306,16.5879146 49.5106618,16.5198973 49.5360705,16.4513608 C49.5397003,16.4409764 49.5412559,16.4305921 49.5448858,16.4202078 C49.5495527,16.4072274 49.5521454,16.394247 49.5557752,16.3812666 C49.5692574,16.3376524 49.5842952,16.2940383 49.5931104,16.2499049 C49.6065926,16.1818876 49.6143708,16.1133511 49.6164449,16.0448146 C49.6169635,16.0344303 49.6169635,16.0240459 49.6169635,16.0131424 L49.6392609,0.398238715 C49.6377053,0.522850569 49.6148893,0.645385558 49.5770355,0.767401332 Z" id="path-154"></path>
  599. <path d="M49.5770355,0.767401332 C49.5728872,0.780381733 49.5702945,0.793881351 49.5661461,0.806861752 C49.5267367,0.920050852 49.4681411,1.03116309 49.3960634,1.14019846 C49.3830998,1.15992867 49.3706547,1.17965888 49.356654,1.19886987 C49.2783537,1.30686681 49.1844971,1.41174846 49.0730099,1.51247637 C49.0004137,1.5778976 48.9086312,1.63760744 48.8225528,1.69887494 C48.7484009,1.75183498 48.6851384,1.80791031 48.6006156,1.85723583 L22.9150152,16.8521956 C22.7599703,16.9425391 22.5909247,17.0193831 22.4166936,17.0899965 C22.3710617,17.1081691 22.3249112,17.1258224 22.2787607,17.1424373 C22.1703848,17.1818977 22.056305,17.2135699 21.9427437,17.2457613 C21.8255525,17.2789911 21.7073243,17.3101441 21.5859848,17.3350665 C21.4428664,17.3646618 21.298711,17.391661 21.1514442,17.4103528 C21.1161832,17.4150258 21.0819592,17.4212563 21.0466982,17.4248909 C20.848614,17.4466979 20.6474186,17.4570823 20.4462232,17.4591591 C20.4140735,17.4596783 20.3824422,17.4596783 20.3502924,17.4596783 C20.1516898,17.4586399 19.9541242,17.4477364 19.7581142,17.4274869 C19.7285572,17.4243716 19.6990001,17.4212563 19.6694431,17.4176218 C19.4749887,17.3947763 19.2831271,17.3620657 19.0959325,17.3200092 C19.06119,17.312221 19.0274845,17.3033943 18.9932606,17.2950868 C18.8226593,17.2530303 18.6572435,17.2026664 18.4970132,17.1445142 C18.4684932,17.1341299 18.4384176,17.1263416 18.4104162,17.1154381 C18.2185546,17.0411902 18.0349897,16.956558 17.8654255,16.8589454 L1.20613531,7.2596789 C0.500395775,6.85313273 0.147266736,6.31834019 0.148303826,5.78458609 L0.126524942,21.3994898 C0.126006397,21.9337631 0.479135437,22.4680364 1.18435643,22.8745826 L17.8436467,32.473849 C18.0054327,32.5667887 18.1781081,32.6493441 18.3595988,32.7204767 C18.3689326,32.7241112 18.3793035,32.7267073 18.3886373,32.7303418 C18.4166387,32.7412453 18.4467143,32.7490336 18.4752343,32.7594179 C18.5799803,32.7973207 18.6842079,32.8357426 18.7936208,32.8663764 C18.8516978,32.8829913 18.9123676,32.8954525 18.9720002,32.9099905 C19.0062242,32.918298 19.0394111,32.9271247 19.0741536,32.9349129 C19.1052663,32.9416627 19.1353419,32.9510086 19.1664546,32.9572392 C19.2826086,32.9811231 19.4013554,33.0018918 19.5206207,33.0185067 C19.5626228,33.0242181 19.605662,33.0278526 19.6476642,33.0325255 C19.6772212,33.03616 19.7067783,33.0392753 19.7368539,33.0423906 C19.7804117,33.0470636 19.8239694,33.0532942 19.8675272,33.0569287 C19.9841998,33.0662746 20.1013909,33.0725052 20.2191006,33.0751012 C20.2559173,33.0761397 20.292734,33.0740628 20.3295506,33.074582 C20.3617004,33.074582 20.3928131,33.0740628 20.4249629,33.0740628 C20.478373,33.0735436 20.5317831,33.0751012 20.5846747,33.0730244 C20.7169036,33.0683514 20.8491326,33.0595248 20.9803244,33.0460251 C20.9953622,33.0444675 21.0104,33.0413522 21.0254378,33.0397946 C21.0606989,33.03616 21.0949228,33.0294102 21.1307024,33.0247373 C21.2328558,33.0117569 21.3355276,32.9998149 21.4356068,32.9816424 C21.4796831,32.9733349 21.5206482,32.9582776 21.5647245,32.949451 C21.687101,32.9240094 21.8048107,32.8928564 21.9225204,32.8596266 C21.9847458,32.8419732 22.0511195,32.8321081 22.1117893,32.8123779 C22.1620881,32.795763 22.2087572,32.7744751 22.2575004,32.7568218 C22.3041694,32.7396877 22.3503199,32.7225535 22.3959519,32.7038618 C22.5701829,32.6332484 22.7392285,32.5569236 22.8942734,32.4660608 L48.5798738,17.4711011 C48.5943931,17.4622744 48.6094309,17.453967 48.6234316,17.4451403 C48.6913609,17.4041222 48.7395856,17.3568736 48.8007739,17.3132594 C48.8873709,17.2514727 48.9796719,17.1917629 49.0522682,17.1263416 C49.0590092,17.120111 49.0693801,17.1149189 49.0761212,17.1086883 C49.1596069,17.0313251 49.2332403,16.9513658 49.2975399,16.8693297 C49.3120591,16.8506379 49.3219115,16.8314269 49.3353936,16.8127351 C49.3493943,16.7930049 49.3618394,16.7732747 49.3753216,16.7535445 C49.3971005,16.7208339 49.4225092,16.6886425 49.4411768,16.6548934 C49.4790306,16.5879146 49.5106618,16.5198973 49.5360705,16.4513608 C49.5397003,16.4409764 49.5412559,16.4305921 49.5448858,16.4202078 C49.5495527,16.4072274 49.5521454,16.394247 49.5557752,16.3812666 C49.5692574,16.3376524 49.5842952,16.2940383 49.5931104,16.2499049 C49.6065926,16.1818876 49.6143708,16.1133511 49.6164449,16.0448146 C49.6169635,16.0344303 49.6169635,16.0240459 49.6169635,16.0131424 L49.6392609,0.398238715 C49.6377053,0.522850569 49.6148893,0.645385558 49.5770355,0.767401332 Z" id="path-156"></path>
  600. <radialGradient cx="49.9410452%" cy="49.3699026%" fx="49.9410452%" fy="49.3699026%" r="67.6441184%" gradientTransform="translate(0.499410,0.493699),scale(0.612743,1.000000),rotate(-0.083296),translate(-0.499410,-0.493699)" id="radialGradient-158">
  601. <stop stop-color="#29FFC4" offset="0%"></stop>
  602. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  603. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  604. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  605. <stop stop-color="#DDF5EE" offset="100%"></stop>
  606. </radialGradient>
  607. <radialGradient cx="49.9419735%" cy="49.3774182%" fx="49.9419735%" fy="49.3774182%" r="67.6390249%" gradientTransform="translate(0.499420,0.493774),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499420,-0.493774)" id="radialGradient-159">
  608. <stop stop-color="#29FFC4" offset="0%"></stop>
  609. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  610. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  611. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  612. <stop stop-color="#DDF5EE" offset="100%"></stop>
  613. </radialGradient>
  614. <radialGradient cx="49.942901%" cy="49.3727617%" fx="49.942901%" fy="49.3727617%" r="67.6390249%" gradientTransform="translate(0.499429,0.493728),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499429,-0.493728)" id="radialGradient-160">
  615. <stop stop-color="#29FFC4" offset="0%"></stop>
  616. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  617. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  618. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  619. <stop stop-color="#DDF5EE" offset="100%"></stop>
  620. </radialGradient>
  621. <radialGradient cx="49.9466452%" cy="49.3659516%" fx="49.9466452%" fy="49.3659516%" r="67.6390249%" gradientTransform="translate(0.499466,0.493660),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499466,-0.493660)" id="radialGradient-161">
  622. <stop stop-color="#29FFC4" offset="0%"></stop>
  623. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  624. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  625. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  626. <stop stop-color="#DDF5EE" offset="100%"></stop>
  627. </radialGradient>
  628. <radialGradient cx="49.9475735%" cy="49.3696548%" fx="49.9475735%" fy="49.3696548%" r="67.6390249%" gradientTransform="translate(0.499476,0.493697),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499476,-0.493697)" id="radialGradient-162">
  629. <stop stop-color="#29FFC4" offset="0%"></stop>
  630. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  631. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  632. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  633. <stop stop-color="#DDF5EE" offset="100%"></stop>
  634. </radialGradient>
  635. <radialGradient cx="49.9485018%" cy="49.3658281%" fx="49.9485018%" fy="49.3658281%" r="67.6390249%" gradientTransform="translate(0.499485,0.493658),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499485,-0.493658)" id="radialGradient-163">
  636. <stop stop-color="#29FFC4" offset="0%"></stop>
  637. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  638. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  639. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  640. <stop stop-color="#DDF5EE" offset="100%"></stop>
  641. </radialGradient>
  642. <radialGradient cx="49.9522444%" cy="49.3573584%" fx="49.9522444%" fy="49.3573584%" r="67.6390249%" gradientTransform="translate(0.499522,0.493574),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499522,-0.493574)" id="radialGradient-164">
  643. <stop stop-color="#29FFC4" offset="0%"></stop>
  644. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  645. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  646. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  647. <stop stop-color="#DDF5EE" offset="100%"></stop>
  648. </radialGradient>
  649. <radialGradient cx="49.9531735%" cy="49.3543615%" fx="49.9531735%" fy="49.3543615%" r="67.6390249%" gradientTransform="translate(0.499532,0.493544),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499532,-0.493544)" id="radialGradient-165">
  650. <stop stop-color="#29FFC4" offset="0%"></stop>
  651. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  652. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  653. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  654. <stop stop-color="#DDF5EE" offset="100%"></stop>
  655. </radialGradient>
  656. <radialGradient cx="49.9541018%" cy="49.3655947%" fx="49.9541018%" fy="49.3655947%" r="67.6390249%" gradientTransform="translate(0.499541,0.493656),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499541,-0.493656)" id="radialGradient-166">
  657. <stop stop-color="#29FFC4" offset="0%"></stop>
  658. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  659. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  660. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  661. <stop stop-color="#DDF5EE" offset="100%"></stop>
  662. </radialGradient>
  663. <radialGradient cx="49.9578452%" cy="49.3504249%" fx="49.9578452%" fy="49.3504249%" r="67.6390249%" gradientTransform="translate(0.499578,0.493504),scale(0.612789,1.000000),rotate(-0.083296),translate(-0.499578,-0.493504)" id="radialGradient-167">
  664. <stop stop-color="#29FFC4" offset="0%"></stop>
  665. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  666. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  667. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  668. <stop stop-color="#DDF5EE" offset="100%"></stop>
  669. </radialGradient>
  670. <radialGradient cx="49.9587727%" cy="49.3419539%" fx="49.9587727%" fy="49.3419539%" r="67.6441184%" gradientTransform="translate(0.499588,0.493420),scale(0.612743,1.000000),rotate(-0.083296),translate(-0.499588,-0.493420)" id="radialGradient-168">
  671. <stop stop-color="#29FFC4" offset="0%"></stop>
  672. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  673. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  674. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  675. <stop stop-color="#DDF5EE" offset="100%"></stop>
  676. </radialGradient>
  677. <radialGradient cx="49.959701%" cy="49.3381269%" fx="49.959701%" fy="49.3381269%" r="67.6441184%" gradientTransform="translate(0.499597,0.493381),scale(0.612743,1.000000),rotate(-0.083296),translate(-0.499597,-0.493381)" id="radialGradient-169">
  678. <stop stop-color="#29FFC4" offset="0%"></stop>
  679. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  680. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  681. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  682. <stop stop-color="#DDF5EE" offset="100%"></stop>
  683. </radialGradient>
  684. <linearGradient x1="49.4835289%" y1="-174.140681%" x2="49.9290733%" y2="236.32603%" id="linearGradient-170">
  685. <stop stop-color="#FB6583" offset="0.54%"></stop>
  686. <stop stop-color="#FC7688" offset="13.02%"></stop>
  687. <stop stop-color="#FDA797" offset="52.77%"></stop>
  688. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  689. <stop stop-color="#FFD1A3" offset="100%"></stop>
  690. </linearGradient>
  691. <linearGradient x1="49.5535383%" y1="-106.754237%" x2="49.9989986%" y2="303.673752%" id="linearGradient-171">
  692. <stop stop-color="#FB6583" offset="0.54%"></stop>
  693. <stop stop-color="#FC7688" offset="13.02%"></stop>
  694. <stop stop-color="#FDA797" offset="52.77%"></stop>
  695. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  696. <stop stop-color="#FFD1A3" offset="100%"></stop>
  697. </linearGradient>
  698. <linearGradient x1="49.6251148%" y1="-39.384224%" x2="50.0705751%" y2="371.043765%" id="linearGradient-172">
  699. <stop stop-color="#FB6583" offset="0.54%"></stop>
  700. <stop stop-color="#FC7688" offset="13.02%"></stop>
  701. <stop stop-color="#FDA797" offset="52.77%"></stop>
  702. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  703. <stop stop-color="#FFD1A3" offset="100%"></stop>
  704. </linearGradient>
  705. <linearGradient x1="49.4143412%" y1="-225.157189%" x2="49.8923821%" y2="215.230464%" id="linearGradient-173">
  706. <stop stop-color="#FB6583" offset="0.54%"></stop>
  707. <stop stop-color="#FC7688" offset="13.02%"></stop>
  708. <stop stop-color="#FDA797" offset="52.77%"></stop>
  709. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  710. <stop stop-color="#FFD1A3" offset="100%"></stop>
  711. </linearGradient>
  712. <linearGradient x1="49.4843121%" y1="-157.772021%" x2="49.9623157%" y2="282.598428%" id="linearGradient-174">
  713. <stop stop-color="#FB6583" offset="0.54%"></stop>
  714. <stop stop-color="#FC7688" offset="13.02%"></stop>
  715. <stop stop-color="#FDA797" offset="52.77%"></stop>
  716. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  717. <stop stop-color="#FFD1A3" offset="100%"></stop>
  718. </linearGradient>
  719. <linearGradient x1="49.5559021%" y1="-90.395652%" x2="50.0339057%" y2="349.974797%" id="linearGradient-175">
  720. <stop stop-color="#FB6583" offset="0.54%"></stop>
  721. <stop stop-color="#FC7688" offset="13.02%"></stop>
  722. <stop stop-color="#FDA797" offset="52.77%"></stop>
  723. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  724. <stop stop-color="#FFD1A3" offset="100%"></stop>
  725. </linearGradient>
  726. <linearGradient x1="49.4659031%" y1="-164.97587%" x2="49.897523%" y2="232.662682%" id="linearGradient-176">
  727. <stop stop-color="#FB6583" offset="0.54%"></stop>
  728. <stop stop-color="#FC7688" offset="13.02%"></stop>
  729. <stop stop-color="#FDA797" offset="52.77%"></stop>
  730. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  731. <stop stop-color="#FFD1A3" offset="100%"></stop>
  732. </linearGradient>
  733. <linearGradient x1="49.5358283%" y1="-97.5994978%" x2="49.9674482%" y2="300.039054%" id="linearGradient-177">
  734. <stop stop-color="#FB6583" offset="0.54%"></stop>
  735. <stop stop-color="#FC7688" offset="13.02%"></stop>
  736. <stop stop-color="#FDA797" offset="52.77%"></stop>
  737. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  738. <stop stop-color="#FFD1A3" offset="100%"></stop>
  739. </linearGradient>
  740. <linearGradient x1="49.6240671%" y1="-30.2231288%" x2="50.0556871%" y2="367.415423%" id="linearGradient-178">
  741. <stop stop-color="#FB6583" offset="0.54%"></stop>
  742. <stop stop-color="#FC7688" offset="13.02%"></stop>
  743. <stop stop-color="#FDA797" offset="52.77%"></stop>
  744. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  745. <stop stop-color="#FFD1A3" offset="100%"></stop>
  746. </linearGradient>
  747. <linearGradient x1="49.4570879%" y1="-160.384875%" x2="49.8470278%" y2="198.855095%" id="linearGradient-179">
  748. <stop stop-color="#FB6583" offset="0.54%"></stop>
  749. <stop stop-color="#FC7688" offset="13.02%"></stop>
  750. <stop stop-color="#FDA797" offset="52.77%"></stop>
  751. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  752. <stop stop-color="#FFD1A3" offset="100%"></stop>
  753. </linearGradient>
  754. <linearGradient x1="49.527013%" y1="-93.0085031%" x2="49.9169529%" y2="266.231467%" id="linearGradient-180">
  755. <stop stop-color="#FB6583" offset="0.54%"></stop>
  756. <stop stop-color="#FC7688" offset="13.02%"></stop>
  757. <stop stop-color="#FDA797" offset="52.77%"></stop>
  758. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  759. <stop stop-color="#FFD1A3" offset="100%"></stop>
  760. </linearGradient>
  761. <linearGradient x1="49.6152519%" y1="-25.6321341%" x2="50.0051918%" y2="333.607836%" id="linearGradient-181">
  762. <stop stop-color="#FB6583" offset="0.54%"></stop>
  763. <stop stop-color="#FC7688" offset="13.02%"></stop>
  764. <stop stop-color="#FDA797" offset="52.77%"></stop>
  765. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  766. <stop stop-color="#FFD1A3" offset="100%"></stop>
  767. </linearGradient>
  768. <linearGradient x1="80.8969607%" y1="52.9420647%" x2="-2.10688537%" y2="37.3660905%" id="linearGradient-182">
  769. <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
  770. <stop stop-color="#1C45A3" offset="100%"></stop>
  771. </linearGradient>
  772. <linearGradient x1="183.063257%" y1="50.7718743%" x2="5.11962551%" y2="49.5745013%" id="linearGradient-183">
  773. <stop stop-color="#1E2275" offset="0%"></stop>
  774. <stop stop-color="#0046BC" offset="100%"></stop>
  775. </linearGradient>
  776. <linearGradient x1="106.271889%" y1="49.9689516%" x2="6.25618952%" y2="50.0503658%" id="linearGradient-184">
  777. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  778. <stop stop-color="#005BEA" offset="100%"></stop>
  779. </linearGradient>
  780. <linearGradient x1="-6.18646139%" y1="50.089163%" x2="61.5189932%" y2="50.0265239%" id="linearGradient-185">
  781. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  782. <stop stop-color="#005BEA" offset="100%"></stop>
  783. </linearGradient>
  784. <path d="M49.8824584,0.463140723 C49.8783101,0.476121124 49.8757174,0.489620741 49.871569,0.502601143 C49.8326781,0.615790243 49.773564,0.726902479 49.7014863,0.835937851 C49.6885227,0.855668061 49.6760776,0.875398272 49.6620769,0.894609266 C49.5837766,1.00260621 49.48992,1.10748785 49.3784329,1.20821576 C49.3063551,1.27363699 49.2140541,1.33334683 49.1279757,1.39461433 C49.0538238,1.44757437 48.9905613,1.5036497 48.9060385,1.55297523 L23.2204382,16.5479349 C23.0653932,16.6382785 22.8963476,16.7151225 22.7221166,16.7857359 C22.6770032,16.8039085 22.6303341,16.8215618 22.5841836,16.8381767 C22.4758078,16.8776371 22.3617279,16.9093093 22.2481666,16.9415007 C22.1309754,16.9747305 22.0127472,17.0058835 21.8914077,17.0308059 C21.7482893,17.0604012 21.6041339,17.0874004 21.4568671,17.1060922 C21.4216061,17.1107651 21.3873821,17.1169957 21.3521211,17.1206303 C21.1540369,17.1424373 20.9528415,17.1528216 20.7516461,17.1548985 C20.7194964,17.1554177 20.6878651,17.1554177 20.6557154,17.1554177 C20.4571127,17.1543793 20.2590285,17.1434758 20.0630186,17.1232263 C20.0334615,17.120111 20.0039045,17.1169957 19.9743474,17.1133612 C19.7798931,17.0905157 19.5880315,17.0578051 19.4008368,17.0157486 C19.3660943,17.0079604 19.3323889,16.9991337 19.2981649,16.9908262 C19.1275637,16.9487697 18.9621479,16.8984058 18.8019175,16.8402536 C18.7733976,16.8298693 18.743322,16.822081 18.7153205,16.8111775 C18.523459,16.7369296 18.3398941,16.6522974 18.1703299,16.5546848 L1.51103968,6.9554183 C0.805300144,6.54887212 0.452171105,6.01407958 0.453208194,5.48032548 L0.430910766,21.0952292 C0.430392221,21.6295025 0.783521261,22.1637758 1.48874225,22.570322 L18.1480325,32.1695884 C18.3092999,32.2625281 18.4824939,32.3450835 18.6639846,32.4162161 C18.6733184,32.4198506 18.6836893,32.4224467 18.6930231,32.4260812 C18.7210245,32.4369847 18.7511001,32.4447729 18.7796201,32.4551573 C18.8843662,32.49306 18.9885937,32.5309628 19.0980066,32.5621158 C19.1560837,32.5787307 19.2167534,32.5911919 19.2763861,32.6057299 C19.31061,32.6140374 19.3437969,32.6228641 19.3785394,32.6306523 C19.4096521,32.6374021 19.4397277,32.646748 19.4708404,32.6529786 C19.587513,32.6768625 19.7057412,32.6976312 19.8250065,32.7142461 C19.8670086,32.7199575 19.9100479,32.7230728 19.95205,32.7282649 C19.9816071,32.7318994 20.0111641,32.7350147 20.0412397,32.73813 C20.0847975,32.742803 20.1283552,32.7490336 20.171913,32.7526681 C20.2885856,32.762014 20.4057767,32.7682446 20.5234864,32.7708406 C20.5603031,32.7718791 20.5971198,32.7698022 20.6339365,32.7703214 C20.6655677,32.7703214 20.6971989,32.7703214 20.7293487,32.7698022 C20.7827588,32.769283 20.836169,32.7708406 20.8890605,32.7687638 C21.0212895,32.7640908 21.1535184,32.7552642 21.2847102,32.7417645 C21.2997481,32.7402069 21.3147859,32.7370916 21.3298237,32.7355339 C21.3650847,32.7318994 21.3993087,32.7251496 21.4345697,32.7204767 C21.536723,32.7074963 21.6393949,32.6955543 21.7394741,32.6773817 C21.7835504,32.6690743 21.8245154,32.654017 21.8685917,32.6451903 C21.9909683,32.6197488 22.108678,32.5885958 22.2263877,32.555366 C22.2886131,32.5377126 22.3549868,32.5278475 22.4156566,32.5081173 C22.4659554,32.4920216 22.5121059,32.4702145 22.5613677,32.4525612 C22.6080367,32.4354271 22.6541872,32.4182929 22.7003377,32.3996012 C22.8745687,32.3289878 23.0436144,32.252663 23.1986593,32.1618002 L48.8842596,17.1668405 C48.8987789,17.158533 48.9138167,17.1497064 48.9278174,17.1408797 C48.9957468,17.0998616 49.0439714,17.0526129 49.1051597,17.0089988 C49.1917567,16.9472121 49.2840577,16.8875022 49.356654,16.822081 C49.3633951,16.8158504 49.373766,16.8106583 49.380507,16.8044277 C49.4639928,16.7270645 49.5381447,16.6471052 49.6019257,16.5650691 C49.6164449,16.5463773 49.6262973,16.5271663 49.6397795,16.5084745 C49.6537802,16.4887443 49.6662252,16.4690141 49.6791889,16.4492839 C49.7009678,16.4165733 49.7263764,16.3843819 49.7450441,16.3506328 C49.7828978,16.283654 49.8145291,16.2156367 49.8399378,16.1471001 C49.8440861,16.1367158 49.8451232,16.1263315 49.848753,16.1159472 C49.8534199,16.1029668 49.8560127,16.0899864 49.8596425,16.077006 C49.8731246,16.0333918 49.8881624,15.9897777 49.8969777,15.9456443 C49.9104599,15.877627 49.918238,15.8090905 49.9203122,15.740554 C49.9203122,15.7301697 49.9208308,15.7197853 49.9208308,15.7088818 L49.9431282,0.0939781063 C49.9431282,0.21858996 49.9203122,0.341644165 49.8824584,0.463140723 Z" id="path-186"></path>
  785. <path d="M49.8824584,0.463140723 C49.8783101,0.476121124 49.8757174,0.489620741 49.871569,0.502601143 C49.8326781,0.615790243 49.773564,0.726902479 49.7014863,0.835937851 C49.6885227,0.855668061 49.6760776,0.875398272 49.6620769,0.894609266 C49.5837766,1.00260621 49.48992,1.10748785 49.3784329,1.20821576 C49.3063551,1.27363699 49.2140541,1.33334683 49.1279757,1.39461433 C49.0538238,1.44757437 48.9905613,1.5036497 48.9060385,1.55297523 L23.2204382,16.5479349 C23.0653932,16.6382785 22.8963476,16.7151225 22.7221166,16.7857359 C22.6770032,16.8039085 22.6303341,16.8215618 22.5841836,16.8381767 C22.4758078,16.8776371 22.3617279,16.9093093 22.2481666,16.9415007 C22.1309754,16.9747305 22.0127472,17.0058835 21.8914077,17.0308059 C21.7482893,17.0604012 21.6041339,17.0874004 21.4568671,17.1060922 C21.4216061,17.1107651 21.3873821,17.1169957 21.3521211,17.1206303 C21.1540369,17.1424373 20.9528415,17.1528216 20.7516461,17.1548985 C20.7194964,17.1554177 20.6878651,17.1554177 20.6557154,17.1554177 C20.4571127,17.1543793 20.2590285,17.1434758 20.0630186,17.1232263 C20.0334615,17.120111 20.0039045,17.1169957 19.9743474,17.1133612 C19.7798931,17.0905157 19.5880315,17.0578051 19.4008368,17.0157486 C19.3660943,17.0079604 19.3323889,16.9991337 19.2981649,16.9908262 C19.1275637,16.9487697 18.9621479,16.8984058 18.8019175,16.8402536 C18.7733976,16.8298693 18.743322,16.822081 18.7153205,16.8111775 C18.523459,16.7369296 18.3398941,16.6522974 18.1703299,16.5546848 L1.51103968,6.9554183 C0.805300144,6.54887212 0.452171105,6.01407958 0.453208194,5.48032548 L0.430910766,21.0952292 C0.430392221,21.6295025 0.783521261,22.1637758 1.48874225,22.570322 L18.1480325,32.1695884 C18.3092999,32.2625281 18.4824939,32.3450835 18.6639846,32.4162161 C18.6733184,32.4198506 18.6836893,32.4224467 18.6930231,32.4260812 C18.7210245,32.4369847 18.7511001,32.4447729 18.7796201,32.4551573 C18.8843662,32.49306 18.9885937,32.5309628 19.0980066,32.5621158 C19.1560837,32.5787307 19.2167534,32.5911919 19.2763861,32.6057299 C19.31061,32.6140374 19.3437969,32.6228641 19.3785394,32.6306523 C19.4096521,32.6374021 19.4397277,32.646748 19.4708404,32.6529786 C19.587513,32.6768625 19.7057412,32.6976312 19.8250065,32.7142461 C19.8670086,32.7199575 19.9100479,32.7230728 19.95205,32.7282649 C19.9816071,32.7318994 20.0111641,32.7350147 20.0412397,32.73813 C20.0847975,32.742803 20.1283552,32.7490336 20.171913,32.7526681 C20.2885856,32.762014 20.4057767,32.7682446 20.5234864,32.7708406 C20.5603031,32.7718791 20.5971198,32.7698022 20.6339365,32.7703214 C20.6655677,32.7703214 20.6971989,32.7703214 20.7293487,32.7698022 C20.7827588,32.769283 20.836169,32.7708406 20.8890605,32.7687638 C21.0212895,32.7640908 21.1535184,32.7552642 21.2847102,32.7417645 C21.2997481,32.7402069 21.3147859,32.7370916 21.3298237,32.7355339 C21.3650847,32.7318994 21.3993087,32.7251496 21.4345697,32.7204767 C21.536723,32.7074963 21.6393949,32.6955543 21.7394741,32.6773817 C21.7835504,32.6690743 21.8245154,32.654017 21.8685917,32.6451903 C21.9909683,32.6197488 22.108678,32.5885958 22.2263877,32.555366 C22.2886131,32.5377126 22.3549868,32.5278475 22.4156566,32.5081173 C22.4659554,32.4920216 22.5121059,32.4702145 22.5613677,32.4525612 C22.6080367,32.4354271 22.6541872,32.4182929 22.7003377,32.3996012 C22.8745687,32.3289878 23.0436144,32.252663 23.1986593,32.1618002 L48.8842596,17.1668405 C48.8987789,17.158533 48.9138167,17.1497064 48.9278174,17.1408797 C48.9957468,17.0998616 49.0439714,17.0526129 49.1051597,17.0089988 C49.1917567,16.9472121 49.2840577,16.8875022 49.356654,16.822081 C49.3633951,16.8158504 49.373766,16.8106583 49.380507,16.8044277 C49.4639928,16.7270645 49.5381447,16.6471052 49.6019257,16.5650691 C49.6164449,16.5463773 49.6262973,16.5271663 49.6397795,16.5084745 C49.6537802,16.4887443 49.6662252,16.4690141 49.6791889,16.4492839 C49.7009678,16.4165733 49.7263764,16.3843819 49.7450441,16.3506328 C49.7828978,16.283654 49.8145291,16.2156367 49.8399378,16.1471001 C49.8440861,16.1367158 49.8451232,16.1263315 49.848753,16.1159472 C49.8534199,16.1029668 49.8560127,16.0899864 49.8596425,16.077006 C49.8731246,16.0333918 49.8881624,15.9897777 49.8969777,15.9456443 C49.9104599,15.877627 49.918238,15.8090905 49.9203122,15.740554 C49.9203122,15.7301697 49.9208308,15.7197853 49.9208308,15.7088818 L49.9431282,0.0939781063 C49.9431282,0.21858996 49.9203122,0.341644165 49.8824584,0.463140723 Z" id="path-188"></path>
  786. <radialGradient cx="49.9956085%" cy="49.8328929%" fx="49.9956085%" fy="49.8328929%" r="70.3806638%" gradientTransform="translate(0.499956,0.498329),scale(0.580688,1.000000),rotate(-0.083296),translate(-0.499956,-0.498329)" id="radialGradient-190">
  787. <stop stop-color="#29FFC4" offset="0%"></stop>
  788. <stop stop-color="#58FCCF" offset="22.7%"></stop>
  789. <stop stop-color="#9FF8E0" offset="59.8%"></stop>
  790. <stop stop-color="#CCF6EA" offset="86.54%"></stop>
  791. <stop stop-color="#DDF5EE" offset="100%"></stop>
  792. </radialGradient>
  793. <linearGradient x1="72.0209761%" y1="49.9918536%" x2="-9.70305632%" y2="49.9918536%" id="linearGradient-191">
  794. <stop stop-color="#55FF94" offset="0.63%"></stop>
  795. <stop stop-color="#E9FFF9" offset="100%"></stop>
  796. </linearGradient>
  797. <linearGradient x1="83.2946038%" y1="50.2335957%" x2="7.84087413%" y2="49.7372815%" id="linearGradient-192">
  798. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  799. <stop stop-color="#005BEA" offset="100%"></stop>
  800. </linearGradient>
  801. <linearGradient x1="-6.18518541%" y1="50.088123%" x2="61.5195602%" y2="50.0254852%" id="linearGradient-193">
  802. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  803. <stop stop-color="#005BEA" offset="100%"></stop>
  804. </linearGradient>
  805. <path d="M49.8523828,0.669788713 C49.8482345,0.682769115 49.8456418,0.696268732 49.8414934,0.709249133 C49.8026025,0.822438234 49.7434884,0.93355047 49.6714107,1.04258584 C49.6584471,1.06231605 49.646002,1.08204626 49.6320013,1.10125726 C49.553701,1.2092542 49.4598444,1.31413584 49.3483573,1.41486375 C49.2762795,1.48028498 49.1839785,1.53999482 49.0979001,1.60126232 C49.0237482,1.65422236 48.9604857,1.71029769 48.8759629,1.75962322 L23.1903626,16.7545829 C23.0353176,16.8449265 22.866272,16.9217705 22.692041,16.9923839 C22.6469276,17.0105564 22.6002585,17.0282098 22.554108,17.0448247 C22.4457322,17.0842851 22.3316523,17.1159573 22.218091,17.1481487 C22.1008998,17.1813785 21.9826716,17.2125315 21.8613321,17.2374539 C21.7182137,17.2670492 21.5740583,17.2940484 21.4267915,17.3127402 C21.3915305,17.3174131 21.3573065,17.3236437 21.3220455,17.3272782 C21.1239613,17.3490853 20.9227659,17.3594696 20.7215705,17.3615465 C20.6894208,17.3620657 20.6577895,17.3620657 20.6256398,17.3620657 C20.4270371,17.3610273 20.2289529,17.3501237 20.032943,17.3298743 C20.0033859,17.326759 19.9738289,17.3236437 19.9442718,17.3200092 C19.7498175,17.2971637 19.5579559,17.2644531 19.3707612,17.2223966 C19.3360187,17.2146084 19.3023133,17.2057817 19.2680893,17.1974742 C19.0974881,17.1554177 18.9320723,17.1050538 18.7718419,17.0469016 C18.743322,17.0365173 18.7132464,17.028729 18.6852449,17.0178255 C18.4933833,16.9435776 18.3098185,16.8589454 18.1402543,16.7613327 L1.48096408,7.16206629 C0.775224543,6.75552011 0.422095504,6.22072757 0.423132593,5.68697347 L0.400835165,21.3018772 C0.40031662,21.8361505 0.75344566,22.3704238 1.45866665,22.77697 L18.1179569,32.3762364 C18.2792243,32.4691761 18.4524183,32.5517315 18.633909,32.6233833 C18.6432428,32.6270178 18.6536137,32.6296139 18.6629475,32.6332484 C18.6909489,32.6441519 18.7210245,32.6519402 18.7495445,32.6623245 C18.8542906,32.7002272 18.9585181,32.7386492 19.067931,32.769283 C19.1260081,32.7858979 19.1866778,32.7983591 19.2463105,32.8128971 C19.2805344,32.8212046 19.3137213,32.8300313 19.3484638,32.8378195 C19.3795765,32.8445693 19.4096521,32.8539152 19.4407648,32.8601458 C19.5569188,32.8840297 19.6756656,32.9047984 19.7949309,32.9214133 C19.836933,32.9271247 19.8799723,32.93024 19.9224929,32.9354321 C19.95205,32.9390666 19.9816071,32.9421819 20.0111641,32.9452972 C20.0547219,32.9499702 20.0982796,32.9562008 20.1418374,32.9598353 C20.25851,32.9691812 20.3757011,32.9754118 20.4934108,32.9780078 C20.5302275,32.9790463 20.5670442,32.9769694 20.6038609,32.9774886 C20.6360106,32.9774886 20.6671233,32.9769694 20.6992731,32.9769694 C20.7526832,32.9764502 20.8060934,32.9780078 20.8589849,32.975931 C20.9912139,32.971258 21.1234428,32.9624314 21.2546346,32.9489317 C21.2696724,32.9473741 21.2847102,32.9442588 21.2997481,32.9427011 C21.3350091,32.9385474 21.3692331,32.9323168 21.4044941,32.9276439 C21.5066474,32.9146635 21.6093193,32.9027215 21.7093985,32.8845489 C21.7534748,32.8762415 21.7944398,32.8611842 21.8385161,32.8523576 C21.9608927,32.826916 22.0786024,32.795763 22.1963121,32.7625332 C22.2585375,32.7448798 22.3249112,32.7350147 22.385581,32.7152845 C22.4358798,32.6986696 22.4820303,32.6773817 22.5312921,32.6597284 C22.5779611,32.6425943 22.6241116,32.6254601 22.6702621,32.6067684 C22.8444931,32.536155 23.0135388,32.4598302 23.1685837,32.3689674 L48.854184,17.3740077 C48.8687033,17.3657002 48.8837411,17.3568736 48.8977418,17.3480469 C48.9656712,17.3070288 49.0138958,17.2597802 49.0750841,17.216166 C49.1616811,17.1543793 49.2539821,17.0946694 49.3265784,17.0292482 C49.3333195,17.0230176 49.3436904,17.0178255 49.3504314,17.0115949 C49.4339172,16.9342317 49.5080691,16.8542724 49.5718501,16.7722363 C49.5863693,16.7535445 49.5962217,16.7343335 49.6097039,16.7156417 C49.6237046,16.6959115 49.6361496,16.6761813 49.6496318,16.6564511 C49.6714107,16.6237405 49.6968194,16.5915491 49.715487,16.5578 C49.7533408,16.4908212 49.784972,16.4228039 49.8103807,16.3542674 C49.8145291,16.343883 49.8155662,16.3334987 49.819196,16.3231144 C49.8238629,16.310134 49.8264556,16.2971536 49.8300854,16.2841732 C49.8435676,16.240559 49.8586054,16.1969449 49.8674206,16.1528115 C49.8809028,16.0847942 49.888681,16.0162577 49.8907552,15.9477212 C49.8912737,15.9373369 49.8912737,15.9269525 49.8912737,15.916049 L49.9135711,0.301145313 C49.9130526,0.424718734 49.8902366,0.54777294 49.8523828,0.669788713 Z" id="path-194"></path>
  806. <path d="M49.8523828,0.669788713 C49.8482345,0.682769115 49.8456418,0.696268732 49.8414934,0.709249133 C49.8026025,0.822438234 49.7434884,0.93355047 49.6714107,1.04258584 C49.6584471,1.06231605 49.646002,1.08204626 49.6320013,1.10125726 C49.553701,1.2092542 49.4598444,1.31413584 49.3483573,1.41486375 C49.2762795,1.48028498 49.1839785,1.53999482 49.0979001,1.60126232 C49.0237482,1.65422236 48.9604857,1.71029769 48.8759629,1.75962322 L23.1903626,16.7545829 C23.0353176,16.8449265 22.866272,16.9217705 22.692041,16.9923839 C22.6469276,17.0105564 22.6002585,17.0282098 22.554108,17.0448247 C22.4457322,17.0842851 22.3316523,17.1159573 22.218091,17.1481487 C22.1008998,17.1813785 21.9826716,17.2125315 21.8613321,17.2374539 C21.7182137,17.2670492 21.5740583,17.2940484 21.4267915,17.3127402 C21.3915305,17.3174131 21.3573065,17.3236437 21.3220455,17.3272782 C21.1239613,17.3490853 20.9227659,17.3594696 20.7215705,17.3615465 C20.6894208,17.3620657 20.6577895,17.3620657 20.6256398,17.3620657 C20.4270371,17.3610273 20.2289529,17.3501237 20.032943,17.3298743 C20.0033859,17.326759 19.9738289,17.3236437 19.9442718,17.3200092 C19.7498175,17.2971637 19.5579559,17.2644531 19.3707612,17.2223966 C19.3360187,17.2146084 19.3023133,17.2057817 19.2680893,17.1974742 C19.0974881,17.1554177 18.9320723,17.1050538 18.7718419,17.0469016 C18.743322,17.0365173 18.7132464,17.028729 18.6852449,17.0178255 C18.4933833,16.9435776 18.3098185,16.8589454 18.1402543,16.7613327 L1.48096408,7.16206629 C0.775224543,6.75552011 0.422095504,6.22072757 0.423132593,5.68697347 L0.400835165,21.3018772 C0.40031662,21.8361505 0.75344566,22.3704238 1.45866665,22.77697 L18.1179569,32.3762364 C18.2792243,32.4691761 18.4524183,32.5517315 18.633909,32.6233833 C18.6432428,32.6270178 18.6536137,32.6296139 18.6629475,32.6332484 C18.6909489,32.6441519 18.7210245,32.6519402 18.7495445,32.6623245 C18.8542906,32.7002272 18.9585181,32.7386492 19.067931,32.769283 C19.1260081,32.7858979 19.1866778,32.7983591 19.2463105,32.8128971 C19.2805344,32.8212046 19.3137213,32.8300313 19.3484638,32.8378195 C19.3795765,32.8445693 19.4096521,32.8539152 19.4407648,32.8601458 C19.5569188,32.8840297 19.6756656,32.9047984 19.7949309,32.9214133 C19.836933,32.9271247 19.8799723,32.93024 19.9224929,32.9354321 C19.95205,32.9390666 19.9816071,32.9421819 20.0111641,32.9452972 C20.0547219,32.9499702 20.0982796,32.9562008 20.1418374,32.9598353 C20.25851,32.9691812 20.3757011,32.9754118 20.4934108,32.9780078 C20.5302275,32.9790463 20.5670442,32.9769694 20.6038609,32.9774886 C20.6360106,32.9774886 20.6671233,32.9769694 20.6992731,32.9769694 C20.7526832,32.9764502 20.8060934,32.9780078 20.8589849,32.975931 C20.9912139,32.971258 21.1234428,32.9624314 21.2546346,32.9489317 C21.2696724,32.9473741 21.2847102,32.9442588 21.2997481,32.9427011 C21.3350091,32.9385474 21.3692331,32.9323168 21.4044941,32.9276439 C21.5066474,32.9146635 21.6093193,32.9027215 21.7093985,32.8845489 C21.7534748,32.8762415 21.7944398,32.8611842 21.8385161,32.8523576 C21.9608927,32.826916 22.0786024,32.795763 22.1963121,32.7625332 C22.2585375,32.7448798 22.3249112,32.7350147 22.385581,32.7152845 C22.4358798,32.6986696 22.4820303,32.6773817 22.5312921,32.6597284 C22.5779611,32.6425943 22.6241116,32.6254601 22.6702621,32.6067684 C22.8444931,32.536155 23.0135388,32.4598302 23.1685837,32.3689674 L48.854184,17.3740077 C48.8687033,17.3657002 48.8837411,17.3568736 48.8977418,17.3480469 C48.9656712,17.3070288 49.0138958,17.2597802 49.0750841,17.216166 C49.1616811,17.1543793 49.2539821,17.0946694 49.3265784,17.0292482 C49.3333195,17.0230176 49.3436904,17.0178255 49.3504314,17.0115949 C49.4339172,16.9342317 49.5080691,16.8542724 49.5718501,16.7722363 C49.5863693,16.7535445 49.5962217,16.7343335 49.6097039,16.7156417 C49.6237046,16.6959115 49.6361496,16.6761813 49.6496318,16.6564511 C49.6714107,16.6237405 49.6968194,16.5915491 49.715487,16.5578 C49.7533408,16.4908212 49.784972,16.4228039 49.8103807,16.3542674 C49.8145291,16.343883 49.8155662,16.3334987 49.819196,16.3231144 C49.8238629,16.310134 49.8264556,16.2971536 49.8300854,16.2841732 C49.8435676,16.240559 49.8586054,16.1969449 49.8674206,16.1528115 C49.8809028,16.0847942 49.888681,16.0162577 49.8907552,15.9477212 C49.8912737,15.9373369 49.8912737,15.9269525 49.8912737,15.916049 L49.9135711,0.301145313 C49.9130526,0.424718734 49.8902366,0.54777294 49.8523828,0.669788713 Z" id="path-196"></path>
  807. <radialGradient cx="49.9945369%" cy="49.8349368%" fx="49.9945369%" fy="49.8349368%" r="70.38172%" gradientTransform="translate(0.499945,0.498349),scale(0.580679,1.000000),rotate(-0.083296),translate(-0.499945,-0.498349)" id="radialGradient-198">
  808. <stop stop-color="#FF7BAC" offset="0%"></stop>
  809. <stop stop-color="#FFFFFF" offset="100%"></stop>
  810. </radialGradient>
  811. <linearGradient x1="88.5009358%" y1="50.1022609%" x2="-42.0987458%" y2="49.3805595%" id="linearGradient-199">
  812. <stop stop-color="#55FF94" offset="0.63%"></stop>
  813. <stop stop-color="#E9FFF9" offset="100%"></stop>
  814. </linearGradient>
  815. <linearGradient x1="85.8943193%" y1="50.7282939%" x2="-2.9917167%" y2="48.9622258%" id="linearGradient-200">
  816. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  817. <stop stop-color="#005BEA" offset="100%"></stop>
  818. </linearGradient>
  819. <linearGradient x1="-6.18298752%" y1="50.0884706%" x2="61.5224217%" y2="50.0258317%" id="linearGradient-201">
  820. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  821. <stop stop-color="#005BEA" offset="100%"></stop>
  822. </linearGradient>
  823. <path d="M49.8223072,0.875917488 C49.8181589,0.888897889 49.8155662,0.902397506 49.8114178,0.915377908 C49.7725269,1.02856701 49.7134128,1.13967924 49.6413351,1.24871462 C49.6283715,1.26844483 49.6159264,1.28817504 49.6019257,1.30738603 C49.5236254,1.41538297 49.4297688,1.52026461 49.3182817,1.62099253 C49.2456854,1.68641375 49.1539029,1.7461236 49.0678245,1.80739109 C48.9936726,1.86035113 48.9304101,1.91642647 48.8458873,1.96575199 L23.160287,16.9607117 C23.005242,17.0510553 22.8361964,17.1278993 22.6619654,17.1985127 C22.616852,17.2166852 22.5701829,17.2343386 22.5240324,17.2509535 C22.4156566,17.2904139 22.3015767,17.3220861 22.1880154,17.3542775 C22.0708242,17.3875073 21.952596,17.4186603 21.8312565,17.4435826 C21.6881381,17.473178 21.5439827,17.5001772 21.3967159,17.518869 C21.3614549,17.5235419 21.3272309,17.5297725 21.2919699,17.533407 C21.0938857,17.5552141 20.8926903,17.5655984 20.6914949,17.5676753 C20.6593452,17.5681945 20.6277139,17.5681945 20.5955642,17.5681945 C20.3969615,17.5671561 20.1988773,17.5562525 20.0028674,17.5360031 C19.9733103,17.5328878 19.9437533,17.5297725 19.9141962,17.526138 C19.7197419,17.5032925 19.5278803,17.4705819 19.3406856,17.4285254 C19.3059431,17.4207371 19.2722377,17.4119105 19.2380137,17.403603 C19.0674125,17.3615465 18.9019967,17.3111825 18.7417663,17.2530303 C18.7132464,17.242646 18.6831708,17.2348578 18.6551693,17.2239542 C18.4633077,17.1497064 18.2797429,17.0650741 18.1101787,16.9674615 L1.45036993,7.36819506 C0.744630397,6.96164889 0.391501358,6.42685635 0.392538448,5.89310224 L0.370241019,21.5080059 C0.369722474,22.0422793 0.722851514,22.5765526 1.4280725,22.9830987 L18.0873627,32.5823652 C18.2491487,32.6753049 18.4218242,32.7578602 18.6033149,32.829512 C18.6126487,32.8331466 18.6230196,32.8357426 18.6323534,32.8393772 C18.6603548,32.8502807 18.6904304,32.8580689 18.7189504,32.8684533 C18.8236964,32.906356 18.9279239,32.944778 19.0373369,32.9754118 C19.0954139,32.9920267 19.1560837,33.0044879 19.2157163,33.0190259 C19.2499403,33.0273334 19.2831271,33.03616 19.3178697,33.0439483 C19.3489823,33.0506981 19.3790579,33.060044 19.4101706,33.0662746 C19.5263247,33.0901585 19.6450715,33.1109271 19.7643368,33.1275421 C19.8063389,33.1332534 19.8493781,33.1363687 19.8918988,33.1415609 C19.9214559,33.1451954 19.9510129,33.1483107 19.98057,33.151426 C20.0241277,33.1560989 20.0676855,33.1623295 20.1112433,33.1659641 C20.2279159,33.1753099 20.345107,33.1815405 20.4628167,33.1841366 C20.4996334,33.185175 20.53645,33.1830982 20.5732667,33.1836174 C20.6054165,33.1836174 20.6365292,33.1830982 20.668679,33.1830982 C20.7220891,33.182579 20.7754992,33.1841366 20.8283908,33.1820597 C20.9606197,33.1773868 21.0928487,33.1685601 21.2240405,33.1550605 C21.2395968,33.1535029 21.2541161,33.1503876 21.2691539,33.1488299 C21.304415,33.1446762 21.3386389,33.1384456 21.3739,33.1337727 C21.4760533,33.1207923 21.5787252,33.1088503 21.6788043,33.0906777 C21.7228806,33.0823703 21.7638457,33.067313 21.807922,33.0584863 C21.9302986,33.0330447 22.0480083,33.0018918 22.1657179,32.968662 C22.2279433,32.9510086 22.2943171,32.9411435 22.3549868,32.9214133 C22.4052857,32.9047984 22.4519547,32.8835105 22.5006979,32.8658572 C22.5473669,32.848723 22.5935174,32.8315889 22.6391494,32.8128971 C22.8133805,32.7422837 22.9824261,32.665959 23.137471,32.5750962 L48.8230713,17.5801365 C48.8375906,17.571829 48.8526284,17.5630023 48.8666291,17.5541757 C48.9345585,17.5131576 48.9827831,17.4659089 49.0439714,17.4222948 C49.1305684,17.3605081 49.2228694,17.3007982 49.2954657,17.235377 C49.3022068,17.2291464 49.3125777,17.2239542 49.3193187,17.2177237 C49.4028045,17.1403605 49.4764378,17.0604012 49.5407374,16.9783651 C49.5552567,16.9596733 49.565109,16.9404623 49.5785912,16.9217705 C49.5925919,16.9020403 49.605037,16.8823101 49.6185191,16.8625799 C49.640298,16.8298693 49.6657067,16.7976779 49.6843743,16.7639288 C49.7222281,16.69695 49.7538593,16.6289326 49.779268,16.5603961 C49.7834164,16.5500118 49.7844535,16.5396275 49.7880833,16.5292432 C49.7927502,16.5162628 49.7953429,16.5032824 49.7989727,16.490302 C49.8124549,16.4466878 49.8274927,16.4030737 49.836308,16.3589403 C49.8497901,16.290923 49.8575683,16.2223865 49.8596425,16.15385 C49.860161,16.1434656 49.860161,16.1330813 49.860161,16.1221778 L49.8825228,0.507274087 C49.8834955,0.631366725 49.860161,0.75442093 49.8223072,0.875917488 Z" id="path-202"></path>
  824. <path d="M49.8223072,0.875917488 C49.8181589,0.888897889 49.8155662,0.902397506 49.8114178,0.915377908 C49.7725269,1.02856701 49.7134128,1.13967924 49.6413351,1.24871462 C49.6283715,1.26844483 49.6159264,1.28817504 49.6019257,1.30738603 C49.5236254,1.41538297 49.4297688,1.52026461 49.3182817,1.62099253 C49.2456854,1.68641375 49.1539029,1.7461236 49.0678245,1.80739109 C48.9936726,1.86035113 48.9304101,1.91642647 48.8458873,1.96575199 L23.160287,16.9607117 C23.005242,17.0510553 22.8361964,17.1278993 22.6619654,17.1985127 C22.616852,17.2166852 22.5701829,17.2343386 22.5240324,17.2509535 C22.4156566,17.2904139 22.3015767,17.3220861 22.1880154,17.3542775 C22.0708242,17.3875073 21.952596,17.4186603 21.8312565,17.4435826 C21.6881381,17.473178 21.5439827,17.5001772 21.3967159,17.518869 C21.3614549,17.5235419 21.3272309,17.5297725 21.2919699,17.533407 C21.0938857,17.5552141 20.8926903,17.5655984 20.6914949,17.5676753 C20.6593452,17.5681945 20.6277139,17.5681945 20.5955642,17.5681945 C20.3969615,17.5671561 20.1988773,17.5562525 20.0028674,17.5360031 C19.9733103,17.5328878 19.9437533,17.5297725 19.9141962,17.526138 C19.7197419,17.5032925 19.5278803,17.4705819 19.3406856,17.4285254 C19.3059431,17.4207371 19.2722377,17.4119105 19.2380137,17.403603 C19.0674125,17.3615465 18.9019967,17.3111825 18.7417663,17.2530303 C18.7132464,17.242646 18.6831708,17.2348578 18.6551693,17.2239542 C18.4633077,17.1497064 18.2797429,17.0650741 18.1101787,16.9674615 L1.45036993,7.36819506 C0.744630397,6.96164889 0.391501358,6.42685635 0.392538448,5.89310224 L0.370241019,21.5080059 C0.369722474,22.0422793 0.722851514,22.5765526 1.4280725,22.9830987 L18.0873627,32.5823652 C18.2491487,32.6753049 18.4218242,32.7578602 18.6033149,32.829512 C18.6126487,32.8331466 18.6230196,32.8357426 18.6323534,32.8393772 C18.6603548,32.8502807 18.6904304,32.8580689 18.7189504,32.8684533 C18.8236964,32.906356 18.9279239,32.944778 19.0373369,32.9754118 C19.0954139,32.9920267 19.1560837,33.0044879 19.2157163,33.0190259 C19.2499403,33.0273334 19.2831271,33.03616 19.3178697,33.0439483 C19.3489823,33.0506981 19.3790579,33.060044 19.4101706,33.0662746 C19.5263247,33.0901585 19.6450715,33.1109271 19.7643368,33.1275421 C19.8063389,33.1332534 19.8493781,33.1363687 19.8918988,33.1415609 C19.9214559,33.1451954 19.9510129,33.1483107 19.98057,33.151426 C20.0241277,33.1560989 20.0676855,33.1623295 20.1112433,33.1659641 C20.2279159,33.1753099 20.345107,33.1815405 20.4628167,33.1841366 C20.4996334,33.185175 20.53645,33.1830982 20.5732667,33.1836174 C20.6054165,33.1836174 20.6365292,33.1830982 20.668679,33.1830982 C20.7220891,33.182579 20.7754992,33.1841366 20.8283908,33.1820597 C20.9606197,33.1773868 21.0928487,33.1685601 21.2240405,33.1550605 C21.2395968,33.1535029 21.2541161,33.1503876 21.2691539,33.1488299 C21.304415,33.1446762 21.3386389,33.1384456 21.3739,33.1337727 C21.4760533,33.1207923 21.5787252,33.1088503 21.6788043,33.0906777 C21.7228806,33.0823703 21.7638457,33.067313 21.807922,33.0584863 C21.9302986,33.0330447 22.0480083,33.0018918 22.1657179,32.968662 C22.2279433,32.9510086 22.2943171,32.9411435 22.3549868,32.9214133 C22.4052857,32.9047984 22.4519547,32.8835105 22.5006979,32.8658572 C22.5473669,32.848723 22.5935174,32.8315889 22.6391494,32.8128971 C22.8133805,32.7422837 22.9824261,32.665959 23.137471,32.5750962 L48.8230713,17.5801365 C48.8375906,17.571829 48.8526284,17.5630023 48.8666291,17.5541757 C48.9345585,17.5131576 48.9827831,17.4659089 49.0439714,17.4222948 C49.1305684,17.3605081 49.2228694,17.3007982 49.2954657,17.235377 C49.3022068,17.2291464 49.3125777,17.2239542 49.3193187,17.2177237 C49.4028045,17.1403605 49.4764378,17.0604012 49.5407374,16.9783651 C49.5552567,16.9596733 49.565109,16.9404623 49.5785912,16.9217705 C49.5925919,16.9020403 49.605037,16.8823101 49.6185191,16.8625799 C49.640298,16.8298693 49.6657067,16.7976779 49.6843743,16.7639288 C49.7222281,16.69695 49.7538593,16.6289326 49.779268,16.5603961 C49.7834164,16.5500118 49.7844535,16.5396275 49.7880833,16.5292432 C49.7927502,16.5162628 49.7953429,16.5032824 49.7989727,16.490302 C49.8124549,16.4466878 49.8274927,16.4030737 49.836308,16.3589403 C49.8497901,16.290923 49.8575683,16.2223865 49.8596425,16.15385 C49.860161,16.1434656 49.860161,16.1330813 49.860161,16.1221778 L49.8825228,0.507274087 C49.8834955,0.631366725 49.860161,0.75442093 49.8223072,0.875917488 Z" id="path-204"></path>
  825. <linearGradient x1="-0.0275320685%" y1="50.056928%" x2="99.9870718%" y2="49.9755146%" id="linearGradient-206">
  826. <stop stop-color="#00C6FF" offset="0%"></stop>
  827. <stop stop-color="#0072FF" offset="100%"></stop>
  828. </linearGradient>
  829. <linearGradient x1="88.1711553%" y1="50.0342647%" x2="-7.97446811%" y2="49.8538615%" id="linearGradient-207">
  830. <stop stop-color="#55FF94" offset="0.63%"></stop>
  831. <stop stop-color="#E9FFF9" offset="100%"></stop>
  832. </linearGradient>
  833. <linearGradient x1="128.821887%" y1="49.950293%" x2="6.34029321%" y2="50.0499948%" id="linearGradient-208">
  834. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  835. <stop stop-color="#005BEA" offset="100%"></stop>
  836. </linearGradient>
  837. <linearGradient x1="-6.1848576%" y1="50.088123%" x2="61.519888%" y2="50.0254852%" id="linearGradient-209">
  838. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  839. <stop stop-color="#005BEA" offset="100%"></stop>
  840. </linearGradient>
  841. <path d="M49.7927502,0.563349421 C49.7886018,0.576329823 49.7860091,0.58982944 49.7818607,0.602809842 C49.7429699,0.715998942 49.6838558,0.827111178 49.611778,0.93614655 C49.5988144,0.95587676 49.5863693,0.97560697 49.5723686,0.994817965 C49.4940684,1.1028149 49.4002117,1.20769655 49.2887246,1.30842446 C49.2161283,1.37384569 49.1243459,1.43355553 49.0382674,1.49482303 C48.9641155,1.54778306 48.9008531,1.6038584 48.8163302,1.65318392 L23.1307299,16.6481436 C22.975685,16.7384872 22.8066394,16.8153312 22.6324083,16.8859446 C22.5867764,16.9041172 22.5406259,16.9217705 22.4944754,16.9383854 C22.3860995,16.9778458 22.2720196,17.009518 22.1584583,17.0417094 C22.0412672,17.0749392 21.923039,17.1060922 21.8016995,17.1310146 C21.6585811,17.1606099 21.5144256,17.1876091 21.3671589,17.2063009 C21.3318978,17.2109738 21.2976739,17.2172044 21.2624128,17.220839 C21.0643287,17.242646 20.8631333,17.2530303 20.6619379,17.2551072 C20.6297881,17.2556264 20.5981569,17.2556264 20.5660071,17.2556264 C20.3674044,17.254588 20.1698388,17.2436845 19.9738289,17.223435 C19.9442718,17.2203197 19.9147148,17.2172044 19.8851577,17.2135699 C19.6907034,17.1907244 19.4988418,17.1580138 19.3116471,17.1159573 C19.2769046,17.1081691 19.2431992,17.0993424 19.2089752,17.0910349 C19.038374,17.0489784 18.8729582,16.9986145 18.7127278,16.9404623 C18.6842079,16.930078 18.6541323,16.9222897 18.6261308,16.9113862 C18.4342692,16.8371383 18.2507044,16.7525061 18.0811402,16.6548934 L1.42184996,7.05562699 C0.716110431,6.64908082 0.362981391,6.11428828 0.364018481,5.58053418 L0.341721053,21.1954379 C0.341202508,21.7297112 0.694331547,22.2639845 1.39955254,22.6705307 L18.0588428,32.2697971 C18.2206288,32.3627368 18.3933042,32.4452922 18.5747949,32.516944 C18.5841287,32.5205785 18.5944996,32.5231746 18.6038334,32.5268091 C18.6318348,32.5377126 18.6619104,32.5455009 18.6904304,32.5558852 C18.7951764,32.593788 18.899404,32.6322099 19.0088169,32.6628437 C19.0668939,32.6794586 19.1275637,32.6919198 19.1871964,32.7064578 C19.2214203,32.7147653 19.2546072,32.723592 19.2893497,32.7313802 C19.3204624,32.73813 19.350538,32.7474759 19.3816507,32.7537065 C19.4978047,32.7775904 19.6165515,32.7983591 19.7358168,32.814974 C19.7778189,32.8206854 19.8208582,32.8238007 19.8633788,32.8289928 C19.8929359,32.8326273 19.9224929,32.8357426 19.95205,32.8388579 C19.9956078,32.8435309 20.0391655,32.8497615 20.0827233,32.853396 C20.1993959,32.8627419 20.316587,32.8689725 20.4342967,32.8715685 C20.4711134,32.872607 20.5079301,32.8705301 20.5447468,32.8710493 C20.5768965,32.8710493 20.6080092,32.8705301 20.640159,32.8705301 C20.6935691,32.8700109 20.7469792,32.8715685 20.7998708,32.8694917 C20.9320998,32.8648187 21.0643287,32.8559921 21.1955205,32.8424924 C21.2105583,32.8409348 21.2255961,32.8378195 21.2406339,32.8362619 C21.275895,32.8321081 21.3101189,32.8258775 21.3458985,32.8212046 C21.4480519,32.8082242 21.5507238,32.7962822 21.6508029,32.7781097 C21.6948792,32.7698022 21.7358443,32.7547449 21.7799206,32.7459183 C21.9022972,32.7204767 22.0200068,32.6893237 22.1377165,32.6560939 C22.1999419,32.6384405 22.2663156,32.6285754 22.3269854,32.6088452 C22.3772842,32.5922303 22.4239533,32.5709425 22.4726965,32.5532891 C22.5193655,32.536155 22.565516,32.5190208 22.611148,32.5003291 C22.785379,32.4297157 22.9544247,32.3533909 23.1094696,32.2625281 L48.7950699,17.2675684 C48.8095892,17.2592609 48.824627,17.2504343 48.8386277,17.2416076 C48.906557,17.2005895 48.9547817,17.1533409 49.01597,17.1097267 C49.102567,17.04794 49.194868,16.9882302 49.2674643,16.9228089 C49.2742053,16.9165783 49.2845762,16.9113862 49.2913173,16.9051556 C49.374803,16.8277924 49.4484364,16.7478331 49.512736,16.665797 C49.5272552,16.6471052 49.5371076,16.6278942 49.5505897,16.6092024 C49.5645905,16.5894722 49.5770355,16.569742 49.5905177,16.5500118 C49.6122966,16.5173012 49.6377053,16.4851098 49.6563729,16.4513608 C49.6942267,16.3843819 49.7258579,16.3163646 49.7512666,16.2478281 C49.755415,16.2374437 49.7564521,16.2270594 49.7600819,16.2166751 C49.7647488,16.2036947 49.7673415,16.1907143 49.7709713,16.1777339 C49.7844535,16.1341197 49.7994913,16.0905056 49.8083065,16.0463722 C49.8217887,15.9783549 49.8295669,15.9098184 49.8316411,15.8412819 C49.8321596,15.8308976 49.8321596,15.8205132 49.8321596,15.8096097 L49.854457,0.194706021 C49.8534199,0.318279443 49.830604,0.441333648 49.7927502,0.563349421 Z" id="path-210"></path>
  842. <path d="M49.7927502,0.563349421 C49.7886018,0.576329823 49.7860091,0.58982944 49.7818607,0.602809842 C49.7429699,0.715998942 49.6838558,0.827111178 49.611778,0.93614655 C49.5988144,0.95587676 49.5863693,0.97560697 49.5723686,0.994817965 C49.4940684,1.1028149 49.4002117,1.20769655 49.2887246,1.30842446 C49.2161283,1.37384569 49.1243459,1.43355553 49.0382674,1.49482303 C48.9641155,1.54778306 48.9008531,1.6038584 48.8163302,1.65318392 L23.1307299,16.6481436 C22.975685,16.7384872 22.8066394,16.8153312 22.6324083,16.8859446 C22.5867764,16.9041172 22.5406259,16.9217705 22.4944754,16.9383854 C22.3860995,16.9778458 22.2720196,17.009518 22.1584583,17.0417094 C22.0412672,17.0749392 21.923039,17.1060922 21.8016995,17.1310146 C21.6585811,17.1606099 21.5144256,17.1876091 21.3671589,17.2063009 C21.3318978,17.2109738 21.2976739,17.2172044 21.2624128,17.220839 C21.0643287,17.242646 20.8631333,17.2530303 20.6619379,17.2551072 C20.6297881,17.2556264 20.5981569,17.2556264 20.5660071,17.2556264 C20.3674044,17.254588 20.1698388,17.2436845 19.9738289,17.223435 C19.9442718,17.2203197 19.9147148,17.2172044 19.8851577,17.2135699 C19.6907034,17.1907244 19.4988418,17.1580138 19.3116471,17.1159573 C19.2769046,17.1081691 19.2431992,17.0993424 19.2089752,17.0910349 C19.038374,17.0489784 18.8729582,16.9986145 18.7127278,16.9404623 C18.6842079,16.930078 18.6541323,16.9222897 18.6261308,16.9113862 C18.4342692,16.8371383 18.2507044,16.7525061 18.0811402,16.6548934 L1.42184996,7.05562699 C0.716110431,6.64908082 0.362981391,6.11428828 0.364018481,5.58053418 L0.341721053,21.1954379 C0.341202508,21.7297112 0.694331547,22.2639845 1.39955254,22.6705307 L18.0588428,32.2697971 C18.2206288,32.3627368 18.3933042,32.4452922 18.5747949,32.516944 C18.5841287,32.5205785 18.5944996,32.5231746 18.6038334,32.5268091 C18.6318348,32.5377126 18.6619104,32.5455009 18.6904304,32.5558852 C18.7951764,32.593788 18.899404,32.6322099 19.0088169,32.6628437 C19.0668939,32.6794586 19.1275637,32.6919198 19.1871964,32.7064578 C19.2214203,32.7147653 19.2546072,32.723592 19.2893497,32.7313802 C19.3204624,32.73813 19.350538,32.7474759 19.3816507,32.7537065 C19.4978047,32.7775904 19.6165515,32.7983591 19.7358168,32.814974 C19.7778189,32.8206854 19.8208582,32.8238007 19.8633788,32.8289928 C19.8929359,32.8326273 19.9224929,32.8357426 19.95205,32.8388579 C19.9956078,32.8435309 20.0391655,32.8497615 20.0827233,32.853396 C20.1993959,32.8627419 20.316587,32.8689725 20.4342967,32.8715685 C20.4711134,32.872607 20.5079301,32.8705301 20.5447468,32.8710493 C20.5768965,32.8710493 20.6080092,32.8705301 20.640159,32.8705301 C20.6935691,32.8700109 20.7469792,32.8715685 20.7998708,32.8694917 C20.9320998,32.8648187 21.0643287,32.8559921 21.1955205,32.8424924 C21.2105583,32.8409348 21.2255961,32.8378195 21.2406339,32.8362619 C21.275895,32.8321081 21.3101189,32.8258775 21.3458985,32.8212046 C21.4480519,32.8082242 21.5507238,32.7962822 21.6508029,32.7781097 C21.6948792,32.7698022 21.7358443,32.7547449 21.7799206,32.7459183 C21.9022972,32.7204767 22.0200068,32.6893237 22.1377165,32.6560939 C22.1999419,32.6384405 22.2663156,32.6285754 22.3269854,32.6088452 C22.3772842,32.5922303 22.4239533,32.5709425 22.4726965,32.5532891 C22.5193655,32.536155 22.565516,32.5190208 22.611148,32.5003291 C22.785379,32.4297157 22.9544247,32.3533909 23.1094696,32.2625281 L48.7950699,17.2675684 C48.8095892,17.2592609 48.824627,17.2504343 48.8386277,17.2416076 C48.906557,17.2005895 48.9547817,17.1533409 49.01597,17.1097267 C49.102567,17.04794 49.194868,16.9882302 49.2674643,16.9228089 C49.2742053,16.9165783 49.2845762,16.9113862 49.2913173,16.9051556 C49.374803,16.8277924 49.4484364,16.7478331 49.512736,16.665797 C49.5272552,16.6471052 49.5371076,16.6278942 49.5505897,16.6092024 C49.5645905,16.5894722 49.5770355,16.569742 49.5905177,16.5500118 C49.6122966,16.5173012 49.6377053,16.4851098 49.6563729,16.4513608 C49.6942267,16.3843819 49.7258579,16.3163646 49.7512666,16.2478281 C49.755415,16.2374437 49.7564521,16.2270594 49.7600819,16.2166751 C49.7647488,16.2036947 49.7673415,16.1907143 49.7709713,16.1777339 C49.7844535,16.1341197 49.7994913,16.0905056 49.8083065,16.0463722 C49.8217887,15.9783549 49.8295669,15.9098184 49.8316411,15.8412819 C49.8321596,15.8308976 49.8321596,15.8205132 49.8321596,15.8096097 L49.854457,0.194706021 C49.8534199,0.318279443 49.830604,0.441333648 49.7927502,0.563349421 Z" id="path-212"></path>
  843. <linearGradient x1="-57.8801843%" y1="50.0075299%" x2="183.879263%" y2="50.0075299%" id="linearGradient-214">
  844. <stop stop-color="#55FF94" offset="0.63%"></stop>
  845. <stop stop-color="#E9FFF9" offset="100%"></stop>
  846. </linearGradient>
  847. <linearGradient x1="-57.9032258%" y1="49.996988%" x2="183.856221%" y2="49.996988%" id="linearGradient-215">
  848. <stop stop-color="#55FF94" offset="0.63%"></stop>
  849. <stop stop-color="#E9FFF9" offset="100%"></stop>
  850. </linearGradient>
  851. <linearGradient x1="-57.9262673%" y1="49.9932231%" x2="183.83318%" y2="49.9932231%" id="linearGradient-216">
  852. <stop stop-color="#55FF94" offset="0.63%"></stop>
  853. <stop stop-color="#E9FFF9" offset="100%"></stop>
  854. </linearGradient>
  855. <linearGradient x1="-58.1382488%" y1="49.9909634%" x2="183.621198%" y2="49.9909634%" id="linearGradient-217">
  856. <stop stop-color="#55FF94" offset="0.63%"></stop>
  857. <stop stop-color="#E9FFF9" offset="100%"></stop>
  858. </linearGradient>
  859. <linearGradient x1="-58.1612903%" y1="49.999247%" x2="183.598157%" y2="49.999247%" id="linearGradient-218">
  860. <stop stop-color="#55FF94" offset="0.63%"></stop>
  861. <stop stop-color="#E9FFF9" offset="100%"></stop>
  862. </linearGradient>
  863. <linearGradient x1="-58.1843318%" y1="49.995482%" x2="183.575115%" y2="49.995482%" id="linearGradient-219">
  864. <stop stop-color="#55FF94" offset="0.63%"></stop>
  865. <stop stop-color="#E9FFF9" offset="100%"></stop>
  866. </linearGradient>
  867. <linearGradient x1="-58.3963134%" y1="49.996988%" x2="183.363134%" y2="49.996988%" id="linearGradient-220">
  868. <stop stop-color="#55FF94" offset="0.63%"></stop>
  869. <stop stop-color="#E9FFF9" offset="100%"></stop>
  870. </linearGradient>
  871. <linearGradient x1="-58.4193548%" y1="49.9932231%" x2="183.340092%" y2="49.9932231%" id="linearGradient-221">
  872. <stop stop-color="#55FF94" offset="0.63%"></stop>
  873. <stop stop-color="#E9FFF9" offset="100%"></stop>
  874. </linearGradient>
  875. <linearGradient x1="-58.4423963%" y1="49.9939756%" x2="183.317051%" y2="49.9939756%" id="linearGradient-222">
  876. <stop stop-color="#55FF94" offset="0.63%"></stop>
  877. <stop stop-color="#E9FFF9" offset="100%"></stop>
  878. </linearGradient>
  879. <linearGradient x1="-58.6543779%" y1="49.999247%" x2="183.105069%" y2="49.999247%" id="linearGradient-223">
  880. <stop stop-color="#55FF94" offset="0.63%"></stop>
  881. <stop stop-color="#E9FFF9" offset="100%"></stop>
  882. </linearGradient>
  883. <linearGradient x1="-58.6774194%" y1="50.003765%" x2="183.082028%" y2="50.003765%" id="linearGradient-224">
  884. <stop stop-color="#55FF94" offset="0.63%"></stop>
  885. <stop stop-color="#E9FFF9" offset="100%"></stop>
  886. </linearGradient>
  887. <linearGradient x1="-58.7004608%" y1="50.0075299%" x2="183.058986%" y2="50.0075299%" id="linearGradient-225">
  888. <stop stop-color="#55FF94" offset="0.63%"></stop>
  889. <stop stop-color="#E9FFF9" offset="100%"></stop>
  890. </linearGradient>
  891. <linearGradient x1="49.4604133%" y1="-170.266599%" x2="49.7942663%" y2="137.302134%" id="linearGradient-226">
  892. <stop stop-color="#FB6583" offset="0.54%"></stop>
  893. <stop stop-color="#FC7688" offset="13.02%"></stop>
  894. <stop stop-color="#FDA797" offset="52.77%"></stop>
  895. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  896. <stop stop-color="#FFD1A3" offset="100%"></stop>
  897. </linearGradient>
  898. <linearGradient x1="49.5304271%" y1="-102.880521%" x2="49.864217%" y2="204.659197%" id="linearGradient-227">
  899. <stop stop-color="#FB6583" offset="0.54%"></stop>
  900. <stop stop-color="#FC7688" offset="13.02%"></stop>
  901. <stop stop-color="#FDA797" offset="52.77%"></stop>
  902. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  903. <stop stop-color="#FFD1A3" offset="100%"></stop>
  904. </linearGradient>
  905. <linearGradient x1="49.6019285%" y1="-35.5353311%" x2="49.9357814%" y2="272.033401%" id="linearGradient-228">
  906. <stop stop-color="#FB6583" offset="0.54%"></stop>
  907. <stop stop-color="#FC7688" offset="13.02%"></stop>
  908. <stop stop-color="#FDA797" offset="52.77%"></stop>
  909. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  910. <stop stop-color="#FFD1A3" offset="100%"></stop>
  911. </linearGradient>
  912. <linearGradient x1="49.4911128%" y1="-129.293366%" x2="49.7992845%" y2="154.616067%" id="linearGradient-229">
  913. <stop stop-color="#FB6583" offset="0.54%"></stop>
  914. <stop stop-color="#FC7688" offset="13.02%"></stop>
  915. <stop stop-color="#FDA797" offset="52.77%"></stop>
  916. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  917. <stop stop-color="#FFD1A3" offset="100%"></stop>
  918. </linearGradient>
  919. <linearGradient x1="49.5610379%" y1="-61.9169945%" x2="49.8692097%" y2="221.992439%" id="linearGradient-230">
  920. <stop stop-color="#FB6583" offset="0.54%"></stop>
  921. <stop stop-color="#FC7688" offset="13.02%"></stop>
  922. <stop stop-color="#FDA797" offset="52.77%"></stop>
  923. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  924. <stop stop-color="#FFD1A3" offset="100%"></stop>
  925. </linearGradient>
  926. <linearGradient x1="49.632628%" y1="5.45937454%" x2="49.9407997%" y2="289.368808%" id="linearGradient-231">
  927. <stop stop-color="#FB6583" offset="0.54%"></stop>
  928. <stop stop-color="#FC7688" offset="13.02%"></stop>
  929. <stop stop-color="#FDA797" offset="52.77%"></stop>
  930. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  931. <stop stop-color="#FFD1A3" offset="100%"></stop>
  932. </linearGradient>
  933. <linearGradient x1="49.4640285%" y1="-141.533156%" x2="49.7722002%" y2="142.376278%" id="linearGradient-232">
  934. <stop stop-color="#FB6583" offset="0.54%"></stop>
  935. <stop stop-color="#FC7688" offset="13.02%"></stop>
  936. <stop stop-color="#FDA797" offset="52.77%"></stop>
  937. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  938. <stop stop-color="#FFD1A3" offset="100%"></stop>
  939. </linearGradient>
  940. <linearGradient x1="49.5339536%" y1="-74.156784%" x2="49.8421253%" y2="209.75265%" id="linearGradient-233">
  941. <stop stop-color="#FB6583" offset="0.54%"></stop>
  942. <stop stop-color="#FC7688" offset="13.02%"></stop>
  943. <stop stop-color="#FDA797" offset="52.77%"></stop>
  944. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  945. <stop stop-color="#FFD1A3" offset="100%"></stop>
  946. </linearGradient>
  947. <linearGradient x1="49.6221925%" y1="-6.78041499%" x2="49.9303642%" y2="277.129019%" id="linearGradient-234">
  948. <stop stop-color="#FB6583" offset="0.54%"></stop>
  949. <stop stop-color="#FC7688" offset="13.02%"></stop>
  950. <stop stop-color="#FDA797" offset="52.77%"></stop>
  951. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  952. <stop stop-color="#FFD1A3" offset="100%"></stop>
  953. </linearGradient>
  954. <linearGradient x1="49.3976136%" y1="-240.834354%" x2="49.8855512%" y2="208.688022%" id="linearGradient-235">
  955. <stop stop-color="#FB6583" offset="0.54%"></stop>
  956. <stop stop-color="#FC7688" offset="13.02%"></stop>
  957. <stop stop-color="#FDA797" offset="52.77%"></stop>
  958. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  959. <stop stop-color="#FFD1A3" offset="100%"></stop>
  960. </linearGradient>
  961. <linearGradient x1="49.5391287%" y1="-106.081613%" x2="50.0270664%" y2="343.440763%" id="linearGradient-236">
  962. <stop stop-color="#FB6583" offset="0.54%"></stop>
  963. <stop stop-color="#FC7688" offset="13.02%"></stop>
  964. <stop stop-color="#FDA797" offset="52.77%"></stop>
  965. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  966. <stop stop-color="#FFD1A3" offset="100%"></stop>
  967. </linearGradient>
  968. <linearGradient x1="49.4675387%" y1="-173.457982%" x2="49.9554763%" y2="276.064394%" id="linearGradient-237">
  969. <stop stop-color="#FB6583" offset="0.54%"></stop>
  970. <stop stop-color="#FC7688" offset="13.02%"></stop>
  971. <stop stop-color="#FDA797" offset="52.77%"></stop>
  972. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  973. <stop stop-color="#FFD1A3" offset="100%"></stop>
  974. </linearGradient>
  975. <linearGradient x1="-13.1988302%" y1="12.2391978%" x2="120.53479%" y2="92.1437518%" id="linearGradient-238">
  976. <stop stop-color="#4C83FF" offset="0%"></stop>
  977. <stop stop-color="#4B86FE" offset="20.96%"></stop>
  978. <stop stop-color="#4891FB" offset="38.97%"></stop>
  979. <stop stop-color="#43A3F6" offset="55.87%"></stop>
  980. <stop stop-color="#3CBCF0" offset="72.12%"></stop>
  981. <stop stop-color="#33DBE7" offset="87.75%"></stop>
  982. <stop stop-color="#2AFADF" offset="100%"></stop>
  983. </linearGradient>
  984. <linearGradient x1="41.3692001%" y1="35.6975197%" x2="130.26863%" y2="183.018773%" id="linearGradient-239">
  985. <stop stop-color="#2AFADF" offset="0%"></stop>
  986. <stop stop-color="#4C83FF" offset="100%"></stop>
  987. </linearGradient>
  988. <linearGradient x1="-0.000791598104%" y1="50.0011032%" x2="99.9970473%" y2="50.0011032%" id="linearGradient-240">
  989. <stop stop-color="#FB6583" offset="0.54%"></stop>
  990. <stop stop-color="#FC7688" offset="13.02%"></stop>
  991. <stop stop-color="#FDA797" offset="52.77%"></stop>
  992. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  993. <stop stop-color="#FFD1A3" offset="100%"></stop>
  994. </linearGradient>
  995. <linearGradient x1="61.0975864%" y1="-0.564209532%" x2="40.7510077%" y2="94.224418%" id="linearGradient-241">
  996. <stop stop-color="#FFFFFF" offset="0%"></stop>
  997. <stop stop-color="#FFFFFF" stop-opacity="0" offset="98.23%"></stop>
  998. </linearGradient>
  999. <linearGradient x1="57.6798667%" y1="1.92580225%" x2="43.6442071%" y2="92.1000666%" id="linearGradient-242">
  1000. <stop stop-color="#FFFFFF" offset="0%"></stop>
  1001. <stop stop-color="#FFFFFF" stop-opacity="0" offset="98.23%"></stop>
  1002. </linearGradient>
  1003. <linearGradient x1="50.0002643%" y1="100.143084%" x2="50.0002643%" y2="-0.0360120579%" id="linearGradient-243">
  1004. <stop stop-color="#4C83FF" offset="0%"></stop>
  1005. <stop stop-color="#2AFADF" offset="53.27%"></stop>
  1006. <stop stop-color="#FFFFFF" offset="100%"></stop>
  1007. </linearGradient>
  1008. <linearGradient x1="11.7853018%" y1="44.2150783%" x2="181.809711%" y2="69.9518178%" id="linearGradient-244">
  1009. <stop stop-color="#2AFADF" offset="0%"></stop>
  1010. <stop stop-color="#4C83FF" offset="100%"></stop>
  1011. </linearGradient>
  1012. <linearGradient x1="0.000888952103%" y1="50%" x2="100.000533%" y2="50%" id="linearGradient-245">
  1013. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1014. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1015. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1016. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1017. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1018. </linearGradient>
  1019. <linearGradient x1="25.9411305%" y1="45.9225028%" x2="157.195459%" y2="68.1689689%" id="linearGradient-246">
  1020. <stop stop-color="#2AFADF" offset="0%"></stop>
  1021. <stop stop-color="#4C83FF" offset="100%"></stop>
  1022. </linearGradient>
  1023. <linearGradient x1="-0.000533371262%" y1="49.9997334%" x2="99.999111%" y2="49.9997334%" id="linearGradient-247">
  1024. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1025. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1026. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1027. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1028. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1029. </linearGradient>
  1030. <linearGradient x1="49.1420156%" y1="20.3553496%" x2="52.6016739%" y2="139.888853%" id="linearGradient-248">
  1031. <stop stop-color="#55FF94" offset="0.63%"></stop>
  1032. <stop stop-color="#E9FFF9" offset="100%"></stop>
  1033. </linearGradient>
  1034. <linearGradient x1="40.4113944%" y1="9.21322041%" x2="89.5696507%" y2="218.312088%" id="linearGradient-249">
  1035. <stop stop-color="#2AFADF" offset="0%"></stop>
  1036. <stop stop-color="#4C83FF" offset="100%"></stop>
  1037. </linearGradient>
  1038. <linearGradient x1="49.1672305%" y1="10.1918975%" x2="51.3068841%" y2="112.470702%" id="linearGradient-250">
  1039. <stop stop-color="#55FF94" offset="0.63%"></stop>
  1040. <stop stop-color="#E9FFF9" offset="100%"></stop>
  1041. </linearGradient>
  1042. <linearGradient x1="48.6631418%" y1="19.5480025%" x2="53.2472954%" y2="123.973128%" id="linearGradient-251">
  1043. <stop stop-color="#2AFADF" offset="0%"></stop>
  1044. <stop stop-color="#4C83FF" offset="100%"></stop>
  1045. </linearGradient>
  1046. <linearGradient x1="46.9218466%" y1="-14.8644177%" x2="52.8587091%" y2="110.240359%" id="linearGradient-252">
  1047. <stop stop-color="#55FF94" offset="0.63%"></stop>
  1048. <stop stop-color="#E9FFF9" offset="100%"></stop>
  1049. </linearGradient>
  1050. <linearGradient x1="49.5594102%" y1="35.5829201%" x2="54.7157752%" y2="204.304625%" id="linearGradient-253">
  1051. <stop stop-color="#2AFADF" offset="0%"></stop>
  1052. <stop stop-color="#4C83FF" offset="100%"></stop>
  1053. </linearGradient>
  1054. <linearGradient x1="69.9225136%" y1="51.3282702%" x2="-272.307714%" y2="20.1277039%" id="linearGradient-254">
  1055. <stop stop-color="#1F0939" offset="0%"></stop>
  1056. <stop stop-color="#2A2284" offset="100%"></stop>
  1057. </linearGradient>
  1058. <linearGradient x1="101.116996%" y1="49.9998308%" x2="-1.11777952%" y2="49.9998308%" id="linearGradient-255">
  1059. <stop stop-color="#8FFFFF" offset="0%"></stop>
  1060. <stop stop-color="#73D3F0" offset="100%"></stop>
  1061. </linearGradient>
  1062. <linearGradient x1="47.5796602%" y1="120.228182%" x2="50.0840964%" y2="31.9952864%" id="linearGradient-256">
  1063. <stop stop-color="#6AFFAE" offset="0%"></stop>
  1064. <stop stop-color="#2AFFD2" offset="29.57%"></stop>
  1065. <stop stop-color="#FFFFFF" stop-opacity="0" offset="98.23%"></stop>
  1066. </linearGradient>
  1067. <linearGradient x1="54.1980554%" y1="107.852299%" x2="44.9777759%" y2="-4.75856392%" id="linearGradient-257">
  1068. <stop stop-color="#4C83FF" offset="0%"></stop>
  1069. <stop stop-color="#2AFADF" offset="100%"></stop>
  1070. </linearGradient>
  1071. <linearGradient x1="115.010425%" y1="45.5298415%" x2="2.43506651%" y2="53.3624552%" id="linearGradient-258">
  1072. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  1073. <stop stop-color="#005BEA" offset="100%"></stop>
  1074. </linearGradient>
  1075. <linearGradient x1="50.000449%" y1="-12.0582133%" x2="50.000449%" y2="95.0617743%" id="linearGradient-259">
  1076. <stop stop-color="#00C6FB" offset="0.54%"></stop>
  1077. <stop stop-color="#005BEA" offset="100%"></stop>
  1078. </linearGradient>
  1079. <linearGradient x1="-51.5439399%" y1="5.48620924%" x2="100.953654%" y2="71.8326876%" id="linearGradient-260">
  1080. <stop stop-color="#4C83FF" offset="0%"></stop>
  1081. <stop stop-color="#2AFADF" offset="100%"></stop>
  1082. </linearGradient>
  1083. <linearGradient x1="32.7036416%" y1="32.9016819%" x2="98.0138955%" y2="95.5623599%" id="linearGradient-261">
  1084. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1085. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1086. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1087. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1088. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1089. </linearGradient>
  1090. <linearGradient x1="32.3517431%" y1="32.9411114%" x2="95.748173%" y2="89.9183679%" id="linearGradient-262">
  1091. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1092. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1093. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1094. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1095. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1096. </linearGradient>
  1097. <linearGradient x1="17.2840542%" y1="23.4266812%" x2="92.2079789%" y2="81.1256988%" id="linearGradient-263">
  1098. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1099. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1100. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1101. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1102. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1103. </linearGradient>
  1104. <linearGradient x1="27.2828561%" y1="28.7998627%" x2="84.9167366%" y2="78.6556284%" id="linearGradient-264">
  1105. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1106. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1107. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1108. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1109. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1110. </linearGradient>
  1111. <linearGradient x1="24.790369%" y1="25.7596949%" x2="74.734068%" y2="72.0431805%" id="linearGradient-265">
  1112. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1113. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1114. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1115. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1116. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1117. </linearGradient>
  1118. <linearGradient x1="3.61883086%" y1="10.1593413%" x2="78.5337805%" y2="72.1178098%" id="linearGradient-266">
  1119. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1120. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1121. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1122. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1123. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1124. </linearGradient>
  1125. <linearGradient x1="2.16604768%" y1="8.94816292%" x2="143.370073%" y2="125.752338%" id="linearGradient-267">
  1126. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1127. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1128. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1129. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1130. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1131. </linearGradient>
  1132. <linearGradient x1="1.38972086%" y1="15.8491541%" x2="79.1949203%" y2="68.5622317%" id="linearGradient-268">
  1133. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1134. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1135. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1136. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1137. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1138. </linearGradient>
  1139. <linearGradient x1="4.42194801%" y1="6.61104898%" x2="96.6347191%" y2="92.7893494%" id="linearGradient-269">
  1140. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1141. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1142. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1143. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1144. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1145. </linearGradient>
  1146. <linearGradient x1="536.350144%" y1="174.52452%" x2="213.372882%" y2="92.3496426%" id="linearGradient-270">
  1147. <stop stop-color="#1E2275" offset="0%"></stop>
  1148. <stop stop-color="#0046BC" offset="100%"></stop>
  1149. </linearGradient>
  1150. <linearGradient x1="-55.4137294%" y1="6.78325855%" x2="202.715026%" y2="103.142083%" id="linearGradient-271">
  1151. <stop stop-color="#1E2275" offset="0%"></stop>
  1152. <stop stop-color="#0046BC" offset="100%"></stop>
  1153. </linearGradient>
  1154. <linearGradient x1="454.304252%" y1="153.649594%" x2="131.32699%" y2="71.4747171%" id="linearGradient-272">
  1155. <stop stop-color="#1E2275" offset="0%"></stop>
  1156. <stop stop-color="#0046BC" offset="100%"></stop>
  1157. </linearGradient>
  1158. <linearGradient x1="-117.930083%" y1="-16.5517026%" x2="140.199182%" y2="79.8035718%" id="linearGradient-273">
  1159. <stop stop-color="#1E2275" offset="0%"></stop>
  1160. <stop stop-color="#0046BC" offset="100%"></stop>
  1161. </linearGradient>
  1162. <linearGradient x1="-32.8759703%" y1="90.1376012%" x2="101.842392%" y2="24.5539331%" id="linearGradient-274">
  1163. <stop stop-color="#1E2275" offset="0%"></stop>
  1164. <stop stop-color="#0046BC" offset="100%"></stop>
  1165. </linearGradient>
  1166. <linearGradient x1="61.6739513%" y1="60.0497428%" x2="90.675201%" y2="109.996418%" id="linearGradient-275">
  1167. <stop stop-color="#4C83FF" offset="0%"></stop>
  1168. <stop stop-color="#2AFADF" offset="100%"></stop>
  1169. </linearGradient>
  1170. <linearGradient x1="-116.451036%" y1="401.864606%" x2="124.054819%" y2="-104.6178%" id="linearGradient-276">
  1171. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1172. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1173. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1174. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1175. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1176. </linearGradient>
  1177. <linearGradient x1="39.274521%" y1="138.67457%" x2="59.7151872%" y2="-8.34646615%" id="linearGradient-277">
  1178. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1179. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1180. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1181. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1182. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1183. </linearGradient>
  1184. <linearGradient x1="50.1370461%" y1="114.805303%" x2="49.5515736%" y2="-155.801132%" id="linearGradient-278">
  1185. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1186. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1187. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1188. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1189. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1190. </linearGradient>
  1191. <linearGradient x1="-0.00116151247%" y1="49.9997203%" x2="99.9991583%" y2="49.9997203%" id="linearGradient-279">
  1192. <stop stop-color="#FB6583" offset="0.54%"></stop>
  1193. <stop stop-color="#FC7688" offset="13.02%"></stop>
  1194. <stop stop-color="#FDA797" offset="52.77%"></stop>
  1195. <stop stop-color="#FFC6A0" offset="83.02%"></stop>
  1196. <stop stop-color="#FFD1A3" offset="100%"></stop>
  1197. </linearGradient>
  1198. <linearGradient x1="128.131389%" y1="157.510275%" x2="11.106928%" y2="4.17690023%" id="linearGradient-280">
  1199. <stop stop-color="#1E2275" offset="0%"></stop>
  1200. <stop stop-color="#0046BC" offset="100%"></stop>
  1201. </linearGradient>
  1202. </defs>
  1203. <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  1204. <g id="分发">
  1205. <g id="top" transform="translate(-0.000000, 0.000000)">
  1206. <g id="banner">
  1207. <mask id="mask-2" fill="white">
  1208. <use xlink:href="#path-1"></use>
  1209. </mask>
  1210. <g id="banner尺寸"></g>
  1211. <g id="Group-3" mask="url(#mask-2)">
  1212. <g transform="translate(-418.000000, -100.652174)">
  1213. <g id="分组">
  1214. <path d="M1372.71138,172.832544 C1372.71138,172.832544 1020.96491,377.999474 317.47197,788.333333" id="直线-15" stroke="url(#linearGradient-3)" stroke-width="1.0252" opacity="0.298735119"></path>
  1215. <path d="M1313.35855,139.765824 L297.891907,724.328058" id="直线-15-copy" stroke="url(#linearGradient-4)" stroke-width="1.0252" opacity="0.294875372"></path>
  1216. <path d="M1262.86295,90.5634519 L247.396303,675.125686" id="直线-15-copy-2" stroke="url(#linearGradient-5)" stroke-width="1.0252" opacity="0.234863281"></path>
  1217. <path d="M1137.46665,80 L122,664.562234" id="直线-15-copy-3" stroke="url(#linearGradient-6)" stroke-width="1.0252" opacity="0.168736049"></path>
  1218. <path d="M1087.46665,34.6521743 L72,619.214408" id="直线-15-copy-4" stroke="url(#linearGradient-6)" stroke-width="1.0252" opacity="0.21421596"></path>
  1219. <path d="M1015.46665,0 L5.68434189e-14,584.562234" id="直线-15-copy-5" stroke="url(#linearGradient-6)" stroke-width="1.0252" opacity="0.140555246"></path>
  1220. <path d="M1180,67.6521743 L1913.62626,463.585367" id="直线-7" stroke="url(#linearGradient-7)" stroke-width="1.0252" opacity="0.16343471"></path>
  1221. <path d="M745.8,538.252174 L1455.03049,953.885438" id="直线-7-copy-5" stroke="url(#linearGradient-8)" stroke-width="1.0252" opacity="0.385858445"></path>
  1222. <path d="M742,612.562234 L1451.23049,1028.1955" id="直线-7-copy-6" stroke="url(#linearGradient-8)" stroke-width="1.0252" opacity="0.385858445"></path>
  1223. <path d="M629.733323,633.652174 L1338.96381,1049.28544" id="直线-7-copy-7" stroke="url(#linearGradient-8)" stroke-width="1.0252" opacity="0.385858445"></path>
  1224. <path d="M518,671.652174 L1227.23049,1087.28544" id="直线-7-copy-8" stroke="url(#linearGradient-8)" stroke-width="1.0252" opacity="0.385858445"></path>
  1225. <path d="M442,716.152174 L1151.23049,1131.78544" id="直线-7-copy-9" stroke="url(#linearGradient-8)" stroke-width="1.0252" opacity="0.385858445"></path>
  1226. <path d="M1247,53.6521743 L1980.62626,449.585367" id="直线-7-copy" stroke="url(#linearGradient-7)" stroke-width="1.0252" opacity="0.189918155"></path>
  1227. <path d="M1359,67.6521743 L2092.62626,463.585367" id="直线-7-copy-2" stroke="url(#linearGradient-7)" stroke-width="1.0252" opacity="0.18405878"></path>
  1228. <path d="M1447,59.3479239 L2180.62626,455.281117" id="直线-7-copy-3" stroke="url(#linearGradient-7)" stroke-width="1.0252" opacity="0.211728051"></path>
  1229. <path d="M1513,39.6521743 L2246.62626,435.585367" id="直线-7-copy-4" stroke="url(#linearGradient-7)" stroke-width="1.0252" opacity="0.136648996"></path>
  1230. </g>
  1231. <g id="Group-2" transform="translate(718.000000, 225.703173)">
  1232. <polygon id="矩形" fill="#000487" opacity="0.05" points="538.253986 0 1105.48041 316.482921 549.657573 628.898003 0 317.478278"></polygon>
  1233. <polygon id="矩形" stroke="url(#linearGradient-9)" fill="#000487" opacity="0.08" points="541.276139 65.6011758 990.166302 316.058599 550.300681 563.296827 115.314112 316.846303"></polygon>
  1234. <polygon id="矩形" stroke="url(#linearGradient-10)" fill="#040781" opacity="0.1" points="544.240111 120.569051 877.072188 306.272083 550.931407 489.588225 228.408227 306.85613"></polygon>
  1235. <g id="分发图" transform="translate(258.072188, 49.953547)">
  1236. <g id="base" transform="translate(43.557767, 104.881643)">
  1237. <g id="Group">
  1238. <path d="M236.31022,287.015367 L4.47711619,152.993242 C-1.48977934,149.544089 -1.48977934,140.92043 4.47711619,137.471278 L234.68873,4.38633725 C243.648666,-0.793362135 254.688486,-0.793362135 263.648422,4.38633725 L495.481526,138.408463 C501.448421,141.857615 501.448421,150.481274 495.481526,153.930427 L265.269394,287.015367 C256.309457,292.195066 245.270156,292.195066 236.31022,287.015367 Z" id="Shape" fill="url(#linearGradient-11)" fill-rule="nonzero"></path>
  1239. <g opacity="0.1" transform="translate(16.593435, 12.980401)" id="Shape">
  1240. <path d="M239.838399,2.08672933 L462.251098,130.662798 C465.75698,132.689298 465.75698,137.755808 462.251098,139.782828 L242.543647,266.795017 C237.32916,269.809585 230.904908,269.809585 225.690421,266.795017 L2.17166581,137.579275 C-0.298681831,136.150911 -0.298681831,132.580262 2.17166581,131.152418 L225.43063,2.08672933 C229.88856,-0.490139957 235.380987,-0.490139957 239.838399,2.08672933 Z" stroke="#FFFFFF" stroke-width="0.6"></path>
  1241. <path d="M35.949677,111.625222 L273.454105,248.926196" fill="#FFFFFF" fill-rule="nonzero"></path>
  1242. <path d="M75.2864889,88.8845967 L312.790917,226.185572" stroke="#FFFFFF" stroke-width="0.6"></path>
  1243. <path d="M114.623819,66.1439719 L352.127729,203.444947" stroke="#FFFFFF" stroke-width="0.6"></path>
  1244. <path d="M153.960631,43.403347 L391.46506,180.704322" stroke="#FFFFFF" stroke-width="0.6"></path>
  1245. <path d="M193.297443,20.6627222 L430.801872,157.963697" stroke="#FFFFFF" stroke-width="0.6"></path>
  1246. <path d="M430.555044,112.339663 L194.533136,248.783412" stroke="#FFFFFF" stroke-width="0.6"></path>
  1247. <path d="M390.970887,89.4562536 L154.948978,225.900003" stroke="#FFFFFF" stroke-width="0.6"></path>
  1248. <path d="M351.386729,66.5728444 L115.36482,203.016593" stroke="#FFFFFF" stroke-width="0.6"></path>
  1249. <path d="M311.802571,43.6894351 L75.7806622,180.133184" stroke="#FFFFFF" stroke-width="0.6"></path>
  1250. <path d="M272.218413,20.8060258 L36.1965044,157.249256" stroke="#FFFFFF" stroke-width="0.6"></path>
  1251. </g>
  1252. <g opacity="0.7" fill-rule="nonzero" id="Shape">
  1253. <path d="M495.481526,153.930427 C495.481526,153.930427 464.99057,171.622714 419.254915,198.160885 C396.374124,211.407644 369.679435,226.861591 341.078057,243.41991 C326.777627,251.69881 312.000136,260.253933 296.984633,268.947168 C289.476623,273.293525 281.909498,277.67467 274.312297,282.072949 C272.412867,283.172649 270.511882,284.273387 268.609341,285.374644 C266.701614,286.460325 264.835372,287.638426 262.80475,288.55017 C260.775165,289.468663 258.656391,290.15974 256.47591,290.599516 C254.294392,291.024234 252.066723,291.203883 249.845796,291.13327 C247.625387,291.062656 245.413274,290.737627 243.263906,290.173239 C241.118686,289.592236 239.042951,288.763048 237.084407,287.719424 C236.093468,287.207996 235.160087,286.636859 234.20389,286.090643 L231.349301,284.437979 C229.44676,283.336721 227.545775,282.235983 225.646345,281.136284 C218.049144,276.738004 210.481501,272.356859 202.974009,268.010502 C187.958506,259.317267 173.181015,250.762144 158.880585,242.483244 C130.279207,225.924925 103.585037,210.470459 80.7042455,197.2237 C34.9680716,170.685529 4.47763474,152.993242 4.47763474,152.993242 C4.47763474,152.993242 35.0251116,170.586878 80.8463268,196.977591 C103.743711,210.195275 130.457586,225.615992 159.079706,242.138485 C173.390507,250.399732 188.178887,258.936163 203.20528,267.610186 C210.718476,271.947198 218.291305,276.318478 225.894209,280.707411 C227.794676,281.804515 229.697217,282.902657 231.601314,284.001837 L234.457977,285.650867 C235.4121,286.193967 236.358444,286.770816 237.325012,287.267187 C239.250887,288.290043 241.290324,289.101577 243.398209,289.670119 C245.510242,290.222565 247.682945,290.535652 249.863426,290.606785 C252.043907,290.678956 254.232685,290.505537 256.375831,290.090684 C258.514828,289.66285 260.608194,288.981119 262.587998,288.088587 C264.578173,287.200727 266.447527,286.025222 268.359402,284.940061 C270.263499,283.84088 272.16604,282.742738 274.066507,281.645635 C281.669411,277.256701 289.24224,272.885421 296.755437,268.54841 C311.781829,259.874386 326.569691,251.337436 340.88101,243.076708 C369.50313,226.554215 396.216486,211.133498 419.114389,197.915815 C464.934049,171.524063 495.481526,153.930427 495.481526,153.930427 Z" fill="url(#linearGradient-12)"></path>
  1254. <g>
  1255. <path d="M4.47711619,144.322334 L234.689248,11.2373931 C243.649185,6.05769373 254.688486,6.05769373 263.648941,11.2373931 L495.482044,145.259519 C497.311989,146.317162 498.577757,147.862349 499.285052,149.594973 C500.884763,145.678007 499.618995,140.799972 495.482044,138.408463 L263.648422,4.38581803 C254.688486,-0.793881351 243.648666,-0.793881351 234.68873,4.38581803 L4.47711619,137.470758 C0.340165418,139.862268 -0.926121093,144.740302 0.674108298,148.657268 C1.38140347,146.925164 2.64717143,145.379977 4.47711619,144.322334 Z" fill="url(#linearGradient-13)"></path>
  1256. <g opacity="0.3" transform="translate(19.704704, 0.000000)" fill="#FFFFFF">
  1257. <path d="M449.718906,123.344447 C449.718906,123.344447 421.787488,107.217596 379.89062,83.0268012 C358.941927,70.9316631 334.50239,56.8204092 308.316394,41.7008376 C295.223655,34.1410518 281.694302,26.3294462 267.946641,18.3921904 C261.07281,14.4233028 254.144532,10.4232623 247.18929,6.40712614 C245.44335,5.41023131 243.731115,4.36453017 241.92969,3.4761515 C240.135006,2.60023401 238.22365,1.95121394 236.282737,1.46522771 C234.339749,0.97301089 232.337648,0.720671887 230.334509,0.664596553 C228.332407,0.611117299 226.317342,0.728979344 224.346872,1.1090455 C222.376401,1.47665047 220.43808,2.0244234 218.577542,2.77728669 C216.720114,3.54209194 214.975729,4.53171774 213.234974,5.55041965 C209.746723,7.56445873 206.262102,9.57642095 202.78474,11.5842294 C195.828979,15.6003656 188.900702,19.6004061 182.026871,23.5692937 C168.27921,31.5065495 154.749857,39.3181551 141.657118,46.8779409 C115.47164,61.9969932 91.0315846,76.1082472 70.0828914,88.2033853 C28.1860236,112.393661 0.254605519,128.521031 0.254605519,128.521031 C0.254605519,128.521031 28.1689116,112.364066 70.0398522,88.1280989 C90.9755818,76.0101154 115.400081,61.8729006 141.569484,46.7252914 C154.654444,39.1514868 168.174983,31.3253431 181.913828,23.37303 C188.78351,19.3968734 195.707121,15.3890447 202.658733,11.3656395 C206.134539,9.35367726 209.616568,7.33808053 213.102745,5.32040693 C214.835722,4.30430111 216.602404,3.29857961 218.475388,2.5254669 C220.352521,1.76429616 222.307953,1.2061389 224.298128,0.836457067 C226.287785,0.454833266 228.322036,0.338009653 230.342806,0.394084987 C232.364612,0.452756401 234.384344,0.709768349 236.344962,1.20873498 C238.305062,1.70250945 240.225233,2.35568325 242.0474,3.24717722 C243.852973,4.13970962 245.57506,5.19423743 247.314778,6.18957461 C254.265872,10.2129798 261.190001,14.2208086 268.059683,18.1969651 C281.798529,26.1492783 295.319586,33.9754219 308.404547,41.5487073 C334.573949,56.6957973 358.998967,70.8335313 379.934697,82.9509956 C421.805119,107.186963 449.718906,123.344447 449.718906,123.344447 Z"></path>
  1258. </g>
  1259. </g>
  1260. </g>
  1261. </g>
  1262. </g>
  1263. <g id="people_4" transform="translate(425.725318, 114.746749)">
  1264. <g id="Group">
  1265. <path d="M69.921624,79.1409882 C69.921624,79.1409882 62.1097459,84.895979 65.9423108,89.9920846 C69.7748758,95.0881902 81.6397004,93.3005293 83.0786623,90.8955205 C84.5181428,88.4905118 79.8953155,85.7018023 84.3444303,85.7651467 C88.7935451,85.828491 95.9479083,83.4120595 95.0751973,80.3917797 C94.2030049,77.3714999 78.7934077,72.104053 69.921624,79.1409882 Z" id="Shape" fill="url(#linearGradient-14)" fill-rule="nonzero" opacity="0.5"></path>
  1266. <polygon id="Shape" fill="url(#linearGradient-15)" fill-rule="nonzero" opacity="0.5" points="49.941054 79.5605148 82.7939812 79.565707 122.505701 57.3287217 76.2177955 31.0075829 49.5702945 62.0702027"></polygon>
  1267. <g transform="translate(0.000000, 3.634512)" id="Shape">
  1268. <path d="M77.7920976,44.1105193 L54.8127828,30.8050886 C52.2548011,29.3263613 47.7865002,29.5117214 44.8323502,31.2194231 L30.445842,39.5362259 L36.134279,41.4796516 L49.5702945,58.4356903 L49.941054,75.9254832 C51.7932962,75.8709655 53.7103565,75.3984789 55.2276187,74.521523 L97.8784507,49.8655101 L98.5722638,49.4646753 C100.126861,48.5669507 100.713854,47.5492873 100.713854,45.7527997 L100.713854,29.0210623 L77.7920976,44.1105193 Z" fill="url(#linearGradient-16)" fill-rule="nonzero"></path>
  1269. <path d="M25.0550498,42.6525606 L0.500395775,29.3061119 L0.129636211,47.5560371 C0.219863014,48.4054745 0.777817267,49.2071441 1.8361673,49.8187806 L45.2477046,74.9363766 C46.4916937,75.6554908 48.1878539,75.977924 49.9415726,75.9260024 L49.570813,58.4362095 L25.0550498,42.6525606 Z" fill="url(#linearGradient-17)" fill-rule="nonzero"></path>
  1270. <path d="M45.6386874,57.4455453 L2.22715011,32.3284686 C-0.330831611,30.8497412 -0.0103708969,28.2666413 2.94377908,26.5589397 L45.5946111,1.90292685 C48.5482426,0.195225237 53.017062,0.00986510508 55.5750438,1.48859243 L98.9865811,26.6056692 C101.544563,28.0843965 101.224102,30.6674964 98.2699521,32.375198 L55.6191201,57.0312109 C52.6654886,58.7389125 48.1971877,58.9242726 45.6386874,57.4455453 Z" fill="url(#linearGradient-18)" fill-rule="nonzero"></path>
  1271. <path d="M46.4325796,52.9756143 L9.95709811,31.8715584 C7.80772973,30.6290744 8.07737305,28.4587513 10.5591287,27.0236381 L46.3952444,6.30691744 C48.877,4.87232348 52.6317832,4.71655866 54.7811516,5.95904268 L91.2566331,27.0630985 C93.4060015,28.3055825 93.1363581,30.4759057 90.6546025,31.9110188 L54.8184868,52.6277395 C52.3367312,54.0623335 48.581948,54.2180983 46.4325796,52.9756143 Z" stroke="#FFFFFF" stroke-width="0.6" opacity="0.3"></path>
  1272. </g>
  1273. <polygon id="Shape" fill="url(#linearGradient-19)" fill-rule="nonzero" points="100.713335 39.9386183 92.1091208 45.212815 92.1091208 46.8675566 100.713335 41.5933599"></polygon>
  1274. <polygon id="Shape" fill="url(#linearGradient-20)" fill-rule="nonzero" points="100.713335 43.8426038 92.1091208 49.1168005 92.1091208 50.7715421 100.713335 45.4973454"></polygon>
  1275. <g transform="translate(48.743215, 0.000000)" id="Shape">
  1276. <path d="M37.0469179,83.0844342 C37.0469179,83.0844342 37.0676597,84.2843425 35.9434545,84.5434313 C34.7943591,84.8082315 30.7673398,83.5963812 29.4559399,82.4052996 C28.1440215,81.2142179 28.8456126,79.6814921 28.8456126,79.6814921 L37.0469179,83.0844342 Z" fill="url(#linearGradient-21)" fill-rule="nonzero"></path>
  1277. <path d="M29.7935126,77.7629888 C29.7935126,77.7629888 32.1886712,76.9473004 32.4676484,78.1513624 C32.8104065,79.6321666 35.5125437,80.9577252 36.7777931,82.4052996 C37.845477,83.627015 35.5882513,84.4821638 33.7271938,83.7189162 C32.145632,83.0698961 28.6314536,82.077155 28.7849429,80.1757858 C28.9384322,78.2744166 29.7935126,77.7629888 29.7935126,77.7629888 Z" fill="#030074" fill-rule="nonzero"></path>
  1278. <path d="M22.8631608,88.4832427 C22.8631608,88.4832427 22.8839026,89.6836703 21.7596973,89.9422398 C20.610602,90.20704 16.5835827,88.9951898 15.2721828,87.8041081 C13.9602643,86.6130265 14.6618555,85.0803007 14.6618555,85.0803007 L22.8631608,88.4832427 Z" fill="url(#linearGradient-22)" fill-rule="nonzero"></path>
  1279. <path d="M15.6097555,83.1617974 C15.6097555,83.1617974 18.182775,82.1301151 18.4617521,83.3341771 C18.8045103,84.8149813 21.3287866,86.3565338 22.594036,87.8041081 C23.6617198,89.0258235 21.4044941,89.8809724 19.5434367,89.1177248 C17.9618749,88.4687047 14.4476965,87.4759636 14.6011857,85.5745944 C14.754675,83.672706 15.6097555,83.1617974 15.6097555,83.1617974 Z" fill="#030074" fill-rule="nonzero"></path>
  1280. <path d="M14.8589025,54.3826898 C14.8589025,54.3826898 15.4324131,56.0691035 15.7632447,58.6542803 C16.0940764,61.2399762 15.0958775,82.5724871 15.7632447,83.58392 C16.430612,84.5958721 17.5221489,84.6291019 18.2507044,83.9546403 C18.9787413,83.2801786 21.7825133,57.1926871 21.6326538,55.8437638 C21.4827944,54.4948404 22.1600139,52.696276 19.4075779,51.4595034 C16.6551419,50.2232499 14.8589025,51.9096637 14.8589025,54.3826898 Z" fill="#FFDCDF" fill-rule="nonzero"></path>
  1281. <path d="M24.2113774,48.9729777 C24.2113774,48.9729777 24.784888,50.6588722 25.1157196,53.2445682 C25.4465512,55.8297449 29.2231133,77.7588351 29.8904805,78.7707872 C30.5578477,79.7827393 31.8111706,79.4597869 32.1824487,78.8439966 C32.694771,77.9935207 31.1344696,51.782975 30.9846101,50.4340517 C30.8347507,49.0851283 31.5119702,47.2865639 28.7595342,46.0497913 C26.0070982,44.8130186 24.2113774,46.4999516 24.2113774,48.9729777 Z" fill="#FFDCDF" fill-rule="nonzero"></path>
  1282. <path d="M1.05005331,39.5045537 C1.05005331,39.5045537 1.38918164,45.5897659 4.86913609,48.4002824 C8.34909055,51.2107989 13.6237287,53.0342857 14.8589025,54.383209 C16.0935578,55.7321323 18.7884354,55.7669198 21.2582645,53.3889102 C23.7280936,51.0109007 24.8507431,50.2242884 28.3312161,49.2123363 C31.8116891,48.2009034 31.2941814,46.0664062 29.8344777,44.4926623 C28.3752925,42.9189185 17.6118571,36.2350502 16.6292146,35.4313037 C15.6465722,34.6275573 17.3883643,35.5891454 16.6292146,35.4313037 C15.8695464,35.2729428 0.825523393,32.6072876 1.05005331,39.5045537 Z" fill="url(#linearGradient-23)" fill-rule="nonzero"></path>
  1283. <path d="M19.4075779,51.4600226 C16.6556604,50.2237692 14.8594211,51.9096637 14.8594211,54.3826898 C14.8594211,54.3826898 15.4329317,56.0691035 15.7637633,58.6542803"></path>
  1284. <path d="M17.3982166,12.3469578 C17.3982166,12.3469578 20.3585892,16.3999584 22.3119476,23.0500776 C24.265306,29.7001969 21.65184,30.313391 20.2201377,30.3050836 C18.7884354,30.2967761 20.079612,27.7417139 20.079612,27.7417139 L18.2507044,23.0500776 L17.3982166,12.3469578 Z" fill="#FFDCDF" fill-rule="nonzero"></path>
  1285. <path d="M1.9009854,20.1518136 C1.9009854,20.1518136 0.208455028,27.066733 0.264457871,33.3617085 C0.320460714,39.656684 1.05057186,41.1182772 3.1833468,39.0382977 C5.31612175,36.9583181 12.2770677,37.1836579 15.3639652,36.4531209 C18.4513812,35.7225839 15.6792405,31.2926325 16.4845406,26.8278936 C17.0881268,23.4799885 19.5423996,22.4150764 19.9473831,20.244234 C20.3907389,17.8677822 18.7324325,12.5629517 17.1363515,12.3469578 C16.2833452,12.2311726 3.05734041,13.7908977 1.9009854,20.1518136 Z" fill="url(#linearGradient-24)" fill-rule="nonzero"></path>
  1286. <path d="M21.6326538,7.88221896 C21.6326538,7.88221896 19.7695222,13.8952601 16.3263844,12.3962834 C16.3263844,12.3962834 16.240306,14.1735599 16.1832661,14.9726334 C16.1117069,15.9747204 14.7116358,16.2556163 13.6377294,15.9311063 C11.5132512,15.288836 11.3224267,14.1958862 11.6594808,12.9030382 C11.996535,11.6101902 13.8487772,8.63144773 15.9255493,6.04575176 C18.0023214,3.46057502 21.6326538,7.88221896 21.6326538,7.88221896 Z" fill="#FFDCDF" fill-rule="nonzero"></path>
  1287. <path d="M3.84138021,25.0947505 C3.84138021,25.0947505 4.19347216,35.1602729 7.00035541,35.4977634 C9.80672011,35.8347346 17.9463185,30.9966794 18.7884354,30.2962569 C19.6305522,29.5958344 20.5846747,28.5283262 20.079612,27.7411947 C19.5745494,26.9540631 17.1047203,29.090118 14.6348912,29.8772495 C12.1650621,30.6643811 9.02164321,32.1254551 8.74111045,30.6077865 C8.46057769,29.090118 9.02164321,25.0947505 9.02164321,25.0947505 L3.84138021,25.0947505 L3.84138021,25.0947505 Z" fill="#FFDCDF" fill-rule="nonzero"></path>
  1288. <path d="M24.6822161,4.52860245 C24.7838509,4.85518935 24.7942218,8.40662717 22.5489226,8.12573129 C20.3036234,7.8448354 20.640159,8.35055184 19.9670878,7.5634203 C19.293498,6.77628876 19.5740308,7.16985453 18.2828541,7.33859974 C16.9916775,7.50734496 17.3318429,6.49539287 16.6286961,7.50734496 C15.9255493,8.51877784 16.599139,10.9923231 14.9714268,11.3853697 C13.3437145,11.7789355 11.6594808,12.4533971 11.8840108,16.5001671 C12.1085407,20.546937 14.0173042,25.5490645 9.18965174,25.9426303 C4.36251778,26.336196 1.44362885,24.9872727 1.94869153,19.3667589 C2.45375421,13.7462451 6.55129557,12.3412465 8.123005,10.0930409 C9.69471442,7.8448354 9.93220796,4.19163123 13.349937,1.6620106 C16.7676661,-0.867090815 23.3350366,0.200417398 24.6822161,4.52860245 Z" fill="url(#linearGradient-25)" fill-rule="nonzero"></path>
  1289. <path d="M18.6489468,27.9301893 C18.6489468,27.9301893 19.4905451,24.0765678 19.7539659,23.8782272 C20.0173866,23.6798867 23.0150944,22.1476801 23.2785152,22.2141398 C23.5424545,22.2800802 22.2725382,27.7879241 21.975412,28.1508562 C21.6793229,28.5137882 17.6797865,30.3840044 18.6489468,27.9301893 Z" fill="url(#linearGradient-26)" fill-rule="nonzero"></path>
  1290. </g>
  1291. </g>
  1292. </g>
  1293. <g id="people_3" transform="translate(136.895839, 74.767112)">
  1294. <g id="Group">
  1295. <path d="M5.42501617,90.1904251 C5.42501617,90.1904251 -2.38686192,95.9448967 1.44570303,101.041521 C5.27774943,106.138146 17.1430926,104.349966 18.5820545,101.944957 C20.021535,99.5399487 15.3987077,96.7512392 19.8478225,96.8145836 C24.2969373,96.8779279 31.4513005,94.4614964 30.5785895,91.4412166 C29.7058785,88.4209368 14.2967999,83.1529707 5.42501617,90.1904251 Z" id="Shape" fill="url(#linearGradient-27)" fill-rule="nonzero" opacity="0.5"></path>
  1296. <path d="M14.4746608,88.092273 C14.4746608,88.092273 13.6283956,88.7163707 13.5594292,89.4032936 C13.4904627,90.0902164 13.3229727,93.4531788 13.5988386,93.7288826 C13.5988386,93.7288826 13.7435126,93.9578568 14.0764184,93.6935759 C14.3310239,93.4910816 13.8005525,91.5772512 14.1796088,91.8186867 C14.5586651,92.0601221 15.0756543,94.1307558 15.6268674,94.9241179 C16.1780806,95.71748 18.9004411,96.4376327 20.1065764,96.6100124 C21.3127117,96.7823922 21.8986673,96.5757442 21.553835,95.7475946 C21.2090027,94.919445 18.946073,91.982759 18.5099768,90.7719471 C18.0889184,89.6031918 16.8371511,86.8155208 14.4746608,88.092273 Z" id="Shape" fill="url(#linearGradient-28)" fill-rule="nonzero"></path>
  1297. <path d="M7.23473768,91.8732044 C7.23473768,91.8732044 6.38847249,92.4973021 6.31950603,93.1842249 C6.25053956,93.8711477 6.08304958,97.2341101 6.35891543,97.5098139 C6.35891543,97.5098139 6.50358945,97.7387882 6.83649524,97.4745072 C7.09110075,97.2720129 6.56062938,95.3581825 6.93968566,95.599618 C7.31874194,95.8410535 7.83573115,97.9116871 8.38694432,98.7050492 C8.93815749,99.4989306 11.6605179,100.218564 12.8666532,100.390944 C14.0727885,100.563324 14.6587442,100.356676 14.3139119,99.5285259 C13.9690796,98.7003763 11.7061499,95.7636903 11.2700537,94.5528784 C10.8489952,93.3846423 9.59670945,90.5964521 7.23473768,91.8732044 Z" id="Shape" fill="url(#linearGradient-29)" fill-rule="nonzero"></path>
  1298. <path d="M16.5597296,55.7394013 C16.5597296,55.7394013 13.9934512,88.1125225 14.1313841,89.6307102 C14.2174626,90.5798372 17.1290919,92.8280427 18.3927856,92.3451718 C18.9652592,92.1260626 17.4853322,89.8929143 17.5776332,89.3544873 C18.3813777,84.6618126 22.4192864,58.2892714 22.0765282,57.5992332 C21.7332515,56.9091951 16.5597296,55.7394013 16.5597296,55.7394013 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1299. <path d="M8.69755268,62.8848527 C8.69755268,62.8848527 7.11184255,91.1483787 7.24977548,92.6665665 C7.32029758,93.4443522 8.75459262,96.0824889 10.5352756,95.9791649 C11.2462006,95.9708575 10.6156501,93.4370831 10.4481601,92.7698905 C12.4855228,78.2095146 15.5169359,63.6818494 15.1741778,62.991292 C14.8314197,62.3017731 8.69755268,62.8848527 8.69755268,62.8848527 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1300. <path d="M7.4893432,45.3249657 C7.4893432,45.3249657 4.88002554,49.5918832 5.70710456,53.5976351 C6.53418359,57.603387 5.26841562,66.6263236 7.23473768,67.3163617 C9.20105973,68.0063999 18.5198291,69.4820119 22.7807121,65.2031524 C22.7807121,65.2031524 24.9694899,48.4548001 24.1911541,42.0741539 C23.4122997,35.6945462 7.4893432,45.3249657 7.4893432,45.3249657 Z" id="Shape" fill="url(#linearGradient-30)" fill-rule="nonzero"></path>
  1301. <path d="M23.7773553,16.8002739 C23.7773553,16.8002739 24.2404159,25.2167662 24.8751148,26.5968425 C25.5098136,27.9769188 31.6587184,27.0527142 32.3022326,27.9727651 C32.9457467,28.8928159 32.7616633,29.9971885 31.9345843,30.0890897 C31.1075052,30.1809909 21.0202524,31.8907694 20.8434286,28.578171 C20.6666048,25.2655725 20.2709551,18.8241781 23.7773553,16.8002739 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1302. <path d="M31.6296799,27.6591586 C31.6296799,27.6591586 32.7502553,27.6321593 33.3388037,27.0880209 C33.9273521,26.5438825 34.4272293,26.1124139 34.7129476,26.4940377 C34.9986658,26.8756615 34.1409926,27.1544805 34.0932865,27.6591586 C34.0455803,28.1638366 34.8270274,27.7541751 35.8381899,27.4540682 C36.8032018,27.1679802 36.5646712,29.0163893 35.9455287,29.4935489 C35.3258676,29.9707084 33.1583501,29.9224213 31.9340657,30.0890897 C30.7097814,30.2557581 31.6296799,27.6591586 31.6296799,27.6591586 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1303. <path d="M24.6879201,3.20148621 C24.6879201,3.20148621 24.3358281,10.0598111 24.6879201,12.2960747 C25.040012,14.5323382 27.5663625,19.7862855 25.4932202,21.2136104 C23.4200779,22.6404162 18.1397358,23.9763591 16.893154,21.5573315 C15.6465722,19.1377846 14.610001,4.6080425 17.5252601,2.46783392 C20.4405192,0.327106116 24.6879201,3.20148621 24.6879201,3.20148621 Z" id="Shape" fill="url(#linearGradient-31)" fill-rule="nonzero"></path>
  1304. <path d="M19.0466707,14.9549801 C19.0466707,14.9549801 21.3889378,15.2478179 23.0560594,17.7203248 C24.4478338,19.7847278 25.7597523,23.7998256 24.2367861,27.9587462 C22.3943962,32.9915075 24.8248159,38.8991477 24.1906356,42.0746732 C23.5564552,45.2501986 9.98509953,49.0056883 7.4893432,45.3249657 C6.44032697,43.778221 8.80074311,39.4339403 7.14191815,31.3886875 C5.29537996,22.4327297 6.16186839,17.0193831 19.0466707,14.9549801 Z" id="Shape" fill="url(#linearGradient-32)" fill-rule="nonzero"></path>
  1305. <path d="M19.090747,13.0016893 L19.090747,16.608164 C19.090747,16.608164 22.6215189,20.1107955 21.4122723,20.5002076 C13.4749063,23.0547506 16.3969065,17.0354788 15.7762084,16.608164 C14.7396372,15.8947611 15.3966335,10.7124657 15.3966335,10.7124657 L19.090747,13.0016893 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1306. <path d="M23.3215544,2.27883927 C23.3215544,2.27883927 24.94097,17.0739008 17.8581659,13.9207017 C10.7753619,10.7669834 16.0660749,5.7300684 16.5841012,3.82766077 C17.1021275,1.92525314 21.5942815,2.28714673 23.3215544,2.27883927 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1307. <path d="M5.04699698,35.1607921 C6.60781696,37.1810618 11.9109751,38.1852257 22.0723799,37.7812756 C22.9393868,37.7470073 23.9375857,35.2376361 22.4929197,35.1524847 C20.9730648,35.0626603 17.7140104,35.9956916 9.97991409,33.1000236 C8.77740859,32.6498633 13.9815247,17.4752548 13.9815247,17.4752548 C13.9815247,17.4752548 7.22281115,13.4347155 6.11312518,18.3844021 C5.00343921,23.3340888 3.48617699,33.1405225 5.04699698,35.1607921 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1308. <path d="M23.4812662,1.17238986 C24.588878,1.4776889 26.3275589,2.41695074 25.7037494,4.28353247 C24.5266526,7.80849028 21.4589413,6.14596046 18.1796637,7.41025156 C16.5457289,8.04006064 16.9631575,8.99178367 16.2024522,11.3703124 C15.5610123,13.3760441 15.2996656,15.0370162 16.4005364,16.8698489 C17.8498692,19.2831651 19.6238111,18.5609356 20.2979194,24.0978556 C20.8434286,28.578171 16.661883,31.418802 12.3429229,31.5922202 C8.02396293,31.7651191 2.37286121,28.5958243 4.59223315,21.5573315 C6.30861658,16.1138703 8.57828737,15.7301697 9.26950765,10.7124657 C9.96072793,5.69476171 10.7971408,-2.32245342 23.4812662,1.17238986 Z" id="Shape" fill="url(#linearGradient-33)" fill-rule="nonzero"></path>
  1309. <path d="M22.1760888,35.2802118 C22.1760888,35.2802118 24.4167211,34.386641 24.7413302,34.1452055 C25.0654207,33.9037701 25.4792195,34.3830065 25.3755105,34.7127087 C25.2723201,35.0424109 24.2041177,35.0699293 24.3762746,35.2802118 C24.547913,35.4910136 25.8442751,35.3570558 26.4784554,35.2802118 C27.1126358,35.2033679 26.9954446,36.3534314 26.4784554,37.3196925 C25.9614662,38.2859536 24.4898359,38.3119144 22.0723799,37.7812756 L22.1760888,35.2802118 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1310. <path d="M41.1382367,34.677402 L22.050601,45.369099 C21.4537559,45.7034742 21.1213686,45.3244465 21.3090819,44.5227769 L24.2373046,31.9935742 C24.4244993,31.1919046 25.0607538,30.2708153 25.6575989,29.9364402 L44.7452347,19.2447431 C45.3420798,18.910368 45.674467,19.2893957 45.4867538,20.0910653 L42.5585311,32.620268 C42.3713364,33.4219376 41.7350818,34.3430269 41.1382367,34.677402 Z" id="Shape" fill="url(#linearGradient-34)" fill-rule="nonzero" opacity="0.8"></path>
  1311. <path d="M42.7177243,22.8922359 L36.487408,26.3486572" id="Shape" stroke="#FFFFFF" stroke-width="0.6" stroke-linecap="round"></path>
  1312. <path d="M42.4081531,25.708983 L35.6624032,29.4509732" id="Shape" stroke="#261B88" stroke-width="0.6" stroke-linecap="round"></path>
  1313. <path d="M34.625832,30.0086112 L28.3955157,33.4650325" id="Shape" stroke="#FFFFFF" stroke-width="0.6" stroke-linecap="round"></path>
  1314. <path d="M41.6137424,28.7500315 L37.9424448,30.7863969" id="Shape" stroke="#261B88" stroke-width="0.6" stroke-linecap="round"></path>
  1315. <path d="M37.0676597,31.3175549 L30.8373434,34.773457" id="Shape" stroke="#FFFFFF" stroke-width="0.6" stroke-linecap="round"></path>
  1316. <path d="M29.8427744,35.2786542 L26.1719954,37.3150196" id="Shape" stroke="#261B88" stroke-width="0.6" stroke-linecap="round"></path>
  1317. <path d="M40.9028174,31.59897 L36.6087475,33.980614" id="Shape" stroke="#FFFFFF" stroke-width="0.6" stroke-linecap="round"></path>
  1318. <path d="M35.8578946,34.4307744 L30.9379411,37.1602932" id="Shape" stroke="#261B88" stroke-width="0.6" stroke-linecap="round"></path>
  1319. <path d="M30.1046395,37.6275876 L27.2583469,39.2065237" id="Shape" stroke="#261B88" stroke-width="0.6" stroke-linecap="round"></path>
  1320. </g>
  1321. </g>
  1322. <g id="wire_4" transform="translate(381.649006, 164.072274)">
  1323. <g id="Group">
  1324. <path d="M0.494173237,50.6557569 L46.4699148,22.9026203 C46.9723848,22.5993981 47.2798819,22.0547404 47.2798819,21.4669879 L47.2798819,16.4508415 C47.2798819,15.9056647 47.5853048,15.4061788 48.0701442,15.1579936 L56.3876035,10.9019795 C56.7894758,10.69637 57.0425257,10.2825548 57.0425257,9.8303176 L57.0425257,3.2528886" id="Shape" stroke="#29DCC4" stroke-width="1.14260544"></path>
  1325. <polygon id="Shape" fill="url(#linearGradient-35)" fill-rule="nonzero" points="59.4558334 5.25706257 54.6281809 2.46575705 54.6281809 0.118900477 59.4558334 2.910206"></polygon>
  1326. <polygon id="Shape" fill="url(#linearGradient-36)" fill-rule="nonzero" points="66.6983492 9.09770374 61.8701782 6.30639822 61.8701782 3.95954165 66.6983492 6.75084717"></polygon>
  1327. </g>
  1328. </g>
  1329. <g id="wire_3" transform="translate(72.077733, 271.030782)" stroke="#29DCC4" stroke-width="1.14260544">
  1330. <path d="M0.347425046,26.8330858 L25.5611496,14.8241376" id="Shape"></path>
  1331. <path d="M25.5611496,14.8241376 L49.6791889,0.916935556 C51.242083,0.0155764817 53.1710699,0.0399796364 54.711148,0.979760699 L88.8770308,21.8345928 C90.5125212,22.8330453 92.5768483,22.7935849 94.1734478,21.7338649 L111.91546,9.95544867" id="Shape"></path>
  1332. </g>
  1333. <g id="wire_1" transform="translate(331.350156, 310.491202)" stroke="#29DCC4" stroke-width="1.14260544">
  1334. <g id="Group">
  1335. <path d="M32.3089737,49.1183582 L88.0836572,82.8118457" id="Shape"></path>
  1336. <path d="M32.3089737,49.1183582 L11.9000856,36.845129 C11.1217498,36.3747193 11.1274538,35.2423091 11.9104565,34.7802068 L33.9672801,21.7525567 C34.764802,21.2816277 34.752357,20.1227375 33.9455012,19.6684234 L0.303867279,0.365528104" id="Shape"></path>
  1337. </g>
  1338. </g>
  1339. <g id="wire_2" transform="translate(162.823081, 311.529634)" stroke="#29DCC4" stroke-width="1.14260544">
  1340. <g id="Group">
  1341. <path d="M60.5401106,47.258007 L76.263946,37.7521995 C77.0422818,37.2817897 77.0365778,36.1493795 76.2535751,35.6872772 L54.1967516,22.6596271 C53.3992296,22.1886982 53.4116747,21.0298079 54.2185304,20.5754939 L90.3673287,0.0259608028" id="Shape"></path>
  1342. <path d="M0.196009951,80.9509754 L60.5401106,47.258007" id="Shape"></path>
  1343. </g>
  1344. </g>
  1345. <g id="main_system" transform="translate(136.895839, 0.000000)">
  1346. <g id="Group">
  1347. <ellipse id="Oval" fill="url(#linearGradient-37)" fill-rule="nonzero" opacity="0.5" cx="130.618335" cy="268.30334" rx="130.442548" ry="54.5919338"></ellipse>
  1348. <path d="M259.679999,230.394856 C259.462728,229.67678 229.042814,197.539383 229.042814,197.539383 L200.400471,197.410098 C185.782691,193.826469 169.563646,191.814507 152.465148,191.814507 C136.044907,191.814507 120.430485,193.664993 106.270581,196.984861 L76.1384581,196.848826 C76.1384581,196.848826 43.3031615,232.758847 43.1890816,233.257294 C38.7456708,239.907413 36.3131769,247.077268 36.3131769,254.555018 C36.3131769,289.20594 88.3164838,317.295528 152.465667,317.295528 C216.614849,317.295528 268.618156,289.20594 268.618156,254.555018 C268.617119,245.992106 265.430661,237.832107 259.679999,230.394856 Z" id="Shape" fill="url(#linearGradient-38)" fill-rule="nonzero"></path>
  1349. <path d="M259.679999,230.394856 C259.462728,229.67678 229.042814,197.539383 229.042814,197.539383 L200.400471,197.410098 C185.782691,193.826469 169.563646,191.814507 152.465148,191.814507 C136.044907,191.814507 120.430485,193.664993 106.270581,196.984861 L76.1384581,196.848826 C76.1384581,196.848826 43.3031615,232.758847 43.1890816,233.257294 C38.7456708,239.907413 36.3131769,247.077268 36.3131769,254.555018 C36.3131769,289.20594 88.3164838,317.295528 152.465667,317.295528 C216.614849,317.295528 268.618156,289.20594 268.618156,254.555018 C268.617119,245.992106 265.430661,237.832107 259.679999,230.394856 Z" id="Shape" fill="url(#linearGradient-39)" fill-rule="nonzero"></path>
  1350. <ellipse id="Oval" fill="url(#linearGradient-40)" fill-rule="nonzero" cx="152.260323" cy="219.873981" rx="86.6789192" ry="48.1064061"></ellipse>
  1351. <ellipse id="Oval" fill="url(#linearGradient-41)" fill-rule="nonzero" cx="152.043571" cy="218.329833" rx="77.2543666" ry="40.1286514"></ellipse>
  1352. <path d="M152.043571,181.951479 C193.499676,181.951479 227.324875,198.913229 229.210822,220.204722 C229.265788,219.58322 229.297419,218.958084 229.297419,218.329313 C229.297419,196.167095 194.709441,178.200662 152.043053,178.200662 C109.376664,178.200662 74.7886859,196.167095 74.7886859,218.329313 C74.7886859,218.958084 74.8203171,219.582701 74.8752829,220.204722 C76.761749,198.913229 110.587466,181.951479 152.043571,181.951479 Z" id="Shape" fill="url(#linearGradient-42)" fill-rule="nonzero"></path>
  1353. <ellipse id="Oval" stroke="url(#linearGradient-43)" stroke-width="0.6" cx="152.043571" cy="218.329833" rx="77.2543666" ry="40.1286514"></ellipse>
  1354. <path d="M153.406825,276.723466 C141.051457,276.723466 129.237969,275.437368 118.37601,273.093627 L100.883937,292.023206 C116.343833,296.565827 134.27978,299.165542 153.406825,299.165542 C171.378553,299.165542 188.296078,296.869049 203.098978,292.823318 L186.151895,273.567671 C175.925154,275.609748 164.900372,276.723466 153.406825,276.723466 Z" id="Shape" fill="url(#linearGradient-44)" fill-rule="nonzero"></path>
  1355. <g transform="translate(191.861593, 261.684893)" id="Shape">
  1356. <path d="M0.406539158,10.5255479 L18.1672186,29.0646764 L18.1672186,29.0646764 C29.4294941,25.3974534 39.2310288,20.6684336 47.0304618,15.1548783 L27.6944431,0.51610076 C19.7420393,4.6563296 10.5274974,8.05771398 0.406539158,10.5255479 Z" fill="url(#linearGradient-45)" fill-rule="nonzero"></path>
  1357. <path d="M11.9576441,16.9825188 L16.9584906,22.5791487" stroke="#FFFFFF" stroke-width="1.05421824" stroke-linecap="round"></path>
  1358. <path d="M11.9576441,10.9300172 L18.8973298,17.9721446" stroke="#A6F3F1" stroke-width="1.05421824" stroke-linecap="round"></path>
  1359. <path d="M18.7837685,12.2727099 L23.8763974,17.9721446" stroke="#FFFFFF" stroke-width="1.05421824" stroke-linecap="round"></path>
  1360. <path d="M24.8756333,13.4990983 L29.5741681,18.7582377" stroke="#A6F3F1" stroke-width="1.05421824" stroke-linecap="round"></path>
  1361. <path d="M25.4133643,7.8868919 L33.1910184,15.9030686" stroke="#FFFFFF" stroke-width="1.05421824" stroke-linecap="round"></path>
  1362. <path d="M27.5357684,4.27418658 L36.2550999,11.8947206" stroke="#A6F3F1" stroke-width="1.05421824" stroke-linecap="round"></path>
  1363. </g>
  1364. <g transform="translate(66.373740, 261.165677)" id="Shape">
  1365. <path d="M19.5341029,0.0119419693 L0.375426468,14.5162425 C7.98714625,20.1232567 17.6325989,24.9576774 28.7787203,28.7365319 L46.4382836,10.3028042 C36.4257012,7.72905022 27.3382028,4.23420694 19.5341029,0.0119419693 Z" fill="url(#linearGradient-46)" fill-rule="nonzero"></path>
  1366. <g transform="translate(10.889442, 6.230593)" fill-rule="nonzero">
  1367. <path d="M4.50667325,11.7643974 C0.973827219,10.9310556 -0.728036962,7.73216552 0.712480617,4.63296487 C2.1529982,1.53376423 6.19972217,-0.309971986 9.73256819,0.523369785 C10.2381494,0.642789478 10.4808284,1.09866118 10.2744476,1.54207169 C10.0680667,1.9854822 9.49144484,2.24820553 8.98586362,2.12930505 C6.4626244,1.53428345 3.57225544,2.85101537 2.54294392,5.06443342 C1.5136324,7.27837068 2.72962006,9.56344055 5.25285928,10.1584621 C5.88496545,10.3074772 6.5481843,10.3412262 7.22436678,10.2581516 C7.7703945,10.1911728 8.22204706,10.5052985 8.23397359,10.9596125 C8.24590012,11.4139266 7.81291518,11.8365684 7.267406,11.9035473 C6.31950603,12.0198517 5.39079221,11.9731223 4.50667325,11.7643974 Z" fill="#FFFFFF"></path>
  1368. <path d="M10.0499176,10.7124657 C9.87361239,10.6709284 9.7164933,10.5842193 9.60293198,10.4544153 C9.2990647,10.107579 9.4204042,9.58265154 9.87413094,9.28150623 C10.6923947,8.73892545 11.3224267,8.02708024 11.695779,7.22333378 C12.2962539,5.93152423 12.1479501,4.54158285 11.2996107,3.5052276 C11.0087071,3.15008382 11.1471585,2.62619481 11.609182,2.33491461 C12.0712054,2.0436344 12.6815327,2.095556 12.9724364,2.45069979 C14.1599041,3.90035102 14.367322,5.84585358 13.5262423,7.65428311 C13.0030305,8.7794243 12.1204672,9.77579991 10.9739646,10.5369707 C10.6903205,10.7259653 10.3439326,10.7815214 10.0499176,10.7124657 Z" fill="url(#linearGradient-47)"></path>
  1369. </g>
  1370. <path d="M30.3753199,10.8199434 L36.7752004,13.1102054" stroke="#FFFFFF" stroke-width="1.58127552" stroke-linecap="round"></path>
  1371. <path d="M27.1753797,15.1585128 L33.5752602,17.4482556" stroke="#FFFFFF" stroke-width="1.58127552" stroke-linecap="round"></path>
  1372. <path d="M23.039466,19.926993 L29.4393465,22.2172551" stroke="#FFFFFF" stroke-width="1.58127552" stroke-linecap="round"></path>
  1373. </g>
  1374. <path d="M100.883937,292.023206 L127.57707,277.785782 C127.57707,277.785782 153.466458,282.361634 179.236063,278.064082 L203.098978,292.822799 C203.098978,292.822799 181.905013,299.36544 153.406825,299.165023 C124.908638,298.964605 100.883937,292.023206 100.883937,292.023206 Z" id="Shape" fill="url(#linearGradient-48)" fill-rule="nonzero"></path>
  1375. <path d="M127.57707,277.785782 L127.57707,274.784714 C127.57707,274.784714 151.792077,279.51581 179.231396,274.784714 L179.236581,278.064602 C179.236063,278.064082 151.114857,282.946271 127.57707,277.785782 Z" id="Shape" fill="url(#linearGradient-49)" fill-rule="nonzero"></path>
  1376. <path d="M77.3295556,267.980906 C77.3295556,267.980906 47.1720245,250.005647 57.0549707,217.782579 L52.3865115,222.928529 C52.3865115,222.928529 43.4322791,250.581976 72.5729438,271.582189 L77.3295556,267.980906 Z" id="Shape" fill="url(#linearGradient-50)" fill-rule="nonzero"></path>
  1377. <path d="M225.337292,266.577985 C225.337292,266.577985 256.238935,248.143738 246.355989,215.92067 L251.024448,221.06662 C251.024448,221.06662 259.334129,249.25486 230.193983,270.255073 L225.337292,266.577985 Z" id="Shape" fill="url(#linearGradient-51)" fill-rule="nonzero"></path>
  1378. <path d="M203.098978,258.841146 L227.04849,302.653636 C227.04849,302.653636 247.047209,294.194048 258.067324,280.71468 L221.532729,248.794835 C221.53221,248.794316 214.699345,254.261141 203.098978,258.841146 Z" id="Shape" fill="url(#linearGradient-52)" fill-rule="nonzero" opacity="0.2"></path>
  1379. <path d="M223.041694,247.648406 L260.394035,277.785782 C260.394035,277.785782 263.920658,272.272227 266.340189,266.972589 L227.035527,244.220541 C227.035527,244.220541 224.871639,246.270925 223.041694,247.648406 Z" id="Shape" fill="url(#linearGradient-53)" fill-rule="nonzero" opacity="0.2"></path>
  1380. <path d="M104.726354,260.108553 L69.4896761,298.459408 C69.4896761,298.459408 60.0132691,292.846683 56.7485107,290.108337 L99.0462137,257.910711 C99.0456952,257.910711 102.430756,259.241462 104.726354,260.108553 Z" id="Shape" fill="url(#linearGradient-54)" fill-rule="nonzero" opacity="0.2"></path>
  1381. <g transform="translate(141.044198, 123.573421)" fill-rule="nonzero" id="Shape">
  1382. <polygon fill="url(#linearGradient-55)" points="15.6346456 17.5972706 0.403946434 8.79292392 15.5392334 0.0430949327 30.7699326 8.84796082"></polygon>
  1383. <polygon fill="url(#linearGradient-56)" points="15.6071627 77.705875 0.376463557 68.9290468 0.403946434 8.79292392 15.6071627 17.5972706"></polygon>
  1384. <polygon fill="url(#linearGradient-57)" points="15.5869395 77.705875 30.8171201 68.9290468 30.7896373 8.79292392 15.5869395 17.5972706"></polygon>
  1385. </g>
  1386. <g transform="translate(90.745348, 161.995410)" fill-rule="nonzero" id="Shape">
  1387. <polygon fill="url(#linearGradient-58)" points="15.5687904 18.0069321 0.338091239 9.20206617 15.4733782 0.452756401 30.7040774 9.25710307"></polygon>
  1388. <polygon fill="url(#linearGradient-59)" points="15.5511599 67.4305893 0.320979259 58.6532418 0.338091239 9.20206617 15.5413075 18.0069321"></polygon>
  1389. <polygon fill="url(#linearGradient-60)" points="15.5309367 67.4305893 30.7616358 58.6532418 30.7243006 9.20206617 15.5210843 18.0069321"></polygon>
  1390. </g>
  1391. <g transform="translate(130.154756, 154.207169)" fill-rule="nonzero" id="Shape">
  1392. <polygon fill="url(#linearGradient-61)" points="15.6942783 17.8548018 0.463579091 9.04993587 15.5993846 0.300106881 30.8295652 9.10497277"></polygon>
  1393. <polygon fill="url(#linearGradient-62)" points="15.6564245 101.032695 0.426243863 92.2553474 0.463579091 9.04993587 15.6667954 17.8548018"></polygon>
  1394. <polygon fill="url(#linearGradient-63)" points="15.6367198 101.032695 30.8669004 92.2553474 30.8497885 9.04993587 15.6465722 17.8548018"></polygon>
  1395. </g>
  1396. <g transform="translate(182.527785, 165.629922)" fill-rule="nonzero" id="Shape">
  1397. <polygon fill="url(#linearGradient-64)" points="15.5371592 17.9700677 0.306460003 9.16572105 15.4422655 0.415892061 30.6724461 9.22075795"></polygon>
  1398. <polygon fill="url(#linearGradient-65)" points="15.5096763 78.0786722 0.279495671 69.3018439 0.306460003 9.16572105 15.5096763 17.9700677"></polygon>
  1399. <polygon fill="url(#linearGradient-66)" points="15.4894531 78.0786722 30.7201522 69.3018439 30.6926694 9.16572105 15.4894531 17.9700677"></polygon>
  1400. </g>
  1401. <path d="M230.582892,0.393565771 L73.6546283,4.01457855 L74.8742458,217.49026 C74.8203171,218.105012 74.7892044,218.722879 74.7892044,219.344381 C74.7892044,241.506599 109.377183,259.473032 152.043571,259.473032 C194.709959,259.473032 229.297938,241.506599 229.297938,219.344381 C229.297938,218.722879 229.266825,218.105012 229.212896,217.49026 L230.582892,0.393565771 Z" id="Shape" fill="url(#linearGradient-67)" fill-rule="nonzero" opacity="0.4"></path>
  1402. <ellipse id="XMLID_58_" stroke="url(#linearGradient-68)" stroke-width="0.7242048" opacity="0.6" cx="153.545795" cy="205.411218" rx="81.5333987" ry="42.872189"></ellipse>
  1403. <ellipse id="XMLID_57_" stroke="url(#linearGradient-69)" stroke-width="0.7242048" opacity="0.3" cx="153.737139" cy="188.344586" rx="81.5333987" ry="42.872189"></ellipse>
  1404. <ellipse id="XMLID_56_" fill="#F769B7" fill-rule="nonzero" cx="210.238822" cy="230.742731" rx="1.54059673" ry="1.5425909"></ellipse>
  1405. <ellipse id="XMLID_55_" fill="#FFE28F" fill-rule="nonzero" cx="160.823054" cy="251.55291" rx="2.09025427" ry="2.09295992"></ellipse>
  1406. <ellipse id="XMLID_54_" fill="#D8F6FB" fill-rule="nonzero" cx="103.328357" cy="218.648112" rx="2.09025427" ry="2.09295992"></ellipse>
  1407. <ellipse id="XMLID_53_" fill="#FFE28F" fill-rule="nonzero" cx="207.15711" cy="149.011374" rx="1.54059673" ry="1.5425909"></ellipse>
  1408. <ellipse id="XMLID_52_" fill="url(#linearGradient-70)" fill-rule="nonzero" cx="188.07103" cy="141.183153" rx="2.09077281" ry="2.09347914"></ellipse>
  1409. <ellipse id="XMLID_51_" fill="url(#linearGradient-71)" fill-rule="nonzero" cx="193.032467" cy="93.5933672" rx="1.54007819" ry="1.54207169"></ellipse>
  1410. <ellipse id="XMLID_50_" fill="#FFE28F" fill-rule="nonzero" cx="124.924194" cy="103.365013" rx="1.10864888" ry="1.12358355"></ellipse>
  1411. <ellipse id="XMLID_49_" fill="url(#linearGradient-72)" fill-rule="nonzero" cx="103.328357" cy="102.241949" rx="1.94506171" ry="1.94757943"></ellipse>
  1412. <ellipse id="XMLID_48_" fill="#FFE28F" fill-rule="nonzero" cx="75.0287722" cy="99.1977853" rx="1.54059673" ry="1.5425909"></ellipse>
  1413. <ellipse id="XMLID_47_" fill="#D8F6FB" fill-rule="nonzero" cx="238.071716" cy="51.0742451" rx="1.23932218" ry="1.24092638"></ellipse>
  1414. <ellipse id="XMLID_46_" fill="#FFE28F" fill-rule="nonzero" cx="205.854525" cy="51.9693735" rx="1" ry="1"></ellipse>
  1415. <ellipse id="XMLID_45_" fill="#FFE28F" fill-rule="nonzero" cx="160.823054" cy="60.6008213" rx="1.2476189" ry="1.24923383"></ellipse>
  1416. <ellipse id="XMLID_44_" fill="#D8F6FB" fill-rule="nonzero" cx="127.798488" cy="35.67222" rx="1.2175433" ry="1.2191193"></ellipse>
  1417. <ellipse id="XMLID_43_" fill="#FFE28F" fill-rule="nonzero" cx="85.069356" cy="40.5767348" rx="1.54059673" ry="1.5425909"></ellipse>
  1418. <path d="M135.625923,181.305055 L135.625923,219.461724" id="XMLID_42_" stroke="url(#linearGradient-73)" stroke-width="0.6" stroke-linecap="round" stroke-linejoin="round"></path>
  1419. <path d="M207.15711,154.455873 L207.15711,211.451778" id="XMLID_41_" stroke="url(#linearGradient-74)" stroke-width="1.27728576" stroke-linecap="round" stroke-linejoin="round"></path>
  1420. <path d="M188.07103,151.357711 L188.07103,189.51438" id="XMLID_40_" stroke="url(#linearGradient-75)" stroke-width="0.6" stroke-linecap="round" stroke-linejoin="round"></path>
  1421. <path d="M157.934759,122.105078 L157.934759,160.261228" id="XMLID_39_" stroke="url(#linearGradient-76)" stroke-width="1.27728576" stroke-linecap="round" stroke-linejoin="round"></path>
  1422. <path d="M103.328357,112.491274 C102.975747,112.491274 102.690028,112.777881 102.690028,113.130948 L102.690028,170.436305 C102.690028,170.789372 102.975747,171.07546 103.328357,171.07546 C103.680968,171.07546 103.967204,170.789372 103.967204,170.436305 L103.967204,113.130948 C103.967723,112.777881 103.680968,112.491274 103.328357,112.491274" id="Shape" fill="url(#linearGradient-77)" fill-rule="nonzero"></path>
  1423. <path d="M77.183326,129.933818 L77.183326,168.089449" id="XMLID_38_" stroke="url(#linearGradient-78)" stroke-width="0.63861696" stroke-linecap="round" stroke-linejoin="round"></path>
  1424. <path d="M230.886241,74.7125945 L230.886241,132.017432" id="XMLID_37_" stroke="url(#linearGradient-80)" stroke-width="0.63861696" fill="url(#linearGradient-79)" fill-rule="nonzero" stroke-linecap="round" stroke-linejoin="round"></path>
  1425. <path d="M135.625923,59.3521067 L135.625923,97.5082562" id="XMLID_36_" stroke="url(#linearGradient-81)" stroke-width="0.6" stroke-linecap="round" stroke-linejoin="round"></path>
  1426. <path d="M182.033094,34.1960887 L182.033094,72.3522383" id="XMLID_33_" stroke="url(#linearGradient-82)" stroke-width="0.6" stroke-linecap="round" stroke-linejoin="round"></path>
  1427. <path d="M118.590687,187.147274 C118.590687,189.847717 120.38589,192.22313 122.987429,192.935494 C129.480648,194.712771 142.577535,197.645303 158.294629,197.645303 C174.539084,197.645303 187.278693,194.767808 193.609607,192.986378 C196.203369,192.25636 197.998571,189.898081 197.998571,187.200234 L197.998571,147.080409 C197.998571,145.431898 196.393156,144.255355 194.827669,144.765225 C188.7161,146.75538 174.470117,150.712326 158.294629,150.528523 C142.096844,150.344201 127.834268,146.561193 121.736699,144.6889 C120.172768,144.208625 118.591206,145.374265 118.591206,147.011873 L118.591206,187.147274 L118.590687,187.147274 Z" id="Shape" fill="url(#linearGradient-83)" fill-rule="nonzero" opacity="0.8"></path>
  1428. <path d="M232.310165,118.870882 C232.310165,118.870882 233.917135,98.872756 205.359833,88.2423265 C203.93228,87.7106492 202.409832,88.7838688 202.409832,90.3093256 L202.409832,132.492515 C202.409832,133.421912 202.987491,134.251619 203.863313,134.560552 C208.876605,136.329002 225.511523,143.315054 232.326758,160.098713 L232.310165,118.870882 Z" id="Shape" fill="url(#linearGradient-84)" fill-rule="nonzero" opacity="0.8"></path>
  1429. <path d="M202.409832,147.526935 L202.409832,187.241771 C202.409832,189.06422 204.277112,190.284897 205.941122,189.546571 C213.769594,186.074574 231.925923,176.794625 232.310165,165.251933 C232.80019,150.528004 232.310165,118.870882 232.310165,118.870882 C232.310165,118.870882 226.270154,137.446355 206.500114,142.377869 C204.115326,142.972891 202.409832,145.06637 202.409832,147.526935 Z" id="Shape" fill="url(#linearGradient-85)" fill-rule="nonzero" opacity="0.8"></path>
  1430. <path d="M165.049194,197.477077 L165.049194,235.633227" id="XMLID_27_" stroke="url(#linearGradient-86)" stroke-width="1.27728576" stroke-linecap="round" stroke-linejoin="round"></path>
  1431. </g>
  1432. </g>
  1433. <g id="control_1" transform="translate(0.000000, 224.820553)">
  1434. <g id="Group">
  1435. <g transform="translate(0.000000, 46.210229)" id="Shape">
  1436. <polygon fill="url(#linearGradient-87)" fill-rule="nonzero" opacity="0.5" points="50.1069884 75.711047 82.9604341 75.7162391 132.894228 48.2268642 84.2344988 19.9290699 49.7362288 58.2207349"></polygon>
  1437. <path d="M77.9372902,43.95112 L54.9579754,30.6456893 C52.3999937,29.166962 47.9316927,29.3523221 44.9775428,31.0600237 L30.5910346,39.3768265 L36.2794715,41.3202522 L49.715487,58.276291 L50.0862466,75.7660839 C51.9390073,75.7115662 53.855549,75.2390796 55.3728113,74.3621236 L98.0236433,49.7061108 L98.7174563,49.305276 C100.272054,48.4075514 101.229806,46.7470984 101.229806,44.9500917 L100.859047,28.8611437 L77.9372902,43.95112 Z" fill="url(#linearGradient-88)" fill-rule="nonzero"></path>
  1438. <path d="M25.2007609,42.4926421 L0.646106877,29.1461933 L0.275347313,47.3961185 C0.365574116,48.245556 0.923528369,49.0472256 1.9818784,49.6588621 L45.3934157,74.7759388 C46.6374048,75.4950531 48.333565,75.8174862 50.0872837,75.7655646 L49.7165241,58.2757718 L25.2007609,42.4926421 Z" fill="url(#linearGradient-89)" fill-rule="nonzero"></path>
  1439. <path d="M45.7843985,57.286146 L2.37286121,32.16855 C-0.18512051,30.6898227 0.135340205,28.1067228 3.08949019,26.3990212 L45.7403222,1.7430083 C48.6939537,0.0353066919 53.1627731,-0.15005344 55.7207549,1.32867389 L99.1322922,26.4462698 C101.690274,27.9249972 101.369813,30.5080971 98.4156632,32.2157987 L55.7648312,56.8718116 C52.8106812,58.5795132 48.3423803,58.7648733 45.7843985,57.286146 Z" fill="url(#linearGradient-90)" fill-rule="nonzero"></path>
  1440. <path d="M46.2661267,54.5737613 L7.06309933,31.8912886 C4.75298205,30.5558649 5.04284862,28.2230272 7.7102433,26.6809555 L46.2267173,4.41489413 C48.894112,2.87282244 52.929428,2.70511566 55.2395452,4.04105857 L94.4425726,26.7235312 C96.7526899,28.0589549 96.4628233,30.3917927 93.7954286,31.9338643 L55.2789546,54.1999257 C52.6110414,55.7419974 48.576244,55.909185 46.2661267,54.5737613 Z" stroke="#FFFFFF" stroke-width="0.6" opacity="0.3"></path>
  1441. </g>
  1442. <path d="M44.5061855,53.7134203 L88.879105,79.3652896 C89.1191912,79.5039202 89.4147618,79.5039202 89.6548481,79.3652896 L89.6548481,79.3652896 C90.1718373,79.0662211 90.1718373,78.3190692 89.6548481,78.02052 L45.2819286,52.3686507 C45.0418423,52.23002 44.7462718,52.23002 44.5061855,52.3686507 L44.5061855,52.3686507 C43.9891963,52.6677191 43.9891963,53.414871 44.5061855,53.7134203 Z" id="Shape" fill="url(#linearGradient-91)" fill-rule="nonzero" opacity="0.8"></path>
  1443. <polygon id="Shape" fill="url(#linearGradient-92)" fill-rule="nonzero" points="101.09654 82.6602347 92.4918069 87.9344314 92.4918069 89.5891729 101.09654 84.3149762"></polygon>
  1444. <polygon id="Shape" fill="url(#linearGradient-93)" fill-rule="nonzero" points="101.09654 86.5642202 92.4918069 91.8384169 92.4918069 93.4931585 101.09654 88.2189618"></polygon>
  1445. <g transform="translate(39.927953, 0.000000)">
  1446. <g fill-rule="nonzero" id="Shape">
  1447. <path d="M2.15610947,42.470835 L52.0753846,71.3683239 C52.9952832,71.9000011 53.7414692,71.3356132 53.7414692,70.1071481 L54.3046089,32.5371934 C54.3046089,31.3087282 53.5589414,29.8819225 52.6385243,29.3502453 L2.71924917,0.452756401 C1.79935061,-0.0789208406 1.05316458,0.485467013 1.05316458,1.7139322 L0.490024878,39.2838868 C0.490024878,40.5118328 1.23621091,41.9386385 2.15610947,42.470835 Z" fill="url(#linearGradient-94)"></path>
  1448. <g opacity="0.7" fill="url(#linearGradient-95)">
  1449. <path d="M40.6580642,22.4145572 C40.6580642,22.4145572 33.8381624,18.4918799 23.6083097,12.6076043 C18.4985688,9.65689944 12.5368587,6.21449698 6.14942332,2.52598612 C5.35086425,2.06492226 4.54608266,1.60022389 3.73507852,1.131891 C3.3290579,0.902397506 2.92355584,0.652135367 2.51338686,0.437699136 C2.11825569,0.239877818 1.5945254,0.326067684 1.37414384,0.731575424 C1.13042776,1.11631452 1.13250194,1.59451251 1.13146485,2.0727105 C1.12472377,2.55038927 1.11798269,3.02910647 1.1112416,3.50938133 C1.09775944,4.46941182 1.08427727,5.43463447 1.0707951,6.40349163 C1.01686644,10.2794395 0.961900687,14.2161356 0.907453479,18.153351 C0.844191008,22.0905663 0.781447081,26.0277817 0.7192217,29.9032104 C0.688109009,31.8409247 0.656996319,33.7635817 0.626402173,35.6628741 C0.611364372,36.6125202 0.595808027,37.556455 0.580770226,38.49364 C0.574547688,38.9650882 0.544990632,39.4277097 0.628994897,39.8794277 C0.693813003,40.3243958 0.876859333,40.7558644 1.07805473,41.1577376 C1.29325084,41.5570147 1.57533924,41.9163123 1.91239339,42.2055156 C2.25463299,42.4760272 2.68450666,42.6764446 3.06511858,42.9121687 C3.84863984,43.3664827 4.62438293,43.8171622 5.3918293,44.2626496 C6.92672204,45.1536244 8.42894645,46.0248689 9.89072437,46.8732679 C12.8147988,48.570066 15.5791613,50.1744436 18.1309205,51.6552478 C28.3281049,57.596118 35.1262278,61.556698 35.1262278,61.556698 C35.1262278,61.556698 28.306326,57.6340207 18.0764733,51.7497452 C15.5216028,50.2746523 12.7536105,48.6759861 9.82590627,46.9859378 C8.36205417,46.1406541 6.85827412,45.2725248 5.3213072,44.3846654 C4.55282374,43.9407357 3.77604356,43.492133 2.99148521,43.0393766 C2.60257658,42.7989796 2.19759305,42.6172539 1.81801823,42.32182 C1.46074083,42.0170402 1.16724445,41.6432046 0.943751618,41.2304278 C0.733740956,40.8114205 0.546027722,40.3778751 0.474468533,39.8986387 C0.387871544,39.4329019 0.416910055,38.9547039 0.422095504,38.4910439 C0.435059125,37.5538589 0.448022746,36.6099242 0.461504912,35.660278 C0.487950699,33.7609857 0.514396486,31.8383286 0.541360818,29.9006143 C0.595289482,26.0251856 0.650255236,22.0879703 0.705220989,18.1507549 C0.76848346,14.2135396 0.831745931,10.2768434 0.893971313,6.40089555 C0.909527658,5.43203838 0.925084003,4.46681574 0.940640349,3.50678525 C0.948418521,3.02651039 0.956196694,2.54779319 0.963456322,2.07011442 C0.967086136,1.60593526 0.957233784,1.07789253 1.23517382,0.642789478 C1.36636567,0.426795599 1.58467305,0.249742923 1.84187129,0.196782885 C2.09803244,0.138630687 2.35471214,0.188475429 2.58650169,0.293357072 C3.01170846,0.516619976 3.405284,0.762209171 3.81441588,0.994298749 C4.62438293,1.46418928 5.42812744,1.93096451 6.22564941,2.39358602 C12.6053066,6.09559651 18.5592385,9.55097936 23.6627569,12.5125877 C33.8599413,18.4539771 40.6580642,22.4145572 40.6580642,22.4145572 Z"></path>
  1450. </g>
  1451. <g opacity="0.7" transform="translate(44.594857, 58.671414)" fill="url(#linearGradient-96)">
  1452. <path d="M9.31773232,0.00830745691 C9.31773232,0.00830745691 9.31928795,1.42005591 9.32188068,3.53741899 C9.31773232,5.65478207 9.28506399,8.47775977 9.24980294,11.3007375 C9.2492844,11.6569197 9.21091208,12.0286784 9.07194206,12.3729186 C8.95993638,12.7130051 8.61717823,13.0639952 8.21167616,13.0318038 C7.82795298,13.0151889 7.50075118,12.8178868 7.21658861,12.6491416 C6.92257368,12.4778003 6.63270711,12.3085358 6.3469889,12.1418675 C5.20826442,11.4700019 4.14576604,10.8422697 3.23520129,10.3048811 C1.42184996,9.21556579 0.212603386,8.48918253 0.212603386,8.48918253 C0.212603386,8.48918253 1.44466594,9.17610537 3.29224122,10.2057108 C4.21213978,10.7275229 5.28500906,11.3365634 6.43514153,11.989218 C6.72189682,12.1538095 7.01331903,12.320997 7.3078525,12.4907807 C7.60186743,12.6652373 7.89691944,12.8293095 8.21375034,12.8422899 C8.53109979,12.8620202 8.77948277,12.6107196 8.88993282,12.2997092 C9.01282795,11.9897372 9.04860754,11.6444585 9.04757045,11.2976222 C9.09683221,8.47516369 9.14920524,5.65270521 9.20831936,3.53586135 C9.27365601,1.4195367 9.31773232,0.00830745691 9.31773232,0.00830745691 Z"></path>
  1453. </g>
  1454. </g>
  1455. <g id="XMLID_2_" transform="translate(2.592724, 1.038432)">
  1456. <g id="XMLID_239_" transform="translate(4.148359, 10.384321)" fill="#2A2284" fill-rule="nonzero" opacity="0.3">
  1457. <polygon id="XMLID_240_" points="43.0464818 48.6386025 0.0145192557 23.7619228 0.0145192557 0.347355542 0.20223249 0.455871698 0.20223249 23.6549643 43.0464818 48.4231279"></polygon>
  1458. </g>
  1459. <g id="XMLID_237_" opacity="0.3" transform="translate(4.148359, 11.422753)" fill="#2A2284" fill-rule="nonzero">
  1460. <polygon id="XMLID_238_" points="43.0464818 25.3117828 0.225567008 0.557118829 0.225567008 0.395123419 43.0464818 25.1497874"></polygon>
  1461. </g>
  1462. <g id="XMLID_235_" opacity="0.4" transform="translate(4.148359, 16.095698)" fill="#2A2284" fill-rule="nonzero">
  1463. <polygon id="XMLID_236_" opacity="0.3" points="43.0464818 24.9857151 0.225567008 0.231051145 0.225567008 0.0690557355 43.0464818 24.8237197"></polygon>
  1464. </g>
  1465. <g id="XMLID_233_" opacity="0.4" transform="translate(4.148359, 20.249426)" fill="#2A2284" fill-rule="nonzero">
  1466. <polygon id="XMLID_234_" opacity="0.3" points="43.0464818 25.1788635 0.225567008 0.424199518 0.225567008 0.262204109 43.0464818 25.016868"></polygon>
  1467. </g>
  1468. <g id="XMLID_231_" opacity="0.4" transform="translate(4.148359, 24.403155)" fill="#2A2284" fill-rule="nonzero">
  1469. <polygon id="XMLID_232_" opacity="0.3" points="43.0464818 25.3720118 0.225567008 0.617347891 0.225567008 0.455871698 43.0464818 25.2105356"></polygon>
  1470. </g>
  1471. <g id="XMLID_229_" opacity="0.4" transform="translate(4.148359, 29.076099)" fill="#2A2284" fill-rule="nonzero">
  1472. <polygon id="XMLID_230_" opacity="0.3" points="43.0464818 25.0459441 0.225567008 0.291280208 0.225567008 0.129284798 43.0464818 24.8839487"></polygon>
  1473. </g>
  1474. <text id="XMLID_228_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1475. <tspan x="0.365366698" y="1.08691677">100</tspan>
  1476. <tspan x="0.365366698" y="2.08691677">0</tspan>
  1477. </text>
  1478. <text id="XMLID_227_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1479. <tspan x="0.991146617" y="5.90840899">70</tspan>
  1480. <tspan x="0.991146617" y="6.90840899">0</tspan>
  1481. </text>
  1482. <text id="XMLID_226_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1483. <tspan x="0.970093696" y="10.3572599">50</tspan>
  1484. <tspan x="0.970093696" y="11.3572599">0</tspan>
  1485. </text>
  1486. <text id="XMLID_225_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1487. <tspan x="0.968797334" y="14.8157162">30</tspan>
  1488. <tspan x="0.968797334" y="15.8157162">0</tspan>
  1489. </text>
  1490. <text id="XMLID_222_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1491. <tspan x="1.30341432" y="19.4691382">10</tspan>
  1492. <tspan x="1.30341432" y="20.4691382">0</tspan>
  1493. </text>
  1494. <text id="XMLID_195_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1495. <tspan x="2.71115987" y="24.7421407">0</tspan>
  1496. </text>
  1497. <text id="XMLID_191_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1498. <tspan x="5.18456692" y="28.7620153">10</tspan>
  1499. <tspan x="5.18456692" y="29.7620153">0</tspan>
  1500. </text>
  1501. <text id="XMLID_187_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1502. <tspan x="8.94380963" y="30.935246">20</tspan>
  1503. <tspan x="8.94380963" y="31.935246">0</tspan>
  1504. </text>
  1505. <text id="XMLID_183_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1506. <tspan x="12.8434224" y="33.1895783">30</tspan>
  1507. <tspan x="12.8434224" y="34.1895783">0</tspan>
  1508. </text>
  1509. <text id="XMLID_124_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1510. <tspan x="16.713167" y="35.4266726">40</tspan>
  1511. <tspan x="16.713167" y="36.4266726">0</tspan>
  1512. </text>
  1513. <text id="XMLID_123_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1514. <tspan x="20.6947618" y="37.7284093">50</tspan>
  1515. <tspan x="20.6947618" y="38.7284093">0</tspan>
  1516. </text>
  1517. <text id="XMLID_120_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1518. <tspan x="24.5851445" y="39.9773936">60</tspan>
  1519. <tspan x="24.5851445" y="40.9773936">0</tspan>
  1520. </text>
  1521. <text id="XMLID_119_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1522. <tspan x="28.5058102" y="42.2438755">60</tspan>
  1523. <tspan x="28.5058102" y="43.2438755">0</tspan>
  1524. </text>
  1525. <text id="XMLID_116_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1526. <tspan x="32.4772933" y="44.539797">70</tspan>
  1527. <tspan x="32.4772933" y="45.539797">0</tspan>
  1528. </text>
  1529. <text id="XMLID_115_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1530. <tspan x="36.3567347" y="46.7824469">80</tspan>
  1531. <tspan x="36.3567347" y="47.7824469">0</tspan>
  1532. </text>
  1533. <text id="XMLID_112_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1534. <tspan x="40.2655258" y="49.0421271">90</tspan>
  1535. <tspan x="40.2655258" y="50.0421271">0</tspan>
  1536. </text>
  1537. <text id="XMLID_111_" fill="#FFFFFF" font-family="Helvetica" font-size="1.50522624" font-weight="normal">
  1538. <tspan x="43.9037401" y="51.1453675">100</tspan>
  1539. <tspan x="43.9037401" y="52.1453675">0</tspan>
  1540. </text>
  1541. <polyline id="XMLID_108_" stroke="url(#linearGradient-97)" stroke-width="0.6" points="6.498404 30.2090286 9.8725753 34.9292218 14.0499726 30.3284483 18.0666209 37.0813723 22.0832693 35.1571576 29.6348379 39.5227262 33.6514863 32.7988783 37.6681346 48.4127436 41.2025363 50.456378 47.1948405 36.5502143"></polyline>
  1542. <polyline id="XMLID_107_" stroke="url(#linearGradient-98)" stroke-width="0.6" stroke-linecap="round" stroke-linejoin="round" points="6.01667584 25.8689016 9.8725753 28.0984153 14.0499726 21.8366697 18.0666209 41.5123622 22.0832693 30.9120471 26.7429133 33.6052208 29.6348379 43.5850727 33.6514863 45.9070069 37.6681346 43.9822729 41.2025363 50.6406997 47.1948405 49.6136903"></polyline>
  1543. <path d="M6.47610657,26.0158397 C6.47610657,26.283236 6.28735624,26.3912329 6.05452961,26.256756 C5.82170297,26.122279 5.63295265,25.7962113 5.63295265,25.5282959 C5.63295265,25.2603804 5.82170297,25.1529026 6.05452961,25.2873796 C6.28735624,25.4218566 6.47610657,25.7479243 6.47610657,26.0158397 Z" id="XMLID_105_" fill="#FFEA80" fill-rule="nonzero"></path>
  1544. <path d="M10.1313292,28.1285299 C10.1313292,28.3964454 9.94257886,28.5039231 9.70975222,28.3694461 C9.47692559,28.2349692 9.28817526,27.9089015 9.28817526,27.640986 C9.28817526,27.3735897 9.47692559,27.2655928 9.70975222,27.4000697 C9.94206031,27.5350659 10.1313292,27.8611336 10.1313292,28.1285299 Z" id="XMLID_103_" fill="#FFEA80" fill-rule="nonzero"></path>
  1545. <path d="M14.5135517,21.9939922 C14.5135517,22.2619076 14.3248013,22.3693854 14.0919747,22.2349084 C13.8591481,22.1004315 13.6703977,21.7743638 13.6703977,21.5064483 C13.6703977,21.239052 13.8591481,21.1310551 14.0919747,21.265532 C14.3248013,21.400009 14.5135517,21.7265959 14.5135517,21.9939922 Z" id="XMLID_101_" fill="#FFEA80" fill-rule="nonzero"></path>
  1546. <path d="M18.4783455,41.7584706 C18.4783455,42.0263861 18.2895952,42.1338638 18.0567686,41.9993868 C17.823942,41.8649099 17.6351916,41.5388422 17.6351916,41.2709267 C17.6351916,41.0035304 17.823942,40.8955335 18.0567686,41.0300104 C18.2895952,41.1644874 18.4783455,41.4910743 18.4783455,41.7584706 Z" id="XMLID_99_" fill="#FFEA80" fill-rule="nonzero"></path>
  1547. <path d="M22.535959,31.1794434 C22.535959,31.4468397 22.3472086,31.5548366 22.114382,31.4203597 C21.8815554,31.2858827 21.692805,30.959815 21.692805,30.6918995 C21.692805,30.4239841 21.8815554,30.3165063 22.114382,30.4509833 C22.3472086,30.5854603 22.535959,30.9115279 22.535959,31.1794434 Z" id="XMLID_97_" fill="#FFEA80" fill-rule="nonzero"></path>
  1548. <path d="M27.011001,33.7661778 C27.011001,34.0335741 26.8222506,34.141571 26.589424,34.0070941 C26.3565974,33.8726171 26.1678471,33.5465494 26.1678471,33.2786339 C26.1678471,33.0107185 26.3565974,32.9032407 26.589424,33.0377177 C26.8222506,33.1727139 27.011001,33.4987815 27.011001,33.7661778 Z" id="XMLID_95_" fill="#FFEA80" fill-rule="nonzero"></path>
  1549. <path d="M30.1093064,43.8072971 C30.1093064,44.0752126 29.9205561,44.1826903 29.6877295,44.0482134 C29.4549028,43.9137364 29.2661525,43.5876687 29.2661525,43.3197533 C29.2661525,43.052357 29.4549028,42.94436 29.6877295,43.078837 C29.9200376,43.213314 30.1093064,43.5393816 30.1093064,43.8072971 Z" id="XMLID_94_" fill="#FFEA80" fill-rule="nonzero"></path>
  1550. <path d="M34.0922494,46.1100203 C34.0922494,46.3779358 33.9034991,46.4854136 33.6706724,46.3509366 C33.4378458,46.2164596 33.2490955,45.890392 33.2490955,45.6224765 C33.2490955,45.354561 33.4378458,45.2470833 33.6706724,45.3815602 C33.9034991,45.5160372 34.0922494,45.8426241 34.0922494,46.1100203 Z" id="XMLID_93_" fill="#FFEA80" fill-rule="nonzero"></path>
  1551. <path d="M38.1249726,44.2595343 C38.1249726,44.5274498 37.9362223,44.6349275 37.7033957,44.5004506 C37.470569,44.3659736 37.2818187,44.0393867 37.2818187,43.7719904 C37.2818187,43.504075 37.470569,43.3965972 37.7033957,43.5310742 C37.9362223,43.6655511 38.1249726,43.992138 38.1249726,44.2595343 Z" id="XMLID_91_" fill="#FFEA80" fill-rule="nonzero"></path>
  1552. <path d="M41.6655968,50.7705037 C41.6655968,51.0384192 41.4768465,51.1458969 41.2440199,51.0114199 C41.0111932,50.876943 40.8224429,50.5508753 40.8224429,50.2829598 C40.8224429,50.0155635 41.0111932,49.9075666 41.2440199,50.0420435 C41.4768465,50.1770397 41.6655968,50.5031074 41.6655968,50.7705037 Z" id="XMLID_90_" fill="#FFEA80" fill-rule="nonzero"></path>
  1553. <path d="M47.6698276,37.0029707 C47.6698276,37.270367 47.4810773,37.3783639 47.2482506,37.243887 C47.015424,37.10941 46.8266737,36.7833423 46.8266737,36.5154268 C46.8266737,36.2480306 47.015424,36.1400336 47.2482506,36.2745106 C47.4805587,36.4089875 47.6698276,36.7350552 47.6698276,37.0029707 Z" id="XMLID_89_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1554. <path d="M38.0897116,48.7720411 C38.0897116,49.0399566 37.9009613,49.1474343 37.6681346,49.0129573 C37.435308,48.8784804 37.2465577,48.5524127 37.2465577,48.2844972 C37.2465577,48.0171009 37.435308,47.909104 37.6681346,48.0435809 C37.9009613,48.1780579 38.0897116,48.5046448 38.0897116,48.7720411 Z" id="XMLID_86_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1555. <path d="M34.1135097,32.8352234 C34.1135097,33.1031389 33.9247594,33.2106166 33.6919328,33.0761397 C33.4591061,32.9416627 33.2703558,32.615595 33.2703558,32.3476795 C33.2703558,32.0797641 33.4591061,31.9722863 33.6919328,32.1067633 C33.9242408,32.2412403 34.1135097,32.5673079 34.1135097,32.8352234 Z" id="XMLID_31_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1556. <path d="M30.0164869,39.6047624 C30.0164869,39.8726779 29.8277366,39.9801556 29.5949099,39.8456786 C29.3620833,39.7112017 29.173333,39.385134 29.173333,39.1172185 C29.173333,38.849303 29.3620833,38.7418253 29.5949099,38.8763022 C29.827218,39.0112984 30.0164869,39.3373661 30.0164869,39.6047624 Z" id="XMLID_30_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1557. <path d="M14.4715495,30.6186901 C14.4715495,30.8866056 14.2827992,30.9940833 14.0499726,30.8596063 C13.8171459,30.7251294 13.6283956,30.3990617 13.6283956,30.1311462 C13.6283956,29.8632307 13.8171459,29.755753 14.0499726,29.89023 C14.2827992,30.0247069 14.4715495,30.3507746 14.4715495,30.6186901 Z" id="XMLID_29_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1558. <path d="M22.5452928,35.2859232 C22.5452928,35.5533195 22.3565424,35.6613164 22.1237158,35.5268395 C21.8908892,35.3923625 21.7021388,35.0662948 21.7021388,34.7983793 C21.7021388,34.5304638 21.8908892,34.4229861 22.1237158,34.5574631 C22.3565424,34.69194 22.5452928,35.0180077 22.5452928,35.2859232 Z" id="XMLID_28_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1559. <path d="M10.3143755,35.2075216 C10.3143755,35.4754371 10.1256252,35.5829148 9.89279855,35.4484378 C9.65997192,35.3139609 9.47122159,34.9878932 9.47122159,34.7199777 C9.47122159,34.4525814 9.65997192,34.3445845 9.89279855,34.4790615 C10.1256252,34.6135384 10.3143755,34.9396061 10.3143755,35.2075216 Z" id="XMLID_25_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1560. <path d="M6.880053,30.3834852 C6.880053,30.6514007 6.69130268,30.7588784 6.45847604,30.6244015 C6.22564941,30.4899245 6.03689908,30.1638568 6.03689908,29.8959413 C6.03689908,29.6285451 6.22564941,29.5205481 6.45847604,29.6550251 C6.69130268,29.7900213 6.880053,30.1160889 6.880053,30.3834852 Z" id="XMLID_24_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1561. <path d="M18.3881187,37.1748312 C18.3881187,37.4422275 18.1993684,37.5502244 17.9665418,37.4157475 C17.7337152,37.2812705 17.5449648,36.9552028 17.5449648,36.6872873 C17.5449648,36.4198911 17.7337152,36.3118941 17.9665418,36.4463711 C18.1993684,36.5808481 18.3881187,36.907435 18.3881187,37.1748312 Z" id="XMLID_23_" fill="#A7F6EF" fill-rule="nonzero"></path>
  1562. </g>
  1563. </g>
  1564. <polygon id="Shape" fill="url(#linearGradient-99)" fill-rule="nonzero" opacity="0.2" points="74.3811096 18.8226205 45.5023101 44.3576662 54.5633628 49.6027868 85.0797269 25.0158296"></polygon>
  1565. <polygon id="Shape" fill="url(#linearGradient-100)" fill-rule="nonzero" opacity="0.2" points="87.0512344 26.1425285 55.791277 50.3333237 60.7371577 53.2154921 91.3152286 28.578171"></polygon>
  1566. <polygon id="Shape" fill="url(#linearGradient-101)" fill-rule="nonzero" opacity="0.8" points="44.5061855 52.3686507 44.3952169 36.4468903 90.255323 60.8858709 89.9877538 78.9712046"></polygon>
  1567. </g>
  1568. </g>
  1569. <g id="people_2" transform="translate(121.339494, 305.818257)">
  1570. <g id="Group">
  1571. <path d="M4.95832581,105.143848 C4.95832581,105.143848 -7.34311355,116.017789 7.87773328,121.313274 C23.0990987,126.608759 32.9799707,117.611264 32.8995962,114.166784 C32.8192218,110.722305 23.1063583,113.383806 17.0990163,109.691661 C11.0916742,105.998477 15.6963525,95.6982691 4.95832581,105.143848 Z" id="Shape" fill="url(#linearGradient-102)" fill-rule="nonzero" opacity="0.5"></path>
  1572. <g transform="translate(6.222538, 4.672945)">
  1573. <polygon id="XMLID_207_" stroke="url(#linearGradient-103)" stroke-width="0.6" points="36.3546605 103.770521 1.52815166 83.8284708 19.6658132 73.0832945 54.4923221 93.0253448"></polygon>
  1574. <polygon id="XMLID_206_" fill="url(#linearGradient-104)" fill-rule="nonzero" opacity="0.3" points="54.4923221 93.0253448 36.3546605 103.770521 1.52815166 83.8284708 0.0689664644 21.3766443 54.4923221 50.4963576"></polygon>
  1575. <g id="XMLID_177_" transform="translate(11.926531, 0.000000)">
  1576. <g id="XMLID_198_" fill-rule="nonzero">
  1577. <polygon id="XMLID_205_" fill="url(#linearGradient-105)" points="8.77274169 0.82036137 32.3660136 13.7685714 32.3660136 30.5719606 8.77274169 17.5250996"></polygon>
  1578. <polygon id="XMLID_204_" fill="url(#linearGradient-106)" points="32.3660136 30.5719606 23.3827427 45.9916391 0.28364403 32.252663 8.77274169 17.5250996"></polygon>
  1579. <polygon id="XMLID_203_" fill="url(#linearGradient-107)" points="23.3827427 45.9916391 23.3827427 99.324474 0.28364403 85.8871624 0.28364403 32.252663"></polygon>
  1580. <polygon id="XMLID_202_" fill="url(#linearGradient-108)" points="8.77274169 0.82036137 9.86635276 0.145899712 33.4534021 13.2592204 32.3660136 13.7685714"></polygon>
  1581. <polyline id="XMLID_201_" fill="url(#linearGradient-109)" points="33.4534021 13.2592204 33.4534021 32.5512122 25.2251325 45.9916391 23.3827427 45.9916391 32.3660136 30.5719606 32.3660136 13.7685714"></polyline>
  1582. <polygon id="XMLID_200_" fill="url(#linearGradient-110)" points="25.2251325 45.9916391 25.2251325 96.7683733 34.5076038 91.3176432 34.5076038 92.8005242 23.3827427 99.324474 23.3827427 45.9916391"></polygon>
  1583. <polygon id="XMLID_199_" fill="url(#linearGradient-111)" points="34.5076038 91.3176432 25.2251325 86.0694073 25.2251325 96.7683733"></polygon>
  1584. </g>
  1585. <polygon id="XMLID_197_" fill="url(#linearGradient-112)" fill-rule="nonzero" points="11.221829 3.90865847 29.9169263 14.168887 29.9169263 27.4841827 11.221829 17.1450334"></polygon>
  1586. <path d="M12.1728402,12.4373014 L13.2483022,13.0598415 C13.5703186,13.24624 13.8109234,13.5453085 13.9265589,13.8994138 C14.0707144,14.3407475 14.3968791,15.2104344 14.7069689,15.3869678 C15.6336085,15.916049 16.7935933,11.3536975 18.4861237,11.8781057 C20.1786541,12.4025139 20.0604259,19.6580391 21.4708678,20.5251299 C22.8813098,21.3922208 24.6941426,17.4129489 25.4595148,18.0583345 C26.224887,18.70372 25.8551645,20.417133 27.3931685,20.7587772" id="XMLID_196_" stroke="#223EC2" stroke-width="0.6" stroke-linecap="round"></path>
  1587. <g id="XMLID_192_" transform="translate(14.000711, 14.538050)">
  1588. <g id="XMLID_194_" transform="translate(0.518545, 0.519216)" stroke="#AE4AF5" stroke-width="0.6">
  1589. <g id="Group">
  1590. <path d="M0.187713234,0.330221412 L0.187713234,0.628251429" id="Shape"></path>
  1591. <path d="M0.187713234,1.15681337 L0.187713234,1.94965629" id="Shape" stroke-dasharray="0.5276793479919434,0.5276793479919434"></path>
  1592. <path d="M0.187713234,2.21393727 L0.187713234,2.51196728" id="Shape"></path>
  1593. </g>
  1594. </g>
  1595. <path d="M0.995606102,0.936665766 C0.995606102,1.12098747 0.865451346,1.19523536 0.705220989,1.10229569 C0.544990632,1.00935601 0.414835876,0.785054678 0.414835876,0.600732978 C0.414835876,0.416411277 0.544990632,0.342163381 0.705220989,0.435103055 C0.865451346,0.527523514 0.995606102,0.752344066 0.995606102,0.936665766 Z" id="XMLID_193_" fill="#AE4AF5" fill-rule="nonzero"></path>
  1596. </g>
  1597. <g id="XMLID_188_" transform="translate(18.149070, 11.422753)">
  1598. <g id="XMLID_190_" transform="translate(0.000000, 0.519216)" stroke="#AE4AF5" stroke-width="0.6">
  1599. <g id="Group">
  1600. <path d="M0.293496382,0.116823613 L0.293496382,0.414853629" id="Shape"></path>
  1601. <path d="M0.293496382,0.979241483 L0.292977837,7.47359592" id="Shape" stroke-dasharray="0.5638118505477905,0.5638118505477905"></path>
  1602. <path d="M0.292459293,7.75604945 L0.292459293,8.05407947" id="Shape"></path>
  1603. </g>
  1604. </g>
  1605. <path d="M0.583362951,0.723267967 C0.583362951,0.907589667 0.453208194,0.981837563 0.292977837,0.888897889 C0.13274748,0.795958215 0.00259272422,0.571656878 0.00259272422,0.387335178 C0.00259272422,0.203013478 0.13274748,0.128765582 0.292977837,0.221705256 C0.453208194,0.31464493 0.583362951,0.538946267 0.583362951,0.723267967 Z" id="XMLID_189_" fill="#AE4AF5" fill-rule="nonzero"></path>
  1606. </g>
  1607. <g id="XMLID_184_" transform="translate(21.260339, 19.730210)">
  1608. <g id="XMLID_186_" transform="translate(0.000000, 0.519216)" stroke="#AE4AF5" stroke-width="0.6">
  1609. <g id="Group">
  1610. <path d="M0.348462136,0.358259079 L0.348462136,0.656289096" id="Shape"></path>
  1611. <path d="M0.347943591,1.2642911 L0.347425046,1.56232111" id="Shape"></path>
  1612. </g>
  1613. </g>
  1614. <path d="M0.637810159,0.964703433 C0.637810159,1.14902513 0.507655403,1.22327303 0.347425046,1.13033336 C0.187194689,1.03739368 0.0570399329,0.813092345 0.0570399329,0.628770645 C0.0570399329,0.444448945 0.187194689,0.370201048 0.347425046,0.463140723 C0.507655403,0.556080397 0.637810159,0.780381733 0.637810159,0.964703433 Z" id="XMLID_185_" fill="#AE4AF5" fill-rule="nonzero"></path>
  1615. </g>
  1616. <g id="XMLID_180_" transform="translate(24.890153, 17.653346)">
  1617. <g id="XMLID_182_" transform="translate(0.000000, 0.519216)" stroke="#AE4AF5" stroke-width="0.6">
  1618. <g id="Group">
  1619. <path d="M0.395649717,0.0358259079 L0.395649717,0.333855924" id="Shape"></path>
  1620. <path d="M0.395649717,0.886301809 L0.395131172,5.02964594" id="Shape" stroke-dasharray="0.5516295075416565,0.5516295075416565"></path>
  1621. <path d="M0.395131172,5.30586888 L0.395131172,5.6038989" id="Shape"></path>
  1622. </g>
  1623. </g>
  1624. <path d="M0.685516285,0.642270262 C0.685516285,0.826591962 0.555361529,0.900839858 0.395131172,0.807900184 C0.234900815,0.71496051 0.104746059,0.490659174 0.104746059,0.306337473 C0.104746059,0.122015773 0.234900815,0.0477678772 0.395131172,0.140707551 C0.555361529,0.233647226 0.685516285,0.457948562 0.685516285,0.642270262 Z" id="XMLID_181_" fill="#AE4AF5" fill-rule="nonzero"></path>
  1625. </g>
  1626. <polygon id="XMLID_179_" fill="#223EC2" fill-rule="nonzero" points="17.3546589 9.50944208 12.637975 6.78303856 12.637975 6.23318876 17.3546589 8.95959227"></polygon>
  1627. <polygon id="XMLID_178_" fill="#223EC2" fill-rule="nonzero" points="15.7331691 10.2295947 12.637975 8.42116522 12.637975 7.87131542 15.7331691 9.67974494"></polygon>
  1628. </g>
  1629. </g>
  1630. <path d="M41.6795975,29.0418309 C41.6795975,29.0418309 42.0249484,28.535076 42.0965076,28.1056844 C42.1680668,27.6762927 41.6583372,26.8663156 42.1405839,26.8398356 C42.4615632,26.8221823 42.4714155,27.8014238 42.8141737,27.7988277 C43.3067913,27.7951932 43.356053,26.0490696 43.7848896,26.0490696 C44.1784652,26.0490696 43.650068,27.6581201 43.7247384,27.8491916 C43.7994089,28.0402631 44.3724009,28.4452517 44.1691313,29.0418309 C43.9663803,29.6384102 43.0132949,30.3777738 43.0132949,30.3777738 L41.6795975,29.0418309 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1631. <path d="M29.1894079,28.6524189 C29.1894079,28.6524189 29.6732102,27.5153357 30.3219098,27.3247834 C30.9706094,27.1337119 32.0310336,26.9431596 32.1736334,27.3247834 C32.3167518,27.7064072 31.1609154,28.3206398 31.3398133,28.5444219 C31.5187113,28.7682041 32.0315522,28.2193927 32.1860785,28.3029865 C32.3406049,28.3865803 32.4365357,28.6487844 32.1860785,28.80403 C31.9356214,28.9592756 30.809342,29.412032 30.5205125,29.5849309 L29.1894079,28.6524189 Z" id="Shape" fill="#FFCDA4" fill-rule="nonzero"></path>
  1632. <g transform="translate(2.592724, 0.000000)" fill-rule="nonzero" id="Shape">
  1633. <path d="M8.52954415,19.6242901 C8.52954415,19.6242901 2.68554375,20.2769447 2.25670717,24.8257965 C1.82787058,29.3746484 -1.00856972,35.4448033 1.33888279,37.1327747 C3.6863353,38.8207461 8.52954415,37.9027721 8.52954415,37.9027721 L8.52954415,19.6242901 L8.52954415,19.6242901 Z" fill="url(#linearGradient-113)"></path>
  1634. <path d="M19.9878296,30.9052973 L26.4426758,28.5444219 L28.1279466,29.7251192 C28.1279466,29.7251192 23.1696208,33.1924441 20.848614,33.6150859 C18.5276073,34.0377278 19.9878296,30.9052973 19.9878296,30.9052973 Z" fill="url(#linearGradient-114)"></path>
  1635. <path d="M14.6317799,117.199525 C14.6317799,117.199525 14.3642107,118.546372 15.0367634,119.180334 C15.7093161,119.814297 18.5312371,119.356868 20.5494137,118.377107 C22.5670717,117.397866 24.9274878,115.932119 25.0861625,115.456517 C25.2448372,114.980915 25.1426839,114.10967 24.7299222,113.713509 C24.3171605,113.317347 14.6317799,117.199525 14.6317799,117.199525 Z" fill="url(#linearGradient-115)"></path>
  1636. <path d="M15.1555102,114.943531 C15.1555102,114.943531 13.7264006,117.437845 15.5910879,118.22965 C17.8379427,119.18345 25.7587152,115.258696 24.7299222,113.713509 C24.0371463,112.67248 22.3067621,113.078507 19.5024716,113.079027 C16.6986996,113.080065 15.1555102,114.943531 15.1555102,114.943531 Z" fill="url(#linearGradient-116)"></path>
  1637. <path d="M1.52348475,112.724402 C1.52348475,112.724402 1.25591561,114.071248 1.92846828,114.705211 C2.60102094,115.339174 5.42294199,114.881745 7.44111852,113.901984 C9.45877652,112.922743 11.8191927,111.456996 11.9778674,110.981394 C12.1365421,110.505792 12.0343888,109.634547 11.6216271,109.238385 C11.2088654,108.842224 1.52348475,112.724402 1.52348475,112.724402 Z" fill="url(#linearGradient-117)"></path>
  1638. <path d="M2.04721505,110.468408 C2.04721505,110.468408 0.618105455,112.962722 2.48279272,113.754527 C4.72964753,114.708327 12.65042,110.783572 11.6216271,109.238385 C10.9288512,108.197876 9.198467,108.603384 6.39417648,108.603903 C3.59040451,108.604423 2.04721505,110.468408 2.04721505,110.468408 Z" fill="url(#linearGradient-118)"></path>
  1639. <path d="M2.26967079,53.6666908 C2.26967079,53.6666908 0.107338783,62.1527581 2.22611302,69.7546003 C3.69878038,75.0386622 2.22611302,110.530714 2.22611302,110.530714 C2.22611302,110.530714 3.65574116,112.280472 6.83442106,110.771111 C6.83442106,110.771111 10.8469211,73.7536024 10.8935901,71.2281355 L12.7795377,72.0401894 C12.7795377,72.0401894 15.3183333,83.5875545 15.3183333,89.1203208 C15.3183333,94.6530871 14.7629717,115.342289 14.7629717,115.342289 C14.7629717,115.342289 16.5073566,116.753519 18.8475495,115.342289 C18.8475495,115.342289 21.4107166,93.0897276 21.9308171,87.1961061 C22.4514362,81.3024847 19.8680457,57.4673524 19.8680457,57.4673524 C19.8680457,57.4673524 8.27597573,50.5690478 2.26967079,53.6666908 Z" fill="url(#linearGradient-119)"></path>
  1640. <path d="M15.3613725,16.0811597 C15.3613725,16.0811597 14.5659247,20.436344 14.3854711,21.0677107 C14.2050175,21.6990774 10.4580124,19.3387212 9.78390413,18.436843 L10.4559383,13.8080318 C10.4564568,13.8080318 13.90478,14.4321295 15.3613725,16.0811597 Z" fill="#FFCDA4"></path>
  1641. <path d="M15.1207677,17.3807575 L14.3854711,21.0677107 C14.3854711,21.0677107 12.5959728,18.6606251 12.4290014,16.2769042 C12.4295199,16.2769042 12.1904708,14.4040918 15.1207677,17.3807575 Z" fill="#F2B588"></path>
  1642. <path d="M9.78442268,18.0552192 C9.78442268,18.0552192 8.88993282,18.9929234 8.52954415,19.6242901 C8.52954415,19.6242901 11.0367085,23.966494 15.3613725,23.6959824 L14.3854711,21.0677107 L9.78442268,18.0552192 Z" fill="url(#linearGradient-120)"></path>
  1643. <path d="M8.52954415,19.6242901 C8.52954415,19.6242901 5.11648198,19.3849315 4.30547785,23.1741703 C3.49447371,26.9628898 1.67801112,40.8789186 1.76823792,44.126615 C1.85846472,47.3743114 0.430392221,53.3224506 0.923009824,55.8053418 C1.33940133,57.9045323 5.05529369,58.6963368 9.52255753,60.6714347 C15.2405515,63.2000169 19.2431992,61.1008263 20.4104436,60.1942751 C21.7705868,59.1381896 20.0293132,53.419544 20.1247254,50.6645836 C20.2087297,48.2367293 20.4674836,38.5689263 20.3098459,37.1255057 C20.1522083,35.6820851 18.1055118,26.672648 15.361891,23.6959824 C12.6177517,20.719836 8.52954415,19.6242901 8.52954415,19.6242901 Z" fill="url(#linearGradient-121)"></path>
  1644. <path d="M15.8399894,34.8830116 C15.8399894,34.8830116 16.7417389,41.6359356 16.8366326,44.7844618 C16.9320448,47.9335071 15.7886534,60.845372 16.8366326,61.6885789 C16.8366326,61.6885789 18.9331094,61.4824501 20.4099251,60.1942751 C21.8867408,58.9061001 20.2834002,53.7611882 20.2025072,52.2128859 C20.1392447,51.0005164 20.362219,42.432413 20.3585892,39.2490994 C20.3575521,38.2906265 18.5182735,34.0688808 17.7248999,33.6540271 C16.9315263,33.2391735 15.8399894,34.8830116 15.8399894,34.8830116 Z" fill="url(#linearGradient-122)" opacity="0.3"></path>
  1645. <path d="M13.899076,24.5859187 C13.899076,24.5859187 11.9695707,25.0371175 12.1313566,27.9239587 C12.2931426,30.8108 16.3471262,35.5019171 17.9691345,37.5767045 C19.5906242,39.6514918 22.8688648,40.2522248 26.5282357,39.1104687 C33.4658472,36.9453377 40.7633288,30.7204564 40.7633288,30.7204564 L38.6912236,28.6456691 C38.6912236,28.6456691 31.8811742,33.5870483 24.4514636,34.317066 C18.9699261,34.8560123 18.4788641,23.1424981 13.899076,24.5859187 Z" fill="url(#linearGradient-123)"></path>
  1646. <path d="M20.5001519,7.06133837 C20.5001519,7.06133837 20.6790499,16.4388996 18.9662962,17.701633 C17.2535426,18.9643665 13.3364549,16.4388996 13.3364549,16.4388996 C13.3364549,16.4388996 8.97704836,12.830348 11.545401,10.2140183 C14.1137536,7.59768856 20.5001519,7.06133837 20.5001519,7.06133837 Z" fill="#FFCDA4"></path>
  1647. <path d="M8.20389799,14.7924655 C8.20389799,14.7924655 11.3654659,17.1793017 12.7385727,16.2774234 C14.8350495,14.9004624 13.2695626,14.2737686 14.164571,13.1912031 C15.0595794,12.1086377 15.5708646,9.10133826 16.0821498,10.9056141 C16.593435,12.7098899 15.6004217,13.7597447 16.8511518,13.5110402 C17.4899991,13.3838323 17.616524,12.7098899 17.616524,11.7477825 C17.616524,10.7856751 17.8721666,8.86094122 19.0228176,8.50008606 C20.1734686,8.1392309 21.172186,7.22956437 21.172186,5.5457467 C21.172186,3.86192903 17.449034,-0.147976576 13.3582338,0.0342682597 C8.55132304,0.248704491 6.92775913,4.30637797 6.87746028,6.33183981 C6.82042035,8.61327516 6.44447533,13.4689837 8.20389799,14.7924655 Z" fill="url(#linearGradient-124)"></path>
  1648. </g>
  1649. <polygon id="Shape" fill="url(#linearGradient-125)" fill-rule="nonzero" points="13.4863143 71.2276163 10.0416209 70.0713221 12.1106149 85.5309802"></polygon>
  1650. </g>
  1651. </g>
  1652. <g id="server" transform="translate(468.764540, 224.301336)">
  1653. <g id="Group">
  1654. <path d="M38.7684868,143.94071 L2.89711005,123.271238 C-0.825004848,121.126356 -0.364018481,117.370347 3.92694011,114.881745 L96.9092904,60.9393501 C101.200249,58.4507476 107.69606,58.1719286 111.418175,60.3162909 L147.289552,80.9857629 C151.011667,83.1306444 150.55068,86.8866534 146.259722,89.3752559 L53.2773715,143.31765 C48.986413,145.806772 42.4906017,146.085591 38.7684868,143.94071 Z" id="Shape" stroke="#29DCC4" stroke-width="0.6"></path>
  1655. <g transform="translate(69.485009, 0.000000)">
  1656. <g opacity="0.5" transform="translate(9.852352, 74.767112)" fill="url(#linearGradient-126)" fill-rule="nonzero" id="Shape">
  1657. <polygon points="69.5264928 41.9812143 11.3099816 36.4837547 0.130154756 12.9378257 62.0366311 0.449121889"></polygon>
  1658. </g>
  1659. <g>
  1660. <path d="M46.3091659,89.8207433 C47.5707855,90.5476458 47.5790822,91.7283431 46.3304263,92.4573224 L23.21266,105.953305 C21.9614113,106.683842 19.9256042,106.686958 18.6639846,105.959536 L3.66922332,97.3197808 C2.41019644,96.594436 2.40189972,95.4137387 3.65314843,94.6832017 L26.7709147,81.1872187 C28.0195707,80.4582394 30.0553778,80.4551241 31.3144046,81.1809881 L46.3091659,89.8207433 Z" id="Shape" fill="#ABABAB" fill-rule="nonzero"></path>
  1661. <path d="M47.206767,91.4786002 C47.2031372,91.4905421 47.2005445,91.5024841 47.1969147,91.5139069 C47.1616536,91.6156732 47.1092806,91.7153627 47.0444625,91.8129753 C47.032536,91.8306286 47.021128,91.8488012 47.0086829,91.8664546 C46.9386794,91.963548 46.8541566,92.0575261 46.7545959,92.1478697 C46.6897778,92.2065411 46.6068107,92.2600203 46.5295475,92.3155764 C46.4631737,92.3628251 46.4066524,92.4131891 46.3309448,92.4573224 L23.2131785,105.953305 C23.0202798,106.065975 22.8040466,106.15528 22.5800353,106.233163 C22.5012165,106.260681 22.4198049,106.284565 22.3373563,106.30793 C22.2315731,106.337525 22.1252714,106.366082 22.0158585,106.388408 C21.8872594,106.414888 21.7576231,106.439292 21.6248757,106.456426 C21.5932444,106.460579 21.5616132,106.466291 21.529982,106.469925 C21.351084,106.489136 21.1706304,106.499001 20.9891397,106.500559 C20.9606197,106.501078 20.9320998,106.501078 20.9030612,106.501078 C20.7241633,106.50004 20.5457838,106.490175 20.3689601,106.472002 C20.3425143,106.469406 20.3160685,106.466291 20.2896227,106.463176 C20.113836,106.442407 19.9411606,106.412812 19.7721149,106.374909 C19.7415208,106.368159 19.7114452,106.360371 19.680851,106.352583 C19.5268432,106.31468 19.3775023,106.268989 19.2328283,106.216548 C19.2074196,106.207202 19.1804553,106.199933 19.1550466,106.190587 C18.9823711,106.124127 18.8169553,106.047803 18.6639846,105.959536 L3.66974187,97.3197808 C3.03659861,96.9547719 2.71976771,96.4750163 2.72028626,95.9947414 L2.71354517,100.679109 C2.71302663,101.158864 3.02985753,101.639139 3.66300078,102.004148 L18.6577621,110.643903 C18.8029546,110.727497 18.9590366,110.801745 19.1223782,110.866128 C19.130675,110.869243 19.1400088,110.87132 19.1483055,110.874954 C19.1742327,110.884819 19.2017156,110.892089 19.2276428,110.901954 C19.3214995,110.935703 19.4153561,110.969971 19.5133611,110.998009 C19.5657341,111.013066 19.6201813,111.023969 19.6735914,111.03695 C19.7047041,111.044738 19.7347797,111.052526 19.7658924,111.059276 C19.7938938,111.065507 19.8208582,111.073814 19.8488596,111.079526 C19.9536056,111.101333 20.0604259,111.119505 20.1677647,111.134562 C20.2056184,111.139755 20.2439907,111.14287 20.2823631,111.147024 C20.3093274,111.150139 20.3357732,111.153254 20.3632561,111.15585 C20.4026655,111.160004 20.4410378,111.165715 20.4804472,111.168831 C20.5857118,111.177138 20.6909764,111.18285 20.7972781,111.185446 C20.830465,111.186484 20.8636518,111.184926 20.8968387,111.184926 C20.9253587,111.184926 20.9533601,111.184407 20.9823986,111.184407 C21.0306233,111.183888 21.0783294,111.185446 21.1265541,111.183369 C21.2458194,111.179215 21.3650847,111.170908 21.4827944,111.158966 C21.4962765,111.157408 21.5097587,111.154812 21.5237594,111.153254 C21.5553907,111.14962 21.5865033,111.143908 21.6181346,111.139755 C21.709917,111.127813 21.8027365,111.117428 21.8929634,111.100813 C21.9328913,111.093544 21.9691894,111.080045 22.0085989,111.071737 C22.1190489,111.048892 22.2248321,111.020854 22.3311337,110.99074 C22.3871366,110.975163 22.4467692,110.965817 22.5012165,110.948164 C22.5271437,110.939856 22.5473669,110.925318 22.5727756,110.916492 C22.7973056,110.838609 23.0130202,110.749304 23.2059189,110.636634 L46.3236852,97.1406513 C46.3371673,97.132863 46.350131,97.1250748 46.362576,97.1172865 C46.4237643,97.0804222 46.4673221,97.0373273 46.5222879,96.9983861 C46.599551,96.9433492 46.6819997,96.8898699 46.7468178,96.8311985 C46.7530403,96.8254871 46.7618556,96.8208142 46.7680781,96.815622 C46.8432671,96.7460471 46.9091223,96.6743952 46.9666808,96.6006666 C46.9796444,96.5840516 46.9884597,96.5663983 47.0009047,96.5497834 C47.0138684,96.53213 47.0247578,96.5144767 47.0366843,96.4963041 C47.0558705,96.467228 47.0786865,96.4381519 47.0952799,96.4085566 C47.1289853,96.3483276 47.1575053,96.2870601 47.1808398,96.2257926 C47.1844696,96.2164467 47.1855067,96.2065816 47.1891365,96.1972357 C47.1932849,96.1852937 47.1958776,96.173871 47.1995074,96.161929 C47.211434,96.1229878 47.2254347,96.0835274 47.2332128,96.0440669 C47.2451394,95.9827995 47.252399,95.9210127 47.2539546,95.859226 C47.2544732,95.8498801 47.2544732,95.8405343 47.2544732,95.8311884 L47.2612143,91.1468211 C47.2612143,91.2589718 47.2404725,91.3695648 47.206767,91.4786002 Z" id="Shape" fill="url(#linearGradient-127)" fill-rule="nonzero"></path>
  1662. <path d="M48.6716562,73.5942031 C50.0727644,74.4015841 50.0795055,75.7131238 48.6898053,76.5246585 L23.004205,91.5196182 C21.6145048,92.3306337 19.3552049,92.3342682 17.9540967,91.5268873 L1.29480648,81.9276208 C-0.106301693,81.1202398 -0.11770968,79.8081809 1.2719905,78.9971654 L26.9575909,64.0022057 C28.347291,63.1911902 30.6117764,63.1875557 32.012366,63.9949366 L48.6716562,73.5942031 Z" id="Shape" fill="url(#linearGradient-128)" fill-rule="nonzero"></path>
  1663. <path d="M49.6662252,75.4343048 C49.6620769,75.4472852 49.6594842,75.4607848 49.6553358,75.4737652 C49.6164449,75.5869543 49.5573308,75.6980666 49.4852531,75.8071019 C49.4722895,75.8268321 49.4598444,75.8465623 49.4458437,75.8657733 C49.3675434,75.9737703 49.2736868,76.0786519 49.1621997,76.1793798 C49.0901219,76.2448011 48.9978209,76.3045109 48.9117425,76.3657784 C48.8375906,76.4187384 48.7743281,76.4748138 48.6898053,76.5241393 L23.004205,91.519099 C22.84916,91.6094426 22.6801144,91.6862866 22.5058834,91.7569 C22.46077,91.7750725 22.4141009,91.7927259 22.3679504,91.8093408 C22.2595746,91.8488012 22.1454947,91.8804734 22.0319334,91.9126648 C21.9147422,91.9458946 21.796514,91.9770476 21.6751745,92.0019699 C21.5320561,92.0315653 21.3879007,92.0585645 21.2406339,92.0772563 C21.2053729,92.0819292 21.1711489,92.0881598 21.1358879,92.0917943 C20.9378037,92.1136014 20.7366083,92.1239857 20.5354129,92.1260626 C20.5032632,92.1265818 20.4716319,92.1265818 20.4394822,92.1265818 C20.2408795,92.1255434 20.0427953,92.1146398 19.8467854,92.0943904 C19.8172283,92.0912751 19.7876713,92.0881598 19.7581142,92.0845253 C19.5636599,92.0616798 19.3717983,92.0289692 19.1846036,91.9869127 C19.1498611,91.9791244 19.1161557,91.9702978 19.0819317,91.9619903 C18.9113305,91.9199338 18.7459147,91.8695699 18.5856843,91.8114177 C18.5571644,91.8010333 18.5270888,91.7932451 18.4990873,91.7823416 C18.3072258,91.7080937 18.1236609,91.6234614 17.9540967,91.5258488 L1.29480648,81.9265824 C0.589066944,81.5200362 0.235937904,80.9852437 0.236974994,80.4514895 L0.214677566,96.0663932 C0.214159021,96.6006666 0.56728806,97.1349399 1.27250905,97.5414861 L17.9317993,107.140753 C18.0930667,107.233692 18.2662607,107.316248 18.4477514,107.38738 C18.4570852,107.391015 18.4674561,107.393611 18.4767899,107.397245 C18.5047913,107.408149 18.5348669,107.415937 18.5633869,107.426321 C18.668133,107.464224 18.7723605,107.502646 18.8817734,107.53328 C18.9398505,107.549895 19.0005202,107.562356 19.0601529,107.576894 C19.0943768,107.585201 19.1275637,107.594028 19.1623062,107.601816 C19.1934189,107.608566 19.2234945,107.617912 19.2546072,107.624143 C19.3712798,107.648027 19.489508,107.668795 19.6087733,107.68541 C19.6507754,107.691122 19.6938147,107.694756 19.7358168,107.699429 C19.7653739,107.703063 19.7949309,107.706179 19.824488,107.709294 C19.8680457,107.713967 19.9116035,107.720198 19.9551613,107.723832 C20.0718339,107.733178 20.189025,107.739409 20.3067347,107.742005 C20.3435514,107.743043 20.380368,107.740966 20.4171847,107.741485 C20.4493345,107.741485 20.4804472,107.740966 20.512597,107.740966 C20.5660071,107.740447 20.6194172,107.742005 20.6723088,107.739928 C20.8045377,107.735255 20.9367667,107.726428 21.0679585,107.712929 C21.0829963,107.711371 21.0980341,107.708256 21.1130719,107.706698 C21.148333,107.703063 21.1825569,107.696314 21.217818,107.691641 C21.3199713,107.67866 21.4226432,107.666718 21.5227223,107.648546 C21.5667986,107.640238 21.6077637,107.625181 21.65184,107.616354 C21.7742166,107.590913 21.8919263,107.55976 22.0096359,107.52653 C22.0718613,107.508877 22.1382351,107.499012 22.1989048,107.479281 C22.2492037,107.462666 22.2953542,107.441379 22.3446159,107.423725 C22.3912849,107.406591 22.4374354,107.389457 22.4835859,107.370765 C22.657817,107.300152 22.8268626,107.223827 22.9819075,107.132964 L48.6675079,92.1380046 C48.6820271,92.1291779 48.6970649,92.1208704 48.7110656,92.1120437 C48.778995,92.0710257 48.8272197,92.023777 48.888408,91.9801629 C48.975005,91.9183762 49.067306,91.8586663 49.1399022,91.7932451 C49.1466433,91.7870145 49.1570142,91.7818223 49.1637553,91.7755917 C49.247241,91.6982286 49.3213929,91.6182693 49.3851739,91.5362331 C49.3996932,91.5175414 49.4095455,91.4983304 49.4230277,91.4796386 C49.4370284,91.4599084 49.4494735,91.4401782 49.4624371,91.420448 C49.484216,91.3877374 49.5096247,91.355546 49.5282923,91.3217969 C49.5661461,91.254818 49.5977773,91.1868007 49.623186,91.1182642 C49.6273344,91.1078799 49.6283715,91.0974956 49.6320013,91.0871113 C49.6366682,91.0741309 49.6392609,91.0611505 49.6428907,91.04817 C49.6563729,91.0045559 49.6714107,90.9609418 49.680226,90.9168084 C49.6937081,90.8487911 49.7014863,90.7802546 49.7035605,90.711718 C49.704079,90.7013337 49.704079,90.6909494 49.704079,90.6800459 L49.7264408,75.0651422 C49.7274135,75.189754 49.704079,75.3128082 49.6662252,75.4343048 Z" id="Shape" fill="url(#linearGradient-129)" fill-rule="nonzero"></path>
  1664. <g transform="translate(0.000000, 74.767112)" id="Clipped">
  1665. <g>
  1666. <mask id="mask-131" fill="white">
  1667. <use xlink:href="#path-130"></use>
  1668. </mask>
  1669. <g id="SVGID_99_"></g>
  1670. <g id="Group" opacity="0.1" mask="url(#mask-131)" fill="#FEFEFE" fill-rule="nonzero">
  1671. <g transform="translate(-3.629814, -9.345889)" id="Shape">
  1672. <polygon points="6.3469889 44.1058464 2.58961296 41.9412346 25.4766268 1.56543641 29.2334842 3.73004815"></polygon>
  1673. <polygon points="2.05291904 41.6317819 0.442837298 40.7039428 23.3298511 0.328144548 24.9399329 1.25598364"></polygon>
  1674. <polygon points="8.49376456 45.3431382 7.95707065 45.0336855 30.8440845 4.65788724 31.3807784 4.96734001"></polygon>
  1675. </g>
  1676. </g>
  1677. </g>
  1678. <g>
  1679. <mask id="mask-133" fill="white">
  1680. <use xlink:href="#path-132"></use>
  1681. </mask>
  1682. <g id="SVGID_99_"></g>
  1683. <g id="Group" opacity="0.1" mask="url(#mask-133)" fill="#FEFEFE" fill-rule="nonzero">
  1684. <g transform="translate(27.482877, -15.057266)" id="Shape">
  1685. <polygon points="5.94356101 62.1423737 2.1924076 64.317889 14.4451037 3.5602645 18.1957386 1.38474922"></polygon>
  1686. <polygon points="1.65675078 64.6283802 0.0492617603 65.5608923 12.3014394 4.80326774 13.9089284 3.87127492"></polygon>
  1687. <polygon points="8.08670686 60.8988513 7.55105003 61.2098617 19.8032276 0.452237185 20.339403 0.141745983"></polygon>
  1688. </g>
  1689. </g>
  1690. </g>
  1691. </g>
  1692. <path d="M46.2796089,68.7493981 C47.5412285,69.4763005 47.5495252,70.6569979 46.3008692,71.3859772 L23.1831029,84.8819602 C21.9318542,85.6124972 19.8960472,85.6156124 18.6344275,84.88871 L3.63966627,76.2489548 C2.38063938,75.52361 2.37234267,74.3429126 3.62359138,73.6123757 L26.7413577,60.1163927 C27.9900136,59.3874133 30.0258207,59.384298 31.2848476,60.1096429 L46.2796089,68.7493981 Z" id="Shape" fill="url(#radialGradient-134)" fill-rule="nonzero"></path>
  1693. <path d="M47.1766914,70.4072549 C47.1730616,70.4191969 47.1704689,70.4306197 47.1668391,70.4425616 C47.131578,70.544328 47.079205,70.6440175 47.0143869,70.7416301 C47.0024604,70.7592834 46.9915709,70.777456 46.9786073,70.7951093 C46.9086038,70.8922027 46.824081,70.9861808 46.7245203,71.0765244 C46.6597022,71.1351958 46.5772536,71.1886751 46.4999904,71.243712 C46.4336167,71.2909607 46.3765768,71.3418438 46.3008692,71.3859772 L23.1831029,84.8819602 C22.9902042,84.99463 22.773971,85.0839352 22.5499597,85.1618176 C22.4711409,85.1893361 22.3897293,85.21322 22.3077992,85.2360655 C22.2020161,85.26618 22.0951958,85.2942177 21.9852643,85.3170632 C21.8566652,85.3435432 21.7265105,85.3679464 21.5942815,85.3850805 C21.5626503,85.3892342 21.5320561,85.3949456 21.4999064,85.3985801 C21.3210084,85.4177911 21.1400362,85.4276562 20.9585455,85.4297331 C20.9300256,85.4297331 20.9015056,85.4302523 20.8729856,85.4302523 C20.6940877,85.4292139 20.5157082,85.4193488 20.3388845,85.4011762 C20.3119201,85.3985801 20.2854743,85.3954648 20.2590285,85.3923495 C20.0837604,85.3715809 19.911085,85.3419856 19.7425579,85.304602 C19.7114452,85.2978522 19.6813696,85.2895448 19.6502569,85.2822757 C19.4967676,85.244373 19.3479453,85.1992012 19.2043083,85.1467603 C19.1783811,85.1374145 19.1508982,85.1301454 19.124971,85.1202803 C18.9522955,85.0538207 18.7868797,84.9774959 18.6344275,84.8892292 L3.64018481,76.249474 C3.00704156,75.8844651 2.69021066,75.4047095 2.6907292,74.9244346 L2.68398812,79.6088019 C2.68346957,80.0885575 3.00030047,80.5688324 3.63344373,80.9338413 L18.628205,89.5735964 C18.7733976,89.6571902 18.9294796,89.7314381 19.0928212,89.7958209 C19.1011179,89.7989362 19.1104517,89.8015323 19.119267,89.8046476 C19.1446757,89.8145127 19.17164,89.8217817 19.1970487,89.8311276 C19.2914239,89.8653959 19.3852805,89.8996641 19.483804,89.9277018 C19.536177,89.9427591 19.5911428,89.9536626 19.6445529,89.9671622 C19.6751471,89.9744312 19.7047041,89.9822195 19.7358168,89.9894885 C19.7638182,89.9957191 19.7907826,90.0040266 19.8193025,90.0097379 C19.9240486,90.031545 20.0308688,90.0497176 20.1382076,90.0647748 C20.1760614,90.069967 20.2149522,90.0730823 20.2533246,90.077236 C20.2797703,90.0803513 20.3062161,90.0834666 20.3326619,90.0860627 C20.3720713,90.0902164 20.4109622,90.0959278 20.4508901,90.0990431 C20.5561547,90.1073506 20.6614193,90.1130619 20.767721,90.115658 C20.8009079,90.1166964 20.8340948,90.1151388 20.8672816,90.1151388 C20.8963202,90.1151388 20.9243216,90.1146196 20.9533601,90.1146196 C21.0010662,90.1141004 21.0492909,90.115658 21.096997,90.1135811 C21.2162623,90.1094274 21.3355276,90.10112 21.4532373,90.089178 C21.4667195,90.0876203 21.4802017,90.0850243 21.4936838,90.0834666 C21.5258336,90.0798321 21.5569463,90.0741207 21.5890961,90.069967 C21.6808785,90.058025 21.7731795,90.0476407 21.8634063,90.031545 C21.9033342,90.024276 21.9401509,90.0107764 21.9795603,90.0024689 C22.0894918,89.9796234 22.195275,89.9515857 22.3010581,89.9219904 C22.357061,89.9058947 22.4172122,89.8970681 22.4716594,89.8794147 C22.4975866,89.8711072 22.5178099,89.8565692 22.5432186,89.8477425 C22.7677485,89.7698601 22.9834632,89.680555 23.1763618,89.5678851 L46.2941281,76.0719021 C46.3076103,76.0641139 46.3205739,76.0563256 46.333019,76.0485374 C46.3942073,76.011673 46.437765,75.9685781 46.4927308,75.9296369 C46.569994,75.8746 46.6524426,75.8211208 46.7172607,75.7624493 C46.7234833,75.756738 46.7322985,75.752065 46.7385211,75.7468729 C46.8137101,75.6772979 46.8795653,75.6056461 46.9371237,75.5324366 C46.9500873,75.5158217 46.9594212,75.4981684 46.9713477,75.4810342 C46.9843113,75.4633809 46.9952008,75.4457275 47.0071273,75.4280742 C47.0263134,75.3984789 47.0491294,75.369922 47.0662414,75.3403267 C47.0999468,75.2800976 47.1284668,75.2188301 47.1518013,75.1575626 C47.1554311,75.1482167 47.1564682,75.1383516 47.160098,75.1290058 C47.1642464,75.1170638 47.1668391,75.105641 47.1704689,75.0936991 C47.1823954,75.0547579 47.1963962,75.0152974 47.2041743,74.975837 C47.2161009,74.9145695 47.2233605,74.8527828 47.2249161,74.7909961 C47.2254347,74.7816502 47.2254347,74.7723043 47.2254347,74.7629584 L47.2321757,70.0785912 C47.2311387,70.1876265 47.2109154,70.2982196 47.1766914,70.4072549 Z" id="Shape" fill="url(#linearGradient-135)" fill-rule="nonzero"></path>
  1694. <path d="M48.6420992,52.5124735 C50.0432073,53.3198545 50.0499484,54.6313943 48.6602482,55.442929 L22.9746479,70.4378887 C21.5849477,71.2489042 19.3256478,71.2525387 17.9245397,70.4451577 L1.26524942,60.8458912 C-0.135858749,60.0385103 -0.147266736,58.7264513 1.24243345,57.9154358 L26.9280338,42.9204761 C28.317734,42.1094606 30.5822193,42.1058261 31.9828089,42.9132071 L48.6420992,52.5124735 Z" id="Shape" fill="url(#linearGradient-136)" fill-rule="nonzero"></path>
  1695. <path d="M49.6366682,54.3530945 C49.6325198,54.3660749 49.6299271,54.3795745 49.6257787,54.3925549 C49.5868879,54.505744 49.5277738,54.6168562 49.455696,54.7258916 C49.4427324,54.7456218 49.4302873,54.765352 49.4162866,54.784563 C49.3379864,54.8925599 49.2441297,54.9974416 49.1326426,55.0981695 C49.0605649,55.1635907 48.9682639,55.2233006 48.8821854,55.2845681 C48.8080335,55.3375281 48.7447711,55.3936034 48.6602482,55.442929 L22.9746479,70.4378887 C22.819603,70.5282323 22.6505574,70.6050763 22.4763263,70.6756896 C22.4312129,70.6938622 22.3845439,70.7115155 22.3383934,70.7281305 C22.2300175,70.7675909 22.1159376,70.7992631 22.0023763,70.8314545 C21.8851852,70.8646843 21.766957,70.8958372 21.6456175,70.9207596 C21.5024991,70.9503549 21.3583436,70.9773542 21.2110769,70.9960459 C21.1758158,71.0007189 21.1415919,71.0069495 21.1063308,71.010584 C20.9082467,71.0323911 20.7070513,71.0427754 20.5058559,71.0448523 C20.4737061,71.0453715 20.4420749,71.0453715 20.4099251,71.0453715 C20.2113224,71.044333 20.0132383,71.0334295 19.8172283,71.0131801 C19.7876713,71.0100648 19.7581142,71.0069495 19.7285572,71.003315 C19.5341029,70.9804695 19.3422413,70.9477588 19.1550466,70.9057023 C19.1203041,70.8979141 19.0865987,70.8890874 19.0523747,70.88078 C18.8817734,70.8387235 18.7163576,70.7883595 18.5561273,70.7302073 C18.5276073,70.719823 18.4975317,70.7120348 18.4695303,70.7011312 C18.2776687,70.6268833 18.0941038,70.5422511 17.9245397,70.4446385 L1.26473088,60.845372 C0.558991343,60.4388259 0.205862303,59.9040333 0.206899393,59.3702792 L0.184601965,74.9851829 C0.18408342,75.5194562 0.537212459,76.0537295 1.24243345,76.4602757 L17.9017237,86.0595422 C18.0629911,86.1524819 18.2361851,86.2350372 18.4176758,86.3061698 C18.4270096,86.3098043 18.4373805,86.3124004 18.4467143,86.3160349 C18.4747157,86.3269384 18.5047913,86.3347267 18.5333113,86.345111 C18.6380574,86.3830138 18.7422849,86.4214358 18.8516978,86.4520695 C18.9097749,86.4686844 18.9704446,86.4811456 19.0300773,86.4956837 C19.0643012,86.5039911 19.0974881,86.5128178 19.1322306,86.520606 C19.1633433,86.5273558 19.1934189,86.5367017 19.2245316,86.5429323 C19.3406856,86.5668163 19.4594324,86.5875849 19.5786977,86.6041998 C19.6206998,86.6099112 19.6637391,86.6135457 19.7062597,86.6182187 C19.7358168,86.6218532 19.7653739,86.6249685 19.7949309,86.6280838 C19.8384887,86.6327567 19.8820464,86.6389873 19.9256042,86.6426218 C20.0422768,86.6519677 20.1594679,86.6581983 20.2771776,86.6607944 C20.3139943,86.6618328 20.350811,86.6597559 20.3876277,86.6602752 C20.4197774,86.6602752 20.4508901,86.6597559 20.4830399,86.6597559 C20.53645,86.6592367 20.5898602,86.6607944 20.6427517,86.6587175 C20.7749807,86.6540446 20.9072096,86.6452179 21.0384014,86.6317183 C21.0534392,86.6301606 21.068477,86.6270453 21.0835148,86.6254877 C21.1187759,86.6218532 21.1529999,86.6151034 21.1882609,86.6104304 C21.2904142,86.59745 21.3930861,86.585508 21.4931653,86.5673355 C21.5372416,86.559028 21.5782066,86.5439708 21.6222829,86.5351441 C21.7446595,86.5097025 21.8623692,86.4785495 21.9800789,86.4453197 C22.0423043,86.4276664 22.108678,86.4178013 22.1693478,86.398071 C22.2196466,86.3814561 22.2657971,86.3601683 22.3150589,86.3425149 C22.3617279,86.3253808 22.4078784,86.3082467 22.4535103,86.2895549 C22.6277414,86.2189415 22.796787,86.1426167 22.9518319,86.0517539 L48.6374323,71.0567942 C48.6519515,71.0479675 48.6669893,71.0396601 48.68099,71.0308334 C48.7489194,70.9898153 48.7971441,70.9425667 48.8583324,70.8989525 C48.9449294,70.8371658 49.0372304,70.777456 49.1098266,70.7120348 C49.1165677,70.7058042 49.1269386,70.700612 49.1336797,70.6943814 C49.2171654,70.6170182 49.2913173,70.5370589 49.3550983,70.4550228 C49.3696176,70.436331 49.3794699,70.41712 49.3929521,70.3984283 C49.4069528,70.378698 49.4193979,70.3589678 49.4328801,70.3392376 C49.454659,70.306527 49.4800676,70.2743356 49.4987353,70.2405866 C49.536589,70.1736077 49.5682203,70.1055904 49.593629,70.0370539 C49.5977773,70.0266696 49.5988144,70.0162852 49.6024442,70.0059009 C49.6071111,69.9929205 49.6097039,69.9799401 49.6133337,69.9669597 C49.6268158,69.9233456 49.6418536,69.8797314 49.6506689,69.8355981 C49.6641511,69.7675808 49.6719292,69.6990442 49.6740034,69.6305077 C49.674522,69.6201234 49.674522,69.6097391 49.674522,69.5988355 L49.6968364,53.9839318 C49.6973379,54.1080245 49.674522,54.2310787 49.6366682,54.3530945 Z" id="Shape" fill="url(#linearGradient-137)" fill-rule="nonzero"></path>
  1696. <g transform="translate(0.000000, 53.479254)" id="Clipped">
  1697. <g>
  1698. <mask id="mask-139" fill="white">
  1699. <use xlink:href="#path-138"></use>
  1700. </mask>
  1701. <g id="SVGID_105_"></g>
  1702. <g id="Group" opacity="0.1" mask="url(#mask-139)" fill="#FEFEFE" fill-rule="nonzero">
  1703. <g transform="translate(-3.629814, -8.826673)" id="Shape">
  1704. <polygon points="6.3169133 43.7932783 2.5600559 41.6281473 25.4470697 1.25234913 29.2039271 3.41748009"></polygon>
  1705. <polygon points="2.02336198 41.3192138 0.413280241 40.3913747 23.2997755 0.0155764817 24.9098573 0.943415575"></polygon>
  1706. <polygon points="8.46368896 45.0300509 7.92699504 44.7211174 30.8140089 4.34531918 31.3507028 4.65425273"></polygon>
  1707. </g>
  1708. </g>
  1709. </g>
  1710. <g>
  1711. <mask id="mask-141" fill="white">
  1712. <use xlink:href="#path-140"></use>
  1713. </mask>
  1714. <g id="SVGID_105_"></g>
  1715. <g id="Group" opacity="0.1" mask="url(#mask-141)" fill="#FEFEFE" fill-rule="nonzero">
  1716. <g transform="translate(27.482877, -15.057266)" id="Shape">
  1717. <polygon points="5.91348541 62.3485025 2.16285055 64.5240178 14.4150281 3.76639328 18.1661816 1.59139721"></polygon>
  1718. <polygon points="1.62667518 64.8350282 0.0191861593 65.767021 12.2718823 5.00991573 13.8793713 4.07740369"></polygon>
  1719. <polygon points="8.05663126 61.1054993 7.52097443 61.4165097 19.7736706 0.658885176 20.3093274 0.347874758"></polygon>
  1720. </g>
  1721. </g>
  1722. </g>
  1723. </g>
  1724. <path d="M44.783607,53.2954514 C46.0110026,54.0026236 46.0192994,55.1578793 44.8017561,55.8686861 L23.3962249,68.3651782 C22.1786816,69.075985 20.1895435,69.0770234 18.9621479,68.3698511 L5.08018385,60.3708086 C3.85019547,59.6620786 3.8424173,58.5099382 5.05944205,57.7991314 L26.4649733,45.3026394 C27.6825165,44.5918326 29.6716546,44.5876789 30.9016429,45.2964088 L44.783607,53.2954514 Z M23.1685837,68.2338165 L44.5741149,55.7373245 C45.6677259,55.0986887 45.6604663,54.0623335 44.55804,53.426813 L30.6760759,45.4277704 C29.5736496,44.79225 27.7862255,44.7948461 26.6926144,45.4334818 L5.28708324,57.9299739 C4.19347216,58.5686096 4.20073179,59.6049649 5.30315813,60.2404853 L19.1851222,68.2395279 C20.2875485,68.8750483 22.0749726,68.8724523 23.1685837,68.2338165 L23.1685837,68.2338165 Z" id="Shape" fill="#D1D1D1" fill-rule="nonzero"></path>
  1725. <g transform="translate(2.592724, 38.421988)" fill-rule="nonzero" id="Shape">
  1726. <path d="M43.656809,9.25606464 C44.9184286,9.98296712 44.9267254,11.1636644 43.6780694,11.8926438 L20.5603031,25.3886267 C19.3090544,26.1191637 17.2732473,26.122279 16.0116277,25.3948573 L1.01686644,16.7551021 C-0.242160443,16.0297573 -0.25045716,14.84906 1.00079155,14.118523 L24.1185578,0.622540052 C25.3672138,-0.106439292 27.4030209,-0.109554588 28.6620478,0.616309459 L43.656809,9.25606464 Z" fill="url(#radialGradient-142)"></path>
  1727. <path d="M44.5544102,10.9144407 C44.5507804,10.9263827 44.5481876,10.9378054 44.5445578,10.9497474 C44.5092968,11.0515138 44.4569237,11.1512032 44.3921056,11.2488159 C44.3801791,11.2664692 44.3692897,11.2846418 44.356326,11.3022951 C44.2863225,11.3993885 44.2017997,11.4938858 44.1022391,11.5837102 C44.037421,11.6423816 43.9549723,11.6958609 43.8777091,11.7508978 C43.8113354,11.7981465 43.7542955,11.8490296 43.6785879,11.893163 L20.5608216,25.389146 C20.367923,25.5018158 20.1516898,25.591121 19.9276784,25.6690034 C19.8488596,25.6965219 19.767448,25.7204058 19.6849994,25.7437705 C19.5792163,25.7733658 19.4729146,25.8019227 19.3635016,25.824249 C19.2349025,25.850729 19.1052663,25.8751322 18.9725188,25.8922663 C18.9408876,25.89642 18.9092563,25.9021314 18.8776251,25.9057659 C18.6992457,25.9249769 18.5182735,25.934842 18.3367828,25.9363997 C18.3082628,25.9363997 18.2792243,25.9369189 18.2507044,25.9369189 C18.0718064,25.9358805 17.893427,25.9260154 17.7166032,25.9078428 C17.6901574,25.9052467 17.6637116,25.9021314 17.6372658,25.8990161 C17.4614791,25.8782475 17.2888037,25.8486522 17.1197581,25.8107494 C17.0891639,25.8039996 17.0590883,25.7962113 17.0284942,25.7884231 C16.8744863,25.7505203 16.7251454,25.7048293 16.5804714,25.6523885 C16.5550627,25.6430426 16.5280984,25.6357736 16.5026897,25.6264277 C16.3300143,25.559968 16.1645985,25.4836433 16.0116277,25.3953765 L1.01738499,16.7556214 C0.38424173,16.3906125 0.0674108298,15.9108568 0.0679293747,15.430582 L0.0611882917,20.1149493 C0.0606697469,20.5947049 0.377500647,21.0749797 1.0106439,21.4399886 L16.0054052,30.0797438 C16.1505977,30.1633376 16.3066797,30.2375855 16.4700214,30.3019683 C16.4783181,30.3050836 16.4876519,30.3071604 16.4959486,30.310795 C16.5218758,30.3206601 16.5493587,30.3279291 16.575286,30.337275 C16.6691426,30.371024 16.7629992,30.4052923 16.8610042,30.4333299 C16.9133772,30.4483872 16.9678244,30.4592907 17.0212345,30.4722711 C17.0523472,30.4800594 17.0824228,30.4878476 17.1135355,30.4945974 C17.1415369,30.500828 17.1685013,30.5091355 17.1965027,30.5148469 C17.3012488,30.5366539 17.408069,30.5548265 17.5154078,30.5698838 C17.5532615,30.5750759 17.5916339,30.5781912 17.6300062,30.582345 C17.6569705,30.5854603 17.6834163,30.5885755 17.7108992,30.5911716 C17.7503086,30.5953254 17.7886809,30.6010367 17.8280903,30.604152 C17.9333549,30.6124595 18.0386195,30.6181709 18.1444027,30.6207669 C18.1775895,30.6212862 18.2107764,30.6197285 18.2439633,30.6202477 C18.2730018,30.6202477 18.3015218,30.6197285 18.3300417,30.6197285 C18.3777478,30.6192093 18.4259725,30.6207669 18.4736786,30.6186901 C18.592944,30.6145363 18.7122093,30.6062289 18.829919,30.5942869 C18.8434011,30.5927293 18.8568833,30.5901332 18.8703655,30.5885755 C18.9025152,30.584941 18.9336279,30.5792297 18.9657777,30.5750759 C19.0575601,30.5636532 19.1498611,30.5527496 19.2400879,30.5366539 C19.2800159,30.5293849 19.316314,30.5158853 19.3557234,30.5075778 C19.4661735,30.4847323 19.5719566,30.4566947 19.6782583,30.4265801 C19.7342612,30.4110037 19.7938938,30.4016578 19.848341,30.3840044 C19.8742683,30.375697 19.8944915,30.3611589 19.9199002,30.3523322 C20.1444301,30.2744498 20.3601448,30.1851447 20.5530435,30.0724748 L43.6708098,16.5764918 C43.6842919,16.5687036 43.6972555,16.5609153 43.7097006,16.5531271 C43.7708889,16.5162628 43.8144467,16.473687 43.8694124,16.4347458 C43.9471942,16.3797089 44.0296428,16.3262297 44.0944609,16.2670391 C44.1006834,16.2613277 44.1094987,16.2566547 44.1157212,16.2514626 C44.1909102,16.1818876 44.2567654,16.1102358 44.3143239,16.0370263 C44.3272875,16.0204114 44.3361028,16.0027581 44.3485479,15.9861432 C44.3615115,15.9684898 44.3724009,15.9508365 44.3843275,15.9326639 C44.4035136,15.9030686 44.4263296,15.8745117 44.442923,15.8449164 C44.4766284,15.7846873 44.5051484,15.7234198 44.5284829,15.6616331 C44.5321127,15.6522872 44.5336684,15.6429414 44.5367796,15.6330763 C44.540928,15.6211343 44.5430022,15.6097115 44.546632,15.5977696 C44.5585585,15.5588284 44.5725592,15.5193679 44.5803374,15.4799075 C44.5922639,15.41864 44.5995236,15.3568533 44.6010792,15.2950666 C44.6010792,15.2857207 44.6015977,15.2763748 44.6015977,15.2670289 L44.6083575,10.5826617 C44.6088574,10.6942931 44.5881156,10.8048861 44.5544102,10.9144407 Z" fill="url(#linearGradient-143)"></path>
  1728. </g>
  1729. <path d="M48.6120236,31.4312632 C50.0131317,32.2386442 50.0198728,33.5501839 48.6301726,34.3617186 L22.9445723,49.3566783 C21.5548721,50.1676938 19.2955722,50.1713283 17.8944641,49.3639474 L1.23517382,39.7646809 C-0.16593435,38.9572999 -0.177342337,37.645241 1.21235785,36.8342255 L26.8979582,21.8392658 C28.2876584,21.0282503 30.5521437,21.0246158 31.9527333,21.8319968 L48.6120236,31.4312632 Z" id="Shape" fill="url(#linearGradient-144)" fill-rule="nonzero"></path>
  1730. <path d="M49.6065926,33.2713649 C49.6024442,33.2843453 49.5998515,33.2978449 49.5957031,33.3108253 C49.5568123,33.4240144 49.4976982,33.5351267 49.4256204,33.644162 C49.4126568,33.6638923 49.4002117,33.6836225 49.386211,33.7028335 C49.3079108,33.8108304 49.2140541,33.915712 49.102567,34.01644 C49.0299707,34.0818612 48.9381883,34.141571 48.8521098,34.2028385 C48.7779579,34.2557986 48.7146955,34.3118739 48.6301726,34.3611994 L22.9445723,49.3561591 C22.7895274,49.4465027 22.6204818,49.5233467 22.4462507,49.5939601 C22.4011373,49.6121326 22.3544683,49.629786 22.3083178,49.6464009 C22.1999419,49.6858613 22.085862,49.7175335 21.9723007,49.7497249 C21.8551096,49.7829547 21.7368814,49.8141077 21.6155419,49.8390301 C21.4724235,49.8686254 21.328268,49.8956246 21.1810013,49.9143164 C21.1457402,49.9189893 21.1115163,49.9252199 21.0762552,49.9288544 C20.8781711,49.9506615 20.6769757,49.9610458 20.4757803,49.9631227 C20.4436305,49.9636419 20.4119993,49.9636419 20.3798495,49.9636419 C20.1812468,49.9626035 19.9831627,49.9516999 19.7871527,49.9314505 C19.7575957,49.9283352 19.7280386,49.9252199 19.6984816,49.9215854 C19.5040273,49.8987399 19.3121657,49.8660293 19.124971,49.8239728 C19.0902285,49.8161846 19.0565231,49.8073579 19.0222991,49.7990504 C18.8516978,49.7569939 18.686282,49.70663 18.5260517,49.6484778 C18.4975317,49.6380934 18.4674561,49.6303052 18.4394547,49.6194017 C18.2475931,49.5451538 18.0640282,49.4605216 17.8944641,49.3629089 L1.23465528,39.7636425 C0.528915742,39.3570963 0.175786702,38.8223038 0.176823792,38.2885497 L0.154526364,53.9034534 C0.154007819,54.4377267 0.507136858,54.972 1.21235785,55.3785462 L17.8716481,64.9778126 C18.0334341,65.0707523 18.2061095,65.1533077 18.3876002,65.2244403 C18.396934,65.2280748 18.4073049,65.2306708 18.4166387,65.2343054 C18.4446401,65.2452089 18.4747157,65.2529971 18.5032357,65.2633815 C18.6079818,65.3012842 18.7122093,65.3397062 18.8216222,65.37034 C18.8796993,65.3869549 18.940369,65.3994161 19.0000017,65.4139541 C19.0342256,65.4222616 19.0674125,65.4310882 19.102155,65.4388765 C19.1332677,65.4456263 19.1633433,65.4549722 19.194456,65.4612028 C19.31061,65.4850867 19.4293568,65.5058554 19.5486221,65.5224703 C19.5906242,65.5281816 19.6336635,65.5318162 19.6761841,65.5364891 C19.7057412,65.5401236 19.7352983,65.5432389 19.7648553,65.5463542 C19.8084131,65.5510272 19.8519708,65.5572577 19.8955286,65.5608923 C20.0122012,65.5702381 20.1293923,65.5764687 20.247102,65.5790648 C20.2839187,65.5801033 20.3207354,65.5780264 20.3575521,65.5785456 C20.3897018,65.5785456 20.4208145,65.5780264 20.4529643,65.5780264 C20.5063744,65.5775072 20.5597846,65.5790648 20.6126761,65.576988 C20.7449051,65.572315 20.877134,65.5634883 21.0083258,65.5499887 C21.0238822,65.5484311 21.0384014,65.5453158 21.0534392,65.5437581 C21.0887003,65.5401236 21.1229243,65.5333738 21.1581853,65.5287009 C21.2603386,65.5157205 21.3630105,65.5037785 21.4630897,65.4856059 C21.507166,65.4772985 21.548131,65.4622412 21.5922073,65.4534145 C21.7145839,65.4279729 21.8322936,65.39682 21.9500033,65.3635902 C22.0122287,65.3459368 22.0786024,65.3360717 22.1392722,65.3163415 C22.189571,65.2997266 22.23624,65.2784387 22.2849833,65.2607854 C22.3316523,65.2436512 22.3778028,65.2265171 22.4234347,65.2078253 C22.5976658,65.137212 22.7667114,65.0608872 22.9217563,64.9700244 L48.6073567,49.9750647 C48.6218759,49.966238 48.6369137,49.9579305 48.6509144,49.9491039 C48.7188438,49.9080858 48.7670685,49.8608371 48.8282568,49.817223 C48.9148538,49.7554363 49.0071547,49.6957264 49.079751,49.6303052 C49.0864921,49.6240746 49.096863,49.6188825 49.1036041,49.6126519 C49.1870898,49.5352887 49.2607232,49.4553294 49.3250227,49.3732933 C49.339542,49.3546015 49.3493943,49.3353905 49.3628765,49.3166987 C49.3768772,49.2969685 49.3893223,49.2772383 49.4028045,49.2575081 C49.4245833,49.2247975 49.449992,49.1926061 49.4686597,49.158857 C49.5065134,49.0918782 49.5381447,49.0238609 49.5635534,48.9553243 C49.5677017,48.94494 49.5687388,48.9345557 49.5723686,48.9241714 C49.5770355,48.911191 49.5796283,48.8982106 49.5832581,48.8852302 C49.5967402,48.841616 49.611778,48.7980019 49.6205933,48.7538685 C49.6340755,48.6858512 49.6418536,48.6173147 49.6439278,48.5487782 C49.6444464,48.5383938 49.6444464,48.5280095 49.6444464,48.517106 L49.6668081,32.9022023 C49.6677809,33.0268141 49.6444464,33.1498684 49.6065926,33.2713649 Z" id="Shape" fill="url(#linearGradient-145)" fill-rule="nonzero"></path>
  1731. <g transform="translate(0.000000, 32.710612)" id="Clipped">
  1732. <g>
  1733. <mask id="mask-147" fill="white">
  1734. <use xlink:href="#path-146"></use>
  1735. </mask>
  1736. <g id="SVGID_111_"></g>
  1737. <g id="Group" opacity="0.1" mask="url(#mask-147)" fill="#FEFEFE" fill-rule="nonzero">
  1738. <g transform="translate(-3.629814, -9.345889)" id="Shape">
  1739. <polygon points="6.28735624 43.9994071 2.5299803 41.8347953 25.4169941 1.45899712 29.1738515 3.62360886"></polygon>
  1740. <polygon points="1.99328638 41.5253426 0.38320464 40.5975035 23.2702185 0.221705256 24.8803002 1.14954435"></polygon>
  1741. <polygon points="8.4341319 45.2366989 7.89743799 44.9272462 30.7839333 4.55144795 31.3206272 4.86090072"></polygon>
  1742. </g>
  1743. </g>
  1744. </g>
  1745. <g>
  1746. <mask id="mask-149" fill="white">
  1747. <use xlink:href="#path-148"></use>
  1748. </mask>
  1749. <g id="SVGID_111_"></g>
  1750. <g id="Group" opacity="0.1" mask="url(#mask-149)" fill="#FEFEFE" fill-rule="nonzero">
  1751. <g transform="translate(26.964332, -15.057266)" id="Shape">
  1752. <polygon points="6.40195466 62.0359345 2.65131979 64.2114497 14.9034974 3.45382521 18.6546508 1.27830993"></polygon>
  1753. <polygon points="2.11514442 64.5219409 0.507655403 65.454453 12.7603515 4.69682845 14.3678406 3.76483563"></polygon>
  1754. <polygon points="8.54561904 60.7929312 8.00944367 61.1034224 20.2621398 0.345797894 20.7977966 0.0353066919"></polygon>
  1755. </g>
  1756. </g>
  1757. </g>
  1758. </g>
  1759. <g transform="translate(2.592724, 17.134130)" fill-rule="nonzero" id="Shape">
  1760. <path d="M43.627252,9.47257774 C44.8888716,10.1994802 44.8971683,11.3801775 43.6485123,12.1091569 L20.530746,25.6051398 C19.2794973,26.3356768 17.2436903,26.3387921 15.9820707,25.6118896 L0.987309385,16.9721345 C-0.271717499,16.2467896 -0.280014216,15.0660923 0.971234495,14.3355553 L24.0890008,0.839572364 C25.3376568,0.11059302 27.3734638,0.107477724 28.6324907,0.832822555 L43.627252,9.47257774 Z" fill="url(#linearGradient-150)"></path>
  1761. <path d="M44.5243346,11.1309538 C44.5207048,11.1428958 44.518112,11.1543185 44.5144822,11.1662605 C44.4792212,11.2680269 44.4268481,11.3677163 44.36203,11.465329 C44.3501035,11.4829823 44.3392141,11.5011549 44.3262504,11.5188082 C44.2562469,11.6159016 44.1717241,11.7098797 44.0721635,11.8002233 C44.0073454,11.8588947 43.9243782,11.912374 43.8465965,11.9679301 C43.7802227,12.0151788 43.7237013,12.0655427 43.6479938,12.1096761 L20.5302275,25.6056591 C20.3373288,25.7183289 20.1210956,25.8076341 19.8970842,25.8855165 C19.8182654,25.913035 19.7368539,25.9369189 19.6549238,25.9597644 C19.5491407,25.9898789 19.4423204,26.0179166 19.3323889,26.0407621 C19.2037898,26.0672421 19.0746721,26.0916453 18.9419246,26.1082602 C18.9097749,26.1124139 18.8786622,26.1181253 18.8465124,26.1217598 C18.668133,26.1409708 18.4871608,26.1508359 18.3056701,26.1523936 C18.2771501,26.1523936 18.2481116,26.1529128 18.2195917,26.1529128 C18.0412122,26.1518743 17.8628328,26.1420092 17.686009,26.1238367 C17.6590447,26.1212406 17.6320804,26.1181253 17.605116,26.11501 C17.4298479,26.0942414 17.2571724,26.064646 17.0886454,26.0272625 C17.0575327,26.0205127 17.0274571,26.0122052 16.9963444,26.0049362 C16.8428551,25.9670334 16.6940327,25.9218616 16.5503958,25.86994 C16.5244686,25.8605941 16.4969857,25.8533251 16.4710585,25.84346 C16.298383,25.7770003 16.1334858,25.7006756 15.980515,25.6124089 L0.98575375,16.9726537 C0.352610495,16.6076448 0.0357795943,16.1278892 0.0362981391,15.6476143 L0.0295570562,20.3319816 C0.0290385113,20.8117372 0.345869412,21.2920121 0.979012667,21.6570209 L15.9737739,30.2967761 C16.119485,30.3803699 16.2750485,30.4546178 16.4383901,30.5190006 C16.4466868,30.5221159 16.4560207,30.524712 16.4643174,30.5278273 C16.4897261,30.5376924 16.5172089,30.5449614 16.5431362,30.5543073 C16.6369928,30.5885755 16.7308494,30.6228438 16.8288544,30.6503623 C16.8812274,30.6654195 16.9356746,30.6763231 16.9896033,30.6893035 C17.0201974,30.6970917 17.050273,30.7048799 17.0813857,30.7116298 C17.1093872,30.7178603 17.1363515,30.7261678 17.1643529,30.7318792 C17.269099,30.7536863 17.3754007,30.7718588 17.483258,30.7869161 C17.5211118,30.7921082 17.5600026,30.7952235 17.5978564,30.7993773 C17.6248207,30.8024926 17.6512665,30.8056079 17.6782309,30.8082039 C17.7176403,30.8123577 17.7565311,30.818069 17.7959405,30.8211843 C17.9012051,30.8294918 18.0064697,30.8352032 18.1122529,30.8377993 C18.1454398,30.8388377 18.1786266,30.8367608 18.212332,30.83728 C18.240852,30.83728 18.269372,30.8367608 18.2978919,30.8367608 C18.3461166,30.8362416 18.3938227,30.8377993 18.4420474,30.8357224 C18.5613127,30.8315687 18.680578,30.8232612 18.7982877,30.8113192 C18.8117699,30.8097616 18.8252521,30.8071655 18.8387342,30.8056079 C18.870884,30.8019733 18.9019967,30.796262 18.9341465,30.7921082 C19.0259289,30.7806855 19.1182299,30.769782 19.2084567,30.7536863 C19.2483846,30.7464172 19.2852013,30.7329176 19.3246107,30.7246102 C19.4345422,30.7017646 19.5403254,30.673727 19.6461085,30.6441317 C19.7021114,30.628036 19.7622626,30.6192093 19.8172283,30.6010367 C19.8431556,30.5927293 19.8638974,30.5781912 19.8893061,30.5693646 C20.113836,30.4914821 20.3295506,30.402177 20.5219308,30.2895071 L43.6396971,16.7935241 C43.6531792,16.7857359 43.6661428,16.7779477 43.6785879,16.7701594 C43.7397762,16.7332951 43.783334,16.6902001 43.8382997,16.6512589 C43.9155629,16.596222 43.9980115,16.5427428 44.0628297,16.4840714 C44.0690522,16.47836 44.0778675,16.473687 44.08409,16.4684949 C44.159279,16.3989199 44.2251342,16.3272681 44.2826927,16.2540587 C44.2956563,16.2374437 44.3049901,16.2197904 44.3169166,16.2026563 C44.3298802,16.1850029 44.3407697,16.1673496 44.3526962,16.1496962 C44.3718824,16.1201009 44.3946984,16.091544 44.4118103,16.0619487 C44.4455157,16.0017197 44.4740357,15.9404522 44.4973702,15.8786654 C44.501,15.8693196 44.5025557,15.8599737 44.505667,15.8501086 C44.5098153,15.8381666 44.5118895,15.8267438 44.5155193,15.8148019 C44.5274458,15.7758607 44.5414465,15.7364002 44.5492247,15.6969398 C44.5611512,15.6356723 44.5684109,15.5738856 44.5699665,15.5120989 C44.5699665,15.502753 44.5704851,15.4934071 44.5704851,15.4840612 L44.5773816,10.799694 C44.5787818,10.9108062 44.55804,11.0213992 44.5243346,11.1309538 Z" fill="url(#linearGradient-151)"></path>
  1762. </g>
  1763. <path d="M48.5824665,10.3495337 C49.9835747,11.1569146 49.9903158,12.4684544 48.6006156,13.2799891 L22.9150152,28.2749488 C21.5253151,29.0859643 19.2660152,29.0895988 17.864907,28.2822178 L1.20561676,18.6829514 C-0.195491407,17.8755704 -0.206899393,16.5635114 1.18228225,15.7524959 L26.8678826,0.757536227 C28.2575828,-0.0534792538 30.5220681,-0.0571137662 31.9226577,0.750267202 L48.5824665,10.3495337 Z" id="Shape" fill="url(#linearGradient-152)" fill-rule="nonzero"></path>
  1764. <path d="M49.5770355,12.1901546 C49.5728872,12.203135 49.5702945,12.2166346 49.5661461,12.229615 C49.5267367,12.3428041 49.4681411,12.4539163 49.3960634,12.5629517 C49.3830998,12.5826819 49.3706547,12.6024121 49.356654,12.6216231 C49.2783537,12.7296201 49.1844971,12.8345017 49.0730099,12.9352296 C49.0004137,13.0006508 48.9086312,13.0603607 48.8225528,13.1216282 C48.7484009,13.1745882 48.6851384,13.2306636 48.6006156,13.2799891 L22.9150152,28.2749488 C22.7599703,28.3652924 22.5909247,28.4421364 22.4166936,28.5127498 C22.3710617,28.5309223 22.3249112,28.5485757 22.2787607,28.5651906 C22.1703848,28.604651 22.056305,28.6363232 21.9427437,28.6685146 C21.8255525,28.7017444 21.7073243,28.7328974 21.5859848,28.7578197 C21.4428664,28.787415 21.298711,28.8144143 21.1514442,28.8331061 C21.1161832,28.837779 21.0819592,28.8440096 21.0466982,28.8476441 C20.848614,28.8694512 20.6474186,28.8798355 20.4462232,28.8819124 C20.4140735,28.8824316 20.3824422,28.8824316 20.3502924,28.8824316 C20.1516898,28.8813932 19.9541242,28.8704896 19.7581142,28.8502402 C19.7285572,28.8471249 19.6990001,28.8440096 19.6694431,28.8403751 C19.4749887,28.8175296 19.2831271,28.784819 19.0959325,28.7427625 C19.06119,28.7349742 19.0274845,28.7261476 18.9932606,28.7178401 C18.8226593,28.6757836 18.6572435,28.6254196 18.4970132,28.5672674 C18.4684932,28.5568831 18.4384176,28.5490949 18.4104162,28.5381913 C18.2185546,28.4639434 18.0349897,28.3793112 17.8654255,28.2816986 L1.20613531,18.6824322 C0.500395775,18.275886 0.147266736,17.7410934 0.148303826,17.2073393 L0.126524942,32.822243 C0.126006397,33.3565163 0.479135437,33.8907897 1.18435643,34.2973358 L17.8436467,43.8966023 C18.0054327,43.989542 18.1781081,44.0720973 18.3595988,44.1432299 C18.3689326,44.1468644 18.3793035,44.1494605 18.3886373,44.153095 C18.4166387,44.1639986 18.4467143,44.1717868 18.4752343,44.1821711 C18.5799803,44.2200739 18.6842079,44.2584959 18.7936208,44.2891296 C18.8516978,44.3057445 18.9123676,44.3182057 18.9720002,44.3327438 C19.0062242,44.3410512 19.0394111,44.3498779 19.0741536,44.3576662 C19.1052663,44.364416 19.1353419,44.3737619 19.1664546,44.3799924 C19.2826086,44.4038764 19.4013554,44.424645 19.5206207,44.4412599 C19.5626228,44.4469713 19.605662,44.4506058 19.6476642,44.4552788 C19.6772212,44.4589133 19.7067783,44.4620286 19.7368539,44.4651439 C19.7804117,44.4698168 19.8239694,44.4760474 19.8675272,44.4796819 C19.9841998,44.4890278 20.1013909,44.4952584 20.2191006,44.4978545 C20.2559173,44.4988929 20.292734,44.4968161 20.3295506,44.4973353 C20.3617004,44.4973353 20.3928131,44.4968161 20.4249629,44.4968161 C20.478373,44.4962968 20.5317831,44.4978545 20.5846747,44.4957776 C20.7169036,44.4911047 20.8491326,44.482278 20.9803244,44.4687784 C20.9953622,44.4672207 21.0104,44.4641054 21.0254378,44.4625478 C21.0606989,44.4589133 21.0949228,44.4521635 21.1307024,44.4474905 C21.2328558,44.4345101 21.3355276,44.4225682 21.4356068,44.4043956 C21.4796831,44.3960881 21.5206482,44.3810309 21.5647245,44.3722042 C21.687101,44.3467626 21.8048107,44.3156097 21.9225204,44.2823798 C21.9847458,44.2647265 22.0511195,44.2548614 22.1117893,44.2351312 C22.1620881,44.2185163 22.2087572,44.1972284 22.2575004,44.179575 C22.3041694,44.1624409 22.3503199,44.1453068 22.3959519,44.126615 C22.5701829,44.0560016 22.7392285,43.9796769 22.8942734,43.8888141 L48.5798738,28.8938543 C48.5943931,28.8850277 48.6094309,28.8767202 48.6234316,28.8678935 C48.6913609,28.8268755 48.7395856,28.7796268 48.8007739,28.7360127 C48.8873709,28.6742259 48.9796719,28.6145161 49.0522682,28.5490949 C49.0590092,28.5428643 49.0693801,28.5376721 49.0761212,28.5314415 C49.1596069,28.4540783 49.2332403,28.3741191 49.2975399,28.2920829 C49.3120591,28.2733911 49.3219115,28.2541802 49.3353936,28.2354884 C49.3493943,28.2157582 49.3618394,28.196028 49.3753216,28.1762977 C49.3971005,28.1435871 49.4225092,28.1113957 49.4411768,28.0776467 C49.4790306,28.0106678 49.5106618,27.9426505 49.5360705,27.874114 C49.5397003,27.8637297 49.5412559,27.8533454 49.5448858,27.842961 C49.5495527,27.8299806 49.5521454,27.8170002 49.5557752,27.8040198 C49.5692574,27.7604057 49.5842952,27.7167915 49.5931104,27.6726582 C49.6065926,27.6046409 49.6143708,27.5361043 49.6164449,27.4675678 C49.6169635,27.4571835 49.6169635,27.4467992 49.6169635,27.4358957 L49.6392609,11.820992 C49.6377053,11.9456038 49.6148893,12.0681388 49.5770355,12.1901546 Z" id="Shape" fill="url(#linearGradient-153)" fill-rule="nonzero"></path>
  1765. <g transform="translate(0.000000, 11.422753)" id="Clipped">
  1766. <g>
  1767. <mask id="mask-155" fill="white">
  1768. <use xlink:href="#path-154"></use>
  1769. </mask>
  1770. <g id="SVGID_117_"></g>
  1771. <g id="Group" opacity="0.1" mask="url(#mask-155)" fill="#FEFEFE" fill-rule="nonzero">
  1772. <g transform="translate(-3.629814, -9.345889)" id="Shape">
  1773. <polygon points="6.25728064 44.2060551 2.50042324 42.0409241 25.3869185 1.66512589 29.1442945 3.83025685"></polygon>
  1774. <polygon points="1.96321078 41.7319906 0.353129039 40.8041515 23.2401429 0.428353247 24.8502246 1.35619234"></polygon>
  1775. <polygon points="8.4040563 45.4428277 7.86736239 45.1338942 30.7543762 4.75809594 31.2910701 5.0670295"></polygon>
  1776. </g>
  1777. </g>
  1778. </g>
  1779. <g>
  1780. <mask id="mask-157" fill="white">
  1781. <use xlink:href="#path-156"></use>
  1782. </mask>
  1783. <g id="SVGID_117_"></g>
  1784. <g id="Group" opacity="0.1" mask="url(#mask-157)" fill="#FEFEFE" fill-rule="nonzero">
  1785. <g transform="translate(26.964332, -15.057266)" id="Shape">
  1786. <polygon points="6.3723976 62.2420632 2.62124419 64.4175785 14.8739403 3.65995398 18.6245752 1.48495792"></polygon>
  1787. <polygon points="2.08558737 64.7285889 0.478098347 65.6605817 12.7302759 4.90347644 14.3382835 3.9709644"></polygon>
  1788. <polygon points="8.51554344 60.99906 7.97988662 61.3100704 20.2320642 0.552445884 20.7682396 0.241435466"></polygon>
  1789. </g>
  1790. </g>
  1791. </g>
  1792. </g>
  1793. <path d="M44.7239743,11.1527609 C45.95137,11.8599332 45.9596667,13.0151889 44.7421234,13.7259957 L23.3365922,26.2224877 C22.1190489,26.9332945 20.1299109,26.9343329 18.9025152,26.2271607 L5.02055119,18.2281181 C3.79056282,17.5193882 3.78278464,16.3672478 4.99980939,15.656441 L26.4053406,3.15994892 C27.6228839,2.44914214 29.6120219,2.44498841 30.8420103,3.15371833 L44.7239743,11.1527609 Z M23.108951,26.0916453 L44.5144822,13.5951532 C45.6080933,12.9565175 45.6008337,11.9201622 44.4984073,11.2846418 L30.6164433,3.28559921 C29.5140169,2.65007875 27.7265929,2.65267483 26.6329818,3.29131058 L5.22745058,15.7878026 C4.1338395,16.4264384 4.14109913,17.4627936 5.24352547,18.0983141 L19.1254895,26.0973567 C20.2279159,26.7323579 22.0153399,26.7297618 23.108951,26.0916453 L23.108951,26.0916453 Z" id="Shape" fill="#00F5EE" fill-rule="nonzero"></path>
  1794. <g transform="translate(36.816684, 20.249426)" fill-rule="nonzero" id="Shape">
  1795. <g>
  1796. <path d="M11.1673818,0.584118064 L0.267050595,6.90661199 C0.169564164,6.96320654 0.0907453479,6.90349669 0.0907453479,6.77369268 L0.0907453479,6.71398283 C0.0907453479,6.58417881 0.169045619,6.43308694 0.26653205,6.37649239 L11.1668632,0.054517686 C11.2643497,-0.00207686423 11.3431685,0.0576329823 11.3431685,0.187436996 L11.3431685,0.247146843 C11.3431685,0.376431641 11.2643497,0.527523514 11.1673818,0.584118064 Z" fill="url(#radialGradient-158)"></path>
  1797. <path d="M11.1699745,2.44394998 L0.269643319,8.7664439 C0.172156889,8.82303845 0.0933380721,8.7633286 0.0933380721,8.63352459 L0.0933380721,8.57381474 C0.0933380721,8.44401073 0.171638344,8.29291886 0.269124775,8.23632431 L11.169456,1.91383038 C11.2669424,1.85723583 11.3457612,1.91694568 11.3457612,2.0467497 L11.3457612,2.10645954 C11.3457612,2.23678277 11.2674609,2.38735543 11.1699745,2.44394998 Z" fill="url(#radialGradient-159)"></path>
  1798. <path d="M11.1725672,4.30430111 L0.272236044,10.626795 C0.174749613,10.6833896 0.0959307963,10.6236797 0.0959307963,10.4938757 L0.0959307963,10.4341659 C0.0959307963,10.3043619 0.174231068,10.15327 0.271717499,10.0966754 L11.1720487,3.77418152 C11.2695351,3.71758697 11.3483539,3.77729681 11.3483539,3.90710083 L11.3483539,3.96681067 C11.3483539,4.09661469 11.2700537,4.24770656 11.1725672,4.30430111 Z" fill="url(#radialGradient-160)"></path>
  1799. </g>
  1800. <g transform="translate(0.000000, 20.249426)">
  1801. <path d="M11.1964203,0.795958215 L0.296089106,7.11845214 C0.198602676,7.17504669 0.119783859,7.11533684 0.119783859,6.98553283 L0.119783859,6.92582298 C0.119783859,6.79601897 0.198084131,6.64492709 0.295570562,6.58833254 L11.1959017,0.265838621 C11.2933882,0.209244071 11.372207,0.268953917 11.372207,0.398757932 L11.372207,0.458467778 C11.372207,0.588271792 11.2933882,0.739363665 11.1964203,0.795958215 Z" fill="url(#radialGradient-161)"></path>
  1802. <path d="M11.199013,2.65579013 L0.298681831,8.97828405 C0.2011954,9.0348786 0.122376583,8.97516876 0.122376583,8.84536474 L0.122376583,8.78565489 C0.122376583,8.65585088 0.200676855,8.50475901 0.298163286,8.44816446 L11.1984945,2.12567054 C11.2959809,2.06907599 11.3747997,2.12878583 11.3747997,2.25858985 L11.3747997,2.31829969 C11.3747997,2.44862292 11.2959809,2.5997148 11.199013,2.65579013 Z" fill="url(#radialGradient-162)"></path>
  1803. <path d="M11.2016057,4.51614126 L0.301274555,10.8386352 C0.203788124,10.8952297 0.124969308,10.8355199 0.124969308,10.7057159 L0.124969308,10.646006 C0.124969308,10.516202 0.203269579,10.3651101 0.30075601,10.3085156 L11.2010872,3.98602167 C11.2985736,3.92942712 11.3773924,3.98913696 11.3773924,4.11894098 L11.3773924,4.17865082 C11.3773924,4.30845484 11.2990922,4.45954671 11.2016057,4.51614126 Z" fill="url(#radialGradient-163)"></path>
  1804. </g>
  1805. <g transform="translate(0.000000, 40.498852)">
  1806. <path d="M11.2254588,1.00779837 L0.325127618,7.33029229 C0.227641187,7.38688684 0.14882237,7.32717699 0.14882237,7.19737298 L0.14882237,7.13766313 C0.14882237,7.00785912 0.227122642,6.85676724 0.324609073,6.80017269 L11.2249403,0.477678772 C11.3224267,0.421084222 11.4012455,0.480794068 11.4012455,0.610598083 L11.4012455,0.670307929 C11.4012455,0.800631159 11.3224267,0.951203816 11.2254588,1.00779837 Z" fill="url(#radialGradient-164)"></path>
  1807. <path d="M11.2280515,2.8681495 L0.327720342,9.19064342 C0.230233911,9.24723797 0.151415095,9.18752812 0.151415095,9.05772411 L0.151415095,8.99801426 C0.151415095,8.86821025 0.229715366,8.71711838 0.327201797,8.66052383 L11.227533,2.3380299 C11.3250194,2.28143535 11.4038382,2.3411452 11.4038382,2.47094921 L11.4038382,2.53065906 C11.4038382,2.66046307 11.3250194,2.81155495 11.2280515,2.8681495 Z" fill="url(#radialGradient-165)"></path>
  1808. <path d="M11.2306443,4.72798141 L0.330313066,11.0499561 C0.232826635,11.1065507 0.154007819,11.0468408 0.154007819,10.9170368 L0.154007819,10.857327 C0.154007819,10.7275229 0.232308091,10.5764311 0.329794521,10.5198365 L11.2301257,4.1973426 C11.3276121,4.14074805 11.406431,4.2004579 11.406431,4.33026191 L11.406431,4.38997176 C11.406431,4.52081421 11.3276121,4.67190608 11.2306443,4.72798141 Z" fill="url(#radialGradient-166)"></path>
  1809. </g>
  1810. <g transform="translate(0.000000, 61.267495)">
  1811. <path d="M11.2544973,0.70042246 L0.354166129,7.02291638 C0.256679698,7.07951093 0.177860882,7.01980109 0.177860882,6.88999707 L0.177860882,6.83028723 C0.177860882,6.70048321 0.256161153,6.54939134 0.353647584,6.49279679 L11.2539788,0.170302867 C11.3514652,0.113708316 11.430284,0.173418163 11.430284,0.303222177 L11.430284,0.362932024 C11.430284,0.493255254 11.3514652,0.644347126 11.2544973,0.70042246 Z" fill="url(#radialGradient-167)"></path>
  1812. <path d="M11.25709,2.56077359 L0.356758853,8.88326751 C0.259272422,8.93986206 0.180453606,8.88015222 0.180453606,8.7503482 L0.180453606,8.69063836 C0.180453606,8.56083434 0.258753878,8.40974247 0.356240308,8.35314792 L11.2565715,2.03117321 C11.3540579,1.97457866 11.4328767,2.03428851 11.4328767,2.16409252 L11.4328767,2.22380237 C11.4328767,2.35308717 11.3540579,2.50417904 11.25709,2.56077359 Z" fill="url(#radialGradient-168)"></path>
  1813. <path d="M11.2596828,4.42112472 L0.359351578,10.7436186 C0.261865147,10.8002132 0.18304633,10.7405033 0.18304633,10.6106993 L0.18304633,10.5509895 C0.18304633,10.4211855 0.261346602,10.2700936 0.358833033,10.2134991 L11.2591642,3.89152434 C11.3566506,3.83492979 11.4354695,3.89463964 11.4354695,4.02444366 L11.4354695,4.0841535 C11.4354695,4.2134383 11.3566506,4.36453017 11.2596828,4.42112472 Z" fill="url(#radialGradient-169)"></path>
  1814. </g>
  1815. </g>
  1816. </g>
  1817. <g transform="translate(22.815973, 28.556883)" fill-rule="nonzero" id="Shape">
  1818. <path d="M0.512840852,5.04522242 C0.511803762,4.44916239 0.931306541,3.72225991 1.44985139,3.42163381 C1.96839623,3.12100772 2.3889361,3.36036632 2.38997319,3.95642635 C2.39101028,4.55248638 1.9715075,5.27938886 1.45296266,5.58001496 C0.934417811,5.88064106 0.513877941,5.64128246 0.512840852,5.04522242 Z" fill="url(#linearGradient-170)"></path>
  1819. <path d="M3.22223767,3.41228792 C3.22120058,2.81622789 3.64070336,2.08932541 4.1592482,1.78869932 C4.67779305,1.48807322 5.09833292,1.72743182 5.09937001,2.32349185 C5.10040709,2.91955189 4.68090432,3.64645437 4.16235947,3.94708046 C3.64381463,4.24822578 3.22275621,4.00834796 3.22223767,3.41228792 Z" fill="url(#linearGradient-171)"></path>
  1820. <path d="M5.93163448,1.77935343 C5.93059739,1.18329339 6.35010017,0.456390914 6.86864502,0.155764817 C7.38718986,-0.14486128 7.80772973,0.0944973223 7.80876682,0.690557355 C7.80980391,1.28661739 7.39030113,2.01351987 6.87175628,2.31414596 C6.35321144,2.61529128 5.93215303,2.37541346 5.93163448,1.77935343 Z" fill="url(#linearGradient-172)"></path>
  1821. </g>
  1822. <g transform="translate(23.334518, 48.806309)" fill-rule="nonzero" id="Shape">
  1823. <path d="M0.023334518,5.25758179 C0.0222974283,4.66152176 0.441800208,3.93461928 0.960345053,3.63399318 C1.4788899,3.33336708 1.89942977,3.57272569 1.90046686,4.16878572 C1.90150395,4.76484575 1.48200117,5.49174823 0.963456322,5.79237433 C0.444911477,6.09300043 0.0243716077,5.85312261 0.023334518,5.25758179 Z" fill="url(#linearGradient-173)"></path>
  1824. <path d="M2.73273133,3.62464729 C2.73169424,3.02858726 3.15119702,2.30168478 3.66974187,2.00105868 C4.18828671,1.70043259 4.60882658,1.93979119 4.60986367,2.53585122 C4.61090076,3.13191125 4.19139798,3.85881373 3.67285314,4.15943983 C3.15430829,4.46006593 2.73324988,4.22070732 2.73273133,3.62464729 Z" fill="url(#linearGradient-174)"></path>
  1825. <path d="M5.44212815,1.99171279 C5.44109106,1.39565276 5.86059384,0.668750281 6.37913868,0.368124184 C6.89768353,0.0674980874 7.3182234,0.306856689 7.31926049,0.902916723 C7.32029758,1.49897676 6.9007948,2.22587923 6.38224995,2.52650533 C5.86370511,2.82713143 5.44264669,2.58777283 5.44212815,1.99171279 Z" fill="url(#linearGradient-175)"></path>
  1826. </g>
  1827. <g transform="translate(23.334518, 69.055736)" fill-rule="nonzero" id="Shape">
  1828. <path d="M0.0523730293,5.46942194 C0.0513359396,4.87336191 0.470838719,4.14645943 0.989383564,3.84583333 C1.50792841,3.54520723 1.92846828,3.78456584 1.92950537,4.38062587 C1.93054246,4.9766859 1.51103968,5.70358838 0.992494833,6.00421448 C0.473949988,6.30484058 0.053410119,6.06548197 0.0523730293,5.46942194 Z" fill="url(#linearGradient-176)"></path>
  1829. <path d="M2.76176984,3.83648744 C2.76073275,3.24042741 3.18023553,2.51352493 3.69878038,2.21289883 C4.21732522,1.91227274 4.63786509,2.15163134 4.63890218,2.74769137 C4.63993927,3.3437514 4.22043649,4.07065388 3.70189165,4.37127998 C3.1833468,4.67190608 2.76228839,4.43254748 2.76176984,3.83648744 Z" fill="url(#linearGradient-177)"></path>
  1830. <path d="M5.47064811,2.20355294 C5.46961102,1.60749291 5.8891138,0.880590432 6.40765865,0.579964335 C6.92620349,0.279338238 7.34674336,0.518696841 7.34778045,1.11475687 C7.34881754,1.71081691 6.92931476,2.43771939 6.41076992,2.73834548 C5.89222507,3.03897158 5.4716852,2.79961298 5.47064811,2.20355294 Z" fill="url(#linearGradient-178)"></path>
  1831. </g>
  1832. <g transform="translate(23.334518, 89.824378)" fill-rule="nonzero" id="Shape">
  1833. <path d="M0.0814115407,5.16204604 C0.080374451,4.565986 0.499877231,3.83908352 1.01842208,3.53845743 C1.53696692,3.23783133 1.95750679,3.47718993 1.95854388,4.07324996 C1.95958097,4.66931 1.54007819,5.39621248 1.02153334,5.69683857 C0.5029885,5.99746467 0.0819300855,5.75810607 0.0814115407,5.16204604 Z" fill="url(#linearGradient-179)"></path>
  1834. <path d="M2.79080836,3.52911154 C2.78977127,2.9330515 3.20927405,2.20614902 3.72781889,1.90552293 C4.24636374,1.60489683 4.6669036,1.84425543 4.66794069,2.44031547 C4.66897778,3.0363755 4.249475,3.76327798 3.73093016,4.06390408 C3.21238531,4.36453017 2.7913269,4.12517157 2.79080836,3.52911154 Z" fill="url(#linearGradient-180)"></path>
  1835. <path d="M5.49968663,1.89617704 C5.49864954,1.30011701 5.91815232,0.573214527 6.43669716,0.27258843 C6.95524201,-0.0280376671 7.37578187,0.211320935 7.37681896,0.807380968 C7.37785605,1.403441 6.95835327,2.13034348 6.43980843,2.43096958 C5.92178213,2.73159567 5.50072372,2.49223707 5.49968663,1.89617704 Z" fill="url(#linearGradient-181)"></path>
  1836. </g>
  1837. </g>
  1838. <g transform="translate(26.445787, 24.922371)">
  1839. <polygon id="Shape" fill="url(#linearGradient-182)" fill-rule="nonzero" points="78.4869477 116.690174 20.2704365 111.192715 9.09060968 87.6467857 70.997086 75.1580819"></polygon>
  1840. <g>
  1841. <path d="M46.5253991,90.1359074 C47.7870187,90.8628099 47.7953154,92.0435072 46.5466595,92.7724866 L23.4288932,106.26847 C22.1776445,106.999007 20.1418374,107.001603 18.8802178,106.2747 L3.88545652,97.6349449 C2.62642964,96.9096001 2.61813292,95.7289028 3.86938163,94.9983658 L26.9871479,81.5023828 C28.2358039,80.7734035 30.271611,80.7702882 31.5306378,81.495633 L46.5253991,90.1359074 Z" id="Shape" fill="#ABABAB" fill-rule="nonzero"></path>
  1842. <path d="M47.4224817,91.7937643 C47.4188519,91.8057063 47.4162592,91.817129 47.4126294,91.829071 C47.3773683,91.9308373 47.3249953,92.0305268 47.2601772,92.1281394 C47.2482506,92.1457928 47.2368426,92.1639654 47.2243976,92.1816187 C47.154394,92.2787121 47.0698712,92.3726902 46.9703106,92.4630338 C46.9054925,92.5217052 46.8225253,92.5751845 46.7452621,92.6307406 C46.6788884,92.6779893 46.622367,92.7283532 46.5466595,92.7724866 L23.4288932,106.26847 C23.2359945,106.381139 23.0197613,106.470445 22.7957499,106.548327 C22.7169311,106.575845 22.6355196,106.599729 22.5530709,106.623094 C22.4472878,106.652689 22.3409861,106.681246 22.2315731,106.703573 C22.102974,106.730053 21.9733378,106.754456 21.8405903,106.77159 C21.8089591,106.775744 21.7773279,106.781455 21.7456966,106.78509 C21.5667986,106.804301 21.386345,106.814166 21.2048543,106.815723 C21.1763344,106.816242 21.1478144,106.816242 21.1187759,106.816242 C20.9398779,106.815204 20.7614985,106.805339 20.5846747,106.787166 C20.5582289,106.78457 20.5317831,106.781455 20.5053373,106.77834 C20.3295506,106.757571 20.1568752,106.727976 19.9878296,106.690073 C19.9572354,106.683323 19.9271598,106.675535 19.8965657,106.667747 C19.7425579,106.629844 19.593217,106.584153 19.448543,106.532231 C19.4231343,106.522885 19.3961699,106.515616 19.3707612,106.50627 C19.1980858,106.439811 19.03267,106.362967 18.8796993,106.275219 L3.88545652,97.6354642 C3.25231327,97.2704553 2.93548237,96.7906996 2.93600091,96.3104248 L2.92925983,100.994792 C2.92874128,101.474548 3.24557218,101.954823 3.87871544,102.319831 L18.8734767,110.959587 C19.0186693,111.04318 19.1747513,111.117428 19.3380929,111.181811 C19.3463896,111.184926 19.3557234,111.187003 19.3640201,111.190638 C19.3899474,111.200503 19.4174303,111.207772 19.4433575,111.217637 C19.5372141,111.251905 19.6310707,111.285654 19.7290757,111.313692 C19.7814487,111.328749 19.835896,111.339653 19.8893061,111.352633 C19.9204188,111.360421 19.9504944,111.36821 19.9816071,111.374959 C20.0096085,111.38119 20.0365728,111.389498 20.0645742,111.395209 C20.1693203,111.417016 20.2761405,111.435189 20.3834793,111.450246 C20.4213331,111.455438 20.4597054,111.458553 20.4980777,111.462707 C20.5250421,111.465822 20.5514878,111.468938 20.5789707,111.471534 C20.6183801,111.475687 20.6567524,111.481399 20.6961619,111.484514 C20.8014265,111.492821 20.9066911,111.498533 21.0129928,111.501129 C21.0461796,111.502167 21.0793665,111.50061 21.1125534,111.50061 C21.1410733,111.50061 21.1690747,111.50061 21.1981133,111.500091 C21.2463379,111.499571 21.2940441,111.50061 21.3422687,111.499052 C21.461534,111.494898 21.5807994,111.486591 21.698509,111.474649 C21.7125097,111.473091 21.7254734,111.470495 21.7394741,111.468938 C21.7711053,111.465303 21.802218,111.459592 21.8338492,111.455438 C21.9256317,111.443496 22.0184512,111.433112 22.108678,111.416497 C22.148606,111.409228 22.1849041,111.395728 22.2243135,111.387421 C22.3347636,111.364575 22.4405467,111.336537 22.5468484,111.306423 C22.6028512,111.290327 22.6624839,111.281501 22.7169311,111.263847 C22.7428584,111.25554 22.7630816,111.241002 22.7884903,111.232175 C23.0130202,111.154293 23.2287349,111.064987 23.4216336,110.952318 L46.5393998,97.4563346 C46.552882,97.4485464 46.5658456,97.4407581 46.5782907,97.4329699 C46.639479,97.3961056 46.6830368,97.3530106 46.7380025,97.3140694 C46.8152657,97.2590325 46.8977143,97.2055533 46.9625324,97.1468819 C46.968755,97.1411705 46.9775702,97.1364975 46.9837928,97.1313054 C47.0589818,97.0617304 47.124837,96.9900786 47.1823954,96.9163499 C47.1953591,96.899735 47.2041743,96.8820817 47.2166194,96.8654667 C47.229583,96.8478134 47.2404725,96.8301601 47.252399,96.8119875 C47.2715852,96.7829114 47.2944011,96.7538353 47.3109946,96.72424 C47.3447,96.6640109 47.3732199,96.6027434 47.3965545,96.5409567 C47.4001843,96.5316108 47.4012214,96.5222649 47.4048512,96.5123998 C47.4089995,96.5004579 47.4115923,96.4890351 47.4152221,96.4770931 C47.4271486,96.4381519 47.4411493,96.3986915 47.4489275,96.3597503 C47.460854,96.2984828 47.4681136,96.2366961 47.4696693,96.1749094 C47.4701878,96.1655635 47.4701878,96.1562176 47.4701878,96.1468717 L47.4769289,91.4625045 C47.4769289,91.5741359 47.4561871,91.6847289 47.4224817,91.7937643 Z" id="Shape" fill="url(#linearGradient-183)" fill-rule="nonzero"></path>
  1843. <path d="M48.8878894,73.908848 C50.2889976,74.716229 50.2957387,76.028288 48.9060385,76.8393034 L23.2204382,91.8342632 C21.830738,92.6452786 19.5714381,92.6489132 18.1703299,91.8415322 L1.51103968,82.2422657 C0.109931507,81.4348848 0.0985235205,80.123345 1.4882237,79.3118103 L27.1738241,64.3168506 C28.5635242,63.5058351 30.8280096,63.5022006 32.2285992,64.3095816 L48.8878894,73.908848 Z" id="Shape" fill="url(#linearGradient-184)" fill-rule="nonzero"></path>
  1844. <path d="M49.8824584,75.7494689 C49.8783101,75.7624493 49.8757174,75.775949 49.871569,75.7889294 C49.8326781,75.9021185 49.773564,76.0132307 49.7014863,76.1222661 C49.6885227,76.1419963 49.6760776,76.1617265 49.6620769,76.1809375 C49.5837766,76.2889344 49.48992,76.3938161 49.3784329,76.494544 C49.3063551,76.5599652 49.2140541,76.6196751 49.1279757,76.6809425 C49.0538238,76.7339026 48.9905613,76.7899779 48.9060385,76.8393034 L23.2204382,91.8342632 C23.0653932,91.9246068 22.8963476,92.0014507 22.7221166,92.0720641 C22.6770032,92.0902367 22.6303341,92.10789 22.5841836,92.1245049 C22.4758078,92.1639654 22.3617279,92.1956375 22.2481666,92.2278289 C22.1309754,92.2610588 22.0127472,92.2922117 21.8914077,92.3171341 C21.7482893,92.3467294 21.6041339,92.3737286 21.4568671,92.3924204 C21.4216061,92.3970934 21.3873821,92.403324 21.3521211,92.4069585 C21.1540369,92.4287655 20.9528415,92.4391499 20.7516461,92.4412267 C20.7194964,92.4417459 20.6878651,92.4417459 20.6557154,92.4417459 C20.4571127,92.4407075 20.2590285,92.429804 20.0630186,92.4095546 C20.0334615,92.4064393 20.0039045,92.403324 19.9743474,92.3996894 C19.7798931,92.3768439 19.5880315,92.3441333 19.4008368,92.3020768 C19.3660943,92.2942886 19.3323889,92.2854619 19.2981649,92.2771545 C19.1275637,92.235098 18.9621479,92.184734 18.8019175,92.1265818 C18.7733976,92.1161975 18.743322,92.1084092 18.7153205,92.0975057 C18.523459,92.0232578 18.3398941,91.9386256 18.1703299,91.841013 L1.51103968,82.2417465 C0.805300144,81.8352003 0.452171105,81.3004078 0.453208194,80.7666537 L0.430910766,96.3815574 C0.430392221,96.9158307 0.783521261,97.450104 1.48874225,97.8566502 L18.1480325,107.455917 C18.3092999,107.548856 18.4824939,107.631412 18.6639846,107.702544 C18.6733184,107.706179 18.6836893,107.708775 18.6930231,107.712409 C18.7210245,107.723313 18.7511001,107.731101 18.7796201,107.741485 C18.8843662,107.779388 18.9885937,107.817291 19.0980066,107.848444 C19.1560837,107.865059 19.2167534,107.87752 19.2763861,107.892058 C19.31061,107.900366 19.3437969,107.909192 19.3785394,107.916981 C19.4096521,107.92373 19.4397277,107.933076 19.4708404,107.939307 C19.587513,107.963191 19.7057412,107.983959 19.8250065,108.000574 C19.8670086,108.006286 19.9100479,108.009401 19.95205,108.014593 C19.9816071,108.018228 20.0111641,108.021343 20.0412397,108.024458 C20.0847975,108.029131 20.1283552,108.035362 20.171913,108.038996 C20.2885856,108.048342 20.4057767,108.054573 20.5234864,108.057169 C20.5603031,108.058207 20.5971198,108.05613 20.6339365,108.05665 C20.6655677,108.05665 20.6971989,108.05665 20.7293487,108.05613 C20.7827588,108.055611 20.836169,108.057169 20.8890605,108.055092 C21.0212895,108.050419 21.1535184,108.041592 21.2847102,108.028093 C21.2997481,108.026535 21.3147859,108.02342 21.3298237,108.021862 C21.3650847,108.018228 21.3993087,108.011478 21.4345697,108.006805 C21.536723,107.993824 21.6393949,107.981883 21.7394741,107.96371 C21.7835504,107.955403 21.8245154,107.940345 21.8685917,107.931519 C21.9909683,107.906077 22.108678,107.874924 22.2263877,107.841694 C22.2886131,107.824041 22.3549868,107.814176 22.4156566,107.794446 C22.4659554,107.77835 22.5121059,107.756543 22.5613677,107.738889 C22.6080367,107.721755 22.6541872,107.704621 22.7003377,107.685929 C22.8745687,107.615316 23.0436144,107.538991 23.1986593,107.448128 L48.8842596,92.4531687 C48.8987789,92.4448612 48.9138167,92.4360346 48.9278174,92.4272079 C48.9957468,92.3861898 49.0439714,92.3389412 49.1051597,92.295327 C49.1917567,92.2335403 49.2840577,92.1738305 49.356654,92.1084092 C49.3633951,92.1021786 49.373766,92.0969865 49.380507,92.0907559 C49.4639928,92.0133927 49.5381447,91.9334334 49.6019257,91.8513973 C49.6164449,91.8327055 49.6262973,91.8134945 49.6397795,91.7948027 C49.6537802,91.7750725 49.6662252,91.7553423 49.6791889,91.7356121 C49.7009678,91.7029015 49.7263764,91.6707101 49.7450441,91.6369611 C49.7828978,91.5699822 49.8145291,91.5019649 49.8399378,91.4334284 C49.8440861,91.423044 49.8451232,91.4126597 49.848753,91.4022754 C49.8534199,91.389295 49.8560127,91.3763146 49.8596425,91.3633342 C49.8731246,91.31972 49.8881624,91.2761059 49.8969777,91.2319725 C49.9104599,91.1639552 49.918238,91.0954187 49.9203122,91.0268822 C49.9203122,91.0164979 49.9208308,91.0061135 49.9208308,90.99521 L49.9431282,75.3803063 C49.9431282,75.5049182 49.9203122,75.6279724 49.8824584,75.7494689 Z" id="Shape" fill="url(#linearGradient-185)" fill-rule="nonzero"></path>
  1845. <g transform="translate(0.000000, 75.286328)" id="Clipped">
  1846. <g>
  1847. <mask id="mask-187" fill="white">
  1848. <use xlink:href="#path-186"></use>
  1849. </mask>
  1850. <g id="SVGID_147_"></g>
  1851. <g id="Group" opacity="0.1" mask="url(#mask-187)" fill="#FEFEFE" fill-rule="nonzero">
  1852. <g transform="translate(-3.111269, -9.345889)" id="Shape">
  1853. <polygon points="6.04415871 43.9017945 2.28730131 41.7371827 25.1737966 1.3613845 28.9311725 3.52599624"></polygon>
  1854. <polygon points="1.75008885 41.4277299 0.140007108 40.4998909 23.0270209 0.124092638 24.6371027 1.05193173"></polygon>
  1855. <polygon points="8.19093437 45.1390863 7.65424046 44.8296335 30.5412543 4.45383533 31.0779482 4.7632881"></polygon>
  1856. </g>
  1857. </g>
  1858. </g>
  1859. <g>
  1860. <mask id="mask-189" fill="white">
  1861. <use xlink:href="#path-188"></use>
  1862. </mask>
  1863. <g id="SVGID_147_"></g>
  1864. <g id="Group" opacity="0.1" mask="url(#mask-189)" fill="#FEFEFE" fill-rule="nonzero">
  1865. <g transform="translate(27.482877, -15.576482)" id="Shape">
  1866. <polygon points="6.15927567 62.4575379 2.40812226 64.6330532 14.6608184 3.87542865 18.4114533 1.69991337"></polygon>
  1867. <polygon points="1.87246544 64.9435444 0.264976416 65.8760564 12.517154 5.11843189 14.1251616 4.18591985"></polygon>
  1868. <polygon points="8.30242151 61.2140154 7.76676469 61.5250259 20.0189423 0.767401332 20.5551177 0.45691013"></polygon>
  1869. </g>
  1870. </g>
  1871. </g>
  1872. </g>
  1873. <path d="M46.4953235,69.0645622 C47.7569431,69.7914647 47.7652398,70.972162 46.5165839,71.7011413 L23.3988176,85.1971243 C22.1475689,85.9276613 20.1117618,85.9307766 18.8501422,85.2033549 L3.85538092,76.5635997 C2.59635404,75.8382549 2.58805732,74.6575576 3.83930603,73.9270206 L26.9570723,60.4310376 C28.2057283,59.7020583 30.2415354,59.698943 31.5005622,60.424807 L46.4953235,69.0645622 Z" id="Shape" fill="url(#radialGradient-190)" fill-rule="nonzero"></path>
  1874. <path d="M47.3924061,70.7224191 C47.3887763,70.734361 47.3861836,70.7457838 47.3825538,70.7577258 C47.3472927,70.8594921 47.2949197,70.9591816 47.2301016,71.0567942 C47.218175,71.0744476 47.2072856,71.0926201 47.194322,71.1102735 C47.1243184,71.2073669 47.0397956,71.301345 46.940235,71.3916886 C46.8754169,71.45036 46.7929683,71.5038392 46.7157051,71.5588761 C46.6493313,71.6061248 46.5922914,71.657008 46.5165839,71.7011413 L23.3988176,85.1971243 C23.2059189,85.3097942 22.9896857,85.3990994 22.7656743,85.4769818 C22.6868555,85.5045002 22.605444,85.5283842 22.5235139,85.5512297 C22.4177307,85.5813442 22.3109105,85.6093819 22.200979,85.6322274 C22.0723799,85.6587074 21.9422251,85.6831105 21.8099962,85.7002447 C21.7783649,85.7043984 21.7477708,85.7101098 21.715621,85.7137443 C21.536723,85.7334745 21.3557509,85.7428204 21.1742602,85.7448972 C21.1457402,85.7454165 21.1172203,85.7454165 21.0887003,85.7454165 C20.9098023,85.744378 20.7314229,85.7345129 20.5545991,85.7163404 C20.5276348,85.7137443 20.501189,85.710629 20.4747432,85.7075137 C20.299475,85.686745 20.1267996,85.6571497 19.9582725,85.6197662 C19.9271598,85.6130164 19.8970842,85.6047089 19.8659716,85.5974399 C19.7124823,85.5595371 19.5636599,85.5143653 19.420023,85.4624437 C19.3940957,85.4530978 19.3666129,85.4458288 19.3406856,85.4359637 C19.1680102,85.369504 19.0025944,85.2931793 18.8501422,85.2049125 L3.85589947,76.5651574 C3.22275621,76.2001485 2.90592531,75.7203928 2.90644386,75.240118 L2.89970277,79.9244853 C2.89918423,80.4042409 3.21601513,80.8845157 3.84915838,81.2495246 L18.8439197,89.8892798 C18.9891122,89.9728736 19.1451942,90.0471215 19.3085358,90.1115043 C19.3168326,90.1146196 19.3261664,90.1172157 19.3349816,90.120331 C19.3603903,90.1301961 19.3873547,90.1374651 19.4127634,90.1462918 C19.5071385,90.18056 19.6009951,90.2148283 19.6995187,90.2428659 C19.7518917,90.2579232 19.8068574,90.2688267 19.8602676,90.2823264 C19.8908617,90.2895954 19.9204188,90.2973836 19.9515315,90.3046527 C19.9795329,90.3108832 20.0064972,90.3191907 20.0350172,90.3249021 C20.1397632,90.3467092 20.2465835,90.3648817 20.3539223,90.379939 C20.391776,90.3851311 20.4306669,90.3882464 20.4690392,90.3924002 C20.495485,90.3955155 20.5219308,90.3986308 20.5483766,90.4012268 C20.587786,90.4053806 20.6266768,90.4110919 20.6666048,90.4142072 C20.7718694,90.4225147 20.877134,90.4282261 20.9829172,90.4308222 C21.016104,90.4318606 21.0492909,90.4303029 21.0824778,90.4303029 C21.1115163,90.4303029 21.1400362,90.4303029 21.1685562,90.4297837 C21.2162623,90.4292645 21.264487,90.4308222 21.3121931,90.4287453 C21.4314584,90.4245916 21.5507238,90.4162841 21.6684334,90.4043421 C21.6819156,90.4027845 21.6953978,90.4001884 21.7088799,90.3986308 C21.7410297,90.3949963 21.7721424,90.3892849 21.8042922,90.3851311 C21.8960746,90.3731892 21.9883756,90.3628049 22.0786024,90.3467092 C22.1185304,90.3394401 22.155347,90.3259405 22.1947565,90.3176331 C22.304688,90.2947876 22.4104711,90.2667499 22.5162543,90.2371546 C22.5722571,90.2210589 22.6324083,90.2122322 22.6868555,90.1945789 C22.7127828,90.1862714 22.733006,90.1717333 22.7584147,90.1629067 C22.9829446,90.0850243 23.1986593,89.9957191 23.391558,89.8830492 L46.5093242,76.3870663 C46.5228064,76.379278 46.53577,76.3714898 46.5482151,76.3637015 C46.6094034,76.3268372 46.6529612,76.2837423 46.7079269,76.2448011 C46.7851901,76.1897642 46.8676387,76.1362849 46.9324568,76.0776135 C46.9386794,76.0719021 46.9474946,76.0672292 46.9537172,76.062037 C47.0289062,75.9924621 47.0947614,75.9208102 47.1523198,75.8476008 C47.1652835,75.8309859 47.1746173,75.8133325 47.1865438,75.7961984 C47.1995074,75.778545 47.2103969,75.7608917 47.2223234,75.7432383 C47.2415096,75.713643 47.2643255,75.6850861 47.2814375,75.6554908 C47.3151429,75.5952618 47.3436629,75.5339943 47.3669974,75.4727268 C47.3706272,75.4633809 47.3721829,75.4535158 47.3752941,75.4441699 C47.3794425,75.4322279 47.3820352,75.4208052 47.385665,75.4088632 C47.3975916,75.369922 47.4115923,75.3304616 47.4193704,75.2915204 C47.431297,75.2302529 47.4385566,75.1684662 47.4401122,75.1066795 C47.4401122,75.0973336 47.4406308,75.0879877 47.4406308,75.0786418 L47.4473719,70.3942745 C47.4468533,70.5027907 47.4266301,70.6133837 47.3924061,70.7224191 Z" id="Shape" fill="url(#linearGradient-191)" fill-rule="nonzero"></path>
  1875. <path d="M48.8578138,52.8276377 C50.258922,53.6350187 50.2656631,54.9470776 48.8759629,55.7580931 L23.1903626,70.7530528 C21.8006624,71.5640683 19.5413625,71.5677028 18.1402543,70.7603219 L1.48096408,61.1610554 C0.0798559061,60.3536744 0.0684479195,59.0421347 1.4581481,58.2306 L27.1437485,43.2356403 C28.5334486,42.4246248 30.797934,42.4209903 32.1985236,43.2283712 L48.8578138,52.8276377 Z" id="Shape" fill="url(#linearGradient-192)" fill-rule="nonzero"></path>
  1876. <path d="M49.8523828,54.6682586 C49.8482345,54.681239 49.8456418,54.6947386 49.8414934,54.707719 C49.8026025,54.8209081 49.7434884,54.9320204 49.6714107,55.0410557 C49.6584471,55.0607859 49.646002,55.0805162 49.6320013,55.0997271 C49.553701,55.2077241 49.4598444,55.3126057 49.3483573,55.4133336 C49.2762795,55.4787549 49.1839785,55.5384647 49.0979001,55.5997322 C49.0237482,55.6526923 48.9604857,55.7087676 48.8759629,55.7580931 L23.1903626,70.7530528 C23.0353176,70.8433964 22.866272,70.9202404 22.692041,70.9908538 C22.6469276,71.0090263 22.6002585,71.0266797 22.554108,71.0432946 C22.4457322,71.082755 22.3316523,71.1144272 22.218091,71.1466186 C22.1008998,71.1798484 21.9826716,71.2110014 21.8613321,71.2359238 C21.7182137,71.2655191 21.5740583,71.2925183 21.4267915,71.3112101 C21.3915305,71.315883 21.3573065,71.3221136 21.3220455,71.3257481 C21.1239613,71.3475552 20.9227659,71.3579395 20.7215705,71.3600164 C20.6894208,71.3605356 20.6577895,71.3605356 20.6256398,71.3605356 C20.4270371,71.3594972 20.2289529,71.3485936 20.032943,71.3283442 C20.0033859,71.3252289 19.9738289,71.3221136 19.9442718,71.3184791 C19.7498175,71.2956336 19.5579559,71.262923 19.3707612,71.2208665 C19.3360187,71.2130783 19.3023133,71.2042516 19.2680893,71.1959441 C19.0974881,71.1538876 18.9320723,71.1035237 18.7718419,71.0453715 C18.743322,71.0349871 18.7132464,71.0271989 18.6852449,71.0162954 C18.4933833,70.9420475 18.3098185,70.8574153 18.1402543,70.7598026 L1.48096408,61.1605362 C0.775224543,60.75399 0.422095504,60.2191975 0.423132593,59.6854434 L0.400835165,75.3003471 C0.40031662,75.8346204 0.75344566,76.3688937 1.45866665,76.7754399 L18.1179569,86.3747063 C18.2792243,86.467646 18.4524183,86.5502014 18.633909,86.6218532 C18.6432428,86.6254877 18.6536137,86.6280838 18.6629475,86.6317183 C18.6909489,86.6426218 18.7210245,86.65041 18.7495445,86.6607944 C18.8542906,86.6986971 18.9585181,86.7371191 19.067931,86.7677529 C19.1260081,86.7843678 19.1866778,86.796829 19.2463105,86.811367 C19.2805344,86.8196745 19.3137213,86.8285012 19.3484638,86.8362894 C19.3795765,86.8430392 19.4096521,86.8523851 19.4407648,86.8586157 C19.5569188,86.8824996 19.6756656,86.9032683 19.7949309,86.9198832 C19.836933,86.9255946 19.8799723,86.9287099 19.9224929,86.933902 C19.95205,86.9375365 19.9816071,86.9406518 20.0111641,86.9437671 C20.0547219,86.9484401 20.0982796,86.9546707 20.1418374,86.9583052 C20.25851,86.9676511 20.3757011,86.9738817 20.4934108,86.9764777 C20.5302275,86.9775162 20.5670442,86.9754393 20.6038609,86.9759585 C20.6360106,86.9759585 20.6671233,86.9754393 20.6992731,86.9754393 C20.7526832,86.9749201 20.8060934,86.9764777 20.8589849,86.9744009 C20.9912139,86.9697279 21.1234428,86.9609013 21.2546346,86.9474016 C21.2696724,86.945844 21.2847102,86.9427287 21.2997481,86.941171 C21.3350091,86.9370173 21.3692331,86.9307867 21.4044941,86.9261138 C21.5066474,86.9131334 21.6093193,86.9011914 21.7093985,86.8830188 C21.7534748,86.8747114 21.7944398,86.8596541 21.8385161,86.8508274 C21.9608927,86.8253859 22.0786024,86.7942329 22.1963121,86.7610031 C22.2585375,86.7433497 22.3249112,86.7334846 22.385581,86.7137544 C22.4358798,86.6971395 22.4820303,86.6758516 22.5312921,86.6581983 C22.5779611,86.6410642 22.6241116,86.62393 22.6702621,86.6052383 C22.8444931,86.5346249 23.0135388,86.4583001 23.1685837,86.3674373 L48.854184,71.3724776 C48.8687033,71.3641701 48.8837411,71.3553435 48.8977418,71.3465168 C48.9656712,71.3054987 49.0138958,71.25825 49.0750841,71.2146359 C49.1616811,71.1528492 49.2539821,71.0931393 49.3265784,71.0277181 C49.3333195,71.0214875 49.3436904,71.0162954 49.3504314,71.0100648 C49.4339172,70.9327016 49.5080691,70.8527423 49.5718501,70.7707062 C49.5863693,70.7520144 49.5962217,70.7328034 49.6097039,70.7141116 C49.6237046,70.6943814 49.6361496,70.6746512 49.6496318,70.654921 C49.6714107,70.6222104 49.6968194,70.590019 49.715487,70.5562699 C49.7533408,70.4892911 49.784972,70.4212738 49.8103807,70.3527372 C49.8145291,70.3423529 49.8155662,70.3319686 49.819196,70.3215843 C49.8238629,70.3086039 49.8264556,70.2956235 49.8300854,70.2826431 C49.8435676,70.2390289 49.8586054,70.1954148 49.8674206,70.1512814 C49.8809028,70.0832641 49.888681,70.0147276 49.8907552,69.9461911 C49.8912737,69.9358068 49.8912737,69.9254224 49.8912737,69.9145189 L49.9135711,54.2996152 C49.9130526,54.4231886 49.8902366,54.5462428 49.8523828,54.6682586 Z" id="Shape" fill="url(#linearGradient-193)" fill-rule="nonzero"></path>
  1877. <g transform="translate(0.000000, 53.998470)" id="Clipped">
  1878. <g>
  1879. <mask id="mask-195" fill="white">
  1880. <use xlink:href="#path-194"></use>
  1881. </mask>
  1882. <g id="SVGID_153_"></g>
  1883. <g id="Group" opacity="0.1" mask="url(#mask-195)" fill="#FEFEFE" fill-rule="nonzero">
  1884. <g transform="translate(-3.111269, -9.345889)" id="Shape">
  1885. <polygon points="6.01408311 44.1084424 2.25722571 41.9433115 25.1442395 1.56751328 28.9010969 3.73264423"></polygon>
  1886. <polygon points="1.7205318 41.6343779 0.110450052 40.7065388 22.9969453 0.330740628 24.6075456 1.25857972"></polygon>
  1887. <polygon points="8.16085877 45.3452151 7.62416485 45.0357623 30.5111787 4.66048332 31.0478726 4.96941688"></polygon>
  1888. </g>
  1889. </g>
  1890. </g>
  1891. <g>
  1892. <mask id="mask-197" fill="white">
  1893. <use xlink:href="#path-196"></use>
  1894. </mask>
  1895. <g id="SVGID_153_"></g>
  1896. <g id="Group" opacity="0.1" mask="url(#mask-197)" fill="#FEFEFE" fill-rule="nonzero">
  1897. <g transform="translate(27.482877, -15.057266)" id="Shape">
  1898. <polygon points="6.12920007 62.1444506 2.3785652 64.3199659 14.6307428 3.56234136 18.3818962 1.38682609"></polygon>
  1899. <polygon points="1.84238983 64.6309763 0.234900815 65.5629691 12.487597 4.80586382 14.095086 3.87335178"></polygon>
  1900. <polygon points="8.27234591 60.9014474 7.73668909 61.2119386 19.9893852 0.454833266 20.5250421 0.143822848"></polygon>
  1901. </g>
  1902. </g>
  1903. </g>
  1904. </g>
  1905. <path d="M44.9993216,53.6106155 C46.2267173,54.3177878 46.235014,55.4730435 45.0174707,56.1838503 L23.6119395,68.6803423 C22.3943962,69.3911491 20.4052582,69.3927068 19.1778625,68.6850153 L5.2958985,60.6859727 C4.06591013,59.9772428 4.05813196,58.8251024 5.27515671,58.1142956 L26.6806879,45.6178035 C27.8982312,44.9069967 29.8873692,44.902843 31.1173576,45.6115729 L44.9993216,53.6106155 Z M23.3842983,68.5489807 L44.7898295,56.0524886 C45.8834406,55.4138529 45.876181,54.3774976 44.7737546,53.7419772 L30.8917906,45.7429346 C29.7893643,45.1074141 28.0019402,45.1100102 26.9083291,45.748646 L5.50279789,58.245138 C4.40918682,58.8837738 4.41644644,59.920129 5.51887278,60.5556495 L19.4008368,68.554692 C20.5032632,69.1902125 22.2906872,69.1876164 23.3842983,68.5489807 L23.3842983,68.5489807 Z" id="Shape" fill="#D1D1D1" fill-rule="nonzero"></path>
  1906. <g transform="translate(2.592724, 38.421988)" fill-rule="nonzero" id="Shape">
  1907. <path d="M43.8725237,9.57122879 C45.1341433,10.2981313 45.14244,11.4788286 43.893784,12.2078079 L20.7760178,25.7037909 C19.524769,26.4343279 17.488962,26.4374432 16.2273424,25.7105407 L1.2325811,17.0707855 C-0.0264457871,16.3454407 -0.0347425046,15.1647434 1.21650621,14.4342064 L24.3342725,0.938223414 C25.5829285,0.209244071 27.6187355,0.206128774 28.8777624,0.931473606 L43.8725237,9.57122879 Z" fill="url(#radialGradient-198)"></path>
  1908. <path d="M44.7701248,11.2290857 C44.766495,11.2410276 44.7639023,11.2524504 44.7602725,11.2643923 C44.7250114,11.3661587 44.6726384,11.4658482 44.6078203,11.5634608 C44.5958938,11.5811141 44.5850043,11.5992867 44.5720407,11.6164208 C44.5020371,11.7135142 44.4175143,11.8080116 44.3179537,11.8978359 C44.2531356,11.9565074 44.170687,12.0099866 44.0934238,12.0650235 C44.0270501,12.1122722 43.9700101,12.1631553 43.8943026,12.2072887 L20.7765363,25.7032717 C20.5836376,25.8159416 20.3674044,25.9052467 20.143393,25.9831291 C20.0645742,26.0106476 19.9831627,26.0345315 19.9007141,26.057377 C19.7949309,26.0869723 19.6886292,26.1155292 19.5792163,26.1378555 C19.4506171,26.1643355 19.3209809,26.1887387 19.1882334,26.2058728 C19.1566022,26.2100265 19.124971,26.2157379 19.0933397,26.2193724 C18.9149603,26.2385834 18.7339882,26.2484485 18.5524975,26.2500062 C18.5239775,26.2505254 18.494939,26.2505254 18.466419,26.2505254 C18.287521,26.249487 18.1091416,26.2396219 17.9323178,26.2214493 C17.905872,26.2188532 17.8794263,26.2157379 17.8529805,26.2126226 C17.6771938,26.191854 17.5045183,26.1622587 17.3354727,26.1243559 C17.3048786,26.1176061 17.274803,26.1098178 17.2442088,26.1020296 C17.090201,26.0641268 16.9408601,26.0184358 16.7961861,25.965995 C16.7707774,25.9566491 16.743813,25.9493801 16.7184043,25.9400342 C16.5457289,25.8735745 16.3803131,25.7967306 16.2273424,25.708983 L1.23309964,17.0692279 C0.599956386,16.704219 0.283125485,16.2244633 0.28364403,15.7441885 L0.276902947,20.4285557 C0.276384402,20.9083114 0.593215303,21.3885862 1.22635856,21.7535951 L16.2211198,30.3933503 C16.3668309,30.4769441 16.5223944,30.551192 16.685736,30.6155748 C16.6940327,30.6186901 16.7033665,30.6207669 16.7116633,30.6244015 C16.7375905,30.6342666 16.7650734,30.6415356 16.7910006,30.6508815 C16.8848572,30.6846305 16.9787139,30.719418 17.0767188,30.7469364 C17.1290919,30.7619937 17.1835391,30.7728972 17.2369492,30.7858776 C17.2680619,30.7936659 17.2981375,30.8014541 17.3292502,30.8082039 C17.3572516,30.8144345 17.3842159,30.822742 17.4122173,30.8284534 C17.5169634,30.8502604 17.6232651,30.868433 17.7311224,30.8834903 C17.7689762,30.8886824 17.8073485,30.8917977 17.8457208,30.8959515 C17.8726852,30.8990667 17.899131,30.902182 17.9266138,30.9047781 C17.9660232,30.9089319 18.0043956,30.9146432 18.043805,30.9177585 C18.1490696,30.926066 18.2543342,30.9317774 18.3601173,30.9343734 C18.3933042,30.9354119 18.4264911,30.9338542 18.4596779,30.9338542 C18.4887164,30.9338542 18.5172364,30.9338542 18.5457564,30.933335 C18.5934625,30.9328158 18.6416872,30.9343734 18.6893933,30.9322966 C18.8086586,30.9281428 18.9279239,30.9198354 19.0456336,30.9078934 C19.0591158,30.9063358 19.0725979,30.9037397 19.0860801,30.902182 C19.1182299,30.8985475 19.1493426,30.8928362 19.1814924,30.8886824 C19.2732748,30.8772597 19.3655758,30.8663561 19.4558026,30.8502604 C19.4957305,30.8429914 19.5320287,30.8294918 19.5714381,30.8211843 C19.6818881,30.7983388 19.7876713,30.7703012 19.893973,30.7401866 C19.9499758,30.7246102 20.0096085,30.7152643 20.0640557,30.6976109 C20.0899829,30.6893035 20.1102062,30.6747654 20.1356149,30.6659387 C20.3601448,30.5880563 20.5758594,30.4987512 20.7687581,30.3860813 L43.8865244,16.8900983 C43.9000066,16.8823101 43.9129702,16.8745218 43.9254153,16.8667336 C43.9866036,16.8298693 44.0301613,16.7872935 44.0851271,16.7483523 C44.1629088,16.6933154 44.2453574,16.6398362 44.3101755,16.5806456 C44.3163981,16.5749342 44.3252133,16.5702612 44.3314359,16.5650691 C44.4066249,16.4954941 44.4724801,16.4238423 44.5300386,16.3506328 C44.5430022,16.3340179 44.5518174,16.3163646 44.5642625,16.2997497 C44.5772261,16.2820963 44.5881156,16.264443 44.6000421,16.2462704 C44.6192283,16.2171943 44.6420442,16.1881182 44.6586377,16.1585229 C44.6928616,16.0982938 44.7208631,16.0370263 44.7441976,15.9757588 C44.7478274,15.966413 44.749383,15.9565479 44.7524943,15.947202 C44.7566427,15.93526 44.7587168,15.9238372 44.7623466,15.9118953 C44.7742732,15.8729541 44.7882739,15.8334936 44.7960521,15.7945524 C44.8079786,15.7332849 44.8152382,15.6714982 44.8167939,15.6097115 C44.8167939,15.6003656 44.8173124,15.5910197 44.8173124,15.5816739 L44.8240721,10.8973066 C44.824572,11.0094573 44.8038302,11.1200503 44.7701248,11.2290857 Z" fill="url(#linearGradient-199)"></path>
  1909. </g>
  1910. <path d="M48.8277382,31.7459081 C50.2288464,32.5532891 50.2355875,33.8653481 48.8458873,34.6763636 L23.160287,49.6713233 C21.7705868,50.4823388 19.5112869,50.4859733 18.1101787,49.6785923 L1.45088848,40.0793258 C0.0497803051,39.2719449 0.0383723185,37.9604051 1.4280725,37.1488704 L27.1136729,22.1539107 C28.503373,21.3428952 30.7678584,21.3392607 32.168448,22.1466417 L48.8277382,31.7459081 Z" id="Shape" fill="url(#linearGradient-200)" fill-rule="nonzero"></path>
  1911. <path d="M49.8223072,33.5865291 C49.8181589,33.5995095 49.8155662,33.6130091 49.8114178,33.6259895 C49.7725269,33.7391786 49.7134128,33.8502908 49.6413351,33.9593262 C49.6283715,33.9790564 49.6159264,33.9987866 49.6019257,34.0179976 C49.5236254,34.1259945 49.4297688,34.2308762 49.3182817,34.3316041 C49.2456854,34.3970253 49.1539029,34.4567352 49.0678245,34.5180027 C48.9936726,34.5709627 48.9304101,34.627038 48.8458873,34.6763636 L23.160287,49.6713233 C23.005242,49.7616669 22.8361964,49.8385108 22.6619654,49.9091242 C22.616852,49.9272968 22.5701829,49.9449501 22.5240324,49.9615651 C22.4156566,50.0010255 22.3015767,50.0326977 22.1880154,50.064889 C22.0708242,50.0981189 21.952596,50.1292718 21.8312565,50.1541942 C21.6881381,50.1837895 21.5439827,50.2107888 21.3967159,50.2294805 C21.3614549,50.2341535 21.3272309,50.2403841 21.2919699,50.2440186 C21.0938857,50.2658257 20.8926903,50.27621 20.6914949,50.2782868 C20.6593452,50.2788061 20.6277139,50.2788061 20.5955642,50.2788061 C20.3969615,50.2777676 20.1988773,50.2668641 20.0028674,50.2466147 C19.9733103,50.2434994 19.9437533,50.2403841 19.9141962,50.2367496 C19.7197419,50.2139041 19.5278803,50.1811934 19.3406856,50.1391369 C19.3059431,50.1313487 19.2722377,50.122522 19.2380137,50.1142146 C19.0674125,50.0721581 18.9019967,50.0217941 18.7417663,49.9636419 C18.7132464,49.9532576 18.6831708,49.9454694 18.6551693,49.9345658 C18.4633077,49.8603179 18.2797429,49.7756857 18.1101787,49.6780731 L1.45036993,40.0788066 C0.744630397,39.6722605 0.391501358,39.1374679 0.392538448,38.6037138 L0.370241019,54.2186175 C0.369722474,54.7528908 0.722851514,55.2871641 1.4280725,55.6937103 L18.0873627,65.2929768 C18.2491487,65.3859164 18.4218242,65.4684718 18.6033149,65.5401236 C18.6126487,65.5437581 18.6230196,65.5463542 18.6323534,65.5499887 C18.6603548,65.5608923 18.6904304,65.5686805 18.7189504,65.5790648 C18.8236964,65.6169676 18.9279239,65.6553896 19.0373369,65.6860233 C19.0954139,65.7026382 19.1560837,65.7150994 19.2157163,65.7296375 C19.2499403,65.7379449 19.2831271,65.7467716 19.3178697,65.7545598 C19.3489823,65.7613097 19.3790579,65.7706555 19.4101706,65.7768861 C19.5263247,65.8007701 19.6450715,65.8215387 19.7643368,65.8381536 C19.8063389,65.843865 19.8493781,65.8469803 19.8918988,65.8521725 C19.9214559,65.855807 19.9510129,65.8589223 19.98057,65.8620376 C20.0241277,65.8667105 20.0676855,65.8729411 20.1112433,65.8765756 C20.2279159,65.8859215 20.345107,65.8921521 20.4628167,65.8947482 C20.4996334,65.8957866 20.53645,65.8937098 20.5732667,65.894229 C20.6054165,65.894229 20.6365292,65.8937098 20.668679,65.8937098 C20.7220891,65.8931905 20.7754992,65.8947482 20.8283908,65.8926713 C20.9606197,65.8879984 21.0928487,65.8791717 21.2240405,65.8656721 C21.2395968,65.8641144 21.2541161,65.8609991 21.2691539,65.8594415 C21.304415,65.8552878 21.3386389,65.8490572 21.3739,65.8443842 C21.4760533,65.8314038 21.5787252,65.8194619 21.6788043,65.8012893 C21.7228806,65.7929818 21.7638457,65.7779246 21.807922,65.7690979 C21.9302986,65.7436563 22.0480083,65.7125033 22.1657179,65.6792735 C22.2279433,65.6616202 22.2943171,65.6517551 22.3549868,65.6320249 C22.4052857,65.6154099 22.4519547,65.5941221 22.5006979,65.5764687 C22.5473669,65.5593346 22.5935174,65.5422005 22.6391494,65.5235087 C22.8133805,65.4528953 22.9824261,65.3765706 23.137471,65.2857077 L48.8230713,50.290748 C48.8375906,50.2824406 48.8526284,50.2736139 48.8666291,50.2647872 C48.9345585,50.2237692 48.9827831,50.1765205 49.0439714,50.1329064 C49.1305684,50.0711196 49.2228694,50.0114098 49.2954657,49.9459886 C49.3022068,49.939758 49.3125777,49.9345658 49.3193187,49.9283352 C49.4028045,49.850972 49.4764378,49.7710128 49.5407374,49.6889766 C49.5552567,49.6702848 49.565109,49.6510739 49.5785912,49.6323821 C49.5925919,49.6126519 49.605037,49.5929217 49.6185191,49.5731914 C49.640298,49.5404808 49.6657067,49.5082894 49.6843743,49.4745404 C49.7222281,49.4075615 49.7538593,49.3395442 49.779268,49.2710077 C49.7834164,49.2606234 49.7844535,49.2502391 49.7880833,49.2398547 C49.7927502,49.2268743 49.7953429,49.2138939 49.7989727,49.2009135 C49.8124549,49.1572994 49.8274927,49.1136852 49.836308,49.0695519 C49.8497901,49.0015346 49.8575683,48.932998 49.8596425,48.8644615 C49.860161,48.8540772 49.860161,48.8436929 49.860161,48.8327893 L49.8825228,33.2178857 C49.8834955,33.3419783 49.860161,33.4650325 49.8223072,33.5865291 Z" id="Shape" fill="url(#linearGradient-201)" fill-rule="nonzero"></path>
  1912. <g transform="translate(0.000000, 32.710612)" id="Clipped">
  1913. <g>
  1914. <mask id="mask-203" fill="white">
  1915. <use xlink:href="#path-202"></use>
  1916. </mask>
  1917. <g id="SVGID_159_"></g>
  1918. <g id="Group" opacity="0.1" mask="url(#mask-203)" fill="#FEFEFE" fill-rule="nonzero">
  1919. <g transform="translate(-3.111269, -8.826673)" id="Shape">
  1920. <polygon points="5.98452606 43.7953552 2.22715011 41.6307434 25.1141639 1.25494521 28.8710213 3.41955695"></polygon>
  1921. <polygon points="1.69045619 41.3212907 0.080374451 40.3934516 22.9673883 0.0176533459 24.57747 0.945492439"></polygon>
  1922. <polygon points="8.13130171 45.032647 7.5946078 44.7231943 30.4811031 4.34739604 31.0183155 4.65684881"></polygon>
  1923. </g>
  1924. </g>
  1925. </g>
  1926. <g>
  1927. <mask id="mask-205" fill="white">
  1928. <use xlink:href="#path-204"></use>
  1929. </mask>
  1930. <g id="SVGID_159_"></g>
  1931. <g id="Group" opacity="0.1" mask="url(#mask-205)" fill="#FEFEFE" fill-rule="nonzero">
  1932. <g transform="translate(27.482877, -15.057266)" id="Shape">
  1933. <polygon points="6.09912447 62.3510986 2.3484896 64.5266139 14.6011857 3.76898936 18.3518206 1.59347408"></polygon>
  1934. <polygon points="1.81283278 64.8371051 0.205343759 65.7696171 12.4575214 5.0119926 14.0650104 4.07948056"></polygon>
  1935. <polygon points="8.24278885 61.1075761 7.70713203 61.4185866 19.9593096 0.66096204 20.4949665 0.350470838"></polygon>
  1936. </g>
  1937. </g>
  1938. </g>
  1939. </g>
  1940. <g transform="translate(2.592724, 17.653346)" fill-rule="nonzero" id="Shape">
  1941. <path d="M43.8429666,9.26852583 C45.1045862,9.99542831 45.112883,11.1761256 43.864227,11.905105 L20.7464607,25.4010879 C19.495212,26.1316249 17.4594049,26.1347402 16.1977853,25.4073185 L1.20302404,16.7675633 C-0.0560028433,16.0422185 -0.0642995608,14.8615212 1.18694915,14.1309842 L24.3047154,0.635001237 C25.5533714,-0.0939781063 27.5891785,-0.0970934026 28.8482054,0.628770645 L43.8429666,9.26852583 Z" fill="url(#linearGradient-206)"></path>
  1942. <path d="M44.7400492,10.9263827 C44.7364194,10.9383247 44.7338267,10.9497474 44.7301969,10.9616894 C44.6949358,11.0634557 44.6425628,11.1631452 44.5777447,11.2607578 C44.5658182,11.2784112 44.5549287,11.2965837 44.5419651,11.3142371 C44.4719615,11.4113305 44.3874387,11.5053086 44.2878781,11.5956522 C44.22306,11.6543236 44.1400928,11.7078029 44.0623111,11.763359 C43.9959374,11.8106076 43.939416,11.8609716 43.8637084,11.905105 L20.7459422,25.4010879 C20.5530435,25.5137578 20.3368103,25.603063 20.1127989,25.6809454 C20.0339801,25.7084638 19.9525685,25.7323478 19.8706385,25.7551933 C19.7648553,25.7853078 19.6580351,25.8133455 19.5481036,25.836191 C19.4195044,25.862671 19.2903868,25.8870742 19.1576393,25.9036891 C19.1254895,25.9078428 19.0943768,25.9135542 19.062227,25.9171887 C18.8838476,25.9363997 18.7028755,25.9462648 18.5213848,25.9478224 C18.4928648,25.9483416 18.4638263,25.9483416 18.4353063,25.9483416 C18.2569269,25.9473032 18.0785475,25.9374381 17.9017237,25.9192655 C17.8747593,25.9166695 17.847795,25.9135542 17.8208307,25.9104389 C17.6455625,25.8896702 17.4728871,25.8600749 17.30436,25.8226914 C17.2732473,25.8159416 17.2431717,25.8076341 17.212059,25.8003651 C17.0585698,25.7624623 16.9097474,25.7172905 16.7661105,25.6653689 C16.7401832,25.656023 16.7127004,25.648754 16.6867731,25.6388889 C16.5140977,25.5724292 16.3492004,25.4961045 16.1962297,25.4078377 L1.20146841,16.7680826 C0.56832515,16.4030737 0.25149425,15.923318 0.252012795,15.4430432 L0.245271712,20.1274104 C0.244753167,20.6071661 0.561584067,21.0874409 1.19472732,21.4524498 L16.1894886,30.092205 C16.3346812,30.1757988 16.4907632,30.2500467 16.6541048,30.3144295 C16.6624015,30.3175448 16.6717353,30.3201408 16.680032,30.3232561 C16.7054407,30.3331212 16.7329236,30.3403903 16.7588508,30.3497362 C16.8527075,30.3840044 16.9465641,30.4182727 17.0445691,30.4457911 C17.0969421,30.4608484 17.1519078,30.4717519 17.205318,30.4847323 C17.2359121,30.4920014 17.2659877,30.5003088 17.2971004,30.5070586 C17.3251018,30.5132892 17.3520661,30.5215967 17.3800676,30.5273081 C17.4848136,30.5491151 17.5911153,30.5672877 17.6989726,30.582345 C17.7368264,30.5875371 17.7757173,30.5906524 17.8135711,30.5948061 C17.8405354,30.5979214 17.8669812,30.6010367 17.8939455,30.6036328 C17.9333549,30.6077865 17.9722458,30.6134979 18.0116552,30.6166132 C18.1169198,30.6249207 18.2221844,30.630632 18.3279675,30.6332281 C18.3611544,30.6342666 18.3943413,30.6327089 18.4280467,30.6327089 C18.4565667,30.6327089 18.4850866,30.6327089 18.5136066,30.6321897 C18.5618313,30.6316705 18.6095374,30.6332281 18.6577621,30.6311513 C18.7770274,30.6269975 18.8962927,30.6186901 19.0140024,30.6067481 C19.0274845,30.6051905 19.0409667,30.6025944 19.0544489,30.6010367 C19.0865987,30.5974022 19.1177113,30.5916908 19.1498611,30.5875371 C19.2416436,30.5761144 19.3339445,30.5652108 19.4241713,30.5491151 C19.4640993,30.5418461 19.500916,30.5283465 19.5403254,30.520039 C19.6502569,30.4971935 19.75604,30.4691559 19.8618232,30.4395605 C19.917826,30.4234648 19.9779772,30.4146382 20.032943,30.3964656 C20.0588702,30.3881581 20.079612,30.3736201 20.1050207,30.3647934 C20.3295506,30.286911 20.5452653,30.1976059 20.7376454,30.084936 L43.8554117,16.588953 C43.8688939,16.5811648 43.8818575,16.5733765 43.8943026,16.5655883 C43.9554909,16.5287239 43.9990486,16.485629 44.0540144,16.4466878 C44.1312776,16.3916509 44.2137262,16.3381717 44.2785443,16.2795002 C44.2847668,16.2737889 44.2935821,16.2691159 44.2998046,16.2639238 C44.3749936,16.1943488 44.4408488,16.122697 44.4984073,16.0494875 C44.5113709,16.0328726 44.5207048,16.0152193 44.5326313,15.9980851 C44.5455949,15.9804318 44.5564843,15.9627784 44.5684109,15.9446059 C44.587597,15.9150106 44.610413,15.8864537 44.627525,15.8568584 C44.6612304,15.7966293 44.6897504,15.7353618 44.7130849,15.6740943 C44.7167147,15.6647484 44.7177518,15.6548833 44.7213816,15.6455374 C44.72553,15.6335955 44.7276041,15.6221727 44.731234,15.6102307 C44.7431605,15.5712895 44.7571612,15.5318291 44.7649394,15.4923687 C44.7768659,15.4311012 44.7841255,15.3693145 44.7856812,15.3075278 C44.7856812,15.2981819 44.7861997,15.288836 44.7861997,15.2794901 L44.7930997,10.5951229 C44.7944964,10.7067543 44.7742732,10.8173473 44.7400492,10.9263827 Z" fill="url(#linearGradient-207)"></path>
  1943. </g>
  1944. <path d="M48.7981812,10.6646978 C50.1992893,11.4720788 50.2060304,12.7841377 48.8163302,13.5951532 L23.1307299,28.5901129 C21.7410297,29.4011284 19.4817298,29.4047629 18.0806217,28.597382 L1.42133142,18.9981155 C0.020223249,18.1907345 0.00881526236,16.8791948 1.39851545,16.0676601 L27.0841158,1.07270037 C28.473816,0.261684893 30.7383013,0.25805038 32.1388909,1.06543135 L48.7981812,10.6646978 Z" id="Shape" fill="url(#linearGradient-208)" fill-rule="nonzero"></path>
  1945. <path d="M49.7927502,12.5053187 C49.7886018,12.5182991 49.7860091,12.5317987 49.7818607,12.5447791 C49.7429699,12.6579682 49.6838558,12.7690805 49.611778,12.8781159 C49.5988144,12.8978461 49.5863693,12.9175763 49.5723686,12.9367873 C49.4940684,13.0447842 49.4002117,13.1496659 49.2887246,13.2503938 C49.2161283,13.315815 49.1243459,13.3755248 49.0382674,13.4367923 C48.9641155,13.4897524 48.9008531,13.5458277 48.8163302,13.5951532 L23.1307299,28.5901129 C22.975685,28.6804565 22.8066394,28.7573005 22.6324083,28.8279139 C22.5867764,28.8460865 22.5406259,28.8637398 22.4944754,28.8803547 C22.3860995,28.9198151 22.2720196,28.9514873 22.1584583,28.9836787 C22.0412672,29.0169085 21.923039,29.0480615 21.8016995,29.0729839 C21.6585811,29.1025792 21.5144256,29.1295784 21.3671589,29.1482702 C21.3318978,29.1529431 21.2976739,29.1591737 21.2624128,29.1628083 C21.0643287,29.1846153 20.8631333,29.1949997 20.6619379,29.1970765 C20.6297881,29.1975957 20.5981569,29.1975957 20.5660071,29.1975957 C20.3674044,29.1965573 20.1698388,29.1856538 19.9738289,29.1654043 C19.9442718,29.162289 19.9147148,29.1591737 19.8851577,29.1555392 C19.6907034,29.1326937 19.4988418,29.0999831 19.3116471,29.0579266 C19.2769046,29.0501384 19.2431992,29.0413117 19.2089752,29.0330042 C19.038374,28.9909477 18.8729582,28.9405838 18.7127278,28.8824316 C18.6842079,28.8720473 18.6541323,28.864259 18.6261308,28.8533555 C18.4342692,28.7791076 18.2507044,28.6944754 18.0811402,28.5968628 L1.42184996,18.9975963 C0.716110431,18.5910501 0.362981391,18.0562576 0.364018481,17.5225035 L0.341721053,33.1374072 C0.341202508,33.6716805 0.694331547,34.2059538 1.39955254,34.6125 L18.0588428,44.2117664 C18.2206288,44.3047061 18.3933042,44.3872615 18.5747949,44.4589133 C18.5841287,44.4625478 18.5944996,44.4651439 18.6038334,44.4687784 C18.6318348,44.4796819 18.6619104,44.4874702 18.6904304,44.4978545 C18.7951764,44.5357573 18.899404,44.5741792 19.0088169,44.604813 C19.0668939,44.6214279 19.1275637,44.6338891 19.1871964,44.6484271 C19.2214203,44.6567346 19.2546072,44.6655613 19.2893497,44.6733495 C19.3204624,44.6800993 19.350538,44.6894452 19.3816507,44.6956758 C19.4978047,44.7195597 19.6165515,44.7403284 19.7358168,44.7569433 C19.7778189,44.7626547 19.8208582,44.76577 19.8633788,44.7709621 C19.8929359,44.7745966 19.9224929,44.7777119 19.95205,44.7808272 C19.9956078,44.7855002 20.0391655,44.7917308 20.0827233,44.7953653 C20.1993959,44.8047112 20.316587,44.8109418 20.4342967,44.8135379 C20.4711134,44.8145763 20.5079301,44.8124994 20.5447468,44.8130186 C20.5768965,44.8130186 20.6080092,44.8124994 20.640159,44.8124994 C20.6935691,44.8119802 20.7469792,44.8135379 20.7998708,44.811461 C20.9320998,44.806788 21.0643287,44.7979614 21.1955205,44.7844618 C21.2105583,44.7829041 21.2255961,44.7797888 21.2406339,44.7782312 C21.275895,44.7740774 21.3101189,44.7678468 21.3458985,44.7631739 C21.4480519,44.7501935 21.5507238,44.7382515 21.6508029,44.720079 C21.6948792,44.7117715 21.7358443,44.6967142 21.7799206,44.6878876 C21.9022972,44.662446 22.0200068,44.631293 22.1377165,44.5980632 C22.1999419,44.5804098 22.2663156,44.5705447 22.3269854,44.5508145 C22.3772842,44.5341996 22.4239533,44.5129118 22.4726965,44.4952584 C22.5193655,44.4781243 22.565516,44.4609901 22.611148,44.4422984 C22.785379,44.371685 22.9544247,44.2953602 23.1094696,44.2044974 L48.7950699,29.2095377 C48.8095892,29.2012302 48.824627,29.1924036 48.8386277,29.1835769 C48.906557,29.1425588 48.9547817,29.0953102 49.01597,29.051696 C49.102567,28.9899093 49.194868,28.9301995 49.2674643,28.8647782 C49.2742053,28.8585476 49.2845762,28.8533555 49.2913173,28.8471249 C49.374803,28.7697617 49.4484364,28.6898024 49.512736,28.6077663 C49.5272552,28.5890745 49.5371076,28.5698635 49.5505897,28.5511717 C49.5645905,28.5314415 49.5770355,28.5117113 49.5905177,28.4919811 C49.6122966,28.4592705 49.6377053,28.4270791 49.6563729,28.3933301 C49.6942267,28.3263512 49.7258579,28.2583339 49.7512666,28.1897974 C49.755415,28.179413 49.7564521,28.1690287 49.7600819,28.1586444 C49.7647488,28.145664 49.7673415,28.1326836 49.7709713,28.1197032 C49.7844535,28.076089 49.7994913,28.0324749 49.8083065,27.9883415 C49.8217887,27.9203242 49.8295669,27.8517877 49.8316411,27.7832512 C49.8321596,27.7728669 49.8321596,27.7624826 49.8321596,27.751579 L49.854457,12.1366753 C49.8534199,12.2602487 49.830604,12.383303 49.7927502,12.5053187 Z" id="Shape" fill="url(#linearGradient-209)" fill-rule="nonzero"></path>
  1946. <g transform="translate(0.000000, 11.941969)" id="Clipped">
  1947. <g>
  1948. <mask id="mask-211" fill="white">
  1949. <use xlink:href="#path-210"></use>
  1950. </mask>
  1951. <g id="SVGID_165_"></g>
  1952. <g id="Group" opacity="0.1" mask="url(#mask-211)" fill="#FEFEFE" fill-rule="nonzero">
  1953. <g transform="translate(-3.111269, -9.345889)" id="Shape">
  1954. <polygon points="5.95445045 44.0020032 2.19759305 41.8368722 25.0840883 1.46107398 28.8414643 3.62620494"></polygon>
  1955. <polygon points="1.66089914 41.5279386 0.0508173948 40.6000996 22.9373127 0.224301336 24.5473944 1.15214043"></polygon>
  1956. <polygon points="8.10122611 45.2387758 7.5645322 44.929323 30.451546 4.55404403 30.9882399 4.86297759"></polygon>
  1957. </g>
  1958. </g>
  1959. </g>
  1960. <g>
  1961. <mask id="mask-213" fill="white">
  1962. <use xlink:href="#path-212"></use>
  1963. </mask>
  1964. <g id="SVGID_165_"></g>
  1965. <g id="Group" opacity="0.1" mask="url(#mask-213)" fill="#FEFEFE" fill-rule="nonzero">
  1966. <g transform="translate(27.482877, -15.057266)" id="Shape">
  1967. <polygon points="6.06956741 62.0380113 2.318414 64.2135266 14.5711101 3.45590207 18.321745 1.2803868"></polygon>
  1968. <polygon points="1.78275718 64.524537 0.175268158 65.4565298 12.4279643 4.69942453 14.0354533 3.76691249"></polygon>
  1969. <polygon points="8.21271325 60.7950081 7.67705643 61.1054993 19.929234 0.348393974 20.4654094 0.0373835561"></polygon>
  1970. </g>
  1971. </g>
  1972. </g>
  1973. </g>
  1974. <path d="M44.939689,11.467925 C46.1670846,12.1750973 46.1753814,13.330353 44.9578381,14.0411598 L23.5523069,26.5376519 C22.3347636,27.2484587 20.3456255,27.2500163 19.1182299,26.5423248 L5.23626584,18.5432822 C4.00627747,17.8345523 3.9984993,16.6824119 5.21552405,15.9716051 L26.6210552,3.47511307 C27.8385985,2.76430629 29.8277366,2.76015256 31.0577249,3.46888247 L44.939689,11.467925 Z M23.3246657,26.4068094 L44.7301969,13.9103174 C45.8238079,13.2716816 45.8165483,12.2353264 44.714122,11.5998059 L30.8321579,3.60076335 C29.7297316,2.9652429 27.9423075,2.96783898 26.8486964,3.60647473 L5.44316524,16.1029668 C4.34955416,16.7416025 4.35681379,17.7779578 5.45924013,18.4134782 L19.3412042,26.4125208 C20.4436305,27.047522 22.2310546,27.044926 23.3246657,26.4068094 L23.3246657,26.4068094 Z" id="Shape" fill="#00F5EE" fill-rule="nonzero"></path>
  1975. <g transform="translate(36.816684, 20.249426)" fill-rule="nonzero" id="Shape">
  1976. <g>
  1977. <path d="M11.3830964,0.898762994 L0.482765251,7.2207377 C0.38527882,7.27733225 0.306460003,7.2176224 0.306460003,7.08781839 L0.306460003,7.02810854 C0.306460003,6.89830453 0.384760275,6.74721266 0.482246706,6.69061811 L11.3825779,0.368124184 C11.4800643,0.311529634 11.5588831,0.371239481 11.5588831,0.501043495 L11.5588831,0.560753341 C11.5588831,0.691595787 11.4805829,0.84268766 11.3830964,0.898762994 Z" fill="url(#linearGradient-214)"></path>
  1978. <path d="M11.3856892,2.75911413 L0.485357975,9.08160805 C0.387871544,9.1382026 0.309052728,9.07849275 0.309052728,8.94868874 L0.309052728,8.88897889 C0.309052728,8.75917488 0.387352999,8.608083 0.48483943,8.55148845 L11.3851706,2.22899453 C11.482657,2.17239998 11.5614759,2.23210983 11.5614759,2.36191384 L11.5614759,2.42162369 C11.5614759,2.5514277 11.4831756,2.70251957 11.3856892,2.75911413 Z" fill="url(#linearGradient-215)"></path>
  1979. <path d="M11.3882819,4.61946526 L0.487950699,10.9419592 C0.390464268,10.9985537 0.311645452,10.9388439 0.311645452,10.8090399 L0.311645452,10.74933 C0.311645452,10.619526 0.389945723,10.4684341 0.487432154,10.4118396 L11.3877633,4.08934566 C11.4852498,4.03275111 11.5640686,4.09246096 11.5640686,4.22226497 L11.5640686,4.28197482 C11.5640686,4.41177883 11.4857683,4.56287071 11.3882819,4.61946526 Z" fill="url(#linearGradient-216)"></path>
  1980. </g>
  1981. <g transform="translate(0.000000, 20.768642)">
  1982. <path d="M11.4121349,0.591906305 L0.511803762,6.91440023 C0.414317331,6.97099478 0.335498515,6.91128493 0.335498515,6.78148092 L0.335498515,6.72177107 C0.335498515,6.59196706 0.413798786,6.44087518 0.511285217,6.38428063 L11.4116164,0.0623059268 C11.5091028,0.00571137662 11.5879216,0.0654212231 11.5879216,0.195225237 L11.5879216,0.254935084 C11.5879216,0.384219882 11.5096214,0.535311754 11.4121349,0.591906305 Z" fill="url(#linearGradient-217)"></path>
  1983. <path d="M11.4147277,2.45173822 L0.514396486,8.77423214 C0.416910055,8.83082669 0.338091239,8.77111685 0.338091239,8.64131283 L0.338091239,8.58160298 C0.338091239,8.45179897 0.41639151,8.3007071 0.513877941,8.24411255 L11.4142091,1.92161863 C11.5116956,1.86502408 11.5905144,1.92473392 11.5905144,2.05453794 L11.5905144,2.11424778 C11.5905144,2.24457101 11.5122141,2.39566289 11.4147277,2.45173822 Z" fill="url(#linearGradient-218)"></path>
  1984. <path d="M11.4173204,4.31208935 L0.51698921,10.6345833 C0.41950278,10.6911778 0.340683963,10.631468 0.340683963,10.501664 L0.340683963,10.4419541 C0.340683963,10.3121501 0.418984235,10.1610582 0.516470666,10.1044637 L11.4168019,3.78196976 C11.5142883,3.72537521 11.5931071,3.78508505 11.5931071,3.91488907 L11.5931071,3.97459891 C11.5931071,4.10440293 11.5148068,4.2554948 11.4173204,4.31208935 Z" fill="url(#linearGradient-219)"></path>
  1985. </g>
  1986. <g transform="translate(0.000000, 41.018068)">
  1987. <path d="M11.4411735,0.803746456 L0.540842273,7.12624038 C0.443355842,7.18283493 0.364537026,7.12312508 0.364537026,6.99332107 L0.364537026,6.93361122 C0.364537026,6.80380721 0.442837298,6.65271533 0.540323728,6.59612078 L11.4406549,0.273626862 C11.5381413,0.217032312 11.6169602,0.276742158 11.6169602,0.406546172 L11.6169602,0.466256019 C11.6169602,0.596060033 11.5381413,0.747151906 11.4411735,0.803746456 Z" fill="url(#linearGradient-220)"></path>
  1988. <path d="M11.4437662,2.66409759 L0.543434997,8.98659151 C0.445948567,9.04318606 0.36712975,8.98347621 0.36712975,8.8536722 L0.36712975,8.79396235 C0.36712975,8.66415834 0.445430022,8.51306647 0.542916453,8.45647191 L11.4432476,2.13397799 C11.5407341,2.07738344 11.6195529,2.13709329 11.6195529,2.2668973 L11.6195529,2.32660715 C11.6195529,2.45641116 11.5407341,2.60750304 11.4437662,2.66409759 Z" fill="url(#linearGradient-221)"></path>
  1989. <path d="M11.4463589,4.5239295 L0.546027722,10.8464234 C0.448541291,10.903018 0.369722474,10.8433081 0.369722474,10.7135041 L0.369722474,10.6537943 C0.369722474,10.5239903 0.448022746,10.3728984 0.545509177,10.3163038 L11.4458404,3.99432912 C11.5433268,3.93773457 11.6221456,3.99744442 11.6221456,4.12724843 L11.6221456,4.18695828 C11.6221456,4.3167623 11.5438453,4.46785417 11.4463589,4.5239295 Z" fill="url(#linearGradient-222)"></path>
  1990. </g>
  1991. <g transform="translate(0.000000, 61.267495)">
  1992. <path d="M11.470212,1.01558661 L0.569880785,7.33808053 C0.472394354,7.39467508 0.393575537,7.33496523 0.393575537,7.20516122 L0.393575537,7.14545137 C0.393575537,7.01564736 0.471875809,6.86455549 0.56936224,6.80796094 L11.4696934,0.485467013 C11.5671799,0.428872463 11.6459987,0.488582309 11.6459987,0.618386323 L11.6459987,0.67809617 C11.6459987,0.8084194 11.5671799,0.959511273 11.470212,1.01558661 Z" fill="url(#linearGradient-223)"></path>
  1993. <path d="M11.4728047,2.87593774 L0.572473509,9.19791244 C0.474987078,9.25450699 0.396168262,9.19479715 0.396168262,9.06499313 L0.396168262,9.00528329 C0.396168262,8.87547927 0.474468533,8.7243874 0.571954964,8.66779285 L11.4722861,2.34529893 C11.5697726,2.28870438 11.6485914,2.34841422 11.6485914,2.47821824 L11.6485914,2.53792809 C11.6485914,2.66825132 11.5697726,2.81934319 11.4728047,2.87593774 Z" fill="url(#linearGradient-224)"></path>
  1994. <path d="M11.4753974,4.73576965 L0.575066233,11.0577444 C0.477579802,11.1143389 0.398760986,11.0546291 0.398760986,10.924825 L0.398760986,10.8651152 C0.398760986,10.7353112 0.477061257,10.5842193 0.574547688,10.5276248 L11.4748789,4.20513084 C11.5723653,4.14853629 11.6511841,4.20824614 11.6511841,4.33805015 L11.6511841,4.39776 C11.6511841,4.52860245 11.5728838,4.67969432 11.4753974,4.73576965 Z" fill="url(#linearGradient-225)"></path>
  1995. </g>
  1996. </g>
  1997. </g>
  1998. <g transform="translate(23.334518, 49.325525)" fill-rule="nonzero" id="Shape">
  1999. <path d="M0.239049174,5.05301066 C0.238012084,4.45695063 0.657514863,3.73004815 1.17605971,3.42942205 C1.69460455,3.12879596 2.11514442,3.36815456 2.11618151,3.96421459 C2.1172186,4.56027463 1.69771582,5.28717711 1.17917098,5.5878032 C0.660626132,5.8884293 0.240086263,5.6490707 0.239049174,5.05301066 Z" fill="url(#linearGradient-226)"></path>
  2000. <path d="M2.94844599,3.42007617 C2.9474089,2.82401613 3.36691168,2.09711365 3.88545652,1.79648756 C4.40400137,1.49586146 4.82454124,1.73522006 4.82557833,2.33128009 C4.82661542,2.92734013 4.40711264,3.65424261 3.88856779,3.9548687 C3.37002295,4.25601402 2.94948308,4.0161362 2.94844599,3.42007617 Z" fill="url(#linearGradient-227)"></path>
  2001. <path d="M5.6578428,1.78766088 C5.65680571,1.19160085 6.07630849,0.464698371 6.59485334,0.164072274 C7.11339818,-0.136553823 7.53393805,0.102804779 7.53497514,0.698864812 C7.53601223,1.29492485 7.11650945,2.02182732 6.59796461,2.32245342 C6.07941976,2.62307952 5.65836135,2.38372092 5.6578428,1.78766088 Z" fill="url(#linearGradient-228)"></path>
  2002. </g>
  2003. <g transform="translate(23.334518, 69.574952)" fill-rule="nonzero" id="Shape">
  2004. <path d="M0.268087685,5.26537003 C0.267050595,4.66931 0.686553375,3.94240752 1.20509822,3.64178142 C1.72364306,3.34115532 2.14418293,3.58051393 2.14522002,4.17657396 C2.14625711,4.77263399 1.72675433,5.49953647 1.20820949,5.80016257 C0.689664644,6.10078867 0.269124775,5.86143006 0.268087685,5.26537003 Z" fill="url(#linearGradient-229)"></path>
  2005. <path d="M2.9774845,3.63243553 C2.97644741,3.0363755 3.39595019,2.30947302 3.91449503,2.00884692 C4.43303988,1.70822083 4.85357975,1.94757943 4.85461684,2.54363946 C4.85565393,3.13969949 4.43615115,3.86660197 3.9176063,4.16722807 C3.39906146,4.46785417 2.97800304,4.22849557 2.9774845,3.63243553 Z" fill="url(#linearGradient-230)"></path>
  2006. <path d="M5.68688131,1.99950103 C5.68584422,1.403441 6.105347,0.676538522 6.62389185,0.375912425 C7.14243669,0.0752863282 7.56297656,0.31464493 7.56401365,0.910704963 C7.56505074,1.506765 7.14554796,2.23366748 6.62700312,2.53429357 C6.10845827,2.83491967 5.68739986,2.59556107 5.68688131,1.99950103 Z" fill="url(#linearGradient-231)"></path>
  2007. </g>
  2008. <g transform="translate(23.334518, 89.824378)" fill-rule="nonzero" id="Shape">
  2009. <path d="M0.297126196,5.47721018 C0.296089106,4.88115015 0.715591886,4.15424767 1.23413673,3.85362157 C1.75268158,3.55299548 2.17322145,3.79235408 2.17425853,4.38841411 C2.17529562,4.98447414 1.75579284,5.71137662 1.237248,6.01200272 C0.718703155,6.31262882 0.298163286,6.07327021 0.297126196,5.47721018 Z" fill="url(#linearGradient-232)"></path>
  2010. <path d="M3.00652301,3.84427568 C3.00548592,3.24821565 3.4249887,2.52131317 3.94353355,2.22068707 C4.46207839,1.92006098 4.88261826,2.15941958 4.88365535,2.75547961 C4.88469244,3.35153965 4.46518966,4.07844213 3.94664481,4.37906822 C3.42809997,4.67969432 3.00704156,4.44033572 3.00652301,3.84427568 Z" fill="url(#linearGradient-233)"></path>
  2011. <path d="M5.71540128,2.21134119 C5.71436419,1.61528115 6.13386697,0.888378673 6.65241182,0.587752576 C7.17095666,0.287126479 7.59149653,0.526485081 7.59253362,1.12254511 C7.59357071,1.71860515 7.17406793,2.44550763 6.65552308,2.74613372 C6.13697824,3.04675982 5.71643837,2.80740122 5.71540128,2.21134119 Z" fill="url(#linearGradient-234)"></path>
  2012. </g>
  2013. <g transform="translate(23.334518, 28.556883)" fill-rule="nonzero" id="Shape">
  2014. <path d="M0.210010662,5.36038657 C0.208973573,4.76432654 0.628476352,4.03742406 1.1470212,3.73679796 C1.66556604,3.43617186 2.08610591,3.67553047 2.087143,4.2715905 C2.08818009,4.86765053 1.66867731,5.59455301 1.15013247,5.89517911 C0.631587621,6.1958052 0.211047752,5.9564466 0.210010662,5.36038657 Z" fill="url(#linearGradient-235)"></path>
  2015. <path d="M5.62880429,2.09451757 C5.6277672,1.49845754 6.04726998,0.77155506 6.56581483,0.470928963 C7.08435967,0.170302867 7.50489954,0.409661469 7.50593663,1.0057215 C7.50697372,1.60178153 7.08747094,2.32868401 6.5689261,2.62931011 C6.05038125,2.92993621 5.62932284,2.69057761 5.62880429,2.09451757 Z" fill="url(#linearGradient-236)"></path>
  2016. <path d="M2.91940748,3.72745207 C2.91837039,3.13139204 3.33787317,2.40448956 3.85641801,2.10386346 C4.37496286,1.80323736 4.79550273,2.04259597 4.79653982,2.638656 C4.79757691,3.23471603 4.37807413,3.96161851 3.85952928,4.26224461 C3.34098444,4.56287071 2.92044457,4.3235121 2.91940748,3.72745207 Z" fill="url(#linearGradient-237)"></path>
  2017. </g>
  2018. </g>
  2019. </g>
  2020. </g>
  2021. <g id="screen_1" transform="translate(364.018481, 211.320935)">
  2022. <g id="Group">
  2023. <path d="M102.078664,82.9395729 L4.72498063,139.295803 C2.93081546,140.333197 1.47629717,139.231939 1.47629717,136.836276 L0.378019192,63.5660642 C0.378019192,61.1704013 1.83253748,58.3879224 3.62670265,57.3505288 L100.980386,0.994298749 C102.774551,-0.0430949327 104.229588,1.05816232 104.229588,3.45382521 L105.327866,76.7240375 C105.327866,79.1191811 103.873348,81.9021792 102.078664,82.9395729 Z" id="Shape" fill="url(#linearGradient-238)" fill-rule="nonzero" opacity="0.8"></path>
  2024. <g id="XMLID_72_" transform="translate(5.703993, 48.806309)" fill="#FFFFFF">
  2025. <g id="XMLID_122_" opacity="0.5" transform="translate(7.778173, 0.000000)" fill-rule="nonzero">
  2026. <g id="Group">
  2027. <polygon id="XMLID_83_" points="42.950551 0.380066153 0.20015831 25.0942312 0.20015831 24.7531063 42.950551 0.0389412043"></polygon>
  2028. </g>
  2029. </g>
  2030. <g id="XMLID_118_" opacity="0.5" transform="translate(7.778173, 8.826673)" fill-rule="nonzero">
  2031. <g id="Group">
  2032. <polygon id="XMLID_81_" points="42.950551 0.715479726 0.20015831 25.4296448 0.20015831 25.0885199 42.950551 0.374354777"></polygon>
  2033. </g>
  2034. </g>
  2035. <g id="XMLID_114_" opacity="0.5" transform="translate(7.778173, 18.172562)" fill-rule="nonzero">
  2036. <g id="Group">
  2037. <polygon id="XMLID_78_" points="42.950551 0.531158026 0.20015831 25.2453231 0.20015831 24.9041982 42.950551 0.190033077"></polygon>
  2038. </g>
  2039. </g>
  2040. <g id="XMLID_110_" opacity="0.5" transform="translate(7.778173, 27.518451)" fill-rule="nonzero">
  2041. <g id="Group">
  2042. <polygon id="XMLID_75_" points="42.950551 0.347874758 0.20015831 25.0620398 0.20015831 24.7209149 42.950551 0.00674980874"></polygon>
  2043. </g>
  2044. </g>
  2045. <g id="XMLID_106_" opacity="0.5" transform="translate(7.778173, 36.345124)" fill-rule="nonzero">
  2046. <g id="Group">
  2047. <polygon id="XMLID_34_" points="42.950551 0.682769115 0.20015831 25.3969342 0.20015831 25.0558092 42.950551 0.341644165"></polygon>
  2048. </g>
  2049. </g>
  2050. <g id="XMLID_104_" transform="translate(0.518545, 17.653346)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2051. <text id="900">
  2052. <tspan x="0.0933380721" y="3.39979636">90</tspan>
  2053. <tspan x="0.0933380721" y="7.39979636">0</tspan>
  2054. </text>
  2055. </g>
  2056. <g id="XMLID_102_" transform="translate(0.000000, 8.307457)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2057. <text id="1100" transform="translate(3.584026, 0.843146) scale(1, -1) translate(-3.584026, -0.843146) ">
  2058. <tspan x="0.420643578" y="3.73942526">110</tspan>
  2059. <tspan x="0.420643578" y="7.73942526">0</tspan>
  2060. </text>
  2061. </g>
  2062. <g id="XMLID_100_" transform="translate(0.518545, 26.999235)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2063. <text id="700">
  2064. <tspan x="0.234537833" y="3.43375309">70</tspan>
  2065. <tspan x="0.234537833" y="7.43375309">0</tspan>
  2066. </text>
  2067. </g>
  2068. <g id="XMLID_98_" transform="translate(0.518545, 36.864340)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2069. <text id="500">
  2070. <tspan x="0.190254104" y="3.05778875">50</tspan>
  2071. <tspan x="0.190254104" y="7.05778875">0</tspan>
  2072. </text>
  2073. </g>
  2074. <g id="XMLID_96_" transform="translate(0.518545, 46.210229)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2075. <text id="300">
  2076. <tspan x="0.187609525" y="3.17492389">30</tspan>
  2077. <tspan x="0.187609525" y="7.17492389">0</tspan>
  2078. </text>
  2079. </g>
  2080. <g id="XMLID_92_" transform="translate(1.037090, 55.036902)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2081. <text id="100">
  2082. <tspan x="0.375582031" y="3.40337895">10</tspan>
  2083. <tspan x="0.375582031" y="7.40337895">0</tspan>
  2084. </text>
  2085. </g>
  2086. <g id="XMLID_88_" transform="translate(4.148359, 62.825143)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2087. <text id="0">
  2088. <tspan x="0.237700957" y="3.35976481">0</tspan>
  2089. </text>
  2090. </g>
  2091. <g id="XMLID_84_" transform="translate(10.370897, 64.902007)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2092. <text id="2016" transform="translate(3.379616, 0.364060) scale(1, -1) translate(-3.379616, -0.364060) ">
  2093. <tspan x="0.2162332" y="3.26033909">201</tspan>
  2094. <tspan x="0.2162332" y="7.26033909">6</tspan>
  2095. </text>
  2096. </g>
  2097. <g id="XMLID_80_" transform="translate(24.890153, 56.075334)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2098. <text id="2017" transform="translate(3.506608, 0.550088) scale(1, -1) translate(-3.506608, -0.550088) ">
  2099. <tspan x="0.343224833" y="3.49008804">201</tspan>
  2100. <tspan x="0.343224833" y="7.49008804">7</tspan>
  2101. </text>
  2102. </g>
  2103. <g id="XMLID_76_" transform="translate(39.409408, 47.767877)" font-family="Helvetica" font-size="3.17893248" font-weight="normal">
  2104. <text id="2018" transform="translate(3.439767, 0.988044) scale(1, -1) translate(-3.439767, -0.988044) ">
  2105. <tspan x="0.276384402" y="3.88432315">201</tspan>
  2106. <tspan x="0.276384402" y="7.88432315">8</tspan>
  2107. </text>
  2108. </g>
  2109. <g id="XMLID_73_" opacity="0.5" transform="translate(7.259628, 13.499617)" fill-rule="nonzero">
  2110. <polygon id="XMLID_74_" points="43.4690958 33.8585983 0.273273133 58.8302945 0.273273133 0.38058537 0.66892285 0.151611089 0.66892285 58.146487 43.4690958 33.403765"></polygon>
  2111. </g>
  2112. </g>
  2113. <g id="XMLID_69_" transform="translate(63.781016, 24.403155)" fill-rule="nonzero">
  2114. <path d="M26.3960068,9.70985948 C26.3960068,18.0136819 20.5369686,28.1326836 13.3100091,32.3108152 C6.08253103,36.4889468 0.224011373,33.144157 0.224011373,24.8403346 C0.224011373,16.5365122 6.08304958,6.41751046 13.3100091,2.23937885 C20.5374871,-1.93875276 26.3960068,1.40603708 26.3960068,9.70985948 Z" id="XMLID_71_" fill="url(#linearGradient-239)"></path>
  2115. <path d="M13.3100091,17.2748374 L17.5517059,29.0506576 C17.5517059,29.0506576 29.1899264,17.1362067 25.7882722,5.51926668 L13.3100091,17.2748374 Z" id="XMLID_70_" fill="url(#linearGradient-240)"></path>
  2116. </g>
  2117. <polygon id="Shape" fill="url(#linearGradient-241)" fill-rule="nonzero" opacity="0.2" points="53.6445013 28.4478477 24.3897568 127.911991 55.1902835 110.082111 82.9744348 11.4170419"></polygon>
  2118. <polygon id="Shape" fill="url(#linearGradient-242)" fill-rule="nonzero" opacity="0.2" points="87.2892465 8.98814916 58.034502 108.452811 68.3540629 102.627727 96.1382142 3.96265694"></polygon>
  2119. <g opacity="0.7" transform="translate(26.964332, 0.000000)" fill="url(#linearGradient-243)" fill-rule="nonzero" id="Shape">
  2120. <path d="M0.0264457871,43.8249505 C0.0264457871,43.8249505 13.2840818,36.1010924 33.1713137,24.5153053 C43.1242635,18.7390267 54.7365567,12.0006407 67.1774847,4.78042223 C68.7326007,3.87802473 70.3006803,2.96783898 71.8801679,2.05142264 C72.6771713,1.59866624 73.4456547,1.11994903 74.2742894,0.684845979 C74.725942,0.480274852 75.2268563,0.383700666 75.726215,0.49637055 C76.2271293,0.599175329 76.6533732,0.944973223 76.9090158,1.36605745 C77.4503766,2.21393727 77.431709,3.24458114 77.4384501,4.14957472 C77.4534879,5.08104833 77.4685257,6.01511802 77.4835635,6.95126457 C77.5136391,8.82407688 77.5437147,10.7062351 77.5743088,12.5956623 C77.6956483,20.1538905 77.819062,27.8320575 77.9424756,35.5102245 C78.0492959,43.1889108 78.1566347,50.8670779 78.2618993,58.4258252 C78.3142723,62.2051989 78.3666453,65.954458 78.4179813,69.6585454 C78.4439085,71.5105891 78.4693172,73.3517292 78.4947259,75.1793697 L78.5139121,76.547504 L78.5165048,76.7183261 L78.5040597,76.9016094 L78.4791696,77.2416959 C78.4646503,77.4680741 78.4516867,77.6939331 78.3930911,77.924465 L78.2504913,78.6103494 L78.0342581,79.2656001 C77.9715142,79.4873053 77.8724721,79.6949918 77.7760227,79.9026782 C77.675425,80.1082877 77.5981619,80.3258393 77.4778595,80.5210645 C77.0417632,81.3258494 76.4698083,82.0548287 75.772884,82.6493311 L75.2107814,83.0486083 L74.6346781,83.3845411 C74.2504363,83.6062463 73.8672317,83.8279516 73.4845456,84.0486184 C71.9548383,84.9318049 70.4401688,85.806684 68.9415742,86.6722171 C65.9438665,88.4032835 63.0114954,90.096447 60.156906,91.744958 C54.4472087,95.04198 49.0491569,98.1588339 44.0664595,101.03581 C24.1159651,112.511004 10.8152898,120.161134 10.8152898,120.161134 C10.8152898,120.161134 24.0729259,112.437276 43.9596392,100.851488 C48.9361141,97.9636087 54.3274249,94.8348128 60.0298625,91.5253296 C62.8808221,89.870588 65.8100819,88.1711939 68.8036413,86.4333777 C70.3006803,85.5647293 71.8132756,84.6867349 73.3409087,83.7999139 C73.7225577,83.5782086 74.1057623,83.3559842 74.4894855,83.1332405 L75.0635147,82.7967885 L75.5888006,82.4208761 C76.2452784,81.8575266 76.795973,81.156585 77.2154758,80.3777609 C77.3311113,80.1892854 77.4047446,79.9784837 77.5017125,79.779624 C77.5945321,79.5781681 77.6904628,79.3777507 77.7500955,79.1633145 L77.958032,78.5303901 L78.091298,77.8850046 C78.1473009,77.6742029 78.1602645,77.4467862 78.1742652,77.2188504 L78.1986368,76.8787639 L78.2100448,76.7214414 L78.2074521,76.5506193 L78.1856732,75.182485 C78.1561161,73.3548445 78.1265591,71.5137043 78.097002,69.6616607 C78.0373693,65.9575733 77.9772181,62.2083142 77.9165484,58.4294597 C77.7952089,50.8712316 77.6723138,43.1930645 77.5489001,35.5148975 C77.4420799,27.8362112 77.3352596,20.1580442 77.229995,12.5992968 C77.2035492,10.7098696 77.177622,8.8277114 77.1516948,6.95489908 C77.1387311,6.01875253 77.1257675,5.08468284 77.1128039,4.15320924 C77.1003588,3.686434 77.1190264,3.21862034 77.056801,2.77988277 C76.9966498,2.3380299 76.8706434,1.90292685 76.639891,1.53791796 C76.4158796,1.16979378 76.0668989,0.890974753 75.65673,0.805304104 C75.2527835,0.708210701 74.8006124,0.792842919 74.4184449,0.964703433 C73.6188487,1.38215314 72.8275493,1.87073545 72.0362499,2.31829969 C70.4546881,3.23160074 68.8845343,4.13815197 67.3278627,5.03743418 C54.8708599,12.2306534 43.2445659,18.944117 33.2791711,24.6985886 C13.3271211,36.1748211 0.0264457871,43.8249505 0.0264457871,43.8249505 Z"></path>
  2121. </g>
  2122. <polygon id="XMLID_68_" fill="url(#linearGradient-244)" fill-rule="nonzero" points="85.8471733 82.5657373 66.0906147 93.9869329 66.0906147 91.3706032 85.8471733 79.9494076"></polygon>
  2123. <polygon id="XMLID_67_" fill="url(#linearGradient-245)" fill-rule="nonzero" points="95.256688 71.404669 66.0906147 88.2656912 66.0906147 85.6493615 95.256688 68.7883393"></polygon>
  2124. <polygon id="XMLID_66_" fill="url(#linearGradient-246)" fill-rule="nonzero" points="102.366456 57.3178181 65.2303488 78.7863637 65.2303488 76.1700339 102.366456 54.7014884"></polygon>
  2125. <polygon id="XMLID_65_" fill="url(#linearGradient-247)" fill-rule="nonzero" points="94.3964221 56.2046189 65.2303488 73.0651219 65.2303488 70.4487922 94.3964221 53.5882892"></polygon>
  2126. <polygon id="XMLID_64_" fill="url(#linearGradient-248)" fill-rule="nonzero" points="51.6086942 98.5736876 47.3861836 101.015041 47.3861836 57.9559347 51.6086942 55.5151"></polygon>
  2127. <polygon id="XMLID_63_" fill="url(#linearGradient-249)" fill-rule="nonzero" points="47.3835908 101.01608 43.1610802 103.457434 43.1610802 87.690919 47.3835908 85.2500843"></polygon>
  2128. <polygon id="XMLID_62_" fill="url(#linearGradient-250)" fill-rule="nonzero" points="37.9994848 106.441368 33.7764556 108.882722 33.7764556 52.17706 37.9994848 49.7362253"></polygon>
  2129. <polygon id="XMLID_61_" fill="url(#linearGradient-251)" fill-rule="nonzero" points="33.7743814 108.883761 29.5518707 111.325115 29.5518707 77.3637117 33.7743814 74.9223578"></polygon>
  2130. <polygon id="XMLID_60_" fill="url(#linearGradient-252)" fill-rule="nonzero" points="24.3897568 114.309049 20.1672461 116.749884 20.1672461 91.8861848 24.3897568 89.4453501"></polygon>
  2131. <polygon id="XMLID_59_" fill="url(#linearGradient-253)" fill-rule="nonzero" points="20.1646534 116.751442 15.9421427 119.192796 15.9421427 71.5848369 20.1646534 69.1434831"></polygon>
  2132. </g>
  2133. </g>
  2134. <g id="people_1" transform="translate(398.760986, 314.644930)">
  2135. <g id="Group">
  2136. <path d="M60.2803197,107.05612 C60.2803197,107.05612 72.581759,117.930062 57.3609122,123.225547 C42.1395468,128.521031 32.2586748,119.523536 32.3390493,116.079057 C32.4194237,112.634578 42.1322872,115.296079 48.1396292,111.603934 C54.1464527,107.911269 49.542293,97.6105418 60.2803197,107.05612 Z" id="Shape" fill="url(#linearGradient-254)" fill-rule="nonzero" opacity="0.6"></path>
  2137. <polygon id="XMLID_251_" stroke="url(#linearGradient-255)" stroke-width="0.6" points="18.4420474 102.057627 53.2690748 82.115577 35.1314132 71.3704007 0.304904369 91.312451"></polygon>
  2138. <polygon id="XMLID_224_" fill="url(#linearGradient-256)" fill-rule="nonzero" opacity="0.3" points="0.304904369 91.312451 18.4420474 102.057627 53.2690748 82.115577 54.72826 19.6637505 0.304904369 48.7834638"></polygon>
  2139. <g id="XMLID_218_" transform="translate(9.852352, 15.057266)" fill-rule="nonzero">
  2140. <g id="XMLID_219_">
  2141. <polygon id="XMLID_223_" fill="url(#linearGradient-257)" points="0.266013505 13.5515391 9.2492844 28.9712175 9.2492844 82.3040524 0.266013505 77.0168753"></polygon>
  2142. <polygon id="XMLID_221_" fill="url(#linearGradient-258)" points="0.266013505 13.5515391 9.2492844 28.9712175 32.3489016 15.2317222 23.8592854 0.504158791"></polygon>
  2143. <polygon id="XMLID_220_" fill="url(#linearGradient-259)" points="9.2492844 28.9712175 9.2492844 82.3040524 32.3489016 68.8667409 32.3489016 15.2317222"></polygon>
  2144. </g>
  2145. </g>
  2146. <polygon id="XMLID_217_" fill="url(#linearGradient-260)" fill-rule="nonzero" points="18.1101787 26.0464735 24.8989678 37.6997587 42.35578 27.316476 35.9398247 16.1865606"></polygon>
  2147. <g transform="translate(20.223249, 19.210994)" fill-rule="nonzero">
  2148. <polygon id="XMLID_216_" fill="url(#linearGradient-261)" points="15.4832305 0.498447414 16.4689843 1.9335606 13.2809706 3.70356813 12.1401719 2.367106"></polygon>
  2149. <polygon id="XMLID_215_" fill="url(#linearGradient-262)" points="17.2364306 2.81674711 18.2221844 4.25186029 15.0346892 6.02186783 13.8938906 4.6854057"></polygon>
  2150. <polygon id="XMLID_214_" fill="url(#linearGradient-263)" points="19.0046686 5.34584852 19.9904223 6.78148092 16.8029272 8.55148845 15.6621285 7.21502632"></polygon>
  2151. <polygon id="XMLID_213_" fill="url(#linearGradient-264)" points="9.92235561 3.54261115 10.9081094 4.97772434 7.7206142 6.74773187 6.57981554 5.41178896"></polygon>
  2152. <polygon id="XMLID_212_" fill="url(#linearGradient-265)" points="11.6760743 5.86091085 12.661828 7.29602403 9.47381432 9.06603157 8.33301566 7.72956944"></polygon>
  2153. <polygon id="XMLID_211_" fill="url(#linearGradient-266)" points="13.4443122 8.39001226 14.4300659 9.82564466 11.2420522 11.5956522 10.1012536 10.2591901"></polygon>
  2154. <polygon id="XMLID_210_" fill="url(#linearGradient-267)" points="3.77967337 6.91284258 4.76542712 8.34795576 1.57793196 10.1179633 0.437133304 8.78150117"></polygon>
  2155. <polygon id="XMLID_209_" fill="url(#linearGradient-268)" points="5.53339204 9.23062306 6.51862725 10.6662555 3.33113208 12.436263 2.19033342 11.0998009"></polygon>
  2156. <polygon id="XMLID_208_" fill="url(#linearGradient-269)" points="7.30162996 11.7602437 8.28686517 13.1953569 5.09937001 14.9653644 3.95857135 13.6289023"></polygon>
  2157. </g>
  2158. <g transform="translate(19.186159, 0.000000)" fill-rule="nonzero" id="Shape">
  2159. <path d="M14.7048947,28.237046 C14.7048947,28.237046 12.9382124,27.8917673 12.5311547,27.9577078 C12.1235785,28.0236482 12.1899522,27.7225029 12.5477482,27.5901028 C12.9050256,27.4577027 13.7217337,27.4950863 12.8490227,27.0106577 C11.9763117,26.5262291 11.0890815,26.600477 11.1196757,26.2702556 C11.1497513,25.9400342 11.4805829,26.0090899 11.7673382,26.0298586 C12.054612,26.0511464 12.8495413,26.4151169 12.9698437,26.3278886 C13.0901461,26.2406603 13.8301096,25.4083569 14.3139119,25.5480261 C14.7971957,25.6876952 15.0419489,26.1362979 15.1804003,26.4649616 C15.2535152,26.6394182 15.5941991,27.0340224 15.5941991,27.0340224 L14.7048947,28.237046 Z" fill="#FFCDA4"></path>
  2160. <path d="M3.88027107,32.3061423 C3.88027107,32.3061423 3.06408149,31.2220191 2.96866924,30.8165114 C2.87325699,30.4110037 2.56368571,30.5781912 2.56368571,30.959815 C2.56368571,31.3414388 2.94481617,32.0953405 2.03943688,31.4442436 C1.13405758,30.7931467 0.848339366,29.9343633 0.491061968,30.0771477 C0.13378457,30.2204514 0.347943591,30.5065394 0.491061968,30.7687435 C0.634180345,31.0309476 1.3725882,31.6514108 1.32488208,31.7947144 C1.27717595,31.9380181 0.65181087,32.9219325 1.00908827,33.3274402 C1.36636567,33.732948 1.97098896,33.8066767 2.39671427,33.8222531 C2.62279983,33.8305606 3.20668132,34.0133247 3.20668132,34.0133247 L3.88027107,32.3061423 Z" fill="#FFCDA4"></path>
  2161. <path d="M27.7722248,118.667868 C27.7722248,118.667868 28.0397939,120.014715 27.3672413,120.648677 C26.6946886,121.28264 23.872249,120.824692 21.8551096,119.84545 C19.8374516,118.866209 17.4770355,117.400462 17.3183607,116.92486 C17.159686,116.449258 17.2618393,115.578013 17.674601,115.181852 C18.0868442,114.78569 27.7722248,118.667868 27.7722248,118.667868 Z" fill="url(#linearGradient-270)"></path>
  2162. <path d="M27.2484945,116.411874 C27.2484945,116.411874 28.6776041,118.906188 26.8134354,119.697993 C24.5665806,120.651793 16.6458081,116.727039 17.674601,115.181852 C18.367377,114.140823 20.0977611,114.54685 22.9020516,114.54737 C25.7053051,114.547889 27.2484945,116.411874 27.2484945,116.411874 Z" fill="url(#linearGradient-271)"></path>
  2163. <path d="M40.6523602,114.636675 C40.6523602,114.636675 40.9199293,115.983521 40.2473767,116.617484 C39.574824,117.251447 36.7523844,116.793498 34.735245,115.814257 C32.717587,114.835015 30.3571709,113.369268 30.1984961,112.893666 C30.0398214,112.418065 30.1419747,111.54682 30.5547364,111.150658 C30.9669796,110.754496 40.6523602,114.636675 40.6523602,114.636675 Z" fill="url(#linearGradient-272)"></path>
  2164. <path d="M40.1286299,112.380681 C40.1286299,112.380681 41.5577395,114.874995 39.6935708,115.666799 C37.446716,116.620599 29.5259435,112.695845 30.5547364,111.150658 C31.2475124,110.110149 32.9778965,110.515657 35.782187,110.516176 C38.5854405,110.516695 40.1286299,112.380681 40.1286299,112.380681 Z" fill="url(#linearGradient-273)"></path>
  2165. <path d="M39.730906,55.7902845 C39.730906,55.7902845 41.893238,64.2763517 39.7744638,71.878194 C38.3017964,77.1622558 39.7744638,112.654308 39.7744638,112.654308 C39.7744638,112.654308 38.4775831,114.468968 35.5576571,112.670404 C35.5576571,112.670404 31.1536557,75.8777153 31.1069867,73.3517292 L29.2210391,74.1637831 C29.2210391,74.1637831 26.6822435,85.7111482 26.6822435,91.2439145 C26.6822435,96.7772 27.2376051,117.465883 27.2376051,117.465883 C27.2376051,117.465883 24.9342289,118.469008 23.2339203,116.909283 C23.2339203,116.909283 20.5903787,95.2133213 20.0702782,89.3191806 C19.5496592,83.4250399 21.0409942,60.7134912 21.0409942,60.7134912 C21.0409942,60.7134912 33.7240825,52.6931607 39.730906,55.7902845 Z" fill="#FFCDA4"></path>
  2166. <path d="M21.0399571,60.7140104 C21.0399571,60.7140104 18.212332,81.3268878 19.0197064,84.3326296 C19.3557234,85.5844595 25.1162381,86.3617259 28.7398295,86.4328585 C32.3634209,86.5039911 38.9473848,83.6171498 40.7047332,80.7541925 C41.412547,79.6015329 40.6181362,74.6980564 41.6801161,70.700612 C42.8966223,66.1206072 42.8006915,58.6241657 41.6526332,57.5644458 C39.730906,55.7902845 21.0399571,60.7140104 21.0399571,60.7140104 Z" fill="url(#linearGradient-274)"></path>
  2167. <path d="M39.0013134,58.9221958 C39.0013134,58.9221958 40.9951184,66.4690011 39.9476578,69.426975 C38.9001972,72.3849489 32.6268416,72.337181 31.3087006,72.1461095 C29.9905597,71.955038 29.5332031,73.6726047 30.7144483,74.3408358 C31.896212,75.0085476 35.5172106,74.1497643 37.1371447,73.7681405 C38.7570788,73.3865167 38.6056637,82.9894176 37.3876019,83.6602448 C37.3876019,83.6602448 39.9009887,82.2780916 40.7047332,80.7547117 C41.5084777,79.2308126 40.7228823,74.7016909 41.2927631,72.7234778 C42.2831837,69.2841906 43.8336328,61.0177518 41.6526332,57.564965 C41.6526332,57.5644458 38.8576765,58.2191772 39.0013134,58.9221958 Z" fill="url(#linearGradient-275)" opacity="0.4"></path>
  2168. <path d="M22.0557864,29.2723628 L15.6009402,26.9114874 C15.6009402,26.9114874 14.0613806,27.4057811 14.4336958,28.4452517 C14.8563098,28.8606245 18.8739953,31.5595096 21.195002,31.9821514 C23.5165273,32.4042741 22.0557864,29.2723628 22.0557864,29.2723628 Z" fill="url(#linearGradient-276)"></path>
  2169. <path d="M26.6822435,14.4482252 C26.6822435,14.4482252 27.4776913,18.8034095 27.6581449,19.4347762 C27.83808,20.0661429 31.5856036,17.7057867 32.2597119,16.8039085 L31.5876778,12.1750973 C31.5871592,12.1745781 28.138836,12.799195 26.6822435,14.4482252 Z" stroke="#000000" stroke-width="0.6" fill="#FFFFFF"></path>
  2170. <path d="M31.7152398,16.4222847 C31.7152398,16.4222847 33.1536832,17.3599889 33.5140719,17.9913556 C33.5140719,17.9913556 31.0069075,22.3335595 26.6822435,22.0630479 L27.6581449,19.4347762 L31.7152398,16.4222847 Z" stroke="#000000" stroke-width="0.6" fill="#FFFFFF"></path>
  2171. <path d="M33.5140719,17.9913556 C33.5140719,17.9913556 37.0277317,19.1642647 37.8387359,22.9529842 C38.64974,26.7417038 40.2753781,42.4931613 40.1856698,45.7408577 C40.095443,48.9885542 41.9233136,56.0306815 41.6531518,57.5644458 C41.3829899,59.09821 37.7173964,58.812122 33.0038237,60.0904319 C27.2376051,61.6543106 24.1657454,63.6506964 21.5382787,61.9331297 C20.096724,60.9912717 21.4625711,49.7512826 22.0931217,47.4059836 C22.7236722,45.0606847 20.6318623,34.7589189 20.9206918,33.3362669 C21.1955205,31.9816322 23.9386228,25.0397135 26.6822435,22.0630479 C29.4258643,19.0863822 33.5140719,17.9913556 33.5140719,17.9913556 Z" fill="url(#linearGradient-277)"></path>
  2172. <path d="M26.7792114,35.900675 C26.7792114,35.900675 27.6265137,42.7200587 26.4229711,46.6198905 C25.2194285,50.5197223 25.4201054,60.9232544 25.5341853,62.3770594 C25.5341853,62.3770594 23.311702,63.1610756 21.5377601,61.9331297 C19.7638182,60.7057029 21.7685126,49.0134765 21.7685126,49.0134765 C21.7685126,49.0134765 22.3275039,46.5783532 22.1569027,44.7174829 C21.9857829,42.8566125 21.5377601,39.4640548 21.5377601,39.4640548 L26.7792114,35.900675 Z" fill="url(#linearGradient-278)"></path>
  2173. <path d="M28.1875792,21.4135086 C28.1875792,21.4135086 29.7364727,22.8392759 30.1943478,25.6939258 C30.6522229,28.5485757 28.5832289,33.4624364 26.77973,35.900675 C25.213206,38.0180381 22.3332079,40.0336348 18.5146437,39.6997789 C11.2757577,39.0673738 3.13564068,34.3108355 3.13564068,34.3108355 C3.13564068,34.3108355 2.68917357,32.5932687 4.4008901,32.0761295 C6.85205158,33.1540221 12.5135242,35.1602729 19.5216578,34.5730396 C24.4639087,34.1592244 23.4060772,20.9820401 28.1875792,21.4135086 Z" fill="url(#linearGradient-279)"></path>
  2174. <path d="M21.5434641,5.42788466 C21.5434641,5.42788466 21.3645662,14.8054459 23.0773198,16.0681793 C24.7900734,17.3309128 28.7071612,14.8054459 28.7071612,14.8054459 C28.7071612,14.8054459 33.0665677,11.1968943 30.4982151,8.58056455 C27.9298624,5.96423484 21.5434641,5.42788466 21.5434641,5.42788466 Z" fill="#FFCDA4"></path>
  2175. <path d="M21.4802017,1.36761509 C18.8724396,2.96264682 19.4962491,6.66309966 20.7350527,7.3790986 C21.9738563,8.09457832 24.9280063,8.04681045 25.4522552,9.47828911 C25.976504,10.9097678 25.3495833,12.4549548 24.7911105,14.6912183 C24.0765557,17.5536564 25.5865583,18.5796274 26.6822435,20.2494262 C27.7779288,21.919225 25.4029934,24.9846766 27.0244831,28.0843965 C29.4704592,32.7599371 36.2431734,35.0792752 40.603617,31.805618 C46.5544376,27.3377638 44.6866391,21.7354226 43.5432477,20.0692582 C42.3998563,18.4030939 35.9341207,14.7260058 35.6961086,9.81214504 C35.4580965,4.89776506 28.5012989,-2.9263017 21.4802017,1.36761509 Z" fill="url(#linearGradient-280)"></path>
  2176. </g>
  2177. </g>
  2178. </g>
  2179. </g>
  2180. </g>
  2181. </g>
  2182. </g>
  2183. <g id="logo文字" opacity="0.296898251" mask="url(#mask-2)">
  2184. <g transform="translate(824.000000, 339.000000)">
  2185. <g id="公">
  2186. <path d="M13.7332,11.8196721 C13.3286292,11.2698614 13.115008,10.6315851 13.1176,9.98032787 L13.1176,9.32459016 C13.1176,9.19059321 12.9917025,9.08196721 12.8364,9.08196721 L11.2366,9.08196721 C11.080671,9.08195525 10.9536791,9.19006457 10.9516,9.32459016 L10.9516,9.98032787 C10.9491813,10.9873827 11.2815164,11.9739149 11.9092,12.8229508 L13.699,15.252459 C14.1718877,15.8955466 14.4223536,16.6416782 14.421,17.4032787 C14.4210023,17.5951518 14.3324025,17.7791188 14.1747993,17.9144856 C14.0171961,18.0498524 13.8035787,18.1254623 13.5812,18.1245902 L5.0236,18.1245902 C4.80122135,18.1254623 4.58760395,18.0498524 4.4300007,17.9144856 C4.27239746,17.7791188 4.1837977,17.5951518 4.1838,17.4032787 C4.18244641,16.6416782 4.43291232,15.8955466 4.9058,15.252459 L6.6956,12.8229508 C7.3232836,11.9739149 7.65561866,10.9873827 7.6532,9.98032787 L7.6532,9.32459016 C7.65112095,9.19006457 7.52412902,9.08195525 7.3682,9.08196721 L5.7684,9.08196721 C5.61309753,9.08196721 5.4872,9.19059321 5.4872,9.32459016 L5.4872,9.98032787 C5.48979197,10.6315851 5.27617079,11.2698614 4.8716,11.8196721 L3.078,14.2491803 C2.38431067,15.192224 2.01654238,16.2863359 2.0178,17.4032787 L2.0178,17.904918 C2.0178,19.0583783 3.10153953,19.9934426 4.4384,19.9934426 L14.1626,19.9934426 C15.5000766,19.993444 16.5849036,19.0589085 16.587,17.904918 L16.587,17.4032787 C16.5882576,16.2863359 16.2204893,15.192224 15.5268,14.2491803 L13.7332,11.8196721 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
  2187. <path d="M18.5364,9.44262295 C18.1586238,9.45533059 17.7906188,9.33729365 17.5142,9.1147541 C15.941,7.85901639 15.4622,3.62295082 15.5306,1.24590164 L15.5534,0.531147541 C15.5554517,0.465671436 15.5267337,0.402261215 15.4737744,0.35533233 C15.4208152,0.308403444 15.3481145,0.281943286 15.2722,0.281967213 L7.9534,0.281967213 C7.79809753,0.281967213 7.6722,0.390593208 7.6722,0.524590164 L7.6722,1.94098361 C7.6722,2.07498056 7.79809753,2.18360656 7.9534,2.18360656 L13.053,2.18360656 C13.2053823,2.18355853 13.3300816,2.28824279 13.3342,2.41967213 C13.4026,4.55081967 13.8282,8.77377049 16.017,10.5213115 C16.6957252,11.059151 17.5844617,11.3565106 18.506,11.3540984 C18.5835284,11.3576758 18.6593928,11.3338082 18.7160558,11.2880129 C18.7727189,11.2422175 18.8052756,11.1784588 18.8062,11.1114754 L18.8062,9.69508197 C18.8105405,9.56171104 18.690821,9.4496863 18.5364,9.44262295 L18.5364,9.44262295 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
  2188. <path d="M5.2668,0.531147541 C5.26681386,0.396609987 5.14151516,0.287039735 4.9856,0.285245902 L3.3478,0.285245902 C3.19187098,0.285233942 3.06487905,0.393343258 3.0628,0.527868852 C3.0628,2.82295082 2.5536,8.32131148 0.2964,10.304918 C0.197867149,10.3976745 0.197867149,10.5400304 0.2964,10.6327869 L1.3832,11.695082 C1.43703373,11.744213 1.51193829,11.7720516 1.5903,11.7720516 C1.66866171,11.7720516 1.74356627,11.744213 1.7974,11.695082 C3.3174,10.4163934 4.3434,8.12131148 4.8906,4.86557377 C5.12406039,3.42926341 5.24972213,1.98143904 5.2668,0.531147541 L5.2668,0.531147541 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
  2189. </g>
  2190. <g id="孙" transform="translate(19.000000, 0.000000)">
  2191. <path d="M7.4584125,16.0024891 C7.38089414,16.0099344 7.30344461,15.9879795 7.24586569,15.9422378 C7.18828676,15.8964961 7.15616024,15.8314018 7.1577,15.7635978 L7.1577,14.3560761 C7.15414471,14.2464027 7.23926827,14.1495031 7.3618875,14.1236413 C7.65542975,14.0662262 7.89488043,13.8823612 7.996725,13.6361739 C8.19185113,12.9428168 8.25827649,12.2267961 8.1934875,11.5152065 C8.1934875,11.2849239 8.1934875,11.0621739 8.1934875,10.8469565 L8.1934875,2.82795652 C8.1934875,2.6960205 8.31648607,2.58906522 8.4682125,2.58906522 L10.0720125,2.58906522 C10.2237389,2.58906522 10.3467375,2.6960205 10.3467375,2.82795652 L10.3467375,10.8340435 C10.3467375,11.0600217 10.3467375,11.273087 10.3467375,11.4796957 C10.4276225,12.4097794 10.3208262,13.3449979 10.031175,14.243087 C9.64467054,15.2175903 8.63861931,15.9055857 7.4584125,16.0024891 Z M18.065025,14.1236413 C18.1934277,14.1503519 18.2801703,14.2545802 18.2692125,14.3689891 L18.2692125,15.7765109 C18.2695605,15.8439857 18.2370771,15.9084417 18.1797883,15.9539529 C18.1224994,15.9994642 18.0457488,16.0217857 17.9685,16.0154022 C16.7876238,15.9181279 15.7806723,15.2305091 15.392025,14.256 C15.105264,13.3574528 14.9997527,12.422488 15.080175,11.4926087 C15.080175,11.273087 15.080175,11.0600217 15.080175,10.8469565 L15.080175,2.82795652 C15.080175,2.6960205 15.2031736,2.58906522 15.3549,2.58906522 L16.9587,2.58906522 C17.1104264,2.58906522 17.233425,2.6960205 17.233425,2.82795652 L17.233425,10.8469565 C17.233425,11.0772391 17.233425,11.2999891 17.233425,11.5152065 C17.168636,12.2267961 17.2350614,12.9428168 17.4301875,13.6361739 C17.5320321,13.8823612 17.7714827,14.0662262 18.065025,14.1236413 Z M13.5135,0.271173913 C13.6658386,0.271162138 13.7899063,0.377608685 13.7919375,0.510065217 L13.7919375,17.3163913 C13.7919375,18.6197053 12.5769111,19.67625 11.0781,19.67625 L7.4435625,19.67625 C7.3707009,19.67625 7.30082352,19.6510812 7.24930259,19.6062804 C7.19778166,19.5614795 7.1688375,19.5007166 7.1688375,19.4373587 L7.1688375,18.04275 C7.1688375,17.910814 7.29183607,17.8038587 7.4435625,17.8038587 L10.2799125,17.8038587 C10.6395999,17.8047191 10.9848405,17.6808519 11.2391789,17.4596881 C11.4935172,17.2385244 11.6359645,16.9383151 11.634975,16.6255435 L11.634975,0.510065217 C11.6370062,0.377608685 11.7610739,0.271162138 11.9134125,0.271173913 L13.5135,0.271173913 Z M5.991975,0.297 C6.35384255,0.29669587 6.6517439,0.544353942 6.66765,0.858717391 L6.66765,1.80136957 C6.66861592,2.02832538 6.59937284,2.25133046 6.467175,2.44702174 L4.8373875,4.8423913 C4.76444785,4.93792182 4.72687787,5.05057543 4.729725,5.16521739 L4.729725,9.2973913 L6.392925,9.2973913 C6.54465143,9.2973913 6.66765,9.40434658 6.66765,9.53628261 L6.66765,10.927663 C6.66864337,10.9915784 6.64013834,11.053174 6.58850935,11.0986755 C6.53688036,11.1441769 6.46643442,11.1697884 6.392925,11.1697826 L4.729725,11.1697826 L4.729725,17.3293043 C4.729725,18.6326183 3.51469856,19.689163 2.0158875,19.689163 L0.63855,19.689163 C0.486211446,19.6891748 0.36214368,19.5827283 0.3601125,19.4502717 L0.3601125,18.055663 C0.36214368,17.9232065 0.486211446,17.81676 0.63855,17.8167717 L1.2177,17.8167717 C1.57772908,17.8167729 1.92295834,17.6921863 2.17718884,17.4705106 C2.43141934,17.2488349 2.57374888,16.9482958 2.5727625,16.6352283 L2.5727625,11.1697826 L0.6199875,11.1697826 C0.467648946,11.1697944 0.34358118,11.0633478 0.34155,10.9308913 L0.34155,9.53628261 C0.34358118,9.40382608 0.467648946,9.29737953 0.6199875,9.2973913 L2.5727625,9.2973913 L2.5727625,5.16198913 C2.5728109,4.68796117 2.73287799,4.22437273 3.0331125,3.82871739 L3.93525,2.50190217 C3.97473026,2.43368834 3.97127313,2.35264272 3.92608982,2.28715966 C3.88090651,2.2216766 3.80029593,2.18088496 3.7125,2.17907609 L0.6237,2.17907609 C0.469923215,2.17907609 0.3452625,2.07067547 0.3452625,1.93695652 L0.3452625,0.535891304 C0.34729368,0.403434772 0.471361446,0.296988225 0.6237,0.297 L5.991975,0.297 Z" id="合并形状" fill="#FFFFFF" fill-rule="nonzero"></path>
  2192. </g>
  2193. <g id="测" transform="translate(38.000000, 0.000000)">
  2194. <path d="M18.8483625,0.271173913 C18.9237612,0.267624648 18.997516,0.291217724 19.0522951,0.336408978 C19.1070743,0.381600231 19.1380479,0.444405181 19.1379375,0.510065217 L19.1379375,17.3163913 C19.138923,17.9419677 18.8538279,18.5422156 18.345474,18.984868 C17.8371201,19.4275204 17.147226,19.6762506 16.4278125,19.67625 L14.2003125,19.67625 C14.0479739,19.6762618 13.9239062,19.5698152 13.921875,19.4373587 L13.921875,18.04275 C13.9239062,17.9102935 14.0479739,17.8038469 14.2003125,17.8038587 L15.8263875,17.8038587 C16.1805253,17.8022921 16.5188584,17.6761612 16.7643315,17.4541924 C17.0098047,17.2322237 17.1415184,16.9333152 17.129475,16.6255435 L17.129475,0.510065217 C17.129475,0.378129193 17.2524736,0.271173913 17.4042,0.271173913 L18.8483625,0.271173913 Z M3.066525,14.5271739 C3.066525,14.7337826 3.07395,14.9436196 3.0702375,15.159913 C3.15022806,16.0887222 3.04472051,17.0225623 2.7583875,17.9200761 C2.43830625,18.8793977 1.48364743,19.5756425 0.34155,19.6827065 C0.263956862,19.6890343 0.186865447,19.666795 0.129008066,19.6213926 C0.0711506842,19.5759902 0.0378236346,19.5115809 0.037125,19.4438152 L0.037125,18.0330652 C0.0367452883,17.923243 0.122521966,17.8273436 0.245025,17.8006304 C0.538826332,17.7450698 0.778042619,17.5603043 0.87615,17.313163 C1.07516627,16.6214547 1.14164562,15.9059428 1.0729125,15.1954239 C1.0729125,14.9726739 1.0729125,14.7499239 1.0729125,14.5271739 L1.0729125,7.32492391 C1.0729125,7.19298789 1.19591107,7.08603261 1.3476375,7.08603261 L2.7918,7.08603261 C2.94352643,7.08603261 3.066525,7.19298789 3.066525,7.32492391 L3.066525,14.5271739 Z M1.2139875,0.271173913 L2.9291625,0.271173913 C3.0152775,0.271173913 3.0850875,0.340983913 3.0850875,0.427098913 L3.0850875,2.01992283 C3.0850875,2.10603783 3.0152775,2.17584783 2.9291625,2.17584783 L1.2139875,2.17584783 C1.1278725,2.17584783 1.0580625,2.10603783 1.0580625,2.01992283 L1.0580625,0.427098913 C1.0580625,0.340983913 1.1278725,0.271173913 1.2139875,0.271173913 Z M1.2139875,3.68021739 L2.9291625,3.68021739 C3.0152775,3.68021739 3.0850875,3.75002739 3.0850875,3.83614239 L3.0850875,5.4289663 C3.0850875,5.5150813 3.0152775,5.5848913 2.9291625,5.5848913 L1.2139875,5.5848913 C1.1278725,5.5848913 1.0580625,5.5150813 1.0580625,5.4289663 L1.0580625,3.83614239 C1.0580625,3.75002739 1.1278725,3.68021739 1.2139875,3.68021739 Z M12.3552,0.267945652 C12.4303162,0.265325681 12.5034589,0.289229457 12.5579969,0.334221727 C12.6125348,0.379213998 12.643833,0.441471091 12.644775,0.506836957 L12.644775,15.7442283 C12.644775,15.8779472 12.5201143,15.9863478 12.3663375,15.9863478 L10.922175,15.9863478 C10.8486656,15.9863537 10.7782196,15.9607422 10.7265907,15.9152407 C10.6749617,15.8697392 10.6464566,15.8081437 10.64745,15.7442283 L10.64745,2.38245652 C10.6484434,2.31854113 10.6199383,2.25694554 10.5683093,2.21144408 C10.5166804,2.16594262 10.4462344,2.14033112 10.372725,2.14033696 L6.660225,2.14033696 C6.50644821,2.14033696 6.3817875,2.24873758 6.3817875,2.38245652 L6.3817875,15.7442283 C6.38278087,15.8081437 6.35427584,15.8697392 6.30264685,15.9152407 C6.25101786,15.9607422 6.18057192,15.9863537 6.1070625,15.9863478 L4.6629,15.9863478 C4.58939058,15.9863537 4.51894464,15.9607422 4.46731565,15.9152407 C4.41568666,15.8697392 4.38718163,15.8081437 4.388175,15.7442283 L4.388175,0.506836957 C4.388175,0.374900932 4.51117357,0.267945652 4.6629,0.267945652 L12.3552,0.267945652 Z M14.21145,1.90467391 L15.659325,1.90467391 C15.8110514,1.90467391 15.93405,2.02767249 15.93405,2.17939891 L15.93405,14.0716663 C15.93405,14.2233927 15.8110514,14.3463913 15.659325,14.3463913 L14.21145,14.3463913 C14.0597236,14.3463913 13.936725,14.2233927 13.936725,14.0716663 L13.936725,2.17939891 C13.936725,2.02767249 14.0597236,1.90467391 14.21145,1.90467391 Z M12.3552,17.8038587 C12.4287027,17.8029949 12.4995376,17.8277819 12.5518643,17.8726767 C12.604191,17.9175714 12.6336442,17.9788288 12.6336375,18.04275 L12.6336375,19.4373587 C12.6336375,19.5692947 12.5106389,19.67625 12.3589125,19.67625 L11.798325,19.67625 C10.484176,19.7527475 9.24522948,19.1371218 8.6538375,18.1137717 C8.613,18.0492065 8.53875,17.8587391 8.516475,17.807087 C8.4979125,17.8587391 8.41995,18.0492065 8.382825,18.1137717 C7.78811279,19.1375358 6.54698116,19.7527943 5.2309125,19.67625 L4.6666125,19.67625 C4.51488607,19.67625 4.3918875,19.5692947 4.3918875,19.4373587 L4.3918875,18.04275 C4.39391868,17.9102935 4.51798645,17.8038469 4.670325,17.8038587 L5.1492375,17.8038587 C7.5252375,17.6973261 7.4584125,15.085663 7.4584125,14.3011957 L7.4584125,3.83840217 C7.46041198,3.70541007 7.58390908,3.59802129 7.73685,3.59628261 L9.2998125,3.59628261 C9.45213751,3.59804885 9.57455104,3.70593387 9.5745375,3.83840217 L9.5745375,14.3011957 C9.5745375,15.085663 9.5002875,17.6973261 11.88,17.8038587 L12.3552,17.8038587 Z" id="合并形状" fill="#FFFFFF" fill-rule="nonzero"></path>
  2195. </g>
  2196. </g>
  2197. </g>
  2198. </g>
  2199. </g>
  2200. </g>
  2201. </g>
  2202. </svg>