/*
 * jQuery Backstretch
 * Version 1.1
 *
 * Add a dynamically-resized background image to the page
 *
 * Copyright (c) 2010 Scott Robbin (srobbin.com)
 * Dual licensed under the MIT and GPL licenses.
*/
(function(a){a.backstretch=function(k,h,l){function m(c){d=e.width();b=d/i;if(b>=e.height()){f=(b-e.height())/2;g.centeredY&&a.extend(j,{top:"-"+f+"px"})}else{b=e.height();d=b*i;f=(d-e.width())/2;g.centeredX&&a.extend(j,{left:"-"+f+"px"})}a("#backstretch img").width(d).height(b).css(j);typeof c=="function"&&c()}var g={centeredX:true,centeredY:true,speed:0},e="onorientationchange"in window?a(document):a(window),i,d,b,f,j={left:0,top:0};h&&typeof h=="object"&&a.extend(g,h);a(document).ready(function(){if(k){var c=a("<div />").attr("id","backstretch").css({left:0,top:0,position:"fixed",overflow:"hidden",zIndex:-9999}),p=a("<img />").css({position:"relative",display:"none"}).bind("load",function(n){var o=a(this);i=a(n.target).width()/a(n.target).height();m(function(){o.fadeIn(g.speed,function(){typeof l=="function"&&l()})})}).appendTo(c);a("body").prepend(c);p.attr("src",k);a(window).resize(m)}});return this}})(jQuery);

$.backstretch("images/rotate/rotate.php");

/*
 * jPlayer Plugin for jQuery JavaScript Library
 * http://www.happyworm.com/jquery/jplayer
 *
 * Copyright (c) 2009 - 2010 Happyworm Ltd
 * Dual licensed under the MIT and GPL licenses.
 *  - http://www.opensource.org/licenses/mit-license.php
 *  - http://www.gnu.org/copyleft/gpl.html
 *
 * Author: Mark J Panaghiston
 * Version: 1.1.1
 * Date: 29th April 2010
 */

(function(c){function l(a,b){function e(f){f=c[a][f]||[];return typeof f=="string"?f.split(/,?\s+/):f}var d=e("getter");return c.inArray(b,d)!=-1}c.fn.jPlayer=function(a){var b=typeof a=="string",e=Array.prototype.slice.call(arguments,1);if(b&&a.substring(0,1)=="_")return this;if(b&&l("jPlayer",a,e)){var d=c.data(this[0],"jPlayer");return d?d[a].apply(d,e):undefined}return this.each(function(){var f=c.data(this,"jPlayer");!f&&!b&&c.data(this,"jPlayer",new c.jPlayer(this,a))._init();f&&b&&c.isFunction(f[a])&&
f[a].apply(f,e)})};c.jPlayer=function(a,b){this.options=c.extend({},b);this.element=c(a)};c.jPlayer.getter="jPlayerOnProgressChange jPlayerOnSoundComplete jPlayerVolume jPlayerReady getData jPlayerController";c.jPlayer.defaults={cssPrefix:"jqjp",swfPath:"js",volume:80,oggSupport:false,nativeSupport:true,customCssIds:false,graphicsFix:true,errorAlerts:false,warningAlerts:false,position:"absolute",width:"0",height:"0",top:"0",left:"0",quality:"high",bgcolor:"#ffffff"};c.jPlayer._config={version:"1.1.1",
swfVersionRequired:"1.1.0",swfVersion:"unknown",jPlayerControllerId:undefined,delayedCommandId:undefined,isWaitingForPlay:false,isFileSet:false};c.jPlayer._diag={isPlaying:false,src:"",loadPercent:0,playedPercentRelative:0,playedPercentAbsolute:0,playedTime:0,totalTime:0};c.jPlayer._cssId={play:"jplayer_play",pause:"jplayer_pause",stop:"jplayer_stop",loadBar:"jplayer_load_bar",playBar:"jplayer_play_bar",volumeMin:"jplayer_volume_min",volumeMax:"jplayer_volume_max",volumeBar:"jplayer_volume_bar",volumeBarValue:"jplayer_volume_bar_value"};
c.jPlayer.count=0;c.jPlayer.timeFormat={showHour:false,showMin:true,showSec:true,padHour:false,padMin:true,padSec:true,sepHour:":",sepMin:":",sepSec:""};c.jPlayer.convertTime=function(a){var b=new Date(a),e=b.getUTCHours();a=b.getUTCMinutes();b=b.getUTCSeconds();e=c.jPlayer.timeFormat.padHour&&e<10?"0"+e:e;a=c.jPlayer.timeFormat.padMin&&a<10?"0"+a:a;b=c.jPlayer.timeFormat.padSec&&b<10?"0"+b:b;return(c.jPlayer.timeFormat.showHour?e+c.jPlayer.timeFormat.sepHour:"")+(c.jPlayer.timeFormat.showMin?a+c.jPlayer.timeFormat.sepMin:
"")+(c.jPlayer.timeFormat.showSec?b+c.jPlayer.timeFormat.sepSec:"")};c.jPlayer.prototype={_init:function(){var a=this,b=this.element;this.config=c.extend({},c.jPlayer.defaults,this.options,c.jPlayer._config);this.config.diag=c.extend({},c.jPlayer._diag);this.config.cssId={};this.config.cssSelector={};this.config.cssDisplay={};this.config.clickHandler={};this.element.data("jPlayer.config",this.config);c.extend(this.config,{id:this.element.attr("id"),swf:this.config.swfPath+(this.config.swfPath!=""&&
this.config.swfPath.slice(-1)!="/"?"/":"")+"Jplayer.swf",fid:this.config.cssPrefix+"_flash_"+c.jPlayer.count,aid:this.config.cssPrefix+"_audio_"+c.jPlayer.count,hid:this.config.cssPrefix+"_force_"+c.jPlayer.count,i:c.jPlayer.count,volume:this._limitValue(this.config.volume,0,100)});c.jPlayer.count++;if(this.config.ready!=undefined)if(c.isFunction(this.config.ready))this.jPlayerReadyCustom=this.config.ready;else this._warning("Constructor's ready option is not a function.");try{this.config.audio=new Audio;
this.config.audio.id=this.config.aid;this.element.append(this.config.audio)}catch(e){this.config.audio={}}c.extend(this.config,{canPlayMP3:!!(this.config.audio.canPlayType?""!=this.config.audio.canPlayType("audio/mpeg")&&"no"!=this.config.audio.canPlayType("audio/mpeg"):false),canPlayOGG:!!(this.config.audio.canPlayType?""!=this.config.audio.canPlayType("audio/ogg")&&"no"!=this.config.audio.canPlayType("audio/ogg"):false),aSel:c("#"+this.config.aid)});c.extend(this.config,{html5:!!(this.config.oggSupport?
this.config.canPlayOGG?true:this.config.canPlayMP3:this.config.canPlayMP3)});c.extend(this.config,{usingFlash:!(this.config.html5&&this.config.nativeSupport),usingMP3:!(this.config.oggSupport&&this.config.canPlayOGG&&this.config.nativeSupport)});var d={setButtons:function(h,g){a.config.diag.isPlaying=g;if(a.config.cssId.play!=undefined&&a.config.cssId.pause!=undefined)if(g){a.config.cssSelector.play.css("display","none");a.config.cssSelector.pause.css("display",a.config.cssDisplay.pause)}else{a.config.cssSelector.play.css("display",
a.config.cssDisplay.play);a.config.cssSelector.pause.css("display","none")}if(g)a.config.isWaitingForPlay=false}},f={setFile:function(h,g){try{a._getMovie().fl_setFile_mp3(g);a.config.diag.src=g;a.config.isFileSet=true;b.trigger("jPlayer.setButtons",false)}catch(j){a._flashError(j)}},clearFile:function(){try{b.trigger("jPlayer.setButtons",false);a._getMovie().fl_clearFile_mp3();a.config.diag.src="";a.config.isFileSet=false}catch(h){a._flashError(h)}},play:function(){try{a._getMovie().fl_play_mp3()&&
b.trigger("jPlayer.setButtons",true)}catch(h){a._flashError(h)}},pause:function(){try{a._getMovie().fl_pause_mp3()&&b.trigger("jPlayer.setButtons",false)}catch(h){a._flashError(h)}},stop:function(){try{a._getMovie().fl_stop_mp3()&&b.trigger("jPlayer.setButtons",false)}catch(h){a._flashError(h)}},playHead:function(h,g){try{a._getMovie().fl_play_head_mp3(g)&&b.trigger("jPlayer.setButtons",true)}catch(j){a._flashError(j)}},playHeadTime:function(h,g){try{a._getMovie().fl_play_head_time_mp3(g)&&b.trigger("jPlayer.setButtons",
true)}catch(j){a._flashError(j)}},volume:function(h,g){a.config.volume=g;try{a._getMovie().fl_volume_mp3(g)}catch(j){a._flashError(j)}}},k={setFile:function(h,g,j){a.config.audio=new Audio;a.config.audio.id=a.config.aid;a.config.aSel.replaceWith(a.config.audio);a.config.aSel=c("#"+a.config.aid);a.config.diag.src=a.config.usingMP3?g:j;a.config.isWaitingForPlay=true;a.config.isFileSet=true;b.trigger("jPlayer.setButtons",false);a.jPlayerOnProgressChange(0,0,0,0,0);clearInterval(a.config.jPlayerControllerId);
a.config.audio.addEventListener("canplay",function(){a.config.audio.volume=a.config.volume/100},false)},clearFile:function(){a.setFile("","");a.config.isWaitingForPlay=false;a.config.isFileSet=false},play:function(){if(a.config.isFileSet){if(a.config.isWaitingForPlay)a.config.audio.src=a.config.diag.src;a.config.audio.play();b.trigger("jPlayer.setButtons",true);clearInterval(a.config.jPlayerControllerId);a.config.jPlayerControllerId=window.setInterval(function(){a.jPlayerController(false)},100);clearInterval(a.config.delayedCommandId)}},
pause:function(){if(a.config.isFileSet){a.config.audio.pause();b.trigger("jPlayer.setButtons",false)}},stop:function(){if(a.config.isFileSet)try{a.config.audio.currentTime=0;b.trigger("jPlayer.pause");clearInterval(a.config.jPlayerControllerId);a.config.jPlayerControllerId=window.setInterval(function(){a.jPlayerController(true)},100)}catch(h){clearInterval(a.config.delayedCommandId);a.config.delayedCommandId=window.setTimeout(function(){a.stop()},100)}},playHead:function(h,g){if(a.config.isFileSet)try{a.config.audio.currentTime=
typeof a.config.audio.buffered=="object"&&a.config.audio.buffered.length>0?g*a.config.audio.buffered.end(a.config.audio.buffered.length-1)/100:g*a.config.audio.duration/100;b.trigger("jPlayer.play")}catch(j){clearInterval(a.config.delayedCommandId);a.config.delayedCommandId=window.setTimeout(function(){a.playHead(g)},100)}},playHeadTime:function(h,g){if(a.config.isFileSet)try{a.config.audio.currentTime=g/1E3;b.trigger("jPlayer.play")}catch(j){clearInterval(a.config.delayedCommandId);a.config.delayedCommandId=
window.setTimeout(function(){a.playHeadTime(g)},100)}},volume:function(h,g){a.config.volume=g;a.config.audio.volume=g/100;a.jPlayerVolume(g)}};this.config.usingFlash?c.extend(d,f):c.extend(d,k);for(var i in d){f="jPlayer."+i;this.element.unbind(f);this.element.bind(f,d[i])}if(this.config.usingFlash)if(this._checkForFlash(8))if(c.browser.msie){i='<object id="'+this.config.fid+'"';i+=' classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"';i+=' codebase="'+document.URL.substring(0,document.URL.indexOf(":"))+
'://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab"';i+=' type="application/x-shockwave-flash"';i+=' width="'+this.config.width+'" height="'+this.config.height+'">';i+="</object>";d=[];d[0]='<param name="movie" value="'+this.config.swf+'" />';d[1]='<param name="quality" value="high" />';d[2]='<param name="FlashVars" value="id='+escape(this.config.id)+"&fid="+escape(this.config.fid)+"&vol="+this.config.volume+'" />';d[3]='<param name="allowScriptAccess" value="always" />';d[4]='<param name="bgcolor" value="'+
this.config.bgcolor+'" />';i=document.createElement(i);for(f=0;f<d.length;f++)i.appendChild(document.createElement(d[f]));this.element.html(i)}else{d='<embed name="'+this.config.fid+'" id="'+this.config.fid+'" src="'+this.config.swf+'"';d+=' width="'+this.config.width+'" height="'+this.config.height+'" bgcolor="'+this.config.bgcolor+'"';d+=' quality="high" FlashVars="id='+escape(this.config.id)+"&fid="+escape(this.config.fid)+"&vol="+this.config.volume+'"';d+=' allowScriptAccess="always"';d+=' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
this.element.html(d)}else this.element.html("<p>Flash 8 or above is not installed. <a href='http://get.adobe.com/flashplayer'>Get Flash!</a></p>");this.element.css({position:this.config.position,top:this.config.top,left:this.config.left});if(this.config.graphicsFix){this.element.append('<div id="'+this.config.hid+'"></div>');c.extend(this.config,{hSel:c("#"+this.config.hid)});this.config.hSel.css({"text-indent":"-9999px"})}this.config.customCssIds||c.each(c.jPlayer._cssId,function(h,g){a.cssId(h,
g)});if(!this.config.usingFlash){this.element.css({left:"-9999px"});window.setTimeout(function(){a.volume(a.config.volume);a.jPlayerReady()},100)}},jPlayerReady:function(a){if(this.config.usingFlash){this.config.swfVersion=a;this.config.swfVersionRequired!=this.config.swfVersion&&this._error("jPlayer's JavaScript / SWF version mismatch!\n\nJavaScript requires SWF : "+this.config.swfVersionRequired+"\nThe Jplayer.swf used is : "+this.config.swfVersion)}else this.config.swfVersion="n/a";this.jPlayerReadyCustom()},
jPlayerReadyCustom:function(){},setFile:function(a,b){this.element.trigger("jPlayer.setFile",[a,b])},clearFile:function(){this.element.trigger("jPlayer.clearFile")},play:function(){this.element.trigger("jPlayer.play")},pause:function(){this.element.trigger("jPlayer.pause")},stop:function(){this.element.trigger("jPlayer.stop")},playHead:function(a){this.element.trigger("jPlayer.playHead",[a])},playHeadTime:function(a){this.element.trigger("jPlayer.playHeadTime",[a])},volume:function(a){a=this._limitValue(a,
0,100);this.element.trigger("jPlayer.volume",[a])},cssId:function(a,b){var e=this;if(typeof b=="string")if(c.jPlayer._cssId[a]){this.config.cssId[a]!=undefined&&this.config.cssSelector[a].unbind("click",this.config.clickHandler[a]);this.config.cssId[a]=b;this.config.cssSelector[a]=c("#"+b);this.config.clickHandler[a]=function(d){e[a](d);c(this).blur();return false};this.config.cssSelector[a].click(this.config.clickHandler[a]);this.config.cssDisplay[a]=this.config.cssSelector[a].css("display");a==
"pause"&&this.config.cssSelector[a].css("display","none")}else this._warning("Unknown/Illegal function in cssId\n\njPlayer('cssId', '"+a+"', '"+b+"')");else this._warning("cssId CSS Id must be a string\n\njPlayer('cssId', '"+a+"', "+b+")")},loadBar:function(a){if(this.config.cssId.loadBar!=undefined){var b=this.config.cssSelector.loadBar.offset();a=a.pageX-b.left;b=this.config.cssSelector.loadBar.width();this.playHead(100*a/b)}},playBar:function(a){this.loadBar(a)},onProgressChange:function(a){if(c.isFunction(a))this.onProgressChangeCustom=
a;else this._warning("onProgressChange parameter is not a function.")},onProgressChangeCustom:function(){},jPlayerOnProgressChange:function(a,b,e,d,f){this.config.diag.loadPercent=a;this.config.diag.playedPercentRelative=b;this.config.diag.playedPercentAbsolute=e;this.config.diag.playedTime=d;this.config.diag.totalTime=f;this.config.cssId.loadBar!=undefined&&this.config.cssSelector.loadBar.width(a+"%");this.config.cssId.playBar!=undefined&&this.config.cssSelector.playBar.width(b+"%");this.onProgressChangeCustom(a,
b,e,d,f);this._forceUpdate()},jPlayerController:function(a){var b=0,e=0,d=0,f=0,k=0;if(this.config.audio.readyState>=1){b=this.config.audio.currentTime*1E3;e=this.config.audio.duration*1E3;e=isNaN(e)?0:e;d=e>0?100*b/e:0;if(typeof this.config.audio.buffered=="object"&&this.config.audio.buffered.length>0){f=100*this.config.audio.buffered.end(this.config.audio.buffered.length-1)/this.config.audio.duration;k=100*this.config.audio.currentTime/this.config.audio.buffered.end(this.config.audio.buffered.length-
1)}else{f=100;k=d}}if(this.config.audio.ended){clearInterval(this.config.jPlayerControllerId);this.jPlayerOnSoundComplete()}else!this.config.diag.isPlaying&&f>=100&&clearInterval(this.config.jPlayerControllerId);a?this.jPlayerOnProgressChange(f,0,0,0,e):this.jPlayerOnProgressChange(f,k,d,b,e)},volumeMin:function(){this.volume(0)},volumeMax:function(){this.volume(100)},volumeBar:function(a){if(this.config.cssId.volumeBar!=undefined){var b=this.config.cssSelector.volumeBar.offset();a=a.pageX-b.left;
b=this.config.cssSelector.volumeBar.width();this.volume(100*a/b)}},volumeBarValue:function(a){this.volumeBar(a)},jPlayerVolume:function(a){if(this.config.cssId.volumeBarValue!=null){this.config.cssSelector.volumeBarValue.width(a+"%");this._forceUpdate()}},onSoundComplete:function(a){if(c.isFunction(a))this.onSoundCompleteCustom=a;else this._warning("onSoundComplete parameter is not a function.")},onSoundCompleteCustom:function(){},jPlayerOnSoundComplete:function(){this.element.trigger("jPlayer.setButtons",
false);this.onSoundCompleteCustom()},getData:function(a){for(var b=a.split("."),e=this.config,d=0;d<b.length;d++)if(e[b[d]]!=undefined)e=e[b[d]];else{this._warning("Undefined data requested.\n\njPlayer('getData', '"+a+"')");return}return e},_getMovie:function(){return document[this.config.fid]},_checkForFlash:function(a){var b=false,e;if(window.ActiveXObject)try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+a);b=true}catch(d){}else if(navigator.plugins&&navigator.mimeTypes.length>0)if(e=navigator.plugins["Shockwave Flash"])if(navigator.plugins["Shockwave Flash"].description.replace(/.*\s(\d+\.\d+).*/,
"$1")>=a)b=true;return b},_forceUpdate:function(){this.config.graphicsFix&&this.config.hSel.text(""+Math.random())},_limitValue:function(a,b,e){return a<b?b:a>e?e:a},_flashError:function(a){this._error("Problem with Flash component.\n\nCheck the swfPath points at the Jplayer.swf path.\n\nswfPath = "+this.config.swfPath+"\nurl: "+this.config.swf+"\n\nError: "+a.message)},_error:function(a){this.config.errorAlerts&&this._alert("Error!\n\n"+a)},_warning:function(a){this.config.warningAlerts&&this._alert("Warning!\n\n"+
a)},_alert:function(a){alert("jPlayer "+this.config.version+" : id='"+this.config.id+"' : "+a)}}})(jQuery);

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991 Digital Typeface Corp.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"VAG Round","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"4 11 114 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","cap-height":"4","bbox":"-28 -324 415.376 76.8292","underline-thickness":"8.34961","underline-position":"-4.74609","unicode-range":"U+000D-U+FB02"},"glyphs":{" ":{"w":101},"\uf8ff":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\ue01e":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u25ca":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u0394":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u2248":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u221a":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u03a9":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u222b":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u03c0":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u220f":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u2211":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u2202":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u2265":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u2264":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u221e":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\u2260":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\n":{"d":"45,0r0,-225r180,0r0,225r-180,0xm219,-6r0,-213r-168,0r0,213r168,0","w":270},"\r":{"w":0},"\t":{"w":0},"!":{"d":"52,6v-15,0,-30,-14,-30,-29v-1,-15,15,-31,30,-30v16,0,29,14,29,30v0,15,-14,29,-29,29xm54,-246v16,0,27,14,26,29r0,117v0,15,-11,29,-26,29v-15,0,-26,-14,-26,-29r0,-117v-1,-15,10,-29,26,-29","w":103},"\"":{"d":"21,-150v11,-32,32,-56,46,-85v7,-15,31,-14,32,4v-15,30,-40,49,-58,76v-6,9,-15,14,-20,5xm79,-150v9,-33,32,-56,46,-85v7,-16,31,-14,32,4v-15,30,-41,49,-58,76v-6,9,-15,14,-20,5","w":170},"#":{"d":"88,-197v3,-12,22,-9,22,2v0,12,-8,22,-11,32r40,0v8,-14,8,-36,24,-42v23,1,8,29,2,42v15,0,33,-3,33,12v0,18,-26,11,-43,12r-16,40v15,0,34,-3,34,11v0,17,-27,9,-43,11v-8,14,-9,38,-24,44v-23,-2,-8,-30,-2,-44r-40,0v-7,14,-9,38,-23,44v-24,-2,-9,-30,-3,-44v-15,0,-33,2,-33,-11v0,-17,27,-10,44,-11r16,-40v-15,0,-34,3,-35,-12v0,-17,27,-11,44,-12xm90,-139r-17,40r41,0r16,-40r-40,0","w":202},"$":{"d":"100,-283v18,0,18,21,17,40v34,5,51,16,51,33v-2,54,-84,-9,-95,36v8,32,64,22,84,44v48,34,23,128,-40,131v1,20,2,43,-17,43v-18,0,-19,-21,-18,-41v-28,-2,-69,-14,-67,-38v4,-63,102,24,111,-38v-3,-36,-71,-26,-92,-50v-38,-43,-8,-116,48,-120v-1,-20,-1,-40,18,-40","w":202},"%":{"d":"66,-90v-75,-2,-73,-155,0,-157v76,1,77,157,0,157xm47,-167v0,21,0,44,20,44v20,0,20,-24,20,-45v0,-21,1,-45,-20,-45v-21,-1,-20,25,-20,46xm232,1v-75,0,-75,-156,0,-156v75,0,76,156,0,156xm233,-122v-21,0,-21,25,-21,46v0,29,8,44,21,44v20,-1,20,-25,20,-45v0,-20,0,-45,-20,-45xm123,-6v-4,19,-32,15,-34,-2r87,-226v10,-24,41,-9,32,13","w":298},"&":{"d":"186,-193v0,32,-21,51,-46,62r34,37v11,-9,18,-28,36,-29v22,-1,30,26,15,43r-18,20v10,11,28,24,29,39v0,22,-29,34,-46,16r-20,-21v-44,49,-161,41,-159,-42v0,-27,17,-53,51,-75v-46,-42,-10,-106,52,-103v39,2,72,16,72,53xm136,-188v0,-20,-39,-21,-40,0v0,13,10,20,16,28v12,-8,24,-12,24,-28xm90,-110v-31,12,-36,68,8,68v18,0,26,-9,40,-18","w":251},"\u2019":{"d":"58,-163v-10,20,-47,10,-43,-12v5,-24,22,-40,32,-60v9,-19,45,-10,42,10v-3,26,-21,41,-31,62","w":98,"k":{"\u2019":11}},"(":{"d":"84,-226v-30,76,-31,177,0,254v-3,25,-39,27,-46,-1v-33,-69,-31,-211,9,-267v9,-13,38,-3,37,14","w":94},")":{"d":"11,28v31,-76,32,-177,0,-254v4,-25,39,-27,46,1v35,69,30,211,-9,267v-10,13,-37,2,-37,-14","w":94},"*":{"d":"75,-246v20,0,17,19,15,38v9,-16,39,-23,41,4v1,15,-16,17,-27,22v11,4,29,8,28,21v0,25,-32,23,-42,5v4,17,5,39,-15,39v-19,0,-20,-22,-15,-39v-10,15,-41,22,-43,-5v0,-13,18,-16,28,-21v-11,-5,-28,-7,-27,-22v2,-25,32,-22,42,-4v-2,-17,-5,-38,15,-38","w":149},"+":{"d":"8,-143r73,0r0,-72r28,0r0,72r73,0r0,27r-73,0r0,72r-28,0r0,-72r-73,0r0,-27"},",":{"d":"58,40v-10,23,-50,11,-47,-13v4,-28,24,-45,35,-68v11,-22,47,-10,47,13v-6,27,-24,45,-35,68","w":106},"-":{"d":"17,-99v0,-28,36,-23,64,-23v14,0,26,9,25,23v0,28,-36,22,-64,22v-13,0,-25,-9,-25,-22","w":123},".":{"d":"54,6v-15,0,-30,-14,-30,-29v-1,-15,15,-31,30,-30v17,0,28,14,29,30v0,15,-14,29,-29,29","w":106},"\/":{"d":"124,-234v6,-18,32,-13,33,2v-30,94,-77,173,-107,264v-8,22,-31,20,-35,3v31,-94,77,-178,109,-269","w":171},"0":{"d":"30,-40v-35,-72,-19,-205,69,-206v20,0,38,7,52,20v6,-20,35,-28,39,-3v-1,11,-12,23,-17,32v36,75,17,202,-74,203v-17,0,-32,-6,-47,-18v-5,8,-9,18,-21,18v-29,-2,-13,-36,-1,-46xm120,-179v-6,-9,-13,-13,-21,-13v-24,0,-33,45,-29,91xm99,-48v32,0,38,-53,33,-88r-50,78v4,7,9,10,17,10","w":202,"k":{"7":25,"6":5,"5":9,"3":11,"2":12,"1":35}},"1":{"d":"110,4v-16,0,-28,-15,-27,-31r0,-165v-24,2,-44,-2,-44,-24v0,-31,39,-23,69,-24v18,0,30,11,30,29r0,184v0,16,-11,31,-28,31","w":202,"k":{"9":44,"8":26,"7":59,"6":42,"5":44,"4":40,"3":50,"2":40,"1":65,"0":26}},"2":{"d":"180,-174v0,60,-49,91,-79,125v34,2,83,-10,84,25v0,15,-11,24,-27,24r-109,0v-33,3,-37,-34,-16,-50v30,-39,80,-68,90,-121v3,-14,-9,-24,-22,-25v-35,-4,-19,56,-53,55v-15,0,-26,-11,-25,-27v2,-47,34,-78,80,-78v45,0,77,27,77,72","w":202,"k":{"9":13,"8":5,"7":23,"6":21,"5":9,"4":22,"3":20,"2":13,"1":36,"0":5}},"3":{"d":"173,-184v0,27,-9,39,-26,52v24,12,40,29,40,60v0,49,-35,78,-85,78v-46,0,-80,-25,-85,-65v-3,-23,36,-37,46,-14v7,32,67,39,67,-3v0,-36,-58,-16,-58,-51v0,-33,53,-18,50,-50v0,-12,-11,-16,-23,-18v-18,-3,-35,29,-52,29v-11,0,-24,-12,-23,-23v6,-74,149,-77,149,5","w":202,"k":{"9":15,"7":29,"6":9,"5":9,"3":9,"2":19,"1":41}},"4":{"d":"135,4v-25,0,-28,-28,-26,-56v-40,-3,-121,11,-96,-34r71,-131v12,-38,77,-34,77,14r0,103v17,-1,30,7,31,22v0,16,-15,27,-31,26v2,28,0,56,-26,56xm109,-100r0,-75r-39,75r39,0","w":202,"k":{"9":16,"7":25,"5":14,"3":5,"2":20,"1":36}},"5":{"d":"178,-216v0,36,-55,21,-89,24r-3,31v56,-14,95,22,95,74v0,54,-32,92,-88,93v-32,1,-80,-16,-80,-48v0,-27,35,-30,52,-13v28,18,59,0,59,-31v0,-33,-37,-43,-59,-24v-16,6,-36,-4,-33,-20v6,-36,-5,-106,35,-110v40,5,111,-17,111,24","w":202,"k":{"9":22,"8":9,"7":20,"6":14,"5":18,"4":9,"3":16,"2":23,"1":41,"0":8}},"6":{"d":"123,-246v25,1,37,29,17,47v-16,15,-22,23,-40,47v51,-13,91,24,91,71v0,52,-33,85,-86,87v-75,2,-109,-76,-75,-141v16,-33,41,-66,67,-94v10,-11,18,-17,26,-17xm104,-109v-16,0,-31,14,-31,30v0,16,15,31,31,31v16,0,32,-15,31,-31v0,-15,-15,-30,-31,-30","w":202,"k":{"9":20,"7":29,"5":7,"2":22,"1":43}},"7":{"d":"99,-18v-8,33,-54,28,-56,-4v20,-62,51,-112,75,-170v-37,-4,-101,15,-101,-24v0,-16,11,-24,27,-24r108,0v26,-2,35,21,25,43","w":202,"k":{"9":22,"8":23,"7":13,"6":36,"5":36,"4":40,"3":22,"2":29,"1":34,"0":25,".":43}},"8":{"d":"179,-182v1,25,-9,38,-23,50v65,36,27,148,-54,138v-81,10,-120,-100,-56,-138v-14,-13,-22,-25,-22,-50v2,-43,34,-64,78,-64v41,0,76,23,77,64xm102,-199v-13,0,-25,11,-25,24v0,14,12,25,25,25v13,0,24,-12,24,-25v1,-13,-11,-24,-24,-24xm102,-111v-19,0,-32,13,-32,32v0,18,15,32,32,32v19,-1,30,-14,32,-32v-2,-18,-12,-32,-32,-32","w":202,"k":{"9":12,"7":23,"6":5,"5":7,"3":5,"2":15,"1":37}},"9":{"d":"109,-11v-12,23,-53,22,-55,-6v8,-33,32,-38,51,-71v-51,13,-91,-24,-91,-71v0,-53,33,-85,86,-87v74,-3,109,76,75,141v-16,31,-43,66,-66,94xm101,-130v16,0,31,-15,31,-31v0,-16,-15,-31,-31,-31v-16,0,-30,15,-30,31v0,16,14,31,30,31","w":202,"k":{"8":11,"7":20,"6":20,"5":23,"4":25,"3":16,"2":13,"1":32}},":":{"d":"54,-98v-15,1,-31,-15,-30,-30v0,-15,15,-29,30,-29v16,0,28,13,29,29v0,15,-14,30,-29,30xm54,6v-15,0,-30,-14,-30,-29v-1,-15,15,-31,30,-30v17,0,28,14,29,30v0,15,-14,29,-29,29","w":106},";":{"d":"62,-98v-15,0,-29,-14,-29,-30v0,-15,14,-29,29,-29v15,0,29,13,29,29v0,16,-14,30,-29,30xm58,40v-10,23,-49,12,-48,-13v8,-26,25,-45,36,-68v11,-22,47,-10,47,13v-6,27,-24,45,-35,68","w":106},"<":{"d":"173,-229r0,58r-95,50r95,50r0,57r-156,-84r0,-48"},"=":{"d":"9,-170r174,0r0,26r-174,0r0,-26xm9,-116r174,0r0,27r-174,0r0,-27"},">":{"d":"18,-14r0,-58r95,-50r-95,-50r0,-57r155,84r0,47"},"?":{"d":"87,6v-15,0,-29,-14,-29,-29v0,-15,14,-30,29,-30v15,-1,31,15,30,30v0,15,-15,29,-30,29xm90,-246v66,-4,108,70,68,121v-11,13,-24,22,-43,26v0,21,-9,34,-27,34v-25,0,-26,-26,-26,-53v0,-35,58,-17,53,-52v-2,-13,-14,-22,-28,-22v-19,0,-31,31,-49,31v-14,0,-26,-11,-26,-26v2,-38,40,-57,78,-59","w":184},"@":{"d":"242,-136v0,51,-31,85,-84,86v-7,1,-23,-10,-23,-17v-27,30,-78,12,-77,-30v1,-46,35,-86,77,-86v15,0,21,6,28,15v6,-9,13,-13,21,-13v10,0,16,7,13,18r-22,85v23,-8,40,-26,40,-57v0,-49,-37,-80,-83,-80v-55,0,-92,40,-96,95v-7,101,129,130,181,59v7,-7,19,-12,21,0v-10,30,-66,67,-109,64v-71,-5,-117,-53,-117,-125v0,-69,50,-115,120,-115v64,0,110,37,110,101xm130,-149v-20,0,-33,22,-34,44v0,13,6,19,17,19v22,0,35,-21,36,-43v0,-13,-6,-20,-19,-20","w":253},"A":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0","w":229,"k":{"\u201d":13,"y":22,"x":7,"w":18,"v":22,"u":7,"t":7,"o":7,"g":7,"e":7,"d":9,"c":7,"Y":29,"W":11,"V":25,"U":11,"T":11,"A":-9,"\u2019":15}},"B":{"d":"110,-240v67,-7,94,82,42,108v29,8,50,27,50,59v0,44,-30,73,-74,73v-43,0,-106,14,-106,-33r0,-174v-2,-41,49,-29,88,-33xm77,-48v31,-1,67,8,67,-27v0,-29,-37,-25,-67,-25r0,52xm128,-172v0,-22,-27,-21,-51,-20r0,43v25,1,51,3,51,-23","w":215,"k":{"y":14,"Y":25,"X":11,"W":11,"V":18,".":-22,",":-12}},"C":{"d":"130,6v-76,0,-117,-53,-117,-133v0,-72,46,-119,119,-119v30,0,71,8,72,37v2,41,-45,16,-70,15v-44,-3,-59,31,-62,73v-5,61,49,92,99,64v18,-10,37,6,35,24v-3,29,-41,39,-76,39","w":216,"k":{"r":9,"a":11,"Y":5,".":-32,",":-27}},"D":{"d":"116,0v-40,0,-94,10,-94,-34r0,-173v-2,-40,47,-33,86,-33v76,-1,121,48,121,120v0,71,-41,120,-113,120xm170,-120v0,-53,-33,-77,-93,-72r0,144v61,6,93,-17,93,-72","w":240,"k":{"Y":14,"W":-13,"T":14,",":9}},"E":{"d":"162,-215v0,35,-51,22,-85,24r0,46v33,2,80,-10,79,25v0,33,-47,22,-79,24r0,47v33,3,85,-11,85,24v0,41,-67,25,-106,25v-21,0,-34,-12,-34,-33r0,-174v-1,-48,68,-30,112,-33v16,-1,28,9,28,25","w":176,"k":{"v":13}},"F":{"d":"163,-215v0,35,-52,22,-86,24r0,48v32,1,77,-8,77,25v0,33,-45,22,-77,24v-3,39,13,97,-27,98v-16,0,-28,-14,-28,-31r0,-180v-1,-49,68,-30,113,-33v16,-1,28,9,28,25","w":175,"k":{"y":11,"u":19,"t":13,"s":18,"r":13,"o":13,"i":9,"e":13,"a":13,"O":11,"J":32,"G":11,"C":13,"A":22,";":20,":":13,".":30,",":39}},"G":{"d":"70,-120v-11,76,103,111,114,27v-28,0,-59,5,-59,-24v0,-37,52,-25,86,-25v23,0,29,12,29,35v2,62,-47,115,-110,113v-75,-2,-120,-52,-119,-128v1,-71,49,-121,121,-124v39,-2,92,17,92,48v0,34,-41,28,-58,10v-48,-28,-101,13,-96,68","w":251,"k":{"Y":22,"E":-10,"A":15}},"H":{"d":"207,4v-41,-1,-25,-62,-28,-102r-102,0v-3,39,14,101,-27,102v-17,0,-28,-13,-28,-31r0,-186v0,-18,10,-31,28,-31v39,1,24,58,27,96r102,0v2,-39,-11,-95,28,-96v16,0,28,14,27,31r0,186v0,17,-10,31,-27,31","w":256},"I":{"d":"50,4v-16,0,-28,-14,-28,-31r0,-186v0,-17,11,-31,28,-31v17,0,27,14,27,31r0,186v0,17,-10,31,-27,31","w":99},"J":{"d":"109,-243v17,0,28,13,27,30v-6,91,29,219,-69,219v-27,0,-64,-10,-64,-38v0,-13,12,-25,23,-26v24,4,55,32,55,-18r0,-137v-1,-17,10,-30,28,-30","w":156,"k":{"A":7,".":-19,",":-12}},"K":{"d":"203,-52v22,15,20,57,-11,56v-8,0,-17,-4,-25,-13r-90,-99v-4,42,16,109,-27,112v-16,0,-28,-14,-28,-31r0,-186v0,-17,11,-31,28,-31v40,1,24,60,27,99r76,-85v15,-24,49,-14,51,12v0,9,-3,17,-11,25r-63,64","w":226,"k":{"u":18,"q":14,"o":14,"e":11,"a":14,"Q":7,"O":7,"G":7,"C":7}},"L":{"d":"50,-244v17,0,27,14,27,31r0,164v33,3,85,-11,85,24v0,40,-66,22,-105,25v-22,2,-34,-14,-35,-35r0,-178v0,-17,11,-31,28,-31","w":159,"k":{"\u201d":22,"x":-5,"w":10,"v":14,"u":5,"t":14,"o":5,"e":5,"Y":42,"W":13,"V":28,"U":8,"T":32,"Q":11,"O":14,"M":-7,"J":-11,"G":15,"C":15,"A":-14,"-":17,"\u2019":24}},"M":{"d":"86,-142v-11,45,-6,105,-29,138v-20,17,-48,1,-44,-27r29,-181v2,-38,62,-40,72,-8r40,123v18,-45,21,-105,51,-138v18,-20,55,-3,59,20r32,183v5,40,-33,42,-49,25v-15,-38,-16,-92,-26,-135r-40,131v-11,24,-55,17,-56,-12","w":303,"k":{"Y":22,"V":11,"T":14}},"N":{"d":"234,-28v2,29,-31,42,-48,21r-109,-138r0,118v0,17,-10,31,-27,31v-16,0,-28,-14,-28,-31r0,-188v-2,-27,33,-38,50,-17r107,134r0,-115v0,-17,10,-31,27,-31v16,0,28,14,28,31r0,185","w":255,"k":{".":-32,",":-23}},"O":{"d":"130,6v-75,0,-118,-52,-118,-128v0,-74,50,-124,118,-124v76,0,119,50,119,124v0,75,-42,128,-119,128xm130,-197v-80,0,-79,154,0,154v43,0,59,-35,60,-78v0,-42,-19,-76,-60,-76","w":260,"k":{"Y":14,"X":7,"V":11,"T":6,",":9}},"P":{"d":"199,-161v2,66,-48,90,-121,82v-1,35,9,83,-27,83v-16,0,-28,-14,-28,-31r0,-180v-2,-42,50,-32,90,-33v54,0,84,28,86,79xm78,-127v35,2,67,-1,65,-34v-1,-30,-31,-34,-65,-31r0,65","w":209,"k":{"z":-5,"x":13,"t":-7,"s":11,"r":5,"q":9,"n":6,"m":6,"j":6,"i":5,"e":9,"Y":16,"J":30,"A":13,";":21,":":14,".":48,"-":-21,",":57}},"Q":{"d":"246,-26v20,14,10,52,-19,46v-14,-3,-26,-19,-37,-28v-90,42,-185,-18,-179,-117v5,-73,46,-117,120,-121v104,-5,147,124,96,204xm70,-125v-2,53,28,92,78,79v-22,-9,-21,-49,7,-51v9,0,21,11,28,17v17,-47,3,-119,-52,-117v-40,1,-60,33,-61,72","w":273,"k":{"i":18,"V":18}},"R":{"d":"186,-48v21,17,14,52,-10,52v-12,0,-21,-4,-27,-12r-72,-90v-3,39,14,101,-27,102v-16,0,-28,-14,-28,-31r0,-180v-2,-41,49,-33,89,-33v47,1,84,25,84,72v0,41,-19,61,-56,69xm142,-163v0,-29,-33,-31,-65,-29r0,56v31,1,65,2,65,-27","w":215,"k":{"Y":15,"W":7,"V":7,"T":8}},"S":{"d":"15,-36v9,-61,104,29,114,-34v-15,-51,-115,-18,-112,-99v2,-48,38,-77,87,-77v29,0,66,6,67,34v1,57,-85,-9,-96,37v7,31,73,28,93,50v46,50,5,140,-70,131v-36,-4,-80,-5,-83,-42","w":203,"k":{"v":18,"t":11,"Y":18,"W":14,"V":14,"U":11,"T":16,"A":13,".":-15,",":-9}},"T":{"d":"180,-215v0,27,-31,25,-59,24r0,164v0,18,-10,31,-28,31v-16,0,-28,-14,-28,-31r0,-164v-28,0,-60,4,-60,-24v0,-16,12,-24,28,-25r120,0v16,0,27,9,27,25","w":185,"k":{"z":15,"y":20,"x":20,"w":16,"v":14,"u":25,"s":17,"r":22,"o":22,"n":4,"m":4,"g":18,"e":25,"d":29,"c":25,"a":18,"W":-7,"V":-7,"T":-9,"S":11,"Q":5,"O":4,"M":22,"J":34,"G":5,"C":6,"A":14,";":18,":":10,".":12,",":20}},"U":{"d":"201,-243v49,4,24,90,28,138v5,71,-40,111,-104,111v-61,0,-105,-36,-105,-97r0,-122v-1,-17,10,-30,28,-30v17,0,27,13,27,30v0,68,-22,167,49,168v70,0,49,-100,49,-168v0,-17,11,-31,28,-30","w":248,"k":{"A":11,",":8}},"V":{"d":"13,-203v-14,-28,20,-53,42,-34v26,42,37,98,58,145v20,-48,33,-103,59,-146v21,-17,54,4,42,35r-73,185v-7,31,-45,28,-54,4","w":225,"k":{"y":13,"u":14,"o":18,"i":-8,"g":14,"e":18,"d":25,"c":22,"a":22,"T":-7,"S":11,"O":11,"M":11,"J":32,"C":7,"A":32,";":14,":":8,".":26,"-":-12,",":34}},"W":{"d":"270,-235v16,-19,54,-5,46,27r-43,181v-3,16,-18,31,-36,31v-19,0,-31,-11,-38,-31r-37,-113v-17,44,-22,102,-49,135v-16,19,-53,5,-58,-16r-47,-196v-4,-25,33,-35,46,-19v19,41,25,101,38,148r41,-131v8,-34,49,-33,59,0r41,131v13,-48,18,-105,37,-147","w":322,"k":{"y":-7,"u":11,"r":7,"o":11,"e":7,"d":11,"a":11,"T":-11,"J":29,"A":11,";":-9,":":-16,".":-4,"-":-31,",":5}},"X":{"d":"155,-229v15,-24,55,-16,53,15v-11,30,-42,59,-59,86v23,34,55,62,72,101v1,36,-36,37,-55,12r-49,-67r-47,67v-14,28,-57,24,-55,-12v16,-39,49,-67,71,-101v-19,-28,-47,-55,-60,-87v-2,-29,35,-37,51,-15r40,55","w":230,"k":{"T":7,"Q":4,"O":7,"G":11,"C":11}},"Y":{"d":"156,-230v13,-23,54,-15,52,15v-14,38,-49,69,-70,102v-5,44,17,117,-28,117v-44,0,-23,-74,-28,-117v-22,-34,-49,-63,-68,-100v-2,-29,35,-40,52,-16r44,63","w":218,"k":{"z":24,"y":27,"x":28,"w":25,"v":29,"u":17,"s":24,"p":18,"o":32,"n":11,"m":11,"j":7,"i":6,"e":32,"d":29,"c":29,"a":32,"S":16,"Q":12,"O":11,"M":18,"J":43,"G":12,"C":13,"A":29,";":29,":":21,".":28,"-":18,",":37}},"Z":{"d":"157,-240v30,-2,41,27,25,49r-105,142v41,6,117,-18,117,24v0,16,-12,24,-27,25r-126,0v-28,2,-45,-25,-28,-47r108,-144v-40,-5,-111,17,-111,-24v0,-16,12,-24,28,-25r119,0","w":198,"k":{"Z":-7,"O":-7}},"[":{"d":"111,-219v0,22,-24,22,-47,21r0,203v24,-1,47,0,47,22v0,25,-33,21,-60,21v-19,0,-33,-10,-32,-30r0,-228v-2,-34,35,-31,68,-30v13,0,24,8,24,21","w":119},"\\":{"d":"151,19v8,16,4,29,-13,30v-8,0,-13,-6,-18,-17r-105,-252v-6,-13,3,-27,17,-26v6,0,11,4,15,13","w":171},"]":{"d":"8,27v1,-21,24,-24,47,-22r0,-203v-23,1,-47,0,-47,-21v0,-26,34,-21,60,-21v20,0,32,10,32,30r0,228v3,34,-33,31,-66,30v-13,0,-26,-8,-26,-21","w":119},"^":{"d":"61,-125r-51,0r53,-117r64,0r54,117r-51,0r-35,-78"},"_":{"d":"-4,19r197,0r0,35r-197,0r0,-35"},"\u2018":{"d":"14,-213v-13,-25,27,-47,40,-22v10,21,25,38,31,62v1,20,-30,29,-41,11","w":98,"k":{"\u2018":11}},"a":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47","w":212,"k":{"v":7}},"b":{"d":"47,-264v38,0,25,55,27,93v57,-41,124,10,124,76v0,73,-75,132,-125,78v-8,32,-52,22,-52,-9r0,-209v0,-16,10,-29,26,-29xm110,-137v-49,1,-48,92,0,91v25,0,36,-21,36,-45v0,-23,-13,-46,-36,-46","w":209,"k":{"\u201d":34,"y":7,"t":11,"i":7,",":6,"\u2019":36}},"c":{"d":"102,4v-55,1,-92,-41,-91,-97v2,-55,34,-93,89,-93v26,0,62,8,62,33v0,13,-9,26,-22,26v-7,0,-28,-11,-38,-10v-22,1,-38,22,-38,46v0,45,44,52,76,36v12,0,22,9,22,21v-2,27,-33,38,-60,38","w":175,"k":{"y":-7,"b":8}},"d":{"d":"12,-96v-1,-65,71,-118,124,-73v2,-38,-12,-94,27,-95v16,-1,27,14,26,29r0,207v4,35,-46,41,-52,10v-11,15,-25,22,-46,22v-52,0,-78,-48,-79,-100xm101,-139v-25,0,-35,21,-37,45v-1,23,15,46,37,46v47,0,48,-91,0,-91","w":210,"k":{"w":-12,"v":-7,".":-13,",":-6}},"e":{"d":"190,-98v0,16,-6,24,-23,24r-99,0v9,38,57,36,86,17v13,-9,34,2,33,19v-3,27,-49,43,-81,42v-57,-2,-95,-37,-94,-96v1,-55,37,-94,91,-94v51,0,87,38,87,88xm138,-110v-10,-44,-60,-44,-71,0r71,0","w":201,"k":{"x":7,"v":11,".":-9}},"f":{"d":"134,-157v0,20,-18,26,-41,24v-6,48,20,130,-27,136v-46,-6,-19,-89,-26,-136v-20,1,-35,-6,-35,-24v0,-17,15,-26,35,-24v-6,-48,14,-78,55,-81v41,-3,42,44,12,47v-19,-2,-13,18,-14,34v22,-2,40,5,41,24","w":139,"k":{"\u201d":-14,"t":-13,"r":-8,"k":-11,"i":-7,"f":-13,".":7,",":17,"\u2019":-13}},"g":{"d":"12,-94v-3,-69,78,-121,125,-71v12,-32,51,-22,51,9r0,139v-1,60,-34,92,-93,92v-34,0,-76,-8,-80,-39v11,-61,121,43,122,-56v-11,14,-22,24,-44,24v-54,0,-78,-41,-81,-98xm98,-137v-47,2,-43,92,2,91v49,-2,46,-91,-2,-91","w":208,"k":{".":-18,",":-14}},"h":{"d":"47,-264v38,0,25,55,27,93v48,-32,118,-10,113,52v-3,45,18,122,-27,122v-61,0,11,-139,-56,-143v-45,-3,-30,69,-30,113v0,16,-11,30,-27,30v-15,0,-27,-15,-26,-30r0,-208v0,-16,10,-29,26,-29","w":207,"k":{"\u201d":29,"y":11,"w":7,"v":7,"i":7,"\u2019":31}},"i":{"d":"52,-202v-16,0,-31,-15,-31,-31v0,-16,15,-32,31,-31v18,0,29,14,30,31v1,16,-14,31,-30,31xm51,3v-15,0,-27,-15,-26,-30r0,-128v-1,-15,11,-30,26,-30v15,0,27,15,26,30r0,128v1,15,-11,30,-26,30","w":102},"j":{"d":"52,-202v-16,0,-31,-15,-31,-31v0,-16,15,-32,31,-31v18,0,29,14,30,31v1,16,-14,31,-30,31xm53,75v-15,0,-27,-15,-26,-30r0,-200v-1,-15,11,-30,26,-30v16,0,28,14,27,30r0,200v1,16,-11,30,-27,30","w":103,"k":{".":-18,",":-19}},"k":{"d":"171,-47v19,19,12,50,-12,50v-11,0,-19,-5,-25,-13r-60,-77v-2,37,10,90,-27,90v-15,1,-27,-15,-26,-30r0,-208v0,-16,10,-31,26,-29v49,5,19,93,27,142r52,-54v12,-16,48,-8,46,15v-3,27,-33,38,-47,57","w":193,"k":{"g":-10,"d":16,"c":-8}},"l":{"d":"47,-264v15,0,28,13,27,29r0,208v1,16,-11,30,-27,30v-15,0,-27,-15,-26,-30r0,-208v0,-16,10,-29,26,-29","w":94,"k":{"y":-10,"w":-13,"v":-8,"f":-12}},"m":{"d":"21,-154v-1,-34,37,-41,52,-13v25,-26,78,-25,97,4v34,-39,124,-25,119,38v-4,46,19,122,-26,128v-43,-4,-26,-74,-26,-116v0,-16,-12,-28,-29,-27v-44,3,-27,71,-27,113v0,15,-11,31,-26,30v-42,-3,-27,-69,-27,-111v0,-19,-8,-32,-27,-32v-44,3,-27,71,-27,113v0,16,-11,30,-27,30v-15,0,-27,-15,-26,-30r0,-127","w":310,"k":{"w":7,"v":7}},"n":{"d":"21,-154v-2,-32,41,-43,51,-12v36,-38,123,-19,114,47v-5,44,18,122,-26,122v-62,0,11,-143,-57,-143v-44,0,-29,70,-29,113v0,16,-11,30,-27,30v-15,0,-27,-15,-26,-30r0,-127","w":206},"o":{"d":"100,4v-53,0,-89,-40,-88,-95v0,-57,33,-95,88,-95v53,0,88,37,88,95v0,57,-34,95,-88,95xm99,-137v-23,0,-35,23,-35,46v1,23,11,45,35,45v25,0,36,-21,37,-45v0,-25,-13,-45,-37,-46","w":200,"k":{"v":11,"g":-7,",":9}},"p":{"d":"21,-153v-5,-35,44,-43,51,-12v49,-52,125,1,125,70v0,71,-65,127,-123,83v-1,37,10,87,-27,87v-15,1,-27,-15,-26,-30r0,-198xm110,-137v-25,0,-38,20,-38,46v0,26,13,46,38,46v45,0,45,-92,0,-92","w":208},"q":{"d":"12,-93v0,-69,73,-122,124,-73v12,-29,52,-23,52,8r0,203v1,16,-11,30,-26,30v-36,-1,-24,-52,-26,-87v-58,43,-124,-10,-124,-81xm100,-137v-47,1,-47,90,0,92v50,0,48,-92,0,-92","w":209,"k":{".":-20}},"r":{"d":"21,-154v-3,-36,42,-40,53,-12v20,-27,63,-28,63,6v0,39,-63,17,-63,61v0,40,13,101,-27,102v-15,1,-27,-15,-26,-30r0,-127","w":142,"k":{"y":-7,"x":7,"w":-7,"v":-5,"t":-13,"q":11,"o":12,"g":10,"f":-13,"e":13,"d":12,"a":12,".":27,",":37}},"s":{"d":"126,-127v-8,-3,-69,-26,-50,5v31,17,77,24,76,65v-1,39,-28,62,-68,61v-30,-1,-69,-10,-69,-39v0,-39,49,-13,70,-8v26,-6,15,-22,-5,-28v-30,-9,-58,-20,-60,-56v-3,-66,113,-80,128,-23v0,12,-10,24,-22,23","w":167,"k":{".":-10}},"t":{"d":"133,-158v-1,20,-19,26,-42,24r0,107v1,15,-11,31,-26,30v-48,-4,-20,-89,-27,-137v-21,0,-31,-8,-33,-24v3,-16,10,-26,33,-24v-1,-31,-2,-63,27,-63v28,0,28,33,26,63v23,-2,42,4,42,24","w":138,"k":{"t":-13,"e":7,"d":11,".":7,",":17}},"u":{"d":"159,-185v42,3,26,72,26,114v0,51,-35,75,-82,75v-45,0,-85,-25,-82,-75v2,-42,-16,-114,26,-114v61,0,-9,135,56,139v63,4,-6,-130,56,-139","w":205,"k":{"t":-9}},"v":{"d":"14,-145v-12,-27,19,-52,42,-34v19,28,25,68,38,101v17,-35,14,-92,52,-107v26,-1,37,21,25,46v-20,43,-34,95,-57,134v-17,16,-41,6,-51,-18","w":187,"k":{"s":11,"o":11,"e":11,"c":11,"a":7,".":21,",":31}},"w":{"d":"12,-148v-12,-27,22,-49,42,-30v17,27,21,67,33,99r26,-82v8,-33,44,-31,54,0r26,81v12,-32,14,-73,34,-98v16,-20,54,2,42,31v-19,45,-27,101,-53,139v-15,22,-43,11,-53,-18r-23,-66v-14,37,-22,118,-74,86v-26,-39,-34,-96,-54,-142","w":278,"k":{"s":7,"d":-5,"a":-5,".":13,",":23}},"x":{"d":"135,-172v16,-22,60,-10,49,21v-8,23,-33,37,-48,55v18,25,47,39,56,73v-1,29,-35,30,-53,9r-34,-41v-19,19,-33,55,-66,57v-22,1,-30,-35,-13,-47r47,-51v-15,-21,-44,-34,-48,-63v-4,-27,36,-33,51,-14r29,37","w":199},"y":{"d":"13,-145v-17,-26,20,-53,41,-33v17,27,27,65,41,96v14,-31,22,-70,41,-96v16,-21,54,3,42,33r-85,203v-8,29,-49,22,-52,-4v3,-28,18,-48,26,-71","w":189,"k":{"s":7,"g":13,"d":11,".":21,",":29}},"z":{"d":"140,-183v21,1,27,20,14,38r-71,97v33,2,84,-11,84,24v0,14,-12,24,-27,24r-107,0v-25,2,-34,-17,-21,-34r74,-101v-32,-2,-80,10,-80,-24v0,-14,12,-24,27,-24r107,0","w":172},"{":{"d":"134,14v32,0,29,53,0,55v-46,3,-76,-5,-76,-52v0,-32,11,-74,-20,-82v-11,-3,-11,-45,0,-46v31,-4,18,-50,20,-82v2,-46,23,-51,76,-51v31,1,31,56,0,55v-26,-1,-19,34,-19,58v0,25,-5,33,-21,44v26,11,21,47,21,83v0,11,6,18,19,18"},"|":{"d":"67,-240r58,0r0,300r-58,0r0,-300"},"}":{"d":"57,-244v53,1,74,5,76,51v2,31,-12,76,20,82v11,1,11,44,0,46v-30,6,-20,49,-20,82v0,46,-29,55,-76,52v-29,-2,-33,-55,0,-55v27,0,19,-33,19,-57v0,-24,6,-34,21,-44v-24,-10,-21,-41,-21,-75v-1,-17,-2,-28,-19,-27v-14,0,-24,-13,-24,-28v0,-13,12,-27,24,-27"},"~":{"d":"53,-119v-5,23,-40,16,-39,-7v1,-49,68,-48,98,-25v23,17,27,-17,45,-17v12,-1,21,8,21,19v-1,27,-22,41,-49,44v-23,2,-60,-36,-76,-14"},"\u00a1":{"d":"52,-187v-15,0,-30,-14,-30,-29v-1,-15,15,-31,30,-30v15,0,29,15,29,30v0,15,-14,29,-29,29xm54,-168v16,0,27,14,26,29r0,116v1,16,-10,30,-26,29v-16,0,-26,-13,-26,-29r0,-116v-1,-15,10,-29,26,-29","w":103},"\u00a2":{"d":"115,-249v16,0,20,17,18,35v30,6,45,17,45,32v0,14,-8,28,-22,27v-12,-1,-27,-9,-39,-9v-24,0,-39,22,-39,45v0,23,16,48,40,45v19,-2,59,-20,59,13v0,25,-22,30,-44,36v1,19,0,37,-18,37v-17,0,-19,-18,-18,-37v-43,-7,-72,-45,-72,-93v1,-55,26,-84,72,-96v-1,-18,1,-35,18,-35","w":202},"\u00a3":{"d":"175,-121v0,23,-23,27,-48,25v0,12,-5,27,-14,45v42,5,118,-18,118,25v0,16,-11,26,-28,26r-130,0v-21,0,-31,-10,-31,-28v0,-27,29,-36,28,-68v-26,1,-51,0,-51,-25v0,-20,17,-29,40,-26v-25,-59,25,-98,81,-99v43,-1,87,22,90,57v0,15,-13,30,-29,29v-29,-2,-27,-40,-60,-37v-24,1,-37,27,-20,50v28,-2,54,0,54,26","w":250},"\u2044":{"d":"33,-6v-6,19,-31,14,-33,-2v24,-80,61,-149,87,-226v6,-19,32,-12,34,2v-24,80,-62,149,-88,226","w":122},"\u00a5":{"d":"91,0r0,-80r-72,0r0,-23r65,0r-21,-35r-50,0r0,-22r39,0r-46,-79r63,0r52,101r52,-102r64,0r-46,80r38,0r0,22r-50,0r-21,35r67,0r0,23r-75,0r0,80r-59,0","w":243},"\u0192":{"d":"42,48v-42,6,-43,-48,-7,-48v12,0,19,-7,21,-18r24,-139v-19,2,-34,-7,-34,-24v0,-22,20,-26,43,-24v4,-46,22,-78,69,-82v45,-4,46,51,10,48v-23,-2,-24,16,-26,34v44,-12,56,48,14,48r-23,0v-23,76,-1,194,-91,205","w":202},"\u00a7":{"d":"135,-184v-6,-17,-47,-32,-55,-6v20,39,102,28,100,88v0,17,-9,35,-27,52v41,41,-5,98,-60,98v-34,0,-71,-18,-72,-48v0,-22,32,-27,42,-8v13,25,71,8,48,-16v-37,-22,-97,-25,-99,-81v0,-18,8,-34,26,-50v-31,-45,12,-95,64,-91v32,1,67,14,69,46v2,18,-24,32,-36,16xm70,-129v-31,30,30,41,51,54v29,-34,-30,-39,-51,-54","w":191},"\u20ac":{"d":"20,-39r36,-36v-18,-31,-17,-62,1,-95r-37,-37r30,-30r37,38v36,-17,58,-18,94,0r37,-38r30,30r-37,37v19,32,20,59,2,94r36,37r-29,30r-36,-37v-33,19,-63,21,-98,1r-37,36xm176,-122v1,-22,-19,-42,-41,-42v-22,0,-43,19,-42,42v1,23,19,41,42,41v23,0,40,-18,41,-41","w":268},"'":{"d":"23,-150v9,-33,32,-56,45,-85v7,-15,32,-15,32,4v-14,30,-40,49,-57,76v-6,9,-15,14,-20,5","w":122},"\u201c":{"d":"12,-213v-11,-14,5,-34,20,-33v31,3,33,42,48,62v11,14,-5,34,-21,32v-29,-4,-32,-41,-47,-61xm89,-213v-11,-15,5,-35,20,-33v29,4,33,42,48,62v11,14,-6,34,-21,32v-29,-4,-32,-41,-47,-61","w":176},"\u00ab":{"d":"64,-162v13,-19,44,-11,41,12v-3,25,-29,35,-41,52v13,17,37,28,41,52v4,23,-29,33,-41,13v-14,-25,-55,-52,-30,-87xm151,-162v13,-19,43,-11,41,12v-2,25,-29,35,-42,52v13,17,39,28,42,52v3,23,-29,34,-41,13v-14,-25,-55,-52,-30,-87","w":217},"\u2039":{"d":"64,-162v13,-19,44,-11,41,12v-3,25,-29,35,-41,52v13,17,37,28,41,52v4,23,-29,33,-41,13v-14,-25,-55,-52,-30,-87","w":130},"\u203a":{"d":"66,-33v-11,19,-44,10,-41,-13v3,-24,29,-35,42,-52v-13,-17,-39,-27,-42,-52v-3,-22,30,-31,41,-12v14,25,57,52,31,87","w":130},"\ufb01":{"d":"134,-157v0,21,-18,26,-41,24v-6,48,20,130,-27,136v-46,-6,-19,-89,-26,-136v-20,1,-35,-6,-35,-24v-1,-19,14,-26,35,-24v-6,-48,14,-78,55,-81v41,-3,42,44,12,47v-19,-2,-13,18,-14,34v22,-2,40,4,41,24xm180,-202v-16,0,-31,-15,-31,-31v0,-16,15,-31,31,-31v16,0,31,16,31,31v0,15,-15,31,-31,31xm179,3v-17,0,-25,-14,-26,-30r0,-128v-1,-15,11,-30,26,-30v16,0,28,14,27,30r0,128v1,16,-11,31,-27,30","w":231},"\ufb02":{"d":"134,-157v0,22,-18,26,-41,24v-6,48,20,130,-27,136v-46,-7,-19,-89,-26,-136v-20,1,-35,-6,-35,-24v0,-17,15,-26,35,-24v-6,-48,14,-78,55,-81v41,-3,42,44,12,47v-19,-2,-13,18,-14,34v23,-2,41,3,41,24xm176,-264v16,0,27,12,26,29r0,208v1,18,-11,29,-26,30v-16,1,-28,-14,-27,-30r0,-208v-1,-18,11,-29,27,-29","w":223},"\u2013":{"d":"18,-99v0,-14,11,-23,25,-23r108,0v14,0,25,9,25,23v0,14,-12,22,-25,22r-108,0v-13,0,-25,-8,-25,-22","w":193},"\u2020":{"d":"188,-148v0,28,-34,26,-63,25r0,146v0,15,-8,27,-24,26v-15,0,-24,-11,-24,-26r0,-146v-29,0,-62,5,-62,-25v0,-28,34,-23,62,-23v1,-32,-7,-74,24,-75v33,0,22,44,24,75v28,0,63,-5,63,23","w":202},"\u2021":{"d":"188,-148v0,28,-34,26,-63,25r0,50v28,1,65,-7,63,24v-1,27,-34,25,-63,24v-2,31,9,74,-24,74v-32,0,-23,-43,-24,-74v-28,0,-62,4,-62,-24v0,-30,34,-24,62,-24r0,-50v-29,0,-62,5,-62,-25v0,-28,34,-23,62,-23v1,-32,-7,-74,24,-75v33,0,22,44,24,75v28,0,63,-5,63,23","w":202},"\u00b7":{"d":"54,-60v-16,0,-30,-14,-30,-29v0,-15,14,-29,30,-29v18,0,28,13,29,29v0,15,-14,29,-29,29","w":106},"\u00b6":{"d":"109,39v-7,0,-14,-4,-14,-11r0,-143v-42,1,-68,-23,-70,-62v-2,-74,85,-63,161,-63v8,0,13,4,14,11v-1,8,-9,11,-19,10r0,247v1,8,-7,12,-14,12v-7,0,-13,-4,-13,-12r0,-247r-32,0r0,247v0,6,-6,11,-13,11","w":236},"\u2022":{"d":"76,-122v-1,-27,23,-50,50,-50v30,0,49,22,49,50v0,28,-21,50,-49,50v-29,0,-49,-22,-50,-50","w":250},"\u201a":{"d":"58,40v-10,23,-50,11,-47,-13v4,-28,24,-45,35,-68v11,-22,47,-10,47,13v-6,27,-24,45,-35,68","w":106},"\u201e":{"d":"54,37v-10,20,-44,10,-43,-12v10,-26,23,-50,40,-69v17,-11,42,10,31,30xm130,37v-10,21,-44,9,-43,-12v7,-24,23,-40,33,-61v9,-20,43,-9,41,11v-3,26,-21,41,-31,62","w":176},"\u201d":{"d":"56,-163v-10,20,-47,10,-43,-12v5,-24,22,-40,32,-60v9,-20,42,-10,42,10v-5,25,-21,41,-31,62xm132,-163v-10,20,-46,10,-42,-12v4,-24,22,-40,32,-60v9,-19,43,-10,41,10v-3,27,-21,41,-31,62","w":176},"\u00bb":{"d":"153,-33v-11,19,-45,10,-41,-13v4,-24,29,-35,41,-52v-13,-17,-37,-27,-41,-52v-3,-23,30,-31,41,-12v13,26,55,52,30,87xm66,-33v-11,19,-44,10,-41,-13v3,-24,29,-35,42,-52v-13,-17,-39,-27,-42,-52v-3,-22,30,-31,41,-12v14,25,57,52,31,87","w":217},"\u2026":{"d":"54,6v-15,0,-30,-14,-30,-29v-1,-15,15,-31,30,-30v17,0,28,14,29,30v0,15,-14,29,-29,29xm149,6v-15,0,-29,-14,-29,-29v0,-15,14,-30,29,-30v15,-1,31,15,30,30v0,15,-15,29,-30,29xm245,6v-15,0,-29,-14,-29,-29v0,-15,14,-30,29,-30v17,0,29,13,30,30v0,15,-15,29,-30,29","w":298},"\u2030":{"d":"66,-90v-75,-2,-73,-155,0,-157v76,1,77,157,0,157xm47,-167v0,21,0,44,20,44v20,0,20,-24,20,-45v0,-21,1,-45,-20,-45v-21,-1,-20,25,-20,46xm232,1v-75,0,-75,-156,0,-156v75,0,76,156,0,156xm233,-122v-21,0,-21,25,-21,46v0,29,8,44,21,44v20,-1,20,-25,20,-45v0,-20,0,-45,-20,-45xm123,-6v-7,20,-31,13,-34,-2r87,-226v6,-19,32,-13,34,2v-24,80,-61,149,-87,226xm358,1v-75,-2,-73,-154,0,-156v76,0,77,156,0,156xm359,-122v-21,0,-20,26,-20,46v0,29,7,44,20,44v20,0,20,-24,20,-45v0,-21,1,-45,-20,-45","w":446},"\u00bf":{"d":"98,-246v15,0,29,14,29,30v0,16,-14,29,-29,29v-15,0,-29,-13,-29,-29v0,-16,14,-30,29,-30xm96,6v-65,5,-109,-69,-69,-121v11,-13,25,-21,44,-25v0,-21,7,-34,27,-34v25,-1,26,25,26,52v0,35,-59,17,-53,52v-1,14,14,22,27,22v19,4,32,-31,49,-31v14,0,27,11,26,26v-3,39,-38,56,-77,59","w":184},"`":{"d":"130,-235v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2"},"\u00b4":{"d":"74,-200v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36"},"\u02c6":{"d":"147,-230v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33"},"\u02dc":{"d":"59,-207v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12"},"\u00af":{"d":"164,-225v0,11,-9,18,-20,18r-89,0v-11,0,-20,-6,-20,-18v0,-12,9,-18,20,-18r89,0v12,0,20,6,20,18"},"\u02d8":{"d":"154,-221v-17,38,-102,39,-113,-5v8,-34,39,6,57,4v20,-1,51,-39,56,1"},"\u02d9":{"d":"95,-199v-14,0,-26,-12,-26,-26v0,-38,53,-32,53,0v0,14,-12,26,-27,26"},"\u00a8":{"d":"57,-199v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm135,-199v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26"},"\u02da":{"d":"96,-198v-19,-1,-32,-13,-33,-33v-1,-19,16,-33,33,-33v18,0,32,14,32,33v0,17,-14,34,-32,33xm96,-246v-8,0,-15,7,-15,15v0,8,8,15,15,15v7,0,14,-7,14,-15v0,-8,-6,-15,-14,-15"},"\u00b8":{"d":"94,46v-7,14,-31,7,-31,-8v4,-16,16,-25,23,-38r42,0"},"\u02dd":{"d":"99,-247r-35,50r-28,0r20,-50r43,0xm159,-247r-36,50r-27,0r19,-50r44,0"},"\u02db":{"d":"135,63v-26,10,-60,2,-60,-23v0,-15,8,-28,22,-40r24,0v-31,17,-22,53,14,44r0,19"},"\u02c7":{"d":"41,-211v-17,-5,-12,-36,6,-34v18,2,32,11,48,16r48,-16v19,0,26,31,4,36v-20,5,-37,17,-59,16"},"\u2014":{"d":"-28,-99v0,-14,11,-23,25,-23r219,0v14,0,25,9,25,23v0,14,-12,22,-25,22r-219,0v-13,0,-25,-8,-25,-22","w":213},"\u00c6":{"d":"280,-216v0,37,-52,22,-86,25r0,45v32,2,81,-11,80,24v0,34,-47,24,-80,25r0,48v34,3,86,-12,86,24v0,41,-68,25,-107,25v-22,0,-36,-12,-34,-41r-63,0v-6,17,-16,45,-33,45v-21,0,-36,-19,-26,-40r81,-185v22,-35,103,-19,155,-19v16,0,27,8,27,24xm139,-90r0,-98r-42,98r42,0","w":294},"\u00aa":{"d":"13,-118v0,-9,7,-13,17,-13r77,0v10,0,17,4,17,13v-8,28,-64,9,-94,14v-9,0,-17,-5,-17,-14xm117,-233v0,31,13,82,-15,89v-7,0,-12,-3,-15,-11v-25,30,-75,-3,-70,-41v-3,-37,42,-70,70,-41v6,-16,30,-11,30,4xm65,-221v-25,0,-26,51,0,51v12,0,22,-11,21,-25v0,-15,-6,-26,-21,-26","w":135},"\u00d8":{"d":"36,-42v-57,-74,-12,-204,92,-204v23,0,45,5,64,16v9,-8,13,-22,30,-20v25,2,18,37,2,48v58,77,9,215,-93,208v-27,-2,-43,-8,-64,-19v-9,21,-48,28,-47,-6v0,-7,11,-17,16,-23xm100,-52v62,34,114,-36,88,-106xm159,-190v-62,-29,-113,38,-87,104","w":260},"\u0152":{"d":"333,-215v0,36,-54,21,-88,24r0,46v32,2,80,-11,80,24v0,34,-47,23,-80,25r0,47v35,3,88,-11,88,24v0,43,-76,25,-118,25v-14,0,-19,-2,-20,-15v-19,15,-39,21,-69,21v-75,0,-115,-51,-115,-128v0,-72,43,-124,116,-124v34,0,47,7,68,24v1,-13,5,-18,18,-18v43,0,120,-18,120,25xm130,-197v-40,0,-59,33,-59,77v0,46,18,77,59,77v41,0,60,-35,60,-77v0,-42,-19,-77,-60,-77","w":347},"\u00ba":{"d":"13,-118v0,-9,7,-13,17,-13r77,0v10,0,17,4,17,13v-8,28,-64,9,-94,14v-9,0,-17,-5,-17,-14xm67,-143v-31,0,-50,-23,-50,-53v0,-30,19,-53,50,-54v29,-1,50,24,50,54v0,30,-19,53,-50,53xm67,-222v-27,0,-27,51,0,51v12,0,20,-12,20,-25v0,-14,-8,-26,-20,-26","w":135},"\u00e6":{"d":"311,-95v0,15,-9,19,-25,19r-97,0v11,40,63,31,95,18v13,0,26,10,24,22v-8,43,-97,53,-128,22v0,11,-8,17,-22,17v-14,0,-19,-9,-20,-22v-48,54,-127,0,-127,-74v0,-70,79,-122,128,-73v-3,-25,37,-24,41,-6v58,-38,132,10,131,77xm259,-111v-7,-45,-66,-42,-71,0r71,0xm100,-137v-48,-1,-47,92,-2,91v25,0,38,-22,38,-47v0,-25,-11,-44,-36,-44","w":322},"\u0131":{"d":"51,3v-15,0,-27,-15,-26,-30r0,-128v-1,-15,11,-30,26,-30v15,0,27,15,26,30r0,128v1,15,-11,30,-26,30","w":102},"\u00f8":{"d":"36,-40v-46,-83,36,-182,124,-133v12,-22,52,-13,40,17r-11,13v48,80,-39,186,-125,133v-10,19,-49,15,-41,-12v2,-7,8,-13,13,-18xm97,-45v35,15,63,-19,55,-59xm126,-137v-36,-12,-58,19,-55,59","w":218},"\u0153":{"d":"12,-92v0,-83,99,-122,151,-69v45,-50,136,-18,144,42v3,22,13,44,-17,43r-100,0v7,41,66,30,95,17v13,0,23,10,23,23v-2,31,-49,40,-80,40v-26,0,-49,-9,-67,-26v-56,55,-149,14,-149,-70xm260,-111v-9,-44,-61,-44,-71,0r71,0xm99,-137v-23,0,-35,23,-35,46v1,21,13,45,35,45v23,0,37,-22,37,-46v0,-23,-14,-45,-37,-45","w":323},"\u00df":{"d":"100,-264v65,-6,104,82,54,118v25,8,43,33,43,64v0,43,-39,86,-79,86v-34,0,-44,-45,-6,-50v18,-3,29,-18,30,-39v2,-39,-55,-21,-57,-57v-2,-30,44,-20,41,-48v-1,-15,-11,-25,-27,-25v-20,0,-25,16,-25,40r0,148v1,16,-11,30,-27,30v-15,0,-27,-15,-26,-30r0,-154v0,-48,30,-79,79,-83","w":208},"\u00c1":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0xm93,-260v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":229},"\u00c2":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0xm167,-297v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":229},"\u00c4":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0xm77,-259v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm155,-259v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":229},"\u00c0":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0xm149,-295v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":229},"\u00c5":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0xm116,-258v-19,-1,-32,-13,-33,-33v-1,-19,16,-33,33,-33v18,0,32,14,32,33v0,17,-14,34,-32,33xm116,-306v-8,0,-15,7,-15,15v0,8,8,15,15,15v7,0,14,-7,14,-15v0,-8,-6,-15,-14,-15","w":229},"\u00c3":{"d":"221,-36v12,27,-22,54,-43,33v-10,-10,-11,-27,-16,-43r-92,0v-5,19,-13,50,-31,50v-22,0,-37,-18,-29,-40r65,-178v9,-38,67,-39,81,0xm145,-95r-29,-92r-29,92r58,0xm78,-270v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12","w":229},"\u00c7":{"d":"155,-49v18,-15,51,-12,51,16v0,27,-35,35,-60,38v-15,16,-20,43,-44,49v-11,0,-23,-16,-13,-26r17,-25v-61,-12,-93,-60,-93,-130v0,-72,46,-119,119,-119v29,0,72,6,72,35v0,13,-8,28,-22,28v-10,0,-36,-11,-48,-11v-44,0,-60,31,-62,73v-3,52,32,86,83,72","w":216},"\u00c9":{"d":"162,-215v0,35,-51,22,-85,24r0,46v33,2,80,-10,79,25v0,33,-47,22,-79,24r0,47v33,3,85,-11,85,24v0,41,-67,25,-106,25v-21,0,-34,-12,-34,-33r0,-174v-1,-48,68,-30,112,-33v16,-1,28,9,28,25xm66,-260v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":176},"\u00ca":{"d":"162,-215v0,35,-51,22,-85,24r0,46v33,2,80,-10,79,25v0,33,-47,22,-79,24r0,47v33,3,85,-11,85,24v0,41,-67,25,-106,25v-21,0,-34,-12,-34,-33r0,-174v-1,-48,68,-30,112,-33v16,-1,28,9,28,25xm140,-297v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":176},"\u00cb":{"d":"162,-215v0,35,-51,22,-85,24r0,46v33,2,80,-10,79,25v0,33,-47,22,-79,24r0,47v33,3,85,-11,85,24v0,41,-67,25,-106,25v-21,0,-34,-12,-34,-33r0,-174v-1,-48,68,-30,112,-33v16,-1,28,9,28,25xm50,-259v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm128,-259v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":176},"\u00c8":{"d":"162,-215v0,35,-51,22,-85,24r0,46v33,2,80,-10,79,25v0,33,-47,22,-79,24r0,47v33,3,85,-11,85,24v0,41,-67,25,-106,25v-21,0,-34,-12,-34,-33r0,-174v-1,-48,68,-30,112,-33v16,-1,28,9,28,25xm122,-295v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":176},"\u00cd":{"d":"50,4v-16,0,-28,-14,-28,-31r0,-186v0,-17,11,-31,28,-31v17,0,27,14,27,31r0,186v0,17,-10,31,-27,31xm28,-260v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":99},"\u00ce":{"d":"50,4v-16,0,-28,-14,-28,-31r0,-186v0,-17,11,-31,28,-31v17,0,27,14,27,31r0,186v0,17,-10,31,-27,31xm102,-297v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":99},"\u00cf":{"d":"50,4v-16,0,-28,-14,-28,-31r0,-186v0,-17,11,-31,28,-31v17,0,27,14,27,31r0,186v0,17,-10,31,-27,31xm11,-259v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm89,-259v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":99},"\u00cc":{"d":"50,4v-16,0,-28,-14,-28,-31r0,-186v0,-17,11,-31,28,-31v17,0,27,14,27,31r0,186v0,17,-10,31,-27,31xm83,-295v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":99},"\u00d1":{"d":"234,-28v2,29,-31,42,-48,21r-109,-138r0,118v0,17,-10,31,-27,31v-16,0,-28,-14,-28,-31r0,-188v-2,-27,33,-38,50,-17r107,134r0,-115v0,-17,10,-31,27,-31v16,0,28,14,28,31r0,185xm91,-270v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12","w":255},"\u00d3":{"d":"130,6v-75,0,-118,-52,-118,-128v0,-74,50,-124,118,-124v76,0,119,50,119,124v0,75,-42,128,-119,128xm130,-197v-80,0,-79,154,0,154v43,0,59,-35,60,-78v0,-42,-19,-76,-60,-76xm108,-260v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":260},"\u00d4":{"d":"130,6v-75,0,-118,-52,-118,-128v0,-74,50,-124,118,-124v76,0,119,50,119,124v0,75,-42,128,-119,128xm130,-197v-80,0,-79,154,0,154v43,0,59,-35,60,-78v0,-42,-19,-76,-60,-76xm182,-297v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":260},"\u00d6":{"d":"130,6v-75,0,-118,-52,-118,-128v0,-74,50,-124,118,-124v76,0,119,50,119,124v0,75,-42,128,-119,128xm130,-197v-80,0,-79,154,0,154v43,0,59,-35,60,-78v0,-42,-19,-76,-60,-76xm92,-259v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm170,-259v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":260},"\u00d2":{"d":"130,6v-75,0,-118,-52,-118,-128v0,-74,50,-124,118,-124v76,0,119,50,119,124v0,75,-42,128,-119,128xm130,-197v-80,0,-79,154,0,154v43,0,59,-35,60,-78v0,-42,-19,-76,-60,-76xm163,-295v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":260},"\u00d5":{"d":"130,6v-75,0,-118,-52,-118,-128v0,-74,50,-124,118,-124v76,0,119,50,119,124v0,75,-42,128,-119,128xm130,-197v-80,0,-79,154,0,154v43,0,59,-35,60,-78v0,-42,-19,-76,-60,-76xm93,-270v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12","w":260},"\u00da":{"d":"201,-243v49,4,24,90,28,138v5,71,-40,111,-104,111v-61,0,-105,-36,-105,-97r0,-122v-1,-17,10,-30,28,-30v17,0,27,13,27,30v0,68,-22,167,49,168v70,0,49,-100,49,-168v0,-17,11,-31,28,-30xm102,-260v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":248},"\u00db":{"d":"201,-243v49,4,24,90,28,138v5,71,-40,111,-104,111v-61,0,-105,-36,-105,-97r0,-122v-1,-17,10,-30,28,-30v17,0,27,13,27,30v0,68,-22,167,49,168v70,0,49,-100,49,-168v0,-17,11,-31,28,-30xm176,-297v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":248},"\u00dc":{"d":"201,-243v49,4,24,90,28,138v5,71,-40,111,-104,111v-61,0,-105,-36,-105,-97r0,-122v-1,-17,10,-30,28,-30v17,0,27,13,27,30v0,68,-22,167,49,168v70,0,49,-100,49,-168v0,-17,11,-31,28,-30xm85,-259v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm163,-259v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":248},"\u00d9":{"d":"201,-243v49,4,24,90,28,138v5,71,-40,111,-104,111v-61,0,-105,-36,-105,-97r0,-122v-1,-17,10,-30,28,-30v17,0,27,13,27,30v0,68,-22,167,49,168v70,0,49,-100,49,-168v0,-17,11,-31,28,-30xm157,-295v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":248},"\u0178":{"d":"156,-230v13,-23,54,-15,52,15v-14,38,-49,69,-70,102v-5,44,17,117,-28,117v-44,0,-23,-74,-28,-117v-22,-34,-49,-63,-68,-100v-2,-29,35,-40,52,-16r44,63xm73,-259v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm151,-259v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":218},"\u00e1":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47xm84,-200v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":212},"\u00e2":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47xm158,-230v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":212},"\u00e4":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47xm68,-199v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm146,-199v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":212},"\u00e0":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47xm140,-235v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":212},"\u00e5":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47xm106,-198v-19,-1,-32,-13,-33,-33v-1,-19,16,-33,33,-33v18,0,32,14,32,33v0,17,-14,34,-32,33xm106,-246v-8,0,-15,7,-15,15v0,8,8,15,15,15v7,0,14,-7,14,-15v0,-8,-6,-15,-14,-15","w":212},"\u00e3":{"d":"192,-29v2,32,-45,46,-53,11v-46,54,-137,-5,-128,-73v-7,-68,80,-127,128,-74v8,-30,53,-24,53,7r0,129xm99,-137v-22,-1,-35,23,-35,45v0,23,11,46,35,46v24,-1,38,-19,38,-44v0,-27,-12,-47,-38,-47xm69,-207v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12","w":212},"\u00e7":{"d":"105,-45v19,-5,57,-22,57,11v0,24,-20,28,-41,36v-15,15,-26,42,-46,51v-14,1,-24,-16,-14,-28r19,-25v-45,-6,-69,-44,-69,-92v0,-57,35,-94,89,-94v26,0,62,8,62,33v0,36,-36,23,-60,16v-21,0,-40,21,-38,46v1,27,14,45,41,46","w":175},"\u00a9":{"d":"19,-120v0,-73,53,-125,125,-125v71,0,124,52,124,125v0,75,-50,125,-124,125v-72,0,-125,-53,-125,-125xm242,-120v0,-58,-41,-101,-98,-101v-58,0,-99,44,-99,101v0,57,41,101,99,101v57,0,98,-43,98,-101xm148,-46v-42,-1,-70,-34,-69,-79v1,-42,28,-70,70,-70v17,0,43,5,43,21v0,25,-26,10,-42,9v-25,-2,-36,19,-36,44v0,40,34,53,65,36v7,0,14,7,14,15v-1,18,-24,24,-45,24","w":287},"\u00b0":{"d":"95,-242v33,0,58,25,58,58v0,33,-26,57,-58,57v-31,0,-57,-24,-57,-56v0,-34,23,-59,57,-59xm60,-183v0,46,70,41,70,-1v1,-19,-16,-36,-35,-36v-21,1,-35,17,-35,37"},"\u00f7":{"d":"8,-143r174,0r0,27r-174,0r0,-27xm75,-192v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm75,-68v0,-11,9,-21,20,-21v11,0,21,9,21,21v0,12,-9,21,-21,21v-11,-1,-21,-8,-20,-21"},"\u00e9":{"d":"190,-98v0,16,-6,24,-23,24r-99,0v9,38,57,36,86,17v13,-9,34,2,33,19v-3,27,-49,43,-81,42v-57,-2,-95,-37,-94,-96v1,-55,37,-94,91,-94v51,0,87,38,87,88xm138,-110v-10,-44,-60,-44,-71,0r71,0xm79,-200v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":201},"\u00ea":{"d":"190,-98v0,16,-6,24,-23,24r-99,0v9,38,57,36,86,17v13,-9,34,2,33,19v-3,27,-49,43,-81,42v-57,-2,-95,-37,-94,-96v1,-55,37,-94,91,-94v51,0,87,38,87,88xm138,-110v-10,-44,-60,-44,-71,0r71,0xm152,-230v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":201},"\u00eb":{"d":"190,-98v0,16,-6,24,-23,24r-99,0v9,38,57,36,86,17v13,-9,34,2,33,19v-3,27,-49,43,-81,42v-57,-2,-95,-37,-94,-96v1,-55,37,-94,91,-94v51,0,87,38,87,88xm138,-110v-10,-44,-60,-44,-71,0r71,0xm62,-199v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm140,-199v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":201},"\u00e8":{"d":"190,-98v0,16,-6,24,-23,24r-99,0v9,38,57,36,86,17v13,-9,34,2,33,19v-3,27,-49,43,-81,42v-57,-2,-95,-37,-94,-96v1,-55,37,-94,91,-94v51,0,87,38,87,88xm138,-110v-10,-44,-60,-44,-71,0r71,0xm134,-235v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":201},"\u00ed":{"d":"51,3v-15,0,-27,-15,-26,-30r0,-128v-1,-15,11,-30,26,-30v15,0,27,15,26,30r0,128v1,15,-11,30,-26,30xm28,-200v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":102},"\u00ee":{"d":"51,3v-15,0,-27,-15,-26,-30r0,-128v-1,-15,11,-30,26,-30v15,0,27,15,26,30r0,128v1,15,-11,30,-26,30xm103,-229v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":102},"\u00ef":{"d":"51,3v-15,0,-27,-15,-26,-30r0,-128v-1,-15,11,-30,26,-30v15,0,27,15,26,30r0,128v1,15,-11,30,-26,30xm16,-198v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm94,-198v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":102},"\u00ec":{"d":"51,3v-15,0,-27,-15,-26,-30r0,-128v-1,-15,11,-30,26,-30v15,0,27,15,26,30r0,128v1,15,-11,30,-26,30xm84,-235v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":102},"\u00ac":{"d":"117,0r0,-55r-100,0r0,-50r156,0r0,105r-56,0"},"\u00b5":{"d":"112,-37v51,0,27,-85,32,-135r53,0r0,172r-53,0r0,-23v-12,34,-49,34,-65,5r0,80r-53,0r0,-234r53,0v4,52,-17,135,33,135","w":222},"\u00f1":{"d":"21,-154v-2,-32,41,-43,51,-12v36,-38,123,-19,114,47v-5,44,18,122,-26,122v-62,0,11,-143,-57,-143v-44,0,-29,70,-29,113v0,16,-11,30,-27,30v-15,0,-27,-15,-26,-30r0,-127xm66,-207v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12","w":206},"\u00f3":{"d":"100,4v-53,0,-89,-40,-88,-95v0,-57,33,-95,88,-95v53,0,88,37,88,95v0,57,-34,95,-88,95xm99,-137v-23,0,-35,23,-35,46v1,23,11,45,35,45v25,0,36,-21,37,-45v0,-25,-13,-45,-37,-46xm78,-200v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":200},"\u00f4":{"d":"100,4v-53,0,-89,-40,-88,-95v0,-57,33,-95,88,-95v53,0,88,37,88,95v0,57,-34,95,-88,95xm99,-137v-23,0,-35,23,-35,46v1,23,11,45,35,45v25,0,36,-21,37,-45v0,-25,-13,-45,-37,-46xm152,-230v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":200},"\u00f6":{"d":"100,4v-53,0,-89,-40,-88,-95v0,-57,33,-95,88,-95v53,0,88,37,88,95v0,57,-34,95,-88,95xm99,-137v-23,0,-35,23,-35,46v1,23,11,45,35,45v25,0,36,-21,37,-45v0,-25,-13,-45,-37,-46xm62,-199v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm140,-199v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":200},"\u00f2":{"d":"100,4v-53,0,-89,-40,-88,-95v0,-57,33,-95,88,-95v53,0,88,37,88,95v0,57,-34,95,-88,95xm99,-137v-23,0,-35,23,-35,46v1,23,11,45,35,45v25,0,36,-21,37,-45v0,-25,-13,-45,-37,-46xm134,-235v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":200},"\u00f5":{"d":"100,4v-53,0,-89,-40,-88,-95v0,-57,33,-95,88,-95v53,0,88,37,88,95v0,57,-34,95,-88,95xm99,-137v-23,0,-35,23,-35,46v1,23,11,45,35,45v25,0,36,-21,37,-45v0,-25,-13,-45,-37,-46xm63,-207v-5,18,-34,14,-34,-6v0,-41,58,-43,85,-22v19,15,25,-14,39,-15v9,0,19,7,18,17v0,23,-20,35,-42,38v-19,2,-52,-32,-66,-12","w":200},"\u00b1":{"d":"8,-145r73,0r0,-72r28,0r0,72r73,0r0,27r-73,0r0,70r-28,0r0,-70r-73,0r0,-27xm8,-34r174,0r0,27r-174,0r0,-27"},"\u00ae":{"d":"19,-120v0,-73,53,-125,125,-125v71,0,124,52,124,125v0,75,-50,125,-124,125v-72,0,-125,-53,-125,-125xm242,-120v0,-58,-41,-101,-98,-101v-58,0,-99,44,-99,101v0,57,41,101,99,101v57,0,98,-43,98,-101xm163,-110v10,16,54,42,22,61v-31,-7,-38,-42,-59,-60v-2,23,8,60,-16,60v-10,0,-17,-7,-16,-18r0,-106v-2,-26,29,-18,52,-20v54,-6,69,77,17,83xm164,-148v0,-18,-19,-18,-38,-17r0,33v18,0,39,2,38,-16","w":287},"\u2122":{"d":"114,-224v-1,16,-20,16,-37,15r0,96v1,11,-8,21,-18,19v-36,-7,-13,-77,-19,-115v-18,0,-39,2,-37,-15v3,-30,62,-12,93,-16v9,-1,18,7,18,16xm168,-175v-10,28,2,81,-33,81v-10,0,-15,-10,-15,-22v10,-39,10,-88,26,-121v12,-9,34,-5,39,9r24,69v14,-30,14,-98,61,-78v21,26,20,81,28,121v6,30,-32,27,-36,6r-11,-65v-9,25,-14,56,-27,76v-11,9,-29,5,-34,-11","w":313},"\u00fa":{"d":"159,-185v42,3,26,72,26,114v0,51,-35,75,-82,75v-45,0,-85,-25,-82,-75v2,-42,-16,-114,26,-114v61,0,-9,135,56,139v63,4,-6,-130,56,-139xm81,-200v-19,7,-34,-14,-22,-29v20,-13,48,-16,73,-24v20,-1,24,30,5,36","w":205},"\u00fb":{"d":"159,-185v42,3,26,72,26,114v0,51,-35,75,-82,75v-45,0,-85,-25,-82,-75v2,-42,-16,-114,26,-114v61,0,-9,135,56,139v63,4,-6,-130,56,-139xm155,-230v22,5,15,36,-4,36v-17,-4,-32,-12,-48,-17v-20,7,-59,33,-65,-2v9,-25,45,-30,72,-33","w":205},"\u00fc":{"d":"159,-185v42,3,26,72,26,114v0,51,-35,75,-82,75v-45,0,-85,-25,-82,-75v2,-42,-16,-114,26,-114v61,0,-9,135,56,139v63,4,-6,-130,56,-139xm65,-199v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm143,-199v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":205},"\u00f9":{"d":"159,-185v42,3,26,72,26,114v0,51,-35,75,-82,75v-45,0,-85,-25,-82,-75v2,-42,-16,-114,26,-114v61,0,-9,135,56,139v63,4,-6,-130,56,-139xm137,-235v21,3,16,38,-5,36v-27,-11,-70,-6,-76,-38v9,-34,56,-2,81,2","w":205},"\u00ff":{"d":"13,-145v-17,-26,20,-53,41,-33v17,27,27,65,41,96v14,-31,22,-70,41,-96v16,-21,54,3,42,33r-85,203v-8,29,-49,22,-52,-4v3,-28,18,-48,26,-71xm57,-199v-14,0,-26,-11,-26,-26v0,-15,12,-28,26,-27v15,1,26,11,26,27v1,14,-11,26,-26,26xm135,-199v-14,0,-26,-11,-26,-26v0,-15,12,-27,26,-27v14,0,26,12,26,27v0,14,-11,26,-26,26","w":189},"\u00a0":{"w":101}}});

(function($) {
 
  $.fn.tweet = function(o){
    var s = {
      username: ["seaofclouds"],              // [string]   required, unless you want to display our tweets. :) it can be an array, just do ["username1","username2","etc"]
      list: null,                              //[string]   optional name of list belonging to username
      avatar_size: null,                      // [integer]  height and width of avatar if displayed (48px max)
      count: 3,                               // [integer]  how many tweets to display?
      intro_text: null,                       // [string]   do you want text BEFORE your your tweets?
      outro_text: null,                       // [string]   do you want text AFTER your tweets?
      join_text:  null,                       // [string]   optional text in between date and tweet, try setting to "auto"
      auto_join_text_default: "i said,",      // [string]   auto text for non verb: "i said" bullocks
      auto_join_text_ed: "i",                 // [string]   auto text for past tense: "i" surfed
      auto_join_text_ing: "i am",             // [string]   auto tense for present tense: "i was" surfing
      auto_join_text_reply: "i replied to",   // [string]   auto tense for replies: "i replied to" @someone "with"
      auto_join_text_url: "i was looking at", // [string]   auto tense for urls: "i was looking at" http:...
      loading_text: null,                     // [string]   optional loading text, displayed while tweets load
      query: null                             // [string]   optional search query
    };
    
    if(o) $.extend(s, o);
    
    $.fn.extend({
      linkUrl: function() {
        var returning = [];
        var regexp = /((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"$1\">$1</a>"));
        });
        return $(returning);
      },
      linkUser: function() {
        var returning = [];
        var regexp = /[\@]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"http://twitter.com/$1\">@$1</a>"));
        });
        return $(returning);
      },
      linkHash: function() {
        var returning = [];
        var regexp = /(?:^| )[\#]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp, ' <a href="http://search.twitter.com/search?q=&tag=$1&lang=all&from='+s.username.join("%2BOR%2B")+'">#$1</a>'));
        });
        return $(returning);
      },
      capAwesome: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/\b(awesome)\b/gi, '<span class="awesome">$1</span>'));
        });
        return $(returning);
      },
      capEpic: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/\b(epic)\b/gi, '<span class="epic">$1</span>'));
        });
        return $(returning);
      },
      makeHeart: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/(&lt;)+[3]/gi, "<tt class='heart'>&#x2665;</tt>"));
        });
        return $(returning);
      }
    });

    function parse_date(date_str) {
      // The non-search twitter APIs return inconsistently-formatted dates, which Date.parse
      // cannot handle in IE. We therefore perform the following transformation:
      // "Wed Apr 29 08:53:31 +0000 2009" => "Wed, Apr 29 2009 08:53:31 +0000"
      return Date.parse(date_str.replace(/^([a-z]{3})( [a-z]{3} \d\d?)(.*)( \d{4})$/i, '$1,$2$4$3'));
    }

    function relative_time(time_value) {
      var parsed_date = parse_date(time_value);
      var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
      var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
      var pluralize = function (singular, n) {
        return '' + n + ' ' + singular + (n == 1 ? '' : 's');
      };
      if(delta < 60) {
      return 'less than a minute ago';
      } else if(delta < (60*60)) {
      return 'about ' + pluralize("minute", parseInt(delta / 60)) + ' ago';
      } else if(delta < (24*60*60)) {
      return 'about ' + pluralize("hour", parseInt(delta / 3600)) + ' ago';
      } else {
      return 'about ' + pluralize("day", parseInt(delta / 86400)) + ' ago';
      }
    }

    function build_url() {
      var proto = ('https:' == document.location.protocol ? 'https:' : 'http:');
      if (s.list) {
        return proto+"//api.twitter.com/1/"+s.username[0]+"/lists/"+s.list+"/statuses.json?per_page="+s.count+"&callback=?";
      } else if (s.query == null && s.username.length == 1) {
        return proto+'//api.twitter.com/1/statuses/user_timeline.json?screen_name='+s.username[0]+'&count='+s.count+'&callback=?';
      } else {
        var query = (s.query || 'from:'+s.username.join(' OR from:'));
        return proto+'//search.twitter.com/search.json?&q='+escape(query)+'&rpp='+s.count+'&callback=?';
      }
    }

    return this.each(function(i, widget){
      var list = $('<ul class="tweet_list">').appendTo(widget);
      var intro = '<p class="tweet_intro">'+s.intro_text+'</p>';
      var outro = '<p class="tweet_outro">'+s.outro_text+'</p>';
      var loading = $('<p class="loading">'+s.loading_text+'</p>');

      if(typeof(s.username) == "string"){
        s.username = [s.username];
      }

      if (s.loading_text) $(widget).append(loading);
      $.getJSON(build_url(), function(data){
        if (s.loading_text) loading.remove();
        if (s.intro_text) list.before(intro);
        var tweets = (data.results || data);
        $.each(tweets, function(i,item){
          // auto join text based on verb tense and content
          if (s.join_text == "auto") {
            if (item.text.match(/^(@([A-Za-z0-9-_]+)) .*/i)) {
              var join_text = s.auto_join_text_reply;
            } else if (item.text.match(/(^\w+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+) .*/i)) {
              var join_text = s.auto_join_text_url;
            } else if (item.text.match(/^((\w+ed)|just) .*/im)) {
              var join_text = s.auto_join_text_ed;
            } else if (item.text.match(/^(\w*ing) .*/i)) {
              var join_text = s.auto_join_text_ing;
            } else {
              var join_text = s.auto_join_text_default;
            }
          } else {
            var join_text = s.join_text;
          };

          var from_user = item.from_user || item.user.screen_name;
          var profile_image_url = item.profile_image_url || item.user.profile_image_url;
          var join_template = '<span class="tweet_join"> '+join_text+' </span>';
          var join = ((s.join_text) ? join_template : ' ');
          var avatar_template = '<a class="tweet_avatar" href="http://twitter.com/'+from_user+'"><img src="'+profile_image_url+'" height="'+s.avatar_size+'" width="'+s.avatar_size+'" alt="'+from_user+'\'s avatar" title="'+from_user+'\'s avatar" border="0"/></a>';
          var avatar = (s.avatar_size ? avatar_template : '');
          var date = '<span class="tweet_time"><a href="http://twitter.com/'+from_user+'/statuses/'+item.id+'" title="view tweet on twitter">'+relative_time(item.created_at)+'</a></span>';
          var text = '<span class="tweet_text">' +$([item.text]).linkUrl().linkUser().linkHash().makeHeart().capAwesome().capEpic()[0]+ '</span>';

          // until we create a template option, arrange the items below to alter a tweet's display.
          list.append('<li>' + avatar + date + join + text + '</li>');

          list.children('li:first').addClass('tweet_first');
          list.children('li:odd').addClass('tweet_even');
          list.children('li:even').addClass('tweet_odd');
        });
        if (s.outro_text) list.after(outro);
        $(widget).trigger("loaded").trigger((tweets.length == 0 ? "empty" : "full"));
      });

    });
  };
})(jQuery);

/*
 * jQuery BBQ: Back Button & Query Library - v1.2.1 - 2/17/2010
 * http://benalman.com/projects/jquery-bbq-plugin/
 * 
 * Copyright (c) 2010 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
(function($,p){var i,m=Array.prototype.slice,r=decodeURIComponent,a=$.param,c,l,v,b=$.bbq=$.bbq||{},q,u,j,e=$.event.special,d="hashchange",A="querystring",D="fragment",y="elemUrlAttr",g="location",k="href",t="src",x=/^.*\?|#.*$/g,w=/^.*\#/,h,C={};function E(F){return typeof F==="string"}function B(G){var F=m.call(arguments,1);return function(){return G.apply(this,F.concat(m.call(arguments)))}}function n(F){return F.replace(/^[^#]*#?(.*)$/,"$1")}function o(F){return F.replace(/(?:^[^?#]*\?([^#]*).*$)?.*/,"$1")}function f(H,M,F,I,G){var O,L,K,N,J;if(I!==i){K=F.match(H?/^([^#]*)\#?(.*)$/:/^([^#?]*)\??([^#]*)(#?.*)/);J=K[3]||"";if(G===2&&E(I)){L=I.replace(H?w:x,"")}else{N=l(K[2]);I=E(I)?l[H?D:A](I):I;L=G===2?I:G===1?$.extend({},I,N):$.extend({},N,I);L=a(L);if(H){L=L.replace(h,r)}}O=K[1]+(H?"#":L||!K[1]?"?":"")+L+J}else{O=M(F!==i?F:p[g][k])}return O}a[A]=B(f,0,o);a[D]=c=B(f,1,n);c.noEscape=function(G){G=G||"";var F=$.map(G.split(""),encodeURIComponent);h=new RegExp(F.join("|"),"g")};c.noEscape(",/");$.deparam=l=function(I,F){var H={},G={"true":!0,"false":!1,"null":null};$.each(I.replace(/\+/g," ").split("&"),function(L,Q){var K=Q.split("="),P=r(K[0]),J,O=H,M=0,R=P.split("]["),N=R.length-1;if(/\[/.test(R[0])&&/\]$/.test(R[N])){R[N]=R[N].replace(/\]$/,"");R=R.shift().split("[").concat(R);N=R.length-1}else{N=0}if(K.length===2){J=r(K[1]);if(F){J=J&&!isNaN(J)?+J:J==="undefined"?i:G[J]!==i?G[J]:J}if(N){for(;M<=N;M++){P=R[M]===""?O.length:R[M];O=O[P]=M<N?O[P]||(R[M+1]&&isNaN(R[M+1])?{}:[]):J}}else{if($.isArray(H[P])){H[P].push(J)}else{if(H[P]!==i){H[P]=[H[P],J]}else{H[P]=J}}}}else{if(P){H[P]=F?i:""}}});return H};function z(H,F,G){if(F===i||typeof F==="boolean"){G=F;F=a[H?D:A]()}else{F=E(F)?F.replace(H?w:x,""):F}return l(F,G)}l[A]=B(z,0);l[D]=v=B(z,1);$[y]||($[y]=function(F){return $.extend(C,F)})({a:k,base:k,iframe:t,img:t,input:t,form:"action",link:k,script:t});j=$[y];function s(I,G,H,F){if(!E(H)&&typeof H!=="object"){F=H;H=G;G=i}return this.each(function(){var L=$(this),J=G||j()[(this.nodeName||"").toLowerCase()]||"",K=J&&L.attr(J)||"";L.attr(J,a[I](K,H,F))})}$.fn[A]=B(s,A);$.fn[D]=B(s,D);b.pushState=q=function(I,F){if(E(I)&&/^#/.test(I)&&F===i){F=2}var H=I!==i,G=c(p[g][k],H?I:{},H?F:2);p[g][k]=G+(/#/.test(G)?"":"#")};b.getState=u=function(F,G){return F===i||typeof F==="boolean"?v(F):v(G)[F]};b.removeState=function(F){var G={};if(F!==i){G=u();$.each($.isArray(F)?F:arguments,function(I,H){delete G[H]})}q(G,2)};e[d]=$.extend(e[d],{add:function(F){var H;function G(J){var I=J[D]=c();J.getState=function(K,L){return K===i||typeof K==="boolean"?l(I,K):l(I,L)[K]};H.apply(this,arguments)}if($.isFunction(F)){H=F;return G}else{H=F.handler;F.handler=G}}})})(jQuery,this);
/*
 * jQuery hashchange event - v1.2 - 2/11/2010
 * http://benalman.com/projects/jquery-hashchange-plugin/
 * 
 * Copyright (c) 2010 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
(function($,i,b){var j,k=$.event.special,c="location",d="hashchange",l="href",f=$.browser,g=document.documentMode,h=f.msie&&(g===b||g<8),e="on"+d in i&&!h;function a(m){m=m||i[c][l];return m.replace(/^[^#]*#?(.*)$/,"$1")}$[d+"Delay"]=100;k[d]=$.extend(k[d],{setup:function(){if(e){return false}$(j.start)},teardown:function(){if(e){return false}$(j.stop)}});j=(function(){var m={},r,n,o,q;function p(){o=q=function(s){return s};if(h){n=$('<iframe src="javascript:0"/>').hide().insertAfter("body")[0].contentWindow;q=function(){return a(n.document[c][l])};o=function(u,s){if(u!==s){var t=n.document;t.open().close();t[c].hash="#"+u}};o(a())}}m.start=function(){if(r){return}var t=a();o||p();(function s(){var v=a(),u=q(t);if(v!==t){o(t=v,u);$(i).trigger(d)}else{if(u!==t){i[c][l]=i[c][l].replace(/#.*/,"")+"#"+u}}r=setTimeout(s,$[d+"Delay"])})()};m.stop=function(){if(!n){r&&clearTimeout(r);r=0}};return m})()})(jQuery,this);

/* Quicksand */

(function(a){a.fn.quicksand=function(y,r,t){var b={duration:750,easing:"swing",attribute:"data-id",adjustHeight:"auto",useScaling:true,enhancement:function(){},selector:"> *"};a.extend(b,r);if(a.browser.msie||typeof a.fn.scale=="undefined")b.useScaling=false;var o;if(typeof r=="function")o=r;else if(typeof(t=="function"))o=t;return this.each(function(k){var m,i=[],l=a(y).clone(),g=a(this);k=a(this).css("height");var p,u=false,v=a(g).offset(),s=[],n=a(this).find(b.selector);if(a.browser.msie&&a.browser.version.substr(0,
1)<7)g.html("").append(l);else{var w=0,z=function(){if(!w){g.html(j.html());typeof o=="function"&&o.call(this);u&&g.css("height",p);b.enhancement(g);w=1}},c=g.offsetParent(),e=c.offset();if(c.css("position")=="relative"){if(c.get(0).nodeName.toLowerCase()!="body"){e.top+=parseFloat(c.css("border-top-width"));e.left+=parseFloat(c.css("border-left-width"))}}else{e.top-=parseFloat(c.css("border-top-width"));e.left-=parseFloat(c.css("border-left-width"));e.top-=parseFloat(c.css("margin-top"));e.left-=
parseFloat(c.css("margin-left"))}g.css("height",a(this).height());n.each(function(f){s[f]=a(this).offset()});a(this).stop();n.each(function(f){a(this).stop();var h=a(this).get(0);h.style.position="absolute";h.style.margin="0";h.style.top=s[f].top-parseFloat(h.style.marginTop)-e.top+"px";h.style.left=s[f].left-parseFloat(h.style.marginLeft)-e.left+"px"});var j=a(g).clone();c=j.get(0);c.innerHTML="";c.setAttribute("id","");c.style.height="auto";c.style.width=g.width()+"px";j.append(l);j.insertBefore(g);
j.css("opacity",0);c.style.zIndex=-1;c.style.margin="0";c.style.position="absolute";c.style.top=v.top-e.top+"px";c.style.left=v.left-e.left+"px";if(b.adjustHeight==="dynamic")g.animate({height:j.height()},b.duration,b.easing);else if(b.adjustHeight==="auto"){p=j.height();if(parseFloat(k)<parseFloat(p))g.css("height",p);else u=true}n.each(function(){var f=[];if(typeof b.attribute=="function"){m=b.attribute(a(this));l.each(function(){if(b.attribute(this)==m){f=a(this);return false}})}else f=l.filter("["+
b.attribute+"="+a(this).attr(b.attribute)+"]");if(f.length)b.useScaling?i.push({element:a(this),animation:{top:f.offset().top-e.top,left:f.offset().left-e.left,opacity:1,scale:"1.0"}}):i.push({element:a(this),animation:{top:f.offset().top-e.top,left:f.offset().left-e.left,opacity:1}});else b.useScaling?i.push({element:a(this),animation:{opacity:"0.0",scale:"0.0"}}):i.push({element:a(this),animation:{opacity:"0.0"}})});l.each(function(){var f=[],h=[];if(typeof b.attribute=="function"){m=b.attribute(a(this));
n.each(function(){if(b.attribute(this)==m){f=a(this);return false}});l.each(function(){if(b.attribute(this)==m){h=a(this);return false}})}else{f=n.filter("["+b.attribute+"="+a(this).attr(b.attribute)+"]");h=l.filter("["+b.attribute+"="+a(this).attr(b.attribute)+"]")}var x;if(f.length===0){x=b.useScaling?{opacity:"1.0",scale:"1.0"}:{opacity:"1.0"};d=h.clone();var q=d.get(0);q.style.position="absolute";q.style.margin="0";q.style.top=h.offset().top-e.top+"px";q.style.left=h.offset().left-e.left+"px";
d.css("opacity",0);b.useScaling&&d.css("transform","scale(0.0)");d.appendTo(g);i.push({element:a(d),animation:x})}});j.remove();b.enhancement(g);for(k=0;k<i.length;k++)i[k].element.animate(i[k].animation,b.duration,b.easing,z)}})}})(jQuery);

/**
 * jCarouselLite - jQuery plugin to navigate images/any content in a carousel style widget.
 * @requires jQuery v1.2 or above
**/

(function($) {                                          // Compliant with jquery.noConflict()
$.fn.jCarouselLite = function(o) {
    o = $.extend({
        btnPrev: null,
        btnNext: null,
        btnGo: null,
        mouseWheel: false,
        auto: null,
        hoverPause: false,

        speed: 200,
        easing: null,

        vertical: false,
        circular: true,
        visible: 3,
        start: 0,
        scroll: 1,

        beforeStart: null,
        afterEnd: null
    }, o || {});

    return this.each(function() {                           // Returns the element collection. Chainable.

        var running = false, animCss=o.vertical?"top":"left", sizeCss=o.vertical?"height":"width";
        var div = $(this), ul = $("ul", div), tLi = $("li", ul), tl = tLi.size(), v = o.visible;

        if(o.circular) {
            ul.prepend(tLi.slice(tl-v+1).clone())
              .append(tLi.slice(0,o.scroll).clone());
            o.start += v-1;
        }

        var li = $("li", ul), itemLength = li.size(), curr = o.start;
        div.css("visibility", "visible");

        li.css({overflow: "hidden", float: o.vertical ? "none" : "left"});
        ul.css({margin: "0", padding: "0", position: "relative", "list-style-type": "none", "z-index": "1"});
        div.css({overflow: "hidden", position: "relative", "z-index": "2", left: "0px"});

        var liSize = o.vertical ? height(li) : width(li);   // Full li size(incl margin)-Used for animation
        var ulSize = liSize * itemLength;                   // size of full ul(total length, not just for the visible items)
        var divSize = liSize * v;                           // size of entire div(total length for just the visible items)

        li.css({width: li.width(), height: li.height()});
        ul.css(sizeCss, ulSize+"px").css(animCss, -(curr*liSize));

        div.css(sizeCss, divSize+"px");                     // Width of the DIV. length of visible images

        if(o.btnPrev) {
            $(o.btnPrev).click(function() {
                return go(curr-o.scroll);
            });
            if(o.hoverPause) {
                $(o.btnPrev).hover(function(){stopAuto();}, function(){startAuto();});
            }
        }


        if(o.btnNext) {
            $(o.btnNext).click(function() {
                return go(curr+o.scroll);
            });
            if(o.hoverPause) {
                $(o.btnNext).hover(function(){stopAuto();}, function(){startAuto();});
            }
        }

        if(o.btnGo)
            $.each(o.btnGo, function(i, val) {
                $(val).click(function() {
                    return go(o.circular ? o.visible+i : i);
                });
            });

        if(o.mouseWheel && div.mousewheel)
            div.mousewheel(function(e, d) {
                return d>0 ? go(curr-o.scroll) : go(curr+o.scroll);
            });

        var autoInterval;

        function startAuto() {
          stopAuto();
          autoInterval = setInterval(function() {
                  go(curr+o.scroll);
              }, o.auto+o.speed);
        };

        function stopAuto() {
            clearInterval(autoInterval);
        };

        if(o.auto) {
            if(o.hoverPause) {
                div.hover(function(){stopAuto();}, function(){startAuto();});
            }
            startAuto();
        };

        function vis() {
            return li.slice(curr).slice(0,v);
        };

        function go(to) {
            if(!running) {

                if(o.beforeStart)
                    o.beforeStart.call(this, vis());

                if(o.circular) {            // If circular we are in first or last, then goto the other end
                    if(to<0) {           // If before range, then go around
                        ul.css(animCss, -( (curr + tl) * liSize)+"px");
                        curr = to + tl;
                    } else if(to>itemLength-v) { // If beyond range, then come around
                        ul.css(animCss, -( (curr - tl) * liSize ) + "px" );
                        curr = to - tl;
                    } else curr = to;
                } else {                    // If non-circular and to points to first or last, we just return.
                    if(to<0 || to>itemLength-v) return;
                    else curr = to;
                }                           // If neither overrides it, the curr will still be "to" and we can proceed.

                running = true;

                ul.animate(
                    animCss == "left" ? { left: -(curr*liSize) } : { top: -(curr*liSize) } , o.speed, o.easing,
                    function() {
                        if(o.afterEnd)
                            o.afterEnd.call(this, vis());
                        running = false;
                    }
                );
                // Disable buttons when the carousel reaches the last/first, and enable when not
                if(!o.circular) {
                    $(o.btnPrev + "," + o.btnNext).removeClass("disabled");
                    $( (curr-o.scroll<0 && o.btnPrev)
                        ||
                       (curr+o.scroll > itemLength-v && o.btnNext)
                        ||
                       []
                     ).addClass("disabled");
                }

            }
            return false;
        };
    });
};

function css(el, prop) {
    return parseInt($.css(el[0], prop)) || 0;
};
function width(el) {
    return  el[0].offsetWidth + css(el, 'marginLeft') + css(el, 'marginRight');
};
function height(el) {
    return el[0].offsetHeight + css(el, 'marginTop') + css(el, 'marginBottom');
};

})(jQuery);


(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery)

/* Page Load Code */
	
$(function(){

  var cache = {
    '': $('.default')
  };
  
  $(window).bind( 'hashchange', function(e) {
    
    var url = $.param.fragment();

    $( 'a.current' ).removeClass( 'current' );
    
    $( '.content' ).children( ':visible' ).fadeOut(300);
    
    url && $( 'a[href="#' + url + '"]' ).addClass( 'current' );
    
    if ( cache[ url ] ) {
      cache[ url ].show();
      
    } else {
	  $('.content').hide();
      $( '.loading' ).fadeIn(300);
	  
      cache[ url ] = $( '<div class="item"/>' )
        .appendTo( '.content' )

        .load( url, function(){
          $( '.loading' ).fadeOut(300);
        });
	  $('.content').fadeIn(1000);
    }
  })
  
  $(window).trigger( 'hashchange' );
  
});

$(document).ready(function(){

if(window.location.hash) {
  document.getElementById('content-container').style.display = 'none';
} else {
  document.getElementById('content-container').style.display = 'block';
}

});

$(document).ready(function(){

	$("#menu li a").click(function () { 
		$("#content-container").fadeOut(600);
	});
	
	$("#cover-container").click(function () { 
		$("#cover-container").fadeOut(600);
		$("#player-container").fadeIn(600);
	});
	
	$("#mentions-sort").click(function () { 
		$("#twitter").hide();
		$("#mentions").fadeIn(600);
	});
	
	$("#kirksort").click(function () { 
		$("#mentions").hide();
		$("#twitter").fadeIn(600);
	});
	
});

$(document).ready(function() { 
	Cufon.replace('#top-menu li, .youtube-icon, .cart-icon, .media-icon, h2, #menu li, #social-feeds-container ul.tabs li', {
		textShadow: '0px 1px #000000',
		color: '#FFFFFF',
		hover: {
			color: '#FFF58F'
		}
		});
});

// Tabs

$(document).ready(function() {

	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {

		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content

		var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active ID content
		return false;
	});

});

// Start Player

$(document).ready(function(){

	var playItem = 0;

	var myPlayList = [
		{name:"Giving Up",mp3:"music/01.mp3",ogg:"music/01.ogg"},
		{name:"Someday We'll All Be Free",mp3:"music/02.mp3",ogg:"music/02.ogg"},
		{name:"We're Still Friends",mp3:"music/03.mp3",ogg:"music/03.ogg"},
		{name:"Love, Love, Love",mp3:"music/04.mp3",ogg:"music/04.ogg"},
		{name:"A Song For You",mp3:"music/05.mp3",ogg:"music/05.ogg"},
		{name:"Valdez In The Country",mp3:"music/06.mp3",ogg:"music/06.ogg"},
		{name:"Je Vous Aime",mp3:"music/07.mp3",ogg:"music/07.ogg"},
		{name:"You Had To Know",mp3:"music/08.mp3",ogg:"music/08.ogg"},
		{name:"Tryin' Times",mp3:"music/09.mp3",ogg:"music/09.ogg"},
		{name:"We Need You Right Now",mp3:"music/10.mp3",ogg:"music/10.ogg"},
		{name:"Voices Inside / Everything is Everything",mp3:"music/11.mp3",ogg:"music/11.ogg"}
	];

	// Local copy of jQuery selectors, for performance.
	var jpPlayTime = $("#jplayer_play_time");
	var jpTotalTime = $("#jplayer_total_time");

	$("#jquery_jplayer").jPlayer({
		ready: function() {
			displayPlayList();
			playListInit(false); // Parameter is a boolean for autoplay.
		},
		oggSupport: true
	})
	.jPlayer("onProgressChange", function(loadPercent, playedPercentRelative, playedPercentAbsolute, playedTime, totalTime) {
		jpPlayTime.text($.jPlayer.convertTime(playedTime));
		jpTotalTime.text($.jPlayer.convertTime(totalTime));
	})
	.jPlayer("onSoundComplete", function() {
		playListNext();
	});

	$("#jplayer_previous").click( function() {
		playListPrev();
		$(this).blur();
		return false;
	});

	$("#jplayer_next").click( function() {
		playListNext();
		$(this).blur();
		return false;
	});

	function displayPlayList() {
		$("#jplayer_playlist ul").empty();
		for (i=0; i < myPlayList.length; i++) {
			var listItem = (i == myPlayList.length-1) ? "<li class='jplayer_playlist_item_last'>" : "<li>";
			listItem += "<a href='#' id='jplayer_playlist_item_"+i+"' tabindex='1'>"+ myPlayList[i].name +"</a></li>";
			$("#jplayer_playlist ul").append(listItem);
			$("#jplayer_playlist_item_"+i).data( "index", i ).click( function() {
				var index = $(this).data("index");
				if (playItem != index) {
					playListChange( index );
				} else {
					$("#jquery_jplayer").jPlayer("play");
				}
				$(this).blur();
				return false;
			});
		}
	}

	function playListInit(autoplay) {
		if(autoplay) {
			playListChange( playItem );
		} else {
			playListConfig( playItem );
		}
	}

	function playListConfig( index ) {
		$("#jplayer_playlist_item_"+playItem).removeClass("jplayer_playlist_current").parent().removeClass("jplayer_playlist_current");
		$("#jplayer_playlist_item_"+index).addClass("jplayer_playlist_current").parent().addClass("jplayer_playlist_current");
		playItem = index;
		$("#jquery_jplayer").jPlayer("setFile", myPlayList[playItem].mp3, myPlayList[playItem].ogg);
	}

	function playListChange( index ) {
		playListConfig( index );
		$("#jquery_jplayer").jPlayer("play");
	}

	function playListNext() {
		var index = (playItem+1 < myPlayList.length) ? playItem+1 : 0;
		playListChange( index );
	}

	function playListPrev() {
		var index = (playItem-1 >= 0) ? playItem-1 : myPlayList.length-1;
		playListChange( index );
	}
});

// End Player

function updateHTML(elmId, value) {
  document.getElementById(elmId).innerHTML = value;
}

function onPlayerError(errorCode) {
  alert("An error occured of type:" + errorCode);
}

function onPlayerStateChange(newState) {
  if(newState == 0) {
  playVideo();
  }
}

function updatePlayerInfo() {
  if(ytplayer && ytplayer.getDuration) {
  	/*
    updateHTML("videoDuration", ytplayer.getDuration());
    updateHTML("videoCurrentTime", ytplayer.getCurrentTime());
    updateHTML("bytesTotal", ytplayer.getVideoBytesTotal());
    updateHTML("startBytes", ytplayer.getVideoStartBytes());
    updateHTML("bytesLoaded", ytplayer.getVideoBytesLoaded());
    updateHTML("volume", ytplayer.getVolume());
	*/
  }
}

function setVideoVolume() {
  var volume = parseInt(document.getElementById("volumeSetting").value);
  if(isNaN(volume) || volume < 0 || volume > 100) {
    alert("Please enter a valid volume between 0 and 100.");
  }
  else if(ytplayer){
    ytplayer.setVolume(volume);
  }
}

function playVideo() {
  if (ytplayer) {
    ytplayer.playVideo();
  }
}

function pauseVideo() {
  if (ytplayer) {
    ytplayer.pauseVideo();
  }
}

function muteVideo() {
  if(ytplayer) {
    ytplayer.mute();
  }
}

function unMuteVideo() {
  if(ytplayer) {
    ytplayer.unMute();
  }
}


//function onYouTubePlayerReady(playerId) {
//  ytplayer = document.getElementById("ytPlayer");
//
//  setInterval(updatePlayerInfo, 250);
//  updatePlayerInfo();
//  ytplayer.addEventListener("onStateChange", "onPlayerStateChange");
//  ytplayer.addEventListener("onError", "onPlayerError");
//
//  ytplayer.loadVideoById("yLflZvLkr2E");
//  muteVideo();
//}
//
//function loadPlayer() {
//        var params = { allowScriptAccess: "always", wmode : "transparent" };
//        var atts = { id: "ytPlayer" };
//        swfobject.embedSWF("http://www.youtube.com/apiplayer?" +
//                           "&enablejsapi=1&playerapiid=player1",
//                           "videoDiv", getWidth(), getHeight(), "8", null, null, params, atts);
//      }
//
//function _run() {
//console.log('Ran');
//  loadPlayer();
//}
//google.setOnLoadCallback(_run);

function getWidth() {
  var myWidth = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
  }
  return myWidth;
}

function getHeight() {
  var myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
	myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
	myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
	myHeight = document.body.clientHeight;
  }
  return myHeight = myHeight;
}

$(document).ready(function(){

	 $("#mentions").tweet({
            query: "kirkwhalum",
            join_text: "auto",
            avatar_size: 32,
            count: 2,
			auto_join_text_default: "",
            auto_join_text_ed: "",
            auto_join_text_ing: "",
            auto_join_text_reply: "",
            auto_join_text_url: "",
            loading_text: "loading tweets..."
    });
	
	$(".popup").fancybox({
		'overlayShow' : false,
		'speedIn' : 600,
		'speedOut': 600
	});
	
	$(".tour-ticker").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 2,
		auto:2000,
		speed:1000
	});
	
	 $('.slideshow').cycle({
		pager: 	'#slideshow-nav',
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout:  9000
	});
	
	$(window).resize(function() {
		$('#ytPlayer').width(getWidth() + 'px');
		$('#ytPlayer').height(getHeight() + 'px');
	});
	
	$('#fullscreen').click(function() {
		if($(this).hasClass('active')) {
			$(this).removeClass('active');
			$('#ytPlayer').removeClass('active');
		}
		else {
			$(this).addClass('active');
			$('#ytPlayer').addClass('active');
		}
	});
	
	$('#mute').click(function() {
		if($(this).hasClass('active')) {
			$(this).removeClass('active');
			unMuteVideo();
		}
		else {
			$(this).addClass('active');
			muteVideo();
		}
	});
});

$('html').addClass('js-on');
