| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181 |
- <shapes name="mxgraph.mockup.misc">
- <shape name="Critical Icon" h="32" w="32" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <strokecolor color="#000000"/>
- <fillcolor color="#ff0000"/>
- <ellipse x="0" y="0" w="32" h="32"/>
- <fillstroke/>
- <strokecolor color="#ffffff"/>
- <strokewidth width="3"/>
- <fillcolor color="none"/>
- <path>
- <move x="8" y="24"/>
- <line x="24" y="8"/>
- </path>
- <stroke/>
- <path>
- <move x="8" y="8"/>
- <line x="24" y="24"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Cursor Arrow" h="29" w="18.5" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#ffffff"/>
- <path>
- <move x="0" y="26"/>
- <line x="0" y="0"/>
- <line x="18.5" y="19"/>
- <line x="10" y="19"/>
- <line x="14.5" y="27.5"/>
- <line x="11.5" y="29"/>
- <line x="6.5" y="20.5"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Cursor Hand" h="33.25" w="23.89" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#ffffff"/>
- <linejoin join="round"/>
- <path>
- <move x="7.39" y="33.25"/>
- <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="5.39" y="25.25"/>
- <arc rx="40" ry="40" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="0.39" y="17.25"/>
- <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="2.39" y="14.25"/>
- <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="5.89" y="17.75"/>
- <line x="5.89" y="2.25"/>
- <arc rx="2" ry="2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="10.39" y="2.25"/>
- <line x="10.39" y="14.75"/>
- <line x="10.39" y="10.25"/>
- <arc rx="2.5" ry="2.5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="14.89" y="10.25"/>
- <line x="14.89" y="14.75"/>
- <line x="14.89" y="11.25"/>
- <arc rx="2.5" ry="2.5" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="19.39" y="11.25"/>
- <line x="19.39" y="16.25"/>
- <line x="19.39" y="11.75"/>
- <arc rx="5" ry="4" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="23.89" y="15.25"/>
- <arc rx="50" ry="50" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="21.39" y="29.25"/>
- <line x="21.39" y="33.25"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Gear" h="38.8" w="39" aspect="1">
- <foreground>
- <strokecolor color="#2c457e"/>
- <fillcolor color="#f2f2f2"/>
- <path>
- <move x="21" y="5.1"/>
- <line x="25" y="0"/>
- <line x="29.6" y="1.8"/>
- <line x="28.7" y="7.8"/>
- <line x="31.2" y="10.3"/>
- <line x="37" y="9.3"/>
- <line x="39" y="13.8"/>
- <line x="34.3" y="17.55"/>
- <line x="34.3" y="21.3"/>
- <line x="39" y="24.5"/>
- <line x="37.3" y="29.3"/>
- <line x="31.5" y="28.3"/>
- <line x="28.4" y="31"/>
- <line x="29.2" y="36.8"/>
- <line x="24.5" y="38.8"/>
- <line x="21.2" y="33.6"/>
- <line x="17.9" y="33.6"/>
- <line x="14.6" y="38.8"/>
- <line x="9.7" y="36.8"/>
- <line x="10.7" y="31"/>
- <line x="8.2" y="28.3"/>
- <line x="2.2" y="29.3"/>
- <line x="0" y="24.5"/>
- <line x="5" y="21.3"/>
- <line x="5" y="17.55"/>
- <line x="0" y="13.8"/>
- <line x="2.2" y="9.3"/>
- <line x="8.2" y="10.3"/>
- <line x="10.7" y="7.8"/>
- <line x="9.7" y="1.8"/>
- <line x="14.6" y="0"/>
- <line x="17.9" y="5.1"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <ellipse x="13.45" y="13.3" w="12" h="12"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Help Icon" h="32" w="32" aspect="1">
- <foreground>
- <strokecolor color="strokeColor2" default="#666666"/>
- <fillcolor color="fillColor2" default="#cccccc"/>
- <ellipse x="0" y="0" w="32" h="32"/>
- <fillstroke/>
- <fontcolor color="fontColor2" default="#2c457e"/>
- <fontsize size="20"/>
- <fontstyle style="1"/>
- <text str="?" x="16" y="16" align="center" valign="middle"/>
- </foreground>
- </shape>
- <shape name="Horizontal Splitter" h="24" w="250" aspect="1">
- <foreground>
- <strokecolor color="none"/>
- <fillcolor color="#fafafa"/>
- <rect x="0" y="0" w="250" h="24"/>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <fillcolor color="none"/>
- <path>
- <move x="0" y="0"/>
- <line x="250" y="0"/>
- </path>
- <stroke/>
- <path>
- <move x="0" y="24"/>
- <line x="250" y="24"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="#2c457e"/>
- <roundrect x="95" y="5" w="25" h="14" arcsize="16.715"/>
- <fillstroke/>
- <roundrect x="130" y="5" w="25" h="14" arcsize="16.715"/>
- <fillstroke/>
- <strokecolor color="#ffffff"/>
- <fillcolor color="#ffffff"/>
- <linejoin join="round"/>
- <path>
- <move x="113" y="15"/>
- <line x="102" y="15"/>
- <line x="107.5" y="8"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="148" y="8"/>
- <line x="137" y="8"/>
- <line x="142.5" y="15"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Image Placeholder" h="100" w="100" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#ffffff"/>
- <rect x="0" y="0" w="100" h="100"/>
- <fillstroke/>
- <path>
- <move x="0" y="100"/>
- <line x="100" y="0"/>
- </path>
- <stroke/>
- <path>
- <move x="0" y="0"/>
- <line x="100" y="100"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Information Icon" h="22" w="32" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#ffffff"/>
- <miterlimit limit="15"/>
- <path>
- <move x="26" y="15.7"/>
- <arc rx="14.34" ry="8.5" x-axis-rotation="0" large-arc-flag="1" sweep-flag="0" x="22.79" y="17.059"/>
- <arc rx="11.62" ry="13.51" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="29.37" y="21.48"/>
- <arc rx="8.78" ry="10.2" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="26" y="15.7"/>
- <close/>
- </path>
- <fillstroke/>
- <fontsize size="14"/>
- <fontcolor color="#2c457e"/>
- <fontstyle style="1"/>
- <text str="i" x="14" y="10" valign="middle" align="center"/>
- </foreground>
- </shape>
- <shape name="Loading Bar 1" h="24" w="250" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#fafafa"/>
- <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
- <fillstroke/>
- <fillcolor color="#2c457e"/>
- <rect x="3" y="3" w="10" h="18"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="none"/>
- <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
- <stroke/>
- <strokecolor color="none"/>
- <fillcolor color="#2c457e"/>
- <rect x="15" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="27" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="39" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="51" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="63" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="75" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="87" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="99" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="111" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="123" y="3" w="10" h="18"/>
- <fillstroke/>
- <rect x="135" y="3" w="10" h="18"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Loading Bar 2" h="24" w="250" aspect="1">
- <foreground>
- <strokecolor color="none"/>
- <fillcolor color="#fafafa"/>
- <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
- <fillstroke/>
- <fillcolor color="#2c457e"/>
- <rect x="3" y="3" w="150" h="18"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="none"/>
- <roundrect x="0" y="0" w="250" h="24" arcsize="11.417"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Loading Circle 1" h="84" w="88" aspect="1">
- <foreground>
- <strokecolor color="none"/>
- <fillcolor color="#888888"/>
- <ellipse x="9" y="3" w="24" h="24"/>
- <fillstroke/>
- <fillcolor color="#999999"/>
- <ellipse x="0" y="29" w="22" h="22"/>
- <fillstroke/>
- <fillcolor color="#aaaaaa"/>
- <ellipse x="11" y="55" w="20" h="20"/>
- <fillstroke/>
- <fillcolor color="#bbbbbb"/>
- <ellipse x="37" y="66" w="18" h="18"/>
- <fillstroke/>
- <fillcolor color="#cccccc"/>
- <ellipse x="63" y="57" w="16" h="16"/>
- <fillstroke/>
- <fillcolor color="#dddddd"/>
- <ellipse x="74" y="33" w="14" h="14"/>
- <fillstroke/>
- <fillcolor color="#eeeeee"/>
- <ellipse x="65" y="9" w="12" h="12"/>
- <fillstroke/>
- <fillcolor color="#f3f3f3"/>
- <ellipse x="41" y="0" w="10" h="10"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Loading Circle 2" h="90" w="90" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <strokecolor color="#808080"/>
- <strokewidth width="4"/>
- <path>
- <move x="45" y="31"/>
- <line x="45" y="0"/>
- </path>
- <stroke/>
- <strokecolor color="#d1d1d1"/>
- <path>
- <move x="59" y="45"/>
- <line x="90" y="45"/>
- </path>
- <stroke/>
- <strokecolor color="#b3b3b3"/>
- <path>
- <move x="45" y="59"/>
- <line x="45" y="90"/>
- </path>
- <stroke/>
- <strokecolor color="#949494"/>
- <path>
- <move x="31" y="45"/>
- <line x="0" y="45"/>
- </path>
- <stroke/>
- <strokecolor color="#bdbdbd"/>
- <path>
- <move x="52" y="57"/>
- <line x="67.5" y="84"/>
- </path>
- <stroke/>
- <strokecolor color="#c7c7c7"/>
- <path>
- <move x="57" y="52"/>
- <line x="84" y="67.5"/>
- </path>
- <stroke/>
- <strokecolor color="#a8a8a8"/>
- <path>
- <move x="22.5" y="84"/>
- <line x="38" y="57"/>
- </path>
- <stroke/>
- <strokecolor color="#9e9e9e"/>
- <path>
- <move x="6" y="67.5"/>
- <line x="33" y="52"/>
- </path>
- <stroke/>
- <strokecolor color="#8a8a8a"/>
- <path>
- <move x="6" y="22.5"/>
- <line x="33" y="38.3"/>
- </path>
- <stroke/>
- <strokecolor color="#808080"/>
- <path>
- <move x="22.5" y="6"/>
- <line x="38" y="33"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Mail" h="60" w="100" aspect="1">
- <foreground>
- <fillcolor color="#ffffff"/>
- <strokecolor color="#2c457e"/>
- <strokewidth width="2"/>
- <linejoin join="round"/>
- <linecap cap="round"/>
- <rect x="0" y="0" w="100" h="60"/>
- <fillstroke/>
- <path>
- <move x="0" y="0"/>
- <line x="50" y="30"/>
- <line x="100" y="0"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Map" h="251" w="251" aspect="1">
- <foreground>
- <strokecolor color="strokeColor2" default="#000000"/>
- <fillcolor color="fillColor2" default="#ffffff"/>
- <rect x="0" y="0" w="250" h="250"/>
- <fillstroke/>
- <strokecolor color="strokeColor3" default="#d87146"/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="15" y="0"/>
- <line x="12.834" y="4.167"/>
- <line x="6.001" y="0.167"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="5.667" y="18.167"/>
- <line x="13.834" y="18.5"/>
- <line x="13.334" y="24.667"/>
- <line x="21.501" y="26.5"/>
- <line x="18.834" y="46.5"/>
- <line x="9.834" y="44.5"/>
- <line x="9.167" y="50.334"/>
- <line x="1.334" y="49.334"/>
- <line x="3.334" y="40.834"/>
- <line x="0.334" y="40"/>
- <line x="0.334" y="29"/>
- <line x="5.334" y="25"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="21.834" y="12"/>
- <line x="19.167" y="9.167"/>
- <line x="23.334" y="0.5"/>
- <line x="39.334" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="25.834" y="17.5"/>
- <line x="42.001" y="7"/>
- <line x="46.167" y="14.834"/>
- <line x="28.501" y="25.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="54.667" y="18"/>
- <line x="60.501" y="27.667"/>
- <line x="28.167" y="44.667"/>
- <line x="29.834" y="40.5"/>
- <line x="30.167" y="32.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="47.667" y="3"/>
- <line x="53.334" y="12"/>
- <line x="57.834" y="9.167"/>
- <line x="66.667" y="24.667"/>
- <line x="82.834" y="17"/>
- <line x="75.001" y="0.334"/>
- <line x="51.834" y="0.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="89.667" y="14.667"/>
- <line x="82.834" y="0.167"/>
- <line x="101.667" y="0.167"/>
- <line x="114.001" y="7.167"/>
- <line x="101.167" y="19.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="95.834" y="24.5"/>
- <line x="93.667" y="24"/>
- <line x="89.501" y="14.167"/>
- <line x="97.834" y="11.5"/>
- <line x="102.501" y="18.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="121.167" y="2.834"/>
- <line x="118.334" y="0.334"/>
- <line x="123.334" y="0.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="128.001" y="9.334"/>
- <line x="124.667" y="6.334"/>
- <line x="131.001" y="0.167"/>
- <line x="138.834" y="0.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="157.834" y="5.167"/>
- <line x="152.501" y="0.167"/>
- <line x="162.501" y="0.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="164.167" y="9.5"/>
- <line x="172.501" y="1.334"/>
- <line x="175.167" y="2.334"/>
- <line x="171.834" y="12.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="146.667" y="27.167"/>
- <line x="161.167" y="13.667"/>
- <line x="171.167" y="18.834"/>
- <line x="163.167" y="41.167"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="153.334" y="21"/>
- <line x="161.167" y="14"/>
- <line x="171.167" y="18.834"/>
- <line x="167.501" y="28.5"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="177.501" y="16.5"/>
- <line x="180.501" y="7.167"/>
- <line x="191.501" y="13.5"/>
- <line x="181.501" y="23.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="200.167" y="6"/>
- <line x="192.834" y="0"/>
- <line x="206.001" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="207.001" y="6.334"/>
- <line x="212.167" y="1.667"/>
- <line x="226.001" y="10.834"/>
- <line x="220.167" y="15.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="224.001" y="23.167"/>
- <line x="232.167" y="15.667"/>
- <line x="250.001" y="27.834"/>
- <line x="249.834" y="41.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="231.834" y="6.167"/>
- <line x="222.667" y="0.334"/>
- <line x="233.667" y="0.167"/>
- <line x="235.667" y="2"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="243.834" y="5.5"/>
- <line x="248.834" y="0.334"/>
- <line x="250.334" y="0.5"/>
- <line x="250.001" y="10.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="184.334" y="28.834"/>
- <line x="202.667" y="10"/>
- <line x="216.334" y="19.334"/>
- <line x="189.834" y="41"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="176.001" y="30.167"/>
- <line x="185.667" y="46.167"/>
- <line x="176.501" y="53.334"/>
- <line x="168.834" y="45.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="204.501" y="38.667"/>
- <line x="217.334" y="27.834"/>
- <line x="227.501" y="35"/>
- <line x="221.001" y="49"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="225.667" y="52.334"/>
- <line x="232.334" y="38"/>
- <line x="247.501" y="48.167"/>
- <line x="232.501" y="57.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="238.501" y="60.667"/>
- <line x="250.167" y="53.334"/>
- <line x="249.834" y="68.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="225.501" y="72.5"/>
- <line x="232.501" y="66.167"/>
- <line x="248.334" y="76.334"/>
- <line x="239.834" y="84.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="199.001" y="60"/>
- <line x="203.167" y="47.5"/>
- <line x="227.501" y="62.5"/>
- <line x="213.001" y="71.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="212.501" y="87.5"/>
- <line x="215.001" y="80.834"/>
- <line x="213.001" y="77.167"/>
- <line x="220.834" y="75.834"/>
- <line x="235.834" y="88.834"/>
- <line x="229.001" y="98.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="189.667" y="52.667"/>
- <line x="198.167" y="43.5"/>
- <line x="199.834" y="44.5"/>
- <line x="199.334" y="47.334"/>
- <line x="194.667" y="57"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="165.334" y="69.5"/>
- <line x="186.167" y="55.834"/>
- <line x="191.001" y="60.167"/>
- <line x="177.667" y="72.334"/>
- <line x="181.667" y="77.167"/>
- <line x="176.334" y="81.667"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="183.334" y="73.334"/>
- <line x="191.834" y="64"/>
- <line x="199.001" y="69.834"/>
- <line x="190.501" y="79.5"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="199.501" y="78.334"/>
- <line x="203.334" y="73.667"/>
- <line x="208.334" y="78.334"/>
- <line x="207.501" y="84.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="196.834" y="98.5"/>
- <line x="181.001" y="85.834"/>
- <line x="185.501" y="82.334"/>
- <line x="190.834" y="86.834"/>
- <line x="195.001" y="83.167"/>
- <line x="205.501" y="89.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="201.834" y="101"/>
- <line x="210.001" y="93"/>
- <line x="225.167" y="104.5"/>
- <line x="223.334" y="108.334"/>
- <line x="217.834" y="110"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="247.667" y="88.667"/>
- <line x="241.167" y="98.334"/>
- <line x="250.167" y="103"/>
- <line x="250.334" y="90"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="240.501" y="118.5"/>
- <line x="243.667" y="114"/>
- <line x="250.167" y="116.167"/>
- <line x="249.667" y="123.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="233.667" y="134.834"/>
- <line x="237.167" y="124.667"/>
- <line x="247.334" y="128.334"/>
- <line x="241.667" y="136.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="222.001" y="168.667"/>
- <line x="231.334" y="142.834"/>
- <line x="238.834" y="142.834"/>
- <line x="249.334" y="147.167"/>
- <line x="237.167" y="177"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="242.501" y="180"/>
- <line x="246.001" y="171.167"/>
- <line x="250.001" y="172.334"/>
- <line x="250.001" y="184"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="248.334" y="166.167"/>
- <line x="250.167" y="161.334"/>
- <line x="250.167" y="166.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="214.001" y="193.167"/>
- <line x="220.334" y="176.667"/>
- <line x="250.001" y="192.167"/>
- <line x="249.834" y="211.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="206.667" y="215.167"/>
- <line x="212.167" y="200.5"/>
- <line x="250.167" y="220"/>
- <line x="250.001" y="235.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="202.501" y="229.834"/>
- <line x="205.001" y="223.167"/>
- <line x="250.334" y="243.167"/>
- <line x="250.334" y="246"/>
- <line x="247.001" y="247.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="200.667" y="236.167"/>
- <line x="231.667" y="248.334"/>
- <line x="230.834" y="249.834"/>
- <line x="207.167" y="249.834"/>
- <line x="196.834" y="246.5"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="179.334" y="247.834"/>
- <line x="178.001" y="250.5"/>
- <line x="153.834" y="249.834"/>
- <line x="157.501" y="239.5"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="185.501" y="242"/>
- <line x="164.001" y="233"/>
- <line x="168.667" y="223.334"/>
- <line x="189.334" y="232.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="191.167" y="225.5"/>
- <line x="173.667" y="217.167"/>
- <line x="177.501" y="210.167"/>
- <line x="193.834" y="217.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="190.834" y="188.5"/>
- <line x="202.001" y="195.167"/>
- <line x="195.667" y="211.834"/>
- <line x="180.834" y="205.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="197.834" y="185"/>
- <line x="205.667" y="168.667"/>
- <line x="210.501" y="171.834"/>
- <line x="204.167" y="188.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="213.167" y="148.334"/>
- <line x="217.167" y="150.167"/>
- <line x="212.334" y="164.5"/>
- <line x="207.667" y="162.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="206.834" y="127.167"/>
- <line x="212.001" y="116.5"/>
- <line x="226.334" y="122.334"/>
- <line x="223.001" y="132.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="202.501" y="136.834"/>
- <line x="204.834" y="132"/>
- <line x="220.667" y="138.667"/>
- <line x="218.334" y="144.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="200.001" y="142"/>
- <line x="204.001" y="144"/>
- <line x="198.667" y="156.334"/>
- <line x="194.001" y="154.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="198.334" y="133.5"/>
- <line x="189.167" y="151.334"/>
- <line x="183.334" y="148.167"/>
- <line x="192.501" y="131"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="206.667" y="115.167"/>
- <line x="200.167" y="128.334"/>
- <line x="194.834" y="126"/>
- <line x="200.667" y="113"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="195.001" y="110.5"/>
- <line x="177.334" y="145.334"/>
- <line x="168.167" y="140.334"/>
- <line x="190.334" y="108.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="162.001" y="136.834"/>
- <line x="157.167" y="134.167"/>
- <line x="179.667" y="104.5"/>
- <line x="183.501" y="105.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="173.334" y="99"/>
- <line x="153.167" y="127.667"/>
- <line x="147.167" y="116.834"/>
- <line x="167.834" y="94.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="162.334" y="89.834"/>
- <line x="142.001" y="112.167"/>
- <line x="137.001" y="114.334"/>
- <line x="124.501" y="117.167"/>
- <line x="122.667" y="112.834"/>
- <line x="128.834" y="109.5"/>
- <line x="128.334" y="106.167"/>
- <line x="155.667" y="82.834"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="134.501" y="115.167"/>
- <line x="124.667" y="117.334"/>
- <line x="122.667" y="112.667"/>
- <line x="129.001" y="109.5"/>
- <line x="128.667" y="106.167"/>
- <line x="130.001" y="104.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="126.834" y="123.834"/>
- <line x="140.834" y="120.667"/>
- <line x="147.667" y="134.834"/>
- <line x="133.501" y="140.834"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="136.834" y="147.667"/>
- <line x="152.501" y="140.167"/>
- <line x="157.667" y="143.5"/>
- <line x="142.834" y="163.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="145.334" y="172.834"/>
- <line x="164.001" y="146.334"/>
- <line x="174.167" y="151.5"/>
- <line x="151.667" y="189"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="155.501" y="194.834"/>
- <line x="164.334" y="182"/>
- <line x="180.834" y="190"/>
- <line x="173.001" y="201.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="167.667" y="177.334"/>
- <line x="180.167" y="156.334"/>
- <line x="195.167" y="163.334"/>
- <line x="184.501" y="184.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="123.667" y="15.334"/>
- <line x="138.167" y="28.834"/>
- <line x="133.834" y="32.667"/>
- <line x="122.501" y="23"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="142.834" y="34"/>
- <line x="169.667" y="58.5"/>
- <line x="163.167" y="62.167"/>
- <line x="139.334" y="38.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="118.334" y="12.667"/>
- <line x="116.667" y="25"/>
- <line x="128.834" y="37.667"/>
- <line x="121.334" y="44"/>
- <line x="106.334" y="23.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="134.167" y="42.834"/>
- <line x="159.667" y="67.5"/>
- <line x="146.667" y="78.834"/>
- <line x="126.167" y="51.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="121.334" y="56.334"/>
- <line x="141.501" y="83.667"/>
- <line x="126.834" y="96.334"/>
- <line x="115.667" y="92.834"/>
- <line x="107.501" y="71.834"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="122.501" y="99.667"/>
- <line x="116.834" y="98"/>
- <line x="115.501" y="92.167"/>
- <line x="121.834" y="88.334"/>
- <line x="127.334" y="96.167"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="94.167" y="56.667"/>
- <line x="107.001" y="89.167"/>
- <line x="100.834" y="94.834"/>
- <line x="76.334" y="89.5"/>
- <line x="78.001" y="76"/>
- <line x="84.334" y="71.834"/>
- <line x="80.501" y="63.834"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="106.667" y="87.5"/>
- <line x="108.501" y="92"/>
- <line x="108.334" y="97.5"/>
- <line x="100.667" y="94.834"/>
- <line x="99.334" y="94.667"/>
- <line x="101.167" y="87.167"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="105.334" y="63.167"/>
- <line x="101.167" y="52.334"/>
- <line x="113.001" y="45.834"/>
- <line x="116.001" y="50.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="99.667" y="45.834"/>
- <line x="95.001" y="35.334"/>
- <line x="101.667" y="30.167"/>
- <line x="108.667" y="40"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="93.501" y="49.334"/>
- <line x="77.167" y="58.5"/>
- <line x="73.001" y="47.334"/>
- <line x="88.667" y="39.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="87.667" y="33"/>
- <line x="71.001" y="42"/>
- <line x="66.501" y="33.167"/>
- <line x="84.001" y="24.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="49.167" y="53"/>
- <line x="44.001" y="45"/>
- <line x="60.667" y="36.834"/>
- <line x="65.167" y="44"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="62.334" y="52.167"/>
- <line x="67.001" y="60.334"/>
- <line x="58.167" y="65.167"/>
- <line x="53.334" y="61.667"/>
- <line x="53.834" y="56.334"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="40.001" y="47.667"/>
- <line x="53.001" y="68.834"/>
- <line x="44.667" y="73.834"/>
- <line x="30.167" y="52.667"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="47.667" y="77.834"/>
- <line x="56.167" y="72.167"/>
- <line x="72.501" y="75.667"/>
- <line x="69.167" y="88.834"/>
- <line x="56.667" y="91"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="119.667" y="186.167"/>
- <line x="138.667" y="173.667"/>
- <line x="156.667" y="223.5"/>
- <line x="153.167" y="227.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="111.834" y="182.834"/>
- <line x="141.167" y="216.667"/>
- <line x="131.834" y="215.5"/>
- <line x="106.834" y="186.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="142.834" y="225"/>
- <line x="152.001" y="232.167"/>
- <line x="144.667" y="249.834"/>
- <line x="105.834" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor5" default="#b2d8ad"/>
- <path>
- <move x="16.667" y="218"/>
- <line x="36.834" y="240.167"/>
- <line x="25.334" y="250.334"/>
- <line x="7.334" y="250"/>
- <line x="8.167" y="225"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="0" y="232.5"/>
- <line x="9.667" y="223.667"/>
- <line x="23.001" y="238.167"/>
- <line x="9.334" y="250.167"/>
- <line x="0.167" y="250.5"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor5" default="#b2d8ad"/>
- <path>
- <move x="13.501" y="214.667"/>
- <line x="0.334" y="225.167"/>
- <line x="0.334" y="210.5"/>
- <line x="6.167" y="206.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="26.667" y="203.667"/>
- <line x="22.167" y="198"/>
- <line x="42.501" y="181.167"/>
- <line x="42.167" y="176.5"/>
- <line x="53.667" y="167.5"/>
- <line x="59.001" y="168.834"/>
- <line x="61.667" y="173"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="25.667" y="174.334"/>
- <line x="36.001" y="186.5"/>
- <line x="30.167" y="190.834"/>
- <line x="19.334" y="179.167"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor5" default="#b2d8ad"/>
- <path>
- <move x="33.167" y="168.667"/>
- <line x="12.167" y="185.5"/>
- <line x="0.167" y="170"/>
- <line x="19.334" y="153.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="62.667" y="160"/>
- <line x="68.667" y="155.334"/>
- <line x="75.167" y="162.5"/>
- <line x="66.001" y="169.5"/>
- <line x="62.501" y="166"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="25.001" y="56"/>
- <line x="50.834" y="95.167"/>
- <line x="46.334" y="99.167"/>
- <line x="53.334" y="108.5"/>
- <line x="50.834" y="110.5"/>
- <line x="30.334" y="81.834"/>
- <line x="33.667" y="79.667"/>
- <line x="24.501" y="65.834"/>
- <line x="15.667" y="71.5"/>
- <line x="21.834" y="82.834"/>
- <line x="18.167" y="85"/>
- <line x="12.001" y="77.334"/>
- <line x="13.501" y="68"/>
- <line x="22.167" y="62.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="22.334" y="69.834"/>
- <line x="28.167" y="77.5"/>
- <line x="24.667" y="80.167"/>
- <line x="19.667" y="71.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="17.667" y="91.334"/>
- <line x="27.001" y="84.667"/>
- <line x="41.834" y="104.667"/>
- <line x="37.667" y="107.5"/>
- <line x="25.167" y="92.834"/>
- <line x="20.834" y="95"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="21.334" y="122.834"/>
- <line x="19.667" y="121.5"/>
- <line x="21.334" y="112.334"/>
- <line x="33.001" y="113"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="17.167" y="121.334"/>
- <line x="14.834" y="121.667"/>
- <line x="9.334" y="113.334"/>
- <line x="16.834" y="113.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="5.667" y="117.334"/>
- <line x="13.001" y="123.667"/>
- <line x="11.167" y="126.167"/>
- <line x="4.501" y="122.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="7.334" y="108.5"/>
- <line x="8.834" y="94.834"/>
- <line x="14.334" y="94.834"/>
- <line x="17.167" y="98.5"/>
- <line x="15.834" y="109.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="10.501" y="81.667"/>
- <line x="15.167" y="86.667"/>
- <line x="10.167" y="88.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="4.001" y="92.5"/>
- <line x="0.334" y="108.834"/>
- <line x="0.667" y="92"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="48.667" y="114.834"/>
- <line x="23.501" y="133.667"/>
- <line x="25.334" y="136"/>
- <line x="50.167" y="117.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="20.167" y="136.167"/>
- <line x="21.334" y="137.667"/>
- <line x="9.167" y="147.167"/>
- <line x="8.501" y="145.667"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="39.834" y="134.167"/>
- <curve x1="39.834" y1="134.167" x2="54.501" y2="121.667" x3="54.501" y3="121.667"/>
- <curve x1="54.501" y1="121.667" x2="69.501" y2="137.834" x3="69.501" y3="137.834"/>
- <curve x1="69.501" y1="137.834" x2="54.334" y2="151.667" x3="54.334" y3="151.667"/>
- <curve x1="54.334" y1="151.667" x2="51.334" y2="149.167" x3="51.334" y3="149.167"/>
- <curve x1="51.334" y1="149.167" x2="42.501" y2="138.167" x3="42.501" y3="138.167"/>
- <curve x1="42.501" y1="138.167" x2="39.667" y2="134.334" x3="39.667" y3="134.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="36.667" y="137.167"/>
- <curve x1="36.667" y1="137.167" x2="39.667" y2="141.167" x3="39.667" y3="141.167"/>
- <curve x1="39.667" y1="141.167" x2="46.834" y2="152.5" x3="46.834" y3="152.5"/>
- <curve x1="46.834" y1="152.5" x2="49.667" y2="155.834" x3="49.667" y3="155.834"/>
- <curve x1="49.667" y1="155.834" x2="35.834" y2="167.667" x3="35.834" y3="167.667"/>
- <curve x1="35.834" y1="167.667" x2="21.501" y2="149.834" x3="21.501" y3="149.834"/>
- <curve x1="21.501" y1="149.834" x2="37.001" y2="137.167" x3="37.001" y3="137.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="4.167" y="127.834"/>
- <curve x1="4.167" y1="127.834" x2="6.001" y2="128.667" x3="6.001" y3="128.667"/>
- <curve x1="6.001" y1="128.667" x2="11.667" y2="137.667" x3="11.667" y3="137.834"/>
- <curve x1="11.667" y1="138" x2="0.667" y2="146.834" x3="0.667" y3="146.834"/>
- <curve x1="0.667" y1="146.834" x2="0.334" y2="131.334" x3="0.334" y3="131.334"/>
- <curve x1="0.334" y1="131.334" x2="4.167" y2="128" x3="4.167" y3="128"/>
- <close/>
- </path>
- <fillstroke/>
- <ellipse x="13.834" y="126.667" w="6.5" h="6.667"/>
- <fillstroke/>
- <path>
- <move x="23.834" y="125.167"/>
- <line x="44.501" y="109.667"/>
- <line x="46.834" y="113.167"/>
- <line x="26.501" y="128.834"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="4.501" y="88.167"/>
- <line x="6.667" y="79.334"/>
- <arc rx="4" ry="9" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="0.334" y="78.167"/>
- <line x="0.334" y="87.5"/>
- <line x="4.334" y="88.334"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0.667" y="65.667"/>
- <line x="11.001" y="67.5"/>
- <line x="9.334" y="76"/>
- <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="0.501" y="71"/>
- <line x="0.501" y="65.334"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor4" default="#d87146"/>
- <path>
- <move x="62.667" y="98.5"/>
- <arc rx="50" ry="50" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="84.834" y="98"/>
- <arc rx="50" ry="50" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="103.167" y="103.834"/>
- <arc rx="15" ry="15" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="116.334" y="117.667"/>
- <line x="128.001" y="143.834"/>
- <line x="115.834" y="149"/>
- <line x="122.501" y="166"/>
- <line x="134.334" y="161.667"/>
- <line x="138.834" y="174"/>
- <line x="122.667" y="184.167"/>
- <line x="111.667" y="172"/>
- <line x="57.334" y="223.834"/>
- <line x="42.167" y="207.667"/>
- <line x="55.167" y="195"/>
- <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="76.501" y="189"/>
- <line x="73.334" y="186.5"/>
- <line x="79.334" y="181.667"/>
- <line x="81.334" y="183.834"/>
- <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="88.167" y="163.667"/>
- <line x="73.834" y="150.667"/>
- <line x="82.834" y="141.667"/>
- <line x="60.334" y="115"/>
- <line x="68.501" y="106.667"/>
- <line x="62.667" y="98.501"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor3" default="#ffca8c"/>
- <path>
- <move x="247.567" y="138.167"/>
- <line x="250.167" y="133.967"/>
- <line x="250.167" y="139.367"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor5" default="#b2d8ad"/>
- <path>
- <move x="84.767" y="207.767"/>
- <curve x1="84.767" y1="207.767" x2="100.967" y2="192.767" x3="100.967" y3="192.767"/>
- <curve x1="100.967" y1="192.767" x2="109.367" y2="200.367" x3="109.367" y3="200.367"/>
- <curve x1="109.367" y1="200.367" x2="89.967" y2="210.167" x3="89.967" y3="210.167"/>
- <curve x1="89.967" y1="210.167" x2="84.767" y2="207.967" x3="84.767" y3="207.967"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="81.767" y="210.367"/>
- <line x="88.167" y="212.367"/>
- <arc rx="10" ry="10" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="88.167" y="226.367"/>
- <line x="81.567" y="227.967"/>
- <line x="72.367" y="219.967"/>
- <line x="81.767" y="210.367"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="71.167" y="220.767"/>
- <arc rx="28" ry="35" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="101.567" y="230.567"/>
- <line x="103.167" y="233.967"/>
- <arc rx="20" ry="30" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="83.767" y="239.367"/>
- <line x="85.967" y="235.767"/>
- <line x="75.767" y="232.767"/>
- <line x="69.167" y="222.767"/>
- <line x="71.167" y="220.767"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="66.967" y="224.367"/>
- <curve x1="66.967" y1="224.367" x2="73.367" y2="232.967" x3="73.367" y3="232.967"/>
- <curve x1="73.367" y1="232.967" x2="70.967" y2="236.167" x3="70.967" y3="236.167"/>
- <curve x1="70.967" y1="236.167" x2="79.567" y2="242.167" x3="79.567" y3="242.167"/>
- <curve x1="79.567" y1="242.167" x2="76.967" y2="245.367" x3="76.967" y3="245.367"/>
- <curve x1="76.967" y1="245.367" x2="57.567" y2="233.767" x3="57.567" y3="233.767"/>
- <curve x1="57.567" y1="233.767" x2="66.767" y2="224.167" x3="66.767" y3="224.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="82.167" y="242.167"/>
- <curve x1="82.167" y1="242.167" x2="88.167" y2="243.567" x3="88.167" y3="243.567"/>
- <curve x1="88.167" y1="243.567" x2="87.767" y2="249.567" x3="87.767" y3="249.567"/>
- <curve x1="87.767" y1="249.567" x2="76.167" y2="250.367" x3="76.167" y3="250.367"/>
- <curve x1="76.167" y1="250.367" x2="82.167" y2="242.367" x3="82.167" y3="242.367"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="112.367" y="204.367"/>
- <curve x1="112.367" y1="204.367" x2="115.767" y2="207.567" x3="115.767" y3="207.567"/>
- <curve x1="115.767" y1="207.567" x2="104.167" y2="226.167" x3="104.167" y3="226.167"/>
- <curve x1="104.167" y1="226.167" x2="92.967" y2="222.967" x3="92.967" y3="222.967"/>
- <curve x1="92.967" y1="222.967" x2="96.767" y2="210.767" x3="96.767" y3="210.767"/>
- <curve x1="96.767" y1="210.767" x2="112.367" y2="204.367" x3="112.367" y3="204.367"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="118.767" y="211.767"/>
- <curve x1="118.767" y1="211.767" x2="122.567" y2="216.367" x3="122.567" y3="216.367"/>
- <curve x1="122.567" y1="216.367" x2="105.767" y2="233.567" x3="105.767" y3="233.567"/>
- <curve x1="105.767" y1="233.567" x2="104.567" y2="230.567" x3="104.567" y3="230.567"/>
- <curve x1="104.567" y1="230.567" x2="118.567" y2="211.767" x3="118.567" y3="211.767"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="125.767" y="218.167"/>
- <line x="134.167" y="221.767"/>
- <line x="95.967" y="250.167"/>
- <line x="90.367" y="249.967"/>
- <line x="90.967" y="244.167"/>
- <arc rx="20" ry="20" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="103.967" y="239.167"/>
- <arc rx="80" ry="80" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="125.767" y="218.167"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="fillColor6" default="#ffffff"/>
- <path>
- <move x="112.334" y="122.834"/>
- <line x="119.667" y="134.334"/>
- <line x="114.834" y="140.334"/>
- <line x="104.834" y="130.167"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="69.167" y="111.5"/>
- <line x="79.167" y="102.667"/>
- <line x="93.001" y="116.834"/>
- <line x="82.001" y="127"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="98.834" y="133.834"/>
- <line x="107.334" y="142.167"/>
- <line x="101.167" y="148.5"/>
- <line x="93.167" y="139"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="strokeColor2" default="#000000"/>
- <strokewidth width="2"/>
- <rect x="0.167" y="0.167" w="250" h="250"/>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Search Box" h="44" w="350" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#fafafa"/>
- <roundrect x="0" y="0" w="350" h="44" arcsize="6.4"/>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <rect x="10" y="10" w="250" h="24"/>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <strokewidth width="4"/>
- <fillcolor color="none"/>
- <ellipse x="14" y="14" w="10" h="10"/>
- <stroke/>
- <linecap cap="round"/>
- <path>
- <move x="27" y="30"/>
- <line x="22" y="23"/>
- </path>
- <stroke/>
- <fontsize size="14"/>
- <fontstyle style="1"/>
- <fontcolor color="#2c457e"/>
- <text str="Search" x="272" y="22" valign="middle" align="center"/>
- </foreground>
- </shape>
- <shape name="Security" h="96.846" w="78" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <strokecolor color="#000000"/>
- <strokewidth width="2"/>
- <fillcolor color="#ed9d01"/>
- <roundrect x="0" y="38.346" w="78" h="58.5" arcsize="7.479"/>
- <fillstroke/>
- <fillcolor color="#929da8"/>
- <path>
- <move x="7.5" y="38.346"/>
- <line x="7.5" y="27.346"/>
- <arc rx="31.7" ry="30.8" x-axis-rotation="0" large-arc-flag="0" sweep-flag="1" x="70.5" y="27.346"/>
- <line x="70.5" y="38.346"/>
- <line x="56.5" y="38.346"/>
- <line x="56.5" y="27.346"/>
- <arc rx="18" ry="18" x-axis-rotation="0" large-arc-flag="0" sweep-flag="0" x="21.5" y="27.346"/>
- <line x="21.5" y="38.346"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="none"/>
- <strokewidth width="1"/>
- <fillcolor color="#ffc800"/>
- <roundrect x="9" y="46.846" w="60" h="42" arcsize="10.12"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="4"/>
- <fillcolor color="none"/>
- <path>
- <move x="39" y="76.846"/>
- <line x="39" y="68.846"/>
- </path>
- <stroke/>
- <strokewidth width="2"/>
- <fillcolor color="#000000"/>
- <ellipse x="34" y="58.846" w="10" h="10"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Sign In" h="350" w="250" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#fafafa"/>
- <linecap cap="round"/>
- <roundrect x="0" y="0" w="250" h="350" arcsize="1.71"/>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <strokewidth width="3"/>
- <fillcolor color="none"/>
- <path>
- <move x="10" y="50"/>
- <line x="240" y="50"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="1"/>
- <fillcolor color="#2c457e"/>
- <roundrect x="15" y="200" w="81" h="25" arcsize="7.85"/>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <rect x="15" y="90" w="180" h="23"/>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <strokewidth width="3"/>
- <fillcolor color="none"/>
- <path>
- <move x="10" y="260"/>
- <line x="240" y="260"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="1"/>
- <fillcolor color="#2c457e"/>
- <roundrect x="15" y="300" w="81" h="25" arcsize="7.85"/>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <rect x="15" y="150" w="180" h="23"/>
- <fillstroke/>
- <fillcolor color="none"/>
- <roundrect x="0" y="0" w="250" h="350" arcsize="1.71"/>
- <stroke/>
- <fillcolor color="#000000"/>
- <path>
- <ellipse w="10" h="10" x="20" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="35" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="50" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="65" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="80" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="95" y="157"/>
- </path>
- <fillstroke/>
- <fontcolor color="#2c457e"/>
- <fontsize size="14"/>
- <fontstyle style="1"/>
- <text str="Sign In" x="15" y="35" align="left" valign="middle"/>
- <fontcolor color="#ffffff"/>
- <text str="SIGN IN" x="54" y="212" align="center" valign="middle"/>
- <text str="SIGN UP" x="54" y="313" align="center" valign="middle"/>
- <fontcolor color="#000000"/>
- <fontsize size="12"/>
- <text str="User Name:" x="15" y="80" align="left" valign="middle"/>
- <text str="Password:" x="15" y="140" align="left" valign="middle"/>
- <text str="New User" x="15" y="280" align="left" valign="middle"/>
- <fontstyle style="0"/>
- <text str="johndoe" x="20" y="100" align="left" valign="middle"/>
- <fontstyle style="2"/>
- <fontcolor color="#0000ff"/>
- <text str="Forgot password?" x="20" y="240" align="left" valign="middle"/>
- <strokecolor color="#0000ff"/>
- <path>
- <move x="18" y="247"/>
- <line x="115" y="247"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape name="Sign Up" h="270" w="400" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#fafafa"/>
- <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <strokewidth width="3"/>
- <fillcolor color="none"/>
- <linecap cap="round"/>
- <path>
- <move x="10" y="50"/>
- <line x="390" y="50"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="1"/>
- <fillcolor color="#2c457e"/>
- <linecap cap="butt"/>
- <roundrect x="300" y="229" w="81" h="25" arcsize="7.852"/>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <rect x="150" y="70" w="180" h="23"/>
- <fillstroke/>
- <rect x="150" y="110" w="180" h="23"/>
- <fillstroke/>
- <fillcolor color="none"/>
- <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
- <stroke/>
- <fillcolor color="#ffffff"/>
- <rect x="150" y="150" w="180" h="23"/>
- <fillstroke/>
- <rect x="150" y="190" w="180" h="23"/>
- <fillstroke/>
- <rect x="150" y="235" w="10" h="10"/>
- <fillstroke/>
- <fillcolor color="#000000"/>
- <path>
- <ellipse w="10" h="10" x="160" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="175" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="190" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="205" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="220" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="235" y="157"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="160" y="197"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="175" y="197"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="190" y="197"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="205" y="197"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="220" y="197"/>
- </path>
- <fillstroke/>
- <path>
- <ellipse w="10" h="10" x="235" y="197"/>
- </path>
- <fillstroke/>
- <fontcolor color="#2c457e"/>
- <fontsize size="14"/>
- <fontstyle style="1"/>
- <text str="Sign Up" x="15" y="35" align="left" valign="middle"/>
- <fontcolor color="#ffffff"/>
- <text str="SIGN UP" x="340" y="241" align="center" valign="middle"/>
- <fontcolor color="#000000"/>
- <fontsize size="12"/>
- <text str="Login name:" x="140" y="82" align="right" valign="middle"/>
- <text str="E-mail:" x="140" y="122" align="right" valign="middle"/>
- <text str="Password:" x="140" y="162" align="right" valign="middle"/>
- <text str="Confirm password:" x="140" y="202" align="right" valign="middle"/>
- <fontstyle style="0"/>
- <text str="johndoe" x="155" y="82" align="left" valign="middle"/>
- <text str="jdoe@default.net" x="155" y="122" align="left" valign="middle"/>
- <fontstyle style="3"/>
- <fontsize size="13"/>
- <text str="Remember me" x="165" y="240" align="left" valign="middle"/>
- </foreground>
- </shape>
- <shape name="Star Rating" h="33.75" w="213.5" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <strokecolor color="#999999"/>
- <fillcolor color="#ffff00"/>
- <path>
- <move x="0" y="12.284"/>
- <line x="12.74" y="12.284"/>
- <line x="16.625" y="0"/>
- <line x="20.511" y="12.284"/>
- <line x="33.25" y="12.284"/>
- <line x="23.101" y="20.51"/>
- <line x="27.126" y="33.5"/>
- <line x="16.625" y="25.46"/>
- <line x="6.125" y="33.5"/>
- <line x="10.15" y="20.51"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="45.5" y="12.534"/>
- <line x="58.24" y="12.534"/>
- <line x="62.125" y="0.25"/>
- <line x="66.01" y="12.534"/>
- <line x="78.75" y="12.534"/>
- <line x="68.601" y="20.76"/>
- <line x="72.626" y="33.75"/>
- <line x="62.125" y="25.71"/>
- <line x="51.625" y="33.75"/>
- <line x="55.65" y="20.76"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="90.25" y="12.534"/>
- <line x="102.99" y="12.534"/>
- <line x="106.875" y="0.25"/>
- <line x="110.76" y="12.534"/>
- <line x="123.5" y="12.534"/>
- <line x="113.351" y="20.76"/>
- <line x="117.376" y="33.75"/>
- <line x="106.875" y="25.71"/>
- <line x="96.375" y="33.75"/>
- <line x="100.4" y="20.76"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="135.25" y="12.534"/>
- <line x="147.99" y="12.534"/>
- <line x="151.875" y="0.25"/>
- <line x="155.761" y="12.534"/>
- <line x="168.5" y="12.534"/>
- <line x="158.35" y="20.76"/>
- <line x="162.376" y="33.75"/>
- <line x="151.875" y="25.71"/>
- <line x="141.375" y="33.75"/>
- <line x="145.4" y="20.76"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <path>
- <move x="180.25" y="12.284"/>
- <line x="192.99" y="12.284"/>
- <line x="196.875" y="0"/>
- <line x="200.761" y="12.284"/>
- <line x="213.5" y="12.284"/>
- <line x="203.35" y="20.51"/>
- <line x="207.376" y="33.5"/>
- <line x="196.875" y="25.46"/>
- <line x="186.375" y="33.5"/>
- <line x="190.4" y="20.51"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Vertical Splitter" h="250" w="24" aspect="1">
- <foreground>
- <strokecolor color="none"/>
- <fillcolor color="#fafafa"/>
- <path>
- <move x="24" y="0"/>
- <line x="0" y="0"/>
- <line x="0" y="250"/>
- <line x="24" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <fillcolor color="none"/>
- <path>
- <move x="24" y="0"/>
- <line x="24" y="250"/>
- </path>
- <stroke/>
- <path>
- <move x="0" y="0"/>
- <line x="0" y="250"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <fillcolor color="#2c457e"/>
- <path>
- <move x="16" y="95"/>
- <line x="8" y="95"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="5" y="98"/>
- <line x="5" y="117"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="8" y="120"/>
- <line x="16" y="120"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="19" y="117"/>
- <line x="19" y="98"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="16" y="95"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="16" y="130"/>
- <line x="8" y="130"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="5" y="133"/>
- <line x="5" y="152"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="8" y="155"/>
- <line x="16" y="155"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="19" y="152"/>
- <line x="19" y="133"/>
- <arc rx="3" ry="3" x-axis-rotation="90" large-arc-flag="0" sweep-flag="0" x="16" y="130"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#ffffff"/>
- <fillcolor color="#ffffff"/>
- <linejoin join="round"/>
- <path>
- <move x="9" y="113"/>
- <line x="9" y="102"/>
- <line x="16" y="107.5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="16" y="148"/>
- <line x="16" y="137"/>
- <line x="9" y="142.5"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape name="Video" h="270" w="400" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <fillcolor color="#fafafa"/>
- <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
- <fillstroke/>
- <strokecolor color="#2c457e"/>
- <strokewidth width="3"/>
- <fillcolor color="none"/>
- <linecap cap="round"/>
- <path>
- <move x="10" y="20"/>
- <line x="390" y="20"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="1"/>
- <linecap cap="butt"/>
- <roundrect x="0" y="0" w="400" h="270" arcsize="1.551"/>
- <stroke/>
- <fillcolor color="#999999"/>
- <linejoin join="round"/>
- <rect x="10" y="30" w="380" h="200"/>
- <fillstroke/>
- <strokewidth width="4"/>
- <fillcolor color="#cccccc"/>
- <path>
- <move x="180" y="110"/>
- <line x="220" y="130"/>
- <line x="180" y="150"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#999999"/>
- <strokewidth width="1"/>
- <fillcolor color="#999999"/>
- <linejoin join="miter"/>
- <ellipse x="10" y="235" w="30" h="30"/>
- <fillstroke/>
- <ellipse x="45" y="235" w="30" h="30"/>
- <fillstroke/>
- <ellipse x="80" y="235" w="30" h="30"/>
- <fillstroke/>
- <ellipse x="115" y="235" w="30" h="30"/>
- <fillstroke/>
- <ellipse x="150" y="235" w="30" h="30"/>
- <fillstroke/>
- <strokewidth width="4"/>
- <fillcolor color="none"/>
- <linecap cap="round"/>
- <path>
- <move x="190" y="250"/>
- <line x="320" y="250"/>
- </path>
- <stroke/>
- <strokewidth width="1"/>
- <fillcolor color="#999999"/>
- <linecap cap="butt"/>
- <ellipse x="195" y="245" w="10" h="10"/>
- <fillstroke/>
- <strokecolor color="#cccccc"/>
- <strokewidth width="2"/>
- <fillcolor color="#cccccc"/>
- <linejoin join="round"/>
- <path>
- <move x="25" y="244"/>
- <line x="25" y="256"/>
- <line x="16" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="35" y="244"/>
- <line x="35" y="256"/>
- <line x="26" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="none"/>
- <linejoin join="miter"/>
- <linecap cap="round"/>
- <path>
- <move x="15" y="244"/>
- <line x="15" y="256"/>
- </path>
- <stroke/>
- <fillcolor color="#cccccc"/>
- <linejoin join="round"/>
- <linecap cap="butt"/>
- <path>
- <move x="59" y="244"/>
- <line x="59" y="256"/>
- <line x="50" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="69" y="244"/>
- <line x="69" y="256"/>
- <line x="60" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="none"/>
- <linejoin join="miter"/>
- <linecap cap="round"/>
- <path>
- <move x="15" y="244"/>
- <line x="15" y="256"/>
- </path>
- <stroke/>
- <fillcolor color="#cccccc"/>
- <linejoin join="round"/>
- <linecap cap="butt"/>
- <path>
- <move x="90" y="240"/>
- <line x="90" y="260"/>
- <line x="105" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="130" y="244"/>
- <line x="130" y="256"/>
- <line x="139" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="none"/>
- <linejoin join="miter"/>
- <linecap cap="round"/>
- <path>
- <move x="175" y="244"/>
- <line x="175" y="256"/>
- </path>
- <stroke/>
- <fillcolor color="#cccccc"/>
- <linejoin join="round"/>
- <linecap cap="butt"/>
- <path>
- <move x="120" y="244"/>
- <line x="120" y="256"/>
- <line x="129" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="165" y="244"/>
- <line x="165" y="256"/>
- <line x="174" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="155" y="244"/>
- <line x="155" y="256"/>
- <line x="164" y="250"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#999999"/>
- <strokewidth width="1"/>
- <fillcolor color="#999999"/>
- <path>
- <move x="330" y="245"/>
- <line x="330" y="255"/>
- <line x="335" y="255"/>
- <line x="340" y="260"/>
- <line x="340" y="240"/>
- <line x="335" y="245"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="none"/>
- <linecap cap="round"/>
- <rect x="370" y="245" w="15" h="10"/>
- <stroke/>
- <path>
- <move x="345" y="250"/>
- <line x="352" y="250"/>
- </path>
- <stroke/>
- <path>
- <move x="344" y="244"/>
- <line x="350" y="241"/>
- </path>
- <stroke/>
- <path>
- <move x="344" y="256"/>
- <line x="350" y="259"/>
- </path>
- <stroke/>
- <path>
- <move x="365" y="242"/>
- <line x="368" y="244"/>
- </path>
- <stroke/>
- <path>
- <move x="367" y="242"/>
- <line x="365" y="242"/>
- <line x="365" y="243.5"/>
- <close/>
- </path>
- <stroke/>
- <path>
- <move x="365" y="256.5"/>
- <line x="365" y="258"/>
- <line x="367" y="258"/>
- <close/>
- </path>
- <stroke/>
- <path>
- <move x="388" y="258"/>
- <line x="390" y="258"/>
- <line x="390" y="256.5"/>
- <close/>
- </path>
- <stroke/>
- <path>
- <move x="390" y="243.5"/>
- <line x="390" y="242"/>
- <line x="388" y="242"/>
- <close/>
- </path>
- <stroke/>
- <path>
- <move x="368" y="256"/>
- <line x="365" y="258"/>
- </path>
- <stroke/>
- <path>
- <move x="387" y="256"/>
- <line x="390" y="258"/>
- </path>
- <stroke/>
- <path>
- <move x="387" y="244"/>
- <line x="390" y="242"/>
- </path>
- <stroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="2"/>
- <linejoin join="miter"/>
- <path>
- <move x="390" y="15"/>
- <line x="380" y="5"/>
- </path>
- <stroke/>
- <path>
- <move x="390" y="5"/>
- <line x="380" y="15"/>
- </path>
- <stroke/>
- <fontsize size="14"/>
- <fontstyle style="1"/>
- <text str="Video Name" x="15" y="10" align="left" valign="middle"/>
- </foreground>
- </shape>
- <shape name="Warning Icon" h="32" w="32" aspect="1">
- <foreground>
- <strokecolor color="#000000"/>
- <strokecolor color="#000000"/>
- <fillcolor color="#ffff00"/>
- <linejoin join="round"/>
- <path>
- <move x="0" y="32"/>
- <line x="16" y="0"/>
- <line x="32" y="32"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="none"/>
- <fillcolor color="#000000"/>
- <linejoin join="miter"/>
- <ellipse x="14" y="25" w="4" h="4"/>
- <fillstroke/>
- <strokecolor color="#000000"/>
- <strokewidth width="3.5"/>
- <fillcolor color="none"/>
- <linecap cap="round"/>
- <path>
- <move x="16" y="21"/>
- <line x="16" y="11"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- </shapes>
|