(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);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;(function($){$.fn.jcarousel=function(o){return this.each(function(){new $jc(this,o);});};var defaults={vertical: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};$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?'left':'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);var skin=split[i];break;}}
if(e.nodeName=='UL'||e.nodeName=='OL'){this.list=$(e);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=$(e);this.list=$(e).find('>ul,>ol,div>ul,div>ol');}
if(skin!=''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1)
this.container.wrap('<div class=" '+skin+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass('jcarousel-clip'))
this.clip=this.list.wrap('<div></div>').parent();this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)
this.buttonPrev=this.clip.before(this.options.buttonPrevHTML).prev();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)
this.buttonNext=this.clip.before(this.options.buttonNextHTML).prev();this.buttonNext.addClass(this.className('jcarousel-next'));this.clip.addClass(this.className('jcarousel-clip'));this.list.addClass(this.className('jcarousel-list'));this.container.addClass(this.className('jcarousel-container'));var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,i=this.options.offset;li.each(function(){self.format(this,i++);wh+=self.dimension(this,di);});this.list.css(this.wh,wh+'px');if(!o||o.size===undefined)
this.options.size=li.size();}
this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();};this.funcPrev=function(){self.prev();};this.funcResize=function(){self.reload();};if(this.options.initCallback!=null)
this.options.initCallback(this,'init');if($.browser.safari){this.buttons(false,false);$(window).bind('load',function(){self.setup();});}else
this.setup();};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.3'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked)
return;this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize',this.funcResize).bind('resize',this.funcResize);},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!=null)
this.options.initCallback(this,'reset');this.setup();},reload:function(){if(this.tail!=null&&this.inTail)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null)
this.options.reloadCallback(this);if(this.options.visible!=null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;$('li',this.list).each(function(i){wh+=self.dimension(this,di);if(i+1<self.first)
lt=wh;});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}
this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!=undefined){this.options.size=s;if(!this.locked)
this.buttons();}
return this.options.size;},has:function(i,i2){if(i2==undefined||!i2)
i2=i;if(this.options.size!==null&&i2>this.options.size)
i2=this.options.size;for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder'))
return false;}
return true;},get:function(i){return $('.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,add=0;if(e.length==0){var c,e=this.create(i),j=$jc.intval(i);while(c=this.get(--j)){if(j<=0||c.length){j<=0?this.list.prepend(e):c.after(e);break;}}}else
old=this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s=='string'?e.html(s):e.empty().append(s);var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last))
return;var d=this.dimension(e);if(i<this.first)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail)
this.scrollTail(false);else
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();if(this.tail!=null&&this.inTail)
this.scrollTail(true);else
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(b){if(this.locked||this.animating||!this.tail)
return;var pos=$jc.intval(this.list.css(this.lt));!b?pos-=this.tail:pos+=this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating)
return;this.animate(this.pos(i),a);},pos:function(i){if(this.locked||this.animating)
return;i=$jc.intval(i);if(this.options.wrap!='circular')
i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);var back=this.first>i;var pos=$jc.intval(this.list.css(this.lt));var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);}
c=e;d=this.dimension(e);if(p)
l+=d;if(this.first!=null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size==null||j<=this.options.size))))
pos=back?pos+d:pos-d;}
var clipping=this.clipping();var cache=[];var visible=0,j=i,v=0;var c=this.get(i-1);while(++visible){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length==0?this.list.prepend(e):c[back?'before':'after'](e);}
c=e;var d=this.dimension(e);if(d==0){alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}
if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size)
cache.push(e);else if(p)
l+=d;v+=d;if(v>=clipping)
break;j++;}
for(var x=0;x<cache.length;x++)
cache[x].remove();if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}
var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size)
last=this.options.size;if(j>last){visible=0,j=last,v=0;while(++visible){var e=this.get(j--);if(!e.length)
break;v+=this.dimension(e);if(v>=clipping)
break;}}
var first=last-visible+1;if(this.options.wrap!='circular'&&first<1)
first=1;if(this.inTail&&back){pos+=this.tail;this.inTail=false;}
this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.margin(this.get(last),!this.options.vertical?'marginRight':'marginBottom');if((v-m)>clipping)
this.tail=v-clipping-m;}
while(i-->first)
pos+=this.dimension(this.get(i));this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating)
return;this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p==0)
self.list.css(self.lt,0);if(self.options.wrap=='both'||self.options.wrap=='last'||self.options.size==null||self.last<self.options.size)
self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if(!this.options.animation||a==false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?{'left':p}:{'top':p};this.list.animate(o,this.options.animation,this.options.easing,scrolled);}},startAuto:function(s){if(s!=undefined)
this.options.auto=s;if(this.options.auto==0)
return this.stopAuto();if(this.timer!=null)
return;var self=this;this.timer=setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){if(this.timer==null)
return;clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==undefined||n==null){var n=!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)
n=this.tail!=null&&!this.inTail;}
if(p==undefined||p==null){var p=!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)
p=this.tail!=null&&this.inTail;}
var self=this;this.buttonNext[n?'bind':'unbind'](this.options.buttonNextEvent,this.funcNext)[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);this.buttonPrev[p?'bind':'unbind'](this.options.buttonPrevEvent,this.funcPrev)[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=n)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);});this.buttonNext[0].jcarouselstate=n;}
if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=p)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);});this.buttonPrev[0].jcarouselstate=p;}},notify:function(evt){var state=this.prevFirst==null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}
if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}
this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==undefined||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation'))
return;var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback))
return;var self=this;if(i1===undefined)
callback(self,state,evt);else if(i2===undefined)
this.get(i1).each(function(){callback(self,this,i1,state,evt);});else{for(var i=i1;i<=i2;i++)
if(i!==null&&!(i>=i3&&i<=i4))
this.get(i).each(function(){callback(self,this,i,state,evt);});}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){var $e=$(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i));$e.attr('jcarouselindex',i);return $e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=e.jquery!=undefined?e[0]:e;var old=!this.options.vertical?el.offsetWidth+$jc.margin(el,'marginLeft')+$jc.margin(el,'marginRight'):el.offsetHeight+$jc.margin(el,'marginTop')+$jc.margin(el,'marginBottom');if(d==undefined||old==d)
return old;var w=!this.options.vertical?d-$jc.margin(el,'marginLeft')-$jc.margin(el,'marginRight'):d-$jc.margin(el,'marginTop')-$jc.margin(el,'marginBottom');$(el).css(this.wh,w+'px');return this.dimension(el);},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==undefined)
s=this.options.size;return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},margin:function(e,p){if(!e)
return 0;var el=e.jquery!=undefined?e[0]:e;if(p=='marginRight'&&$.browser.safari){var old={'display':'block','float':'none','width':'auto'},oWidth,oWidth2;$.swap(el,old,function(){oWidth=el.offsetWidth;});old['marginRight']=0;$.swap(el,old,function(){oWidth2=el.offsetWidth;});return oWidth2-oWidth;}
return $jc.intval($.css(el,p));},intval:function(v){v=parseInt(v);return isNaN(v)?0:v;}});})(jQuery);;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2007 by Yann Le Coroller. All rights reserved.
 * 
 * Description:
 * Copyright (c) 2007 by Yann Le Coroller. All rights reserved.
 * 
 * Manufacturer:
 * Yann Le Coroller
 * 
 * Designer:
 * Yann Le Coroller
 * 
 * Vendor URL:
 * http://www.kub.fr/
 */
Cufon.registerFont({"w":200,"face":{"font-family":"AlteHaasGroteskBold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 9 0 4","ascent":"288","descent":"-72","bbox":"-132 -348.883 387.014 78.7891","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0008-U+FB02"},"glyphs":{" ":{"w":100},"\t":{"w":100},"\r":{"w":100},"!":{"d":"43,-78v-20,-39,-19,-108,-19,-169v0,-16,29,-9,45,-9v21,39,-3,119,-5,169v0,9,-12,12,-21,9xm22,-46v6,-15,60,-17,56,5v-3,17,8,44,-16,41v-17,-2,-40,7,-40,-16r0,-30","w":100},"\"":{"d":"37,-256v19,-4,39,-1,31,22r0,83v2,13,-15,8,-27,9v-9,0,-10,-5,-10,-14r-1,-86v0,-9,1,-12,7,-14xm104,-256v19,-4,39,-1,31,22r0,82v2,13,-13,10,-26,10v-9,0,-12,-5,-11,-14r-1,-86v0,-9,1,-12,7,-14","w":166},"#":{"d":"49,-123v14,-44,-36,-4,-25,-53v7,-10,39,6,35,-23v9,-21,-9,-60,36,-52v13,12,-2,41,-2,62v0,12,14,9,25,9v20,-5,9,-38,17,-60v-1,-13,15,-11,28,-11v18,11,-9,50,3,70v17,-2,26,8,21,27v-14,11,-41,1,-35,43v2,14,36,1,24,35v-4,11,-35,-2,-32,17v-9,22,8,68,-33,59v-23,-5,11,-53,-7,-71v-40,-10,-29,34,-37,62v0,12,-19,9,-30,8v-9,-12,3,-39,3,-58v6,-24,-36,4,-28,-36v3,-19,42,5,37,-28xm82,-111v16,21,45,2,39,-27v1,-14,-14,-9,-27,-10v-14,4,-8,22,-12,37"},"$":{"d":"96,-290v26,-3,3,31,29,29v35,10,62,26,65,69v-7,10,-26,3,-43,5v-11,-8,-11,-30,-29,-32v-16,4,-4,39,-6,60v49,15,106,40,85,110v-10,32,-40,49,-79,54v-16,3,3,33,-20,31v-19,-1,4,-34,-24,-32v-43,-9,-67,-34,-72,-82v8,-9,52,-10,51,9v3,17,17,34,36,28v-1,-27,13,-76,-21,-76v-33,-12,-67,-30,-61,-78v5,-38,31,-60,71,-66v17,1,6,-25,18,-29xm79,-219v-30,3,-28,56,5,54v11,-6,6,-36,4,-52v-1,-3,-6,-4,-9,-2xm111,-44v13,16,41,-7,39,-29v-2,-18,-21,-34,-38,-26v-4,14,1,36,-1,55"},"%":{"d":"236,-251v1,-10,26,-13,30,-4r-139,254v-3,8,-12,8,-24,8v-13,0,-5,-14,-1,-17xm85,-257v78,-7,81,128,17,138v-57,9,-84,-33,-72,-89v6,-29,23,-47,55,-49xm85,-230v-29,4,-32,80,-4,86v39,9,36,-68,15,-84v-3,-2,-6,-2,-11,-2xm292,1v-57,14,-87,-28,-77,-91v7,-49,92,-61,110,-14v15,40,5,96,-33,105xm271,-108v-32,4,-32,89,3,86v31,-2,30,-79,3,-86r-6,0","w":360},"&":{"d":"162,-102v19,8,15,-39,58,-18v8,29,-36,54,-8,75v8,15,29,26,30,44v-25,-1,-57,9,-66,-14v-24,-13,-71,41,-121,12v-51,-13,-55,-102,-11,-127v11,-6,28,-14,15,-29v-32,-37,-6,-100,51,-100v77,0,93,91,36,119v-14,14,9,27,16,38xm60,-75v-8,42,68,51,77,13v-16,-16,-24,-39,-45,-49v-17,6,-28,18,-32,36xm113,-167v27,-4,36,-57,0,-58v-31,1,-24,52,0,58","w":246},"'":{"d":"37,-256v19,-3,37,-3,32,22r0,83v2,13,-15,8,-27,9v-10,1,-10,-6,-11,-14r0,-86v0,-8,1,-12,6,-14","w":100},"(":{"d":"104,-258v-39,73,-46,235,-1,312v7,12,-10,11,-22,11v-86,-49,-78,-273,-7,-328v11,1,28,-3,30,5","w":106},")":{"d":"39,63v-14,4,-43,6,-35,-10v44,-78,39,-230,0,-305v-7,-14,13,-11,28,-11v75,65,68,258,7,326","w":106},"*":{"d":"55,-146v-5,15,-28,6,-27,-8v1,-13,30,-31,8,-37v-15,-4,-34,-14,-18,-32v12,-5,21,7,33,8v21,2,-11,-49,28,-42v19,-1,-5,44,19,41v14,-8,37,-15,38,8v2,19,-49,12,-30,34v4,8,12,13,13,23v-3,10,-22,19,-27,7v-7,-8,-16,-31,-27,-16","w":146},"+":{"d":"138,-110v30,0,66,-16,61,27v-3,22,-41,7,-63,12v-30,6,22,82,-38,71v-18,-3,-5,-39,-9,-62v-4,-21,-39,-7,-63,-10v-12,-2,-7,-18,-8,-29v5,-18,39,-5,63,-9v27,-4,-20,-72,33,-72v25,0,7,39,14,62v0,6,3,10,10,10","w":216},",":{"d":"29,-55v21,3,49,-11,49,16v0,53,-7,89,-50,96v-25,-23,35,-35,12,-57v-24,5,-17,-22,-18,-45v0,-6,2,-9,7,-10","w":100},"-":{"d":"113,-120v20,-4,14,22,13,38v-1,7,-8,5,-15,5r-78,1v-18,2,-15,-20,-13,-35v0,-6,3,-9,9,-9r84,0","w":146},".":{"d":"77,-8v-8,13,-61,16,-55,-8v3,-14,-8,-41,10,-39v17,2,47,-10,46,14v0,11,1,24,-1,33","w":100},"\/":{"d":"1,2v25,-89,64,-169,92,-255v4,-12,33,-12,41,-5r-94,256v-3,11,-31,11,-39,4","w":133},"0":{"d":"85,-256v95,-11,115,74,105,168v-6,58,-43,103,-113,89v-70,-14,-80,-110,-64,-184v8,-39,29,-68,72,-73xm91,-39v60,10,55,-83,47,-137v-3,-24,-22,-49,-52,-37v-36,15,-31,89,-24,136v3,19,11,35,29,38"},"1":{"d":"35,-164v-18,-10,-9,-48,19,-39v26,-6,40,-24,49,-46v11,-4,45,-8,38,16r0,221v1,19,-27,11,-46,11v-13,-32,-1,-107,-5,-155v-6,-15,-35,-2,-55,-8"},"2":{"d":"64,-174v5,24,-42,23,-50,12v-12,-109,159,-126,175,-31v15,89,-78,94,-109,145v19,11,65,0,99,4v19,-2,11,18,13,37v-3,12,-26,7,-41,7r-131,0v-26,-4,-1,-47,6,-60v29,-52,122,-52,112,-129v-4,-33,-67,-29,-71,3"},"3":{"d":"88,-149v47,7,65,-61,17,-66v-31,-3,-41,20,-48,43v-16,5,-58,7,-40,-26v11,-70,133,-75,160,-16v14,30,-1,65,-20,78v23,15,45,41,33,82v-13,44,-65,69,-122,54v-36,-9,-62,-38,-60,-82v5,-8,43,-9,47,3v-3,44,71,59,83,15v9,-35,-12,-50,-48,-50v-11,0,-12,-31,-2,-35"},"4":{"d":"161,-118v-4,40,42,-9,33,50v-3,20,-44,-5,-33,33v9,32,-19,46,-48,30v-3,-24,14,-54,-26,-54r-75,0v-25,-58,39,-95,62,-137v22,-22,27,-65,80,-55v7,1,7,8,7,15r0,118xm52,-108v13,16,74,18,61,-18v-2,-17,2,-42,-5,-54v-22,20,-37,48,-56,72"},"5":{"d":"17,-124v13,-41,5,-106,32,-128r123,1v14,4,13,48,-9,41r-77,0v-17,1,-18,36,-15,51v60,-32,129,7,122,86v-8,92,-165,101,-183,19v-10,-22,14,-23,38,-21v16,51,115,41,92,-29v-7,-20,-27,-34,-55,-27v-17,9,-35,26,-66,16v-2,-2,-3,-5,-2,-9"},"6":{"d":"92,-166v81,-24,128,77,78,141v-29,37,-114,35,-138,-6v-42,-74,-31,-227,72,-226v48,0,74,23,82,62v-2,13,-24,5,-40,7v-16,-9,-16,-35,-44,-31v-30,4,-45,38,-41,69v13,-3,18,-12,31,-16xm64,-68v11,48,82,35,77,-16v8,-52,-71,-64,-77,-14v-4,7,-2,22,0,30"},"7":{"d":"15,-210v0,-15,-8,-42,9,-42r154,1v16,6,7,53,-7,57v-37,47,-62,104,-67,183v-1,17,-30,10,-48,10v-13,-3,-4,-26,-2,-36v10,-67,44,-117,73,-163v-17,-12,-67,-2,-99,-5v-8,0,-12,0,-13,-5"},"8":{"d":"130,1v-67,14,-136,-17,-122,-91v0,-27,31,-30,35,-49v-15,-11,-27,-24,-27,-51v0,-81,135,-80,161,-27v14,29,1,68,-20,79v19,19,49,42,35,86v-8,28,-31,46,-62,53xm114,-217v-51,-17,-72,58,-22,66v46,14,65,-55,22,-66xm57,-82v-8,54,74,65,85,20v9,-35,-18,-62,-57,-52v-16,5,-25,15,-28,32"},"9":{"d":"77,-255v126,-27,144,167,76,237v-37,38,-138,25,-139,-41v7,-12,52,-9,52,9v14,29,64,12,66,-14v1,-12,12,-27,6,-38v-19,8,-32,22,-63,18v-48,-7,-77,-49,-65,-104v8,-37,29,-59,67,-67xm89,-122v35,4,47,-18,49,-50v2,-35,-48,-59,-70,-29v-17,23,-11,76,21,79"},":":{"d":"77,-135v-8,13,-61,16,-55,-8v3,-14,-8,-41,10,-39v17,2,47,-10,46,14v0,11,1,24,-1,33xm77,-8v-8,13,-61,16,-55,-8v3,-14,-8,-41,10,-39v17,2,47,-10,46,14v0,11,1,24,-1,33","w":100},";":{"d":"77,-135v-8,13,-61,16,-55,-8v3,-14,-8,-41,10,-39v17,2,47,-10,46,14v0,11,1,24,-1,33xm29,-55v21,3,49,-11,49,16v0,53,-7,89,-50,96v-25,-23,35,-35,12,-57v-24,5,-17,-22,-18,-45v0,-6,2,-9,7,-10","w":100},"<":{"d":"197,-145v-35,23,-90,28,-121,55v35,22,84,32,119,51v10,10,5,53,-16,33r-160,-65v-4,-13,-6,-46,12,-46r162,-64v11,0,6,26,4,36","w":216},"=":{"d":"27,-111v-17,0,-11,-34,-3,-37r165,0v14,-2,10,19,9,31v-1,7,-8,6,-15,6r-156,0xm173,-71v24,-10,36,22,19,37r-163,1v-14,1,-11,-16,-11,-30v-1,-8,7,-8,15,-8r140,0","w":216},">":{"d":"19,-37v35,-23,90,-28,121,-55v-34,-22,-84,-33,-119,-51v-10,-9,-5,-54,16,-33r160,64v4,14,6,47,-12,47r-162,64v-10,-1,-6,-27,-4,-36","w":216},"?":{"d":"112,-220v-30,-5,-45,14,-48,39v-4,11,-28,4,-43,6v-27,-45,44,-108,111,-84v61,6,73,102,22,129v-15,8,-31,20,-31,42v0,17,-26,10,-42,10v-22,-39,27,-72,48,-94v7,-18,2,-45,-17,-48xm77,-55v35,-7,59,2,48,50v-9,7,-59,15,-55,-11v2,-14,-5,-37,7,-39"},"@":{"d":"206,-81v40,0,49,-59,36,-97v-14,-41,-57,-60,-113,-55v-79,7,-105,127,-51,182v27,27,85,35,126,18v14,-6,33,-30,52,-14v-23,39,-79,56,-139,48v-110,-14,-132,-186,-46,-239v89,-54,232,-4,199,117v-12,43,-65,93,-108,57v-40,34,-103,1,-92,-66v9,-51,71,-95,116,-55v7,-2,20,-20,35,-7v-3,38,-19,65,-22,103v1,6,1,8,7,8xm126,-84v46,11,73,-72,25,-84v-38,-1,-58,48,-37,78v3,3,7,5,12,6","w":288},"A":{"d":"156,-249r89,244v-8,10,-64,11,-60,-13v-8,-15,-5,-39,-28,-40r-70,0v-38,7,-3,72,-74,58v-12,2,-13,-10,-8,-18r91,-237v16,-2,55,-9,60,6xm93,-102v21,4,72,13,57,-18v-10,-21,-12,-49,-27,-65v-15,23,-24,54,-30,83","w":246,"k":{"\u2019":27,"y":6,"w":6,"v":6,"Y":27,"W":9,"V":17,"T":33}},"B":{"d":"225,-212v8,33,-11,56,-24,72v24,16,47,44,36,87v-17,67,-122,53,-205,52v-9,0,-7,-13,-7,-23r0,-221v0,-8,4,-11,10,-12v69,9,174,-19,190,45xm157,-210v-43,-11,-95,-10,-74,54v25,7,90,13,90,-24v0,-16,-5,-25,-16,-30xm95,-43v39,-2,86,7,89,-32v3,-46,-52,-42,-95,-39v-17,6,-8,38,-8,60v0,8,5,11,14,11","w":253},"C":{"d":"118,4v-134,-11,-140,-267,17,-267v64,0,113,36,111,90v-17,4,-55,7,-56,-15v-13,-21,-39,-34,-71,-25v-41,11,-52,62,-46,115v7,63,114,77,123,12v3,-19,27,-11,47,-13v20,9,-1,44,-8,56v-19,35,-62,52,-117,47","w":266},"D":{"d":"25,-236v0,-11,-1,-20,10,-21v137,-21,259,43,206,189v-16,44,-53,69,-115,68r-94,-1v-9,0,-7,-13,-7,-23r0,-212xm90,-47v83,12,117,-32,103,-111v-7,-43,-54,-60,-108,-50v-10,34,-3,110,-3,156v1,3,4,5,8,5","w":266},"E":{"d":"25,-219v2,-15,-7,-38,10,-38r174,1v13,3,6,25,7,39v-3,13,-27,7,-41,7r-86,1v-16,2,-6,32,-7,50v23,12,75,2,115,5v13,1,8,25,7,37v0,10,-16,6,-28,6r-86,0v-17,2,-6,35,-9,56v1,13,23,8,36,8r92,0v16,0,8,22,10,39v-2,15,-28,8,-43,8r-144,-1v-14,-1,-7,-27,-7,-41r0,-177","w":233},"F":{"d":"25,-231v1,-12,-4,-25,10,-25r162,0v13,1,8,27,7,42v-23,12,-71,4,-108,4v-25,0,-13,29,-15,51v-1,13,16,9,28,10r72,0v12,1,5,22,7,36v-1,10,-15,6,-26,7r-72,0v-13,0,-8,17,-9,29v-4,37,21,91,-48,77v-15,-2,-8,-30,-8,-46r0,-185","w":213,"k":{"A":20,".":57,",":57}},"G":{"d":"206,-23v-104,92,-257,-63,-168,-190v20,-29,49,-50,97,-50v62,0,102,29,111,81v3,16,-34,8,-50,7v-11,-27,-35,-49,-76,-39v-78,19,-63,196,36,171v25,-6,39,-20,44,-46v-4,-26,-70,19,-55,-45v18,-12,62,-3,95,-5v23,-1,8,37,12,57r-1,72v1,13,-16,9,-28,9v-11,0,-6,-20,-17,-22","w":273},"H":{"d":"25,-204v3,-19,-8,-49,10,-53v21,4,54,-12,46,27v4,24,-12,66,12,72r82,0v28,-6,-3,-74,17,-98v19,3,50,-13,50,16r0,231v-2,15,-32,8,-50,8v-16,-16,0,-70,-7,-105v-20,-11,-69,-3,-99,-4v-12,19,-5,64,-5,97v0,20,-23,12,-42,13v-25,1,-14,-37,-14,-60r0,-144","w":266},"I":{"d":"24,-178v5,-25,-11,-70,10,-78v18,3,46,-12,46,18r0,225v3,22,-26,10,-47,13v-15,-3,-9,-30,-9,-47r0,-131","w":106},"J":{"d":"119,-203v3,-20,-8,-50,10,-54v24,1,47,-9,46,31r-4,180v-11,66,-138,67,-158,9v-5,-14,-9,-32,-7,-50v2,-14,27,-7,44,-8v10,3,4,20,8,31v4,33,61,29,61,-8r0,-131"},"K":{"d":"25,-204v3,-19,-9,-50,10,-53v22,3,54,-11,46,29v3,22,-4,53,4,70v35,-27,62,-64,93,-95v14,-7,46,-5,65,-2v3,11,-13,17,-18,25v-23,25,-50,46,-70,74v29,56,70,97,101,149v-6,15,-75,11,-76,-10r-63,-93v-39,3,-38,53,-36,101v-2,15,-31,8,-47,8v-18,-3,-9,-39,-9,-59r0,-144","w":259},"L":{"d":"25,-219v2,-15,-7,-37,10,-38v19,3,46,-11,46,19r1,186v26,13,80,-1,118,6v12,2,4,25,6,40v-6,10,-27,6,-42,6r-132,-1v-14,-1,-7,-27,-7,-41r0,-177","w":213,"k":{"\u2019":27,"y":13,"Y":40,"W":20,"V":33,"T":33}},"M":{"d":"71,-1v-20,0,-46,9,-46,-15r2,-237v16,-5,78,-14,82,11r56,153v27,-48,34,-120,60,-166v16,-5,44,0,67,-2v10,0,9,11,9,22r0,227v-3,14,-30,7,-47,7v-18,-35,8,-120,-10,-164v-25,50,-35,112,-60,162v-17,7,-50,6,-49,-17r-54,-143v-9,37,-2,105,-4,154v0,5,-1,8,-6,8","w":326},"N":{"d":"25,-204v3,-19,-8,-49,10,-53v20,1,47,-5,53,11r96,151v12,-2,5,-28,5,-43r0,-108v1,-17,29,-10,47,-10v12,7,6,37,6,57r0,189v-3,18,-60,15,-64,-3r-91,-145v-3,-7,-9,-3,-9,2r-1,144v2,20,-27,10,-46,11v-12,-9,-6,-39,-6,-59r0,-144","w":266},"O":{"d":"213,-241v98,69,49,282,-111,242v-92,-23,-113,-176,-43,-236v33,-28,115,-34,154,-6xm75,-92v23,85,145,51,136,-35v-5,-53,-24,-94,-83,-88v-51,6,-67,69,-53,123","w":280},"P":{"d":"25,-231v0,-13,-3,-26,10,-26v86,0,202,-20,194,92v-5,64,-60,78,-137,72v-23,7,-6,52,-11,81v1,19,-30,11,-48,11v-7,0,-9,-7,-8,-15r0,-215xm81,-201v5,31,-18,65,28,65v36,0,66,-2,66,-40v0,-42,-47,-39,-88,-37v-4,2,-7,6,-6,12","w":240,"k":{"A":27,".":64,",":64}},"Q":{"d":"234,18v-16,-18,-36,-31,-66,-15v-107,15,-173,-60,-150,-169v12,-58,49,-91,117,-97v124,-11,162,142,102,227v8,20,40,38,4,55v-3,1,-5,1,-7,-1xm150,-79v32,-9,71,13,58,-75v-7,-40,-37,-69,-87,-59v-65,13,-67,146,-10,165v9,7,28,8,43,6v13,-12,-26,-23,-4,-37","w":280},"R":{"d":"228,-145v-43,27,20,61,10,124v4,11,6,23,-13,21v-17,-2,-42,4,-39,-17v-5,-44,-2,-92,-65,-84v-22,3,-47,-7,-40,28r-1,68v-7,10,-26,3,-43,5v-11,0,-12,-7,-12,-19r0,-227v-1,-8,4,-9,10,-11r151,3v42,7,66,65,42,109xm87,-141v48,5,111,4,92,-53v-9,-27,-55,-17,-91,-19v-16,6,-3,39,-7,62v0,5,2,9,6,10","w":259,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"170,-66v-4,-43,-56,-38,-92,-50v-36,-12,-71,-38,-58,-88v10,-37,43,-58,89,-58v59,0,102,19,106,73v1,16,-30,7,-48,8v-12,-20,-25,-43,-64,-38v-20,3,-34,14,-30,37v43,43,188,24,144,141v-28,75,-208,60,-208,-33v0,-18,26,-9,44,-11v18,3,10,31,29,38v23,15,84,16,88,-19","w":233},"T":{"d":"74,-209v-37,-2,-88,12,-65,-46v59,-5,140,-3,203,0v5,11,11,54,-18,45v-22,6,-56,-16,-56,24r-1,179v-3,13,-33,6,-48,6v-15,-5,-7,-37,-7,-55r-1,-147v-1,-4,-3,-6,-7,-6","w":219,"k":{"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,"A":33,";":40,":":40,".":40,"-":46,",":40}},"U":{"d":"242,-114v4,79,-31,117,-104,119v-81,2,-114,-38,-114,-120r0,-133v2,-17,29,-6,48,-9v14,6,7,36,8,56v5,70,-24,182,74,157v59,-15,25,-122,32,-201v2,-20,27,-9,48,-12v17,7,8,47,8,70r0,73","w":266},"V":{"d":"78,-8r-77,-245v11,-6,61,-12,59,12r52,155v14,-6,12,-27,18,-41v17,-41,25,-90,44,-128v12,-4,37,-3,50,0v-16,88,-54,168,-78,249v-10,10,-57,11,-68,-2","w":226,"k":{"y":6,"u":13,"r":13,"o":20,"i":6,"e":20,"a":20,"A":17,";":17,":":17,".":46,"-":20,",":46}},"W":{"d":"66,-9v-11,-78,-67,-179,-54,-248r36,0v34,31,21,120,51,163v22,-49,24,-114,48,-162v17,2,46,-7,50,7r42,157v5,0,4,-6,6,-8r29,-122v6,-14,1,-37,24,-35v13,2,37,-6,37,8r-55,208v-8,15,-2,44,-28,41v-17,-2,-37,4,-42,-13v-14,-49,-19,-109,-42,-150v-19,48,-26,106,-41,157v-9,9,-54,12,-61,-3","w":339,"k":{"u":6,"r":6,"o":21,"e":21,"a":13,"A":9,";":6,":":6,".":27,",":27}},"X":{"d":"86,-133v-9,-42,-77,-85,-67,-124v25,2,58,-7,63,20v13,19,23,41,39,57v21,-18,32,-47,47,-69v9,-13,45,-10,61,-4v-20,46,-58,77,-74,121r78,118v2,3,8,13,-2,13v-25,0,-63,7,-67,-18r-42,-64v-18,2,-22,31,-34,41v-16,14,-12,44,-44,42v-17,0,-49,8,-34,-16","w":240},"Y":{"d":"138,-1v-26,-2,-54,11,-46,-29v-1,-37,4,-79,-17,-98r-72,-120v-1,-17,36,-7,56,-8v22,27,37,60,55,90v26,6,36,-52,55,-71v3,-24,39,-22,68,-19v-23,83,-89,115,-89,243v0,7,-2,13,-10,12","w":240,"k":{"v":20,"u":27,"q":33,"p":27,"o":40,"i":13,"e":40,"a":33,"A":27,";":33,":":33,".":50,"-":40,",":50}},"Z":{"d":"9,-8v-9,-44,24,-64,42,-87v29,-38,63,-70,89,-111v-23,-10,-74,-1,-112,-4v-14,0,-8,-24,-8,-38v0,-7,4,-7,9,-9r185,1v17,8,5,56,-8,62r-91,108v-5,12,-36,28,-18,39r120,0v12,3,8,26,7,40v-5,12,-30,7,-47,7r-158,0v-7,-1,-9,-2,-10,-8","w":233},"[":{"d":"75,9v-4,37,44,-5,44,32v0,13,2,24,-14,24r-69,0v-13,1,-11,-10,-11,-20r0,-299v10,-20,54,-4,86,-9v16,6,12,50,-14,40v-15,-2,-22,1,-22,18r0,214","w":119},"\\":{"d":"94,-1r-94,-257v11,-12,46,-5,44,14r89,245v-4,9,-35,8,-39,-2","w":133},"]":{"d":"45,-207v0,-40,-56,13,-44,-47v11,-20,54,-5,83,-9v13,-2,11,10,11,20r0,299v-10,20,-54,4,-86,9v-16,-5,-13,-49,13,-40v15,1,23,0,23,-18r0,-214","w":119},"^":{"d":"74,-135v2,19,-36,31,-47,16v17,-47,37,-88,58,-130v25,-9,60,-2,59,24r44,97v8,13,-7,17,-24,15v-23,-2,-20,-29,-31,-45v-10,-14,-12,-26,-19,-42v-22,-7,-26,47,-40,65","w":216},"_":{"d":"18,44v-16,5,-27,-17,-9,-17r167,1v7,10,-1,16,-14,16r-144,0","w":180},"`":{"d":"67,-212v-32,15,-75,-31,-70,-47v9,-2,22,0,34,-1v19,8,31,29,36,48","w":93},"a":{"d":"111,-156v-28,-3,-37,12,-48,26v-48,15,-51,-28,-18,-46v45,-24,139,-24,141,50r3,120v-6,12,-50,10,-54,-6v-46,35,-152,11,-118,-65v14,-28,52,-28,88,-34v32,4,42,-41,6,-45xm63,-49v16,38,82,20,72,-29v-4,-18,-36,-2,-51,0v-14,1,-23,11,-21,29","w":206},"b":{"d":"71,-173v19,0,46,-26,82,-13v84,30,66,213,-44,189v-17,-4,-27,-18,-40,-16v0,18,-23,12,-43,13v-7,-2,-6,-9,-7,-18r0,-228v0,-17,25,-8,44,-10v16,12,2,55,8,83xm104,-34v44,7,59,-40,49,-82v-5,-23,-28,-44,-57,-33v-39,15,-38,108,8,115","w":219},"c":{"d":"17,-64v-14,-68,20,-127,87,-127v50,0,84,19,90,65v-6,8,-51,11,-51,-7v-24,-41,-87,-10,-79,42v-9,56,68,80,83,26v3,-10,41,-10,48,0v-9,50,-50,78,-112,67v-34,-6,-59,-32,-66,-66","w":206},"d":{"d":"157,-256v21,2,44,-11,44,19r0,226v2,17,-39,15,-48,5v-11,-22,-25,19,-55,10v-104,12,-113,-173,-23,-192v31,-6,54,8,73,16v9,-21,-8,-68,9,-84xm105,-152v-59,1,-54,117,0,119v40,1,52,-38,45,-78v-4,-24,-15,-42,-45,-41","w":219},"e":{"d":"70,-185v71,-22,130,20,125,97v-1,10,-18,6,-30,7v-32,4,-78,-7,-102,6v-2,28,21,44,51,41v26,-3,42,-40,75,-18v-8,61,-115,72,-154,27v-19,-22,-32,-71,-17,-107v10,-25,26,-45,52,-53xm66,-131v-7,12,1,20,18,18v18,-3,44,4,57,-3v6,-25,-23,-43,-51,-35v-11,3,-19,10,-24,20","w":206},"f":{"d":"0,-159v-6,-49,40,-5,32,-56v6,-31,36,-45,74,-41v18,-3,18,31,8,37v-24,-5,-42,14,-28,32v20,-1,35,2,30,28v-3,17,-41,-8,-35,26v-3,42,3,93,-4,131v-12,2,-51,10,-46,-13r-1,-130v-2,-14,-28,1,-30,-14","w":119,"k":{"\u2019":-6,"f":6}},"g":{"d":"71,-8v-112,-39,-42,-237,61,-172v4,5,16,16,18,3v2,-15,24,-9,40,-9v8,0,9,8,8,17r-1,175v-3,78,-158,87,-175,15v-4,-16,23,-8,41,-10v16,11,31,33,63,22v19,-7,30,-35,21,-58v-20,10,-44,28,-76,17xm98,-44v58,10,68,-78,32,-102v-39,-26,-79,19,-63,70v5,16,13,29,31,32","w":219},"h":{"d":"20,-183v4,-35,-21,-85,41,-73v22,4,1,59,11,86v18,-4,39,-27,75,-19v64,13,41,103,47,176v2,20,-26,12,-44,12v-12,0,-5,-23,-7,-36v-3,-48,16,-123,-44,-112v-50,10,-17,98,-33,148v-17,-3,-46,13,-46,-14r0,-168","w":213},"i":{"d":"21,-249v9,-15,62,-15,51,15v6,25,-22,19,-43,18v-12,-1,-7,-19,-8,-33xm21,-176v2,-17,50,-15,50,-1r0,169v-2,13,-57,16,-50,-9r0,-159","w":92},"j":{"d":"66,-257v15,2,13,43,0,42v-29,11,-60,-17,-33,-42r33,0xm24,-166v-7,-27,29,-23,49,-17v5,62,1,137,1,203v0,39,-46,53,-79,40v2,-12,-7,-36,6,-36v17,0,27,-13,23,-31r0,-159","w":100},"k":{"d":"24,-204v3,-19,-8,-49,9,-53v22,0,49,-7,42,27v2,33,-3,73,3,103v35,-19,49,-76,113,-56v-13,30,-47,37,-59,68v21,39,49,70,70,109v-10,13,-65,9,-67,-11r-36,-58v-10,-8,-25,6,-24,26v2,29,9,59,-38,49v-24,1,-13,-38,-13,-60r0,-144","w":206},"l":{"d":"64,0v-20,-2,-44,9,-43,-16r6,-240v17,-1,45,-9,45,17r0,226v0,8,-2,11,-8,13","w":92},"m":{"d":"72,-169v18,-7,28,-21,54,-21v31,0,40,14,57,25v33,-43,123,-30,122,47r-1,112v-4,11,-28,5,-43,5v-27,-24,32,-160,-49,-148v-40,16,-19,84,-24,140v-2,14,-42,13,-50,2r-1,-116v-1,-20,-16,-32,-38,-27v-42,10,-23,84,-27,140v-1,16,-25,8,-42,10v-18,-5,-9,-41,-9,-61r0,-116v1,-14,28,-8,43,-8v6,2,3,12,8,16","w":326},"n":{"d":"68,-172v14,10,29,-25,57,-18v88,-7,68,94,68,181v0,15,-28,8,-43,8v-30,-25,32,-163,-51,-149v-46,8,-29,82,-29,139v0,18,-24,9,-42,11v-17,-7,-4,-49,-8,-73v3,-35,-6,-83,4,-111v14,-1,46,-10,44,12","w":213},"o":{"d":"37,-160v69,-71,205,-3,160,112v-22,55,-120,68,-160,23v-27,-30,-29,-105,0,-135xm67,-68v15,60,88,35,88,-25v0,-38,-20,-67,-60,-57v-30,8,-37,49,-28,82","w":219},"p":{"d":"109,-189v110,-23,131,153,49,188v-27,12,-67,4,-80,-13v-17,1,-8,44,-8,69v0,18,-27,10,-44,10v-8,-3,-7,-9,-7,-19r0,-220v-2,-17,39,-15,48,-5v-1,4,2,7,4,9v14,-5,22,-16,38,-19xm113,-33v58,3,59,-109,9,-118v-48,-8,-62,40,-51,84v5,20,16,33,42,34","w":219},"q":{"d":"16,-56v-30,-98,66,-170,133,-115v1,-18,28,-17,46,-14v6,1,5,11,5,18r0,223v-1,14,-21,9,-37,9v-30,0,-1,-59,-17,-80v-17,7,-28,20,-53,19v-46,-1,-66,-25,-77,-60xm96,-35v46,10,63,-40,51,-86v-6,-23,-31,-38,-57,-28v-38,15,-39,105,6,114","w":219},"r":{"d":"19,-176v3,-16,48,-15,48,-1v0,21,12,10,19,3v10,-10,24,-17,46,-16v12,4,14,59,-12,46v-65,-1,-45,80,-52,141v-11,5,-49,11,-49,-13r0,-160","w":140,"k":{"q":6,"o":6,"n":-6,"g":10,"e":6,"d":6,"c":6,".":33,"-":20,",":33}},"s":{"d":"13,-56v49,-24,50,39,100,25v11,-3,21,-12,17,-28v-29,-37,-123,-7,-114,-84v8,-68,149,-61,159,-2v3,19,-20,12,-39,13v-13,-13,-23,-30,-54,-24v-19,3,-17,29,0,34v43,12,111,14,99,77v-12,65,-148,66,-166,5v-1,-5,-4,-11,-2,-16","w":193},"t":{"d":"34,-135v0,-33,-41,3,-30,-45v4,-13,35,4,30,-22v2,-14,-7,-38,10,-39v15,3,43,-10,40,14v-3,26,-4,49,33,42v14,16,1,40,-27,34v-14,15,-3,64,-5,96v-1,16,15,18,31,18v21,23,-4,48,-41,38v-57,-1,-41,-76,-41,-136","w":126},"u":{"d":"20,-62v4,-44,-8,-100,6,-123v17,3,48,-11,44,16v7,52,-25,144,43,133v47,-8,25,-82,30,-140v0,-16,24,-7,41,-9v17,-2,9,27,9,42r0,134v1,15,-39,12,-47,3v1,-16,-13,-9,-19,-2v-42,29,-113,6,-107,-54","w":213},"v":{"d":"67,-2v-24,-57,-46,-121,-62,-180v10,-6,48,-10,53,7r32,103v18,5,17,-37,25,-53v9,-18,11,-41,20,-58v9,-4,25,-3,39,-3v17,25,-22,74,-26,108r-17,48v-4,15,-5,33,-26,30v-13,-1,-29,2,-38,-2","w":187,"k":{".":27,",":27}},"w":{"d":"11,-186v28,-1,52,-4,51,23v10,30,15,66,28,92v15,-20,15,-56,24,-83v5,-13,2,-36,24,-32v63,-10,37,72,65,114v21,-25,19,-81,37,-112v11,-2,53,-9,47,10r-54,168v-6,10,-25,4,-39,5v-38,-4,-20,-81,-47,-113v-17,25,-18,69,-30,102v0,17,-48,15,-58,4r-52,-163v-1,-5,-4,-15,4,-15","w":293,"k":{".":20,",":20}},"x":{"d":"64,-97v-10,-37,-46,-53,-51,-87v19,-4,55,-7,60,12v9,9,11,25,25,29v20,-11,16,-43,48,-43v16,0,43,-4,28,17v-17,23,-35,44,-47,71v17,35,46,61,60,94v-8,8,-37,4,-51,2v-17,-14,-22,-38,-39,-51v-24,19,-35,72,-91,49v15,-36,43,-58,58,-93","w":193},"y":{"d":"67,63v-28,3,-60,10,-51,-32v3,-20,64,3,48,-41r-59,-159v-1,-5,-8,-19,4,-17v29,-3,52,0,53,30r29,84v17,4,18,-37,26,-53v13,-29,5,-71,62,-61v11,2,4,14,2,20r-63,170v-10,26,-19,56,-51,59","w":186,"k":{".":27,",":27}},"z":{"d":"15,-156v1,-13,-4,-29,10,-30r138,0v32,60,-61,92,-81,144v18,9,59,1,88,4v14,1,13,38,0,38r-153,0v-17,-2,-10,-46,2,-51r79,-90v-7,-16,-46,-3,-71,-7v-7,1,-12,-2,-12,-8","w":186},"{":{"d":"30,-149v-5,-71,-2,-128,82,-114v10,2,10,33,2,39v-65,-10,-6,101,-58,125v28,14,25,57,25,103v0,16,12,21,30,21v13,-1,11,31,3,39v-52,5,-84,-7,-84,-63v0,-20,0,-42,-1,-60v-2,-26,-39,-13,-32,-46v4,-19,35,-15,33,-44","w":119},"|":{"d":"59,68v-3,15,-44,13,-38,-5r0,-330v-2,-19,14,-15,31,-15v10,1,6,16,7,27r0,323","w":80},"}":{"d":"90,-159v-4,33,20,37,32,52v7,37,-39,21,-32,73v9,67,-11,112,-82,98v-12,0,-11,-32,-2,-38v64,7,6,-99,58,-126v-31,-12,-26,-60,-26,-103v0,-34,-46,0,-38,-50v3,-16,25,-10,42,-10v49,0,54,51,48,104","w":119},"~":{"d":"38,-66v-28,-26,7,-67,47,-54v30,11,70,36,90,3v31,20,3,65,-37,57v-26,-6,-42,-28,-76,-23v-11,2,-14,16,-24,17","w":216},"\u00c4":{"d":"156,-249r89,244v-8,10,-64,11,-60,-13v-8,-15,-5,-39,-28,-40r-70,0v-38,7,-3,72,-74,58v-12,2,-13,-10,-8,-18r91,-237v16,-2,55,-9,60,6xm93,-102v21,4,72,13,57,-18v-10,-21,-12,-49,-27,-65v-15,23,-24,54,-30,83xm69,-328v32,-5,48,3,40,37v-6,7,-51,13,-47,-9v1,-11,-4,-26,7,-28xm143,-328v30,-6,51,5,38,39v-20,7,-56,9,-45,-31v0,-5,3,-6,7,-8","w":246},"\u00c5":{"d":"156,-249r89,244v-8,10,-64,11,-60,-13v-8,-15,-5,-39,-28,-40r-70,0v-38,7,-3,72,-74,58v-12,2,-13,-10,-8,-18r91,-237v16,-2,55,-9,60,6xm93,-102v21,4,72,13,57,-18v-10,-21,-12,-49,-27,-65v-15,23,-24,54,-30,83xm79,-312v3,-49,90,-51,87,5v-1,29,-21,47,-50,43v-23,-3,-39,-23,-37,-48xm120,-332v-28,3,-25,55,5,50v29,-3,27,-53,-5,-50","w":246},"\u00c7":{"d":"133,36v-40,4,-6,-23,-18,-33v-120,-7,-122,-203,-44,-247v65,-37,170,-12,178,65v-2,14,-31,7,-49,7v-15,-23,-34,-50,-76,-42v-72,13,-75,168,10,172v40,2,56,-25,67,-54v13,-5,62,-11,48,18v-12,52,-48,78,-107,85v-8,7,2,11,10,11v36,1,28,56,0,58v-21,7,-70,1,-52,-20v15,2,44,10,42,-12v-1,-4,-4,-7,-9,-8","w":266},"\u00c9":{"d":"25,-219v2,-15,-7,-38,10,-38r174,1v13,3,6,25,7,39v-3,13,-27,7,-41,7r-86,1v-16,2,-6,32,-7,50v23,12,75,2,115,5v13,1,8,25,7,37v0,10,-16,6,-28,6r-86,0v-17,2,-6,35,-9,56v1,13,23,8,36,8r92,0v16,0,8,22,10,39v-2,15,-28,8,-43,8r-144,-1v-14,-1,-7,-27,-7,-41r0,-177xm130,-285v-13,9,-48,4,-28,-13v12,-9,11,-30,30,-33v13,2,33,-4,40,3v-9,19,-29,28,-42,43","w":233},"\u00d1":{"d":"25,-204v3,-19,-8,-49,10,-53v20,1,47,-5,53,11r96,151v12,-2,5,-28,5,-43r0,-108v1,-17,29,-10,47,-10v12,7,6,37,6,57r0,189v-3,18,-60,15,-64,-3r-91,-145v-3,-7,-9,-3,-9,2r-1,144v2,20,-27,10,-46,11v-12,-9,-6,-39,-6,-59r0,-144xm96,-325v34,-10,63,24,88,-3v19,-2,9,16,4,26v-19,38,-76,-16,-97,13v-3,8,-26,5,-19,-7v4,-13,12,-26,24,-29","w":266},"\u00d6":{"d":"213,-241v98,69,49,282,-111,242v-92,-23,-113,-176,-43,-236v33,-28,115,-34,154,-6xm75,-92v23,85,145,51,136,-35v-5,-53,-24,-94,-83,-88v-51,6,-67,69,-53,123xm86,-328v30,-4,49,-1,40,37v-14,12,-61,9,-46,-28v0,-6,2,-7,6,-9xm160,-328v30,-7,52,6,38,39v-20,8,-58,6,-44,-31v0,-5,2,-6,6,-8","w":280},"\u00dc":{"d":"121,-328r0,42r-49,0r0,-42r49,0xm195,-328r0,42r-49,0r0,-42r49,0xm242,-114v4,79,-31,117,-104,119v-81,2,-114,-38,-114,-120r0,-133v2,-17,29,-6,48,-9v14,6,7,36,8,56v5,70,-24,182,74,157v59,-15,25,-122,32,-201v2,-20,27,-9,48,-12v17,7,8,47,8,70r0,73","w":266},"\u00e1":{"d":"23,-130v52,14,44,-31,88,-26v17,2,26,13,23,29v-24,37,-133,-2,-121,88v7,53,86,49,122,27v5,14,24,13,45,12v19,-1,1,-26,6,-46r-1,-96v-5,-71,-151,-58,-163,-7v-3,3,-6,18,1,19xm63,-49v-7,-35,52,-38,71,-33v4,31,-8,51,-36,53v-18,1,-33,-5,-35,-20xm116,-214v-11,12,-49,5,-28,-12v8,-23,34,-45,70,-31v-8,21,-28,29,-42,43","w":206},"\u00e0":{"d":"23,-130v52,14,44,-31,88,-26v17,2,26,13,23,29v-24,37,-133,-2,-121,88v7,53,86,49,122,27v5,14,24,13,45,12v19,-1,1,-26,6,-46r-1,-96v-5,-71,-151,-58,-163,-7v-3,3,-6,18,1,19xm63,-49v-7,-35,52,-38,71,-33v4,31,-8,51,-36,53v-18,1,-33,-5,-35,-20xm124,-212v-36,12,-55,-24,-74,-40v-3,-4,1,-9,7,-8v43,-7,61,21,67,48","w":206},"\u00e2":{"d":"23,-130v52,14,44,-31,88,-26v17,2,26,13,23,29v-24,37,-133,-2,-121,88v7,53,86,49,122,27v5,14,24,13,45,12v19,-1,1,-26,6,-46r-1,-96v-5,-71,-151,-58,-163,-7v-3,3,-6,18,1,19xm63,-49v-7,-35,52,-38,71,-33v4,31,-8,51,-36,53v-18,1,-33,-5,-35,-20xm69,-209v-10,-1,-28,2,-19,-13v14,-22,40,-53,80,-33v9,15,26,24,29,43v-16,7,-45,1,-48,-15v-16,-20,-22,19,-42,18","w":206},"\u00e4":{"d":"111,-156v-28,-3,-37,12,-48,26v-48,15,-51,-28,-18,-46v45,-24,139,-24,141,50r3,120v-6,12,-50,10,-54,-6v-46,35,-152,11,-118,-65v14,-28,52,-28,88,-34v32,4,42,-41,6,-45xm63,-49v16,38,82,20,72,-29v-4,-18,-36,-2,-51,0v-14,1,-23,11,-21,29xm50,-256v29,-8,50,5,39,36v-13,11,-59,12,-46,-28v0,-6,2,-6,7,-8xm123,-256v31,-9,52,6,39,39v-20,6,-58,7,-45,-31v0,-5,1,-6,6,-8","w":206},"\u00e3":{"d":"23,-130v52,14,44,-31,88,-26v17,2,26,13,23,29v-24,37,-133,-2,-121,88v7,53,86,49,122,27v5,14,24,13,45,12v19,-1,1,-26,6,-46r-1,-96v-5,-71,-151,-58,-163,-7v-3,3,-6,18,1,19xm63,-49v-7,-35,52,-38,71,-33v4,31,-8,51,-36,53v-18,1,-33,-5,-35,-20xm121,-246v14,7,21,-9,33,-11v9,-1,14,4,11,14v-12,39,-58,21,-94,15v-8,5,-18,21,-30,11v4,-23,15,-39,41,-39v17,0,24,9,39,10","w":206},"\u00e5":{"d":"111,-156v-28,-3,-37,12,-48,26v-48,15,-51,-28,-18,-46v45,-24,139,-24,141,50r3,120v-6,12,-50,10,-54,-6v-46,35,-152,11,-118,-65v14,-28,52,-28,88,-34v32,4,42,-41,6,-45xm63,-49v16,38,82,20,72,-29v-4,-18,-36,-2,-51,0v-14,1,-23,11,-21,29xm59,-241v3,-49,91,-51,88,5v-1,29,-22,48,-51,43v-23,-4,-39,-21,-37,-48xm99,-261v-26,3,-23,55,7,50v14,-2,21,-11,20,-28v-1,-15,-11,-24,-27,-22","w":206},"\u00e7":{"d":"81,1v-89,-9,-87,-191,15,-191v55,0,91,15,98,63v-4,11,-29,4,-42,6v-14,-13,-20,-38,-53,-30v-53,13,-44,133,19,117v26,-7,32,-58,77,-31v-6,45,-38,65,-83,71v-5,4,-6,12,4,12v21,0,33,9,31,33v-2,31,-61,34,-82,18v-3,-30,45,10,47,-24v-6,-15,-49,-4,-22,-35v1,-6,-3,-8,-9,-9","w":206},"\u00e9":{"d":"165,-81v23,3,34,-2,29,-30v-9,-57,-58,-92,-124,-74v-75,20,-74,163,-1,183v52,14,111,-5,120,-50v-3,-8,-17,-5,-29,-6v-25,6,-35,34,-72,22v-16,-5,-38,-36,-16,-45r93,0xm64,-118v-5,-38,63,-47,75,-14v8,10,2,23,-16,19v-19,-4,-50,6,-59,-5xm116,-214v-11,12,-49,5,-28,-12v8,-23,34,-45,70,-31v-8,21,-28,29,-42,43","w":206},"\u00e8":{"d":"165,-81v23,3,34,-2,29,-30v-9,-57,-58,-92,-124,-74v-75,20,-74,163,-1,183v52,14,111,-5,120,-50v-3,-8,-17,-5,-29,-6v-25,6,-35,34,-72,22v-16,-5,-38,-36,-16,-45r93,0xm64,-118v-5,-38,63,-47,75,-14v8,10,2,23,-16,19v-19,-4,-50,6,-59,-5xm124,-212v-36,12,-55,-24,-74,-40v-3,-4,1,-9,7,-8v43,-7,61,21,67,48","w":206},"\u00ea":{"d":"165,-81v23,3,34,-2,29,-30v-9,-57,-58,-92,-124,-74v-75,20,-74,163,-1,183v52,14,111,-5,120,-50v-3,-8,-17,-5,-29,-6v-25,6,-35,34,-72,22v-16,-5,-38,-36,-16,-45r93,0xm64,-118v-5,-38,63,-47,75,-14v8,10,2,23,-16,19v-19,-4,-50,6,-59,-5xm47,-213v11,-29,40,-62,84,-42v9,14,23,25,29,42v-23,12,-48,-7,-57,-21v-16,9,-27,36,-56,21","w":206},"\u00eb":{"d":"70,-185v71,-22,130,20,125,97v-1,10,-18,6,-30,7v-32,4,-78,-7,-102,6v-2,28,21,44,51,41v26,-3,42,-40,75,-18v-8,61,-115,72,-154,27v-19,-22,-32,-71,-17,-107v10,-25,26,-45,52,-53xm66,-131v-7,12,1,20,18,18v18,-3,44,4,57,-3v6,-25,-23,-43,-51,-35v-11,3,-19,10,-24,20xm50,-256v29,-8,50,5,39,36v-13,11,-59,12,-46,-28v0,-6,2,-6,7,-8xm123,-256v31,-9,52,6,39,39v-20,6,-58,7,-45,-31v0,-5,1,-6,6,-8","w":206},"\u00ed":{"d":"21,-17v-5,23,24,17,44,16v8,-3,7,-9,7,-19r-1,-157v1,-15,-27,-8,-42,-8v-8,0,-8,9,-8,16r0,152xm60,-214v-12,10,-50,6,-29,-12v8,-24,34,-45,71,-31v-8,20,-30,27,-42,43","w":92},"\u00ec":{"d":"21,-17v-5,23,24,17,44,16v8,-3,7,-9,7,-19r-1,-157v1,-15,-27,-8,-42,-8v-8,0,-8,9,-8,16r0,152xm23,-260v29,0,32,28,45,45v-31,19,-61,-20,-77,-41v5,-7,21,-4,32,-4","w":92},"\u00ee":{"d":"21,-17v-5,23,24,17,44,16v8,-3,7,-9,7,-19r-1,-157v1,-15,-27,-8,-42,-8v-8,0,-8,9,-8,16r0,152xm-10,-213v11,-29,40,-62,84,-42v8,15,27,26,28,44v-29,6,-43,-7,-56,-23v-16,10,-27,36,-56,21","w":92},"\u00ef":{"d":"21,-176v2,-17,50,-15,50,-1r0,169v-2,13,-57,16,-50,-9r0,-159xm-7,-256v31,-7,48,3,40,36v-13,11,-60,12,-47,-28v0,-6,2,-6,7,-8xm67,-256v30,-9,51,6,38,39v-20,5,-56,9,-45,-31v0,-6,2,-6,7,-8","w":92},"\u00f1":{"d":"68,-172v14,10,29,-25,57,-18v88,-7,68,94,68,181v0,15,-28,8,-43,8v-30,-25,32,-163,-51,-149v-46,8,-29,82,-29,139v0,18,-24,9,-42,11v-17,-7,-4,-49,-8,-73v3,-35,-6,-83,4,-111v14,-1,46,-10,44,12xm124,-246v14,6,21,-9,33,-11v9,-1,14,4,11,14v-12,39,-58,21,-94,15v-7,6,-18,21,-30,11v4,-23,15,-39,41,-39v17,0,24,9,39,10","w":213},"\u00f3":{"d":"139,1v102,-25,83,-205,-45,-191v-97,11,-104,168,-20,189v18,5,46,8,65,2xm95,-150v48,-14,68,34,57,82v-5,23,-23,38,-52,34v-46,-8,-49,-104,-5,-116xm123,-214v-11,12,-49,4,-28,-12v8,-23,34,-45,70,-31v-8,21,-28,28,-42,43","w":219},"\u00f2":{"d":"139,1v102,-25,83,-205,-45,-191v-97,11,-104,168,-20,189v18,5,46,8,65,2xm95,-150v48,-14,68,34,57,82v-5,23,-23,38,-52,34v-46,-8,-49,-104,-5,-116xm131,-212v-32,12,-76,-29,-71,-48r34,0v20,8,29,27,37,48","w":219},"\u00f4":{"d":"139,1v102,-25,83,-205,-45,-191v-97,11,-104,168,-20,189v18,5,46,8,65,2xm95,-150v48,-14,68,34,57,82v-5,23,-23,38,-52,34v-46,-8,-49,-104,-5,-116xm54,-213v11,-29,40,-62,84,-42v8,16,24,24,29,42v-19,11,-47,-3,-53,-18v-19,-7,-26,38,-60,18","w":219},"\u00f6":{"d":"37,-160v69,-71,205,-3,160,112v-22,55,-120,68,-160,23v-27,-30,-29,-105,0,-135xm67,-68v15,60,88,35,88,-25v0,-38,-20,-67,-60,-57v-30,8,-37,49,-28,82xm56,-256v28,-7,50,1,40,36v-12,12,-62,10,-46,-28v0,-5,1,-6,6,-8xm123,-248v17,-24,67,-5,45,31v-19,5,-56,9,-45,-31","w":219},"\u00f5":{"d":"139,1v102,-25,83,-205,-45,-191v-97,11,-104,168,-20,189v18,5,46,8,65,2xm95,-150v48,-14,68,34,57,82v-5,23,-23,38,-52,34v-46,-8,-49,-104,-5,-116xm127,-246v14,7,21,-9,33,-11v9,-1,14,4,11,14v-12,39,-58,21,-94,15v-7,6,-18,21,-30,11v4,-23,15,-39,41,-39v17,0,24,9,39,10","w":219},"\u00fa":{"d":"20,-62v4,-44,-8,-100,6,-123v17,3,48,-11,44,16v7,52,-25,144,43,133v47,-8,25,-82,30,-140v0,-16,24,-7,41,-9v17,-2,9,27,9,42r0,134v1,15,-39,12,-47,3v1,-16,-13,-9,-19,-2v-42,29,-113,6,-107,-54xm120,-214v-12,10,-50,6,-29,-12v8,-24,34,-45,71,-31v-8,20,-30,27,-42,43","w":213},"\u00f9":{"d":"20,-62v4,-44,-8,-100,6,-123v17,3,48,-11,44,16v7,52,-25,144,43,133v47,-8,25,-82,30,-140v0,-16,24,-7,41,-9v17,-2,9,27,9,42r0,134v1,15,-39,12,-47,3v1,-16,-13,-9,-19,-2v-42,29,-113,6,-107,-54xm127,-212v-31,12,-75,-29,-70,-48r34,0v19,8,32,29,36,48","w":213},"\u00fb":{"d":"20,-62v4,-44,-8,-100,6,-123v17,3,48,-11,44,16v7,52,-25,144,43,133v47,-8,25,-82,30,-140v0,-16,24,-7,41,-9v17,-2,9,27,9,42r0,134v1,15,-39,12,-47,3v1,-16,-13,-9,-19,-2v-42,29,-113,6,-107,-54xm73,-209v-10,0,-28,2,-19,-13v14,-22,40,-53,80,-33v9,15,26,24,29,43v-12,5,-43,3,-45,-11v-4,-4,-6,-9,-12,-11v-14,5,-15,25,-33,25","w":213},"\u00fc":{"d":"20,-62v4,-44,-8,-100,6,-123v17,3,48,-11,44,16v7,52,-25,144,43,133v47,-8,25,-82,30,-140v0,-16,24,-7,41,-9v17,-2,9,27,9,42r0,134v1,15,-39,12,-47,3v1,-16,-13,-9,-19,-2v-42,29,-113,6,-107,-54xm53,-256v28,-7,49,2,39,36v-13,11,-59,12,-46,-28v0,-6,2,-6,7,-8xm126,-256v32,-9,51,7,39,39v-20,6,-58,7,-45,-31v0,-5,1,-6,6,-8","w":213},"\u2020":{"d":"76,-120v3,-64,-81,20,-67,-56v3,-19,37,-4,59,-10v26,-7,-23,-88,49,-70v15,7,3,39,7,61v3,18,36,6,57,9v15,-1,12,31,6,40v-16,11,-63,-19,-63,26r0,169v0,16,-23,8,-40,10v-16,-3,-8,-33,-8,-50r0,-129"},"\u00b0":{"d":"19,-200v0,-35,20,-53,49,-57v65,-9,76,92,18,104v-36,7,-67,-13,-67,-47xm68,-172v22,0,32,-12,34,-32v2,-35,-50,-40,-58,-9v-5,21,8,36,24,41","w":144},"\u00a2":{"d":"145,-63v2,-16,34,-11,48,-7v1,40,-32,66,-70,73v-19,-1,4,54,-29,33v-4,-10,6,-35,-14,-33v-49,-11,-81,-55,-70,-117v7,-43,34,-70,75,-76v17,-2,-1,-30,17,-31v23,-2,-1,38,36,33v27,11,55,28,55,62v-9,12,-52,9,-52,-9v-4,-8,-20,-22,-27,-10v3,35,-7,83,5,109v14,-4,24,-13,26,-27xm88,-37v9,-1,6,-15,6,-25v0,-28,3,-62,-3,-86v-46,1,-41,103,-3,111"},"\u00a3":{"d":"145,-181v0,-45,-71,-56,-74,-9v-1,33,13,58,53,48v17,6,12,35,-9,30v-31,-7,-7,40,-30,58v-4,10,5,8,14,8v25,0,57,15,76,0v13,-7,28,19,24,32v-39,45,-110,-13,-162,15v-13,1,-33,-27,-16,-36v20,-10,46,-60,14,-77v-17,2,-33,1,-26,-23v-2,-11,22,-1,15,-17v-6,-14,-11,-31,-8,-52v10,-74,149,-77,170,-11v4,13,16,47,-11,41v-11,-2,-30,4,-30,-7"},"\u00a7":{"d":"171,-195v-50,12,-35,-33,-70,-30v-16,1,-28,13,-24,31v32,47,128,35,117,121v-3,21,-37,26,-24,47v42,67,-64,120,-126,73v-11,-9,-30,-33,-17,-50v11,0,24,-2,34,0v5,27,62,47,67,5v-24,-59,-156,-46,-114,-146v9,-13,35,-21,16,-40v-12,-48,24,-79,70,-79v45,0,72,21,77,61v0,4,-2,7,-6,7xm116,-68v21,15,46,-3,32,-26v-26,-15,-58,-49,-91,-42v-27,37,34,50,59,68"},"\u2022":{"d":"99,-65v-74,15,-100,-109,-28,-125v48,-12,89,23,81,73v-5,29,-25,45,-53,52","w":180},"\u00b6":{"d":"80,-77v-2,-27,11,-58,-26,-54v-37,-6,-62,-36,-50,-82v16,-60,109,-43,183,-43v14,9,6,47,6,70r-1,237v0,12,-15,7,-26,8v-20,-5,-4,-42,-9,-64r-1,-216v0,-10,-17,-7,-28,-7v-22,0,-11,40,-11,62r0,214v1,14,-18,12,-31,10v-12,-5,-6,-29,-6,-44r0,-91","w":223},"\u00df":{"d":"21,-174v-15,-99,148,-121,164,-34v6,33,-10,48,-24,64v22,16,44,36,38,78v-7,46,-45,80,-101,68v-7,-6,-13,-46,10,-39v49,2,55,-87,8,-87v-16,0,-23,0,-23,-24v0,-6,4,-9,10,-9v39,4,47,-57,12,-63v-72,-12,-36,101,-44,166v4,33,3,66,-45,53v-14,-36,4,-115,-5,-173","w":219},"\u00ae":{"d":"193,-254v131,38,104,259,-64,259v-134,0,-161,-209,-48,-254v28,-11,78,-15,112,-5xm71,-203v-64,73,-6,212,108,175v59,-19,84,-111,44,-168v-29,-41,-116,-48,-152,-7xm145,-107v0,-10,-22,-18,-25,-1v-3,21,15,59,-21,54v-10,-1,-8,-11,-8,-21r1,-126v46,-9,131,-8,112,56v-2,21,-44,18,-27,42v10,14,19,28,25,45v-6,8,-30,5,-31,-5xm130,-181v-18,5,-15,50,10,40v33,9,51,-32,17,-39","w":288},"\u00a9":{"d":"9,-157v24,-151,273,-134,273,39v0,139,-222,158,-263,47v-9,-23,-15,-55,-10,-86xm237,-174v-51,-113,-237,-48,-189,79v11,71,124,94,172,38v21,-24,34,-80,17,-117xm163,-180v-63,-18,-74,85,-27,99v25,7,44,-6,51,-23v7,-4,30,-7,24,9v-11,30,-35,51,-77,44v-44,-7,-66,-48,-59,-102v8,-65,122,-77,136,-12v3,13,-12,11,-22,9v-8,-8,-14,-21,-26,-24","w":288},"\u2122":{"d":"128,-257v16,-2,21,25,8,28v-15,4,-36,-7,-36,17r0,96v-4,12,-41,12,-36,-7r0,-97v-1,-23,-51,10,-41,-32v24,-12,72,0,105,-5xm242,-109v-25,-15,-20,-72,-43,-88v-8,17,4,67,-7,87v-14,0,-30,6,-30,-13r1,-125v3,-18,58,-13,54,9v10,23,18,50,30,71v23,-21,21,-67,42,-88v17,3,44,-12,44,15r0,124v1,12,-15,7,-27,8v-18,-16,5,-65,-11,-89v-19,24,-18,69,-41,89r-12,0","w":360},"\u00b4":{"d":"59,-214v-12,12,-49,4,-28,-12v8,-23,34,-45,70,-31v-8,20,-28,29,-42,43","w":93},"\u00a8":{"d":"-7,-256v31,-7,48,3,40,36v-13,11,-60,12,-47,-28v0,-6,2,-6,7,-8xm67,-256v30,-9,51,6,38,39v-20,5,-56,9,-45,-31v0,-6,2,-6,7,-8","w":93},"\u2260":{"d":"5,-134v-2,-10,13,-10,24,-10v35,0,87,15,91,-25v11,-22,15,-51,31,-68v11,1,4,17,1,21v-5,23,-26,49,-21,71v16,8,61,-12,60,13v-16,15,-71,-13,-79,20v-4,16,-13,27,-16,45v19,12,58,2,89,5v5,0,7,4,7,10v-20,23,-104,-19,-114,26v-10,22,-17,48,-29,68v0,2,-3,5,-7,3v-3,-29,20,-55,27,-82v1,-23,-52,4,-64,-16v6,-27,71,12,80,-25v4,-16,13,-28,16,-45v-15,-13,-61,0,-89,-6v-4,0,-6,-1,-7,-5","w":197},"\u00c6":{"d":"323,-47v23,-4,19,20,17,39v0,8,-8,8,-16,8r-152,0v-24,0,10,-57,-24,-57v-28,0,-67,-11,-75,18v-7,24,-15,48,-61,39v-22,2,-7,-19,-3,-28r109,-226v61,-9,143,0,212,-3v15,7,12,61,-20,46r-84,1v-16,2,-8,32,-8,50v22,14,69,1,104,6v12,2,7,20,8,31v2,15,-13,12,-27,12r-76,0v-18,2,-7,32,-10,54v2,13,18,10,33,10r73,0xm108,-100v26,1,60,10,55,-22v-4,-27,3,-61,-2,-85v-31,3,-38,73,-57,98v-2,4,1,9,4,9","w":353},"\u00d8":{"d":"240,-215v14,25,26,51,26,91v0,111,-118,162,-204,106v-19,4,-26,40,-45,18v0,-21,39,-33,13,-57v-24,-40,-16,-121,7,-153v25,-35,78,-63,137,-48v22,1,30,17,48,19v13,-6,26,-38,41,-15v2,18,-23,22,-23,39xm181,-202v-67,-45,-135,31,-105,114v24,7,38,-37,58,-50v16,-20,36,-35,49,-57v0,-3,0,-5,-2,-7xm98,-57v61,53,143,-32,103,-113v-41,25,-68,73,-102,106v-1,2,-2,5,-1,7","w":280},"\u221e":{"d":"121,-129v17,-52,120,-44,123,15v29,74,-76,134,-110,55v-2,-8,-13,-3,-14,2v-31,58,-130,18,-107,-57v9,-29,35,-51,69,-39v18,1,25,39,39,24xm52,-42v39,3,50,-29,57,-62v-10,-55,-98,-43,-90,16v3,24,13,39,33,46xm135,-75v14,58,114,46,103,-22v4,-48,-64,-76,-86,-32v-5,18,-22,33,-17,54","w":256},"\u00b1":{"d":"90,-55v12,-86,-78,0,-73,-69v1,-21,37,-7,61,-11v28,2,-13,-63,44,-46v17,5,-12,52,25,46v25,2,58,-12,52,28v-4,20,-38,6,-61,10v-27,-3,12,60,-41,47v-3,0,-6,-2,-7,-5xm28,-38v57,4,135,-9,170,6v1,17,5,32,-16,32r-156,-1v-12,0,-9,-17,-9,-29v0,-6,5,-7,11,-8","w":216},"\u2264":{"d":"67,-148v-11,6,-47,14,-27,23r150,65v4,6,0,15,-10,11r-175,-77v-2,-21,25,-22,40,-29r139,-59v17,9,-1,18,-11,22xm21,28v-15,5,-24,-16,-7,-16r175,2v9,9,-2,15,-13,14r-155,0","w":197},"\u2265":{"d":"128,-113v11,-5,49,-15,26,-25r-147,-62v-8,-7,2,-19,10,-12r172,74v9,22,-20,25,-35,31r-144,60v-15,-13,7,-20,20,-25xm20,28v-15,4,-23,-15,-6,-16r175,2v8,8,-2,14,-13,14r-156,0","w":197},"\u00a5":{"d":"18,-120v-7,-43,50,-10,21,-52v-12,-28,-28,-51,-37,-82v19,-7,62,-7,61,17v14,27,23,59,39,84v24,-26,28,-73,49,-102v14,-4,67,-8,47,17r-42,88v4,13,37,-6,30,29v0,26,-59,-11,-57,30v5,19,77,-13,52,40v-31,0,-62,-8,-52,42v-3,15,-32,8,-49,8v-15,-6,11,-49,-21,-49v-21,0,-45,8,-41,-25v3,-21,80,8,49,-35v-17,-3,-46,7,-49,-10"},"\u00b5":{"d":"20,-134v3,-17,-9,-48,9,-51v18,2,45,-8,42,16v8,51,-26,146,44,133v44,-8,28,-82,28,-139v0,-17,25,-8,43,-10v11,0,7,13,8,23r-2,159v-14,7,-49,6,-50,-14v-18,8,-33,29,-62,19v-28,0,23,78,-47,63v-24,1,-13,-37,-13,-58r0,-141","w":213},"\u2202":{"d":"90,2v-54,17,-89,-26,-74,-86v15,-58,93,-99,145,-52v31,-60,-57,-124,-105,-67v-3,3,-9,1,-6,-5v12,-20,25,-40,56,-41v70,-2,78,75,64,139v-11,51,-32,97,-80,112xm159,-104v9,-51,-79,-58,-95,-19v-26,27,-40,139,27,116v39,-13,61,-53,68,-97","w":177},"\u2211":{"d":"245,10v1,24,5,67,-25,67r-208,-1v-3,-22,22,-40,34,-56r77,-106v-33,-56,-76,-101,-112,-153v-3,-5,0,-11,7,-10r199,0v23,-4,19,33,15,52v-9,-24,-24,-42,-62,-38v-35,4,-79,-5,-108,3v24,51,66,82,90,131v-32,50,-69,91,-101,139v-2,14,26,6,42,8v56,-5,132,18,147,-32v1,-3,3,-4,5,-4","w":256},"\u220f":{"d":"78,-13v0,37,-6,79,22,87v-23,2,-59,7,-80,-1v29,-5,23,-45,23,-81r-1,-216v-2,-12,-14,-16,-22,-23v76,-5,166,-1,244,-2v8,0,16,3,5,7v-24,8,-16,48,-16,77r1,215v1,14,13,18,22,24v-19,4,-61,6,-81,-1v30,-4,23,-45,23,-81r0,-215v2,-18,-18,-14,-34,-14r-98,1v-10,1,-8,12,-8,22r0,201","w":296},"\u03c0":{"d":"56,-121v0,-33,-39,-3,-49,4v2,-24,18,-44,47,-43r118,2v8,15,-5,28,-25,22v-29,5,-17,61,-17,97v0,19,28,19,36,7v0,-1,3,-4,4,-3v2,21,-12,40,-36,39v-55,-3,-22,-84,-26,-134v-16,-15,-45,-2,-38,28v-10,38,6,106,-41,105v-7,-3,-14,-9,-11,-21v17,-30,38,-57,38,-103","w":181},"\u222b":{"d":"42,4v5,-104,-38,-276,28,-331v15,-1,25,5,26,17v2,23,-20,15,-37,13v-10,84,23,243,-15,322v-9,19,-49,13,-43,-12v5,-22,30,-1,41,-9","w":98},"\u00aa":{"d":"117,-173v9,38,-18,39,-39,29v-27,17,-83,9,-73,-35v6,-26,36,-25,63,-30v10,0,17,-7,13,-17v-9,-15,-35,-6,-39,6v-13,7,-42,3,-27,-17v22,-30,114,-28,102,24r0,40xm80,-188v-21,-7,-55,16,-27,29v20,5,36,-13,27,-29","w":123},"\u00ba":{"d":"84,-138v-53,9,-86,-24,-76,-78v7,-38,62,-52,95,-32v38,22,30,102,-19,110xm44,-185v8,36,47,22,46,-9v6,-34,-41,-51,-46,-13v-1,8,-1,15,0,22","w":132},"\u03a9":{"d":"20,-139v-7,-126,203,-132,231,-33v18,64,-19,115,-65,130v6,12,34,2,54,5v14,2,18,-26,24,-9v-2,20,11,50,-22,46v-26,-3,-60,3,-81,-4v-1,-23,-2,-50,18,-54v69,-44,35,-207,-72,-167v-58,22,-56,149,-5,169v16,6,15,33,15,52v-20,7,-78,8,-103,-1v1,-15,-4,-36,2,-47v9,15,51,22,75,12v1,-4,-2,-5,-5,-5v-38,-15,-63,-43,-66,-94","w":276},"\u00e6":{"d":"21,-135v3,-55,75,-65,125,-48v33,29,76,-31,127,3v25,17,50,60,39,98v-36,2,-77,-1,-115,1v-25,2,-6,33,4,42v8,9,30,13,44,7v14,-10,32,-40,66,-22v-6,63,-111,74,-150,32v-38,37,-167,40,-144,-47v9,-34,48,-35,83,-42v32,5,55,-35,19,-45v-25,-7,-44,5,-50,23v-8,8,-30,4,-44,3v-2,0,-5,-2,-4,-5xm66,-49v14,36,82,20,73,-26v-8,-20,-80,-7,-73,26xm192,-113v28,-5,83,16,69,-22v-13,-35,-80,-23,-76,17v1,3,4,5,7,5","w":326},"\u00f8":{"d":"182,-189v5,-7,18,0,14,8v-28,30,22,64,6,120v-18,64,-96,76,-154,52v-8,4,-20,27,-28,8v1,-11,12,-13,14,-23v-25,-35,-29,-115,8,-142v23,-30,93,-29,126,-11v7,-1,11,-11,14,-12xm136,-139v-26,-35,-83,0,-72,52v-1,25,19,18,26,3v15,-19,33,-34,46,-55xm83,-44v40,34,89,-18,68,-73v-25,1,-43,45,-63,60v-2,3,-7,8,-5,13","w":219},"\u00bf":{"d":"68,3v9,45,69,24,68,-15v4,-10,42,-10,51,0v-6,50,-31,76,-83,82v-89,10,-121,-93,-58,-133v14,-9,31,-20,31,-41v0,-17,25,-10,41,-10v23,28,-17,69,-38,83v-9,6,-15,18,-12,34xm130,-145v-5,17,-66,16,-55,-10v2,-15,-8,-39,15,-36v17,3,40,-10,40,16r0,30"},"\u00a1":{"d":"63,-106v6,52,15,103,13,162v0,16,-29,9,-45,9v-20,-41,1,-130,9,-177v7,-3,24,-4,23,6xm71,-136v-19,-3,-51,11,-49,-14v2,-17,-9,-45,16,-41v17,3,42,-8,40,16v-1,14,5,35,-7,39","w":100},"\u00ac":{"d":"24,-108v-10,-6,-11,-37,3,-38r162,0v22,12,2,64,10,100v0,14,-16,9,-30,10v-28,-8,26,-72,-45,-72r-100,0","w":216},"\u221a":{"d":"152,-127v16,-64,15,-146,38,-201v5,95,-44,219,-44,320v0,14,-11,11,-13,2r-73,-151v-9,-17,-31,12,-41,1v6,-15,35,-28,51,-25r64,127v17,-6,12,-49,18,-73","w":197},"\u0192":{"d":"76,-165v8,-59,25,-109,98,-97v16,7,8,45,-17,37v-27,5,-23,38,-29,64v6,12,44,-4,29,30v1,12,-14,9,-25,9v-23,2,-18,34,-22,57v-11,64,-22,148,-109,121v0,-15,0,-38,22,-34v40,-15,28,-85,43,-132v7,-23,-38,2,-27,-28v-5,-26,35,-8,37,-27"},"\u2248":{"d":"9,-139v-9,-51,66,-48,98,-24v28,19,70,15,82,-14v4,24,-19,45,-49,41v-39,-6,-74,-44,-114,-24v-8,4,-8,18,-17,21xm9,-53v-9,-51,66,-47,98,-24v25,18,72,19,80,-14v10,19,-17,46,-47,41v-39,-7,-74,-44,-114,-24v-8,4,-8,18,-17,21","w":197},"\u2206":{"d":"9,-8r105,-227v15,9,17,32,24,49r70,168v5,6,6,21,-10,17r-186,0v-3,-1,-4,-4,-3,-7xm154,-14v29,3,11,-24,5,-38r-51,-122v-14,-7,-17,24,-24,33r-53,121v0,6,7,6,14,6r109,0","w":220},"\u00ab":{"d":"144,-62v0,13,3,33,-12,22v-23,-17,-60,-41,-39,-86v16,-11,30,-28,48,-35v8,14,3,46,-12,48v-5,4,-11,8,-13,15v6,16,28,14,28,36xm43,-99v13,16,41,35,24,63v-30,-13,-68,-42,-47,-90v16,-11,29,-29,48,-35v7,11,5,42,-8,45v-5,7,-15,8,-17,17","w":159},"\u00bb":{"d":"15,-134v0,-11,-3,-33,13,-22v23,16,60,40,39,86v-18,8,-30,36,-50,32r-1,-22v-2,-26,25,-18,27,-40v-7,-13,-28,-14,-28,-34xm92,-36v-24,-40,49,-55,11,-76v-12,-4,-21,-33,-10,-48v21,10,35,25,51,39v1,25,4,54,-16,60v-12,8,-21,22,-36,25","w":159},"\u2026":{"d":"207,-8v-8,13,-61,16,-55,-8v3,-14,-8,-41,10,-39v17,2,47,-10,46,14v0,11,1,24,-1,33xm319,-1v-19,1,-51,9,-48,-15v2,-15,-7,-41,11,-39v17,2,47,-10,45,14v-2,14,6,39,-8,40xm88,-15v2,24,-52,20,-56,6v3,-16,-9,-45,10,-46v17,3,46,-10,46,14r0,26","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"187,-11v10,21,77,16,54,-10r-85,-228v-7,-14,-42,-8,-60,-6r-94,250v6,9,31,4,46,4v27,-10,5,-65,52,-57v27,5,72,-12,77,18xm113,-165v0,-13,16,-29,19,-5v7,21,16,41,21,64v-5,13,-43,7,-60,4v2,-23,13,-42,20,-63xm144,-283v-31,14,-75,-31,-70,-47v9,-2,22,0,34,-1v19,8,31,29,36,48","w":246},"\u00c3":{"d":"187,-11v10,21,77,16,54,-10r-85,-228v-7,-14,-42,-8,-60,-6r-94,250v6,9,31,4,46,4v27,-10,5,-65,52,-57v27,5,72,-12,77,18xm113,-165v0,-13,16,-29,19,-5v7,21,16,41,21,64v-5,13,-43,7,-60,4v2,-23,13,-42,20,-63xm108,-297v-24,-12,-29,22,-48,9v1,-46,55,-43,85,-27v13,0,18,-9,28,-13v10,0,14,3,11,14v-8,29,-48,31,-76,17","w":246},"\u00d5":{"d":"102,1v148,49,217,-159,111,-242v-37,-29,-122,-24,-154,6v-31,29,-55,84,-41,145v11,47,40,77,84,91xm128,-215v96,-19,110,146,36,170v-69,23,-106,-39,-91,-112v6,-31,22,-53,55,-58xm165,-287v-26,1,-53,-26,-68,-2v-5,7,-26,5,-19,-7v7,-39,56,-34,84,-19v13,0,18,-9,28,-13v10,0,16,4,11,14v-7,14,-14,27,-36,27","w":280},"\u0152":{"d":"66,-242v39,-41,105,-1,142,-15r158,1v14,0,8,20,9,33v2,16,-16,13,-31,13r-86,0v-17,0,-16,48,-2,55r100,1v12,3,14,43,-4,43r-95,0v-17,4,-9,36,-9,56v3,12,20,8,35,8r87,1v14,7,13,54,-14,46r-152,-1v-7,-1,-8,-9,-14,-11v-26,18,-82,25,-114,4v-81,-32,-77,-198,-10,-234xm123,-42v73,10,77,-60,69,-133v-5,-49,-88,-51,-109,-10v-24,48,-14,135,40,143","w":393},"\u0153":{"d":"186,-8v-28,-32,-76,41,-130,1v-54,-25,-53,-142,-3,-168v29,-24,96,-17,114,9v29,-25,103,-36,131,4v13,19,25,46,24,76v-2,5,-11,7,-17,5r-111,2v-10,28,21,53,54,44v16,-11,38,-35,70,-20v-5,52,-83,75,-132,47xm66,-108v-18,61,64,108,77,39v7,-41,3,-91,-45,-83v-19,3,-26,22,-32,44xm194,-131v-5,14,1,21,18,19v22,-3,71,11,55,-21v-12,-25,-63,-25,-73,2","w":333},"\u2013":{"d":"10,-77v-17,0,-13,-40,-4,-43r164,0v14,0,7,20,9,36v-3,13,-25,7,-39,7r-130,0","w":180},"\u2014":{"d":"60,-76v-18,1,-19,-44,-3,-44r245,0v17,-3,10,23,10,39v-10,9,-42,4,-62,4","w":360},"\u201c":{"d":"56,-253v12,-4,17,5,13,16v-7,11,-32,24,-16,40v25,-3,15,24,17,47v-2,11,-58,19,-50,-9v-3,-45,3,-83,36,-94xm147,-249v4,26,-40,31,-14,53v23,-4,13,32,12,52v-12,5,-57,12,-49,-19v-1,-45,4,-84,44,-91v4,0,6,1,7,5","w":166},"\u201d":{"d":"111,-146v-10,6,-18,-3,-14,-16v9,-10,32,-25,17,-40v-24,4,-18,-23,-18,-46v0,-16,27,-6,45,-9v17,32,5,106,-30,111xm40,-185v13,-22,-25,-8,-20,-35v2,-16,-10,-40,18,-37v17,2,37,-5,32,21v4,48,-9,86,-43,92v-8,1,-8,-11,-6,-18v4,-11,18,-9,19,-23","w":166},"\u2018":{"d":"75,-249v4,27,-40,31,-14,53v23,-4,13,32,12,52v-12,5,-57,13,-48,-19v-2,-47,5,-84,43,-91v4,0,6,1,7,5","w":100,"k":{"\u2018":34}},"\u2019":{"d":"39,-146v-10,6,-18,-3,-14,-16v9,-10,32,-25,17,-40v-24,4,-18,-23,-18,-46v0,-16,27,-6,45,-9v17,32,5,106,-30,111","w":100,"k":{"\u2019":34,"t":6,"s":27}},"\u00f7":{"d":"138,-168v5,34,-51,44,-58,10v-5,-22,12,-43,37,-36v12,3,20,12,21,26xm181,-110v21,-6,21,18,16,34v-1,5,-8,4,-14,4r-156,0v-13,0,-8,-16,-9,-29v-1,-7,5,-7,9,-9r154,0xm98,11v-33,-10,-18,-63,16,-56v32,6,30,59,-4,58v-3,1,-11,-1,-12,-2","w":216},"\u25ca":{"d":"14,-134v26,-37,36,-89,72,-115v42,26,54,83,81,123v-20,45,-46,88,-74,125v-47,-16,-55,-84,-82,-122v-1,-4,3,-9,3,-11xm87,-227v-25,29,-42,70,-58,104v17,35,36,67,55,99v29,-20,47,-67,64,-102v-17,-37,-37,-63,-55,-97v-1,-2,-3,-4,-6,-4","w":177},"\u00ff":{"d":"67,63v-28,3,-60,10,-51,-32v3,-20,64,3,48,-41r-59,-159v-1,-5,-8,-19,4,-17v29,-3,52,0,53,30r29,84v17,4,18,-37,26,-53v13,-29,5,-71,62,-61v11,2,4,14,2,20r-63,170v-10,26,-19,56,-51,59xm40,-256v28,-7,49,2,39,36v-13,11,-59,12,-46,-28v0,-6,2,-6,7,-8xm113,-256v32,-9,51,7,39,39v-20,6,-58,7,-45,-31v0,-5,1,-6,6,-8","w":186},"\u0178":{"d":"138,-1v-26,-2,-54,11,-46,-29v-1,-37,4,-79,-17,-98r-72,-120v-1,-17,36,-7,56,-8v22,27,37,60,55,90v26,6,36,-52,55,-71v3,-24,39,-22,68,-19v-23,83,-89,115,-89,243v0,7,-2,13,-10,12xm66,-328v30,-4,49,0,40,37v-6,7,-51,13,-47,-9v1,-11,-4,-26,7,-28xm140,-328v31,-6,51,5,38,39v-20,7,-56,9,-45,-31v0,-5,3,-6,7,-8","w":240},"\u2044":{"d":"116,-255r-139,254v-3,8,-13,8,-25,8v-5,0,-7,-3,-6,-8r143,-255v5,-5,24,-7,27,1","w":60},"\u20ac":{"d":"37,-173v15,-48,43,-87,102,-87v27,0,51,6,65,20v-3,15,-10,26,-17,37v-32,-10,-94,-18,-96,34v12,16,61,-3,80,9v4,32,-43,20,-78,22v-7,1,-8,3,-8,11v11,11,43,3,66,5v3,0,5,1,5,4v5,34,-47,12,-67,26v0,53,63,62,101,36v10,5,9,55,-8,53v-74,27,-138,-19,-146,-83v3,-18,-32,-2,-24,-23v-1,-12,32,-19,12,-29v-14,2,-17,-10,-9,-19v2,-11,23,-3,22,-16"},"\u2039":{"d":"71,-62v0,13,1,34,-13,22v-35,-10,-65,-76,-20,-100v11,-6,20,-24,32,-18r1,22v2,24,-22,20,-27,37v2,18,27,14,27,37","w":86},"\u203a":{"d":"15,-133v-1,-13,-2,-36,13,-23v35,10,65,76,20,100v-10,5,-20,24,-32,18r-1,-22v-2,-24,21,-21,27,-36v-1,-18,-27,-15,-27,-37","w":86},"\u2021":{"d":"76,-198v1,-34,-13,-71,41,-58v23,5,-15,69,25,71v24,1,56,-13,50,30v-4,31,-72,-16,-68,34v2,22,-2,47,2,66v12,9,41,1,60,5v10,7,11,49,-13,40v-21,3,-52,-11,-49,21v2,27,9,58,-38,48v-19,-3,-7,-36,-10,-59v-4,-18,-35,-10,-57,-10v-14,0,-9,-19,-10,-33v5,-27,67,22,67,-35r0,-57v-4,-18,-35,-5,-55,-9v-17,1,-12,-20,-11,-35v8,-14,39,-1,59,-7v6,0,7,-6,7,-12"},"\u00b7":{"d":"53,-73v-39,2,-43,-59,-5,-60v42,-3,38,58,5,60","w":100},"\u201a":{"d":"32,-55v19,2,47,-8,43,15v3,51,-3,91,-45,97v-18,-23,21,-26,18,-51v-2,-12,-27,1,-23,-22v2,-14,-6,-36,7,-39","w":100},"\u201e":{"d":"27,-55v19,2,47,-9,43,15v3,48,-2,92,-45,97v-22,-21,35,-35,11,-57v-23,3,-15,-24,-16,-46v0,-6,2,-7,7,-9xm103,-55v19,2,48,-9,44,15v3,49,-3,91,-45,97v-20,-19,22,-29,17,-51v-2,-12,-26,-1,-23,-22v2,-14,-5,-36,7,-39","w":166},"\u2030":{"d":"199,-251v1,-10,26,-13,30,-4r-139,254v-3,8,-12,9,-24,8v-18,-15,21,-44,25,-66xm63,-255v51,-10,76,32,63,83v-2,39,-64,49,-87,21v-24,-29,-15,-96,24,-104xm76,-234v-27,3,-27,73,-2,77v33,5,28,-56,14,-74v-3,-2,-7,-3,-12,-3xm196,-117v52,-11,74,30,64,83v-6,26,-24,40,-59,38v-54,-5,-58,-110,-5,-121xm206,-19v28,4,23,-26,25,-52v2,-25,-33,-33,-39,-9v-4,20,-5,58,14,61xm287,-31v-32,-75,85,-124,98,-47v8,48,-7,89,-60,82v-20,-3,-31,-18,-38,-35xm330,-19v29,3,25,-27,25,-52v0,-25,-32,-32,-39,-9v-1,24,-4,55,14,61","w":412},"\u00c2":{"d":"187,-11v10,21,77,16,54,-10r-85,-228v-7,-14,-42,-8,-60,-6r-94,250v6,9,31,4,46,4v27,-10,5,-65,52,-57v27,5,72,-12,77,18xm113,-165v0,-13,16,-29,19,-5v7,21,16,41,21,64v-5,13,-43,7,-60,4v2,-23,13,-42,20,-63xm67,-284v11,-29,40,-62,83,-42v10,14,24,24,30,42v-14,11,-46,1,-49,-14v-19,-22,-28,37,-64,14","w":246},"\u00ca":{"d":"25,-219v2,-15,-7,-38,10,-38r174,1v13,3,6,25,7,39v-3,13,-27,7,-41,7r-86,1v-16,2,-6,32,-7,50v23,12,75,2,115,5v13,1,8,25,7,37v0,10,-16,6,-28,6r-86,0v-17,2,-6,35,-9,56v1,13,23,8,36,8r92,0v16,0,8,22,10,39v-2,15,-28,8,-43,8r-144,-1v-14,-1,-7,-27,-7,-41r0,-177xm60,-284v11,-29,41,-62,84,-42v8,15,27,26,28,44v-14,5,-41,3,-44,-12v-4,-4,-6,-9,-12,-11v-14,9,-29,37,-56,21","w":233},"\u00c1":{"d":"187,-11v10,21,77,16,54,-10r-85,-228v-7,-14,-42,-8,-60,-6r-94,250v6,9,31,4,46,4v27,-10,5,-65,52,-57v27,5,72,-12,77,18xm113,-165v0,-13,16,-29,19,-5v7,21,16,41,21,64v-5,13,-43,7,-60,4v2,-23,13,-42,20,-63xm130,-282v-18,5,-38,-2,-22,-16v11,-10,11,-31,31,-33v13,1,33,-3,40,3v-13,19,-30,33,-49,46","w":246},"\u00cb":{"d":"25,-219v2,-15,-7,-38,10,-38r174,1v13,3,6,25,7,39v-3,13,-27,7,-41,7r-86,1v-16,2,-6,32,-7,50v23,12,75,2,115,5v13,1,8,25,7,37v0,10,-16,6,-28,6r-86,0v-17,2,-6,35,-9,56v1,13,23,8,36,8r92,0v16,0,8,22,10,39v-2,15,-28,8,-43,8r-144,-1v-14,-1,-7,-27,-7,-41r0,-177xm56,-319v4,-16,51,-15,48,3v-2,14,5,33,-15,30v-24,3,-40,-1,-33,-33xm137,-328v30,-6,52,6,38,39v-20,7,-57,9,-45,-31v0,-5,3,-6,7,-8","w":233},"\u00c8":{"d":"25,-219v2,-15,-7,-38,10,-38r174,1v13,3,6,25,7,39v-3,13,-27,7,-41,7r-86,1v-16,2,-6,32,-7,50v23,12,75,2,115,5v13,1,8,25,7,37v0,10,-16,6,-28,6r-86,0v-17,2,-6,35,-9,56v1,13,23,8,36,8r92,0v16,0,8,22,10,39v-2,15,-28,8,-43,8r-144,-1v-14,-1,-7,-27,-7,-41r0,-177xm94,-331v29,1,31,28,44,45v-27,20,-71,-22,-74,-44v8,-2,20,-1,30,-1","w":233},"\u00cd":{"d":"59,-282v-17,5,-37,-1,-22,-16v10,-22,35,-44,71,-30v-12,19,-30,33,-49,46xm24,-178v5,-25,-11,-70,10,-78v18,3,46,-12,46,18r0,225v3,22,-26,10,-47,13v-15,-3,-9,-30,-9,-47r0,-131","w":106},"\u00ce":{"d":"24,-178v5,-25,-11,-70,10,-78v18,3,46,-12,46,18r0,225v3,22,-26,10,-47,13v-15,-3,-9,-30,-9,-47r0,-131xm-3,-284v11,-29,40,-62,84,-42v9,14,23,25,29,42v-14,11,-46,1,-49,-14v-19,-22,-28,37,-64,14","w":106},"\u00cf":{"d":"24,-178v5,-25,-11,-70,10,-78v18,3,46,-12,46,18r0,225v3,22,-26,10,-47,13v-15,-3,-9,-30,-9,-47r0,-131xm-1,-328v30,-4,49,-1,40,37v-13,13,-62,9,-46,-28v0,-6,2,-7,6,-9xm66,-320v19,-23,67,-4,45,31v-20,7,-57,9,-45,-31","w":106},"\u00cc":{"d":"24,-178v5,-25,-11,-70,10,-78v18,3,46,-12,46,18r0,225v3,22,-26,10,-47,13v-15,-3,-9,-30,-9,-47r0,-131xm31,-331v29,1,31,28,44,45v-27,20,-71,-22,-74,-44v8,-2,20,-1,30,-1","w":106},"\u00d3":{"d":"102,1v148,49,217,-159,111,-242v-37,-29,-122,-24,-154,6v-31,29,-55,84,-41,145v11,47,40,77,84,91xm128,-215v96,-19,110,146,36,170v-69,23,-106,-39,-91,-112v6,-31,22,-53,55,-58xm152,-284v-13,10,-49,4,-28,-13v12,-9,11,-31,30,-33v13,2,33,-4,40,3v-9,19,-29,28,-42,43","w":280},"\u00d4":{"d":"102,1v148,49,217,-159,111,-242v-37,-29,-122,-24,-154,6v-31,29,-55,84,-41,145v11,47,40,77,84,91xm128,-215v96,-19,110,146,36,170v-69,23,-106,-39,-91,-112v6,-31,22,-53,55,-58xm106,-280v-12,1,-28,1,-19,-13v14,-22,41,-53,80,-33v8,15,27,26,28,44v-14,5,-41,3,-44,-12v-4,-4,-6,-9,-12,-11v-14,5,-15,24,-33,25","w":280},"\uf8ff":{"d":"142,-230v2,-30,32,-66,58,-54v-4,34,-18,58,-50,64v-7,1,-7,-5,-8,-10xm231,-156v-12,40,12,69,34,85v-5,48,-49,95,-106,68v-36,-4,-73,26,-96,-9v-55,-46,-73,-226,44,-208v51,22,121,-32,149,27v-8,12,-21,22,-25,37","w":284},"\u00d2":{"d":"102,1v148,49,217,-159,111,-242v-37,-29,-122,-24,-154,6v-31,29,-55,84,-41,145v11,47,40,77,84,91xm128,-215v96,-19,110,146,36,170v-69,23,-106,-39,-91,-112v6,-31,22,-53,55,-58xm161,-289v3,13,-18,10,-28,7v-19,-12,-35,-28,-48,-45v7,-7,25,-3,39,-4v21,6,25,28,37,42","w":280},"\u00da":{"d":"242,-114v4,79,-31,117,-104,119v-81,2,-114,-38,-114,-120r0,-133v2,-17,29,-6,48,-9v14,6,7,36,8,56v5,70,-24,182,74,157v59,-15,25,-122,32,-201v2,-20,27,-9,48,-12v17,7,8,47,8,70r0,73xm140,-282v-17,5,-37,-1,-22,-16v10,-22,35,-44,71,-30v-12,19,-30,33,-49,46","w":266},"\u00db":{"d":"242,-114v4,79,-31,117,-104,119v-81,2,-114,-38,-114,-120r0,-133v2,-17,29,-6,48,-9v14,6,7,36,8,56v5,70,-24,182,74,157v59,-15,25,-122,32,-201v2,-20,27,-9,48,-12v17,7,8,47,8,70r0,73xm77,-284v11,-29,40,-62,84,-42v9,14,23,25,29,42v-14,11,-46,1,-49,-14v-19,-22,-28,37,-64,14","w":266},"\u00d9":{"d":"242,-114v4,79,-31,117,-104,119v-81,2,-114,-38,-114,-120r0,-133v2,-17,29,-6,48,-9v14,6,7,36,8,56v5,70,-24,182,74,157v59,-15,25,-122,32,-201v2,-20,27,-9,48,-12v17,7,8,47,8,70r0,73xm111,-331v29,0,31,28,44,45v-30,21,-60,-21,-77,-41v5,-7,22,-4,33,-4","w":266},"\u0131":{"d":"21,-176v2,-17,50,-15,50,-1r0,169v-2,13,-57,16,-50,-9r0,-159","w":92},"\u02c6":{"d":"-10,-213v11,-29,40,-62,84,-42v8,15,27,26,28,44v-29,6,-43,-7,-56,-23v-16,10,-27,36,-56,21","w":93},"\u02dc":{"d":"64,-246v14,7,21,-9,33,-11v9,-1,14,4,11,14v-12,39,-58,21,-94,15v-7,6,-18,21,-30,11v4,-23,15,-39,41,-39v17,0,24,9,39,10","w":93},"\u00af":{"d":"-14,-222v-9,-3,-9,-26,4,-26r114,0v10,-1,9,8,9,18v-1,13,-20,8,-33,8r-94,0","w":93},"\u02d8":{"d":"1,-225v-6,-7,-22,-33,-4,-36v23,5,25,33,62,24v21,0,20,-32,43,-22v9,31,-31,56,-71,49v-13,-3,-23,-7,-30,-15","w":93},"\u02d9":{"d":"30,-256v30,-9,51,6,38,39v-20,6,-58,7,-45,-31v0,-6,2,-6,7,-8","w":93},"\u02da":{"d":"3,-241v4,-50,90,-50,87,5v-2,29,-22,48,-51,43v-22,-3,-38,-22,-36,-48xm42,-261v-26,3,-22,55,7,50v13,-3,21,-11,20,-28v-1,-15,-11,-24,-27,-22","w":93},"\u00b8":{"d":"24,28v5,-12,15,-34,29,-25v-8,27,54,7,34,55v-8,21,-42,21,-68,17v-9,-1,-16,-14,-5,-19v12,-1,42,13,42,-11v0,-16,-32,-1,-32,-17","w":93},"\u02dd":{"d":"5,-247v3,-18,43,-16,56,-10v-6,19,-28,25,-38,41v-6,8,-25,8,-35,5v-5,-12,12,-25,17,-36xm80,-247v0,-18,55,-19,55,-6v-21,17,-33,50,-73,42v-6,-12,13,-24,18,-36","w":93},"\u02db":{"d":"29,77v-47,-10,-16,-75,18,-77v0,0,13,-1,12,5v-10,13,-34,37,-12,51v13,8,28,-17,38,0v-8,17,-32,26,-56,21","w":93},"\u02c7":{"d":"87,-232v-19,52,-115,1,-88,-28v28,-5,33,13,47,24v16,-8,28,-36,57,-21v-1,12,-10,16,-16,25","w":93},"\u2126":{"d":"255,-160v13,62,-26,103,-69,118v7,11,35,2,55,5v13,2,14,-23,23,-12v-3,20,12,54,-22,49v-26,-4,-60,3,-81,-4v1,-23,-2,-50,19,-54v68,-44,34,-207,-72,-167v-59,22,-56,151,-6,169v16,6,15,33,15,52v-19,7,-78,8,-102,-1v-5,-18,-4,-65,14,-35v15,4,48,7,62,0v0,-3,-1,-5,-4,-5v-52,-14,-86,-81,-56,-140v18,-36,51,-58,105,-57v67,0,108,29,119,82","w":276},"\u00a4":{"d":"25,-38v-31,-14,15,-36,-10,-58v-14,-33,8,-65,7,-87v-14,-7,-10,-28,4,-32v26,26,56,-7,92,2v14,4,19,9,32,11v16,-24,54,0,30,17v-11,17,14,34,9,59v3,30,-27,52,-2,68v4,14,-17,28,-25,13v-21,-16,-45,19,-84,6v-11,-4,-20,-8,-28,-12v-12,-2,-13,15,-25,13xm90,-76v41,8,58,-26,52,-67v-7,-44,-78,-42,-85,3v-5,31,8,59,33,64"},"\u0141":{"d":"194,-47v20,-1,18,47,3,47r-164,-1v-19,-7,-1,-47,-10,-69v-11,-5,-18,16,-26,3v-3,-24,4,-39,22,-45v5,-4,8,-13,6,-21r0,-114v2,-17,32,-9,49,-9v19,14,-1,62,9,92v30,-2,44,-35,71,-40v17,50,-45,59,-70,87v-5,15,-3,42,-2,62v1,12,17,7,30,8r82,0","w":213},"\u0142":{"d":"88,-192v12,-3,7,12,8,24v-2,17,-23,14,-24,32r0,127v-2,15,-31,9,-46,7v-15,-17,4,-68,-8,-94v-10,0,-23,14,-21,-15v1,-21,23,-17,24,-42r2,-100v12,-6,57,-13,49,17v1,17,-7,64,16,44","w":92},"\u00be":{"d":"232,-254v8,-12,40,-5,24,12r-134,241v-3,9,-20,11,-29,7v-5,-3,-1,-10,2,-13xm66,-173v-9,-32,54,-12,25,-51v-14,-10,-38,0,-39,16v-6,12,-44,7,-31,-12v7,-46,105,-50,111,0v9,23,-27,35,-5,47v32,39,-13,92,-70,76v-23,-6,-44,-22,-42,-50v7,-11,39,-6,38,11v9,21,58,12,48,-16v-2,-17,-28,-9,-35,-21xm289,-70v3,17,23,3,21,27v-2,17,-25,7,-21,28v3,13,-6,16,-20,15v-28,5,3,-37,-34,-32v-27,4,-64,4,-45,-37v25,-26,40,-62,71,-82v18,0,28,-2,28,25r0,56xm219,-65v20,17,48,-2,35,-37v0,-1,-3,-2,-5,-2v-11,11,-23,22,-30,39","w":320},"\u00bc":{"d":"151,-165v26,-28,34,-109,79,-89r-139,253v-2,9,-24,13,-31,5v25,-61,63,-111,91,-169xm85,-115v2,19,-11,17,-27,17v-22,-8,-3,-52,-9,-83v7,-30,-40,-1,-40,-29v1,-25,41,-9,47,-41v12,-4,29,-5,29,13r0,123xm282,-138v4,29,-11,69,11,78v9,0,10,7,10,17v0,16,-26,6,-21,28v3,12,-6,17,-20,15v-27,5,3,-37,-34,-32v-27,4,-63,5,-46,-37r63,-79v11,-4,39,-9,37,10xm243,-104v-14,10,-23,24,-31,39v20,19,48,-7,35,-37v0,-1,-2,-2,-4,-2","w":321},"\u00b9":{"d":"103,-115v3,19,-10,17,-26,17v-21,-7,-6,-55,-9,-83v7,-30,-40,-1,-40,-29v1,-25,41,-9,47,-41v11,-3,33,-6,28,13r0,123","w":141},"\u00d7":{"d":"35,-138v-15,-12,3,-32,18,-34v20,14,34,35,53,50v28,-8,35,-44,62,-50v15,7,30,29,9,38v-14,18,-54,37,-24,61v20,16,55,47,13,62v-26,-10,-34,-45,-62,-49r-50,49v-20,0,-36,-29,-15,-38v14,-18,57,-42,23,-62","w":216},"\u00de":{"d":"87,-222v101,-20,179,49,126,135v-19,30,-68,31,-120,29v-31,-1,12,61,-31,58v-16,-1,-37,6,-37,-16r0,-227v-1,-22,29,-12,49,-13v15,-1,0,30,13,34xm94,-101v48,0,94,-6,78,-55v-8,-26,-51,-24,-84,-22v-15,8,-3,42,-7,66v-1,8,5,11,13,11","w":240},"\u00a6":{"d":"28,-237v22,-1,37,-3,31,24v-6,25,18,75,-28,65v-21,-5,-6,-49,-10,-76v-1,-8,1,-12,7,-13xm28,-57v14,-2,36,-4,31,16r0,63v-1,14,-14,8,-27,10v-24,-3,-6,-47,-11,-76v-1,-8,1,-11,7,-13","w":80},"\u00d0":{"d":"1,-126v-8,-40,24,-14,24,-43r0,-79v0,-6,5,-7,10,-9v76,2,171,-8,196,48v18,24,25,66,19,107v-10,65,-48,103,-124,102r-93,-1v-8,0,-8,-8,-8,-17r0,-87v-3,-12,-28,-2,-24,-21xm142,-208v-23,-3,-64,-14,-61,15v1,18,-7,42,17,40v27,-3,52,-2,40,36v-6,18,-61,-15,-57,26v2,21,-10,51,24,44v74,10,101,-39,88,-109v-6,-29,-21,-49,-51,-52","w":266},"\u00bd":{"d":"203,-256v10,-10,38,-3,22,13r-113,204v-13,15,-19,60,-52,42v43,-88,94,-168,139,-254xm85,-115v3,16,-10,19,-27,16v-22,-5,-3,-51,-9,-82v7,-30,-39,-1,-40,-30v-1,-15,11,-12,21,-15v22,-2,16,-28,46,-28v9,0,8,8,9,15r0,124xm240,-29v26,1,79,-10,58,28v-36,-2,-80,3,-113,-3v-6,-66,82,-52,81,-113v-4,-15,-35,-18,-41,0v-1,16,-23,30,-40,15v-9,-59,95,-78,115,-28v22,55,-40,66,-65,95v0,4,2,6,5,6","w":320},"\u2212":{"d":"27,-72v-15,-1,-13,-38,0,-38r162,0v14,-2,10,19,9,31v-1,13,-25,7,-39,7r-132,0","w":216},"\u00f0":{"d":"114,-261v19,23,54,-32,69,4v0,17,-46,14,-24,36v31,32,50,81,45,146v-6,89,-150,103,-180,29v-32,-79,26,-161,114,-129v-1,-26,-33,-45,-50,-28v-17,17,-51,-10,-22,-19v14,-4,20,-18,2,-24v-12,-10,10,-22,21,-27v12,0,16,8,25,12xm99,-35v44,10,65,-34,54,-79v-6,-22,-25,-39,-55,-33v-44,9,-44,102,1,112","w":219},"\u00fe":{"d":"77,-172v34,-36,113,-14,120,28v43,79,-35,193,-119,130v-10,-5,-9,8,-9,19r0,49v2,17,-25,8,-43,10v-8,-1,-7,-13,-7,-23r0,-285v-2,-20,26,-12,44,-12v18,10,-3,59,9,84v1,1,3,1,5,0xm104,-35v45,7,61,-38,50,-82v-6,-24,-24,-42,-55,-34v-43,11,-42,109,5,116","w":219},"\u00b2":{"d":"66,-127v28,1,80,-10,59,28v-36,-2,-80,3,-113,-3v-7,-66,82,-51,81,-113v-5,-18,-42,-15,-44,5v3,18,-29,21,-37,10v-9,-59,95,-77,115,-28v23,56,-42,66,-65,96v-1,4,1,4,4,5","w":141},"\u00b3":{"d":"60,-173v-9,-32,54,-12,25,-51v-11,-8,-36,-3,-36,11v0,12,-30,16,-35,5v-4,-60,104,-64,113,-12v9,23,-29,34,-6,47v33,39,-12,92,-69,76v-24,-6,-43,-19,-43,-50v7,-11,39,-6,38,11v9,21,59,13,48,-16v-2,-17,-28,-9,-35,-21","w":141},"\u0160":{"d":"157,-303v-18,52,-115,1,-88,-28v27,-5,34,12,47,24v16,-8,27,-36,58,-21v-1,12,-11,17,-17,25xm170,-66v-4,-43,-56,-38,-92,-50v-36,-12,-71,-38,-58,-88v10,-37,43,-58,89,-58v59,0,102,19,106,73v1,16,-30,7,-48,8v-12,-20,-25,-43,-64,-38v-20,3,-34,14,-30,37v43,43,188,24,144,141v-28,75,-208,60,-208,-33v0,-18,26,-9,44,-11v18,3,10,31,29,38v23,15,84,16,88,-19","w":233},"\u00dd":{"d":"126,-281v-17,4,-36,-1,-22,-16v10,-23,35,-45,71,-31v-11,21,-31,33,-49,47xm138,-1v-26,-2,-54,11,-46,-29v-1,-37,4,-79,-17,-98r-72,-120v-1,-17,36,-7,56,-8v22,27,37,60,55,90v26,6,36,-52,55,-71v3,-24,39,-22,68,-19v-23,83,-89,115,-89,243v0,7,-2,13,-10,12","w":240},"\u017d":{"d":"122,-309v7,-15,32,-31,51,-19v-3,19,-23,28,-29,42v-11,8,-54,10,-59,-6v-4,-11,-37,-34,-17,-39v27,-7,34,12,48,24v2,0,4,0,6,-2xm9,-8v-9,-44,24,-64,42,-87v29,-38,63,-70,89,-111v-23,-10,-74,-1,-112,-4v-14,0,-8,-24,-8,-38v0,-7,4,-7,9,-9r185,1v17,8,5,56,-8,62r-91,108v-5,12,-36,28,-18,39r120,0v12,3,8,26,7,40v-5,12,-30,7,-47,7r-158,0v-7,-1,-9,-2,-10,-8","w":233},"\u0161":{"d":"137,-232v-19,52,-114,1,-88,-28v27,-5,34,13,47,24v16,-8,28,-36,57,-21v-1,12,-10,16,-16,25xm13,-56v49,-24,50,39,100,25v11,-3,21,-12,17,-28v-29,-37,-123,-7,-114,-84v8,-68,149,-61,159,-2v3,19,-20,12,-39,13v-13,-13,-23,-30,-54,-24v-19,3,-17,29,0,34v43,12,111,14,99,77v-12,65,-148,66,-166,5v-1,-5,-4,-11,-2,-16","w":193},"\u00fd":{"d":"145,-249v-19,15,-47,55,-73,33v12,-24,32,-58,76,-41v0,3,0,6,-3,8xm67,63v-28,3,-60,10,-51,-32v3,-20,64,3,48,-41r-59,-159v-1,-5,-8,-19,4,-17v29,-3,52,0,53,30r29,84v17,4,18,-37,26,-53v13,-29,5,-71,62,-61v11,2,4,14,2,20r-63,170v-10,26,-19,56,-51,59","w":186},"\u017e":{"d":"98,-238v8,-14,32,-30,52,-19v-10,29,-41,62,-84,42v-5,-13,-41,-36,-21,-45v27,-4,34,12,47,24v2,0,4,0,6,-2xm15,-156v1,-13,-4,-29,10,-30r138,0v32,60,-61,92,-81,144v18,9,59,1,88,4v14,1,13,38,0,38r-153,0v-17,-2,-10,-46,2,-51r79,-90v-7,-16,-46,-3,-71,-7v-7,1,-12,-2,-12,-8","w":186},"\u0300":{"d":"-26,-212v-32,15,-75,-31,-70,-47v9,-2,22,0,34,-1v19,8,31,29,36,48","w":0},"\u0301":{"d":"-34,-214v-12,12,-49,4,-28,-12v8,-23,34,-45,70,-31v-8,20,-28,29,-42,43","w":0},"\u0302":{"d":"-103,-213v11,-29,40,-62,84,-42v8,15,27,26,28,44v-29,6,-43,-7,-56,-23v-16,10,-27,36,-56,21","w":0},"\u0303":{"d":"-29,-246v14,7,21,-9,33,-11v9,-1,14,4,11,14v-12,39,-58,21,-94,15v-7,6,-18,21,-30,11v4,-23,15,-39,41,-39v17,0,24,9,39,10","w":0},"\u0304":{"d":"-107,-222v-9,-3,-9,-26,4,-26r114,0v10,-1,9,8,9,18v-1,13,-20,8,-33,8r-94,0","w":0},"\u0306":{"d":"-92,-225v-6,-7,-22,-33,-4,-36v23,5,25,33,62,24v21,0,20,-32,43,-22v9,31,-31,56,-71,49v-13,-3,-23,-7,-30,-15","w":0},"\u0307":{"d":"-63,-256v30,-9,51,6,38,39v-20,6,-58,7,-45,-31v0,-6,2,-6,7,-8","w":0},"\u0308":{"d":"-100,-256v31,-7,48,3,40,36v-13,11,-60,12,-47,-28v0,-6,2,-6,7,-8xm-26,-256v30,-9,51,6,38,39v-20,5,-56,9,-45,-31v0,-6,2,-6,7,-8","w":0},"\u030a":{"d":"-90,-241v4,-50,90,-50,87,5v-2,29,-22,48,-51,43v-22,-3,-38,-22,-36,-48xm-51,-261v-26,3,-22,55,7,50v13,-3,21,-11,20,-28v-1,-15,-11,-24,-27,-22","w":0},"\u030b":{"d":"-88,-247v3,-18,43,-16,56,-10v-6,19,-28,25,-38,41v-6,8,-25,8,-35,5v-5,-12,12,-25,17,-36xm-13,-247v0,-18,55,-19,55,-6v-21,17,-33,50,-73,42v-6,-12,13,-24,18,-36","w":0},"\u030c":{"d":"-6,-232v-19,52,-115,1,-88,-28v28,-5,33,13,47,24v16,-8,28,-36,57,-21v-1,12,-10,16,-16,25","w":0},"\u0327":{"d":"-69,28v5,-12,15,-34,29,-25v-8,27,54,7,34,55v-8,21,-42,21,-68,17v-9,-1,-16,-14,-5,-19v12,-1,42,13,42,-11v0,-16,-32,-1,-32,-17","w":0},"\u0328":{"d":"-64,77v-47,-10,-16,-75,18,-77v0,0,13,-1,12,5v-10,13,-34,37,-12,51v13,8,28,-17,38,0v-8,17,-32,26,-56,21","w":0},"\u0338":{"d":"-132,2v25,-89,64,-169,92,-255v4,-12,33,-12,41,-5r-94,256v-3,11,-31,11,-39,4","w":0}}});;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1990, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-MdCn
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":79,"face":{"font-family":"HelveticaLTCon","font-weight":500,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 6 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-59 -342 371 78.0903","underline-thickness":"18","underline-position":"-18","stemh":"31","stemv":"39","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":86,"k":{"\u201c":13,"\u2018":13,"T":13,"V":13,"W":13,"Y":13,"\u00dd":13,"\u0178":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"36,-69r-6,-107r0,-81r41,0v1,66,-3,127,-7,188r-28,0xm30,0r0,-41r41,0r0,41r-41,0","w":100},"\"":{"d":"95,-154r0,-103r31,0r0,103r-31,0xm27,-154r0,-103r31,0r0,103r-31,0","w":153},"#":{"d":"64,-99r38,0r7,-52r-38,0xm-1,-72r0,-27r35,0r7,-52r-32,0r0,-27r36,0r10,-72r30,0r-10,72r38,0r10,-72r30,0r-10,72r31,0r0,27r-35,0r-7,52r31,0r0,27r-35,0r-10,72r-30,0r10,-72r-38,0r-10,72r-30,0r10,-72r-31,0","w":172},"$":{"d":"94,-103r0,77v45,-6,41,-72,0,-77xm78,-150r0,-74v-15,1,-28,13,-28,36v0,17,9,29,28,38xm78,36r0,-31v-64,-5,-73,-42,-72,-82r41,0v-1,30,6,47,31,51r0,-83v-39,-13,-69,-33,-69,-75v0,-41,30,-71,69,-71r0,-25r16,0r0,25v57,2,69,39,68,71r-41,0v1,-22,-4,-38,-27,-40r0,80v38,12,73,31,73,74v0,50,-28,72,-73,75r0,31r-16,0","w":172},"%":{"d":"62,-233v-15,0,-18,14,-18,47v0,33,3,47,18,47v15,0,19,-14,19,-47v0,-33,-4,-47,-19,-47xm179,-255r28,0r-115,260r-27,0xm211,-111v-15,0,-18,14,-18,47v0,33,3,47,18,47v15,0,18,-14,18,-47v0,-33,-3,-47,-18,-47xm62,-255v28,0,50,15,50,69v0,54,-22,69,-50,69v-28,0,-49,-15,-49,-69v0,-54,21,-69,49,-69xm211,-133v28,0,49,15,49,69v0,54,-21,69,-49,69v-28,0,-49,-15,-49,-69v0,-54,21,-69,49,-69","w":273},"&":{"d":"107,-141r45,63v7,-11,11,-27,10,-44r32,0v0,19,-3,45,-22,73r35,49r-44,0r-15,-22v-17,15,-36,27,-65,27v-96,0,-91,-100,-39,-138r16,-12v-10,-16,-27,-37,-27,-57v0,-37,28,-55,62,-55v19,0,56,9,56,52v1,30,-23,49,-44,64xm68,-208v0,14,13,53,30,35v21,-12,29,-57,-6,-57v-10,0,-24,5,-24,22xm78,-121v-16,13,-32,29,-32,52v0,43,64,53,84,21","w":206},"\u2019":{"d":"23,-210r0,-47r41,0v-1,50,8,95,-41,103r0,-21v13,-3,19,-16,18,-35r-18,0","w":86,"k":{"\u2019":22,"r":6,"d":13,"s":13,"\u0161":13}},"(":{"d":"66,-257r27,0v-55,92,-55,229,0,323r-27,0v-28,-37,-53,-95,-53,-161v0,-66,25,-125,53,-162","w":93},")":{"d":"27,66r-27,0v56,-92,55,-229,0,-323r28,0v28,37,52,96,52,162v0,66,-25,124,-53,161","w":93},"*":{"d":"55,-257r24,0r0,45r40,-16r8,24r-41,12r28,37r-20,15r-27,-37r-27,37r-20,-15r28,-37r-42,-12r8,-24r41,16r0,-45","w":133},"+":{"d":"93,-107r0,-75r30,0r0,75r76,0r0,31r-76,0r0,76r-30,0r0,-76r-76,0r0,-31r76,0","w":216},",":{"d":"23,0r0,-48r41,0v-1,50,8,95,-41,103r0,-20v12,-3,19,-17,18,-35r-18,0","w":86,"k":{"\u201d":27,"\u2019":27," ":13}},"-":{"d":"16,-86r0,-36r95,0r0,36r-95,0","w":126},".":{"d":"23,0r0,-48r41,0r0,48r-41,0","w":86,"k":{"\u201d":27,"\u2019":27}},"\/":{"d":"-4,5r82,-267r32,0r-82,267r-32,0","w":106},"0":{"d":"51,-125v0,74,7,101,35,101v28,0,36,-27,36,-101v0,-74,-8,-101,-36,-101v-28,0,-35,27,-35,101xm10,-125v0,-99,27,-130,76,-130v49,0,77,31,77,130v0,99,-28,130,-77,130v-49,0,-76,-31,-76,-130","w":172},"1":{"d":"116,0r-41,0r0,-185r-53,0r0,-27v28,0,60,-5,64,-43r30,0r0,255","w":172},"2":{"d":"161,-35r0,35r-149,0v0,-111,107,-109,107,-188v0,-21,-9,-38,-32,-38v-31,0,-36,27,-36,53r-38,0v0,-51,21,-82,75,-82v52,0,72,31,72,68v0,85,-83,90,-102,152r103,0","w":172},"3":{"d":"11,-71r39,0v0,22,7,47,35,47v26,0,36,-20,36,-45v1,-37,-18,-52,-58,-48r0,-29v35,4,53,-12,52,-43v0,-18,-9,-37,-30,-37v-25,0,-32,22,-32,45r-39,0v0,-48,24,-74,73,-74v31,0,69,14,69,65v1,27,-18,51,-41,57v26,2,47,23,47,59v0,50,-25,79,-78,79v-46,0,-73,-23,-73,-76","w":172},"4":{"d":"8,-57r0,-36r88,-162r42,0r0,165r27,0r0,33r-27,0r0,57r-39,0r0,-57r-91,0xm99,-90r-1,-105r-57,105r58,0","w":172},"5":{"d":"83,5v-47,0,-73,-25,-71,-74r38,0v-2,24,8,42,34,43v28,0,36,-28,36,-58v0,-30,-8,-54,-34,-54v-17,0,-29,9,-33,23r-37,-1r13,-134r123,0r0,33r-93,0v-2,22,-8,47,-7,68v11,-12,26,-20,43,-20v53,0,66,45,66,84v0,51,-23,90,-78,90","w":172},"6":{"d":"159,-193r-41,0v0,-15,-6,-33,-27,-33v-38,-1,-43,54,-40,88v33,-50,113,-29,113,49v0,59,-24,94,-78,94v-64,0,-77,-49,-77,-122v0,-76,14,-138,81,-138v45,0,69,20,69,62xm54,-77v0,30,11,53,35,53v25,0,34,-24,34,-54v0,-35,-11,-56,-34,-56v-30,0,-35,26,-35,57","w":172},"7":{"d":"11,-213r0,-37r151,0r0,33v-40,52,-74,140,-80,217r-43,0v6,-76,42,-161,83,-213r-111,0","w":172},"8":{"d":"54,-188v0,21,6,39,32,39v26,0,32,-18,32,-39v0,-20,-6,-38,-32,-38v-26,0,-32,18,-32,38xm50,-72v0,27,7,48,36,48v29,0,36,-21,36,-48v0,-27,-7,-48,-36,-48v-29,0,-36,21,-36,48xm86,5v-52,0,-77,-26,-77,-76v-1,-39,21,-57,44,-65v-22,-8,-35,-24,-35,-55v0,-40,26,-64,68,-64v73,0,93,101,34,119v66,18,56,141,-34,141","w":172},"9":{"d":"14,-57r41,0v0,15,6,33,27,33v38,1,43,-54,40,-88v-33,50,-113,29,-113,-49v0,-59,24,-94,78,-94v64,0,77,49,77,122v0,76,-15,138,-82,138v-45,0,-68,-20,-68,-62xm119,-173v0,-30,-11,-53,-35,-53v-25,0,-34,25,-34,55v0,35,11,55,34,55v30,0,35,-26,35,-57","w":172},":":{"d":"23,-137r0,-47r41,0r0,47r-41,0xm23,0r0,-48r41,0r0,48r-41,0","w":86,"k":{" ":13}},";":{"d":"23,0r0,-48r41,0v-1,50,8,95,-41,103r0,-20v12,-3,19,-17,18,-35r-18,0xm23,-137r0,-47r41,0r0,47r-41,0","w":86},"<":{"d":"17,-78r0,-26r182,-82r0,31r-145,64r145,64r0,31","w":216},"=":{"d":"17,-113r0,-31r182,0r0,31r-182,0xm17,-38r0,-31r182,0r0,31r-182,0","w":216},">":{"d":"199,-104r0,26r-182,82r0,-31r145,-64r-145,-64r0,-31","w":216},"?":{"d":"61,-69v-11,-70,50,-67,52,-124v0,-20,-7,-38,-29,-38v-24,0,-33,21,-33,51r-38,0v0,-45,19,-82,71,-82v45,0,70,25,70,69v-1,69,-64,67,-56,124r-37,0xm58,0r0,-41r41,0r0,41r-41,0","w":166},"@":{"d":"130,-76v38,2,72,-101,17,-101v-30,0,-51,36,-51,65v0,22,11,36,34,36xm194,-198r26,0r-31,115v0,5,3,8,12,8v20,0,44,-33,44,-73v0,-51,-45,-85,-95,-85v-63,0,-107,50,-107,106v0,104,133,130,193,72r30,0v-19,35,-60,60,-119,60v-76,0,-137,-50,-137,-134v0,-75,56,-133,140,-133v73,0,128,45,128,110v0,72,-57,103,-92,103v-19,1,-23,-12,-26,-22v-27,37,-94,25,-94,-37v0,-69,83,-135,121,-68","w":288},"A":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"B":{"d":"62,-149v39,3,71,-2,70,-40v-1,-43,-33,-37,-70,-37r0,77xm62,-31v44,1,79,3,79,-45v0,-44,-35,-47,-79,-44r0,89xm21,0r0,-257v72,1,153,-15,153,62v0,31,-12,51,-38,59v28,5,46,22,46,66v0,43,-31,70,-79,70r-82,0","w":193,"k":{",":11,".":11}},"C":{"d":"138,-92r41,0v1,50,-17,97,-79,97v-65,0,-85,-42,-85,-134v0,-92,20,-133,85,-133v75,0,78,53,78,85r-41,0v0,-27,-6,-54,-37,-54v-30,0,-44,18,-44,101v0,83,14,104,44,104v35,-1,38,-39,38,-66","w":186,"k":{",":6,".":6}},"D":{"d":"62,-226r0,195v67,3,82,-3,82,-98v0,-91,-15,-101,-82,-97xm21,0r0,-257r73,0v81,0,91,52,91,128v0,76,-10,129,-91,129r-73,0","w":200,"k":{"Y":6,"\u00dd":6,"\u0178":6,",":14,".":14}},"E":{"d":"21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0","w":173},"F":{"d":"21,0r0,-257r137,0r0,35r-96,0r0,71r91,0r0,34r-91,0r0,117r-41,0","w":166,"k":{",":46,".":46,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"G":{"d":"148,0r0,-30v-11,24,-27,35,-57,35v-56,0,-76,-42,-76,-134v0,-92,26,-133,85,-133v66,0,77,49,76,79r-39,0v1,-24,-6,-48,-36,-48v-29,0,-45,19,-45,101v0,83,14,104,42,104v31,0,42,-22,42,-78r-43,0r0,-31r82,0r0,135r-31,0","w":193,"k":{",":6,".":6}},"H":{"d":"21,0r0,-257r41,0r0,103r76,0r0,-103r41,0r0,257r-41,0r0,-120r-76,0r0,120r-41,0","w":200},"I":{"d":"19,0r0,-257r41,0r0,257r-41,0"},"J":{"d":"6,-77r39,0v0,26,0,51,27,51v27,0,27,-25,27,-51r0,-180r41,0r0,186v0,57,-28,76,-69,76v-60,0,-66,-36,-65,-82","w":159,"k":{",":14,".":14}},"K":{"d":"21,0r0,-257r41,0r1,112r78,-112r45,0r-74,108r82,149r-47,0r-62,-116r-23,33r0,83r-41,0","w":186},"L":{"d":"17,0r0,-257r41,0r0,222r99,0r0,35r-140,0","w":159,"k":{"T":33,"V":27,"W":27,"y":13,"\u00fd":13,"\u00ff":13,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":40,"\u2019":40}},"M":{"d":"21,0r0,-257r64,0r46,190r45,-190r63,0r0,257r-39,0r-1,-214r-52,214r-34,0r-53,-214r0,214r-39,0","w":259},"N":{"d":"21,0r0,-257r50,0r76,191r0,-191r38,0r0,257r-50,0r-75,-197r0,197r-39,0","w":206,"k":{",":6,".":6}},"O":{"d":"100,5v-59,0,-85,-42,-85,-134v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,92,-26,134,-85,134xm100,-26v24,0,44,-15,44,-104v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,89,20,104,44,104","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"P":{"d":"62,-226r0,89v40,2,67,1,70,-44v2,-39,-28,-49,-70,-45xm21,0r0,-257r82,0v49,0,71,31,71,75v1,60,-45,83,-112,76r0,106r-41,0","w":180,"k":{",":54,".":54,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"Q":{"d":"167,23r-27,-27v-77,29,-125,-14,-125,-125v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,48,-8,83,-20,102r26,28xm95,-48r24,-23r17,17v6,-15,8,-40,8,-76v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,98,16,108,59,102","w":200,"k":{",":6,".":6}},"R":{"d":"142,0v-20,-30,12,-119,-46,-112r-34,0r0,112r-41,0r0,-257v75,3,156,-19,156,66v0,34,-17,58,-43,64v26,3,40,16,41,52v1,27,-4,67,13,75r-46,0xm62,-143v40,3,74,-1,74,-41v0,-42,-33,-45,-74,-42r0,83","w":193,"k":{"T":6,"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"12,-80r41,0v-2,34,12,55,42,54v26,0,39,-18,39,-37v2,-40,-36,-45,-65,-56v-37,-14,-54,-33,-54,-70v0,-47,32,-73,80,-73v68,0,73,40,73,73r-41,0v1,-26,-8,-42,-36,-42v-18,0,-34,10,-34,37v0,32,38,45,66,54v36,13,52,33,52,68v0,55,-33,77,-85,77v-67,0,-79,-42,-78,-85","w":186,"k":{",":11,".":11}},"T":{"d":"63,0r0,-222r-61,0r0,-35r163,0r0,35r-61,0r0,222r-41,0","w":166,"k":{"\u00fc":27,"\u00f2":27,"\u00f6":27,"\u00ec":6,"\u00ee":6,"\u00ed":6,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":27,"y":27,"\u00fd":27,"\u00ff":27,",":33,".":33,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"r":27,"e":27,"\u00e9":27,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"a":27,"\u00e6":27,"\u00e1":27,"-":27,"i":6,"\u00ef":6,"O":11,"\u00d8":11,"\u0152":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,":":27,";":27}},"U":{"d":"18,-257r41,0r0,184v0,32,13,47,38,47v24,0,37,-15,37,-47r0,-184r41,0r0,181v0,59,-29,81,-78,81v-49,0,-79,-22,-79,-81r0,-181","w":193,"k":{",":11,".":11}},"V":{"d":"58,0r-60,-257r43,0r45,205r46,-205r43,0r-64,257r-53,0","w":173,"k":{"\u00f6":6,"\u00f4":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,",":33,".":33,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f2":6,"\u00f5":6,"a":6,"\u00e6":6,"\u00e1":6,"-":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":6,";":6}},"W":{"d":"52,0r-50,-257r42,0r34,200r34,-200r43,0r35,201r34,-201r41,0r-52,257r-47,0r-34,-194r-33,194r-47,0","w":266,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":6,"y":6,"\u00fd":6,"\u00ff":6,",":27,".":27,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"-":6}},"X":{"d":"0,0r68,-131r-62,-126r45,0r41,85r40,-85r45,0r-63,126r66,131r-45,0r-45,-93r-46,93r-44,0","w":180},"Y":{"d":"65,0r0,-100r-66,-157r45,0r43,111r45,-111r43,0r-69,157r0,100r-41,0","w":173,"k":{"\u00fc":18,"\u00f6":20,",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"-":27,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"u":18,"\u00fa":18,"\u00fb":18,"\u00f9":18,":":13,";":13,"S":6,"\u0160":6}},"Z":{"d":"6,0r0,-32r108,-190r-101,0r0,-35r146,0r0,35r-108,187r109,0r0,35r-154,0","w":166},"[":{"d":"28,66r0,-323r73,0r0,29r-37,0r0,265r37,0r0,29r-73,0","w":100},"\\":{"d":"78,5r-82,-267r32,0r82,267r-32,0","w":106},"]":{"d":"-1,66r0,-29r37,0r0,-265r-37,0r0,-29r73,0r0,323r-73,0","w":100},"^":{"d":"165,-101r-57,-118r-57,118r-30,0r73,-149r27,0r74,149r-30,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"23,-154v1,-50,-8,-95,41,-103r0,21v-12,3,-19,16,-18,34r18,0r0,48r-41,0","w":86,"k":{"\u2018":22,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"a":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78","w":166},"b":{"d":"19,0r0,-257r39,0r0,86v7,-17,23,-28,44,-28v30,0,60,14,60,100v0,67,-18,104,-63,104v-29,1,-37,-18,-44,-29r0,24r-36,0xm55,-95v0,41,6,69,33,69v27,0,33,-28,33,-72v0,-52,-8,-70,-30,-70v-30,0,-36,27,-36,73","w":173,"k":{"y":4,"\u00fd":4,"\u00ff":4,",":13,".":13}},"c":{"d":"113,-71r36,0v-3,46,-18,76,-66,76v-56,0,-72,-42,-72,-102v0,-60,16,-102,72,-102v58,0,67,46,67,70r-39,0v0,-18,-5,-41,-28,-41v-28,0,-33,30,-33,73v0,43,5,73,33,73v22,0,30,-18,30,-47","w":159,"k":{"y":6,"\u00fd":6,"\u00ff":6,",":13,".":13,"h":2,"k":2}},"d":{"d":"118,0v-1,-7,2,-18,-1,-24v-5,13,-14,29,-42,29v-45,0,-64,-37,-64,-104v0,-86,30,-100,60,-100v22,-1,36,13,45,28r0,-86r38,0r0,257r-36,0xm118,-95v0,-46,-6,-73,-36,-73v-22,0,-30,18,-30,70v0,44,6,72,33,72v27,0,33,-28,33,-69","w":173,"k":{"y":2,"\u00fd":2,"\u00ff":2}},"e":{"d":"153,-92r-101,0v0,32,0,70,33,70v28,0,31,-31,31,-43r36,0v0,43,-26,70,-68,70v-32,0,-71,-9,-71,-99v0,-51,11,-105,72,-105v61,0,70,45,68,107xm52,-118r62,0v1,-28,-3,-54,-29,-54v-26,0,-34,27,-33,54","w":166,"k":{",":13,".":13,"x":2}},"f":{"d":"31,0r0,-165r-27,0r0,-29r27,0v-6,-53,19,-73,70,-65r0,30v-26,-3,-36,8,-32,35r32,0r0,29r-32,0r0,165r-38,0","w":100,"k":{"\u201d":-6,"\u2019":-6,",":13,".":13}},"g":{"d":"21,17r37,0v0,12,11,23,28,23v31,1,34,-34,32,-68v-7,17,-25,27,-44,27v-45,0,-58,-45,-58,-98v0,-42,6,-100,61,-100v24,-1,38,17,44,29r0,-24r36,0r0,185v0,47,-20,75,-72,75v-58,0,-64,-33,-64,-49xm55,-103v0,33,1,71,30,71v30,0,33,-38,33,-69v0,-32,-4,-67,-31,-67v-28,0,-32,29,-32,65","w":173,"k":{",":6,".":6,"r":-2}},"h":{"d":"19,0r0,-257r39,0r1,85v23,-40,95,-40,95,26r0,146r-38,0r0,-133v0,-25,-8,-35,-27,-35v-16,0,-31,13,-31,38r0,130r-39,0","w":173,"k":{"y":2,"\u00fd":2,"\u00ff":2}},"i":{"d":"21,0r0,-194r38,0r0,194r-38,0xm21,-221r0,-39r38,0r0,39r-38,0"},"j":{"d":"21,-194r38,0r0,207v1,47,-26,57,-68,52r0,-30v21,1,30,-1,30,-26r0,-203xm21,-260r38,0r0,39r-38,0r0,-39"},"k":{"d":"19,0r0,-257r39,0r0,144r59,-81r45,0r-58,75r66,119r-43,0r-47,-88r-22,26r0,62r-39,0","w":166,"k":{"y":2,"\u00fd":2,"\u00ff":2,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2}},"l":{"d":"21,0r0,-257r38,0r0,257r-38,0"},"m":{"d":"21,0r0,-194r36,0v1,7,-2,18,1,23v16,-37,85,-35,92,2v20,-43,96,-44,96,22r0,147r-39,0r0,-133v0,-25,-7,-35,-23,-35v-16,0,-31,13,-31,38r0,130r-39,0r0,-133v0,-25,-8,-35,-24,-35v-15,0,-31,13,-31,38r0,130r-38,0","w":266},"n":{"d":"19,0r0,-194r36,0v1,7,-3,20,2,23v20,-40,97,-43,97,25r0,146r-38,0r0,-133v0,-25,-8,-35,-27,-35v-16,0,-31,13,-31,38r0,130r-39,0","w":173},"o":{"d":"11,-97v0,-60,16,-102,72,-102v57,0,73,42,73,102v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102xm50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-43,-6,-73,-34,-73v-28,0,-33,30,-33,73","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"p":{"d":"19,63r0,-257r36,0v1,7,-2,18,1,24v8,-17,23,-29,44,-29v44,0,62,38,62,105v0,81,-33,99,-60,99v-21,0,-37,-11,-44,-28r0,86r-39,0xm55,-99v0,46,7,73,34,73v22,0,32,-16,32,-70v0,-44,-6,-72,-33,-72v-27,0,-33,28,-33,69","w":173,"k":{"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"q":{"d":"116,63r-1,-86v-7,17,-23,28,-44,28v-30,0,-60,-21,-60,-99v0,-67,19,-105,64,-105v29,-1,36,18,43,29r0,-24r36,0r0,257r-38,0xm118,-99v0,-41,-6,-69,-33,-69v-27,0,-33,28,-33,72v0,52,10,70,30,70v30,0,36,-27,36,-73","w":173},"r":{"d":"19,0r0,-194r39,0r0,31v10,-25,28,-41,55,-34r0,39v-29,-5,-55,-2,-55,42r0,116r-39,0","w":113,"k":{"v":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,"\u2019":-4,",":33,".":33,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"c":2,"\u00e7":2,"d":2,"g":2,"m":-4,"n":-4,"\u00f1":-4,"q":4,"-":20}},"s":{"d":"139,-137r-37,0v1,-19,-3,-34,-25,-35v-15,0,-28,7,-28,25v0,24,32,30,52,37v29,10,42,25,42,56v0,41,-30,59,-69,59v-52,0,-65,-25,-64,-67r35,0v-1,25,6,40,30,40v39,0,41,-46,10,-56v-34,-11,-73,-22,-73,-67v0,-36,26,-54,66,-54v53,0,62,29,61,62","w":153},"t":{"d":"1,-165r0,-29r27,0r0,-55r39,0r0,55r32,0r0,29r-32,0r0,116v-2,21,16,22,32,19r0,29v-36,5,-71,12,-71,-44r0,-120r-27,0","w":100},"u":{"d":"118,0v-1,-7,2,-18,-1,-23v-25,40,-98,46,-98,-35r0,-136r39,0r0,139v0,22,9,29,26,29v17,0,32,-10,32,-32r0,-136r38,0r0,194r-36,0","w":173},"v":{"d":"54,0r-51,-194r41,0r35,153r30,-153r42,0r-51,194r-46,0","w":153,"k":{",":27,".":27,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"w":{"d":"49,0r-44,-194r41,0r27,153r29,-153r44,0r30,153r26,-153r39,0r-44,194r-44,0r-31,-150r-27,150r-46,0","w":246,"k":{",":20,".":20,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4}},"x":{"d":"1,0r53,-100r-50,-94r42,0r31,64r31,-64r42,0r-50,94r52,100r-42,0r-34,-72r-34,72r-41,0","w":153},"y":{"d":"3,-194r42,0r34,146r31,-146r40,0r-53,201v-16,60,-32,61,-83,58r0,-31v26,6,41,-7,44,-30","w":153,"k":{",":27,".":27,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2}},"z":{"d":"9,0r0,-30r85,-131r-80,0r0,-33r124,0r0,32r-82,129r82,0r0,33r-129,0","w":146},"{":{"d":"3,-84r0,-23v37,-3,28,-62,29,-103v1,-42,26,-50,66,-47r0,22v-46,-9,-30,53,-30,91v0,35,-25,44,-33,49v9,2,33,14,33,48v0,35,-20,97,30,91r0,22v-40,3,-65,-4,-66,-47v-1,-42,8,-99,-29,-103","w":100},"|":{"d":"24,5r0,-267r31,0r0,267r-31,0"},"}":{"d":"98,-107r0,23v-37,3,-30,61,-30,103v0,42,-26,51,-65,47r0,-22v45,8,29,-54,29,-91v0,-35,25,-44,33,-49v-9,-2,-33,-14,-33,-48v0,-35,20,-97,-29,-91r0,-22v39,-3,64,5,65,47v1,42,-8,100,30,103","w":100},"~":{"d":"146,-63v-25,0,-56,-24,-77,-26v-11,0,-21,9,-31,28r-13,-27v10,-21,28,-32,45,-32v41,2,85,57,108,-1r13,27v-11,19,-28,31,-45,31","w":216},"\u00a1":{"d":"64,-125r7,107r0,81r-41,0v-1,-66,2,-127,6,-188r28,0xm71,-194r0,41r-41,0r0,-41r41,0","w":100},"\u00a2":{"d":"81,-24r0,-146v-36,8,-35,138,0,146xm81,37r0,-32v-49,-4,-64,-45,-64,-102v0,-57,15,-98,64,-102r0,-27r15,0r0,27v51,3,60,47,60,70r-39,0v0,-16,-4,-37,-21,-41r0,146v17,-5,23,-22,23,-47r37,0v-3,44,-18,73,-60,76r0,32r-15,0","w":172},"\u00a3":{"d":"6,-113r0,-25r25,0v-33,-48,-21,-117,57,-117v59,0,77,34,76,74r-39,0v0,-20,-3,-45,-35,-45v-54,0,-34,62,-16,88r60,0r0,25r-50,0v12,38,-12,65,-39,83v6,3,18,-10,27,-7v29,8,61,17,83,-4v3,11,20,27,6,33v-43,36,-101,-21,-142,10r-15,-28v25,-12,57,-50,38,-87r-36,0","w":172},"\u2044":{"d":"-59,11r152,-272r26,0r-151,272r-27,0","w":60},"\u00a5":{"d":"66,0r0,-58r-51,0r0,-25r51,0v0,-10,0,-20,-4,-25r-47,0r0,-24r36,0r-50,-118r44,0r41,102r43,-102r43,0r-53,118r36,0r0,24r-47,0v-4,5,-4,15,-4,25r51,0r0,25r-51,0r0,58r-38,0","w":172},"\u0192":{"d":"34,-156r38,0v11,-46,10,-103,69,-101v10,0,19,1,27,3r-5,27v-43,-14,-46,38,-54,71r40,0r-4,24r-41,0r-27,134v-7,48,-36,68,-86,59r6,-28v24,6,37,-1,43,-28r28,-137r-38,0","w":172},"\u00a7":{"d":"130,-94v-4,-35,-41,-38,-64,-55v-10,7,-24,16,-23,31v2,25,50,38,69,54v8,-8,20,-16,18,-30xm153,-206r-39,0v0,-18,-10,-27,-28,-27v-37,0,-35,38,-1,54v32,15,80,35,80,80v0,21,-12,39,-29,50v43,36,11,105,-48,105v-48,0,-70,-28,-70,-66r39,0v0,20,9,35,31,35v15,0,27,-10,27,-27v0,-57,-108,-45,-106,-111v0,-24,15,-42,33,-52v-47,-28,-15,-97,45,-97v53,0,66,32,66,56","w":173},"\u00a4":{"d":"2,-57r19,-18v-22,-26,-22,-74,0,-100r-19,-18r16,-17r19,19v27,-22,72,-22,99,0r18,-19r17,17r-19,18v22,27,22,73,0,100r19,18r-17,17r-18,-19v-27,23,-72,22,-99,0r-19,19xm86,-69v30,0,54,-24,54,-56v0,-32,-24,-56,-54,-56v-30,0,-54,24,-54,56v0,32,24,56,54,56","w":172},"'":{"d":"28,-154r0,-103r31,0r0,103r-31,0","w":86},"\u201c":{"d":"24,-154v1,-50,-8,-95,41,-103r0,21v-12,3,-19,16,-18,34r18,0r0,48r-41,0xm88,-154v1,-50,-8,-95,41,-103r0,21v-12,3,-19,16,-18,34r18,0r0,48r-41,0","w":153,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00ab":{"d":"77,-84r0,-41r52,-48r0,39r-32,30r32,29r0,40xm18,-84r0,-41r52,-48r0,39r-32,30r32,29r0,40","w":146},"\u2039":{"d":"17,-84r0,-41r52,-48r0,39r-32,30r32,29r0,40","w":86},"\u203a":{"d":"69,-125r0,41r-52,49r0,-40r32,-29r-32,-30r0,-39","w":86},"\ufb01":{"d":"121,0r0,-194r38,0r0,194r-38,0xm121,-221r0,-39r38,0r0,39r-38,0xm31,0r0,-165r-27,0r0,-29r27,0v-6,-53,19,-73,70,-65r0,30v-26,-3,-36,8,-32,35r32,0r0,29r-32,0r0,165r-38,0","w":180},"\ufb02":{"d":"121,0r0,-257r38,0r0,257r-38,0xm31,0r0,-165r-27,0r0,-29r27,0v-6,-53,19,-73,70,-65r0,30v-26,-3,-36,8,-32,35r32,0r0,29r-32,0r0,165r-38,0","w":180},"\u2013":{"d":"0,-87r0,-34r180,0r0,34r-180,0","w":180},"\u2020":{"d":"67,-184r0,-73r39,0r0,73r62,0r0,32r-62,0r0,203r-39,0r0,-203r-61,0r0,-32r61,0","w":173},"\u2021":{"d":"67,-187r0,-70r39,0r0,70r62,0r0,31r-62,0r0,105r62,0r0,30r-62,0r0,72r-39,0r0,-72r-62,0r0,-30r62,0r0,-105r-62,0r0,-31r62,0","w":173},"\u00b7":{"d":"17,-111v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":86},"\u00b6":{"d":"159,51r0,-284r-39,0r0,284r-33,0r0,-175v-37,0,-68,-27,-68,-65v0,-80,94,-68,173,-68r0,308r-33,0","w":216},"\u2022":{"d":"26,-129v0,-35,29,-64,64,-64v35,0,64,29,64,64v0,35,-29,65,-64,65v-35,0,-64,-30,-64,-65","w":180},"\u201a":{"d":"23,0r0,-48r41,0v-1,50,8,95,-41,103r0,-20v12,-3,19,-17,18,-35r-18,0","w":86},"\u201e":{"d":"88,0r0,-48r41,0v-1,50,8,95,-41,103r0,-20v12,-3,19,-17,18,-35r-18,0xm24,0r0,-48r41,0v-1,50,8,95,-41,103r0,-20v12,-3,19,-17,18,-35r-18,0","w":153},"\u201d":{"d":"88,-210r0,-47r41,0v-1,50,8,95,-41,103r0,-21v13,-3,19,-16,18,-35r-18,0xm24,-210r0,-47r41,0v-1,50,8,95,-41,103r0,-21v13,-3,19,-16,18,-35r-18,0","w":153,"k":{" ":13}},"\u00bb":{"d":"70,-125r0,41r-52,49r0,-40r32,-29r-32,-30r0,-39xm129,-125r0,41r-52,49r0,-40r31,-29r-31,-30r0,-39","w":146},"\u2026":{"d":"40,0r0,-48r41,0r0,48r-41,0xm159,0r0,-48r42,0r0,48r-42,0xm279,0r0,-48r41,0r0,48r-41,0","w":360},"\u2030":{"d":"322,-111v-15,0,-19,14,-19,47v0,33,4,47,19,47v15,0,18,-14,18,-47v0,-33,-3,-47,-18,-47xm175,-255r28,0r-115,260r-27,0xm58,-233v-15,0,-18,14,-18,47v0,33,3,47,18,47v15,0,19,-14,19,-47v0,-33,-4,-47,-19,-47xm322,-133v28,0,49,15,49,69v0,54,-21,69,-49,69v-28,0,-49,-15,-49,-69v0,-54,21,-69,49,-69xm58,-255v28,0,50,15,50,69v0,54,-22,69,-50,69v-28,0,-49,-15,-49,-69v0,-54,21,-69,49,-69xm207,-111v-15,0,-18,14,-18,47v0,33,3,47,18,47v15,0,18,-14,18,-47v0,-33,-3,-47,-18,-47xm207,-133v28,0,49,15,49,69v0,54,-21,69,-49,69v-28,0,-49,-15,-49,-69v0,-54,21,-69,49,-69","w":380},"\u00bf":{"d":"106,-125v11,70,-50,67,-52,124v0,20,7,38,29,38v24,0,32,-20,32,-50r39,0v0,45,-19,81,-71,81v-45,0,-70,-25,-70,-69v1,-70,65,-66,56,-124r37,0xm108,-194r0,41r-41,0r0,-41r41,0","w":166},"`":{"d":"33,-219r-38,-52r43,0r22,52r-27,0"},"\u00b4":{"d":"20,-219r22,-52r43,0r-38,52r-27,0"},"\u02c6":{"d":"-12,-219r33,-52r39,0r32,52r-33,0r-19,-32r-21,32r-31,0"},"\u02dc":{"d":"22,-265v15,0,48,28,50,-1r22,0v0,16,-10,43,-31,43v-22,-1,-51,-29,-55,2r-22,0v0,-15,9,-44,36,-44"},"\u00af":{"d":"-11,-257r102,0r0,22r-102,0r0,-22"},"\u02d8":{"d":"-8,-267r22,0v0,9,9,24,26,24v17,0,26,-15,26,-24r22,0v0,27,-17,48,-48,48v-31,0,-48,-21,-48,-48"},"\u02d9":{"d":"23,-226r0,-39r34,0r0,39r-34,0"},"\u00a8":{"d":"53,-226r0,-39r34,0r0,39r-34,0xm-7,-226r0,-39r34,0r0,39r-34,0"},"\u02da":{"d":"20,-252v0,11,9,21,20,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20xm2,-252v0,-21,17,-38,38,-38v21,0,38,17,38,38v0,21,-17,39,-38,39v-21,0,-38,-18,-38,-39"},"\u00b8":{"d":"35,0r18,0r-15,21v20,-7,42,5,42,24v0,33,-51,39,-78,27r6,-15v13,5,42,11,43,-9v1,-20,-30,-5,-36,-17"},"\u02dd":{"d":"-23,-219r22,-52r43,0r-38,52r-27,0xm49,-219r22,-52r43,0r-38,52r-27,0"},"\u02db":{"d":"9,46v2,-20,18,-49,53,-46v-19,17,-25,31,-25,41v-1,20,19,25,37,18r2,16v-29,7,-68,4,-67,-29"},"\u02c7":{"d":"20,-219r-32,-52r33,0r19,32r21,-32r31,0r-33,52r-39,0"},"\u2014":{"d":"0,-87r0,-34r360,0r0,34r-360,0","w":360},"\u00c6":{"d":"72,-96r49,0r0,-128r-3,0xm-4,0r98,-257r157,0r0,35r-91,0r0,71r86,0r0,34r-86,0r0,82r95,0r0,35r-134,0r0,-63r-60,0r-22,63r-43,0","w":266},"\u00aa":{"d":"3,-165v0,-36,27,-34,52,-42v19,-1,24,-28,-1,-28v-17,0,-19,10,-19,18r-26,0v0,-24,11,-38,49,-38v24,0,42,8,42,29r0,63v-1,7,5,11,11,8r0,20v-14,7,-36,2,-38,-14v-14,27,-70,22,-70,-16xm71,-197v-13,8,-41,8,-37,30v0,6,5,13,15,13v21,0,24,-20,22,-43","w":113},"\u0141":{"d":"17,0r0,-94r-21,14r0,-35r21,-14r0,-128r41,0r0,100r52,-37r0,36r-52,36r0,87r99,0r0,35r-140,0","w":159,"k":{"T":33,"V":27,"W":27,"y":13,"\u00fd":13,"\u00ff":13,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":40,"\u2019":40}},"\u00d8":{"d":"139,-193v-24,49,-43,103,-66,154v7,10,17,13,27,13v24,0,44,-15,44,-104v0,-28,-2,-49,-5,-63xm62,-64v24,-49,43,-104,65,-155v-8,-10,-17,-12,-27,-12v-24,0,-44,15,-44,101v0,29,2,51,6,66xm49,19r-18,-9r11,-28v-19,-21,-27,-58,-27,-111v0,-112,48,-154,126,-123r10,-23r19,8r-12,28v19,21,27,57,27,110v0,112,-48,155,-126,124","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0152":{"d":"144,0v-1,-6,2,-14,-1,-18v-10,16,-29,23,-49,23v-53,0,-79,-41,-79,-134v0,-92,26,-133,80,-133v23,-1,38,9,49,21r0,-16r127,0r0,35r-91,0r0,71r86,0r0,34r-86,0r0,82r94,0r0,35r-130,0xm141,-85v0,-51,9,-157,-38,-146v-27,0,-47,15,-47,101v0,89,20,104,44,104v24,0,41,-10,41,-59","w":286},"\u00ba":{"d":"57,-132v-40,0,-52,-25,-52,-61v0,-37,12,-62,52,-62v40,0,52,25,52,62v0,36,-12,61,-52,61xm57,-154v18,0,21,-18,21,-39v0,-22,-3,-40,-21,-40v-18,0,-21,18,-21,40v0,21,3,39,21,39","w":113},"\u00e6":{"d":"144,-118r57,0v1,-28,-3,-55,-28,-54v-26,1,-30,32,-29,54xm240,-92r-97,0v-1,33,2,70,29,70v28,0,31,-31,31,-43r36,0v0,43,-26,70,-68,70v-38,0,-48,-23,-53,-35v-19,51,-107,48,-107,-19v0,-56,39,-57,79,-68v13,-3,16,-7,16,-26v0,-18,-6,-29,-24,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v32,0,43,18,46,25v9,-16,26,-25,47,-25v56,-1,65,46,63,107xm73,-24v34,0,36,-38,34,-75v-4,5,-19,8,-29,11v-26,7,-28,20,-28,37v0,14,9,27,23,27","w":253},"\u0131":{"d":"21,0r0,-194r38,0r0,194r-38,0"},"\u0142":{"d":"21,0r0,-103r-21,14r0,-34r21,-15r0,-119r38,0r0,93r21,-15r0,35r-21,14r0,130r-38,0"},"\u00f8":{"d":"103,-162v-35,-24,-53,11,-53,65v0,16,1,30,3,42xm114,-139v-19,33,-33,72,-50,107v34,25,53,-12,53,-65v0,-16,-1,-30,-3,-42xm21,13r13,-27v-39,-46,-37,-185,49,-185v13,0,25,2,34,7r10,-23r18,9r-12,26v39,46,38,185,-50,185v-13,0,-24,-2,-33,-7r-11,24","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"\u0153":{"d":"152,-118r58,0v1,-28,-3,-55,-28,-54v-26,1,-31,31,-30,54xm211,-65r37,0v0,43,-26,70,-68,70v-36,0,-46,-25,-48,-31v-11,22,-29,31,-53,31v-52,0,-68,-42,-68,-102v0,-60,16,-102,71,-102v36,0,46,18,53,30v12,-20,27,-30,51,-30v56,-1,65,46,63,107r-97,0v-1,32,1,70,28,70v28,0,31,-31,31,-43xm50,-97v0,43,5,73,32,73v28,0,33,-30,33,-73v0,-43,-5,-73,-33,-73v-27,0,-32,30,-32,73","w":259,"k":{",":13,".":13,"x":2}},"\u00df":{"d":"75,2r0,-31v33,3,46,-14,46,-50v0,-39,-14,-55,-45,-52r0,-28v18,1,36,-5,36,-36v0,-21,-7,-36,-29,-36v-21,0,-28,13,-28,36r0,195r-39,0r0,-192v0,-45,23,-68,68,-68v33,0,67,13,67,59v1,29,-12,46,-36,54v37,4,47,36,47,67v0,55,-26,88,-87,82","w":173},"\u00b9":{"d":"47,-101r0,-110r-33,0r0,-20v19,0,39,-2,42,-24r22,0r0,154r-31,0","w":112},"\u00ac":{"d":"168,-38r0,-75r-151,0r0,-31r182,0r0,106r-31,0","w":216},"\u00b5":{"d":"19,63r0,-257r39,0r0,133v0,25,8,35,27,35v16,0,31,-13,31,-38r0,-130r38,0r0,194r-36,0v-1,-7,2,-18,-1,-23v-13,22,-38,36,-59,22r0,64r-39,0","w":173},"\u2122":{"d":"56,-109r0,-124r-44,0r0,-24r119,0r0,24r-44,0r0,124r-31,0xm298,-109r-1,-117r-43,117r-20,0r-45,-117r0,117r-28,0r0,-148r42,0r41,105r40,-105r43,0r0,148r-29,0","w":360},"\u00d0":{"d":"21,0r0,-120r-21,0r0,-29r21,0r0,-108r73,0v81,0,91,52,91,128v0,76,-10,129,-91,129r-73,0xm62,-31v67,3,82,-3,82,-98v0,-91,-15,-101,-82,-97r0,77r43,0r0,29r-43,0r0,89","w":200,"k":{"Y":6,"\u00dd":6,"\u0178":6,",":14,".":14}},"\u00bd":{"d":"27,11r151,-272r27,0r-152,272r-26,0xm36,-101r0,-110r-32,0v1,-6,-3,-17,2,-20v16,0,37,-3,39,-24r22,0r0,154r-31,0xm247,0r-99,0v0,-72,70,-68,70,-111v0,-13,-7,-21,-19,-21v-17,0,-20,17,-20,28r-31,0v0,-30,14,-50,52,-50v36,0,49,17,49,41v0,49,-54,53,-68,89r66,0r0,24","w":259},"\u00b1":{"d":"93,-128r0,-54r30,0r0,54r76,0r0,31r-76,0r0,55r-30,0r0,-55r-76,0r0,-31r76,0xm17,0r0,-31r182,0r0,31r-182,0","w":216},"\u00de":{"d":"62,-177r0,89v40,2,67,1,70,-44v2,-39,-28,-49,-70,-45xm21,0r0,-257r41,0r0,49v68,-7,112,15,112,75v0,60,-45,83,-112,76r0,57r-41,0","w":180},"\u00bc":{"d":"196,0r0,-34r-59,0r0,-22r57,-98r31,0r0,100r18,0r0,20r-18,0r0,34r-29,0xm196,-54v-1,-21,2,-47,-1,-66r-37,66r38,0xm27,11r151,-272r27,0r-152,272r-26,0xm36,-101r0,-110r-32,0v1,-6,-3,-17,2,-20v16,0,37,-3,39,-24r22,0r0,154r-31,0","w":259},"\u00f7":{"d":"82,-17v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm17,-76r0,-31r182,0r0,31r-182,0xm82,-165v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":216},"\u00a6":{"d":"24,5r0,-100r31,0r0,100r-31,0xm24,-162r0,-100r31,0r0,100r-31,0"},"\u00b0":{"d":"18,-201v0,-30,24,-54,54,-54v30,0,54,24,54,54v0,30,-24,53,-54,53v-30,0,-54,-23,-54,-53xm43,-201v0,16,13,29,29,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29","w":144},"\u00fe":{"d":"19,63r0,-320r39,0r0,86v7,-17,23,-28,44,-28v42,0,60,38,60,105v0,81,-33,99,-60,99v-21,0,-37,-11,-44,-28r0,86r-39,0xm55,-99v0,46,7,73,34,73v22,0,32,-16,32,-70v0,-44,-6,-72,-33,-72v-27,0,-33,28,-33,69","w":173,"k":{"y":4,"\u00fd":4,"\u00ff":4,",":13,".":13}},"\u00be":{"d":"196,0r0,-34r-59,0r0,-22r57,-98r31,0r0,100r18,0r0,20r-18,0r0,34r-29,0xm196,-54v-1,-21,2,-47,-1,-66r-37,66r38,0xm39,11r151,-272r27,0r-151,272r-27,0xm32,-170r0,-22v20,3,33,-7,33,-21v0,-9,-5,-20,-18,-20v-14,0,-19,13,-19,22r-31,0v0,-29,20,-44,52,-44v22,0,47,12,47,39v1,17,-15,30,-29,35v18,1,33,13,33,35v0,30,-23,48,-54,48v-35,0,-52,-14,-52,-46r31,0v0,9,4,23,21,23v16,0,23,-12,23,-25v0,-18,-14,-26,-37,-24","w":259},"\u00b2":{"d":"105,-125r0,24r-99,0v0,-72,70,-68,70,-111v0,-13,-7,-21,-19,-21v-17,0,-20,17,-20,28r-31,0v0,-30,14,-50,52,-50v36,0,49,17,49,41v0,49,-54,53,-68,89r66,0","w":112},"\u00ae":{"d":"175,-52r-39,-65r-23,0r0,65r-27,0r0,-153v52,0,117,-9,117,44v0,28,-17,39,-39,43r42,66r-31,0xm113,-139v28,-1,63,7,63,-23v0,-28,-36,-20,-63,-21r0,44xm144,-24v56,0,101,-47,101,-105v0,-58,-45,-104,-101,-104v-56,0,-101,46,-101,104v0,58,45,105,101,105xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134","w":288},"\u2212":{"d":"17,-76r0,-31r182,0r0,31r-182,0","w":216},"\u00f0":{"d":"50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-38,-6,-68,-34,-68v-28,0,-33,30,-33,68xm34,-215r-13,-13r31,-17v-8,-8,-16,-14,-23,-19r28,-15v8,5,16,11,24,18r33,-18r11,13r-31,17v48,45,62,83,62,152v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102v0,-74,46,-117,97,-86v-9,-14,-26,-33,-43,-50","w":166},"\u00d7":{"d":"88,-91r-63,-63r20,-20r63,63r63,-63r20,20r-63,63r63,63r-20,20r-63,-63r-63,63r-20,-20","w":216},"\u00b3":{"d":"42,-170r0,-22v20,3,32,-8,32,-21v0,-9,-5,-20,-18,-20v-14,0,-19,13,-19,22r-31,0v0,-29,20,-44,52,-44v22,0,47,12,47,39v1,17,-15,30,-29,35v18,1,33,13,33,35v0,30,-22,48,-53,48v-35,0,-52,-14,-52,-46r31,0v0,9,4,23,21,23v16,0,22,-12,22,-25v0,-18,-13,-26,-36,-24","w":112},"\u00a9":{"d":"184,-105r29,0v-6,36,-33,57,-68,57v-44,0,-72,-32,-72,-81v0,-89,128,-111,139,-25r-28,0v-4,-17,-17,-29,-37,-29v-28,0,-43,24,-43,54v0,54,70,76,80,24xm144,-24v56,0,101,-47,101,-105v0,-58,-45,-104,-101,-104v-56,0,-101,46,-101,104v0,58,45,105,101,105xm10,-129v0,-74,60,-133,134,-133v74,0,134,59,134,133v0,74,-60,134,-134,134v-74,0,-134,-60,-134,-134","w":288},"\u00c1":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0xm76,-271r22,-52r43,0r-38,52r-27,0","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"\u00c2":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0xm44,-271r33,-52r39,0r32,52r-33,0r-19,-32r-21,32r-31,0","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"\u00c4":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0xm109,-279r0,-39r34,0r0,39r-34,0xm49,-279r0,-39r35,0r0,39r-35,0","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"\u00c0":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0xm89,-271r-38,-52r43,0r22,52r-27,0","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"\u00c5":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0xm76,-304v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20xm58,-304v0,-21,17,-38,38,-38v21,0,38,17,38,38v0,21,-17,38,-38,38v-21,0,-38,-17,-38,-38","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"\u00c3":{"d":"64,-96r61,0r-31,-126xm-3,0r73,-257r52,0r68,257r-43,0r-16,-63r-75,0r-16,63r-43,0xm78,-317v15,1,47,26,50,-1r22,0v0,16,-9,42,-30,42v0,0,-51,-28,-56,2r-22,0v0,-15,9,-43,36,-43","w":186,"k":{"v":6,"T":20,"V":11,"w":6,"W":11,"y":6,"\u00fd":6,"\u00ff":6,"Y":20,"\u00dd":20,"\u0178":20,"\u201d":20,"\u2019":20}},"\u00c7":{"d":"79,37v-13,-9,7,-21,11,-32v-57,-5,-75,-48,-75,-134v0,-92,20,-133,85,-133v75,0,78,53,78,85r-41,0v0,-27,-6,-54,-37,-54v-30,0,-44,18,-44,101v0,83,14,104,44,104v35,-1,38,-39,38,-66r41,0v1,49,-15,93,-72,97r-11,16v20,-7,42,5,42,24v0,33,-51,39,-78,27r6,-15v13,5,41,11,43,-9v1,-13,-18,-15,-30,-11","w":186,"k":{",":6,".":6}},"\u00c9":{"d":"21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0xm71,-271r22,-52r43,0r-38,52r-27,0","w":173},"\u00ca":{"d":"21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0xm39,-271r33,-52r39,0r32,52r-33,0r-19,-32r-21,32r-31,0","w":173},"\u00cb":{"d":"21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0xm104,-279r0,-39r34,0r0,39r-34,0xm44,-279r0,-39r34,0r0,39r-34,0","w":173},"\u00c8":{"d":"21,0r0,-257r139,0r0,35r-98,0r0,71r92,0r0,34r-92,0r0,82r101,0r0,35r-142,0xm84,-271r-38,-52r43,0r22,52r-27,0","w":173},"\u00cd":{"d":"19,0r0,-257r41,0r0,257r-41,0xm20,-271r22,-52r43,0r-38,52r-27,0"},"\u00ce":{"d":"19,0r0,-257r41,0r0,257r-41,0xm-12,-271r33,-52r39,0r32,52r-33,0r-19,-32r-21,32r-31,0"},"\u00cf":{"d":"19,0r0,-257r41,0r0,257r-41,0xm53,-279r0,-39r34,0r0,39r-34,0xm-7,-279r0,-39r34,0r0,39r-34,0"},"\u00cc":{"d":"19,0r0,-257r41,0r0,257r-41,0xm33,-271r-38,-52r43,0r22,52r-27,0"},"\u00d1":{"d":"21,0r0,-257r50,0r76,191r0,-191r38,0r0,257r-50,0r-75,-197r0,197r-39,0xm85,-317v15,0,48,27,50,-1r23,0v0,16,-10,42,-31,42v-22,0,-51,-27,-56,2r-22,0v0,-15,9,-43,36,-43","w":206,"k":{",":6,".":6}},"\u00d3":{"d":"100,5v-59,0,-85,-42,-85,-134v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,92,-26,134,-85,134xm100,-26v24,0,44,-15,44,-104v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,89,20,104,44,104xm80,-271r22,-52r43,0r-38,52r-27,0","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d4":{"d":"100,5v-59,0,-85,-42,-85,-134v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,92,-26,134,-85,134xm100,-26v24,0,44,-15,44,-104v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,89,20,104,44,104xm48,-271r33,-52r39,0r32,52r-33,0r-19,-32r-21,32r-31,0","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d6":{"d":"100,5v-59,0,-85,-42,-85,-134v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,92,-26,134,-85,134xm100,-26v24,0,44,-15,44,-104v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,89,20,104,44,104xm113,-279r0,-39r34,0r0,39r-34,0xm53,-279r0,-39r34,0r0,39r-34,0","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d2":{"d":"100,5v-59,0,-85,-42,-85,-134v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,92,-26,134,-85,134xm100,-26v24,0,44,-15,44,-104v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,89,20,104,44,104xm93,-271r-38,-52r43,0r22,52r-27,0","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u00d5":{"d":"100,5v-59,0,-85,-42,-85,-134v0,-92,26,-133,85,-133v59,0,85,41,85,133v0,92,-26,134,-85,134xm100,-26v24,0,44,-15,44,-104v0,-86,-20,-101,-44,-101v-24,0,-44,15,-44,101v0,89,20,104,44,104xm82,-317v15,1,47,26,50,-1r22,0v0,16,-10,42,-31,42v0,0,-50,-27,-55,2r-22,0v0,-15,9,-43,36,-43","w":200,"k":{"T":11,"V":6,"Y":14,"\u00dd":14,"\u0178":14,",":14,".":14,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"X":6}},"\u0160":{"d":"12,-80r41,0v-2,34,12,55,42,54v26,0,39,-18,39,-37v2,-40,-36,-45,-65,-56v-37,-14,-54,-33,-54,-70v0,-47,32,-73,80,-73v68,0,73,40,73,73r-41,0v1,-26,-8,-42,-36,-42v-18,0,-34,10,-34,37v0,32,38,45,66,54v36,13,52,33,52,68v0,55,-33,77,-85,77v-67,0,-79,-42,-78,-85xm74,-271r-32,-52r33,0r19,31r20,-31r31,0r-32,52r-39,0","w":186,"k":{",":11,".":11}},"\u00da":{"d":"18,-257r41,0r0,184v0,32,13,47,38,47v24,0,37,-15,37,-47r0,-184r41,0r0,181v0,59,-29,81,-78,81v-49,0,-79,-22,-79,-81r0,-181xm77,-271r22,-52r43,0r-38,52r-27,0","w":193,"k":{",":11,".":11}},"\u00db":{"d":"18,-257r41,0r0,184v0,32,13,47,38,47v24,0,37,-15,37,-47r0,-184r41,0r0,181v0,59,-29,81,-78,81v-49,0,-79,-22,-79,-81r0,-181xm45,-271r33,-52r39,0r32,52r-33,0r-20,-32r-20,32r-31,0","w":193,"k":{",":11,".":11}},"\u00dc":{"d":"18,-257r41,0r0,184v0,32,13,47,38,47v24,0,37,-15,37,-47r0,-184r41,0r0,181v0,59,-29,81,-78,81v-49,0,-79,-22,-79,-81r0,-181xm109,-279r0,-39r35,0r0,39r-35,0xm50,-279r0,-39r34,0r0,39r-34,0","w":193,"k":{",":11,".":11}},"\u00d9":{"d":"18,-257r41,0r0,184v0,32,13,47,38,47v24,0,37,-15,37,-47r0,-184r41,0r0,181v0,59,-29,81,-78,81v-49,0,-79,-22,-79,-81r0,-181xm90,-271r-38,-52r43,0r22,52r-27,0","w":193,"k":{",":11,".":11}},"\u00dd":{"d":"65,0r0,-100r-66,-157r45,0r43,111r45,-111r43,0r-69,157r0,100r-41,0xm67,-271r22,-52r43,0r-38,52r-27,0","w":173,"k":{",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"-":27,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":13,";":13,"S":6,"\u0160":6}},"\u0178":{"d":"65,0r0,-100r-66,-157r45,0r43,111r45,-111r43,0r-69,157r0,100r-41,0xm99,-279r0,-39r35,0r0,39r-35,0xm40,-279r0,-39r34,0r0,39r-34,0","w":173,"k":{",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"-":27,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":13,";":13,"S":6,"\u0160":6}},"\u017d":{"d":"6,0r0,-32r108,-190r-101,0r0,-35r146,0r0,35r-108,187r109,0r0,35r-154,0xm64,-271r-32,-52r32,0r20,31r20,-31r31,0r-32,52r-39,0","w":166},"\u00e1":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78xm64,-219r21,-52r44,0r-39,52r-26,0","w":166},"\u00e2":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78xm32,-219r32,-52r39,0r32,52r-32,0r-20,-32r-20,32r-31,0","w":166},"\u00e4":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78xm96,-226r0,-39r35,0r0,39r-35,0xm36,-226r0,-39r35,0r0,39r-35,0","w":166},"\u00e0":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78xm77,-219r-38,-52r43,0r21,52r-26,0","w":166},"\u00e5":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78xm63,-252v0,11,10,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20v-11,0,-21,9,-21,20xm45,-252v0,-21,18,-38,39,-38v21,0,38,17,38,38v0,21,-17,39,-38,39v-21,0,-39,-18,-39,-39","w":166},"\u00e3":{"d":"146,-151r0,111v-1,9,8,16,16,12r0,25v-19,10,-50,4,-52,-20v-20,44,-99,37,-99,-26v0,-57,36,-57,75,-69v14,-4,23,-8,23,-25v0,-18,-6,-29,-27,-29v-26,0,-29,18,-29,37r-37,0v0,-41,17,-64,68,-64v34,0,62,14,62,48xm109,-102v-20,15,-59,12,-59,49v0,16,8,29,24,29v34,2,37,-40,35,-78xm66,-265v15,0,48,28,50,-1r22,0v0,16,-10,43,-31,43v-22,-1,-51,-28,-56,2r-22,0v0,-15,10,-44,37,-44","w":166},"\u00e7":{"d":"66,37v-15,-8,6,-22,10,-33v-50,-3,-65,-44,-65,-101v0,-60,16,-102,72,-102v58,0,67,46,67,70r-39,0v0,-18,-5,-41,-28,-41v-28,0,-33,30,-33,73v0,43,5,73,33,73v22,0,30,-18,30,-47r36,0v-2,42,-15,71,-55,75r-12,17v20,-7,43,5,43,24v0,32,-52,39,-79,27r6,-15v13,5,42,11,44,-9v0,-13,-19,-15,-30,-11","w":159,"k":{"y":6,"\u00fd":6,"\u00ff":6,",":13,".":13,"h":2,"k":2}},"\u00e9":{"d":"153,-92r-101,0v0,32,0,70,33,70v28,0,31,-31,31,-43r36,0v0,43,-26,70,-68,70v-32,0,-71,-9,-71,-99v0,-51,11,-105,72,-105v61,0,70,45,68,107xm52,-118r62,0v1,-28,-3,-54,-29,-54v-26,0,-34,27,-33,54xm68,-219r22,-52r43,0r-38,52r-27,0","w":166,"k":{",":13,".":13,"x":2}},"\u00ea":{"d":"153,-92r-101,0v0,32,0,70,33,70v28,0,31,-31,31,-43r36,0v0,43,-26,70,-68,70v-32,0,-71,-9,-71,-99v0,-51,11,-105,72,-105v61,0,70,45,68,107xm52,-118r62,0v1,-28,-3,-54,-29,-54v-26,0,-34,27,-33,54xm36,-219r33,-52r39,0r32,52r-33,0r-20,-32r-20,32r-31,0","w":166,"k":{",":13,".":13,"x":2}},"\u00eb":{"d":"153,-92r-101,0v0,32,0,70,33,70v28,0,31,-31,31,-43r36,0v0,43,-26,70,-68,70v-32,0,-71,-9,-71,-99v0,-51,11,-105,72,-105v61,0,70,45,68,107xm52,-118r62,0v1,-28,-3,-54,-29,-54v-26,0,-34,27,-33,54xm100,-226r0,-39r35,0r0,39r-35,0xm41,-226r0,-39r34,0r0,39r-34,0","w":166,"k":{",":13,".":13,"x":2}},"\u00e8":{"d":"153,-92r-101,0v0,32,0,70,33,70v28,0,31,-31,31,-43r36,0v0,43,-26,70,-68,70v-32,0,-71,-9,-71,-99v0,-51,11,-105,72,-105v61,0,70,45,68,107xm52,-118r62,0v1,-28,-3,-54,-29,-54v-26,0,-34,27,-33,54xm81,-219r-38,-52r43,0r22,52r-27,0","w":166,"k":{",":13,".":13,"x":2}},"\u00ed":{"d":"21,0r0,-194r38,0r0,194r-38,0xm20,-219r22,-52r43,0r-38,52r-27,0"},"\u00ee":{"d":"21,0r0,-194r38,0r0,194r-38,0xm-12,-219r33,-52r39,0r32,52r-33,0r-19,-32r-21,32r-31,0"},"\u00ef":{"d":"21,0r0,-194r38,0r0,194r-38,0xm53,-226r0,-39r34,0r0,39r-34,0xm-7,-226r0,-39r34,0r0,39r-34,0"},"\u00ec":{"d":"21,0r0,-194r38,0r0,194r-38,0xm33,-219r-38,-52r43,0r22,52r-27,0"},"\u00f1":{"d":"19,0r0,-194r36,0v1,7,-3,20,2,23v20,-40,97,-43,97,25r0,146r-38,0r0,-133v0,-25,-8,-35,-27,-35v-16,0,-31,13,-31,38r0,130r-39,0xm69,-265v15,0,48,28,50,-1r22,0v0,16,-10,43,-31,43v-22,-1,-51,-29,-55,2r-23,0v0,-15,10,-44,37,-44","w":173},"\u00f3":{"d":"11,-97v0,-60,16,-102,72,-102v57,0,73,42,73,102v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102xm50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-43,-6,-73,-34,-73v-28,0,-33,30,-33,73xm64,-219r21,-52r44,0r-39,52r-26,0","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"\u00f4":{"d":"11,-97v0,-60,16,-102,72,-102v57,0,73,42,73,102v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102xm50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-43,-6,-73,-34,-73v-28,0,-33,30,-33,73xm32,-219r32,-52r39,0r32,52r-32,0r-20,-32r-20,32r-31,0","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"\u00f6":{"d":"11,-97v0,-60,16,-102,72,-102v57,0,73,42,73,102v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102xm50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-43,-6,-73,-34,-73v-28,0,-33,30,-33,73xm96,-226r0,-39r35,0r0,39r-35,0xm36,-226r0,-39r35,0r0,39r-35,0","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"\u00f2":{"d":"11,-97v0,-60,16,-102,72,-102v57,0,73,42,73,102v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102xm50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-43,-6,-73,-34,-73v-28,0,-33,30,-33,73xm77,-219r-38,-52r43,0r21,52r-26,0","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"\u00f5":{"d":"11,-97v0,-60,16,-102,72,-102v57,0,73,42,73,102v0,60,-19,102,-73,102v-54,0,-72,-42,-72,-102xm50,-97v0,49,5,73,33,73v28,0,34,-24,34,-73v0,-43,-6,-73,-34,-73v-28,0,-33,30,-33,73xm66,-265v15,0,48,28,50,-1r22,0v0,16,-10,43,-31,43v-22,-1,-51,-28,-56,2r-22,0v0,-15,10,-44,37,-44","w":166,"k":{"v":2,"w":2,"y":2,"\u00fd":2,"\u00ff":2,",":6,".":6}},"\u0161":{"d":"139,-137r-37,0v1,-19,-3,-34,-25,-35v-15,0,-28,7,-28,25v0,24,32,30,52,37v29,10,42,25,42,56v0,41,-30,59,-69,59v-52,0,-65,-25,-64,-67r35,0v-1,25,6,40,30,40v39,0,41,-46,10,-56v-34,-11,-73,-22,-73,-67v0,-36,26,-54,66,-54v53,0,62,29,61,62xm57,-219r-32,-52r33,0r19,32r21,-32r31,0r-33,52r-39,0","w":153},"\u00fa":{"d":"118,0v-1,-7,2,-18,-1,-23v-25,40,-98,46,-98,-35r0,-136r39,0r0,139v0,22,9,29,26,29v17,0,32,-10,32,-32r0,-136r38,0r0,194r-36,0xm67,-219r22,-52r43,0r-38,52r-27,0","w":173},"\u00fb":{"d":"118,0v-1,-7,2,-18,-1,-23v-25,40,-98,46,-98,-35r0,-136r39,0r0,139v0,22,9,29,26,29v17,0,32,-10,32,-32r0,-136r38,0r0,194r-36,0xm35,-219r33,-52r39,0r32,52r-33,0r-20,-32r-20,32r-31,0","w":173},"\u00fc":{"d":"118,0v-1,-7,2,-18,-1,-23v-25,40,-98,46,-98,-35r0,-136r39,0r0,139v0,22,9,29,26,29v17,0,32,-10,32,-32r0,-136r38,0r0,194r-36,0xm99,-226r0,-39r35,0r0,39r-35,0xm40,-226r0,-39r34,0r0,39r-34,0","w":173},"\u00f9":{"d":"118,0v-1,-7,2,-18,-1,-23v-25,40,-98,46,-98,-35r0,-136r39,0r0,139v0,22,9,29,26,29v17,0,32,-10,32,-32r0,-136r38,0r0,194r-36,0xm80,-219r-38,-52r43,0r22,52r-27,0","w":173},"\u00fd":{"d":"3,-194r42,0r34,146r31,-146r40,0r-53,201v-16,60,-32,61,-83,58r0,-31v26,6,41,-7,44,-30xm57,-219r21,-52r44,0r-38,52r-27,0","w":153,"k":{",":27,".":27,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2}},"\u00ff":{"d":"3,-194r42,0r34,146r31,-146r40,0r-53,201v-16,60,-32,61,-83,58r0,-31v26,6,41,-7,44,-30xm89,-226r0,-39r35,0r0,39r-35,0xm30,-226r0,-39r34,0r0,39r-34,0","w":153,"k":{",":27,".":27,"e":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2}},"\u017e":{"d":"9,0r0,-30r85,-131r-80,0r0,-33r124,0r0,32r-82,129r82,0r0,33r-129,0xm54,-219r-32,-52r32,0r20,32r20,-32r31,0r-32,52r-39,0","w":146},"\u2206":{"d":"9,0r0,-22r74,-234r40,0r71,233r0,23r-185,0xm44,-29r115,0r-58,-183v-15,58,-38,126,-57,183","w":204},"\u2126":{"d":"13,-30v14,-1,31,2,43,-1v-20,-23,-39,-60,-39,-107v0,-67,39,-117,94,-117v107,-1,107,174,50,225r44,0r0,30r-78,0r0,-22v44,-21,63,-199,-17,-202v-78,-3,-66,180,-19,202r0,22r-78,0r0,-30","w":218},"\u03bc":{"d":"19,63r0,-257r39,0r0,133v0,25,8,35,27,35v16,0,31,-13,31,-38r0,-130r38,0r0,194r-36,0v-1,-7,2,-18,-1,-23v-13,22,-38,36,-59,22r0,64r-39,0","w":173},"\u03c0":{"d":"177,-157r-23,0r0,107v0,27,2,40,4,50r-32,0v-11,-32,-4,-111,-6,-157r-48,0v-2,41,-9,118,-21,157r-33,0v12,-42,20,-114,21,-157v-17,0,-26,2,-32,4r-4,-24v35,-20,122,-8,177,-11","w":185},"\u20ac":{"d":"27,-163v3,-80,57,-105,122,-85v10,4,18,10,24,18r-12,33v-7,-23,-56,-43,-77,-17v-12,14,-15,38,-16,51r81,0r-9,24r-73,0r0,26r66,0r-8,24r-57,0v-2,19,13,69,46,65v23,-3,43,-11,53,-28r0,40v-9,10,-44,18,-54,17v-66,8,-85,-59,-86,-94r-27,0r9,-24r17,0r0,-26r-26,0r9,-24r18,0","w":172},"\u2113":{"d":"138,-55r14,14v-15,32,-38,45,-62,45v-42,-1,-56,-31,-56,-69v-5,5,-11,10,-17,15r-9,-19v10,-9,18,-16,26,-25r0,-95v0,-62,26,-86,54,-86v28,0,41,26,41,60v0,42,-24,84,-62,125v-3,35,9,66,31,66v18,0,31,-16,40,-31xm89,-249v-27,0,-22,84,-22,125v24,-30,41,-63,41,-93v0,-20,-5,-32,-19,-32","w":157},"\u212e":{"d":"65,-49v36,61,143,59,185,4r20,0v-26,30,-68,50,-114,50v-80,0,-144,-58,-144,-130v0,-72,64,-130,144,-130v81,1,147,58,145,134r-236,1r0,71xm248,-202v-36,-57,-135,-58,-179,-7v-8,18,-5,59,-2,81r179,0v6,-20,0,-51,2,-74","w":313},"\u2202":{"d":"33,-235r-10,-27v64,-46,139,-10,139,115v0,92,-31,150,-86,150v-42,0,-63,-41,-63,-83v0,-87,81,-120,116,-67v7,-77,-46,-134,-96,-88xm80,-27v26,0,42,-43,46,-86v-4,-13,-17,-31,-38,-31v-23,0,-41,31,-41,66v0,30,13,51,33,51","w":178},"\u220f":{"d":"216,-218r-32,0r0,253r-34,0r0,-253r-75,0r0,253r-34,0r0,-253r-32,0r0,-33r207,0r0,33","w":225},"\u2211":{"d":"168,35r-160,0r0,-25r80,-118r-77,-117r0,-26r152,0r0,31r-107,1r70,104r-77,116r119,0r0,34","w":175},"\u2219":{"d":"17,-111v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":86},"\u221a":{"d":"187,-300r-70,351r-28,0r-48,-161r-24,9r-6,-21r51,-20r41,148r60,-306r24,0","w":187},"\u221e":{"d":"242,-104v0,68,-78,75,-112,18v-17,21,-36,38,-63,38v-27,0,-51,-22,-51,-54v0,-32,23,-56,54,-56v25,0,43,16,60,38v15,-17,33,-38,62,-38v29,0,50,22,50,54xm37,-102v0,19,14,34,34,34v20,0,34,-18,47,-33v-14,-19,-27,-37,-50,-37v-20,0,-31,16,-31,36xm189,-138v-21,0,-37,23,-48,35v21,25,32,35,49,35v20,0,31,-18,31,-34v0,-22,-13,-36,-32,-36","w":258},"\u222b":{"d":"45,-214v0,-66,19,-103,73,-90r-4,25v-35,-9,-36,23,-37,68v0,57,5,114,5,176v0,67,-21,109,-74,89r5,-26v32,10,37,-13,37,-62v0,-63,-5,-121,-5,-180","w":126},"\u2248":{"d":"58,-155v40,0,70,51,92,0r13,11v-9,19,-23,34,-42,34v-21,0,-44,-24,-65,-25v-14,0,-22,12,-30,25r-13,-11v9,-20,26,-34,45,-34xm58,-95v40,0,70,50,92,0r13,11v-9,19,-23,34,-42,34v-21,0,-44,-24,-65,-25v-14,0,-22,13,-30,25r-13,-11v9,-20,26,-34,45,-34","w":177},"\u2260":{"d":"129,-177r-13,31r45,0r0,21r-53,0r-20,47r73,0r0,21r-81,0r-16,37r-17,-6r14,-31r-45,0r0,-21r53,0r20,-47r-73,0r0,-21r80,0r16,-37","w":177},"\u2264":{"d":"160,-37r-142,-76r0,-22r142,-76r0,25r-121,62r121,62r0,25xm161,-1r-145,0r0,-22r145,0r0,22","w":177},"\u2265":{"d":"18,-211r143,76r0,22r-143,76r0,-25r122,-62r-122,-62r0,-25xm161,-1r-144,0r0,-22r144,0r0,22","w":177},"\u25ca":{"d":"170,-125r-63,140r-29,0r-61,-140r63,-141r29,0xm139,-124v-15,-37,-35,-70,-45,-111v-11,37,-31,74,-46,109r46,111v11,-40,30,-72,45,-109","w":187},"\u00a0":{"w":86},"\u00ad":{"d":"16,-86r0,-36r95,0r0,36r-95,0","w":126},"\u02c9":{"d":"-11,-257r102,0r0,22r-102,0r0,-22"},"\u03a9":{"d":"13,-30v14,-1,31,2,43,-1v-20,-23,-39,-60,-39,-107v0,-67,39,-117,94,-117v107,-1,107,174,50,225r44,0r0,30r-78,0r0,-22v44,-21,63,-199,-17,-202v-78,-3,-66,180,-19,202r0,22r-78,0r0,-30","w":218},"\u2215":{"d":"-59,11r152,-272r26,0r-151,272r-27,0","w":60},"\u2010":{"d":"16,-86r0,-36r95,0r0,36r-95,0","w":126}}});;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1985, 1987, 1991, 1993, 1997, 1998, 1999, 2002 Adobe Systems Incorporated.
 * All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaLTStd-Cond
 * 
 * Designer:
 * Max Miedinger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"HelveticaLTCon","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 5 6 2 2 2 3 2 4","ascent":"258","descent":"-102","x-height":"5","bbox":"-63 -356 386 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"28","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":90},"!":{"d":"52,-66r-8,-121r0,-83r32,0v2,72,-3,138,-8,204r-16,0xm76,0r-32,0r0,-36r32,0r0,36","w":119},"\"":{"d":"16,-185r0,-81r19,0r0,81r-19,0xm56,-185r0,-81r19,0r0,81r-19,0","w":90},"#":{"d":"12,0r28,-91r-38,0r6,-22r39,0r13,-44r-39,0r6,-22r40,0r28,-91r20,0r-28,91r31,0r28,-91r20,0r-28,91r40,0r-6,22r-40,0r-14,44r40,0r-5,22r-41,0r-28,91r-20,0r28,-91r-32,0r-28,91r-20,0xm67,-113r31,0r14,-44r-32,0"},"$":{"d":"96,-117r0,95v30,1,40,-17,40,-44v0,-31,-13,-40,-40,-51xm81,-22r0,-101v-34,-15,-66,-32,-66,-75v0,-41,25,-71,66,-72r0,-23r16,0r0,23v44,2,63,29,63,72r-29,0v2,-21,-7,-48,-34,-45r0,92v47,21,70,31,70,78v0,47,-23,77,-71,78r0,37r-15,0r0,-37v-55,-2,-71,-38,-68,-89r29,0v0,31,-1,62,39,62xm81,-157r0,-86v-18,1,-35,10,-35,41v0,26,14,35,35,45"},"%":{"d":"272,-67v0,50,-21,67,-52,67v-23,0,-45,-18,-45,-68v0,-33,11,-62,50,-62v37,0,47,31,47,63xm224,-20v22,0,24,-24,24,-41v0,-18,0,-49,-25,-49v-24,0,-24,31,-24,49v0,17,3,41,25,41xm70,-265v37,0,47,32,47,64v0,50,-15,69,-50,66v-30,-3,-47,-17,-47,-67v0,-33,11,-63,50,-63xm68,-155v22,0,25,-23,25,-40v0,-18,0,-50,-25,-50v-24,0,-24,32,-24,50v0,17,2,40,24,40xm214,-270r-119,275r-20,0r121,-275r18,0","w":299},"&":{"d":"154,-46r-59,-87v-23,17,-37,31,-37,61v0,55,72,66,96,26xm105,-169v16,-12,30,-25,30,-47v0,-15,-9,-30,-26,-30v-40,0,-23,58,-4,77xm118,-149r52,76v6,-16,9,-34,10,-51r27,0v-2,26,-6,52,-19,75r35,50r-36,0r-17,-25v-41,56,-143,30,-143,-48v0,-41,23,-61,55,-82v-36,-34,-35,-116,26,-116v32,0,57,21,57,54v0,29,-24,52,-47,67","w":240},"\u2019":{"d":"23,-181r0,-17v15,-3,18,-23,18,-36r-18,0r0,-36r34,0v0,43,5,76,-34,89","w":79,"k":{"\u2019":6,"s":20,"\u0161":20}},"(":{"d":"83,-270r19,0v-16,33,-44,80,-44,172v0,66,12,117,46,175r-21,0v-70,-104,-76,-243,0,-347","w":119},")":{"d":"37,77r-19,0v16,-33,44,-80,44,-172v0,-66,-12,-117,-46,-175r21,0v70,104,76,243,0,347","w":119},"*":{"d":"41,-241r40,16r0,-45r19,0r0,44r40,-15r6,17r-41,14r27,35r-15,11r-28,-35r-26,33r-15,-9r27,-34r-40,-16"},"+":{"d":"77,-104r0,-78r26,0r0,78r62,0r0,25r-62,0r0,79r-26,0r0,-79r-61,0r0,-25r61,0"},",":{"d":"46,0r-17,0r0,-36r33,0v-1,32,2,82,-33,89r0,-17v14,-2,17,-24,17,-36","w":90},"-":{"d":"104,-99r-88,0r0,-30r88,0r0,30","w":119},".":{"d":"62,0r-33,0r0,-36r33,0r0,36","w":90},"\/":{"d":"17,10r-22,0r88,-280r22,0","w":100},"0":{"d":"48,-138v0,52,-8,116,42,116v45,0,43,-64,43,-116v0,-38,4,-102,-43,-105v-48,-3,-42,80,-42,105xm90,5v-72,0,-73,-90,-73,-138v0,-50,3,-137,73,-137v76,0,74,86,74,137v0,61,-3,138,-74,138"},"1":{"d":"84,0r0,-197r-57,0r0,-23v39,-1,60,-8,64,-50r23,0r0,270r-30,0"},"2":{"d":"18,-178v0,-55,10,-92,71,-92v46,0,69,30,69,75v0,65,-58,93,-92,129v-12,13,-18,22,-19,39r114,0r0,27r-145,0v-3,-69,48,-100,83,-135v20,-21,28,-30,28,-60v0,-27,-9,-48,-40,-48v-37,0,-40,37,-39,65r-30,0"},"3":{"d":"68,-126r0,-27v24,-1,55,4,55,-46v0,-26,-7,-44,-37,-44v-34,0,-39,25,-39,53r-28,0v-1,-45,18,-80,67,-80v71,0,96,106,30,127v29,10,45,31,45,63v0,50,-22,85,-76,85v-54,0,-72,-35,-71,-84r29,0v-3,29,5,57,44,57v30,0,44,-20,44,-48v0,-47,-18,-56,-63,-56"},"4":{"d":"34,-94r74,0r0,-129xm10,-95r101,-175r27,0r0,176r24,0r0,27r-24,0r0,67r-30,0r0,-67r-98,0r0,-28"},"5":{"d":"15,-71r31,0v-1,29,9,49,40,49v32,0,44,-32,44,-65v0,-31,-7,-63,-45,-63v-18,0,-31,7,-38,24r-27,0r16,-139r115,0r0,27r-91,0v-3,26,-11,56,-11,80v12,-13,24,-19,43,-19v50,0,69,42,69,86v0,48,-18,96,-74,96v-48,0,-74,-28,-72,-76"},"6":{"d":"134,-87v0,-30,-9,-57,-44,-57v-35,0,-41,29,-41,54v0,51,17,68,44,68v35,0,41,-38,41,-65xm93,5v-72,0,-78,-70,-78,-125v0,-56,2,-150,80,-150v40,0,62,25,63,64r-30,0v0,-24,-10,-37,-36,-37v-45,-1,-48,78,-46,105v32,-67,119,-21,119,49v0,58,-31,94,-72,94"},"7":{"d":"16,-238r0,-27r148,0r0,25v-51,70,-82,154,-89,240r-33,0v10,-86,44,-169,97,-238r-123,0"},"8":{"d":"48,-78v0,30,9,56,44,56v25,0,40,-20,40,-57v0,-28,-11,-52,-42,-52v-31,0,-42,26,-42,53xm56,-202v0,27,10,44,35,44v26,0,34,-20,34,-43v0,-23,-7,-42,-34,-42v-27,0,-35,17,-35,41xm17,-77v-1,-45,31,-62,51,-69v-66,-14,-59,-128,25,-124v69,-11,89,111,22,124v75,17,61,151,-24,151v-49,0,-74,-30,-74,-82"},"9":{"d":"132,-176v0,-29,-8,-67,-44,-67v-34,0,-42,35,-42,62v0,28,8,61,43,61v34,0,43,-28,43,-56xm87,-270v72,0,78,70,78,125v0,56,-2,150,-80,150v-40,0,-62,-25,-63,-64r31,0v0,24,10,37,36,37v46,0,45,-75,46,-104v-10,23,-31,33,-50,33v-48,0,-70,-39,-70,-83v0,-58,31,-94,72,-94"},":":{"d":"62,0r-33,0r0,-36r33,0r0,36xm62,-161r-33,0r0,-36r33,0r0,36","w":90},";":{"d":"29,0r0,-36r33,0v-1,32,2,82,-33,89r0,-17v14,-2,17,-24,17,-36r-17,0xm62,-161r-33,0r0,-36r33,0r0,36","w":90},"<":{"d":"43,-91r122,68r0,27r-150,-84r0,-23r150,-83r0,26"},"=":{"d":"165,-138r0,25r-149,0r0,-25r149,0xm165,-70r0,25r-149,0r0,-25r149,0"},">":{"d":"15,-23r122,-68r-122,-69r0,-26r150,83r0,23r-150,84r0,-27"},"?":{"d":"166,-202v0,63,-68,70,-63,140r-32,0v-11,-63,62,-81,63,-138v0,-21,-10,-45,-37,-45v-38,0,-44,31,-44,60r-31,0v-2,-44,18,-85,71,-85v44,0,73,26,73,68xm104,0r-33,0r0,-36r33,0r0,36"},"@":{"d":"121,-72v40,0,60,-57,60,-95v0,-14,-11,-26,-26,-26v-38,0,-62,54,-62,87v0,17,10,34,28,34xm275,-155v-2,50,-37,103,-85,106v-13,0,-28,-6,-32,-19v-31,35,-93,15,-93,-36v0,-65,82,-155,131,-86r5,-17r25,0r-42,128v0,6,5,11,11,11v36,-5,62,-50,62,-89v0,-59,-52,-95,-107,-95v-67,0,-119,55,-119,121v0,66,54,119,119,119v37,0,75,-20,97,-51r21,0v-23,42,-70,68,-118,68v-78,0,-137,-62,-137,-139v0,-76,62,-136,138,-136v64,0,126,51,124,115","w":288},"A":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0","w":200},"B":{"d":"59,-27v50,1,95,5,91,-51v-4,-64,-44,-46,-91,-49r0,100xm59,-243r0,89v47,1,84,5,84,-47v0,-43,-37,-44,-84,-42xm106,-270v80,-8,95,107,28,126v33,7,47,29,47,64v0,54,-29,80,-81,80r-71,0r0,-270r77,0","w":200},"C":{"d":"181,-98v2,53,-22,104,-76,104v-83,0,-86,-80,-86,-144v0,-61,9,-137,86,-137v51,0,77,38,76,86r-30,0v-1,-32,-11,-59,-48,-59v-52,0,-53,73,-53,109v0,37,-2,118,53,118v43,0,44,-40,48,-77r30,0","w":200},"D":{"d":"109,0r-79,0r0,-270r74,0v84,0,95,68,93,135v-2,66,-15,135,-88,135xm59,-243r0,216v84,6,110,-6,107,-113v-2,-62,-11,-103,-59,-103r-48,0","w":219},"E":{"d":"162,0r-135,0r0,-270r135,0r0,27r-105,0r0,89r98,0r0,27r-98,0r0,100r105,0r0,27"},"F":{"d":"57,0r-30,0r0,-270r126,0r0,27r-96,0r0,89r90,0r0,27r-90,0r0,127","w":159,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":40,".":40}},"G":{"d":"192,-139r0,141r-24,0r0,-42v-8,31,-32,46,-62,46v-80,0,-87,-80,-87,-143v0,-63,12,-138,90,-138v51,0,81,33,80,83r-30,0v0,-33,-15,-55,-49,-56v-59,-1,-60,66,-60,112v0,41,-1,112,52,115v55,3,60,-48,60,-91r-60,0r0,-27r90,0","w":219},"H":{"d":"58,0r-30,0r0,-270r30,0r0,113r104,0r0,-113r30,0r0,270r-30,0r0,-130r-104,0r0,130","w":219},"I":{"d":"65,0r-30,0r0,-270r30,0r0,270","w":100},"J":{"d":"8,-85r30,0v1,31,-5,62,31,63v30,0,34,-23,34,-47r0,-201r29,0r0,203v0,57,-25,72,-63,72v-21,0,-42,-6,-52,-25v-12,-22,-9,-52,-9,-65","w":159},"K":{"d":"59,0r-31,0r0,-270r30,0r1,139r98,-139r37,0r-86,113r89,157r-37,0r-73,-130r-28,36r0,94","w":200},"L":{"d":"170,0r-140,0r0,-270r30,0r0,243r110,0r0,27","k":{"T":27,"V":27,"W":27,"y":13,"\u00fd":13,"\u00ff":13,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":33}},"M":{"d":"140,-19v15,-89,41,-167,60,-251r53,0r0,270r-30,0r-1,-257r-65,257r-35,0r-65,-257r0,257r-30,0r0,-270r53,0r53,211v4,11,3,26,7,40","w":280},"N":{"d":"162,-19r0,-251r30,0r0,270r-49,0r-75,-216v-5,-11,-5,-27,-11,-41r1,257r-30,0r0,-270r48,0","w":219},"O":{"d":"21,-141v0,-62,10,-134,90,-134v79,0,88,72,88,134v0,75,-10,147,-89,147v-79,0,-89,-72,-89,-147xm168,-140v0,-60,-11,-108,-59,-108v-46,0,-57,48,-57,108v0,78,8,119,58,119v50,0,58,-41,58,-119","w":219},"P":{"d":"61,-243r0,102v52,0,95,5,95,-53v0,-57,-45,-49,-95,-49xm102,-270v46,-5,85,28,85,75v0,30,-9,61,-38,73v-25,11,-58,8,-88,8r0,114r-30,0r0,-270r71,0","w":200,"k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":46,".":46}},"Q":{"d":"179,-32r31,26r-16,18r-30,-25v-12,12,-34,19,-54,19v-79,0,-89,-72,-89,-147v0,-62,9,-134,88,-134v80,0,90,72,90,134v0,19,-2,85,-20,109xm142,-31r-27,-21r16,-20r25,21v6,-10,12,-49,12,-78v-1,-78,-8,-119,-58,-119v-50,0,-58,41,-58,119v0,76,29,132,90,98","w":219},"R":{"d":"61,-243r0,97v51,-4,90,18,99,-49v-8,-63,-50,-45,-99,-48xm61,-119r0,119r-30,0r0,-270v81,0,165,-12,160,77v-2,32,-21,55,-52,59v58,-2,45,62,54,111v-1,10,10,14,10,23r-35,0v-18,-46,11,-119,-55,-119r-52,0","w":219,"k":{"T":6,"Y":6,"\u00dd":6,"\u0178":6}},"S":{"d":"174,-199r-30,0v2,-28,-13,-49,-43,-49v-44,0,-48,27,-48,48v-2,39,41,42,68,53v50,20,61,36,61,72v0,86,-121,114,-158,39v-6,-13,-6,-36,-6,-50r30,0v-1,40,6,65,51,65v30,0,52,-15,52,-47v2,-64,-60,-50,-97,-72v-60,-36,-30,-135,43,-135v49,0,80,25,77,76","w":200},"T":{"d":"5,-243r0,-27r170,0r0,27r-70,0r0,243r-30,0r0,-243r-70,0","k":{"\u00fc":27,"\u0161":27,"\u00f2":27,"\u00f6":27,"\u00ec":6,"\u00ee":6,"\u00ed":6,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":27,"y":20,"\u00fd":20,"\u00ff":20,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"c":27,"\u00e7":27,"-":20,"a":27,"\u00e6":27,"\u00e1":27,"e":27,"\u00e9":27,"i":6,"\u00ef":6,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"r":27,"s":27,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,":":27,";":27}},"U":{"d":"29,-65r0,-205r30,0r0,194v0,21,3,55,51,55v48,0,51,-34,51,-55r0,-194r30,0r0,205v0,48,-32,71,-81,71v-49,0,-81,-23,-81,-71","w":219},"V":{"d":"99,-22r64,-248r33,0r-78,270r-37,0r-77,-270r33,0","w":200,"k":{"\u00f6":6,"\u00f4":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e3":6,"\u00e5":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":6,"a":6,"\u00e6":6,"\u00e1":6,"e":6,"\u00e9":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f2":6,"\u00f5":6,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":6,";":6}},"W":{"d":"149,-248v-10,92,-32,163,-48,248r-37,0r-58,-270r33,0v14,84,35,156,43,248v6,-18,6,-42,10,-60r39,-188r37,0r36,186v4,17,3,39,9,62v10,-90,32,-165,48,-248r33,0r-64,270r-37,0v-15,-85,-36,-154,-44,-248","w":299,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":6,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,",":27,".":27,"-":6,"a":6,"\u00e6":6,"\u00e1":6,"\u00e2":6,"\u00e0":6,"\u00e5":6,"\u00e3":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f2":6,"\u00f5":6}},"X":{"d":"6,0r77,-139r-75,-131r36,0r56,105r57,-105r35,0r-74,131r76,139r-37,0r-57,-113r-58,113r-36,0","w":200},"Y":{"d":"37,-270r63,135r63,-135r34,0r-82,165r0,105r-30,0r0,-105r-81,-165r33,0","w":200,"k":{"\u00fc":13,"\u00f6":20,"v":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":13,";":13,"p":13,"q":20}},"Z":{"d":"170,0r-160,0r0,-26r128,-217r-125,0r0,-27r155,0r0,26r-127,217r129,0r0,27"},"[":{"d":"99,75r-63,0r0,-345r63,0r0,22r-35,0r0,301r35,0r0,22","w":119},"\\":{"d":"100,10r-22,0r-88,-280r22,0","w":90},"]":{"d":"84,75r-63,0r0,-22r35,0r0,-301r-35,0r0,-22r63,0r0,345","w":119},"^":{"d":"81,-270r18,0r56,150r-19,0r-46,-122r-46,122r-19,0"},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"57,-276r0,16v-15,3,-18,24,-18,37r18,0r0,35r-34,0v0,-43,-5,-76,34,-88","w":79,"k":{"\u2018":6}},"a":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm133,-36v-3,9,5,19,17,15r0,21v-26,4,-39,0,-43,-27v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-35,29,-49v27,-15,73,-11,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v59,0,55,50,55,55r0,115","w":159},"b":{"d":"54,-95v0,29,0,76,40,76v30,0,37,-31,37,-85v0,-26,-2,-77,-38,-77v-42,0,-39,57,-39,86xm54,-24v-3,5,0,17,-1,24r-26,0r0,-270r28,0r1,90v11,-18,24,-26,42,-26v51,0,63,52,63,93v0,57,-8,118,-62,118v-17,0,-33,-6,-45,-29"},"c":{"d":"85,-181v-41,0,-40,62,-40,90v0,26,3,72,39,72v31,0,34,-27,35,-51r27,0v-1,39,-15,75,-60,75v-61,0,-70,-51,-70,-103v0,-49,8,-108,69,-108v40,0,59,32,59,69r-26,0v0,-22,-6,-44,-33,-44","w":159},"d":{"d":"86,-19v39,0,39,-46,38,-84v0,-27,-1,-78,-39,-78v-24,0,-39,18,-39,80v0,43,1,82,40,82xm123,-180v3,-27,0,-61,1,-90r29,0r0,270r-28,0r0,-26v-12,24,-25,31,-49,31v-63,0,-58,-87,-59,-105v-2,-59,17,-106,60,-106v21,0,33,9,46,26"},"e":{"d":"45,-121r68,0v-1,-23,0,-60,-33,-60v-33,0,-34,36,-35,60xm114,-67r27,0v2,39,-19,72,-61,72v-38,0,-65,-24,-65,-105v0,-42,12,-106,65,-106v65,0,61,61,62,108r-97,0v1,27,-4,79,36,79v27,0,35,-25,33,-48","w":159},"f":{"d":"33,0r0,-176r-29,0r0,-24r29,0v-4,-45,6,-80,60,-70r0,24v-32,-7,-32,16,-31,46r31,0r0,24r-31,0r0,176r-29,0","w":100,"k":{"\u2019":-6}},"g":{"d":"85,-181v-38,0,-39,54,-39,81v0,49,8,81,36,81v43,0,43,-53,43,-85v0,-40,-8,-77,-40,-77xm153,-200v-7,107,33,265,-70,268v-32,0,-56,-15,-60,-49r28,0v3,18,14,25,31,25v45,1,44,-47,41,-67v-12,21,-25,28,-43,28v-38,0,-64,-26,-64,-107v0,-42,11,-104,64,-104v19,-1,33,12,45,29r0,-23r28,0"},"h":{"d":"96,-181v-23,-1,-41,22,-41,47r0,134r-29,0r0,-270r29,0r0,92v23,-41,99,-39,99,24r0,154r-28,0r0,-147v0,-21,-7,-34,-30,-34"},"i":{"d":"54,0r-28,0r0,-200r28,0r0,200xm54,-234r-28,0r0,-36r28,0r0,36","w":79},"j":{"d":"5,68r0,-26v4,0,16,1,19,-5v9,-71,0,-159,3,-237r28,0r0,208v0,47,-11,60,-50,60xm55,-234r-28,0r0,-36r28,0r0,36","w":79},"k":{"d":"53,0r-28,0r0,-270r28,0r1,163r68,-93r34,0r-62,78r64,122r-33,0r-50,-100r-22,29r0,71","w":159},"l":{"d":"54,0r-28,0r0,-270r28,0r0,270","w":79},"m":{"d":"96,-181v-23,-1,-40,22,-40,47r0,134r-29,0r0,-200r28,0r0,25v17,-39,79,-42,95,1v14,-21,29,-32,54,-32v32,0,55,32,49,61r0,145r-28,0r0,-147v0,-22,-7,-34,-31,-34v-67,0,-32,114,-40,181r-28,0r0,-147v0,-21,-7,-34,-30,-34","w":280},"n":{"d":"96,-181v-23,-1,-41,22,-41,47r0,134r-29,0r0,-200r28,0v1,7,-2,17,1,22v24,-41,99,-39,99,24r0,154r-28,0r0,-147v0,-21,-7,-34,-30,-34"},"o":{"d":"162,-107v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-60,23,-99,72,-99v49,0,72,39,72,99xm132,-98v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83v0,47,9,79,42,79v34,0,42,-32,42,-79"},"p":{"d":"131,-104v0,-26,-3,-77,-39,-77v-37,0,-38,53,-38,81v0,28,0,81,39,81v30,0,38,-31,38,-85xm55,-21v-3,27,0,60,-1,89r-28,0r0,-268r27,0v1,7,-2,17,1,22v9,-19,25,-28,41,-28v51,0,66,52,66,93v0,57,-10,118,-64,118v-20,0,-32,-10,-42,-26"},"q":{"d":"49,-91v1,39,8,72,38,72v39,0,38,-54,38,-82v0,-27,1,-80,-37,-80v-37,0,-40,51,-39,90xm125,-180v3,-4,0,-14,1,-20r27,0r0,266r-28,0r-1,-88v-45,57,-104,22,-104,-75v0,-45,11,-109,59,-109v18,0,34,7,46,26"},"r":{"d":"57,-200r0,33v12,-26,29,-38,59,-35r0,28v-82,-13,-53,101,-58,174r-29,0r0,-200r28,0","w":119,"k":{"v":-6,"w":-6,"y":-6,"\u00fd":-6,"\u00ff":-6,",":27,".":27,"c":7,"\u00e7":7,"f":-7,"\ufb01":-7,"\ufb02":-7,"\u00df":-7,"x":-7,"z":-7,"\u017e":-7,"-":13}},"s":{"d":"137,-147r-28,0v1,-24,-8,-34,-32,-34v-20,0,-31,9,-31,30v0,26,21,29,40,37v29,13,58,21,58,58v0,58,-83,82,-117,41v-13,-15,-12,-29,-12,-43r27,0v-1,24,7,39,34,39v23,0,38,-10,38,-34v0,-28,-28,-30,-49,-39v-31,-12,-49,-22,-49,-57v0,-35,24,-57,59,-57v40,0,63,18,62,59","w":159},"t":{"d":"59,-255r0,55r34,0r0,24r-34,0r0,136v-6,14,15,18,33,16r0,24v-33,-2,-62,12,-61,-33r0,-143r-28,0r0,-24r28,0r0,-55r28,0","w":100},"u":{"d":"82,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0v-1,-8,2,-20,-1,-26v-19,47,-95,42,-95,-20r0,-154r28,0r0,155v0,17,6,26,26,26"},"v":{"d":"64,0r-59,-200r29,0r46,176r46,-176r29,0r-60,200r-31,0","w":159,"k":{",":20,".":20}},"w":{"d":"135,-200r34,176r35,-176r30,0r-50,200r-30,0r-34,-176r-32,176r-30,0r-51,-200r29,0r37,176r32,-176r30,0","w":240,"k":{",":13,".":13}},"x":{"d":"64,-103r-57,-97r29,0r45,72r44,-72r30,0r-58,97r60,103r-30,0r-46,-80r-48,80r-30,0","w":159},"y":{"d":"66,5r-64,-205r29,0r46,173r46,-173r30,0r-59,191v-11,39,-29,93,-85,74r0,-25v32,13,53,-7,57,-35","w":159,"k":{",":20,".":20}},"z":{"d":"132,0r-123,0r0,-22r93,-155r-89,0r0,-23r118,0r0,23r-93,154r94,0r0,23","w":140},"{":{"d":"3,-118v75,-2,-22,-165,93,-151v-75,9,13,133,-68,151v77,9,-6,128,68,152v-74,7,-61,-51,-61,-112v0,-20,-13,-37,-32,-40","w":98},"|":{"d":"33,-270r24,0r0,360r-24,0r0,-360","w":90},"}":{"d":"96,-118v-75,2,22,165,-93,151v74,-9,-13,-133,68,-151v-78,-8,6,-128,-68,-152v74,-7,60,51,61,112v-4,20,12,37,32,40","w":98},"~":{"d":"123,-67v-22,0,-43,-25,-65,-25v-15,0,-24,18,-30,32r-12,-17v9,-20,21,-43,42,-43v19,0,48,26,65,26v13,0,23,-17,29,-30r13,17v-9,19,-22,40,-42,40"},"\u00a1":{"d":"52,-140r16,0r8,122r0,82r-32,0v-2,-72,3,-138,8,-204xm44,-206r32,0r0,36r-32,0r0,-36","w":119},"\u00a2":{"d":"150,-68v2,47,-28,82,-78,71r-10,46r-18,0r12,-51v-28,-13,-35,-58,-35,-93v0,-45,14,-116,79,-104r9,-41r18,0r-10,46v21,9,33,31,33,60r-28,0v-1,-15,-3,-28,-11,-35r-34,149v35,8,48,-21,47,-48r26,0xm95,-176v-46,-7,-43,51,-45,90v0,17,2,41,12,55"},"\u00a3":{"d":"175,-11v-42,41,-105,-23,-149,16r-15,-22v33,-23,54,-62,34,-105r-34,0r0,-16r27,0v-39,-52,-14,-132,58,-132v47,0,76,30,72,82r-30,0v4,-32,-13,-56,-44,-55v-56,2,-50,72,-26,105r59,0r0,16r-52,0v21,39,-8,78,-34,100v37,-30,93,18,124,-13"},"\u2044":{"d":"-63,0r163,-270r23,0r-163,270r-23,0","w":60},"\u00a5":{"d":"74,-94r0,-11r-80,-165r36,0r60,135r63,-135r33,0r-83,165r0,11r50,0r0,16r-50,0r0,27r50,0r0,16r-50,0r0,35r-29,0r0,-35r-50,0r0,-16r50,0r0,-27r-50,0r0,-16r50,0"},"\u0192":{"d":"4,64r3,-24v6,5,25,5,35,-1v25,-42,26,-129,39,-186r-39,0r0,-24r44,0v4,-45,24,-119,90,-95r-6,28v-5,-5,-13,-8,-20,-8v-33,4,-28,48,-36,75r44,0r0,24r-47,0v-15,69,-14,166,-53,207v-15,9,-35,12,-54,4"},"\u00a7":{"d":"57,-215v-13,32,123,71,111,123v0,28,-18,45,-39,60v49,30,25,107,-43,107v-40,0,-64,-27,-63,-67r29,0v0,26,11,43,38,43v20,0,36,-10,36,-32v0,-20,-8,-33,-63,-64v-68,-38,-62,-90,-10,-120v-47,-29,-22,-105,39,-105v39,0,61,24,61,63r-30,0v0,-23,-10,-38,-35,-38v-18,0,-31,12,-31,30xm70,-152v-29,20,-47,47,-3,75v9,5,40,27,45,31v33,-29,43,-51,-11,-85v-12,-7,-21,-15,-31,-21"},"\u00a4":{"d":"10,-40r14,-15v-20,-31,-21,-76,0,-107r-14,-16r17,-19r14,16v29,-24,70,-24,97,0r15,-16r17,19r-14,16v19,32,21,76,0,107r14,15r-17,19r-15,-15v-28,24,-70,24,-97,0r-14,15xm91,-173v-34,0,-56,28,-56,65v0,35,23,64,54,64v32,0,56,-28,56,-65v0,-34,-23,-64,-54,-64"},"'":{"d":"36,-185r0,-81r18,0r0,81r-18,0","w":90},"\u201c":{"d":"56,-276r0,16v-15,3,-17,24,-17,37r17,0r0,35r-34,0v2,-41,-5,-75,34,-88xm118,-276r0,16v-15,3,-18,24,-18,37r18,0r0,35r-34,0v0,-43,-5,-75,34,-88","w":140},"\u00ab":{"d":"31,-123r54,-55r0,30r-36,36r36,37r0,30r-54,-56r0,-22xm95,-123r54,-55r0,30r-36,36r36,37r0,30r-54,-56r0,-22"},"\u2039":{"d":"23,-123r54,-55r0,30r-36,36r36,37r0,30r-54,-56r0,-22","w":100},"\u203a":{"d":"77,-100r-54,55r0,-30r36,-37r-36,-36r0,-30r54,56r0,22","w":100},"\ufb01":{"d":"33,0r0,-176r-29,0r0,-24r29,0v-4,-45,6,-80,60,-70r0,24v-32,-7,-32,16,-31,46r31,0r0,24r-31,0r0,176r-29,0xm153,-270r0,36r-28,0r0,-36r28,0xm154,-200r0,200r-29,0r0,-200r29,0"},"\ufb02":{"d":"33,0r0,-176r-29,0r0,-24r29,0v-4,-45,6,-80,60,-70r0,24v-32,-7,-32,16,-31,46r31,0r0,24r-31,0r0,176r-29,0xm153,0r-28,0r0,-270r28,0r0,270"},"\u2013":{"d":"0,-99r0,-25r180,0r0,25r-180,0"},"\u2020":{"d":"76,63r0,-228r-62,0r0,-25r62,0r0,-80r28,0r0,80r62,0r0,25r-62,0r0,228r-28,0"},"\u2021":{"d":"76,-18r-62,0r0,-26r62,0r0,-118r-61,0r0,-25r61,0r0,-83r29,0r0,83r61,0r0,25r-61,0r0,118r61,0r0,26r-61,0r0,81r-29,0r0,-81"},"\u00b7":{"d":"62,-73r-33,0r0,-36r33,0r0,36","w":90},"\u00b6":{"d":"0,-200v0,-38,27,-70,66,-70r75,0r0,312r-29,0r0,-288r-27,0r0,288r-28,0r0,-174v-30,0,-57,-31,-57,-68","w":158},"\u2022":{"d":"114,-135v0,30,-24,55,-54,55v-30,0,-55,-25,-55,-55v0,-30,25,-55,55,-55v30,0,54,25,54,55","w":119},"\u201a":{"d":"23,53r0,-17v15,-3,18,-23,18,-36r-18,0r0,-36r34,0v0,43,5,76,-34,89","w":79},"\u201e":{"d":"84,53r0,-17v15,-3,18,-23,18,-36r-18,0r0,-36r34,0v-2,41,6,75,-34,89xm22,53r0,-17v15,-3,18,-23,18,-36r-18,0r0,-36r34,0v0,43,6,74,-34,89","w":140},"\u201d":{"d":"22,-181r0,-17v15,-3,18,-23,18,-36r-18,0r0,-36r34,0v0,43,5,76,-34,89xm84,-181r0,-17v15,-3,18,-23,18,-36r-18,0r0,-36r34,0v-2,41,5,76,-34,89","w":140},"\u00bb":{"d":"149,-100r-54,55r0,-30r36,-37r-36,-36r0,-30r54,56r0,22xm85,-100r-54,55r0,-30r36,-37r-36,-36r0,-30r54,56r0,22"},"\u2026":{"d":"76,0r-32,0r0,-36r32,0r0,36xm196,0r-33,0r0,-36r33,0r0,36xm316,-36r0,36r-33,0r0,-36r33,0","w":360},"\u2030":{"d":"258,-67v0,50,-13,67,-48,67v-30,0,-49,-18,-49,-68v0,-33,11,-62,50,-62v37,0,47,31,47,63xm210,-110v-24,0,-25,31,-25,49v0,17,3,41,25,41v22,0,24,-24,24,-41v0,-18,1,-49,-24,-49xm114,-202v0,50,-15,67,-50,66v-30,0,-47,-17,-47,-67v0,-33,11,-62,50,-62v37,0,47,31,47,63xm65,-245v-24,0,-24,32,-24,50v0,17,3,39,25,39v22,0,24,-22,24,-39v0,-18,0,-50,-25,-50xm386,-67v0,50,-14,68,-49,67v-30,-1,-49,-18,-49,-68v0,-33,11,-62,50,-62v37,0,48,31,48,63xm337,-110v-24,0,-25,31,-25,49v0,17,3,41,25,41v22,0,24,-24,24,-41v0,-18,1,-49,-24,-49xm208,-270r-122,276r-19,0r122,-276r19,0","w":399},"\u00bf":{"d":"109,-139v11,62,-64,82,-63,138v0,21,10,44,37,44v38,0,44,-31,44,-60r31,0v2,44,-18,85,-71,85v-44,0,-73,-25,-73,-67v0,-62,65,-74,63,-140r32,0xm76,-201r33,0r0,36r-33,0r0,-36"},"`":{"d":"13,-275r39,0r32,50r-24,0","w":119},"\u00b4":{"d":"36,-225r32,-50r39,0r-47,50r-24,0","w":119},"\u02c6":{"d":"84,-225r-24,-33r-24,33r-28,0r35,-50r34,0r36,50r-29,0","w":119},"\u02dc":{"d":"36,-267v25,0,59,31,68,-3r17,0v-2,21,-13,40,-36,40v-23,0,-60,-30,-69,2r-17,0v2,-21,14,-39,37,-39","w":119},"\u00af":{"d":"116,-237r-112,0r0,-20r112,0r0,20","w":119},"\u02d8":{"d":"4,-275r18,0v6,37,70,38,76,0r18,0v-1,34,-25,49,-57,49v-30,0,-54,-15,-55,-49","w":119},"\u02d9":{"d":"59,-234r-28,0r0,-36r28,0r0,36","w":90},"\u00a8":{"d":"19,-270r28,0r0,36r-28,0r0,-36xm101,-234r-28,0r0,-36r28,0r0,36","w":119},"\u02da":{"d":"45,-213v-20,0,-37,-17,-37,-37v0,-20,17,-37,37,-37v20,0,37,17,37,37v0,20,-17,37,-37,37xm45,-272v-12,0,-22,10,-22,22v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22","w":90},"\u00b8":{"d":"64,36v-9,-6,-24,7,-28,-5r23,-31r17,0r-16,22v11,-3,41,1,41,26v0,38,-50,38,-77,25r6,-14v21,13,64,-4,34,-23","w":119},"\u02dd":{"d":"22,-225r32,-50r39,0r-47,50r-24,0xm87,-225r32,-50r39,0r-47,50r-24,0","w":119},"\u02db":{"d":"10,-5r25,0v-11,16,-18,49,13,49v15,0,21,-6,27,-11r0,29v-31,15,-73,6,-75,-29v0,-12,5,-28,10,-38","w":119},"\u02c7":{"d":"36,-275r24,33r24,-33r29,0r-36,50r-34,0r-35,-50r28,0","w":119},"\u2014":{"d":"0,-99r0,-25r360,0r0,25r-360,0","w":360},"\u00c6":{"d":"82,-104r71,0r0,-139r-5,0xm154,0r0,-77r-84,0r-36,77r-34,0r132,-270r151,0r0,27r-100,0r0,89r93,0r0,27r-93,0r0,100r99,0r0,27r-128,0","w":299},"\u00aa":{"d":"99,-165v-1,5,3,14,-4,14v-18,0,-20,-3,-24,-17v-10,29,-70,23,-62,-16v0,-4,2,-20,19,-29v17,-9,47,-6,42,-29v0,-14,-5,-19,-20,-19v-17,0,-19,7,-19,21r-17,0v-1,-25,13,-35,39,-35v39,0,35,29,35,32v2,25,-4,59,3,78r8,0xm69,-217v-14,9,-42,12,-41,34v0,12,3,20,18,20v17,4,27,-29,23,-54","w":108},"\u0141":{"d":"30,0r0,-117r-35,29r0,-32r35,-29r0,-121r30,0r0,96r49,-42r0,32r-49,42r0,115r110,0r0,27r-140,0","k":{"T":27,"V":27,"W":27,"y":13,"\u00fd":13,"\u00ff":13,"Y":33,"\u00dd":33,"\u0178":33,"\u2019":33}},"\u00d8":{"d":"58,-70r96,-155v-9,-17,-23,-21,-44,-23v-67,-8,-63,117,-52,178xm162,-207r-98,157v8,19,23,29,47,29v69,0,63,-121,51,-186xm47,-22r-23,37r-14,-8r28,-44v-14,-28,-17,-66,-17,-105v0,-62,10,-133,90,-133v28,0,47,8,60,23r22,-35r13,8r-25,41v15,27,19,63,19,96v0,75,-11,148,-90,148v-30,0,-50,-11,-63,-28","w":219},"\u0152":{"d":"31,-50v-22,-86,-18,-223,73,-225v19,0,39,9,52,28r0,-23r127,0r0,27r-99,0r0,89r93,0r0,27r-93,0r0,100r99,0r0,27r-127,0r0,-21v-35,51,-112,22,-125,-29xm108,-248v-53,0,-57,67,-57,120v0,37,3,107,54,107v66,0,48,-109,48,-173v0,-37,-18,-54,-45,-54","w":299},"\u00ba":{"d":"54,-275v31,0,46,24,46,59v0,33,-12,71,-44,67v-38,4,-49,-32,-49,-67v-1,-34,16,-59,47,-59xm27,-211v0,28,5,48,27,48v22,0,27,-20,27,-48v0,-36,-8,-50,-27,-50v-19,0,-27,14,-27,50","w":108},"\u00e6":{"d":"133,-97v0,11,-6,90,33,78v27,0,32,-25,32,-46r27,0v0,37,-16,70,-58,70v-26,0,-41,-9,-51,-32v-13,22,-31,32,-57,32v-61,0,-62,-91,-24,-106v18,-14,71,-13,71,-47v0,-22,-9,-33,-31,-33v-23,0,-31,16,-30,36r-27,0v0,-24,11,-61,56,-61v18,0,36,7,47,23v10,-14,26,-22,44,-22v61,0,63,62,62,108r-94,0xm133,-121r64,0v0,-5,5,-60,-30,-60v-34,0,-33,35,-34,60xm67,-19v41,0,38,-44,37,-89v-27,15,-66,19,-65,59v0,18,9,30,28,30","w":240},"\u0131":{"d":"54,0r-28,0r0,-200r28,0r0,200","w":79},"\u0142":{"d":"26,0r0,-134r-29,20r0,-27r29,-19r0,-110r28,0r0,92r29,-19r0,24r-29,20r0,153r-28,0","w":79},"\u00f8":{"d":"53,-54r71,-103v-6,-17,-18,-24,-34,-24v-30,0,-42,23,-42,83v0,17,2,32,5,44xm128,-141r-70,102v6,13,16,20,32,20v46,0,47,-78,38,-122xm41,-14r-21,31r-11,-7r24,-36v-7,-12,-15,-34,-15,-81v0,-88,73,-128,123,-76r19,-27r10,9r-21,30v6,12,13,39,13,64v0,86,-29,112,-69,112v-23,0,-40,-6,-52,-19"},"\u0153":{"d":"243,-99r-94,0v1,35,-6,80,34,80v27,0,30,-26,33,-47r27,0v-2,27,-14,71,-58,71v-22,0,-40,-9,-51,-28v-11,18,-30,28,-51,28v-65,0,-69,-60,-69,-109v0,-103,75,-130,121,-73v10,-17,25,-29,46,-29v74,0,62,95,62,107xm44,-96v0,27,-2,77,38,77v34,0,38,-29,38,-84v0,-57,-9,-78,-36,-78v-42,0,-40,56,-40,85xm149,-122r67,0v-1,-23,2,-59,-32,-59v-33,0,-34,36,-35,59","w":259},"\u00df":{"d":"26,-194v-5,-43,22,-81,64,-81v63,0,84,93,32,119v31,13,38,43,38,74v0,50,-28,103,-81,78r0,-28v8,6,19,12,30,10v30,-14,30,-83,10,-110v-8,-11,-24,-9,-36,-9r0,-25v28,0,40,-12,40,-40v0,-24,-10,-45,-37,-45v-24,0,-32,27,-32,52r0,199r-28,0r0,-194"},"\u00b9":{"d":"62,-225r-38,0r0,-15v25,0,39,-5,42,-30r18,0r0,162r-22,0r0,-117","w":108},"\u00ac":{"d":"139,-42r0,-71r-123,0r0,-25r149,0r0,96r-26,0"},"\u00b5":{"d":"81,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0r0,-26v-13,27,-42,39,-68,25r0,69r-28,0r0,-268r28,0r0,155v0,17,6,26,26,26","w":185},"\u2122":{"d":"259,-270r0,152r-20,0r-1,-130r-42,130r-12,0r-42,-130r0,130r-20,0r0,-152r32,0r36,107r37,-107r32,0xm101,-270r0,22r-39,0r0,130r-22,0r0,-130r-40,0r0,-22r101,0","w":270},"\u00d0":{"d":"30,0r0,-148r-27,0r0,-19r27,0r0,-103r74,0v84,0,93,68,93,135v0,66,-15,135,-88,135r-79,0xm59,-243r0,76r54,0r0,19r-54,0r0,121v84,6,107,-6,107,-113v0,-62,-11,-103,-59,-103r-48,0","w":219},"\u00bd":{"d":"33,0r162,-270r23,0r-163,270r-22,0xm53,-225r-38,0r0,-15v25,0,39,-5,42,-30r18,0r0,162r-22,0r0,-117xm162,-107v1,-34,8,-53,46,-55v57,-2,56,75,17,96v-14,15,-38,23,-42,47r72,0r0,19r-94,0v-4,-61,69,-67,69,-117v0,-15,-5,-26,-23,-26v-21,0,-22,19,-22,36r-23,0","w":270},"\u00b1":{"d":"77,-126r0,-56r26,0r0,56r62,0r0,26r-62,0r0,57r-26,0r0,-57r-61,0r0,-26r61,0xm16,0r0,-25r149,0r0,25r-149,0"},"\u00de":{"d":"61,-205r0,102v52,0,95,5,95,-53v0,-56,-46,-48,-95,-49xm61,-232v71,-7,126,12,126,75v0,30,-8,61,-38,73v-25,10,-58,8,-88,8r0,76r-30,0r0,-270r30,0r0,38","w":200},"\u00bc":{"d":"174,-57r48,0r0,-77xm51,0r163,-270r23,0r-163,270r-23,0xm159,-58r64,-104r21,0r0,105r14,0r0,18r-14,0r0,39r-22,0r0,-39r-63,0r0,-19xm50,-225r-38,0r0,-15v25,0,39,-5,42,-30r18,0r0,162r-22,0r0,-117","w":270},"\u00f7":{"d":"16,-79r0,-25r149,0r0,25r-149,0xm104,-146r-28,0r0,-36r28,0r0,36xm104,-1r-28,0r0,-36r28,0r0,36"},"\u00a6":{"d":"33,63r0,-126r24,0r0,126r-24,0xm33,-243r24,0r0,126r-24,0r0,-126","w":90},"\u00b0":{"d":"126,-216v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm104,-216v0,-17,-14,-32,-32,-32v-17,0,-32,15,-32,32v0,18,14,32,32,32v17,0,32,-14,32,-32","w":144},"\u00fe":{"d":"54,-100v0,41,5,81,39,81v30,0,38,-31,38,-85v0,-39,-7,-77,-39,-77v-37,0,-38,53,-38,81xm26,68r0,-338r28,0r1,92v8,-19,24,-28,40,-28v51,0,66,47,66,100v0,44,-10,111,-64,111v-21,1,-31,-12,-43,-26r0,89r-28,0"},"\u00be":{"d":"228,-134v-18,24,-32,52,-49,77r49,0r0,-77xm57,0r162,-270r23,0r-163,270r-22,0xm164,-58r64,-104r21,0r0,105r14,0r0,18r-14,0r0,39r-21,0r0,-39r-64,0r0,-19xm43,-181r0,-21v15,-1,33,5,33,-25v0,-16,-5,-24,-22,-24v-19,0,-22,13,-22,29r-21,0v-1,-27,12,-48,44,-48v46,0,62,63,19,76v46,12,37,89,-20,89v-35,0,-47,-21,-46,-51r21,0v-2,17,4,33,26,33v17,0,26,-10,26,-27v0,-26,-10,-31,-38,-31","w":270},"\u00b2":{"d":"8,-215v0,-34,7,-54,46,-55v57,-2,56,75,17,96v-14,15,-38,23,-42,47r72,0r0,19r-94,0v-4,-61,69,-67,69,-117v0,-15,-5,-26,-23,-26v-21,0,-22,19,-22,36r-23,0","w":108},"\u00ae":{"d":"144,-275v78,0,141,62,141,140v0,79,-63,141,-141,141v-78,0,-141,-62,-141,-141v0,-78,63,-140,141,-140xm144,-255v-67,0,-120,54,-120,120v0,67,53,121,120,121v67,0,120,-54,120,-121v0,-66,-53,-120,-120,-120xm91,-214v57,1,126,-12,126,42v0,31,-23,43,-50,43r48,73r-24,0r-44,-73r-35,0r0,73r-21,0r0,-158xm112,-144v37,-3,85,13,85,-28v0,-39,-49,-24,-85,-27r0,55","w":288},"\u2212":{"d":"16,-79r0,-25r149,0r0,25r-149,0"},"\u00f0":{"d":"36,-242r27,-19v-7,-7,-16,-17,-23,-23r16,-15v12,10,14,13,26,25r26,-19r10,11r-25,19v42,43,69,93,69,156v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-70,38,-112,93,-94v-7,-14,-25,-36,-37,-49r-28,19xm48,-98v0,47,9,79,42,79v34,0,42,-32,42,-79v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83"},"\u00d7":{"d":"72,-91r-56,-57r18,-18r56,57r57,-57r18,18r-57,57r57,56r-18,18r-57,-57r-57,57r-17,-18"},"\u00b3":{"d":"41,-181r0,-21v15,-1,33,5,33,-25v0,-16,-4,-24,-21,-24v-19,0,-23,13,-23,29r-21,0v-1,-27,13,-48,45,-48v45,0,61,63,19,76v46,12,37,89,-20,89v-35,0,-48,-21,-47,-51r21,0v-2,17,5,33,27,33v17,0,25,-10,25,-27v0,-26,-10,-31,-38,-31","w":108},"\u00a9":{"d":"144,6v-78,0,-141,-62,-141,-141v0,-77,63,-140,141,-140v78,0,141,63,141,140v0,79,-63,141,-141,141xm144,-14v67,0,120,-54,120,-121v0,-66,-53,-120,-120,-120v-67,0,-120,54,-120,120v0,67,53,121,120,121xm195,-109r21,0v-4,33,-33,55,-66,55v-48,0,-78,-36,-78,-82v0,-46,29,-81,77,-81v34,0,61,20,67,54r-21,0v-19,-67,-102,-34,-102,27v0,34,21,65,57,65v22,0,42,-15,45,-38","w":288},"\u00c1":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0xm76,-294r32,-51r40,0r-48,51r-24,0","w":200},"\u00c2":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0xm124,-294r-24,-34r-23,34r-29,0r36,-51r33,0r36,51r-29,0","w":200},"\u00c4":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0xm59,-340r28,0r0,36r-28,0r0,-36xm141,-304r-28,0r0,-36r28,0r0,36","w":200},"\u00c0":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0xm53,-345r39,0r32,51r-24,0","w":200},"\u00c5":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0xm100,-283v-20,0,-37,-17,-37,-37v0,-20,17,-36,37,-36v20,0,37,16,37,36v0,20,-17,37,-37,37xm100,-342v-12,0,-22,10,-22,22v0,12,10,22,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22","w":200},"\u00c3":{"d":"4,0r77,-270r40,0r76,270r-34,0r-21,-78r-85,0r-20,78r-33,0xm135,-105r-35,-143r-36,143r71,0xm76,-337v23,1,60,31,68,-2r18,0v-2,21,-14,39,-37,39v-23,-1,-60,-31,-68,2r-18,0v2,-21,14,-39,37,-39","w":200},"\u00c7":{"d":"103,-21v43,0,44,-40,48,-77r30,0v2,52,-21,103,-71,104v-3,5,-11,12,-11,16v11,-3,40,1,40,26v0,38,-50,38,-77,25r6,-14v22,14,65,-4,34,-23v-10,-6,-23,7,-27,-5r18,-25v-71,-8,-74,-83,-74,-144v0,-61,9,-137,86,-137v51,0,77,38,76,86r-30,0v-1,-32,-11,-59,-48,-59v-52,0,-53,73,-53,109v0,37,-2,118,53,118","w":200},"\u00c9":{"d":"162,0r-135,0r0,-270r135,0r0,27r-105,0r0,89r98,0r0,27r-98,0r0,100r105,0r0,27xm66,-294r32,-51r40,0r-48,51r-24,0"},"\u00ca":{"d":"162,0r-135,0r0,-270r135,0r0,27r-105,0r0,89r98,0r0,27r-98,0r0,100r105,0r0,27xm114,-294r-24,-34r-23,34r-29,0r35,-51r34,0r36,51r-29,0"},"\u00cb":{"d":"162,0r-135,0r0,-270r135,0r0,27r-105,0r0,89r98,0r0,27r-98,0r0,100r105,0r0,27xm49,-340r28,0r0,36r-28,0r0,-36xm131,-304r-28,0r0,-36r28,0r0,36"},"\u00c8":{"d":"162,0r-135,0r0,-270r135,0r0,27r-105,0r0,89r98,0r0,27r-98,0r0,100r105,0r0,27xm43,-345r39,0r32,51r-24,0"},"\u00cd":{"d":"65,0r-30,0r0,-270r30,0r0,270xm26,-294r32,-51r40,0r-48,51r-24,0","w":100},"\u00ce":{"d":"65,0r-30,0r0,-270r30,0r0,270xm74,-294r-24,-34r-23,34r-29,0r35,-51r34,0r36,51r-29,0","w":100},"\u00cf":{"d":"65,0r-30,0r0,-270r30,0r0,270xm9,-340r28,0r0,36r-28,0r0,-36xm91,-304r-28,0r0,-36r28,0r0,36","w":100},"\u00cc":{"d":"65,0r-30,0r0,-270r30,0r0,270xm3,-345r39,0r32,51r-24,0","w":100},"\u00d1":{"d":"162,-19r0,-251r30,0r0,270r-49,0r-75,-216v-5,-11,-5,-27,-11,-41r1,257r-30,0r0,-270r48,0xm86,-337v23,0,60,31,68,-2r17,0v-2,21,-13,39,-36,39v-23,0,-60,-30,-69,2r-17,0v2,-21,14,-39,37,-39","w":219},"\u00d3":{"d":"21,-141v0,-62,10,-134,90,-134v78,1,88,71,88,134v0,75,-10,147,-89,147v-79,0,-89,-72,-89,-147xm110,-21v51,0,58,-44,58,-122v0,-59,-12,-105,-59,-105v-46,0,-57,48,-57,108v0,78,8,119,58,119xm86,-294r32,-51r39,0r-47,51r-24,0","w":219},"\u00d4":{"d":"21,-141v0,-62,10,-134,90,-134v78,1,88,71,88,134v0,75,-10,147,-89,147v-79,0,-89,-72,-89,-147xm110,-21v51,0,58,-44,58,-122v0,-59,-12,-105,-59,-105v-46,0,-57,48,-57,108v0,78,8,119,58,119xm134,-294r-24,-34r-24,34r-28,0r35,-51r34,0r36,51r-29,0","w":219},"\u00d6":{"d":"21,-141v0,-62,10,-134,90,-134v78,1,88,71,88,134v0,75,-10,147,-89,147v-79,0,-89,-72,-89,-147xm110,-21v51,0,58,-44,58,-122v0,-59,-12,-105,-59,-105v-46,0,-57,48,-57,108v0,78,8,119,58,119xm69,-340r28,0r0,36r-28,0r0,-36xm151,-304r-28,0r0,-36r28,0r0,36","w":219},"\u00d2":{"d":"21,-141v0,-62,10,-134,90,-134v78,1,88,71,88,134v0,75,-10,147,-89,147v-79,0,-89,-72,-89,-147xm110,-21v51,0,58,-44,58,-122v0,-59,-12,-105,-59,-105v-46,0,-57,48,-57,108v0,78,8,119,58,119xm63,-345r39,0r32,51r-24,0","w":219},"\u00d5":{"d":"21,-141v0,-62,10,-134,90,-134v78,1,88,71,88,134v0,75,-10,147,-89,147v-79,0,-89,-72,-89,-147xm110,-21v51,0,58,-44,58,-122v0,-59,-12,-105,-59,-105v-46,0,-57,48,-57,108v0,78,8,119,58,119xm86,-337v23,0,60,31,68,-2r17,0v-2,21,-13,39,-36,39v-23,0,-60,-30,-69,2r-17,0v2,-21,14,-39,37,-39","w":219},"\u0160":{"d":"174,-199r-30,0v1,-30,-13,-49,-43,-49v-44,0,-48,27,-48,48v-2,39,41,42,68,53v50,20,61,36,61,72v0,86,-121,114,-158,39v-6,-13,-6,-36,-6,-50r30,0v-1,40,5,65,51,65v30,0,52,-15,52,-47v2,-64,-60,-50,-97,-72v-60,-36,-30,-140,43,-135v49,4,79,25,77,76xm77,-345r23,34r24,-34r29,0r-36,51r-33,0r-36,-51r29,0","w":200},"\u00da":{"d":"29,-65r0,-205r30,0r0,197v0,21,5,52,51,52v46,0,51,-31,51,-52r0,-197r30,0r0,205v0,48,-32,71,-81,71v-49,0,-81,-23,-81,-71xm86,-294r32,-51r39,0r-47,51r-24,0","w":219},"\u00db":{"d":"29,-65r0,-205r30,0r0,197v0,21,5,52,51,52v46,0,51,-31,51,-52r0,-197r30,0r0,205v0,48,-32,71,-81,71v-49,0,-81,-23,-81,-71xm134,-294r-24,-34r-24,34r-28,0r35,-51r34,0r36,51r-29,0","w":219},"\u00dc":{"d":"29,-65r0,-205r30,0r0,197v0,21,5,52,51,52v46,0,51,-31,51,-52r0,-197r30,0r0,205v0,48,-32,71,-81,71v-49,0,-81,-23,-81,-71xm69,-340r28,0r0,36r-28,0r0,-36xm151,-304r-28,0r0,-36r28,0r0,36","w":219},"\u00d9":{"d":"29,-65r0,-205r30,0r0,197v0,21,5,52,51,52v46,0,51,-31,51,-52r0,-197r30,0r0,205v0,48,-32,71,-81,71v-49,0,-81,-23,-81,-71xm63,-345r39,0r32,51r-24,0","w":219},"\u00dd":{"d":"37,-270r63,135r63,-135r34,0r-82,165r0,105r-30,0r0,-105r-81,-165r33,0xm76,-294r32,-51r40,0r-48,51r-24,0","w":200,"k":{"v":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":13,";":13,"p":13,"q":20}},"\u0178":{"d":"37,-270r63,135r63,-135r34,0r-82,165r0,105r-30,0r0,-105r-81,-165r33,0xm59,-340r28,0r0,36r-28,0r0,-36xm141,-304r-28,0r0,-36r28,0r0,36","w":200,"k":{"v":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":40,".":40,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":13,";":13,"p":13,"q":20}},"\u017d":{"d":"170,0r-160,0r0,-26r128,-217r-125,0r0,-27r155,0r0,26r-127,217r129,0r0,27xm67,-345r23,34r24,-34r29,0r-36,51r-34,0r-35,-51r29,0"},"\u00e1":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm150,-21v0,13,4,23,-14,23v-19,0,-23,-8,-29,-29v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-34,29,-49v27,-15,65,-9,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v51,0,55,37,55,50r0,123v-2,10,5,14,17,12xm56,-225r32,-50r39,0r-47,50r-24,0","w":159},"\u00e2":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm150,-21v0,13,4,23,-14,23v-19,0,-23,-8,-29,-29v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-34,29,-49v27,-15,65,-9,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v51,0,55,37,55,50r0,123v-2,10,5,14,17,12xm104,-225r-24,-33r-23,33r-29,0r35,-50r34,0r36,50r-29,0","w":159},"\u00e4":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm150,-21v0,13,4,23,-14,23v-19,0,-23,-8,-29,-29v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-34,29,-49v27,-15,65,-9,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v51,0,55,37,55,50r0,123v-2,10,5,14,17,12xm39,-270r28,0r0,36r-28,0r0,-36xm121,-234r-28,0r0,-36r28,0r0,36","w":159},"\u00e0":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm150,-21v0,13,4,23,-14,23v-19,0,-23,-8,-29,-29v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-34,29,-49v27,-15,65,-9,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v51,0,55,37,55,50r0,123v-2,10,5,14,17,12xm33,-275r39,0r32,50r-24,0","w":159},"\u00e5":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm150,-21v0,13,4,23,-14,23v-19,0,-23,-8,-29,-29v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-34,29,-49v27,-15,65,-9,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v51,0,55,37,55,50r0,123v-2,10,5,14,17,12xm75,-224v-20,0,-37,-17,-37,-37v0,-20,17,-36,37,-36v20,0,36,16,36,36v0,20,-16,37,-36,37xm75,-283v-12,0,-23,10,-23,22v0,12,11,22,23,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22","w":159},"\u00e3":{"d":"103,-108v-22,15,-62,18,-62,56v0,20,5,33,28,33v11,0,34,-8,34,-40r0,-49xm150,-21v0,13,4,23,-14,23v-19,0,-23,-8,-29,-29v-7,18,-25,32,-44,32v-40,0,-52,-22,-52,-58v0,-8,2,-34,29,-49v27,-15,65,-9,65,-48v0,-23,-8,-31,-31,-31v-26,0,-29,12,-29,35r-26,0v-1,-41,19,-60,59,-60v51,0,55,37,55,50r0,123v-2,10,5,14,17,12xm56,-267v24,0,60,31,68,-3r17,0v-2,21,-13,40,-36,40v-23,0,-60,-30,-69,2r-17,0v2,-21,14,-39,37,-39","w":159},"\u00e7":{"d":"63,38v-13,-10,8,-22,13,-33v-52,-5,-60,-54,-60,-103v0,-49,8,-108,69,-108v40,0,59,32,59,69r-26,0v0,-22,-6,-44,-33,-44v-41,0,-40,62,-40,90v0,26,3,72,39,72v31,0,34,-27,35,-51r27,0v-1,36,-14,71,-53,75v-3,5,-12,13,-12,17v11,-3,40,1,40,26v0,38,-50,38,-77,25r6,-14v22,14,65,-4,34,-23v-6,-4,-14,0,-21,2","w":159},"\u00e9":{"d":"45,-121r68,0v-1,-23,0,-60,-33,-60v-33,0,-34,36,-35,60xm114,-67r27,0v1,41,-19,71,-61,72v-38,0,-65,-24,-65,-105v0,-42,12,-106,65,-106v65,0,61,61,62,108r-97,0v1,27,-4,79,36,79v27,-1,34,-22,33,-48xm56,-225r32,-50r39,0r-47,50r-24,0","w":159},"\u00ea":{"d":"45,-121r68,0v-1,-23,0,-60,-33,-60v-33,0,-34,36,-35,60xm114,-67r27,0v1,41,-19,71,-61,72v-38,0,-65,-24,-65,-105v0,-42,12,-106,65,-106v65,0,61,61,62,108r-97,0v1,27,-4,79,36,79v27,-1,34,-22,33,-48xm104,-225r-24,-33r-23,33r-29,0r35,-50r34,0r36,50r-29,0","w":159},"\u00eb":{"d":"45,-121r68,0v-1,-23,0,-60,-33,-60v-33,0,-34,36,-35,60xm114,-67r27,0v1,41,-19,71,-61,72v-38,0,-65,-24,-65,-105v0,-42,12,-106,65,-106v65,0,61,61,62,108r-97,0v1,27,-4,79,36,79v27,-1,34,-22,33,-48xm39,-270r28,0r0,36r-28,0r0,-36xm121,-234r-28,0r0,-36r28,0r0,36","w":159},"\u00e8":{"d":"45,-121r68,0v-1,-23,0,-60,-33,-60v-33,0,-34,36,-35,60xm114,-67r27,0v1,41,-19,71,-61,72v-38,0,-65,-24,-65,-105v0,-42,12,-106,65,-106v65,0,61,61,62,108r-97,0v1,27,-4,79,36,79v27,-1,34,-22,33,-48xm33,-275r39,0r32,50r-24,0","w":159},"\u00ed":{"d":"54,0r-28,0r0,-200r28,0r0,200xm16,-225r32,-50r39,0r-47,50r-24,0","w":79},"\u00ee":{"d":"54,0r-28,0r0,-200r28,0r0,200xm64,-225r-24,-33r-23,33r-29,0r35,-50r34,0r36,50r-29,0","w":79},"\u00ef":{"d":"54,0r-28,0r0,-200r28,0r0,200xm-1,-270r28,0r0,36r-28,0r0,-36xm81,-234r-28,0r0,-36r28,0r0,36","w":79},"\u00ec":{"d":"54,0r-28,0r0,-200r28,0r0,200xm-7,-275r39,0r32,50r-24,0","w":79},"\u00f1":{"d":"96,-181v-23,-1,-41,22,-41,47r0,134r-29,0r0,-200r28,0v1,7,-2,17,1,22v24,-41,99,-39,99,24r0,154r-28,0r0,-147v0,-21,-7,-34,-30,-34xm66,-267v24,0,60,31,68,-3r18,0v-2,21,-14,40,-37,40v-23,0,-60,-30,-69,2r-17,0v2,-21,14,-39,37,-39"},"\u00f3":{"d":"162,-107v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-60,23,-99,72,-99v49,0,72,39,72,99xm132,-98v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83v0,47,9,79,42,79v34,0,42,-32,42,-79xm66,-225r32,-50r40,0r-48,50r-24,0"},"\u00f4":{"d":"162,-107v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-60,23,-99,72,-99v49,0,72,39,72,99xm132,-98v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83v0,47,9,79,42,79v34,0,42,-32,42,-79xm114,-225r-24,-33r-23,33r-29,0r35,-50r34,0r36,50r-29,0"},"\u00f6":{"d":"162,-107v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-60,23,-99,72,-99v49,0,72,39,72,99xm132,-98v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83v0,47,9,79,42,79v34,0,42,-32,42,-79xm49,-270r28,0r0,36r-28,0r0,-36xm131,-234r-28,0r0,-36r28,0r0,36"},"\u00f2":{"d":"162,-107v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-60,23,-99,72,-99v49,0,72,39,72,99xm132,-98v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83v0,47,9,79,42,79v34,0,42,-32,42,-79xm43,-275r39,0r32,50r-24,0"},"\u00f5":{"d":"162,-107v0,87,-28,112,-72,112v-43,0,-72,-26,-72,-112v0,-60,23,-99,72,-99v49,0,72,39,72,99xm132,-98v0,-60,-12,-83,-42,-83v-29,0,-42,23,-42,83v0,47,9,79,42,79v34,0,42,-32,42,-79xm66,-267v24,0,60,31,68,-3r18,0v-2,21,-14,40,-37,40v-23,0,-60,-30,-69,2r-17,0v2,-21,14,-39,37,-39"},"\u0161":{"d":"77,5v-36,0,-66,-28,-62,-63r27,0v-1,25,7,39,34,39v23,0,38,-10,38,-34v0,-28,-28,-30,-49,-39v-31,-12,-49,-22,-49,-57v0,-35,24,-57,59,-57v39,0,62,18,62,59r-28,0v1,-23,-8,-34,-32,-34v-20,0,-31,9,-31,30v0,26,21,29,40,37v29,13,58,21,58,58v0,38,-27,61,-67,61xm57,-275r23,33r24,-33r29,0r-36,50r-34,0r-35,-50r29,0","w":159},"\u00fa":{"d":"82,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0v-1,-8,2,-20,-1,-26v-19,47,-95,42,-95,-20r0,-154r28,0r0,155v0,17,6,26,26,26xm66,-225r32,-50r40,0r-48,50r-24,0"},"\u00fb":{"d":"82,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0v-1,-8,2,-20,-1,-26v-19,47,-95,42,-95,-20r0,-154r28,0r0,155v0,17,6,26,26,26xm114,-225r-24,-33r-23,33r-29,0r35,-50r34,0r36,50r-29,0"},"\u00fc":{"d":"82,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0v-1,-8,2,-20,-1,-26v-19,47,-95,42,-95,-20r0,-154r28,0r0,155v0,17,6,26,26,26xm49,-270r28,0r0,36r-28,0r0,-36xm131,-234r-28,0r0,-36r28,0r0,36"},"\u00f9":{"d":"82,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0v-1,-8,2,-20,-1,-26v-19,47,-95,42,-95,-20r0,-154r28,0r0,155v0,17,6,26,26,26xm43,-275r39,0r32,50r-24,0"},"\u00fd":{"d":"66,5r-64,-205r29,0r46,173r46,-173r30,0r-59,191v-11,39,-29,93,-85,74r0,-25v32,13,53,-7,57,-35xm56,-225r32,-50r39,0r-47,50r-24,0","w":159,"k":{",":20,".":20}},"\u00ff":{"d":"66,5r-64,-205r29,0r46,173r46,-173r30,0r-59,191v-11,39,-29,93,-85,74r0,-25v32,13,53,-7,57,-35xm39,-270r28,0r0,36r-28,0r0,-36xm121,-234r-28,0r0,-36r28,0r0,36","w":159,"k":{",":20,".":20}},"\u017e":{"d":"132,0r-123,0r0,-22r93,-155r-89,0r0,-23r118,0r0,23r-93,154r94,0r0,23xm46,-275r24,33r24,-33r29,0r-36,50r-34,0r-35,-50r28,0","w":140},"\u2206":{"d":"11,0r0,-19r80,-253r31,0r79,253r0,19r-190,0xm39,-24r133,0r-67,-210","w":211},"\u2126":{"d":"15,-24v15,-2,37,4,48,-2v-23,-25,-43,-66,-43,-118v0,-75,41,-126,96,-126v58,0,94,58,94,124v1,56,-24,96,-44,122r49,0r0,24r-79,0r0,-18v53,-30,74,-226,-20,-226v-42,0,-68,45,-68,105v0,55,23,102,46,121r0,18r-79,0r0,-24","w":230},"\u03bc":{"d":"81,-19v67,-2,35,-114,42,-181r29,0r0,200r-29,0r0,-26v-13,27,-42,39,-68,25r0,69r-28,0r0,-268r28,0r0,155v0,17,6,26,26,26","w":185},"\u03c0":{"d":"179,-172r-25,0v1,51,-4,134,5,172r-27,0v-11,-35,-4,-122,-6,-172r-56,0v-2,48,-12,133,-24,172r-27,0v13,-42,22,-122,23,-172v-19,0,-28,2,-34,4r-4,-20v36,-18,123,-7,178,-10","w":188},"\u20ac":{"d":"142,-103r-82,0v6,37,23,81,60,81v22,0,32,-4,46,-18r0,32v-69,41,-139,-23,-138,-95r-23,0r4,-15r18,0r0,-28r-22,0r4,-16r19,0v0,-83,81,-139,150,-89r-7,31v-16,-15,-29,-23,-53,-23v-41,0,-55,44,-59,81r97,0r-3,16r-95,0r0,28r88,0"},"\u212e":{"d":"69,-52v36,67,153,62,196,4r22,0v-27,32,-72,53,-121,53v-84,0,-153,-61,-153,-137v0,-76,69,-138,153,-138v86,1,154,62,153,141r-250,2r0,75xm261,-136v1,-25,4,-63,-2,-86v-47,-52,-140,-52,-186,1v-8,19,-5,62,-2,85r190,0","w":331},"\u2202":{"d":"34,-255r-9,-23v67,-47,140,-8,140,123v0,97,-31,159,-87,159v-42,0,-64,-41,-64,-87v0,-61,35,-99,72,-99v29,0,44,21,52,31v7,-90,-47,-155,-104,-104xm81,-21v30,0,50,-47,54,-100v-5,-16,-21,-37,-45,-37v-27,0,-48,34,-48,75v0,37,15,62,39,62","w":181},"\u220f":{"d":"221,-239r-34,0r0,276r-28,0r0,-276r-88,0r0,276r-27,0r0,-276r-35,0r0,-27r212,0r0,27","w":231},"\u2211":{"d":"175,37r-167,0r0,-20r88,-131r-84,-131r0,-21r157,0r0,25v-39,2,-86,-4,-120,2r78,120r-85,128r133,0r0,28","w":182},"\u2219":{"d":"62,-73r-33,0r0,-36r33,0r0,36","w":90},"\u221a":{"d":"192,-316r-74,372r-24,0r-52,-176r-25,10r-5,-18r47,-19r41,135v2,11,5,23,6,30r65,-334r21,0","w":192},"\u221e":{"d":"201,-165v30,0,50,22,50,55v0,34,-25,56,-53,56v-22,0,-39,-13,-63,-41v-18,21,-38,41,-66,41v-28,0,-52,-24,-52,-55v0,-32,23,-56,55,-56v26,0,46,19,64,41v17,-19,35,-41,65,-41xm72,-72v22,0,39,-20,53,-36v-15,-19,-31,-40,-55,-40v-22,0,-34,18,-34,39v0,21,15,37,36,37xm198,-148v-23,0,-41,25,-53,38v23,26,35,38,54,38v22,0,34,-19,34,-37v0,-24,-15,-39,-35,-39","w":268},"\u222b":{"d":"48,-229v0,-67,18,-107,70,-91r-4,20v-38,-9,-40,24,-40,74v0,60,4,128,4,191v0,70,-18,109,-72,91r5,-22v37,10,41,-15,41,-69v0,-63,-4,-133,-4,-194","w":126},"\u2248":{"d":"61,-160v42,0,75,53,99,0r12,9v-8,19,-23,35,-44,35v-21,0,-46,-27,-69,-27v-15,0,-24,12,-32,26r-13,-9v10,-21,27,-34,47,-34xm61,-101v42,0,74,53,99,1r12,9v-9,19,-23,34,-44,34v-21,0,-47,-26,-69,-26v-16,0,-24,12,-32,26r-13,-9v10,-21,27,-35,47,-35","w":186},"\u2260":{"d":"134,-184r-15,33r51,0r0,19r-58,0r-22,49r80,0r0,19r-87,0r-17,39r-15,-6r15,-33r-49,0r0,-19r56,0r22,-49r-78,0r0,-19r85,0r17,-39","w":186},"\u2264":{"d":"168,-40r-149,-80r0,-19r149,-80r0,22r-130,68r130,66r0,23xm170,-6r-153,0r0,-20r153,0r0,20","w":186},"\u2265":{"d":"19,-219r150,80r0,19r-150,80r0,-23r131,-67r-131,-67r0,-22xm170,-6r-152,0r0,-20r152,0r0,20","w":186},"\u25ca":{"d":"175,-132r-68,147r-23,0r-66,-147r68,-148r23,0xm149,-132v-17,-41,-39,-78,-52,-123v-14,41,-36,81,-53,121r53,124v13,-45,35,-81,52,-122","w":192},"\u00a0":{"w":90},"\u00ad":{"d":"104,-99r-88,0r0,-30r88,0r0,30","w":119},"\u02c9":{"d":"116,-237r-112,0r0,-20r112,0r0,20","w":119},"\u03a9":{"d":"15,-24v15,-2,37,4,48,-2v-23,-25,-43,-66,-43,-118v0,-75,41,-126,96,-126v58,0,94,58,94,124v1,56,-24,96,-44,122r49,0r0,24r-79,0r0,-18v53,-30,74,-226,-20,-226v-42,0,-68,45,-68,105v0,55,23,102,46,121r0,18r-79,0r0,-24","w":230},"\u2215":{"d":"-63,0r163,-270r23,0r-163,270r-23,0","w":60},"\u2010":{"d":"104,-99r-88,0r0,-30r88,0r0,30","w":119},"\u2113":{"d":"141,-53r13,12v-14,29,-35,45,-61,45v-42,0,-56,-35,-56,-77v-6,5,-13,12,-19,17r-8,-16v10,-9,18,-18,26,-27r0,-103v0,-67,27,-90,53,-90v27,0,41,26,41,61v0,47,-27,93,-67,137v-3,43,12,80,35,75v20,0,35,-18,43,-34xm89,-270v-32,0,-26,100,-26,146v27,-34,49,-71,49,-107v0,-24,-7,-39,-23,-39","w":161}}});
