123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="48"
- height="48"
- viewBox="0 0 48 48.000001"
- id="svg4232"
- version="1.1"
- inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
- sodipodi:docname="yacreader-library.svg">
- <defs
- id="defs4234">
- <radialGradient
- id="radial0"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop822" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop824" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop826" />
- </radialGradient>
- <radialGradient
- id="radial1"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop829" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop831" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop833" />
- </radialGradient>
- <radialGradient
- id="radial2"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop836" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop838" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop840" />
- </radialGradient>
- <radialGradient
- id="radial3"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop843" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop845" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop847" />
- </radialGradient>
- <linearGradient
- id="linear0"
- gradientUnits="userSpaceOnUse"
- x1="255.323059"
- y1="233.5"
- x2="255.323044"
- y2="254.666656"
- gradientTransform="matrix(0.0273881,0,0,0.082039,16.656575,23.142854)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop850" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop852" />
- </linearGradient>
- <linearGradient
- id="linear1"
- gradientUnits="userSpaceOnUse"
- x1="254"
- y1="233.5"
- x2="254"
- y2="-168.666672"
- gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
- <stop
- offset="0"
- style="stop-color:rgb(100%,43.921569%,26.274511%);stop-opacity:1;"
- id="stop855" />
- <stop
- offset="1"
- style="stop-color:rgb(100%,54.11765%,39.607844%);stop-opacity:1;"
- id="stop857" />
- </linearGradient>
- <linearGradient
- id="linear2"
- gradientUnits="userSpaceOnUse"
- x1="254"
- y1="148.833328"
- x2="254"
- y2="-84"
- gradientTransform="matrix(0.093759,0,0,0.093759,0,20.158175)">
- <stop
- offset="0"
- style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
- id="stop860" />
- <stop
- offset="1"
- style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
- id="stop862" />
- </linearGradient>
- <linearGradient
- id="linear2-3"
- gradientUnits="userSpaceOnUse"
- x1="254"
- y1="148.83333"
- x2="254"
- y2="-84"
- gradientTransform="matrix(0.08461253,0,0,0.08461253,-19.162897,21.468351)">
- <stop
- offset="0"
- style="stop-color:rgb(74.117649%,74.117649%,74.117649%);stop-opacity:1;"
- id="stop860-6" />
- <stop
- offset="1"
- style="stop-color:rgb(87.843138%,87.843138%,87.843138%);stop-opacity:1;"
- id="stop862-7" />
- </linearGradient>
- <radialGradient
- id="radial0-1"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop822-2" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop824-7" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop826-0" />
- </radialGradient>
- <radialGradient
- id="radial1-9"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop829-3" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop831-6" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop833-0" />
- </radialGradient>
- <radialGradient
- id="radial2-6"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop836-2" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop838-6" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop840-1" />
- </radialGradient>
- <radialGradient
- id="radial3-8"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop843-7" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop845-9" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop847-2" />
- </radialGradient>
- <radialGradient
- id="radial0-3"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop822-6" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop824-75" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop826-3" />
- </radialGradient>
- <radialGradient
- id="radial1-5"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop829-6" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop831-2" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop833-9" />
- </radialGradient>
- <radialGradient
- id="radial2-1"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop836-27" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop838-0" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop840-9" />
- </radialGradient>
- <radialGradient
- id="radial3-3"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop843-6" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop845-0" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop847-6" />
- </radialGradient>
- <radialGradient
- id="radial0-7"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,-0.102549,-0.288309,-1.33269e-7,78.984696,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop822-5" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop824-9" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop826-2" />
- </radialGradient>
- <radialGradient
- id="radial1-2"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,0.102549,0.288309,1.33269e-7,-31.685907,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop829-8" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop831-9" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop833-7" />
- </radialGradient>
- <radialGradient
- id="radial2-3"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(-3.57049e-7,-0.102549,0.288309,-1.33269e-7,-31.685907,88.973262)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop836-6" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop838-1" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop840-2" />
- </radialGradient>
- <radialGradient
- id="radial3-9"
- gradientUnits="userSpaceOnUse"
- cx="450.908936"
- cy="189.579361"
- fx="450.908936"
- fy="189.579361"
- r="21.166656"
- gradientTransform="matrix(3.57049e-7,0.102549,-0.288309,1.33269e-7,78.984692,-4.375346)">
- <stop
- offset="0"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.313726;"
- id="stop843-3" />
- <stop
- offset="0.222222"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0.27451;"
- id="stop845-1" />
- <stop
- offset="1"
- style="stop-color:rgb(0%,0%,0%);stop-opacity:0;"
- id="stop847-9" />
- </radialGradient>
- <linearGradient
- id="linearGradient3866">
- <stop
- style="stop-color:#000000;stop-opacity:0.52083331"
- offset="0"
- id="stop3868" />
- <stop
- style="stop-color:#2883c3;stop-opacity:0;"
- offset="1"
- id="stop3870" />
- </linearGradient>
- <linearGradient
- id="linearGradient3874">
- <stop
- style="stop-color:#000d0e;stop-opacity:0.84105963;"
- offset="0"
- id="stop3876" />
- <stop
- style="stop-color:#000000;stop-opacity:0;"
- offset="1"
- id="stop3878" />
- </linearGradient>
- <clipPath
- id="clipPath892"
- clipPathUnits="userSpaceOnUse">
- <path
- inkscape:connector-curvature="0"
- id="path894"
- d="M 38.524123,20.232391 V 51.2388 h 3.597154 V 20.232391 Z M 14.125746,21.0025 V 52.010565 H 17.7229 V 21.0025 Z M 5.9924018,21.259203 V 52.267267 H 9.591212 V 21.259203 Z m 24.3983772,1.37129 v 31.006409 h 3.597153 V 22.630493 Z m -20.330877,1.626338 v 31.008065 h 3.597154 V 24.256831 Z m 24.396721,0.08612 v 31.008065 h 3.598809 V 24.342951 Z M 1.9265577,25.798705 V 56.80677 H 5.5237118 V 25.798705 Z m 16.2650323,0.08612 v 31.008064 h 3.597155 V 25.884825 Z m 24.398377,0 v 31.008064 h 3.597154 V 25.884825 Z m -16.265033,2.22752 v 31.006408 h 3.597155 V 28.112345 Z M 22.25909,30.76715 v 31.008065 h 3.597155 V 30.76715 Z"
- style="fill:#ffffff;fill-opacity:0.25520833;stroke:none;stroke-width:1.52630627;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3881">
- <circle
- r="103.5"
- cy="152.5"
- cx="539.5"
- style="fill:#008dff;fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path3883"
- transform="translate(-412,-17)" />
- </clipPath>
- <linearGradient
- id="linearGradient4019">
- <stop
- offset="0"
- style="stop-color:#adcce1;stop-opacity:1;"
- id="stop4021" />
- <stop
- offset="0.26238"
- style="stop-color:#6bbfe1;stop-opacity:1;"
- id="stop4023" />
- <stop
- offset="0.74620908"
- style="stop-color:#2596d1;stop-opacity:1;"
- id="stop4025" />
- <stop
- offset="1"
- style="stop-color:#2372c0;stop-opacity:1;"
- id="stop4027" />
- </linearGradient>
- <linearGradient
- id="linearGradient4085">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4087" />
- <stop
- offset="0.06316455"
- style="stop-color:#ffffff;stop-opacity:0.2"
- id="stop4089" />
- <stop
- offset="0.95056331"
- style="stop-color:#ffffff;stop-opacity:0.2"
- id="stop4091" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop4093" />
- </linearGradient>
- <filter
- style="color-interpolation-filters:sRGB"
- id="filter3174">
- <feGaussianBlur
- stdDeviation="1.71"
- id="feGaussianBlur3176" />
- </filter>
- <linearGradient
- gradientTransform="scale(1.0058652,0.994169)"
- gradientUnits="userSpaceOnUse"
- id="ButtonShadow"
- y2="7.0165396"
- x2="45.447727"
- y1="92.539597"
- x1="45.447727">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1"
- id="stop3750" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0.58823532"
- id="stop3752" />
- </linearGradient>
- <linearGradient
- id="linearGradient5048-8-7">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:0"
- id="stop5050-4-2" />
- <stop
- offset="0.5"
- style="stop-color:#000000;stop-opacity:1"
- id="stop5056-7-4" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0"
- id="stop5052-0-1-7" />
- </linearGradient>
- <linearGradient
- id="linearGradient5060-29-0">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1"
- id="stop5062-9-7" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0"
- id="stop5064-08-2" />
- </linearGradient>
- <linearGradient
- id="linearGradient3851">
- <stop
- id="stop3853"
- style="stop-color:#5b8da7;stop-opacity:1;"
- offset="0" />
- <stop
- id="stop3855"
- style="stop-color:#1c3447;stop-opacity:1;"
- offset="1" />
- </linearGradient>
- <filter
- style="color-interpolation-filters:sRGB"
- id="filter3174-0">
- <feGaussianBlur
- stdDeviation="1.71"
- id="feGaussianBlur3176-9" />
- </filter>
- <clipPath
- id="clipPath916"
- clipPathUnits="userSpaceOnUse">
- <g
- id="g920"
- inkscape:label="circulo"
- style="display:inline;opacity:0.98999999;fill:#126136;fill-opacity:1"
- transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
- <path
- style="fill:#126136;fill-opacity:1;stroke:none;stroke-width:1.4909519"
- d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
- id="path918"
- inkscape:connector-curvature="0" />
- </g>
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3866">
- <circle
- r="312"
- cy="449"
- cx="1132"
- id="path3868"
- style="fill:#44abb1;fill-opacity:1;fill-rule:evenodd;stroke:none"
- transform="matrix(0.68724124,0,0,0.68724124,-521.35527,-47.661719)" />
- </clipPath>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4118">
- <stop
- style="stop-color:#0eb474;stop-opacity:1;"
- offset="0"
- id="stop4120" />
- <stop
- style="stop-color:#0eb474;stop-opacity:0;"
- offset="1"
- id="stop4122" />
- </linearGradient>
- <linearGradient
- id="linearGradient3837"
- inkscape:collect="always">
- <stop
- id="stop3839"
- offset="0"
- style="stop-color:#7db257;stop-opacity:1;" />
- <stop
- id="stop3841"
- offset="1"
- style="stop-color:#7db257;stop-opacity:0;" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="356.66208"
- x2="316.05505"
- y1="546.63525"
- x1="502.83536"
- id="linearGradient3843"
- xlink:href="#linearGradient3837"
- inkscape:collect="always" />
- <clipPath
- id="clipPath3847"
- clipPathUnits="userSpaceOnUse">
- <circle
- r="260.2153"
- cy="342.29437"
- cx="322.4407"
- style="fill:url(#linearGradient3843);fill-opacity:1;fill-rule:evenodd;stroke:none"
- id="path3849"
- transform="matrix(0.88586957,0,0,0.88586957,-24.010886,495.98978)" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath3344">
- <circle
- r="260.2153"
- cy="342.29437"
- cx="322.4407"
- transform="matrix(0.09964174,0,0,0.09964174,-8.1283951,-10.106867)"
- id="path3346"
- style="fill:#0eb474;fill-opacity:1;fill-rule:evenodd;stroke:none" />
- </clipPath>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4118"
- id="linearGradient4124"
- x1="62.225403"
- y1="342.29437"
- x2="582.65601"
- y2="342.29437"
- gradientUnits="userSpaceOnUse" />
- <clipPath
- id="clipPath932"
- clipPathUnits="userSpaceOnUse">
- <g
- id="g936"
- inkscape:label="circulo"
- style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
- transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
- <path
- style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
- d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
- id="path934"
- inkscape:connector-curvature="0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath942"
- clipPathUnits="userSpaceOnUse">
- <g
- id="g946"
- inkscape:label="circulo"
- style="display:inline;opacity:0.98999999;fill:#32b6a1;fill-opacity:1"
- transform="matrix(1.1503549,0,0,1.1503549,-4.4861245,-7.5255648)">
- <path
- style="fill:#32b6a1;fill-opacity:1;stroke:none;stroke-width:1.4909519"
- d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
- id="path944"
- inkscape:connector-curvature="0" />
- </g>
- </clipPath>
- <linearGradient
- id="linearGradient3822">
- <stop
- id="stop3824"
- style="stop-color:#e6e6e6;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3826"
- style="stop-color:#f5f5f5;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3737">
- <stop
- id="stop3739"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3741"
- style="stop-color:#ffffff;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3700">
- <stop
- id="stop3702"
- style="stop-color:#f05517;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3704"
- style="stop-color:#f37340;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <filter
- id="filter3174-7"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur3176-5"
- stdDeviation="1.71" />
- </filter>
- <linearGradient
- x1="36.357143"
- y1="6"
- x2="36.357143"
- y2="63.893143"
- id="linearGradient3188"
- xlink:href="#linearGradient3737"
- gradientUnits="userSpaceOnUse" />
- <filter
- x="-0.192"
- y="-0.192"
- width="1.3839999"
- height="1.3839999"
- id="filter3794"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur3796"
- stdDeviation="5.28" />
- </filter>
- <linearGradient
- x1="48"
- y1="20.220806"
- x2="48"
- y2="138.66119"
- id="linearGradient3613"
- xlink:href="#linearGradient3737"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- cx="48"
- cy="90.171875"
- r="42"
- fx="48"
- fy="90.171875"
- id="radialGradient3619"
- xlink:href="#linearGradient3737"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1573129,0,0,0.99590774,-7.5510206,0.19713193)" />
- <clipPath
- id="clipPath3613">
- <rect
- width="84"
- height="84"
- rx="6"
- ry="6"
- x="6"
- y="6"
- id="rect3615"
- style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" />
- </clipPath>
- <linearGradient
- x1="48"
- y1="90"
- x2="48"
- y2="5.9877172"
- id="linearGradient3617"
- xlink:href="#linearGradient3822"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="45.447727"
- y1="92.539597"
- x2="45.447727"
- y2="7.0165396"
- id="ButtonShadow-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)">
- <stop
- id="stop3750-8"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3752-5"
- style="stop-color:#000000;stop-opacity:0.58823532"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="32.251034"
- y1="6.1317081"
- x2="32.251034"
- y2="90.238609"
- id="linearGradient3780"
- xlink:href="#ButtonShadow-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0238095,0,0,1.0119048,-1.1428571,-98.071429)" />
- <linearGradient
- x1="32.251034"
- y1="6.1317081"
- x2="32.251034"
- y2="90.238609"
- id="linearGradient3721"
- xlink:href="#ButtonShadow-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(0,-97)" />
- <linearGradient
- gradientTransform="matrix(3.6907816,0,0,3.6907816,86.006062,-394.23151)"
- x1="47.973103"
- y1="79.776169"
- x2="47.973103"
- y2="16.436062"
- id="linearGradient3067"
- xlink:href="#linearGradient3700"
- gradientUnits="userSpaceOnUse" />
- <clipPath
- id="clipPath1109"
- clipPathUnits="userSpaceOnUse">
- <g
- id="g1113"
- inkscape:label="circulo"
- style="display:inline;opacity:0.98999999;fill:#fa6e31;fill-opacity:1"
- transform="matrix(12.332308,0,0,12.332308,-47.545312,-534.58518)">
- <path
- style="fill:#fa6e31;fill-opacity:1;stroke:none;stroke-width:1.4909519"
- d="M 44.322082,27.405077 A 19.729762,19.729765 0 0 1 24.59232,47.134842 19.729762,19.729765 0 0 1 4.8625579,27.405077 19.729762,19.729765 0 0 1 24.59232,7.6753138 19.729762,19.729765 0 0 1 44.322082,27.405077 Z"
- id="path1111"
- inkscape:connector-curvature="0" />
- </g>
- </clipPath>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient3361">
- <stop
- style="stop-color:#0068e0;stop-opacity:1;"
- offset="0"
- id="stop3363" />
- <stop
- style="stop-color:#00acf4;stop-opacity:1"
- offset="1"
- id="stop3365" />
- </linearGradient>
- <linearGradient
- id="linearGradient3026"
- y2="40.495998"
- gradientUnits="userSpaceOnUse"
- x2="71.204002"
- gradientTransform="matrix(1.5564685,0,0,1.58743,-88.730662,-20.236087)"
- y1="15.369"
- x1="71.204002"
- xlink:href="#linearGradient3361">
- <stop
- id="stop4808-4"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop4810-0"
- stop-color="#fff"
- stop-opacity=".23529"
- offset=".42448" />
- <stop
- id="stop4812-8"
- stop-color="#fff"
- stop-opacity=".15686"
- offset=".82090" />
- <stop
- id="stop4814-0"
- stop-color="#fff"
- stop-opacity=".39216"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3029"
- fx="4.4590001"
- fy="8.5088997"
- gradientUnits="userSpaceOnUse"
- cy="8.6258001"
- cx="15.026"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- r="20">
- <stop
- id="stop4170"
- stop-color="#c24251"
- offset="0" />
- <stop
- id="stop4172"
- stop-color="#c24251"
- offset=".26238" />
- <stop
- id="stop4174"
- stop-color="#a63643"
- offset=".66094" />
- <stop
- id="stop4176"
- stop-color="#a63643"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3032"
- gradientUnits="userSpaceOnUse"
- cy="3.99"
- cx="23.896"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- r="20.396999">
- <stop
- id="stop3244-9-33-7-0-9"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop3246-3-5-0-8-5"
- stop-color="#ddd"
- offset=".26238" />
- <stop
- id="stop3248-1-7-8-8-1"
- stop-color="#abacae"
- offset=".66094" />
- <stop
- id="stop3250-9-3-0-5-1"
- stop-color="#89898b"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient3035"
- gradientUnits="userSpaceOnUse"
- cy="186.17"
- cx="99.156998"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- r="62.769001">
- <stop
- id="stop3822-2-6-3"
- stop-color="#3d3d3d"
- offset="0" />
- <stop
- id="stop3864-8-7-7"
- stop-color="#686868"
- stop-opacity=".49804"
- offset=".5" />
- <stop
- id="stop3824-1-2-5"
- stop-color="#686868"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4433"
- y2="25.611"
- gradientUnits="userSpaceOnUse"
- x2="23.077999"
- gradientTransform="matrix(1,0,0,1.0521,0,-0.90547)"
- y1="13.035"
- x1="22.759001">
- <stop
- id="stop6305-1-0-2"
- stop-color="#fff"
- offset="0" />
- <stop
- id="stop6307-5-0-6"
- stop-color="#fff"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4829">
- <stop
- style="stop-color:#f4fbfc;stop-opacity:1;"
- offset="0"
- id="stop4831" />
- <stop
- style="stop-color:#d6d6d6;stop-opacity:1;"
- offset="1"
- id="stop4833" />
- </linearGradient>
- <radialGradient
- id="SVGID_4_"
- cx="224.50391"
- cy="186.51421"
- r="127.0051"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop27" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop29" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop31" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop33" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop35" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop37" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="26.769501"
- cy="286.66409"
- cx="324.69339"
- id="SVGID_5_">
- <stop
- id="stop50"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop52"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop54"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop56"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop58"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop60"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="46.444901"
- cy="392.77249"
- cx="325"
- id="SVGID_6_">
- <stop
- id="stop73"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop75"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop77"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop79"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop81"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop83"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100">
- <g
- id="g17"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path19"
- d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914">
- <g
- id="g3912"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3910"
- d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920">
- <g
- id="g3918"
- transform="translate(0,-1004.4)">
- <path
- style="fill:#1890d0"
- inkscape:connector-curvature="0"
- id="path3916"
- d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
- transform="matrix(15.333,0,0,11.5,415,878.86)" />
- </g>
- </clipPath>
- <linearGradient
- id="linearGradient6987"
- osb:paint="solid">
- <stop
- style="stop-color:#77d2fb;stop-opacity:1;"
- offset="0"
- id="stop6985" />
- </linearGradient>
- <filter
- y="0%"
- x="0%"
- height="100%"
- width="100%"
- id="alpha">
- <feColorMatrix
- id="feColorMatrix929"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- in="SourceGraphic" />
- </filter>
- <mask
- id="mask0">
- <g
- id="g934"
- filter="url(#alpha)">
- <rect
- id="rect932"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip1">
- <rect
- id="rect937"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip1)"
- id="surface5">
- <path
- id="path940"
- style="fill:rgb(100%,100%,100%)"
- d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z" />
- </g>
- <mask
- id="mask1">
- <g
- id="g945"
- filter="url(#alpha)">
- <rect
- id="rect943"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- height="384"
- width="384" />
- </g>
- </mask>
- <clipPath
- id="clip2">
- <rect
- id="rect948"
- height="384"
- width="384" />
- </clipPath>
- <g
- clip-path="url(#clip2)"
- id="surface8">
- <path
- id="path951"
- style="fill:rgb(0%,0%,0%)"
- d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z" />
- </g>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="249.017"
- y1="515.328"
- x2="249.882"
- x1="-248.932"
- id="linearGradient1117">
- <stop
- id="stop954"
- offset="0"
- style="stop-color:#aa75e6;stop-opacity:1" />
- <stop
- id="stop956"
- offset="1"
- style="stop-color:#8935f0;stop-opacity:1" />
- </linearGradient>
- <linearGradient
- id="linearGradient-1"
- y2="116.54461"
- x2="186.14996"
- y1="116.54461"
- x1="0"
- gradientTransform="scale(0.69850138,1.4316364)"
- gradientUnits="userSpaceOnUse">
- <stop
- id="stop4511"
- offset="0%"
- stop-color="#FFFFFF" />
- <stop
- id="stop4513"
- offset="14.13%"
- stop-opacity="0.9576"
- stop-color="#FFFFFF" />
- <stop
- id="stop4515"
- offset="100%"
- stop-opacity="0.7"
- stop-color="#FFFFFF" />
- </linearGradient>
- <linearGradient
- id="linearGradient-2"
- y2="112.26521"
- x2="373.38791"
- y1="112.26521"
- x1="187.35059"
- gradientTransform="scale(0.68561406,1.4585465)"
- gradientUnits="userSpaceOnUse">
- <stop
- id="stop4518"
- offset="0%"
- stop-color="#F1F1F2" />
- <stop
- id="stop4520"
- offset="9.191442%"
- stop-color="#E4E5E6" />
- <stop
- id="stop4522"
- offset="23.57%"
- stop-color="#D9DADB" />
- <stop
- id="stop4524"
- offset="43.8%"
- stop-color="#D2D4D5" />
- <stop
- id="stop4526"
- offset="100%"
- stop-color="#D0D2D3" />
- </linearGradient>
- <filter
- style="color-interpolation-filters:sRGB"
- id="c"
- height="1.1655999"
- width="1.1655999"
- x="-0.082800001"
- y="-0.082800001">
- <feGaussianBlur
- stdDeviation="2.1101835"
- id="feGaussianBlur10" />
- </filter>
- <filter
- style="color-interpolation-filters:sRGB"
- id="a"
- height="1.031026"
- width="1.031376"
- x="-0.015688"
- y="-0.015513">
- <feGaussianBlur
- stdDeviation=".7986332"
- id="feGaussianBlur2" />
- </filter>
- <clipPath
- id="clip1-8">
- <path
- d="M 23 24 L 361 24 L 361 347 L 23 347 Z M 23 24"
- id="path952" />
- </clipPath>
- <clipPath
- id="clip2-3">
- <path
- d="M 515.4375 185.300781 C 515.4375 356.074219 370.535156 494.394531 192 494.394531 C 13.460938 494.394531 -131.4375 356.074219 -131.4375 185.300781 C -131.4375 14.523438 13.460938 -123.796875 192 -123.796875 C 370.535156 -123.796875 515.4375 14.523438 515.4375 185.300781 Z M 515.4375 185.300781"
- id="path955" />
- </clipPath>
- <radialGradient
- r="20"
- gradientTransform="matrix(-3.4973e-8,1.8855,-1.7764,-5.4723e-8,39.14,-7.9932)"
- cx="15.026"
- cy="8.6258001"
- gradientUnits="userSpaceOnUse"
- fy="8.5088997"
- fx="4.4590001"
- id="radialGradient3029-4">
- <stop
- offset="0"
- stop-color="#c24251"
- id="stop4170-8" />
- <stop
- offset=".26238"
- stop-color="#c24251"
- id="stop4172-6" />
- <stop
- offset=".66094"
- stop-color="#a63643"
- id="stop4174-1" />
- <stop
- offset="1"
- stop-color="#a63643"
- id="stop4176-3" />
- </radialGradient>
- <radialGradient
- r="20.396999"
- gradientTransform="matrix(0,2.835678,-3.67007,0,38.250987,-64.305184)"
- cx="23.896"
- cy="3.99"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3032-3">
- <stop
- offset="0"
- stop-color="#fff"
- id="stop3244-9-33-7-0-9-4" />
- <stop
- offset=".26238"
- stop-color="#ddd"
- id="stop3246-3-5-0-8-5-0" />
- <stop
- offset=".66094"
- stop-color="#abacae"
- id="stop3248-1-7-8-8-1-8" />
- <stop
- offset="1"
- stop-color="#89898b"
- id="stop3250-9-3-0-5-1-4" />
- </radialGradient>
- <radialGradient
- r="62.769001"
- gradientTransform="matrix(0.27083,0,0,0.087623,-2.8550999,26.187422)"
- cx="99.156998"
- cy="186.17"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3035-3">
- <stop
- offset="0"
- stop-color="#3d3d3d"
- id="stop3822-2-6-3-0" />
- <stop
- offset=".5"
- stop-opacity=".49804"
- stop-color="#686868"
- id="stop3864-8-7-7-2" />
- <stop
- offset="1"
- stop-opacity="0"
- stop-color="#686868"
- id="stop3824-1-2-5-4" />
- </radialGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- r="127.0051"
- cy="186.51421"
- cx="224.50391"
- id="SVGID_4_-1">
- <stop
- id="stop27-7"
- style="stop-color:#FFFFFF"
- offset="0" />
- <stop
- id="stop29-6"
- style="stop-color:#FDFEFF"
- offset="0.3984" />
- <stop
- id="stop31-2"
- style="stop-color:#F5FAFF"
- offset="0.6131" />
- <stop
- id="stop33-6"
- style="stop-color:#E7F3FF"
- offset="0.7841" />
- <stop
- id="stop35-2"
- style="stop-color:#D4EAFF"
- offset="0.9311" />
- <stop
- id="stop37-5"
- style="stop-color:#C8E4FF"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="SVGID_5_-9"
- cx="324.69339"
- cy="286.66409"
- r="26.769501"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop50-2" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop52-0" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop54-5" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop56-9" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop58-7" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop60-2" />
- </radialGradient>
- <radialGradient
- id="SVGID_6_-7"
- cx="325"
- cy="392.77249"
- r="46.444901"
- gradientUnits="userSpaceOnUse">
- <stop
- offset="0"
- style="stop-color:#FFFFFF"
- id="stop73-5" />
- <stop
- offset="0.3984"
- style="stop-color:#FDFEFF"
- id="stop75-3" />
- <stop
- offset="0.6131"
- style="stop-color:#F5FAFF"
- id="stop77-2" />
- <stop
- offset="0.7841"
- style="stop-color:#E7F3FF"
- id="stop79-0" />
- <stop
- offset="0.9311"
- style="stop-color:#D4EAFF"
- id="stop81-7" />
- <stop
- offset="1"
- style="stop-color:#C8E4FF"
- id="stop83-2" />
- </radialGradient>
- <clipPath
- id="clipPath-349538100-0">
- <g
- transform="translate(0,-1004.4)"
- id="g17-3">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
- id="path19-8"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3914-3">
- <g
- transform="translate(0,-1004.4)"
- id="g3912-6">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
- id="path3910-2"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <clipPath
- id="clipPath3920-2">
- <g
- transform="translate(0,-1004.4)"
- id="g3918-2">
- <path
- transform="matrix(15.333,0,0,11.5,415,878.86)"
- d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
- id="path3916-9"
- inkscape:connector-curvature="0"
- style="fill:#1890d0" />
- </g>
- </clipPath>
- <filter
- id="alpha-3"
- width="100%"
- height="100%"
- x="0%"
- y="0%">
- <feColorMatrix
- in="SourceGraphic"
- values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
- id="feColorMatrix929-8" />
- </filter>
- <mask
- id="mask0-2">
- <g
- filter="url(#alpha)"
- id="g934-8"
- style="filter:url(#alpha-3)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect932-5" />
- </g>
- </mask>
- <clipPath
- id="clip1-4">
- <rect
- width="384"
- height="384"
- id="rect937-5" />
- </clipPath>
- <g
- id="surface5-6"
- clip-path="url(#clip1-4)">
- <path
- d="m162.49219 24.035156c-13.507813 0.222656-27.109376 3.160156-37.09375 8.109375-9.898438 4.90625-18.738282 14.425781-27.078126 29.167969-2.140624 3.78125-4.636718 7.363281-5.554687 7.96875s-4.285156 1.453125-7.464844 1.882812c-11.070312-0.371093-23.210937-2.757812-34.96875-5.140624 0 0-7.496093-1.949219-8.332031 6.152343 0.035156 1.367188 0.257812 2.65625 0.46875 3.953125 1.8125-5.617187 7.863281-4.105468 7.863281-4.105468 11.757813 2.382812 23.898438 4.769531 34.96875 5.140624 3.179688-0.429687 6.546875-1.277343 7.464844-1.882812s3.414063-4.199219 5.554687-7.980469c8.339844-14.738281 17.179688-24.25 27.078126-29.15625 11.414062-5.65625 27.554687-8.683593 42.871093-8.039062 18.414063 0.777343 34.054688 7.144531 46.832031 19.066406 8.777344 8.195313 14.589844 10.25 22.941407 8.097656 2.28125-0.589843 3.175781-0.746093 4.058593-0.855469 1.191407-1.652343 1.953126-3.363281 1.953126-4.816406 0-1.84375-0.136719-1.84375-6.011719-0.328125-8.351563 2.152344-14.164063 0.097657-22.941407-8.097656-12.777343-11.921875-28.417968-18.289063-46.832031-19.066406-1.914062-0.082031-3.84375-0.101563-5.777343-0.070313zm77.929687 40.328125c-0.410156 0.402344-0.800781 0.816407-1.269531 1.191407l-2.726563 2.203124 0.855469 0.503907c0.253906-0.042969 0.460938-0.101563 0.726562-0.136719 3.835938-0.554688 4.546876-1.980469 2.414063-3.761719zm-8.214844 11.644531c-0.457031 0.335938-0.785156 0.683594-0.785156 1.019532 0 0.398437 0.542969 3.835937 1.203125 7.636718 0.582031 3.355469 0.792969 7.929688 0.835938 12.710938 0.238281-6.9375-0.007813-13.949219-0.835938-18.710938-0.226562-1.316406-0.234375-1.535156-0.417969-2.65625zm-170.49609 34.195313c-5.027344 3.300781-7.902344 8.210937-13.792969 12.808594-0.917969 1.726562-0.429688 3.367187 1.171875 4.921875 6.414062-5.457032 9.296875-11.167969 16.910156-13.921875-1.464844-1.246094-2.851562-2.539063-4.289062-3.808594zm256.28906 45.820313c-5.183594 0-8.507812 3.1875-14.089844 10.699218-6.519531 8.789063-15.25 15.429688-21.347656 18.539063-9.554688 4.871093-16.882812 4.003906-34.152344-4.042969-18.273437-8.519531-30.953125-11.582031-49.15625-13.195312-1.289062-0.113282-2.777344-0.066407-4.242187-0.082032-3.976563 2.703125-8.339844 5.644532-9.011719 6.070313 0.847656 0 8.28125-0.433594 13.253906 0.011719 18.203125 1.613281 30.882813 4.675781 49.15625 13.195312 17.269532 8.046875 24.597656 8.914062 34.152344 4.042969 6.097656-3.109375 14.828125-9.75 21.347656-18.539063 5.582032-7.511718 8.90625-10.699218 14.089844-10.699218 5.074219 0 8.71875 3.347656 12.5625 9.210937 5.445312 8.304687 8.414062 14.230469 10.527344 28.699219 0.597656 4.132812 0.8125 10.640625 0.824218 17.445312 0.195313-8.976562-0.046874-18.070312-0.824218-23.445312-2.113282-14.46875-5.082032-20.394532-10.527344-28.699219-3.84375-5.863281-7.488281-9.210937-12.5625-9.210937zm-216 3.371093c-0.253906 5.238281-1.375 10.058594-4.625 16.363281-3.75 7.273438-7.84375 13.054688-15.941406 21.960938-14.582032 16.054688-24.941406 33.121094-29.496094 48.597656-1.648438 5.597656-2.285156 11.917969-2.039062 18.570313 0.222656-4.449219 0.894531-8.679688 2.039062-12.570313 4.554688-15.476562 14.914062-32.542968 29.496094-48.597656 8.097656-8.90625 12.191406-14.6875 15.941406-21.960938 4.433594-8.605468 4.96875-14.449218 4.625-22.363281z"
- style="fill:rgb(100%,100%,100%)"
- id="path940-7" />
- </g>
- <mask
- id="mask1-7">
- <g
- filter="url(#alpha)"
- id="g945-3"
- style="filter:url(#alpha-3)">
- <rect
- width="384"
- height="384"
- style="fill-opacity:.2;fill:rgb(0%,0%,0%)"
- id="rect943-6" />
- </g>
- </mask>
- <clipPath
- id="clip2-4">
- <rect
- width="384"
- height="384"
- id="rect948-5" />
- </clipPath>
- <g
- id="surface8-5"
- clip-path="url(#clip2-4)">
- <path
- d="m243.25781 56.179688c-0.171874-0.011719-0.917968 0.210937-1.171874 0.246093-0.796876 1.09375-1.75 2.175781-2.929688 3.128907l-2.730469 2.203124 2.753907 1.640626c0.574218 0.339843 0.863281 0.640624 1.242187 0.960937 2.210937-2.1875 3.632813-4.71875 3.632813-6.761719 0-0.921875-0.027344-1.375-0.796876-1.417968zm-5.988281 12.082031c-3.363281 0.589843-5.847656 1.722656-5.847656 2.765625 0 0.257812 0.441406 2.878906 0.785156 4.980468 1.066407-0.785156 3.167969-1.507812 5.800781-1.886718 4.515626-0.652344 4.96875-2.46875 1.171876-4.722656zm-194.80078 7.859375c-0.199219 0.617187-0.386719 1.253906-0.46875 2.050781 0.355469 13.265625 9.480469 22.996094 19.710938 32.027344 1.269531-0.832031 2.652343-1.601563 4.289062-2.1875-10.800781-9.210938-21.386719-18.847657-23.53125-31.890625zm190.99219 21.246094c-0.230469 6.667968-0.914063 13.25-1.992188 17.625-3.410156 13.835937-8.582031 23.582031-17.402344 32.835937-6.867187 6.238281-26.257812 19.042969-28.070312 20.183594 0.632812 0 4.851562-0.136719 9.035156-0.082031 6.734375-4.582032 14.722656-10.179688 19.03125-14.097657 8.820312-9.25 13.996094-18.996093 17.402344-32.835937 1.414062-5.71875 2.066406-15.097656 1.992187-23.625zm-184.37109 30.574218c-0.414063 0.355469-0.71875 0.714844-1.171875 1.066406-1.417969 2.675782 0.214843 5.175782 4.804687 7.394532 5.921875 2.855468 11.992188 3.625 24.390625 3.035156 12.695313-0.609375 14.386719 1.269531 18.492188 4.664062 4.328125 3.601563 6.027343 7 6.394531 14.894532 0.007812 0.140625-0.003906 0.261718 0 0.398437 0.101562-2.035156 0.109375-4.132812 0-6.410156-0.367188-7.894531-2.066406-11.28125-6.394531-14.882813-4.105469-3.394531-5.796875-5.285156-18.492188-4.675781-12.398437 0.589844-18.46875-0.167969-24.390625-3.023437-1.621094-0.785156-2.753906-1.605469-3.632812-2.460938zm292.82422 89.4375c-0.175781 8.300782-0.71875 16.507813-1.617187 21.457032-11.171875 61.597656-50.480469 103.0625-110.49609 116.56641-16.195312 3.644531-22.71875 4.300781-45.160156 4.535156-11.644531 0.125-22.519531 0.085938-24.15625-0.082031v-0.011719c-37.652344-3.851562-63.890625-14.621094-83.273437-34.191406-7.828126-7.910156-13.144532-15.179688-17.5625-24.023438-5.847657-11.691406-9.1875-24.296875-9.75-35.90625-0.496094 13.167969 2.875 28.160156 9.75 41.90625 4.417968 8.84375 9.734374 16.117188 17.566406 24.023438 19.378906 19.570312 45.613281 30.355468 83.273437 34.207031 1.632813 0.167969 12.507813 0.203125 24.152344 0.082031 22.445313-0.234375 28.964844-0.890625 45.164063-4.535156 60.011718-13.5 99.324218-54.96875 110.49609-116.56641 1.121094-6.183594 1.640625-17.246094 1.617188-27.457032z"
- style="fill:rgb(0%,0%,0%)"
- id="path951-0" />
- </g>
- <filter
- y="-0.082800001"
- x="-0.082800001"
- width="1.1655999"
- height="1.1655999"
- id="c-3"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur10-1"
- stdDeviation="2.1101835" />
- </filter>
- <filter
- y="-0.015513"
- x="-0.015688"
- width="1.031376"
- height="1.031026"
- id="a-2"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur2-9"
- stdDeviation=".7986332" />
- </filter>
- <linearGradient
- gradientTransform="matrix(2.7297298,0,0,2.7297298,-1.5135184,-62.511679)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3924"
- id="linearGradient4136"
- y2="42.261559"
- x2="23.99999"
- y1="5.5907431"
- x1="23.99999" />
- <linearGradient
- id="linearGradient3924">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop3926" />
- <stop
- offset="0.03750312"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop3928" />
- <stop
- offset="0.96667296"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop3930" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop3932" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(2.0808079,0,0,2.3409091,-2.5858604,-71.907281)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient27416-1-2-0"
- id="linearGradient3913-9"
- y2="55.052982"
- x2="30.271185"
- y1="10.028973"
- x1="30.271185" />
- <linearGradient
- id="linearGradient27416-1-2-0">
- <stop
- offset="0"
- style="stop-color:#55c1ec;stop-opacity:1"
- id="stop27420-2-0-8" />
- <stop
- offset="1"
- style="stop-color:#3689e6;stop-opacity:1"
- id="stop27422-3-5-3" />
- </linearGradient>
- <linearGradient
- id="linearGradient4632-92-3-0-8-1-9">
- <stop
- offset="0"
- style="stop-color:#fafafa;stop-opacity:1"
- id="stop4634-68-8-0-2-9-4" />
- <stop
- offset="1"
- style="stop-color:#e1e1e1;stop-opacity:1"
- id="stop4636-8-21-7-1-4-8" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3688-166-749-5"
- id="radialGradient4093"
- fy="43.5"
- fx="4.9929786"
- r="2.5"
- cy="43.5"
- cx="4.9929786" />
- <linearGradient
- id="linearGradient3688-166-749-5">
- <stop
- offset="0"
- style="stop-color:#181818;stop-opacity:1"
- id="stop2883-0" />
- <stop
- offset="1"
- style="stop-color:#181818;stop-opacity:0"
- id="stop2885-5" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3688-166-749-5"
- id="radialGradient4095"
- fy="43.5"
- fx="4.9929786"
- r="2.5"
- cy="43.5"
- cx="4.9929786" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3702-501-757-0"
- id="linearGradient4097"
- y2="39.999443"
- x2="25.058096"
- y1="47.027729"
- x1="25.058096" />
- <linearGradient
- id="linearGradient3702-501-757-0">
- <stop
- offset="0"
- style="stop-color:#181818;stop-opacity:0"
- id="stop2895-0" />
- <stop
- offset="0.5"
- style="stop-color:#181818;stop-opacity:1"
- id="stop2897-2" />
- <stop
- offset="1"
- style="stop-color:#181818;stop-opacity:0"
- id="stop2899-6" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(1.5563924,0,0,0.16978827,70.270355,38.132101)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient5060-29-0"
- id="radialGradient4432"
- fy="93.467628"
- fx="-4.0287771"
- r="35.338131"
- cy="93.467628"
- cx="-4.0287771" />
- <radialGradient
- r="27.5"
- fy="4.3419166"
- fx="31.999998"
- cy="4.3419166"
- cx="31.999998"
- gradientTransform="matrix(1.8994991e-8,4.3639682,-4.363968,1.8994991e-8,82.947989,-187.94014)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3044"
- xlink:href="#linearGradient4632-92-3-0-8-1-9" />
- <linearGradient
- id="linearGradient4011-9-9-70-61-7">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;"
- id="stop4013-5-4-3-8-3" />
- <stop
- id="stop4015-1-5-70-9-5"
- style="stop-color:#ffffff;stop-opacity:0.23529412;"
- offset="0.507761" />
- <stop
- offset="0.83456558"
- style="stop-color:#ffffff;stop-opacity:0.15686275;"
- id="stop4017-7-0-13-0-1" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687;"
- id="stop4019-1-12-7-0-7" />
- </linearGradient>
- <linearGradient
- id="linearGradient4215-8-4-07-7">
- <stop
- id="stop4217-1-2-1-2"
- offset="0"
- style="stop-color:#e9e9e9;stop-opacity:1;" />
- <stop
- id="stop4219-3-4-0-96"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- y2="44.340794"
- x2="71.204407"
- y1="6.2375584"
- x1="71.204407"
- gradientTransform="matrix(-0.94594587,0,0,0.94594587,149.85603,-20.984768)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3882"
- xlink:href="#linearGradient4011-9-9-70-61-7" />
- <linearGradient
- y2="8.0928917"
- x2="38.976662"
- y1="59.967686"
- x1="38.976662"
- gradientTransform="matrix(-0.70588238,0,0,0.70588238,104.58823,-20.99819)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3885"
- xlink:href="#linearGradient4215-8-4-07-7" />
- <linearGradient
- spreadMethod="pad"
- gradientTransform="matrix(0.87539065,-0.87968181,0.97932539,0.97445279,137.39425,31.066659)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3155-40"
- id="linearGradient3176"
- y2="31.210939"
- x2="23.575972"
- y1="25.356892"
- x1="23.575972" />
- <linearGradient
- id="linearGradient3155-40">
- <stop
- offset="0"
- style="stop-color:#181818;stop-opacity:1"
- id="stop2541" />
- <stop
- offset="0.13482948"
- style="stop-color:#dbdbdb;stop-opacity:1"
- id="stop2543" />
- <stop
- offset="0.20224422"
- style="stop-color:#a4a4a4;stop-opacity:1"
- id="stop2545" />
- <stop
- offset="0.26965895"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop2547" />
- <stop
- offset="0.44650277"
- style="stop-color:#8d8d8d;stop-opacity:1"
- id="stop2549" />
- <stop
- offset="0.57114136"
- style="stop-color:#959595;stop-opacity:1"
- id="stop2551" />
- <stop
- offset="0.72038066"
- style="stop-color:#cecece;stop-opacity:1"
- id="stop2553" />
- <stop
- offset="1"
- style="stop-color:#181818;stop-opacity:1"
- id="stop2555" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,134.1863,26.565393)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3240-907"
- id="linearGradient3171-9"
- y2="30.000141"
- x2="30.037716"
- y1="24.989594"
- x1="30.037716" />
- <linearGradient
- id="linearGradient3240-907">
- <stop
- offset="0"
- style="stop-color:#565656;stop-opacity:1"
- id="stop2591" />
- <stop
- offset="0.5"
- style="stop-color:#9a9a9a;stop-opacity:1"
- id="stop2593" />
- <stop
- offset="1"
- style="stop-color:#545454;stop-opacity:1"
- id="stop2595" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,133.94269,26.810201)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3223-699"
- id="linearGradient3168"
- y2="30.000141"
- x2="30.037716"
- y1="24.989594"
- x1="30.037716" />
- <linearGradient
- id="linearGradient3223-699">
- <stop
- offset="0"
- style="stop-color:#b1b1b1;stop-opacity:1"
- id="stop2599" />
- <stop
- offset="0.5"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop2601" />
- <stop
- offset="1"
- style="stop-color:#8f8f8f;stop-opacity:1"
- id="stop2603" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.03285,25.71469)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3240-907"
- id="linearGradient3165"
- y2="30.000141"
- x2="30.037716"
- y1="24.989594"
- x1="30.037716" />
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,134.78924,25.959496)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3223-699"
- id="linearGradient3162"
- y2="30.000141"
- x2="30.037716"
- y1="24.989594"
- x1="30.037716" />
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.8835,24.859875)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3240-907"
- id="linearGradient3159"
- y2="30.000141"
- x2="30.037716"
- y1="24.989594"
- x1="30.037716" />
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.146122,1.1404196,135.63989,25.104684)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3223-699"
- id="linearGradient3156"
- y2="30.000141"
- x2="30.037716"
- y1="24.989594"
- x1="30.037716" />
- <linearGradient
- gradientTransform="matrix(0.85064445,-0.85481442,1.1461221,1.1404197,133.86321,26.890061)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3290-678"
- id="linearGradient3151"
- y2="26.02973"
- x2="9"
- y1="29.056757"
- x1="9" />
- <linearGradient
- id="linearGradient3290-678">
- <stop
- offset="0"
- style="stop-color:#ece5a5;stop-opacity:1"
- id="stop2607" />
- <stop
- offset="1"
- style="stop-color:#fcfbf2;stop-opacity:1"
- id="stop2609" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.74712277,0.03224699,0.03220731,0.74620134,164.80582,22.054915)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3191-577"
- id="linearGradient3153"
- y2="41.391716"
- x2="9.5220556"
- y1="37.371799"
- x1="5.5178981" />
- <linearGradient
- id="linearGradient3191-577">
- <stop
- offset="0"
- style="stop-color:#dbce48;stop-opacity:1"
- id="stop2613" />
- <stop
- offset="1"
- style="stop-color:#c5b625;stop-opacity:1"
- id="stop2615" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.68819266,0,0,0.68819266,-66.372441,271.1295)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient5060-29-0"
- id="linearGradient3024-3"
- y2="30.093096"
- x2="30.643436"
- y1="3.915791"
- x1="30.643436" />
- <linearGradient
- gradientTransform="matrix(0.63721544,0,0,-0.63721544,-50.151075,311.70922)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient5060-29-0"
- id="linearGradient3453-5"
- y2="17.313972"
- x2="19.868132"
- y1="13.067885"
- x1="19.868132" />
- <clipPath
- id="clipPath8125-5"
- clipPathUnits="userSpaceOnUse">
- <path
- d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,1.6875005 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 L 8.5,14.5 C 8.223,14.5 8,14.723 8,15 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 1.6875,0 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 l 0,1.6875 c 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 l 1.6875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.6875,0 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 l 0,-1.6875005 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -2,0 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
- id="path8127-2"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
- inkscape:connector-curvature="0" />
- </clipPath>
- <clipPath
- id="clipPath4340"
- clipPathUnits="userSpaceOnUse">
- <path
- d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 l 0,1.6875005 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 L 8.5,14.5 C 8.223,14.5 8,14.723 8,15 l 0,2 c 0,0.277 0.223,0.5 0.5,0.5 l 1.6875,0 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 l 0,1.6875 c 0,0.277 0.223,0.5 0.5,0.5 l 2,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 l 1.6875,0 c 0.277,0 0.5,-0.223 0.5,-0.5 l 0,-2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -1.6875,0 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 l 0,-1.6875005 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 l -2,0 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
- id="path4342"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
- inkscape:connector-curvature="0" />
- </clipPath>
- <clipPath
- id="clipPath8125-5-7"
- clipPathUnits="userSpaceOnUse">
- <path
- d="m 15,7.9999995 c -0.277,0 -0.5,0.223 -0.5,0.5 V 10.1875 c -0.548639,0.140741 -1.055018,0.37601 -1.53125,0.65625 L 11.75,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 L 9.625,11.0625 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.21875,1.21875 C 10.56351,13.444982 10.328241,13.951361 10.1875,14.5 H 8.5 C 8.223,14.5 8,14.723 8,15 v 2 c 0,0.277 0.223,0.5 0.5,0.5 h 1.6875 c 0.140741,0.548639 0.37601,1.055018 0.65625,1.53125 L 9.625,20.25 c -0.1958686,0.195869 -0.1958686,0.491631 0,0.6875 l 1.4375,1.4375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.21875,-1.21875 c 0.476232,0.28024 0.982611,0.515509 1.53125,0.65625 V 23.5 c 0,0.277 0.223,0.5 0.5,0.5 h 2 c 0.277,0 0.5,-0.223 0.5,-0.5 v -1.6875 c 0.548639,-0.140741 1.055018,-0.37601 1.53125,-0.65625 L 20.25,22.375 c 0.195869,0.195869 0.491631,0.195869 0.6875,0 l 1.4375,-1.4375 c 0.195869,-0.195869 0.195869,-0.491631 0,-0.6875 L 21.15625,19.03125 C 21.43649,18.555018 21.671759,18.048639 21.8125,17.5 H 23.5 c 0.277,0 0.5,-0.223 0.5,-0.5 v -2 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 H 21.8125 C 21.671759,13.951361 21.43649,13.444982 21.15625,12.96875 L 22.375,11.75 c 0.195869,-0.19587 0.195869,-0.491631 0,-0.6875 L 20.9375,9.625 c -0.195869,-0.19587 -0.491631,-0.19587 -0.6875,0 l -1.21875,1.21875 C 18.555018,10.56351 18.048639,10.328241 17.5,10.1875 V 8.4999995 c 0,-0.277 -0.223,-0.5 -0.5,-0.5 z M 16,13 c 1.656854,0 3,1.343146 3,3 0,1.656854 -1.343146,3 -3,3 -1.656854,0 -3,-1.343146 -3,-3 0,-1.656854 1.343146,-3 3,-3 z"
- id="path8127-2-8"
- style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate"
- inkscape:connector-curvature="0" />
- </clipPath>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="5.6"
- inkscape:cx="-14.581336"
- inkscape:cy="50.00708"
- inkscape:document-units="px"
- inkscape:current-layer="layer1"
- showgrid="true"
- units="px"
- inkscape:window-width="1920"
- inkscape:window-height="1028"
- inkscape:window-x="0"
- inkscape:window-y="24"
- inkscape:window-maximized="1"
- inkscape:document-rotation="0"
- showguides="true"
- inkscape:guide-bbox="true">
- <inkscape:grid
- type="xygrid"
- id="grid4780"
- spacingx="0.1"
- spacingy="0.1" />
- <sodipodi:guide
- position="11,32.000001"
- orientation="1,0"
- id="guide1238" />
- </sodipodi:namedview>
- <metadata
- id="metadata4237">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Capa 1"
- inkscape:groupmode="layer"
- id="layer1"
- transform="translate(0,-1004.3622)">
- <path
- id="path4322"
- d="m 3.5830609,1008.3443 39.9999651,0 c 0.83101,0 1.500018,0.669 1.500018,1.5 l 0,20.0893 0,19.9107 c 0,0.831 -0.669008,1.5 -1.500018,1.5 l -39.9999651,0 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 l 0,-19.9554 0,-20.0446 c 0,-0.831 0.6690077,-1.5 1.5000174,-1.5 z"
- style="opacity:1;fill:#ddbd79;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="ssscsssscss" />
- <path
- sodipodi:nodetypes="sssccccsscss"
- inkscape:connector-curvature="0"
- style="opacity:1;fill:#edd39b;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
- d="m 3.5830609,1008.3443 39.9999651,0 c 0.83101,0 1.500018,0.669 1.500018,1.5 l 0,20.0893 0,6.5818 -15.031006,14.8289 -6.468995,0 -19.9999821,0 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 l 0,-19.9554 0,-20.0446 c 0,-0.831 0.6690077,-1.5 1.5000174,-1.5 z"
- id="path4377" />
- <path
- sodipodi:nodetypes="sccsscss"
- inkscape:connector-curvature="0"
- style="opacity:1;fill:#ddbd79;fill-opacity:1;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
- d="M 3.5830609,1008.3443 H 10.99804 l 0.09499,43 H 3.5830609 c -0.8310097,0 -1.5000174,-0.669 -1.5000174,-1.5 v -19.9554 -20.0446 c 0,-0.831 0.6690077,-1.5 1.5000174,-1.5 z"
- id="path1236" />
- <path
- id="rect1240"
- style="fill:#80b1d6;fill-opacity:1;stroke-width:1.13386;stroke-linecap:round;stroke-linejoin:round"
- d="m 27,1008.3622 h 10 v 21 l -5,-10 -5,10 z"
- sodipodi:nodetypes="cccccc" />
- </g>
- </svg>
|