/*
 * jQuery JavaScript Library v1.4.1
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Mon Jan 25 19:43:33 2010 -0500
 */
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context);},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=buildFragment([match[1]],[doc]);selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes;}}else{elem=document.getElementById(match[2]);if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector);}
this.length=1;this[0]=elem;}
this.context=document;this.selector=selector;return this;}}else if(!context&&/^\w+$/.test(selector)){this.selector=selector;this.context=document;selector=document.getElementsByTagName(selector);}else if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return jQuery(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.isArray(selector)?this.setArray(selector):jQuery.makeArray(selector,this);},selector:"",jquery:"1.4.1",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num]);},pushStack:function(elems,name,selector){var ret=jQuery(elems||null);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else if(name){ret.selector=this.selector+"."+name+"("+selector+")";}
return ret;},setArray:function(elems){this.length=0;push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();if(jQuery.isReady){fn.call(document,jQuery);}else if(readyList){readyList.push(fn);}
return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||jQuery(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target)){target={};}
if(length===i){target=this;--i;}
for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue;}
if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery;}
return jQuery;},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13);}
jQuery.isReady=true;if(readyList){var fn,i=0;while((fn=readyList[i++])){fn.call(document,jQuery);}
readyList=null;}
if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready");}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return jQuery.ready();}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}
if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false;}
if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwnProperty.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
if(/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))();}else{jQuery.error("Invalid JSON: "+data);}},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval){script.appendChild(document.createTextNode(data));}else{script.text=data;}
head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()===name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length,isObj=length===undefined||jQuery.isFunction(object);if(args){if(isObj){for(name in object){if(callback.apply(object[name],args)===false){break;}}}else{for(;i<length;){if(callback.apply(object[i++],args)===false){break;}}}}else{if(isObj){for(name in object){if(callback.call(object[name],name,object[name])===false){break;}}}else{for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}}
return object;},trim:function(text){return(text||"").replace(rtrim,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){if(array.length==null||typeof array==="string"||jQuery.isFunction(array)||(typeof array!=="function"&&array.setInterval)){push.call(ret,array);}else{jQuery.merge(ret,array);}}
return ret;},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem);}
for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i;}}
return-1;},merge:function(first,second){var i=first.length,j=0;if(typeof second.length==="number"){for(var l=second.length;j<l;j++){first[i++]=second[j];}}else{while(second[j]!==undefined){first[i++]=second[j++];}}
first.length=i;return first;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++){if(!inv!==!callback(elems[i],i)){ret.push(elems[i]);}}
return ret;},map:function(elems,callback,arg){var ret=[],value;for(var i=0,length=elems.length;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}
return ret.concat.apply([],ret);},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;fn=thisObject[proxy];proxy=undefined;}else if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;proxy=undefined;}}
if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments);};}
if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;}
return proxy;},uaMatch:function(ua){ua=ua.toLowerCase();var match=/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||!/compatible/.test(ua)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},browser:{}});browserMatch=jQuery.uaMatch(userAgent);if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;jQuery.browser.version=browserMatch.version;}
if(jQuery.browser.webkit){jQuery.browser.safari=true;}
if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem);};}
rootjQuery=jQuery(document);if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready();}};}
function doScrollCheck(){if(jQuery.isReady){return;}
try{document.documentElement.doScroll("left");}catch(error){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"});}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}
function access(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):null;}
function now(){return(new Date).getTime();}
(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();div.style.display="none";div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}
div=document.createElement("div");div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';div=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;var isSupported=(eventName in el);if(!isSupported){el.setAttribute(eventName,"return;");isSupported=typeof el[eventName]==="function";}
el=null;return isSupported;};jQuery.support.submitBubbles=eventSupported("submit");jQuery.support.changeBubbles=eventSupported("change");root=script=div=all=a=null;})();jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var expando="jQuery"+now(),uuid=0,windowData={};var emptyObject={};jQuery.extend({cache:{},expando:expando,noData:{"embed":true,"object":true,"applet":true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache;if(!name&&!id){return null;}
if(!id){id=++uuid;}
if(typeof name==="object"){elem[expando]=id;thisCache=cache[id]=jQuery.extend(true,{},name);}else if(cache[id]){thisCache=cache[id];}else if(typeof data==="undefined"){thisCache=emptyObject;}else{thisCache=cache[id]={};}
if(data!==undefined){elem[expando]=id;thisCache[name]=data;}
return typeof name==="string"?thisCache[name]:thisCache;},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];if(name){if(thisCache){delete thisCache[name];if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem);}}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute){elem.removeAttribute(expando);}}
delete cache[id];}}});jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0]);}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});jQuery.extend({queue:function(elem,type,data){if(!elem){return;}
type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!data){return q||[];}
if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data));}else{q.push(data);}
return q;},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift();if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
fn.call(elem,function(){jQuery.dequeue(elem,type);});}}});jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined){return jQuery.queue(this[0],type);}
return this.each(function(i,elem){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);}});var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr);},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");if(this.nodeType===1){this.removeAttribute(name);}});},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.addClass(value.call(this,i,self.attr("class")));});}
if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ";for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){elem.className+=" "+classNames[c];}}}}}}
return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}
if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=className.substring(1,className.length-1);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className);}
this.className=this.className||value===false?"":jQuery.data(this,"__className__")||"";}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text;}
if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}
for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
return values;}
if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value;}
return(elem.value||"").replace(rreturn,"");}
return undefined;}
var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val=value;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}
if(typeof val==="number"){val+="";}
if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0;}else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){this.selectedIndex=-1;}}else{this.value=val;}});}});jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.nodeType===1){var special=rspecialurl.test(name);if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}
if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}
elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue;}
if(name==="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value;}
return elem.style.cssText;}
if(set){elem.setAttribute(name,""+value);}
var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
return jQuery.style(elem,name,value);}});var fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch;});};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window;}
if(!handler.guid){handler.guid=jQuery.guid++;}
if(data!==undefined){var fn=handler;handler=jQuery.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle"),eventHandle;if(!handle){eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};handle=jQuery.data(elem,"handle",eventHandle);}
if(!handle){return;}
handle.elem=elem;types=types.split(/\s+/);var type,i=0;while((type=types[i++])){var namespaces=type.split(".");type=namespaces.shift();if(i>1){handler=jQuery.proxy(handler);if(data!==undefined){handler.data=data;}}
handler.type=namespaces.slice(0).sort().join(".");var handlers=events[type],special=this.special[type]||{};if(!handlers){handlers=events[type]={};if(!special.setup||special.setup.call(elem,data,namespaces,handler)===false){if(elem.addEventListener){elem.addEventListener(type,handle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,handle);}}}
if(special.add){var modifiedHandler=special.add.call(elem,handler,data,namespaces,handlers);if(modifiedHandler&&jQuery.isFunction(modifiedHandler)){modifiedHandler.guid=modifiedHandler.guid||handler.guid;modifiedHandler.data=modifiedHandler.data||handler.data;modifiedHandler.type=modifiedHandler.type||handler.type;handler=modifiedHandler;}}
handlers[handler.guid]=handler;this.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler){if(elem.nodeType===3||elem.nodeType===8){return;}
var events=jQuery.data(elem,"events"),ret,type,fn;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)===".")){for(type in events){this.remove(elem,type+(types||""));}}else{if(types.type){handler=types.handler;types=types.type;}
types=types.split(/\s+/);var i=0;while((type=types[i++])){var namespaces=type.split(".");type=namespaces.shift();var all=!namespaces.length,cleaned=jQuery.map(namespaces.slice(0).sort(),fcleanup),namespace=new RegExp("(^|\\.)"+cleaned.join("\\.(?:.*\\.)?")+"(\\.|$)"),special=this.special[type]||{};if(events[type]){if(handler){fn=events[type][handler.guid];delete events[type][handler.guid];}else{for(var handle in events[type]){if(all||namespace.test(events[type][handle].type)){delete events[type][handle];}}}
if(special.remove){special.remove.call(elem,namespaces,fn);}
for(ret in events[type]){break;}
if(!ret){if(!special.teardown||special.teardown.call(elem,namespaces)===false){if(elem.removeEventListener){elem.removeEventListener(type,jQuery.data(elem,"handle"),false);}else if(elem.detachEvent){elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}}
ret=null;delete events[type];}}}}
for(ret in events){break;}
if(!ret){var handle=jQuery.data(elem,"handle");if(handle){handle.elem=null;}
jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem);}});}}
if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle){handle.apply(elem,data);}
var parent=elem.parentNode||elem.ownerDocument;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false;}}}catch(e){}
if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else if(!event.isDefaultPrevented()){var target=event.target,old,isClick=jQuery.nodeName(target,"a")&&type==="click";if(!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];if(old){target["on"+type]=null;}
this.triggered=true;target[type]();}}catch(e){}
if(old){target["on"+type]=old;}
this.triggered=false;}}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped()){break;}}}
return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event;}
var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target){event.target=event.srcElement||document;}
if(event.target.nodeType===3){event.target=event.target.parentNode;}
if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement;}
if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode;}
if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey;}
if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(proxy,data,namespaces,live){jQuery.extend(proxy,data||{});proxy.guid+=data.selector+data.live;data.liveProxy=proxy;jQuery.event.add(this,data.live,liveHandler,data);},remove:function(namespaces){if(namespaces.length){var remove=0,name=new RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type)){remove++;}});if(remove<1){jQuery.event.remove(this,namespaces[0],liveHandler);}}},special:{}},beforeunload:{setup:function(data,namespaces,fn){if(this.setInterval){this.onbeforeunload=fn;}
return false;},teardown:function(namespaces,fn){if(this.onbeforeunload===fn){this.onbeforeunload=null;}}}}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;}else{this.type=src;}
this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.preventDefault){e.preventDefault();}
e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.stopPropagation){e.stopPropagation();}
e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!==this){try{parent=parent.parentNode;}catch(e){break;}}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces,fn){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit."+fn.guid,function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit."+fn.guid,function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments);}});}else{return false;}},remove:function(namespaces,fn){jQuery.event.remove(this,"click.specialSubmit"+(fn?"."+fn.guid:""));jQuery.event.remove(this,"keypress.specialSubmit"+(fn?"."+fn.guid:""));}};}
if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i;function getVal(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}
return val;}
function testChange(e){var elem=e.target,data,val;if(!formElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery.data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val);}
if(data===undefined||val===data){return;}
if(data!=null||val){e.type="change";return jQuery.event.trigger(e,arguments[1],elem);}}
jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;if(elem.nodeName.toLowerCase()==="input"&&elem.type==="radio"){jQuery.data(elem,"_change_data",getVal(elem));}}},setup:function(data,namespaces,fn){for(var type in changeFilters){jQuery.event.add(this,type+".specialChange."+fn.guid,changeFilters[type]);}
return formElems.test(this.nodeName);},remove:function(namespaces,fn){for(var type in changeFilters){jQuery.event.remove(this,type+".specialChange"+(fn?"."+fn.guid:""),changeFilters[type]);}
return formElems.test(this.nodeName);}};var changeFilters=jQuery.event.special.change.filters;}
function trigger(type,elem,args){args[0].type=type;return jQuery.event.handle.apply(elem,args);}
if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true);},teardown:function(){this.removeEventListener(orig,handler,true);}};function handler(e){e=jQuery.event.fix(e);e.type=fix;return jQuery.event.handle.call(this,e);}});}
jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}
return this;}
if(jQuery.isFunction(data)){fn=data;data=undefined;}
var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;return type==="unload"&&name!=="one"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,handler,data);});};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}
return this;}
return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.proxy(fn,args[i++]);}
return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn){var type,i=0;if(jQuery.isFunction(data)){fn=data;data=undefined;}
types=(types||"").split(/\s+/);while((type=types[i++])!=null){type=type==="focus"?"focusin":type==="blur"?"focusout":type==="hover"?types.push("mouseleave")&&"mouseenter":type;if(name==="live"){jQuery(this.context).bind(liveConvert(type,this.selector),{data:data,selector:this.selector,live:type},fn);}else{jQuery(this.context).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);}}
return this;}});function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,fn,elem,j,i,l,data,live=jQuery.extend({},jQuery.data(this,"events").live);if(event.button&&event.type==="click"){return;}
for(j in live){fn=live[j];if(fn.live===event.type||fn.altLive&&jQuery.inArray(event.type,fn.altLive)>-1){data=fn.data;if(!(data.beforeFilter&&data.beforeFilter[event.type]&&!data.beforeFilter[event.type](event))){selectors.push(fn.selector);}}else{delete live[j];}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){for(j in live){fn=live[j];elem=match[i].elem;related=null;if(match[i].selector===fn.selector){if(fn.live==="mouseenter"||fn.live==="mouseleave"){related=jQuery(event.relatedTarget).closest(fn.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,fn:fn});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];event.currentTarget=match.elem;event.data=match.fn.data;if(match.fn.apply(match.elem,args)===false){stop=false;break;}}
return stop;}
function liveConvert(type,selector){return"live."+(type?type+".":"")+selector.replace(/\./g,"`").replace(/ /g,"&");}
jQuery.each(("blur focus focusin focusout load resize scroll unload click dblclick "+"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave "+"change select submit keydown keypress keyup error").split(" "),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});if(window.attachEvent&&!window.addEventListener){window.attachEvent("onunload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem);}catch(e){}}}});}
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift();}
set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){Sizzle.error(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var filter=Expr.filter[type],found,item,left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}
if(curLoop===result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr===old){if(anyFound==null){Sizzle.error(expr);}else{break;}}
old=expr;}
return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){return match[1].toLowerCase();},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0===i;},eq:function(elem,i,match){return match[3]-0===i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}else{Sizzle.error("Syntax error, unrecognized expression: "+name);}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while((node=node.previousSibling)){if(node.nodeType===1){return false;}}
if(type==="first"){return true;}
node=elem;case'last':while((node=node.nextSibling)){if(node.nodeType===1){return false;}}
return true;case'nth':var first=match[2],last=match[3];if(first===1&&last===0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1);}));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return a.compareDocumentPosition?-1:1;}
var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return a.sourceIndex?-1:1;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return a.ownerDocument?-1:1;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=getText(elem.childNodes);}}
return ret;}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}
div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}
Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.getText=getText;jQuery.isXMLDoc=isXML;jQuery.contains=contains;return;window.Sizzle=Sizzle;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return!!qualifier.call(elem,i,elem)===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}
return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});};jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;for(var i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(var n=length;n<ret.length;n++){for(var r=0;r<length;r++){if(ret[r]===ret[n]){ret.splice(n--,1);break;}}}}}
return ret;},has:function(target){var targets=jQuery(target);return this.filter(function(){for(var i=0,l=targets.length;i<l;i++){if(jQuery.contains(this,targets[i])){return true;}}});},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector);},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector);},is:function(selector){return!!selector&&jQuery.filter(selector,this).length>0;},closest:function(selectors,context){if(jQuery.isArray(selectors)){var ret=[],cur=this[0],match,matches={},selector;if(cur&&selectors.length){for(var i=0,l=selectors.length;i<l;i++){selector=selectors[i];if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector;}}
while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur});delete matches[selector];}}
cur=cur.parentNode;}}
return ret;}
var pos=jQuery.expr.match.POS.test(selectors)?jQuery(selectors,context||this.context):null;return this.map(function(i,cur){while(cur&&cur.ownerDocument&&cur!==context){if(pos?pos.index(cur)>-1:jQuery(cur).is(selectors)){return cur;}
cur=cur.parentNode;}
return null;});},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children());}
return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context||this.context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all));},andSelf:function(){return this.add(this.prevObject);}});function isDisconnected(node){return!node||!node.parentNode||node.parentNode.nodeType===11;}
jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null;},parents:function(elem){return jQuery.dir(elem,"parentNode");},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until);},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until);},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until);},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(until,selector){var ret=jQuery.map(this,fn,until);if(!runtil.test(name)){selector=until;}
if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}
ret=this.length>1?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}
return this.pushStack(ret,name,slice.call(arguments).join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}
return jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur);}
cur=cur[dir];}
return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType===1&&++num===result){break;}}
return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n);}}
return r;}});var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/(<([\w:]+)[^>]*?)\/>/g,rselfClosing=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&\w+;/,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,fcloseTag=function(all,front,tag){return rselfClosing.test(tag)?all:front+"></"+tag+">";},wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}
jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.getText(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}
return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;if(!html){var div=ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(rinlinejQuery,"").replace(rleadingWhitespace,"")],ownerDocument)[0];}else{return this.cloneNode(true);}});if(events===true){cloneCopyEvent(this,ret);cloneCopyEvent(this.find("*"),ret.find("*"));}
return ret;},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!/<script/i.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,fcloseTag);try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();self.empty().append(function(){return value.call(this,i,old);});});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(!jQuery.isFunction(value)){value=jQuery(value).detach();}else{return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value);}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[];if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}
if(this[0]){if(args[0]&&args[0].parentNode&&args[0].parentNode.nodeType===11){results={fragment:args[0].parentNode};}else{results=buildFragment(args,this,scripts);}
first=results.fragment.firstChild;if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||this.length>1||i>0?results.fragment.cloneNode(true):results.fragment);}}
if(scripts){jQuery.each(scripts,evalScript);}}
return this;function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}});function cloneCopyEvent(orig,ret){var i=0;ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return;}
var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;if(events){delete curData.handle;curData.events={};for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}}});}
function buildFragment(args,nodes,scripts){var fragment,cacheable,cacheresults,doc;if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&args[0].indexOf("<option")<0&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}
if(!fragment){doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};}
jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);};});jQuery.each({remove:function(selector,keepData){if(!selector||jQuery.filter(selector,[this]).length){if(!keepData&&this.nodeType===1){jQuery.cleanData(this.getElementsByTagName("*"));jQuery.cleanData([this]);}
if(this.parentNode){this.parentNode.removeChild(this);}}},empty:function(){if(this.nodeType===1){jQuery.cleanData(this.getElementsByTagName("*"));}
while(this.firstChild){this.removeChild(this.firstChild);}}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[];jQuery.each(elems,function(i,elem){if(typeof elem==="number"){elem+="";}
if(!elem){return;}
if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}
if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}});if(fragment){for(var i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));}
fragment.appendChild(ret[i]);}}}
return ret;},cleanData:function(elems){for(var i=0,elem,id;(elem=elems[i])!=null;i++){jQuery.event.remove(elem);jQuery.removeData(elem);}}});var rexclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,ralpha=/alpha\([^)]*\)/,ropacity=/opacity=([^)]*)/,rfloat=/float/i,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z])/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle,styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat",fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){return access(this,name,value,true,function(elem,name,value){if(value===undefined){return jQuery.curCSS(elem,name);}
if(typeof value==="number"&&!rexclude.test(name)){value+="px";}
jQuery.style(elem,name,value);});};jQuery.extend({style:function(elem,name,value){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if((name==="width"||name==="height")&&parseFloat(value)<0){value=undefined;}
var style=elem.style||elem,set=value!==undefined;if(!jQuery.support.opacity&&name==="opacity"){if(set){style.zoom=1;var opacity=parseInt(value,10)+""==="NaN"?"":"alpha(opacity="+value*100+")";var filter=style.filter||jQuery.curCSS(elem,"filter")||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):opacity;}
return style.filter&&style.filter.indexOf("opacity=")>=0?(parseFloat(ropacity.exec(style.filter)[1])/100)+"":"";}
if(rfloat.test(name)){name=styleFloat;}
name=name.replace(rdashAlpha,fcamelCase);if(set){style[name]=value;}
return style[name];},css:function(elem,name,force,extra){if(name==="width"||name==="height"){var val,props=cssShow,which=name==="width"?cssWidth:cssHeight;function getWH(){val=name==="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return;}
jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;}else{val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;}});}
if(elem.offsetWidth!==0){getWH();}else{jQuery.swap(elem,props,getWH);}
return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style,filter;if(!jQuery.support.opacity&&name==="opacity"&&elem.currentStyle){ret=ropacity.test(elem.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret;}
if(rfloat.test(name)){name=styleFloat;}
if(!force&&style&&style[name]){ret=style[name];}else if(getComputedStyle){if(rfloat.test(name)){name="float";}
name=name.replace(rupper,"-$1").toLowerCase();var defaultView=elem.ownerDocument.defaultView;if(!defaultView){return null;}
var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle){ret=computedStyle.getPropertyValue(name);}
if(name==="opacity"&&ret===""){ret="1";}}else if(elem.currentStyle){var camelCase=name.replace(rdashAlpha,fcamelCase);ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!rnumpx.test(ret)&&rnum.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=camelCase==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options){elem.style[name]=old[name];}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight,skip=elem.nodeName.toLowerCase()==="tr";return width===0&&height===0&&!skip?true:width>0&&height>0&&!skip?false:jQuery.curCSS(elem,"display")==="none";};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var jsc=now(),rscript=/<script(.|\s)*?\/script>/gi,rselectTextarea=/select|textarea/i,rinput=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,jsre=/=\?(&|$)/,rquery=/\?/,rts=/(\?|&)_=.*?(&|$)/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g;jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string"){return this._load(url);}else if(!this.length){return this;}
var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);type="POST";}}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status==="success"||status==="notmodified"){self.html(selector?jQuery("<div />").append(res.responseText.replace(rscript,"")).find(selector):res.responseText);}
if(callback){self.each(callback,[res.responseText,status,res]);}}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=null;}
return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:window.XMLHttpRequest&&(window.location.protocol!=="file:"||!window.ActiveXObject)?function(){return new window.XMLHttpRequest();}:function(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings);var jsonp,status,data,callbackContext=origSettings&&origSettings.context||s,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
if(s.dataType==="jsonp"){if(type==="GET"){if(!jsre.test(s.url)){s.url+=(rquery.test(s.url)?"&":"?")+(s.jsonp||"callback")+"=?";}}else if(!s.data||!jsre.test(s.data)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";}
s.dataType="json";}
if(s.dataType==="json"&&(s.data&&jsre.test(s.data)||jsre.test(s.url))){jsonp=s.jsonpCallback||("jsonp"+jsc++);if(s.data){s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");}
s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=window[jsonp]||function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}
if(head){head.removeChild(script);}};}
if(s.dataType==="script"&&s.cache===null){s.cache=false;}
if(s.cache===false&&type==="GET"){var ts=now();var ret=s.url.replace(rts,"$1_="+ts+"$2");s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}
if(s.data&&type==="GET"){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart");}
var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1]!==location.protocol||parts[2]!==location.host);if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;var script=document.createElement("script");script.src=s.url;if(s.scriptCharset){script.charset=s.scriptCharset;}
if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}}};}
head.insertBefore(script,head.firstChild);return undefined;}
var requestDone=false;var xhr=s.xhr();if(!xhr){return;}
if(s.username){xhr.open(type,s.url,s.async,s.username,s.password);}else{xhr.open(type,s.url,s.async);}
try{if(s.data||origSettings&&origSettings.contentType){xhr.setRequestHeader("Content-Type",s.contentType);}
if(s.ifModified){if(jQuery.lastModified[s.url]){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]);}
if(jQuery.etag[s.url]){xhr.setRequestHeader("If-None-Match",jQuery.etag[s.url]);}}
if(!remote){xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");}
xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}
if(s.beforeSend&&s.beforeSend.call(callbackContext,xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}
xhr.abort();return false;}
if(s.global){trigger("ajaxSend",[xhr,s]);}
var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){complete();}
requestDone=true;if(xhr){xhr.onreadystatechange=jQuery.noop;}}else if(!requestDone&&xhr&&(xhr.readyState===4||isTimeout==="timeout")){requestDone=true;xhr.onreadystatechange=jQuery.noop;status=isTimeout==="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";var errMsg;if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(err){status="parsererror";errMsg=err;}}
if(status==="success"||status==="notmodified"){if(!jsonp){success();}}else{jQuery.handleError(s,xhr,status,errMsg);}
complete();if(isTimeout==="timeout"){xhr.abort();}
if(s.async){xhr=null;}}};try{var oldAbort=xhr.abort;xhr.abort=function(){if(xhr){oldAbort.call(xhr);}
onreadystatechange("abort");};}catch(e){}
if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout");}},s.timeout);}
try{xhr.send(type==="POST"||type==="PUT"||type==="DELETE"?s.data:null);}catch(e){jQuery.handleError(s,xhr,null,e);complete();}
if(!s.async){onreadystatechange();}
function success(){if(s.success){s.success.call(callbackContext,data,status,xhr);}
if(s.global){trigger("ajaxSuccess",[xhr,s]);}}
function complete(){if(s.complete){s.complete.call(callbackContext,xhr,status);}
if(s.global){trigger("ajaxComplete",[xhr,s]);}
if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}}
function trigger(type,args){(s.context?jQuery(s.context):jQuery.event).trigger(type,args);}
return xhr;},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context||s,xhr,status,e);}
if(s.global){(s.context?jQuery(s.context):jQuery.event).trigger("ajaxError",[xhr,s,e]);}},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol==="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status===304||xhr.status===1223||xhr.status===0;}catch(e){}
return false;},httpNotModified:function(xhr,url){var lastModified=xhr.getResponseHeader("Last-Modified"),etag=xhr.getResponseHeader("Etag");if(lastModified){jQuery.lastModified[url]=lastModified;}
if(etag){jQuery.etag[url]=etag;}
return xhr.status===304||xhr.status===0;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type")||"",xml=type==="xml"||!type&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.nodeName==="parsererror"){jQuery.error("parsererror");}
if(s&&s.dataFilter){data=s.dataFilter(data,type);}
if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){data=jQuery.parseJSON(data);}else if(type==="script"||!type&&ct.indexOf("javascript")>=0){jQuery.globalEval(data);}}
return data;},param:function(a,traditional){var s=[];if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix]);}}
return s.join("&").replace(r20,"+");function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v);});}else{add(prefix,obj);}}
function add(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);}}});var elemdisplay={},rfxtypes=/toggle|show|hide/,rfxnum=/^([+-]=)?([\d+-.]+)(.*)$/,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];jQuery.fn.extend({show:function(speed,callback){if(speed||speed===0){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var nodeName=this[i].nodeName,display;if(elemdisplay[nodeName]){display=elemdisplay[nodeName];}else{var elem=jQuery("<"+nodeName+" />").appendTo("body");display=elem.css("display");if(display==="none"){display="block";}
elem.remove();elemdisplay[nodeName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display=jQuery.data(this[j],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none"){jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments);}else if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();});}else{this.animate(genFx("toggle",3),fn,fn2);}
return this;},fadeTo:function(speed,to,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete);}
return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType===1&&jQuery(this).is(":hidden"),self=this;for(p in prop){var name=p.replace(rdashAlpha,fcamelCase);if(p!==name){prop[name]=prop[p];delete prop[p];p=name;}
if(prop[p]==="hide"&&hidden||prop[p]==="show"&&!hidden){return opt.complete.call(this);}
if((p==="height"||p==="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}
if(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];prop[p]=prop[p][0];}}
if(opt.overflow!=null){this.style.overflow="hidden";}
opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop);}else{var parts=rfxnum.exec(val),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!=="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start;}
e.custom(start,end,unit);}else{e.custom(start,val,"");}}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([]);}
this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem===this){if(gotoEnd){timers[i](true);}
timers.splice(i,1);}}});if(!gotoEnd){this.dequeue();}
return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue();}
if(jQuery.isFunction(opt.old)){opt.old.call(this);}};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={};}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}
(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style){this.elem.style.display="block";}},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}
var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(jQuery.fx.tick,13);}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now(),done=true;if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var i in this.options.curAnim){if(this.options.curAnim[i]!==true){done=false;}}
if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;var old=jQuery.data(this.elem,"olddisplay");this.elem.style.display=old?old:this.options.display;if(jQuery.css(this.elem,"display")==="none"){this.elem.style.display="block";}}
if(this.options.hide){jQuery(this.elem).hide();}
if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.style(this.elem,p,this.options.orig[p]);}}
this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");this.pos=jQuery.easing[specialEasing||defaultEasing](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}
return true;}};jQuery.extend(jQuery.fx,{tick:function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1);}}
if(!timers.length){jQuery.fx.stop();}},stop:function(){clearInterval(timerId);timerId=null;},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};}
function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
var box=elem.getBoundingClientRect(),doc=elem.ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
jQuery.offset.initialize();var offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break;}
computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;top-=elem.scrollTop;left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop;left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;left+=body.offsetLeft;}
if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);left+=Math.max(docElem.scrollLeft,body.scrollLeft);}
return{top:top,left:left};};}
jQuery.offset={initialize:function(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.curCSS(body,"marginTop",true))||0,html="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild;checkDiv=innerDiv.firstChild;td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);checkDiv.style.position="fixed",checkDiv.style.top="20px";this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);checkDiv.style.position=checkDiv.style.top="";innerDiv.style.overflow="hidden",innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);body.removeChild(container);body=container=innerDiv=checkDiv=table=td=null;jQuery.offset.initialize=jQuery.noop;},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;jQuery.offset.initialize();if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.curCSS(body,"marginTop",true))||0;left+=parseFloat(jQuery.curCSS(body,"marginLeft",true))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){if(/static/.test(jQuery.curCSS(elem,"position"))){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curTop=parseInt(jQuery.curCSS(elem,"top",true),10)||0,curLeft=parseInt(jQuery.curCSS(elem,"left",true),10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
var props={top:(options.top-curOffset.top)+curTop,left:(options.left-curOffset.left)+curLeft};if("using"in options){options.using.call(elem,props);}else{curElem.css(props);}}};jQuery.fn.extend({position:function(){if(!this[0]){return null;}
var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.curCSS(elem,"marginTop",true))||0;offset.left-=parseFloat(jQuery.curCSS(elem,"marginLeft",true))||0;parentOffset.top+=parseFloat(jQuery.curCSS(offsetParent[0],"borderTopWidth",true))||0;parentOffset.left+=parseFloat(jQuery.curCSS(offsetParent[0],"borderLeftWidth",true))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent;}
return offsetParent;});}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){var elem=this[0],win;if(!elem){return null;}
if(val!==undefined){return this.each(function(){win=getWindow(this);if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop());}else{this[method]=val;}});}else{win=getWindow(elem);return win?("pageXOffset"in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method];}};});function getWindow(elem){return("scrollTo"in elem&&elem.document)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false;}
jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],type,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],type,false,margin?"margin":"border"):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}
if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}
return("scrollTo"in elem&&elem.document)?elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name]:(elem.nodeType===9)?Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]):size===undefined?jQuery.css(elem,type):this.css(type,typeof size==="string"?size:size+"px");};});window.jQuery=window.$=jQuery;})(window);;(function($,window){var
defaults={transition:"elastic",speed:300,width:false,initialWidth:"600",innerWidth:false,maxWidth:false,height:false,initialHeight:"450",innerHeight:false,maxHeight:false,scalePhotos:true,scrolling:true,inline:false,html:false,iframe:false,photo:false,href:false,title:false,rel:false,opacity:0.9,preloading:true,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:false,loop:true,slideshow:false,slideshowAuto:true,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:false,onLoad:false,onComplete:false,onCleanup:false,onClosed:false,overlayClose:true,escKey:true,arrowKey:true},colorbox='colorbox',prefix='cbox',event_open=prefix+'_open',event_load=prefix+'_load',event_complete=prefix+'_complete',event_cleanup=prefix+'_cleanup',event_closed=prefix+'_closed',isIE=$.browser.msie&&!$.support.opacity,isIE6=isIE&&$.browser.version<7,event_ie6=prefix+'_IE6',$overlay,$box,$wrap,$content,$topBorder,$leftBorder,$rightBorder,$bottomBorder,$related,$window,$loaded,$loadingBay,$loadingOverlay,$title,$current,$slideshow,$next,$prev,$close,interfaceHeight,interfaceWidth,loadedHeight,loadedWidth,element,bookmark,index,settings,open,active,publicMethod,boxElement=prefix+'Element';function $div(id,css){id=id?' id="'+prefix+id+'"':'';css=css?' style="'+css+'"':'';return $('<div'+id+css+'/>');}
function setSize(size,dimension){dimension=dimension==='x'?$window.width():$window.height();return(typeof size==='string')?Math.round((size.match(/%/)?(dimension/100)*parseInt(size,10):parseInt(size,10))):size;}
function isImage(url){url=$.isFunction(url)?url.call(element):url;return settings.photo||url.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i);}
function process(){for(var i in settings){if($.isFunction(settings[i])&&i.substring(0,2)!=='on'){settings[i]=settings[i].call(element);}}
settings.rel=settings.rel||element.rel||'nofollow';settings.href=settings.href||$(element).attr('href');settings.title=settings.title||element.title;}
function launch(elem){element=elem;settings=$.extend({},$(element).data(colorbox));process();if(settings.rel!=='nofollow'){$related=$('.'+boxElement).filter(function(){var relRelated=$(this).data(colorbox).rel||this.rel;return(relRelated===settings.rel);});index=$related.index(element);if(index===-1){$related=$related.add(element);index=$related.length-1;}}else{$related=$(element);index=0;}
if(!open){open=active=true;bookmark=element;try{bookmark.blur();}catch(e){}
$.event.trigger(event_open);if(settings.onOpen){settings.onOpen.call(element);}
$overlay.css({"opacity":+settings.opacity,"cursor":settings.overlayClose?"pointer":"auto"}).show();settings.w=setSize(settings.initialWidth,'x');settings.h=setSize(settings.initialHeight,'y');publicMethod.position(0);if(isIE6){$window.bind('resize.'+event_ie6+' scroll.'+event_ie6,function(){$overlay.css({width:$window.width(),height:$window.height(),top:$window.scrollTop(),left:$window.scrollLeft()});}).trigger('scroll.'+event_ie6);}}
$current.add($prev).add($next).add($slideshow).add($title).hide();$close.html(settings.close).show();publicMethod.slideshow();publicMethod.load();}
publicMethod=$.fn[colorbox]=$[colorbox]=function(options,callback){var $this=this;if(!$this[0]&&$this.selector){return $this;}
options=options||{};if(callback){options.onComplete=callback;}
if(!$this[0]||$this.selector===undefined){$this=$('<a/>');options.open=true;}
$this.each(function(){$(this).data(colorbox,$.extend({},$(this).data(colorbox)||defaults,options)).addClass(boxElement);});if(options.open){launch($this[0]);}
return $this;};publicMethod.init=function(){$window=$(window);$box=$div().attr({id:colorbox,'class':isIE?prefix+'IE':''});$overlay=$div("Overlay",isIE6?'position:absolute':'').hide();$wrap=$div("Wrapper");$content=$div("Content").append($loaded=$div("LoadedContent",'width:0; height:0'),$loadingOverlay=$div("LoadingOverlay").add($div("LoadingGraphic")),$title=$div("Title"),$current=$div("Current"),$next=$div("Next"),$prev=$div("Previous"),$slideshow=$div("Slideshow"),$close=$div("Close"));$wrap.append($div().append($div("TopLeft"),$topBorder=$div("TopCenter"),$div("TopRight")),$div().append($leftBorder=$div("MiddleLeft"),$content,$rightBorder=$div("MiddleRight")),$div().append($div("BottomLeft"),$bottomBorder=$div("BottomCenter"),$div("BottomRight"))).children().children().css({'float':'left'});$loadingBay=$div(false,'position:absolute; width:9999px; visibility:hidden; display:none');$('body').prepend($overlay,$box.append($wrap,$loadingBay));$content.children().hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');}).addClass('hover');interfaceHeight=$topBorder.height()+$bottomBorder.height()+$content.outerHeight(true)-$content.height();interfaceWidth=$leftBorder.width()+$rightBorder.width()+$content.outerWidth(true)-$content.width();loadedHeight=$loaded.outerHeight(true);loadedWidth=$loaded.outerWidth(true);$box.css({"padding-bottom":interfaceHeight,"padding-right":interfaceWidth}).hide();$next.click(publicMethod.next);$prev.click(publicMethod.prev);$close.click(publicMethod.close);$content.children().removeClass('hover');$('.'+boxElement).live('click',function(e){if((e.button!==0&&typeof e.button!=='undefined')||e.ctrlKey||e.shiftKey||e.altKey){return true;}else{launch(this);return false;}});$overlay.click(function(){if(settings.overlayClose){publicMethod.close();}});$(document).bind("keydown",function(e){if(open&&settings.escKey&&e.keyCode===27){e.preventDefault();publicMethod.close();}
if(open&&settings.arrowKey&&!active&&$related[1]){if(e.keyCode===37&&(index||settings.loop)){e.preventDefault();$prev.click();}else if(e.keyCode===39&&(index<$related.length-1||settings.loop)){e.preventDefault();$next.click();}}});};publicMethod.remove=function(){$box.add($overlay).remove();$('.'+boxElement).die('click').removeData(colorbox).removeClass(boxElement);};publicMethod.position=function(speed,loadedCallback){var
animate_speed,posTop=Math.max($window.height()-settings.h-loadedHeight-interfaceHeight,0)/2+$window.scrollTop(),posLeft=Math.max($window.width()-settings.w-loadedWidth-interfaceWidth,0)/2+$window.scrollLeft();animate_speed=($box.width()===settings.w+loadedWidth&&$box.height()===settings.h+loadedHeight)?0:speed;$wrap[0].style.width=$wrap[0].style.height="9999px";function modalDimensions(that){$topBorder[0].style.width=$bottomBorder[0].style.width=$content[0].style.width=that.style.width;$loadingOverlay[0].style.height=$loadingOverlay[1].style.height=$content[0].style.height=$leftBorder[0].style.height=$rightBorder[0].style.height=that.style.height;}
$box.dequeue().animate({width:settings.w+loadedWidth,height:settings.h+loadedHeight,top:posTop,left:posLeft},{duration:animate_speed,complete:function(){modalDimensions(this);active=false;$wrap[0].style.width=(settings.w+loadedWidth+interfaceWidth)+"px";$wrap[0].style.height=(settings.h+loadedHeight+interfaceHeight)+"px";if(loadedCallback){loadedCallback();}},step:function(){modalDimensions(this);}});};publicMethod.resize=function(options){if(open){options=options||{};if(options.width){settings.w=setSize(options.width,'x')-loadedWidth-interfaceWidth;}
if(options.innerWidth){settings.w=setSize(options.innerWidth,'x');}
$loaded.css({width:settings.w});if(options.height){settings.h=setSize(options.height,'y')-loadedHeight-interfaceHeight;}
if(options.innerHeight){settings.h=setSize(options.innerHeight,'y');}
if(!options.innerHeight&&!options.height){var $child=$loaded.wrapInner("<div style='overflow:auto'></div>").children();settings.h=$child.height();$child.replaceWith($child.children());}
$loaded.css({height:settings.h});publicMethod.position(settings.transition==="none"?0:settings.speed);}};publicMethod.prep=function(object){if(!open){return;}
var photo,speed=settings.transition==="none"?0:settings.speed;$window.unbind('resize.'+prefix);$loaded.remove();$loaded=$div('LoadedContent').html(object);function getWidth(){settings.w=settings.w||$loaded.width();settings.w=settings.mw&&settings.mw<settings.w?settings.mw:settings.w;return settings.w;}
function getHeight(){settings.h=settings.h||$loaded.height();settings.h=settings.mh&&settings.mh<settings.h?settings.mh:settings.h;return settings.h;}
$loaded.hide().appendTo($loadingBay.show()).css({width:getWidth(),overflow:settings.scrolling?'auto':'hidden'}).css({height:getHeight()}).prependTo($content);$loadingBay.hide();$('#'+prefix+'Photo').css({cssFloat:'none'});if(isIE6){$('select').not($box.find('select')).filter(function(){return this.style.visibility!=='hidden';}).css({'visibility':'hidden'}).one(event_cleanup,function(){this.style.visibility='inherit';});}
function setPosition(s){var prev,prevSrc,next,nextSrc,total=$related.length,loop=settings.loop;publicMethod.position(s,function(){function defilter(){if(isIE){$box[0].style.removeAttribute("filter");}}
if(!open){return;}
if(isIE){if(photo){$loaded.fadeIn(100);}}
if(settings.iframe){$("<iframe frameborder=0"+(settings.scrolling?"":" scrolling='no'")+(isIE?" allowtransparency='true'":'')+"/>").attr({src:settings.href,name:new Date().getTime()}).appendTo($loaded);}
$loaded.show();$title.show().html(settings.title);if(total>1){$current.html(settings.current.replace(/\{current\}/,index+1).replace(/\{total\}/,total)).show();$next[(loop||index<total-1)?"show":"hide"]().html(settings.next);$prev[(loop||index)?"show":"hide"]().html(settings.previous);prev=index?$related[index-1]:$related[total-1];next=index<total-1?$related[index+1]:$related[0];if(settings.slideshow){$slideshow.show();if(index===total-1&&!loop&&$box.is('.'+prefix+'Slideshow_on')){$slideshow.click();}}
if(settings.preloading){nextSrc=$(next).data(colorbox).href||next.href;prevSrc=$(prev).data(colorbox).href||prev.href;if(isImage(nextSrc)){$('<img/>')[0].src=nextSrc;}
if(isImage(prevSrc)){$('<img/>')[0].src=prevSrc;}}}
$loadingOverlay.hide();if(settings.transition==='fade'){$box.fadeTo(speed,1,function(){defilter();});}else{defilter();}
$window.bind('resize.'+prefix,function(){publicMethod.position(0);});$.event.trigger(event_complete);if(settings.onComplete){settings.onComplete.call(element);}});}
if(settings.transition==='fade'){$box.fadeTo(speed,0,function(){setPosition(0);});}else{setPosition(speed);}};publicMethod.load=function(){var href,img,setResize,prep=publicMethod.prep;active=true;element=$related[index];settings=$.extend({},$(element).data(colorbox));process();$.event.trigger(event_load);if(settings.onLoad){settings.onLoad.call(element);}
settings.h=settings.height?setSize(settings.height,'y')-loadedHeight-interfaceHeight:settings.innerHeight&&setSize(settings.innerHeight,'y');settings.w=settings.width?setSize(settings.width,'x')-loadedWidth-interfaceWidth:settings.innerWidth&&setSize(settings.innerWidth,'x');settings.mw=settings.w;settings.mh=settings.h;if(settings.maxWidth){settings.mw=setSize(settings.maxWidth,'x')-loadedWidth-interfaceWidth;settings.mw=settings.w&&settings.w<settings.mw?settings.w:settings.mw;}
if(settings.maxHeight){settings.mh=setSize(settings.maxHeight,'y')-loadedHeight-interfaceHeight;settings.mh=settings.h&&settings.h<settings.mh?settings.h:settings.mh;}
href=settings.href;$loadingOverlay.show();if(settings.inline){$div('InlineTemp').hide().insertBefore($(href)[0]).bind(event_load+' '+event_cleanup,function(){$(this).replaceWith($loaded.children());});prep($(href));}else if(settings.iframe){prep(" ");}else if(settings.html){prep(settings.html);}else if(isImage(href)){img=new Image();img.onload=function(){var percent;img.onload=null;img.id=prefix+'Photo';$(img).css({margin:'auto',border:'none',display:'block',cssFloat:'left'});if(settings.scalePhotos){setResize=function(){img.height-=img.height*percent;img.width-=img.width*percent;};if(settings.mw&&img.width>settings.mw){percent=(img.width-settings.mw)/img.width;setResize();}
if(settings.mh&&img.height>settings.mh){percent=(img.height-settings.mh)/img.height;setResize();}}
if(settings.h){img.style.marginTop=Math.max(settings.h-img.height,0)/2+'px';}
setTimeout(function(){prep(img);},1);if($related[1]&&(index<$related.length-1||settings.loop)){$(img).css({cursor:'pointer'}).click(publicMethod.next);}
if(isIE){img.style.msInterpolationMode='bicubic';}};img.src=href;}else{$div().appendTo($loadingBay).load(href,function(data,status,xhr){prep(status==='error'?'Request unsuccessful: '+xhr.statusText:this);});}};publicMethod.next=function(){if(!active){index=index<$related.length-1?index+1:0;publicMethod.load();}};publicMethod.prev=function(){if(!active){index=index?index-1:$related.length-1;publicMethod.load();}};publicMethod.slideshow=function(){var stop,timeOut,className=prefix+'Slideshow_';$slideshow.bind(event_closed,function(){$slideshow.unbind();clearTimeout(timeOut);$box.removeClass(className+"off "+className+"on");});function start(){$slideshow.text(settings.slideshowStop).bind(event_complete,function(){timeOut=setTimeout(publicMethod.next,settings.slideshowSpeed);}).bind(event_load,function(){clearTimeout(timeOut);}).one("click",function(){stop();});$box.removeClass(className+"off").addClass(className+"on");}
stop=function(){clearTimeout(timeOut);$slideshow.text(settings.slideshowStart).unbind(event_complete+' '+event_load).one("click",function(){start();timeOut=setTimeout(publicMethod.next,settings.slideshowSpeed);});$box.removeClass(className+"on").addClass(className+"off");};if(settings.slideshow&&$related[1]){if(settings.slideshowAuto){start();}else{stop();}}};publicMethod.close=function(){if(open){open=false;$.event.trigger(event_cleanup);if(settings.onCleanup){settings.onCleanup.call(element);}
$window.unbind('.'+prefix+' .'+event_ie6);$overlay.fadeTo('fast',0);$box.stop().fadeTo('fast',0,function(){$box.find('iframe').attr('src','about:blank');$loaded.remove();$box.add($overlay).css({'opacity':1,cursor:'auto'}).hide();try{bookmark.focus();}catch(e){}
setTimeout(function(){$.event.trigger(event_closed);if(settings.onClosed){settings.onClosed.call(element);}},1);});}};publicMethod.element=function(){return $(element);};publicMethod.settings=defaults;$(publicMethod.init);}(jQuery,this));;var ContentFlowGlobal={Flows:new Array,AddOns:{},scriptName:'contentflow.js',scriptElement:null,Browser:new(function(){this.Opera=window.opera?true:false;this.IE=document.all&&!this.Opera?true:false;this.IE6=this.IE&&typeof(window.XMLHttpRequest)=="undefined"?true:false;this.IE8=this.IE&&typeof(document.querySelectorAll)!="undefined"?true:false;this.IE7=this.IE&&!this.IE6&&!this.IE8?true:false;this.WebKit=/WebKit/i.test(navigator.userAgent)?true:false,this.iPhone=/iPhone|iPod/i.test(navigator.userAgent)?true:false;this.Chrome=/Chrome/i.test(navigator.userAgent)?true:false;this.Safari=/Safari/i.test(navigator.userAgent)&&!this.Chrome?true:false;this.Konqueror=navigator.vendor=="KDE"?true:false;this.Konqueror4=this.Konqueror&&/native code/.test(document.getElementsByClassName)?true:false;this.Gecko=!this.WebKit&&navigator.product=="Gecko"?true:false;this.Gecko19=this.Gecko&&Array.reduce?true:false;})(),getAddOnConf:function(name){if(this.AddOns[name])
return this.AddOns[name].conf;else
return{};},setAddOnConf:function(name,conf){this.AddOns[name].setConfig(conf);},getScriptElement:function(scriptName){var regex=new RegExp(scriptName);var scripts=document.getElementsByTagName('script');for(var i=0;i<scripts.length;i++){if(scripts[i].src&&regex.test(scripts[i].src))
return scripts[i];}
return'';},getScriptPath:function(scriptElement,scriptName){var regex=new RegExp(scriptName+".*");return scriptElement.src.replace(regex,'');},addScript:function(path){if(this.Browser.IE||this.Browser.WebKit||this.Browser.Konqueror){document.write('<script type="text/javascript" src="'+path+'"><\/script>');}
else{var script=document.createElement('script');script.src=path;script.setAttribute('type','text/javascript');document.getElementsByTagName('head')[0].appendChild(script);}},addScripts:function(basePath,filenames){for(var i=0;i<filename.length;i++)
this.addScript(basepath+filenames[i]);},addStylesheet:function(path){if(this.Browser.Gecko19){var link=document.createElement('link');link.setAttribute('rel','stylesheet');link.setAttribute('href',path);link.setAttribute('type','text/css');link.setAttribute('media','screen');document.getElementsByTagName('head')[0].appendChild(link);}
else{document.write('<link rel="stylesheet" href="'+path+'" type="text/css" media="screen" />');}},addStylesheets:function(basePath,filenames){for(var i=0;i<filename.length;i++)
this.addStylesheet(basepath+filenames[i]);},initPath:function(){this.scriptElement=this.getScriptElement(this.scriptName);if(!this.scriptElement){this.scriptName='contentflow_src.js';this.scriptElement=this.getScriptElement(this.scriptName);}
this.BaseDir=this.getScriptPath(this.scriptElement,this.scriptName);if(!this.AddOnBaseDir)this.AddOnBaseDir=this.BaseDir;if(!this.CSSBaseDir)this.CSSBaseDir=this.BaseDir;},init:function(){this.addStylesheet(this.CSSBaseDir+'contentflow.css');this.addStylesheet(this.CSSBaseDir+'mycontentflow.css');this.loadAddOns=new Array();if(this.scriptElement.getAttribute('load')){var AddOns=this.loadAddOns=this.scriptElement.getAttribute('load').replace(/\ +/g,' ').split(' ');for(var i=0;i<AddOns.length;i++){if(AddOns[i]=='')continue;this.addScript(this.AddOnBaseDir+'ContentFlowAddOn_'+AddOns[i]+'.js');}}
var CFG=this;if(document.addEventListener){if(this.Browser.WebKit){var _timer=setInterval(function(){if(/loaded|complete/.test(document.readyState)){clearInterval(_timer);CFG.onloadInit();}},10);}
else{document.addEventListener("DOMContentLoaded",CFG.onloadInit,false);}}
else if(this.Browser.IE){document.write("<script id=__ie_cf_onload defer src=javascript:void(0)><\/script>");var script=document.getElementById("__ie_cf_onload");script.onreadystatechange=function(){if(this.readyState=="complete"){CFG.onloadInit();}};}
window.addEvent('load',CFG.onloadInit,false);},onloadInit:function(){if(arguments.callee.done)return;for(var i=0;i<ContentFlowGlobal.loadAddOns.length;i++){var a=ContentFlowGlobal.loadAddOns[i];if(!ContentFlowGlobal.AddOns[a]){var CFG=ContentFlowGlobal;window.setTimeout(CFG.onloadInit,10);return;}}
arguments.callee.done=true;if(window.Element&&Element.implement&&document.all&&!window.opera){for(var prop in window.CFElement.prototype){if(!window.Element.prototype[prop]){var implement={};implement[prop]=window.CFElement.prototype[prop];Element.implement(implement);}}}
for(var i=0;i<ContentFlowGlobal.Flows.length;i++){ContentFlowGlobal.Flows[i].init();}
var divs=document.getElementsByTagName('div');DIVS:for(var i=0;i<divs.length;i++){if(divs[i].className.match(/\bContentFlow\b/)){for(var j=0;j<ContentFlowGlobal.Flows.length;j++){if(divs[i]==ContentFlowGlobal.Flows[j].Container)continue DIVS;}
var CF=new ContentFlow(divs[i],{},false);CF.init();}}}};ContentFlowGlobal.initPath();var ContentFlowAddOn=function(name,methods,register){if(typeof register=="undefined"||register!=false)
ContentFlowGlobal.AddOns[name]=this;this.name=name;if(!methods)methods={};this.methods=methods;this.conf={};if(this.methods.conf){this.setConfig(this.methods.conf);delete this.methods.conf;}
this.scriptpath=ContentFlowGlobal.AddOnBaseDir;if(methods.init){var init=methods.init.bind(this);init(this);}};ContentFlowAddOn.prototype={Browser:ContentFlowGlobal.Browser,addScript:ContentFlowGlobal.addScript,addScripts:ContentFlowGlobal.addScripts,addStylesheet:function(path){if(!path)
path=this.scriptpath+'ContentFlowAddOn_'+this.name+'.css';ContentFlowGlobal.addStylesheet(path);},addStylesheets:ContentFlowGlobal.addStylesheets,setConfig:function(conf){for(var c in conf){this.conf[c]=conf[c];}},_init:function(flow){if(this.methods.ContentFlowConf){flow.setConfig(this.methods.ContentFlowConf);}}};var ContentFlowGUIElement=function(CFobj,element){element.setDimensions=function(){this.dimensions=this.getDimensions();this.center={x:this.dimensions.width/2,y:this.dimensions.height/2};this.position=this.findPos();};element.addObserver=function(eventName,method){var m=this.eventMethod=method.bind(CFobj);this.observedEvent=eventName;this.addEvent(eventName,m,false);};element.makeDraggable=function(onDrag,beforeDrag,afterDrag){this.stopDrag=function(event){if(!event)var event=window.event;if(this.Browser.iPhone){window.removeEvent('touchemove',onDrag,false);if(!this.ontochmove){var t=event.target;if(t.firstChild)t=t.firstChild;var e=document.createEvent('MouseEvents');e.initEvent('click',true,true);t.dispatchEvent(e);}}
else{window.removeEvent('mousemove',onDrag,false);}
afterDrag(event);}.bind(this);this.initDrag=function(event){if(!event)var event=window.event;var e=event;if(event.touches)e=event.touches[0];this.mouseX=e.clientX;this.mouseY=e.clientY;beforeDrag(event);}.bind(this);this.startDrag=function(event){if(!event)var event=window.event;var stopDrag=this.stopDrag;if(this.Browser.iPhone){var s=this;s.ontouchmove=false
window.addEvent('touchmove',function(e){s.ontouchmove=true;onDrag(e);},false);event.preventDefault();window.addEvent('touchend',stopDrag,false);}
else{window.addEvent('mousemove',onDrag,false);window.addEvent('mouseup',stopDrag,false);}
if(event.preventDefault){event.preventDefault()}}.bind(this);var startDrag=this.startDrag;if(this.Browser.iPhone){this.addEventListener('touchstart',startDrag,false);}
else{this.addEvent('mousedown',startDrag,false);}};element.Browser=ContentFlowGlobal.Browser;$CF(element).setDimensions();return element;};var ContentFlowItem=function(CFobj,element,index){this.CFobj=CFobj;this._activeElement=CFobj.conf.activeElement;this.pre=null;this.next=null;this.clickItem=function(event){if(!event)var event=window.event;var el=event.target?event.target:event.srcElement;var index=el.itemIndex?el.itemIndex:el.parentNode.itemIndex;var item=this.items[index];if(this._activeItem==item){this.conf.onclickActiveItem(item);}
else{if(this.conf.onclickInactiveItem(item)!=false)this.moveToIndex(index);}}.bind(CFobj),this.setIndex=function(index){this.index=index;this.element.itemIndex=index;};this.getIndex=function(){return this.index;};if($CF(element).nodeName=="IMG"){var el=document.createElement('div');el.className="item";var cont=element.parentNode.replaceChild(el,element);cont.className="content";el.appendChild(cont);if(element.title){var cap=document.createElement('div');cap.className="caption";cap.innerHTML=element.title;el.appendChild(cap);}
element=el;}
this.element=$CF(element);this.item=element;if(typeof index!="undefined")this.setIndex(index);this.content=this.element.getChildrenByClassName('content')[0];this.caption=this.element.getChildrenByClassName('caption')[0];this.label=this.element.getChildrenByClassName('label')[0];if(this.content.nodeName=="IMG"){CFobj._imagesToLoad++;var foobar=function(){CFobj._imagesToLoad--;this.image=this.content;this.setImageFormat(this.image);if(CFobj.conf.reflectionHeight>0){this.addReflection();}
this.initClick();CFobj._addItemCueProcess(true);}.bind(this);if(this.content.complete&&this.content.width>0)
window.setTimeout(foobar,100);else if(this.Browser.IE&&!this.content.onload){var self=this;var t=window.setInterval(function(){if(self.content.complete&&self.content.width>0){window.clearInterval(t);foobar();}},10);}
else
this.content.onload=window.setTimeout(foobar,100);}
else{this.initClick();CFobj._addItemCueProcess(true);}};ContentFlowItem.prototype={Browser:ContentFlowGlobal.Browser,makeActive:function(){this.element.addClassName('active');this.CFobj.conf.onMakeActive(this);},makeInactive:function(){this.element.removeClassName('active');this.CFobj.conf.onMakeInactive(this);},initClick:function(){var cItem=this.clickItem;this[this._activeElement].addEvent('click',cItem,false);},setImageFormat:function(img){if(this.Browser.IE6||this.Browser.IE7)img.style.width="auto";img.origProportion=img.width/img.height;img.setAttribute('origProportion',img.width/img.height);if(this.Browser.IE6||this.Browser.IE7)img.style.width="";if(img.origProportion<=1)
img.addClassName('portray');else
img.addClassName('landscape');},addReflection:function(){var CFobj=this.CFobj;var reflection;var image=this.content;if(this.Browser.IE){var filterString='progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';if(CFobj._reflectionColorRGB){if(CFobj.conf.reflectionColor=="transparent"){var RefImg=reflection=this.reflection=document.createElement('img');reflection.src=image.src;}
else{reflection=this.reflection=document.createElement('div');var RefImg=document.createElement('img');RefImg.src=image.src;reflection.width=RefImg.width;reflection.height=RefImg.height;RefImg.style.width='100%';RefImg.style.height='100%';var color=CFobj._reflectionColorRGB;reflection.style.backgroundColor='#'+color.hR+color.hG+color.hB;reflection.appendChild(RefImg);}
filterString+=' progid:DXImageTransform.Microsoft.Alpha(opacity=0, finishOpacity=50, style=1, finishX=0, startY='+CFobj.conf.reflectionHeight*100+' finishY=0)';}else{var RefImg=reflection=this.reflection=document.createElement('img');reflection.src=image.src;}
filterString+=' progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22='+1/CFobj.conf.reflectionHeight+')';if(ContentFlowGlobal.Browser.IE6){if(image.src.match(/\.png$/)){image.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+image.src+"', sizingMethod=scale )";image.filterString="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+image.src+"', sizingMethod=scale )";filterString+=" progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+image.src+"', sizingMethod=scale )";image.origSrc=image.src;image.src='img/blank.gif';RefImg.src="img/blank.gif";}}
reflection.filterString=filterString;RefImg.style.filter=filterString;}else{if(CFobj._reflectionWithinImage)
var canvas=this.canvas=$CF(document.createElement('canvas'));else
var canvas=reflection=this.reflection=document.createElement('canvas');if(canvas.getContext){if(CFobj._reflectionWithinImage){for(var i=0;i<image.attributes.length;i++){canvas.setAttributeNode(image.attributes[i].cloneNode(true));}}
var context=canvas.getContext("2d");var max=CFobj.maxHeight;var size=CFobj._scaleImageSize(this,{width:max,height:max},max)
var width=size.width;var height=size.height;if(CFobj._reflectionWithinImage){canvas.width=width;canvas.height=height;this.setImageFormat(canvas);canvas.height=height*(1+CFobj.conf.reflectionHeight+CFobj.conf.reflectionGap);}
else{canvas.width=width;canvas.height=height*CFobj.conf.reflectionHeight;}
context.save();if(CFobj._reflectionWithinImage){context.drawImage(image,0,0,width,height);}
if(CFobj._reflectionWithinImage){var contextHeight=height*(1+CFobj.conf.reflectionGap/2)*2;}
else{var contextHeight=image.height;}
contextHeight-=1;context.translate(0,contextHeight);context.scale(1,-1);context.drawImage(image,0,0,width,height);context.restore();if(CFobj._reflectionColorRGB){var gradient=context.createLinearGradient(0,0,0,canvas.height);var alpha=[0,0.5,1];if(CFobj._reflectionColor=="transparent"){context.globalCompositeOperation="destination-in";alpha=[1,0.5,0];}
var red=CFobj._reflectionColorRGB.iR;var green=CFobj._reflectionColorRGB.iG;var blue=CFobj._reflectionColorRGB.iB;if(CFobj._reflectionWithinImage){gradient.addColorStop(0,'rgba('+red+','+green+','+blue+','+alpha[0]+')');gradient.addColorStop(height/canvas.height,'rgba('+red+','+green+','+blue+','+alpha[0]+')');gradient.addColorStop(height/canvas.height,'rgba('+red+','+green+','+blue+','+alpha[1]+')');}
else{gradient.addColorStop(0,'rgba('+red+','+green+','+blue+','+alpha[1]+')');}
gradient.addColorStop(1,'rgba('+red+','+green+','+blue+','+alpha[2]+')');context.fillStyle=gradient;context.fillRect(0,0,canvas.width,canvas.height);}
if(CFobj._reflectionWithinImage){image.parentNode.replaceChild(canvas,image);this.content=canvas;this.origContent=canvas;delete this.image;}}else{CFobj._reflectionWithinImage=false;delete this.reflection;}}
if(reflection){reflection.className="reflection";this.element.appendChild(reflection);if(this.caption)this.element.appendChild(this.caption);}}};var ContentFlow=function(container,config){if(container){ContentFlowGlobal.Flows.push(this);this.Container=container;this._userConf=config?config:{};this.conf={};this._loadedAddOns=new Array();}else{throw('ContentFlow ERROR: No flow container node or id given');}};ContentFlow.prototype={_imagesToLoad:0,_activeItem:0,_currentPosition:0,_targetPosition:0,_stepLock:false,_millisecondsPerStep:40,_reflectionWithinImage:true,Browser:ContentFlowGlobal.Browser,_defaultConf:{useAddOns:'all',biggestItemPos:0,loadingTimeout:30000,activeElement:'content',maxItemHeight:0,scaleFactor:1,scaleFactorLandscape:1.33,scaleFactorPortrait:1.0,fixItemSize:false,relativeItemPosition:"top center",circularFlow:true,verticalFlow:false,visibleItems:-1,endOpacity:1,startItem:"center",scrollInFrom:"pre",flowSpeedFactor:1.0,flowDragFriction:1.0,scrollWheelSpeed:1.0,keys:{13:function(){this.conf.onclickActiveItem(this._activeItem)},37:function(){this.moveTo('pre')},38:function(){this.moveTo('visibleNext')},39:function(){this.moveTo('next')},40:function(){this.moveTo('visiblePre')}},reflectionColor:"transparent",reflectionHeight:0.5,reflectionGap:0.0,onInit:function(){},onclickInactiveItem:function(item){},onclickActiveItem:function(item){var url,target;if(url=item.content.getAttribute('href')){target=item.content.getAttribute('target');}
else if(url=item.element.getAttribute('href')){target=item.element.getAttribute('target');}
else if(url=item.content.getAttribute('src')){target=item.content.getAttribute('target');}
if(url){if(target)
window.open(url,target).focus();else
window.location.href=url;}},onMakeInactive:function(item){},onMakeActive:function(item){},onReachTarget:function(item){},onMoveTo:function(item){},onDrawItem:function(item){},onclickPreButton:function(event){this.moveToIndex('pre');return Event.stop(event);},onclickNextButton:function(event){this.moveToIndex('next');return Event.stop(event);},calcStepWidth:function(diff){var vI=this.conf.visibleItems;var items=this.items.length;items=items==0?1:items;if(Math.abs(diff)>vI){if(diff>0){var stepwidth=diff-vI;}else{var stepwidth=diff+vI;}}else if(vI>=this.items.length){var stepwidth=diff/items;}else{var stepwidth=diff*(vI/items);}
return stepwidth;},calcSize:function(item){var rP=item.relativePosition;var h=1/(Math.abs(rP)+1);var w=h;return{width:w,height:h};},calcCoordinates:function(item){var rP=item.relativePosition;var vI=this.conf.visibleItems;var f=1-1/Math.exp(Math.abs(rP)*0.75);var x=item.side*vI/(vI+1)*f;var y=1;return{x:x,y:y};},calcZIndex:function(item){return-Math.abs(item.relativePositionNormed);},calcFontSize:function(item){return item.size.height;},calcOpacity:function(item){return Math.max(1-((1-this.conf.endOpacity)*Math.sqrt(Math.abs(item.relativePositionNormed))),this.conf.endOpacity);}},_checkIndex:function(index){index=Math.max(index,0);index=Math.min(index,this.itemsLastIndex);return index;},_setLastIndex:function(){this.itemsLastIndex=this.items.length-1;},_getItemByIndex:function(index){return this.items[this._checkIndex(index)];},_getItemByPosition:function(position){return this._getItemByIndex(this._getIndexByPosition(position));},_getPositionByIndex:function(index){if(!this.conf.circularFlow)return this._checkIndex(index);var cI=this._getIndexByPosition(this._currentPosition);var dI=index-cI;if(Math.abs(dI)>dI+this.items.length)
dI+=this.items.length;else if(Math.abs(dI)>(Math.abs(dI-this.items.length)))
dI-=this.items.length;return this._currentPosition+dI;},_getIndexByPosition:function(position){if(position<0)var mod=0;else var mod=1;var I=(Math.round(position)+mod)%this.items.length;if(I>0)I-=mod;else if(I<0)I+=this.items.length-mod;else if(position<0)I=0;else I=this.items.length-1;return I;},_getIndexByKeyWord:function(keyword,relativeTo,check){if(relativeTo)
var index=relativeTo;else if(this._activeItem)
var index=this._activeItem.index;else
var index=0;if(isNaN(keyword)){switch(keyword){case"first":case"start":index=0;break;case"last":case"end":index=this.itemsLastIndex;break;case"middle":case"center":index=Math.round(this.itemsLastIndex/2);break;case"right":case"next":index+=1;break;case"left":case"pre":case"previous":index-=1;break;case'visible':case'visiblePre':case'visibleLeft':index-=this.conf.visibleItems;break;case'visibleNext':case'visibleRight':index+=this.conf.visibleItems;break;default:index=index;}}
else{index=keyword;}
if(check!=false)
index=this._checkIndex(index);return index;},_setCaptionLabel:function(index){if(this.Position&&!this.Slider.locked)
this.Position.setLabel(index);this._setGlobalCaption();},getAddOnConf:function(name){return ContentFlowGlobal.getAddOnConf(name);},setAddOnConf:function(name,conf){ContentFlowGlobal.setAddOnConf(name,conf);},init:function(){if(this.isInit)return;this._init();},setConfig:function(config){if(!config)return;var dC=this._defaultConf;for(var option in config){if(dC[option]=="undefined")continue;switch(option){case"scrollInFrom":case"startItem":if(typeof(config[option])=="number"||typeof(config[option])=="string"){this.conf[option]=config[option];}
break;default:if(typeof(dC[option]==config[option])){if(typeof config[option]=="function"){this.conf[option]=config[option].bind(this);}
else{this.conf[option]=config[option];}}}}
switch(this.conf.reflectionColor){case this.conf.reflectionColor.search(/#[0-9a-fA-F]{6}/)>=0?this.conf.reflectionColor:this.conf.reflectionColor+"x":this._reflectionColorRGB={hR:this.conf.reflectionColor.slice(1,3),hG:this.conf.reflectionColor.slice(3,5),hB:this.conf.reflectionColor.slice(5,7),iR:parseInt(this.conf.reflectionColor.slice(1,3),16),iG:parseInt(this.conf.reflectionColor.slice(3,5),16),iB:parseInt(this.conf.reflectionColor.slice(5,7),16)};break;case"none":case"transparent":default:this._reflectionColor="transparent";this._reflectionColorRGB={hR:0,hG:0,hB:0,iR:0,iG:0,iB:0};break;}
if(this.items){if(this.conf.visibleItems<0)
this.conf.visibleItems=Math.round(Math.sqrt(this.items.length));this.conf.visibleItems=Math.min(this.conf.visibleItems,this.items.length-1);}
if(this.conf.relativeItemPosition){var calcRP={x:{left:function(size){return-1},center:function(size){return 0},right:function(size){return 1}},y:{top:function(size){return-1},center:function(size){return 0},bottom:function(size){return 1}}};var iP=this.conf.relativeItemPosition;iP=iP.replace(/above/,"top").replace(/below/,"bottom");var x,y=null;x=iP.match(/left|right/);y=iP.match(/top|bottom/);c=iP.match(/center/);if(!x){if(c)x="center";else x="center";}
if(!y){if(c)y="center";else y="top";}
var calcX=calcRP.x[x];var calcY=calcRP.y[y];this.conf.calcRelativeItemPosition=function(item){var x=calcX(item.size);var y=calcY(item.size);return{x:x,y:y};};this.conf.relativeItemPosition=null;}
if(this._reflectionType&&this._reflectionType!="clientside"){this.conf.reflectionHeight=0;}},getItem:function(index){return this.items[this._checkIndex(Math.round(index))];},getActiveItem:function(){return this._activeItem;},getNumberOfItems:function(){return this.items.length;},resize:function(){this._initSizes();this._initStep();},moveToPosition:function(p,holdPos){if(!this.conf.circularFlow)p=this._checkIndex(p);this._targetPosition=p;this.conf.onMoveTo(this._getItemByPosition(p));this._initStep(false,holdPos);},moveToIndex:function(index){this._targetPosition=Math.round(this._getPositionByIndex(this._getIndexByKeyWord(index,this._activeItem.index,!this.conf.circularFlow)));this.conf.onMoveTo(this._getItemByPosition(this._targetPosition));this._initStep();},moveToItem:function(item){var i;if(item.itemIndex)i=item.itemIndex;else i=item.index;this.moveToIndex(i);},moveTo:function(i){if(typeof i=="object")this.moveToItem(i);else if(isNaN(i)||(i==Math.floor(i)&&i<this.items.length))this.moveToIndex(i);else this.moveToPosition(i);},_addItemCue:[],_addItemCueProcess:function(deleteFirst){var c=this._addItemCue;if(deleteFirst==true)
c.shift();if(c.length>0&&!c[0].p){c[0].p=true;var self=this;var t=c.length>5?1:40;window.setTimeout(function(){self._addItem(c[0].el,c[0].i)},t);}},addItem:function(el,index){this._addItemCue.push({el:el,i:index,p:false});if(this._addItemCue.length==1)
this._addItemCueProcess();},_addItem:function(el,index){if(typeof index=="string"){switch(index){case"first":case"start":index=0;break;case"last":case"end":index=isNaN(this.itemsLastIndex)?0:this.itemsLastIndex;index+=1;break;default:index=this._getIndexByKeyWord(index);}}
index=Math.max(index,0);index=Math.min(index,this.itemsLastIndex+1);index=isNaN(index)?0:index;this.Flow.appendChild(el);var item=new ContentFlowItem(this,el,index);if(this.items.length==0){this.resize();if(this.conf.circularFlow){item.pre=item;item.next=item;}}
else{if(index==this.itemsLastIndex+1){item.pre=this.items[this.itemsLastIndex];item.next=item.pre.next;}
else{item.next=this.items[index];item.pre=item.next.pre;}
if(item.pre)item.pre.next=item;if(item.next)item.next.pre=item;}
this.items.splice(index,0,item);for(var i=index;i<this.items.length;i++){this.items[i].setIndex(i);}
this._setLastIndex();if(this.conf.origVisibleItems<0){this.conf.visibleItems=Math.round(Math.sqrt(this.items.length));}
this.conf.visibleItems=Math.min(this.conf.visibleItems,this.items.length-1);if(Math.round(this._getPositionByIndex(index))<=Math.round(this._targetPosition)){this._targetPosition++;if(!this.conf.circularFlow)
this._targetPosition=Math.min(this._targetPosition,this.itemsLastIndex);}
if(this._getPositionByIndex(index)<=this._currentPosition){this._currentPosition++;if(!this.conf.circularFlow)
this._currentPosition=Math.min(this._currentPosition,this.itemsLastIndex);}
var CF=this;window.setTimeout(function(){if(CF.items.length==1){CF._currentPosition=-0.01;CF._targetPosition=0;CF.resize();}
else{CF._initStep();}},100);return index;},rmItem:function(index){if(index=="undefined")index=this._activeItem.index;index=this._getIndexByKeyWord(index);if(!this.items[index])return null;var item=this.items[index];if(item.pre)item.pre.next=item.next;if(item.next)item.next.pre=item.pre;this.items.splice(index,1);for(var i=index;i<this.items.length;i++){this.items[i].setIndex(i);}
this._setLastIndex();if(Math.round(this._getPositionByIndex(index))<Math.round(this._targetPosition)){this._targetPosition--;if(!this.conf.circularFlow)
this._targetPosition=this._checkIndex(this._targetPosition);}
if(this._getPositionByIndex(index)<this._currentPosition){this._currentPosition--;if(!this.conf.circularFlow)
this._currentPosition=this._checkIndex(this._currentPosition);}
this._activeItem=this._getItemByPosition(this._currentPosition);var removedItem=item.element.parentNode.removeChild(item.element);var CF=this;window.setTimeout(function(){CF._initStep()},10);return removedItem;},_init:function(){if(typeof(this.Container)=='string'){var container=document.getElementById(this.Container);if(container){this.Container=container;}else{throw('ContentFlow ERROR: No element with id \''+this.Container+'\' found!');return;}}
$CF(this.Container).addClassName('ContentFlow');var flow=$CF(this.Container).getChildrenByClassName('flow')[0];if(!flow){throw('ContentFlow ERROR: No element with class\'flow\' found!');return;}
this.Flow=new ContentFlowGUIElement(this,flow);var scrollbar=this.Container.getChildrenByClassName('scrollbar')[0];if(scrollbar){this.Scrollbar=new ContentFlowGUIElement(this,scrollbar);var slider=this.Scrollbar.getChildrenByClassName('slider')[0];if(slider){this.Slider=new ContentFlowGUIElement(this,slider);var position=this.Slider.getChildrenByClassName('position')[0];if(position){this.Position=new ContentFlowGUIElement(this,position);}}}
this.setConfig(this._defaultConf);this._initAddOns();this.setConfig(this._userConf);this._initSizes();var items=this.Flow.getChildrenByClassName('item');this.items=new Array();for(var i=0;i<items.length;i++){var item=this.items[i]=new ContentFlowItem(this,items[i],i);if(i>0){item.pre=this.items[i-1];item.pre.next=item;}}
this._setLastIndex();if(this.conf.circularFlow&&this.items.length>0){var s=this.items[0];s.pre=this.items[this.items.length-1];s.pre.next=s;}
this._initGUI();if(this._activeElement!="content")
this._activeElement="element";this.conf.origVisibleItems=this.conf.visibleItems;if(this.conf.visibleItems<0){this.conf.visibleItems=Math.round(Math.sqrt(this.items.length));}
this.conf.visibleItems=Math.min(this.conf.visibleItems,this.items.length-1);this._targetPosition=this._getIndexByKeyWord(this.conf.startItem,0);var index=this._getIndexByKeyWord(this.conf.scrollInFrom,this._targetPosition);switch(this.conf.scrollInFrom){case"next":case"right":index-=0.5;break;case"pre":case"previous":case"left":index+=0.5;break;}
this._currentPosition=index;var now=new Date();var cf=this;var timer=window.setInterval(function(){if(cf._imagesToLoad==0||new Date()-now>cf._loadingTimeout){clearInterval(timer);cf._activeItem=cf.getItem(cf._currentPosition);if(cf._activeItem){cf._activeItem.makeActive();cf._setCaptionLabel(cf._activeItem.index);}
cf.Flow.style.visibility="visible";if(cf.loadIndicator)cf.loadIndicator.style.display="none";if(cf.Scrollbar)cf.Scrollbar.style.visibility="visible";cf.resize();for(var i=0;i<cf._loadedAddOns.length;i++){var a=ContentFlowGlobal.AddOns[cf._loadedAddOns[i]];if(a.methods.afterContentFlowInit)
a.methods.afterContentFlowInit(cf);}
cf.conf.onInit();}},10);this.isInit=true;},_initAddOns:function(){var loadAddOns=[];if(this._userConf.useAddOns){if(typeof this._userConf.useAddOns=="string"){loadAddOns=this._userConf.useAddOns.split(" ");}
else if(typeof this._userConf.useAddOns=="array"){loadAddOns=this._userConf.useAddOns;}}
else if(this.Container.getAttribute("useAddOns")){loadAddOns=this.Container.getAttribute("useAddOns").split(" ");}
else{loadAddOns=this.conf.useAddOns.split(' ');}
for(var i=0;i<loadAddOns.length;i++){if(loadAddOns[i]=="none"){loadAddOns=new Array();break;}
else if(loadAddOns[i]=="all"){loadAddOns=new Array();for(var AddOn in ContentFlowGlobal.AddOns)
loadAddOns.push(AddOn);break;}}
for(var i=0;i<loadAddOns.length;i++){var AddOn=ContentFlowGlobal.AddOns[loadAddOns[i]];if(AddOn){this._loadedAddOns.push(loadAddOns[i]);AddOn._init(this);this.Container.addClassName('ContentFlowAddOn_'+AddOn.name);if(AddOn.methods.onloadInit)
AddOn.methods.onloadInit(this);}}},_initGUI:function(){var resize=this.resize.bind(this);window.addEvent('resize',resize,false);var divs=this.Container.getElementsByTagName('div');for(var i=0;i<divs.length;i++){if($CF(divs[i]).hasClassName('preButton')){var pre=divs[i];var mt=this.conf.onclickPreButton;pre.addEvent('click',mt,false);}
else if(divs[i].hasClassName('nextButton')){var next=divs[i];var mt=this.conf.onclickNextButton;next.addEvent('click',mt,false);}}
if(this.conf.scrollWheelSpeed!=0){var wheel=this._wheel.bind(this);if(window.addEventListener)this.Container.addEventListener('DOMMouseScroll',wheel,false);this.Container.onmousewheel=wheel;}
var key=this._keyStroke.bind(this);if(this.conf.keys&&!this.Browser.iPhone){if(document.addEventListener){if(!this.Browser.Opera){var mouseoverCheck=document.createElement('div');mouseoverCheck.addClassName('mouseoverCheckElement');this.Container.appendChild(mouseoverCheck);if(this.Browser.WebKit){document.body.addEvent('keydown',function(event){if(mouseoverCheck.offsetLeft>0)key(event);});}else{window.addEvent('keydown',function(event){if(mouseoverCheck.offsetLeft>0)key(event);});}}
else{this.Container.addEvent('keydown',key);}}
else{this.Container.onkeydown=key;}}
if(this.conf.flowDragFriction>0){var onDrag=function(event){var e=event;if(event.touches)e=event.touches[0];var mouseX=e.clientX;var mouseY=e.clientY;if(this.conf.verticalFlow){var dist=mouseY-this.Flow.mouseY;var dim=this.Flow.dimensions.height;}
else{var dist=mouseX-this.Flow.mouseX;var dim=this.Flow.dimensions.width;}
var itemDist=(dist/dim)*(2*this.conf.visibleItems+1);var target=this._currentPosition-itemDist*2*this.conf.visibleItems/this.conf.flowDragFriction;this.Flow.mouseX=mouseX;this.Flow.mouseY=mouseY;this.moveToPosition(target,true);}.bind(this);var beforeDrag=function(){};var afterDrag=function(event){var t=Math.round(this._targetPosition);if(Math.abs(t-this._currentPosition)>0.001)
this.moveToPosition(t);}.bind(this);this.Flow.makeDraggable(onDrag,beforeDrag,afterDrag);}
if(this.Scrollbar){var click=function(event){if(!event)var event=window.event;if(!this.Scrollbar.clickLocked){var mouseX=event.clientX;var positionOnScrollbar=mouseX-this.Scrollbar.position.left;var targetIndex=Math.round(positionOnScrollbar/this.Scrollbar.dimensions.width*this.itemsLastIndex);this.moveToIndex(targetIndex);}
else
this.Scrollbar.clickLocked=false;}.bind(this);this.Scrollbar.addObserver('click',click);}
if(this.Slider){if(this.Browser.IE6){var virtualSlider=document.createElement('div');virtualSlider.className='virtualSlider';this.Slider.appendChild(virtualSlider);}
this.Slider.setPosition=function(relPos){relPos=relPos-Math.floor(relPos)+this._getIndexByPosition(Math.floor(relPos));if(Math.round(relPos)<0)
relPos=this.itemsLastIndex;else if(relPos<=0)
relPos=0;else if(Math.round(relPos)>this.itemsLastIndex)
relPos=0;else if(relPos>=this.itemsLastIndex)
relPos=this.itemsLastIndex;if(this.items.length>1){var sPos=(relPos/this.itemsLastIndex)*this.Scrollbar.dimensions.width;}else{var sPos=0.5*this.Scrollbar.dimensions.width;}
this.Slider.style.left=sPos-this.Slider.center.x+"px";this.Slider.style.top=this.Scrollbar.center.y-this.Slider.center.y+"px";}.bind(this);var beforeDrag=function(event){this.Scrollbar.clickLocked=true;}.bind(this);var onDrag=function(event){var e=event;if(event.touches)e=event.touches[0];var selectedIndex=this._checkIndex((e.clientX-this.Scrollbar.position.left)/this.Scrollbar.dimensions.width*this.itemsLastIndex);this._targetPosition=this._getPositionByIndex(selectedIndex);this.Slider.setPosition(selectedIndex);if(this.Position)this.Position.setLabel(selectedIndex);this._initStep(true,true);}.bind(this);var afterDrag=function(event){this._targetPosition=Math.round(this._targetPosition);this.conf.onMoveTo(this._getItemByPosition(this._targetPosition));this._initStep(true);}.bind(this);this.Slider.makeDraggable(onDrag,beforeDrag,afterDrag);}
if(this.Position){this.Position.setLabel=function(index){index=this._checkIndex(Math.round(index));if(this.items&&this.items[index].label)
this.Position.innerHTML=this.items[index].label.innerHTML;else
this.Position.innerHTML=index+1;}.bind(this);}
this.globalCaption=this.Container.getChildrenByClassName('globalCaption')[0];this.loadIndicator=this.Container.getChildrenByClassName('loadIndicator')[0];},_initSizes:function(x){this._initMaxHeight();var scrollbarHeight=this._initScrollbarSize();if(!this.conf.verticalFlow&&this.Container.style.height&&this.Container.style.height!="auto")
this.maxHeight-=scrollbarHeight;if(!this._activeItem)return;var mFS=this._findBiggestItem();var pF=this.Flow.findPos();if(this.conf.verticalFlow){this.Flow.style.width=mFS.width.width+"px";this.Flow.style.height=3*mFS.width.width*(1+this.conf.reflectionHeight+this.conf.reflectionGap)+"px";}else{this.Flow.style.height=mFS.height.height+(mFS.height.top-pF.top)+"px";}
var s=this.conf.verticalFlow?mFS.width.width:mFS.height.height;var cH=s/(1+this.conf.reflectionHeight+this.conf.reflectionGap);this.Flow.style.marginBottom=-(s-cH)+"px";this.Flow.dimensions=this.Flow.getDimensions();if(!this.Browser.IE6){if(this.conf.verticalFlow&&this.Container.clientWidth<this.Flow.dimensions.width){}
else if(this.Container.clientHeight<this.Flow.dimensions.height){this.Container.style.height=this.Flow.dimensions.height+"px";}}
if(this.conf.verticalFlow){this.Flow.center={x:this.Flow.dimensions.height/2,y:mFS.width.width/2};}else{this.Flow.center={x:this.Flow.dimensions.width/2,y:mFS.height.height/2};}},_initScrollbarSize:function(){var SB;var SL;var PO;if(SB=this.Scrollbar){SB.setDimensions();var scrollbarHeight=SB.dimensions.height;if(SL=this.Slider){SL.setDimensions();scrollbarHeight+=SL.dimensions.height;if(PO=this.Position){var oldLabel=PO.innerHTML;var maxH=maxW=0;PO.style.width="auto";if(this.items){for(var i=0;i<this.items.length;i++){var item=this.items[i];if(item.label){PO.innerHTML=item.label.innerHTML;}
else{PO.innerHTML=item.index;}
var h=PO.clientHeight;var w=PO.clientWidth;if(h>maxH)maxH=h;if(w>maxW)maxW=w;}}
else{PO.innerHTML="&nbsp;";maxH=PO.clientHeight;maxW=PO.clientWidth;}
PO.innerHTML=oldLabel;PO.setDimensions();PO.style.width=maxW+"px";PO.style.left=(SL.dimensions.width-maxW)/2+"px";var extraSpace=PO.position.top-SL.position.top;if(extraSpace>0){extraSpace+=-SB.dimensions.height+maxH;SB.style.marginBottom=extraSpace+"px";}
else{extraSpace*=-1;SB.style.marginTop=extraSpace+"px";}
scrollbarHeight+=extraSpace;}}}
else{scrollbarHeight=0;}
return scrollbarHeight;},_initMaxHeight:function(){if(this.conf.verticalFlow){var proportion=screen.width/screen.height;var Csd=this.Container.style.width;var Cdim=this.Container.clientWidth;var Fsd=this.Flow.style.width;var Fdim=this.Flow.clientWidth;var Fdim_o=this.Flow.clientHeight;}else{var proportion=screen.height/screen.width;var Csd=this.Container.style.height;var Cdim=this.Container.clientHeight;var Fsd=this.Flow.style.height;var Fdim=this.Flow.clientHeight;var Fdim_o=this.Flow.clientWidth;}
if(this.ContainerOldDim)
Csd=this.ContainerOldDim;if(this.FlowOldDim)
Fsd=this.FlowOldDim;this.ContainerOldDim="auto";this.FlowOldDim="auto";if(this.conf.maxItemHeight<=0){this.maxHeight=Fdim_o/3*proportion/1*this.conf.scaleFactor;if(this.conf.verticalFlow&&(this.maxHeight==0||this.maxHeight>Fdim)){this.maxHeight=Fdim;}
if(Csd&&Csd!="auto"){var gap=this.conf.verticalFlow?0:this.conf.reflectionGap;var rH=this.conf.verticalFlow?0:this.conf.reflectionHeight;this.maxHeight=Cdim/(this.conf.scaleFactor*(1+rH+gap));this.ContainerOldDim=Csd;}
else if(Fsd&&Fsd!="auto"){var gap=this.conf.verticalFlow?0:this.conf.reflectionGap;this.maxHeight=Fdim/(this.conf.scaleFactor*(1+this.conf.reflectionHeight+gap));this.FlowOldDim=Fsd;}}
else{this.maxHeight=this.conf.maxItemHeight;}},_findBiggestItem:function(){var currentItem=this._activeItem;var itemP=currentItem.pre;var itemN=currentItem.next;var mFS=maxFlowSize={width:{width:0,left:0,height:0,top:0,item:null,rI:0},height:{width:0,left:0,height:0,top:0,item:null,rI:0}}
var checkMax=function(item,rI){var el=item.element;el.style.display="block";var p=el.findPos();var h=el.clientHeight;var w=el.clientWidth;if(h+p.top>=mFS.height.height+mFS.height.top){mFS.height.height=h;mFS.height.top=p.top;mFS.height.item=item;mFS.height.rI=rI;}
if(w+p.left>=mFS.width.width+mFS.width.left){mFS.width.width=w;mFS.width.left=p.left;mFS.width.item=item;mFS.width.rI=rI;}
el.style.display="none";}
var ocp=this._currentPosition;this._currentPosition=this.conf.visibleItems+1;for(var i=-this.conf.visibleItems;i<=this.conf.visibleItems;i++){currentItem.element.style.display="none";this._positionItem(currentItem,i);checkMax(currentItem,i);}
var index=mFS.height.rI;for(var i=0;i<this.items.length;i++){var item=this.items[i];item.element.style.display="none";this._positionItem(item,index);checkMax(item,index);}
this._currentPosition=ocp;return mFS},_keyStroke:function(event){if(!event)var event=window.event;if(event.which){var keyCode=event.which;}else if(event.keyCode){var keyCode=event.keyCode;}
if(this.conf.keys[keyCode]){this.conf.keys[keyCode].bind(this)();return Event.stop(event);}
else{return true;}},_wheel:function(event){if(!event)var event=window.event;var delta=0;if(event.wheelDelta){delta=event.wheelDelta/120;}else if(event.detail){delta=-event.detail/3;}
if(delta){var target=this._targetPosition;if(delta<0){target+=(1*this.conf.scrollWheelSpeed);}else{target-=(1*this.conf.scrollWheelSpeed);}
this.moveToPosition(Math.round(target));}
return Event.stop(event);},_setGlobalCaption:function(){if(this.globalCaption){this.globalCaption.innerHTML='';if(this._activeItem&&this._activeItem.caption)
this.globalCaption.appendChild(this._activeItem.caption.cloneNode(true));}},_initStep:function(holdSlider,holdPos){if(this.Slider){if(holdSlider){this.Slider.locked=true;}else{this.Slider.locked=false;}}
this._holdPos=holdPos==true?true:false;if(!this._stepLock){this._stepLock=true;this._step();}},_step:function(){var diff=this._targetPosition-this._currentPosition;var absDiff=Math.abs(diff);if(absDiff>0.001){this._currentPosition+=this.conf.flowSpeedFactor*this.conf.calcStepWidth(diff,absDiff,this.items.length,this.conf.visibleItems);var AI=this.items[(this._getIndexByPosition(this._currentPosition))];if(AI&&AI!=this._activeItem){if(this._activeItem)this._activeItem.makeInactive();this._activeItem=AI;this._activeItem.makeActive();this._setCaptionLabel(this._activeItem.index);if(Math.abs(this._targetPosition-this._currentPosition)<=0.5)this.conf.onReachTarget(this._activeItem);}
this._positionItems();var st=this._step.bind(this);window.setTimeout(st,this._millisecondsPerStep);}else if(!this._holdPos){if(this.Slider)this.Slider.locked=false;this._currentPosition=Math.round(this._currentPosition);if(this.Position&&!this.Slider.locked&&this._activeItem){this._setCaptionLabel(this._activeItem.index);}
this._positionItems();this._stepLock=false;}else{this._stepLock=false;}
if(this.Slider&&!this.Slider.locked){this.Slider.setPosition(this._currentPosition);}},_positionItems:function(){if(this._lastStart){var item=this._lastStart;while(item){item.element.style.display="none";item=item.next;if(item==this._lastStart)break;if(item&&item.pre==this._lastEnd)break;}}
else{this._lastStart=this._activeItem;}
if(!this._activeItem)return;var currentItem=this._activeItem;var itemP=currentItem.pre;var itemN=currentItem.next;this._positionItem(currentItem,0);for(var i=1;i<=this.conf.visibleItems&&2*i<this.items.length;i++){if(itemP){this._positionItem(itemP,-i);this._lastStart=itemP;itemP=itemP.pre;}
if(itemN){this._positionItem(itemN,i);this._lastEnd=itemN;itemN=itemN.next;}}},_positionItem:function(item,relativeIndex){var conf=this.conf;var vF=conf.verticalFlow;var els=item.element.style;var p=item.position=this._currentPosition+relativeIndex;var relativePosition=item.relativePosition=Math.round(p)-this._currentPosition;var relativePositionNormed=item.relativePositionNormed=conf.visibleItems>0?relativePosition/conf.visibleItems:0;var side=relativePosition<0?-1:1;side*=relativePosition==0?0:1;item.side=side;var size=conf.calcSize(item);size.height=Math.max(size.height,0);size.width=Math.max(size.width,0);if(item.content.origProportion)size=this._scaleImageSize(item,size);item.size=size;var coords=item.coordinates=conf.calcCoordinates(item);var relItemPos=item.relativeItemPosition=conf.calcRelativeItemPosition(item);var zIndex=item.zIndex=conf.calcZIndex(item);var fontSize=item.fontSize=conf.calcFontSize(item);var opacity=item.opacity=conf.calcOpacity(item);size.height*=this.maxHeight;size.width*=this.maxHeight;var sA=vF?size.height:size.width;var sB=vF?size.width:size.height;var pX=this.Flow.center.x*(1+coords.x)+(relItemPos.x-1)*sA/2;var pY=this.maxHeight/2*(1+coords.y)+(relItemPos.y-1)*sB/2;els.left=(vF?pY:pX)+"px";els.top=(vF?pX:pY)+"px";this._setItemSize(item,size);if(conf.endOpacity!=1){this._setItemOpacity(item);}
if(!this.Browser.IE)els.fontSize=(fontSize*100)+"%";els.zIndex=32768+Math.round(zIndex*this.items.length);conf.onDrawItem(item);els.visibility="visible";els.display="block";},_scaleImageSize:function(item,size,max){var sFL=this.conf.scaleFactorLandscape;var sFP=this.conf.scaleFactorPortrait;var vF=this.conf.verticalFlow;var prop=item.content.origProportion;var width=size.width;var height=size.height;var c=item.content;if(vF){if(prop<=1){if(sFL!="max"&&sFL!=1){height*=sFL;width=Math.min(height*prop,max?max:1);}
height=width/prop;}
else if(prop>1){if(sFP=="max"){height=max?max:1;}
else if(sFP!=1){width*=sFP;height=Math.min(width/prop,max?max:1)}
else{height=width/prop;}
width=height*prop;}}
else{if(prop>1){if(sFL!="max"&&sFL!=1){width*=sFL;height=Math.min(width/prop,max?max:1);}
width=height*prop;}
else if(prop<=1){if(sFP=="max"){width=max?max:1;}
else if(sFP!=1){height*=sFP;width=Math.min(height*prop,max?max:1);}
else{width=height*prop;}
height=width/prop;}}
height=isNaN(height)?0:height;width=isNaN(width)?0:width;if(!max&&this.conf.fixItemSize){var propS=size.width/size.height;var max=Math.max(size.width,size.height);var s=this._scaleImageSize(item,{width:max,height:max},max);if(propS<1){height=s.height/size.height;width=height*prop/propS;}
else{width=s.width/size.width;height=width/prop*propS;}
var h=height*100;var w=width*100;var mL=(1-width)/2*100;var mT=(1-height)/propS*100*(vF?0.5:1);c.style.height=h+"%";if(item.reflection)item.reflection.style.height=h*this.conf.reflectionHeight+"%";c.style.width=w+"%";if(item.reflection)item.reflection.style.width=w+"%";c.style.marginLeft=mL+"%";if(item.reflection)item.reflection.style.marginLeft=mL+"%";c.style.marginTop=mT+"%";item.element.style.overflow="hidden";return size;}
else{return{width:width,height:height};}},_setItemSize:(function(){if(ContentFlowGlobal.Browser.IE){var _setItemSize=function(item,size){if(!this.conf.fixItemSize){item.content.style.height=size.height+"px";}
else if(ContentFlowGlobal.Browser.IE6){var h=parseInt(item.content.style.height)/100;item.content.style.height=size.height*h+"px";var mT=parseInt(item.content.style.marginTop)/100;item.content.style.marginTop=size.height*mT+"px";}
if(item.reflection){var h=parseInt(item.content.style.height);item.reflection.style.height=h*this.conf.reflectionHeight+"px";item.reflection.style.marginTop=h*this.conf.reflectionGap+"px";}
item.element.style.width=size.width+"px";item.element.style.height=size.height*(1+this.conf.reflectionHeight+this.conf.reflectionGap)+"px";}}
else{var _setItemSize=function(item,size){if(item.reflection){item.element.style.height=size.height*(1+this.conf.reflectionHeight+this.conf.reflectionGap)+"px";item.reflection.style.marginTop=size.height*this.conf.reflectionGap+"px";}
else if(this._reflectionWithinImage){item.element.style.height=size.height*(1+this.conf.reflectionHeight+this.conf.reflectionGap)+"px";}
else{item.element.style.height=size.height+"px";}
item.element.style.width=size.width+"px";}}
return _setItemSize;})(),_setItemOpacity:(function(){if(ContentFlowGlobal.Browser.IE6){var _setItemOpacity=function(item){if(item.content.origSrc&&item.content.origSrc.match(/\.png$/)){var s=item.content.src;item.content.src=item.content.origSrc;item.content.style.filter=item.content.filterString+" progid:DXImageTransform.Microsoft.BasicImage(opacity="+item.opacity+")";item.content.src=s;}
else{item.content.style.filter="progid:DXImageTransform.Microsoft.BasicImage(opacity="+item.opacity+")";}
if(item.reflection)item.reflection.style.filter=item.reflection.filterString+"progid:DXImageTransform.Microsoft.BasicImage(opacity="+item.opacity+")";}}
else if(ContentFlowGlobal.Browser.IE){var _setItemOpacity=function(item){item.element.style.filter="progid:DXImageTransform.Microsoft.BasicImage(opacity="+item.opacity+")";}}
else{var _setItemOpacity=function(item){item.element.style.opacity=item.opacity;}}
return _setItemOpacity;})()};if(!Function.bind){Function.prototype.bind=function(obj){var method=this;return function(){return method.apply(obj,arguments);};};}
if(!Math.erf2){Math.erf2=function(x){var a=-(8*(Math.PI-3)/(3*Math.PI*(Math.PI-4)));var x2=x*x;var f=1-Math.pow(Math.E,-x2*(4/Math.PI+a*x2)/(1+a*x2));return f;};}
if(!Math._2PI05){Math._2PI05=Math.sqrt(2*Math.PI);}
if(!Math.normDist){Math.normDist=function(x,sig,mu){if(!sig)var sig=1;if(!mu)var mu=0;if(!x)var x=-mu;return 1/(sig*Math._2PI05)*Math.pow(Math.E,-(x-mu)*(x-mu)/(2*sig*sig));};}
if(!Math.normedNormDist){Math.normedNormDist=function(x,sig,mu){return this.normDist(x,sig,mu)/this.normDist(mu,sig,mu);};}
if(!Math.exp){Math.exp=function(x){return Math.pow(Math.E,x);};}
if(!Math.ln){Math.ln=Math.log;}
if(!Math.log2){Math.log2=function(x){return Math.log(x)/Math.LN2;};}
if(!Math.log10){Math.log10=function(x){return Math.log(x)/Math.LN10;};}
if(!Math.logerithm){Math.logerithm=function(x,b){if(!b||b==Math.E)
return Math.log(x);else if(b==2)
return Math.log2(x);else if(b==10)
return Math.log10(x);else
return Math.log(x)/Math.log(b);};}
if(!Event)var Event={};if(!Event.stop){Event.stop=function(event){event.cancelBubble=true;if(event.preventDefault)event.preventDefault();if(event.stopPropagation)event.stopPropagation();return false;};}
if(document.all&&!window.opera){window.$CF=function(el){if(typeof el=="string"){return window.$CF(document.getElementById(el));}
else{if(CFElement.prototype.extend&&el&&!el.extend)CFElement.prototype.extend(el);}
return el;};}else{window.$CF=function(el){return el;};}
if(!window.HTMLElement){CFElement={};CFElement.prototype={};CFElement.prototype.extend=function(el){for(var method in this){if(!el[method])el[method]=this[method];}};}
else{CFElement=window.HTMLElement;}
if(!CFElement.findPos){CFElement.prototype.findPos=function(){var obj=this;var curleft=curtop=0;try{if(obj.offsetParent){curleft=obj.offsetLeft;curtop=obj.offsetTop;while(obj=obj.offsetParent){curleft+=obj.offsetLeft;curtop+=obj.offsetTop;}}}
catch(ex){}
return{left:curleft,top:curtop};};}
if(!CFElement.getDimensions){CFElement.prototype.getDimensions=function(){return{width:this.clientWidth,height:this.clientHeight};};}
if(!CFElement.hasClassName){CFElement.prototype.hasClassName=function(className){return(new RegExp('\\b'+className+'\\b').test(this.className));};}
if(!CFElement.addClassName){CFElement.prototype.addClassName=function(className){if(!this.hasClassName(className)){this.className+=(this.className?' ':'')+className;}};}
if(!CFElement.removeClassName){CFElement.prototype.removeClassName=function(className){this.className=this.className.replace(new RegExp('\\b'+className+'\\b'),'').replace(/\s\s/g,' ');};}
if(!CFElement.toggleClassName){CFElement.prototype.toggleClassName=function(className){if(this.hasClassName(className)){this.removeClassName(className);}else{this.addClassName(className);}};}
if(!CFElement.getChildrenByClassName){CFElement.prototype.getChildrenByClassName=function(className){var children=new Array();for(var i=0;i<this.childNodes.length;i++){var c=this.childNodes[i];if(c.nodeType==1&&$CF(c).hasClassName(className)){children.push(c);}}
return children;};}
if(!CFElement.addEvent){CFElement.prototype.addEvent=function(eventName,method,capture){if(this.addEventListener)
this.addEventListener(eventName,method,capture);else
this.attachEvent('on'+eventName,method);};}
if(!CFElement.removeEvent){CFElement.prototype.removeEvent=function(eventName,method,capture){if(this.removeEventListener)
this.removeEventListener(eventName,method,capture);else
this.detachEvent('on'+eventName,method);};}
if(!window.addEvent){window.addEvent=function(eventName,method,capture){if(this.addEventListener){this.addEventListener(eventName,method,capture);}else{if(eventName!='load'&&eventName!='resize')
document.attachEvent('on'+eventName,method);else
this.attachEvent('on'+eventName,method);}};}
if(!window.removeEvent){window.removeEvent=function(eventName,method,capture){if(this.removeEventListener){this.removeEventListener(eventName,method,capture);}else{if(eventName!='load'&&eventName!='resize')
document.detachEvent('on'+eventName,method);else
this.detachEvent('on'+eventName,method);}};}
ContentFlowGlobal.init();;$(document).ready(function(){if($('#myGallery').length!=0){$('#myGallery').spacegallery({loadingClass:'loading'});}
if($('ul#myRoundabout').length!=0){$('ul#myRoundabout').roundabout();}
$(".contact").colorbox({transition:"fade",width:"507px",height:"306px",opacity:"0.5",scrolling:false,iframe:true});$("a#img1").bind("click",{lnk:'1'},clicklink)
$("a#img2").bind("click",{lnk:'2'},clicklink)
$("a#img3").bind("click",{lnk:'3'},clicklink)});function clicklink(event)
{if(event.data.lnk=='1')
{$('#image1').insertAfter($('#image2'));$('#image1').toggle('slow');if($('#image2').css('display')!='none')
$('#image2').toggle('slow');if($('#image3').css('display')!='none')
$('#image3').toggle('slow');$('span.imlink').each(function(i){$(this).after('<a href="javascript:void(0);" class="imagelink" id="img'+$(this).html()+'" title="show image">'+$(this).html()+'</a>');$("a#img"+$(this).html()).bind("click",{lnk:$(this).html()},clicklink)
$(this).remove();});var lnk=$(this).html();$(this).after('<span class="imlink">'+lnk+'</span>');$(this).remove();}
else if(event.data.lnk=='2')
{$('#image2').insertAfter($('#image1'));$('#image2').toggle('slow');if($('#image1').css('display')!='none')
$('#image1').toggle('slow');if($('#image3').css('display')!='none')
$('#image3').toggle('slow');$('span.imlink').each(function(i){$(this).after('<a href="javascript:void(0);" class="imagelink" id="img'+$(this).html()+'" title="show image">'+$(this).html()+'</a>');$("a#img"+$(this).html()).bind("click",{lnk:$(this).html()},clicklink)
$(this).remove();});var lnk=$(this).html();$(this).after('<span class="imlink">'+lnk+'</span>');$(this).remove();}
else
{$('#image3').insertAfter($('#image1'));$('#image3').toggle('slow');if($('#image1').css('display')!='none')
$('#image1').toggle('slow');if($('#image2').css('display')!='none')
$('#image2').toggle('slow');$('span.imlink').each(function(i){$(this).after('<a href="javascript:void(0);" class="imagelink" id="img'+$(this).html()+'" title="show image">'+$(this).html()+'</a>');$("a#img"+$(this).html()).bind("click",{lnk:$(this).html()},clicklink)
$(this).remove();});var lnk=$(this).html();$(this).after('<span class="imlink">'+lnk+'</span>');$(this).remove();}};eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('B F={2W:[],4F:8(){5(Y.1t){Y.5U(\'<11 57="5C/6p">.1R-5G-4T {3B: 2m !6a;}</11>\')};M.V(16,\'5m\',M.5E)},3O:8(g){B h=Y,J=16,23=6F;5(!h.1t||!h.4M)C;5(33(g)==\'3I\')g=Y.1t(g);5(g==Z||23.3b.2B(\'62\')!=-1||((23.3b.2B(\'6U\')!=-1||23.3b.2B(\'7d\')!=-1)&&!(33(5e)!="6x"&&5e.74))||23.7k==\'6h\'||(23.79.2B(\'7o\')!=-1&&23.3b.2B(\'70\')!=-1)){5(g!=Z)2b(g,\'1R-7g\',\'1R-5G-4T\');5(16.50)16.50(g);C};5(g.14){g.14.1G();C};5(F.5u(g))C;5(!g.1M||g.1M==\'\'){B k="6M",c=1;1B(Y.1t(k+c)!=Z){c++};g.1M=k+c}g.4I=2q 5q();g.14=2q 5q();B l=g.1M,4=g.4I,I=g.14;4.27={5Y:[\'-1s\',0],6Y:[0,\'-1s\'],6t:[\'1s\',0],7s:[0,\'1s\'],7f:[0,\'-1p\'],6e:[0,\'1p\'],7u:[0,\'-4W\'],77:[0,\'+4W\']};4.3R=["-2s","2s"];4.41=["-2s","2s"];4.1V=[[A,A],[A,A]];B m=T(\'6I\',E),H=T(\'7m\',E),G=T(\'66\',E),1l=T(\'72\',E);B o=T(\'7q\',E),1x=T(\'6B\',E),37=A;1l.D.1K=\'4P 5i 7i\';1l.2e();g.11.3B=\'2m\';1x.D.6l="7b";1x.D.1Z="53";1x.D.13="53";1x.D.1O="3h";1x.D.21="-6Q";1x.2e();B p=g.15,5y=g.1q;2u(g,1l,\'1g\',[\'1K-1b-13\',\'1K-25-13\',\'1K-1e-13\',\'1K-2g-13\']);B q=g.15,5k=g.1q,3D=5y-5k,43=p-q;B s=(g.2c)?g.2c:0,59=(g.2i)?g.2i:0;B t=Y.2Y.1f,3Q=/#([^#.]*)$/;B u=[\'5W\',\'6r\',\'6S\'];4.O=[];4.29=[];4.6c=4.U=[];4.6H=4.1I=[];4.1Q=[A,A];4.2D=A;4.2G=A;4.17=[];4.1T=[0,0];4.1v=[];4.3K=[];4.19=[];4.2o=[A,A];4.2x=[0,0];1B(g.4N){m.1a(g.4N)};m.1a(o);g.1a(H);g.1a(1l);B w=P(g,\'1O\');5(w!=\'3h\'&&w!=\'5g\'){g.11.1O=w="35"};5(w==\'5g\')g.11.1O="3h";B x=P(g,\'5C-64\');g.11.5s=\'1b\';H.D.13="52";H.D.1Z="52";H.D.1e="1g";H.D.1b="1g";2u(g,1l,"1g",[\'N-1b\',\'N-1e\',\'N-25\',\'N-2g\']);B y=g.1q,5w=g.15,48;48=H.15;H.D.6j="6O 5i 6z";5(H.15>48)37=E;H.D.6W="1g";2u(1l,g,A,[\'N-1b\',\'N-1e\',\'N-25\',\'N-2g\']);1N(H);1N(g);4.19[0]=H.1D-g.1D;4.19[2]=H.1F-g.1F;g.11.5o=P(g,"N-2g");g.11.5A=P(g,"N-25");1N(H);1N(g);4.19[1]=H.1D-g.1D;4.19[3]=H.1F-g.1F;g.11.5o=P(1l,"N-1e");g.11.5A=P(1l,"N-1b");B z=4.19[2]+4.19[3],3G=4.19[0]+4.19[1];g.11.1O=w;H.11.5s=x;2u(g,H,A,[\'N-1b\',\'N-25\',\'N-1e\',\'N-2g\']);G.D.13=g.1q+\'K\';G.D.1Z=g.15+\'K\';H.D.13=y+\'K\';H.D.1Z=5w+\'K\';G.D.1O=\'3h\';G.D.1e=\'1g\';G.D.1b=\'1g\';4.31=G.D.21;H.1a(m);g.1a(G);G.1a(1x);m.D.1O=\'35\';H.D.1O=\'35\';m.D.1e="0";m.D.13="46%";H.D.3B=\'2m\';H.D.1b="-"+4.19[2]+"K";H.D.1e="-"+4.19[0]+"K";4.4h=1x.15;4.3l=8(){B a=m.60,3p=6v=0;1n(B i=0;i<a.2y;i++){5(a[i].1q){3p=R.1X(a[i].1q,3p)}};4.U[0]=((4.17[1]&&!4.1v[1])||4.29[1])?g.1q-4.1T[0]:g.1q;4.1I[0]=3p+z;C 4.1I[0]};4.3f=8(){4.U[1]=((4.17[0]&&!4.1v[0])||4.29[0])?g.15-4.1T[1]:g.15;4.1I[1]=m.15+3G-2;C 4.1I[1]};4.4K=8(){m.D.2K=\'3T\';m.D.2K=\'6g\'};4.4d=8(){H.D.13=(37)?(4.U[0]-z-3D)+\'K\':4.U[0]+\'K\'};4.4l=8(){H.D.1Z=(37)?(4.U[1]-3G-43)+\'K\':4.U[1]+\'K\'};4.2O=8(){4.3l();4.3f();G.2U=2q 4j();B a=G.2U;2O(a,\'6K\',1);a.2S=[1j(P(a.7,\'N-1e\')),1j(P(a.7,\'N-2g\'))];a.7.D.N=\'1g\';a.7.Q=0;a.7.39=E;a.7.2w=1;m.4R=a.7;3M(a,0);4.1T[0]=(4.2o[1])?0:a.1k.1q;4.4d();G.3n=2q 4j();B b=G.3n;2O(b,\'68\',0);b.2S=[1j(P(b.7,\'N-1b\')),1j(P(b.7,\'N-25\'))];b.7.D.N=\'1g\';b.7.Q=0;b.7.39=A;b.7.2w=0;m.6D=b.7;5(J.55)b.7.D.1O=\'35\';3M(b,0);4.1T[1]=(4.2o[0])?0:b.1k.15;4.4l();G.D.1Z=g.15+\'K\';b.2I=T(\'6n\');G.1a(b.2I);b.2I.4a=8(){b.7.3j=E;4.1L=b.7;b.7.3t=E;b.7.2z=A;G.2U.7.2z=A;F.V(h,\'3Y\',1P);F.V(h,\'2M\',3r);F.V(h,\'3v\',2Q);C A}};4.1L=Z;4.2O();M.4f(o,G);5(!M.1z(g,\'4Y\',2A)||!M.1z(g,\'5c\',2A)){g.5V=2A};M.1z(g,\'4Y\',2A);M.1z(g,\'5c\',2A);M.1z(m,\'4G\',3C);M.1z(G,\'4G\',3C);g.6b(\'6G\',\'0\');M.V(g,\'6q\',8(e){5(g.2X)C;5(!e){B e=J.1m};B a=e.58;4.5D=a;I.24();5(4.27[\'1S\'+a]&&!16.55){I.1h(4.27[\'1S\'+a][0],4.27[\'1S\'+a][1],E);5(e.1u)e.1u();C A}});M.V(g,\'63\',8(e){5(g.2X)C;5(!e){B e=J.1m};B a=e.58;5(4.27[\'1S\'+a]){I.1h(4.27[\'1S\'+a][0],4.27[\'1S\'+a][1],E);5(e.1u)e.1u();C A}});M.V(g,\'6y\',8(){4.5D=A});M.V(h,\'3v\',2C);M.V(g,\'4U\',3P);8 3P(e){5(!e)e=J.1m;B a=(e.18)?e.18:(e.1C)?e.1C:A;5(!a||(a.1r&&a.1r.X(3c("\\\\6i\\\\b"))))C;4.5n=e.2f;4.5J=e.2l;34();1N(g);2C();F.V(h,\'2M\',3J);4.2J=[g.1F+10,g.1F+4.U[0]-10,g.1D+10,g.1D+4.U[1]-10]};8 3J(e){5(!e)e=J.1m;B a=e.2f,4i=e.2l,4x=a+4.4B,42=4i+4.4z;4.4D=(4x<4.2J[0]||4x>4.2J[1])?1:0;4.4E=(42<4.2J[2]||42>4.2J[3])?1:0;4.4s=a-4.5n;4.4C=4i-4.5J;4.3q=(4.4s>40)?1:(4.4s<-40)?-1:0;4.3i=(4.4C>40)?1:(4.4C<-40)?-1:0;5((4.3q!=0||4.3i!=0)&&!4.2j)4.2j=J.2R(8(){5(4.3q==0&&4.3i==0){J.2n(4.2j);4.2j=A;C};34();5(4.4D==1||4.4E==1)I.1h((4.3q*4.4D)+"s",(4.3i*4.4E)+"s",E)},45)};8 2C(){F.1H(h,\'2M\',3J);5(4.2j)J.2n(4.2j);4.2j=A;5(4.3V)J.51(4.3V);5(4.4b)J.2n(4.4b)};8 3x(a){5(4.2G){16.2n(4.2G);4.2G=A}5(!a)G.D.21=4.31};8 34(){4.4B=(J.5v)?J.5v:(h.2t&&h.2t.2i)?h.2t.2i:0;4.4z=(J.5f)?J.5f:(h.2t&&h.2t.2c)?h.2t.2c:0};I.4o=8(){1n(B j=0,3F;3F=u[j];j++){B a=g.30(3F);1n(B i=0,2r;2r=a[i];i++){5(!2r.4J){F.V(2r,\'5Z\',8(){g.2X=E});F.V(2r,\'6J\',6R=8(){g.2X=A});2r.4J=E}}}};g.6u=I.1G=8(a){5(G.W[1]()===0||G.W[0]()===0)C;m.D.N=\'4P\';B b=4.17[0],5b=4.17[1],47=G.2U,2F=G.3n,3e,3u,2T=[];G.D.13=g.1q-3D+\'K\';G.D.1Z=g.15-43+\'K\';2T[0]=4.U[0];2T[1]=4.U[1];4.17[0]=4.3l()>4.U[0];4.17[1]=4.3f()>4.U[1];B c=(b!=4.17[0]||5b!=4.17[1]||2T[0]!=4.U[0]||2T[1]!=4.U[1])?E:A;47.1k.3S(4.17[1]);2F.1k.3S(4.17[0]);3e=(4.17[1]||4.29[1]);3u=(4.17[0]||4.29[0]);4.3l();4.3f();4.4l();4.4d();5(!4.17[0]||!4.17[1]||4.1v[0]||4.1v[1])2F.2I.2e();1i 2F.2I.38();5(3e)3y(47,(3u&&!4.1v[0])?4.1T[1]:0);1i m.D.1e="0";5(3u)3y(2F,(3e&&!4.1v[1])?4.1T[0]:0);1i m.D.1b="0";5(c&&!a)I.1G(E);m.D.N=\'1g\';4.1Q[0]=4.1Q[1]=A};g.6f=I.1h=8(a,b,c,d){B e;5((a||a===0)&&4.O[0]){a=4u(a,0);e=G.3n.7;e.1c=(c)?R.28(R.1X(e.1J,e.1c-a),0):-a;e.3m()}5((b||b===0)&&4.O[1]){b=4u(b,1);e=G.2U.7;e.1c=(c)?R.28(R.1X(e.1J,e.1c-b),0):-b;e.3m()}5(!c)4.1Q[0]=4.1Q[1]=A;5(g.3z&&!d)g.3z();C 4.1V};I.4m=8(a,b){C I.1h(a,b,E)};I.3A=8(a){5(a==Z||!4X(a))C;B b=4Q(a);I.1h(b[0]+4.19[2],b[1]+4.19[0],A);I.1h(0,0,E)};2u(1l,g,\'1g\',[\'1K-1b-13\',\'1K-25-13\',\'1K-1e-13\',\'1K-2g-13\']);M.4f(1l,G);g.2c=0;g.2i=0;I.4o();M.2W[M.2W.2y]=g;2b(g,\'67\',A);I.1G();I.1h(59,s,E);5(t.X(3Q)){I.3A(h.1t(t.X(3Q)[1]))};4.7c=J.2R(8(){B n=1x.15;5(n!=4.4h){I.1G();4.4h=n}},6V);8 4u(v,i){B a=v.7j();v=6C(a);C 1j((a.X(/p$/))?v*4.U[i]*0.9:(a.X(/s$/))?v*4.U[i]*0.1:v)};8 P(a,b){C F.P(a,b)};8 2u(a,b,c,d){B e=2q 4j();1n(B i=0;i<d.2y;i++){e[i]=F.4e(d[i]);b.11[e[i]]=P(a,d[i],e[i]);5(c)a.11[e[i]]=c}};8 T(b,c,d,e){B f=(d)?d:h.4M(\'4q\');5(!d){f.1M=l+\'1S\'+b;f.1r=(c)?b:b+\' 73\'};f.W=[8(){C f.1q},8(){C f.15}];f.2N=(e)?[1P,1P]:[8(a){f.D.13=a},8(a){f.D.1Z=a}];f.5j=[8(){C P(f,"1b")},8(){C P(f,"1e")}];f.1y=(e)?[1P,1P]:[8(a){f.D.1b=a},8(a){f.D.1e=a}];f.2e=8(){f.D.2V="2m"};f.38=8(a){f.D.2V=(a)?P(a,\'2V\'):"6m"};f.D=f.11;C f};8 2O(a,b,c){B d=Y.1t(l+\'-1R-\'+b);B e=(d!=Z)?E:A;5(e){a.1k=T(A,A,d,E);4.2o[c]=E;a.2v=T(b+\'54\');a.1W=T(b+\'5z\');a.7=T(A,A,F.3X(d,\'4q\',\'1R-6N\')[0]);a.20=T(b+\'5r\');a.1E=T(b+\'5H\')}1i{a.1k=T(b+\'6Z\');a.2v=T(b+\'54\');a.1W=T(b+\'5z\');a.7=T(b+\'78\');a.20=T(b+\'5r\');a.1E=T(b+\'5H\');G.1a(a.1k);a.1k.1a(a.7);a.1k.1a(a.2v);a.1k.1a(a.1W);a.7.1a(a.20);a.7.1a(a.1E)}};8 3M(b,c){B d=b.1k,7=b.7,i=7.2w;7.1c=0;7.2E=b.2S[0];7.2Z=d;7.H=H;7.4H=m;7.1w=0;3y(b,c,E);7.3E=8(a){5(!a)7.Q=1j((7.1c*7.26)/7.1J);7.Q=(R.28(R.1X(7.Q,0),7.26));7.1y[i](7.Q+7.2E+"K");5(!7.1w)7.1w=7.1c-1j((7.Q/7.3d)*7.1J);7.1w=(7.Q==0)?0:(7.Q==7.26)?0:(!7.1w)?0:7.1w;5(a){7.1c=1j((7.Q/7.3d)*7.1J);m.1y[i](7.1c+7.1w+"K");4.1V[i]=[-7.1c-7.1w,-7.1J]}};7.3m=8(){7.Q=1j((7.1c*7.3d)/7.1J);7.Q=(R.28(R.1X(7.Q,0),7.26));m.1y[i](7.1c+"K");4.1V[i]=[-7.1c,-7.1J];7.1w=A;7.3E(A)};4.2L=P(7,\'z-5a\');7.D.21=(4.2L=="5X"||4.2L=="0"||4.2L==\'6X\')?2:4.2L;H.D.21=P(7,\'z-5a\');7.4a=8(){7.3t=E;4.1L=7;7.3j=A;7.2z=A;F.V(h,\'3Y\',1P);F.V(h,\'2M\',3r);F.V(h,\'3v\',2Q);C A};7.6s=2C;d.4a=d.7A=8(e){5(!e){B e=J.1m};5(e.18&&(e.18==b.20||e.18==b.1E||e.18==b.7))C;5(e.1C&&(e.1C==b.20||e.1C==b.1E||e.1C==b.7))C;B a,2k=[];34();I.24();1N(7);a=(7.39)?e.2l+4.4z-7.1D:e.2f+4.4B-7.1F;2k[7.2w]=(a<0)?4.41[0]:4.41[1];2k[1-7.2w]=0;I.1h(2k[0],2k[1],E);5(e.57!="7p"){2C();4.3V=J.4V(8(){4.4b=J.2R(8(){I.1h(2k[0],2k[1],E)},5M)},6d)};C A};d.3S=8(r){5(r){d.38(g);4.1v[i]=(P(d,"2V")=="2m"||4.2o[i])?E:A;5(!4.1v[i])7.38(g);1i 5(!4.2o[i])7.2e();4.O[i]=E;2b(d,"","5F")}1i{d.2e();7.2e();4.29[i]=(P(d,"2V")!="2m")?E:A;4.O[i]=A;7.Q=0;m.1y[i](\'1g\');4.1V[i]=[A,A];2b(d,"5F","")};H.1y[1-i]((4.3K[i]&&(r||4.29[i])&&!4.1v[i])?4.1T[1-i]-4.19[i*2]+"K":"-"+4.19[i*2]+"K")};d.7e=1P};8 3y(a,b,c){B d=a.1k,7=a.7,2v=a.2v,20=a.20,1W=a.1W,1E=a.1E,i=7.2w;d.2N[i](G.W[i]()-b+\'K\');d.1y[1-i](G.W[1-i]()-d.W[1-i]()+\'K\');4.3K[i]=(1j(d.5j[1-i]())===0)?E:A;a.4k=a.2S[0]+a.2S[1];a.44=1j((d.W[i]()-a.4k)*0.75);7.5p=R.28(R.1X(R.28(1j(4.U[i]/4.1I[i]*d.W[i]()),a.44),45),a.44);7.2N[i](7.5p+\'K\');7.26=d.W[i]()-7.W[i]()-a.4k;7.Q=R.28(R.1X(0,7.Q),7.26);7.1y[i](7.Q+7.2E+\'K\');7.1J=H.W[i]()-4.1I[i];7.3d=7.26;2v.2N[i](d.W[i]()-1W.W[i]()+\'K\');20.2N[i](7.W[i]()-1E.W[i]()+\'K\');1E.1y[i](7.W[i]()-1E.W[i]()+\'K\');1W.1y[i](d.W[i]()-1W.W[i]()+\'K\');5(!c)7.3m();4.4K()};I.24=8(){H.2c=0;H.2i=0;g.2c=0;g.2i=0};M.V(J,\'5m\',8(){5(g.14)I.1G()});M.V(J,\'7E\',8(){5(g.4t)J.51(g.4t);g.4t=J.4V(8(){5(g.14)I.1G()},5M)});8 1P(){C A};8 3r(e){5(!e){B e=J.1m};B a=4.1L,L,4y,7w,65;5(a==Z)C;5(!F.4O&&!e.76)2Q();4y=(a.3j)?2:1;1n(B i=0;i<4y;i++){L=(i==1)?a.4H.4R:a;5(a.3t){5(!L.2z){I.24();1N(L);1N(L.2Z);L.5x=e.2l-L.1D;L.5S=e.2f-L.1F;L.5O=L.Q;L.2z=E};L.Q=(L.39)?e.2l-L.5x-L.2Z.1D-L.2E:e.2f-L.5S-L.2Z.1F-L.2E;5(a.3j)L.Q=L.Q+(L.Q-L.5O);L.3E(E);5(g.3z)g.3z()}1i L.2z=A}};8 2Q(){5(4.1L!=Z){4.1L.3t=A;4.1L.1c+=4.1L.1w}4.1L=Z;F.1H(h,\'3Y\',1P);F.1H(h,\'2M\',3r);F.1H(h,\'3v\',2Q)};8 3C(e){5(!e)e=J.1m;5(M==G)G.D.21=4.31;5(e.2d.2y!=1||(!4.O[0]&&!4.O[1]))C A;B a=\'\',6A=(e.18&&(e.18.1f||(e.18.7t==3&&e.18.1d.1f)))?E:A;4.2x=[e.2d[0].2f,e.2d[0].2l];3x();F.1z(g,\'5h\',3L);F.1z(g,\'5K\',4c);4.5Q=(e.18&&e.18.1M&&e.18.1M.X(/1S[6k]7y[7C]e?/))?E:A;C A};8 3L(e){5(!e)e=J.1m;5(e.2d.2y!=1)C A;F.1H(g,\'4U\',3P);B a=[e.2d[0].2f,e.2d[0].2l];4.2D=E;4.12=[4.2x[0]-a[0],4.2x[1]-a[1]];5(4.5Q){4.12[0]*=-(4.1I[0]/4.U[0]);4.12[1]*=-(4.1I[1]/4.U[1])};I.4m(4.12[0],4.12[1]);4.2x[0]=a[0];4.2x[1]=a[1];1n(B i=0;i<2;i++){5(4.12[i]!==0&&4.O[i]&&(4.12[1-i]==0||!4.O[1-i])){5((4.12[i]>0&&4.1V[i][1]==4.1V[i][0])||(4.12[i]<0&&4.1V[i][0]==0))4.2D=A};5(!4.O[i]&&4.12[1-i]!==0&&R.3W(4.12[i]/4.12[1-i])>1.1)4.2D=A};5(4.2D){e.1u();G.D.21=\'7l\'}1i{G.D.21=4.31}};8 4c(e){5(!e)e=J.1m;e.1u();5(e.2d.2y>0)C A;F.1H(g,\'5h\',3L);F.1H(g,\'5K\',4c);5((4.O[0]&&R.3W(4.12[0])>6)||(4.O[1]&&R.3W(4.12[1])>6)){B a=0;3x(E);4.2G=16.2R(8(){I.4m(4p(4.12[0],0,10,a,0.3),4p(4.12[1],0,10,a,0.3));a++;5(a>10)3x()},46)}};8 2A(e){5(!e)e=J.1m;5(!M.14)C;B a=M,36,4A,1U=A,1A=0,22;I.24();4w=(e.18)?e.18:(e.1C)?e.1C:M;5(4w.1M&&4w.1M.X(/6P/))1U=E;5(e.4L)1A=-e.4L;5(e.5R)1A=e.5R;1A=(1A<0)?-1:+1;22=(1A<0)?0:1;4.1Q[1-22]=A;5((4.1Q[22]&&!1U)||(!4.O[0]&&!4.O[1]))C;5(4.O[1]&&!1U)1Y=I.1h(A,4.3R[22],E);36=!4.O[1]||1U||(4.O[1]&&((1Y[1][0]==1Y[1][1]&&1A>0)||(1Y[1][0]==0&&1A<0)));5(4.O[0]&&(!4.O[1]||1U))1Y=I.1h(4.3R[22],A,E);4A=!4.O[0]||(4.O[0]&&4.O[1]&&36&&!1U)||(4.O[0]&&((1Y[0][0]==1Y[0][1]&&1A>0)||(1Y[0][0]==0&&1A<0)));5(36&&4A&&!1U)4.1Q[22]=E;1i 4.1Q[22]=A;5(e.1u)e.1u();C A};8 4X(a){1B(a.1d){a=a.1d;5(a==g)C E}C A};8 1N(a){B b=a,2a=2h=0;5(b.32){1B(b){2a+=b.5I;2h+=b.5d;b=b.32}}1i 5(b.x){2a+=b.x;2h+=b.y};a.1F=2a;a.1D=2h};8 4Q(a){B b=a;2a=2h=0;1B(!b.15&&b.1d&&b!=m&&P(b,\'2K\')=="61"){b=b.1d};5(b.32){1B(b!=m){2a+=b.5I;2h+=b.5d;b=b.32}};C[2a,2h]};8 2b(a,b,c){F.2b(a,b,c)};8 4p(a,b,c,d,e){c=R.1X(c,1);B f=b-a,3o=a+(R.71(((1/c)*d),e)*f);C(3o>0)?R.6w(3o):R.7r(3o)}},5E:8(){5(F.3w)16.2n(F.3w);F.3H();F.3U();5(16.4Z)16.4Z()},2b:8(a,b,c){5(!a.1r)a.1r=\'\';B d=a.1r;5(b&&!d.X(3c("(^|\\\\s)"+b+"($|\\\\s)")))d=d.4n(/(\\S$)/,\'$1 \')+b;5(c)d=d.4n(3c("((^|\\\\s)+"+c+")+($|\\\\s)","g"),\'$2\').4n(/\\s$/,\'\');a.1r=d},3H:8(){B d=/#([^#.]*)$/,2H=/(.*)#.*$/,5N=/(^|\\s)1R-7h-6L-7B($|\\s)/,7x,49,i,1o,5t=Y.30("a"),2p=Y.2Y.1f;5(2p.X(2H))2p=2p.X(2H)[1];1n(i=0;1o=5t[i];i++){49=(1o.1r)?1o.1r:\'\';5(1o.1f&&!1o.3g&&1o.1f.X(d)&&((1o.1f.X(2H)&&2p===1o.1f.X(2H)[1])||49.X(5N))){1o.3g=E;F.V(1o,\'69\',8(e){5(!e)e=16.1m;B a=(e.1C)?e.1C:M;1B(!a.3g&&a.1d){a=a.1d};5(!a.3g)C;B b=Y.1t(a.1f.X(d)[1]),3a=A;5(b==Z)b=(b=Y.7D(a.1f.X(d)[1])[0])?b:Z;5(b!=Z){B c=b;1B(c.1d){c=c.1d;5(c.14){c.14.3A(b);3a=c}};5(3a){5(e.1u)e.1u();Y.2Y.1f=2p+"#"+a.1f.X(d)[1];3a.14.24();C A}}})}}},3U:8(a){F.7a=E;B b=F.3X(Y.30("7J")[0],"4q",(a)?a:\'1R\');1n(B i=0,3s;3s=b[i];i++)5(!3s.14)F.3O(3s)},7H:8(a,b){5(33(a)==\'3I\')a=Y.1t(a);5(a==Z)C A;B c=a;1B(c.1d){c=c.1d;5(c.14){5(b){Y.2Y.1f="#"+b};c.14.3A(a);c.14.24();C E}};C A},1G:8(a,b){1n(B i=0,3k;3k=F.2W[i];i++){3k.14.1G();5(b)3k.14.4o()};5(a)F.3H()},4e:8(a){B a=a.6E(\'-\'),3N=a[0],i;1n(i=1;4g=a[i];i++){3N+=4g.7v(0).7G()+4g.7I(1)};C 3N},3X:8(a,b,c){5(33(a)==\'3I\')a=Y.1t(a);5(a==Z)C A;B d=2q 3c("(^|\\\\s)"+c+"($|\\\\s)"),7K,3Z=[],4v=0;B e=a.30(b);1n(B i=0,2P;2P=e[i];i++){5(2P.1r&&2P.1r.X(d)){3Z[4v]=2P;4v++}}C 3Z},5u:8(a){5(a==Z)C E;B b;1B(a.1d){b=F.P(a,\'2K\');5(b==\'3T\')C E;a=a.1d};C A},P:8(a,b){5(16.4S)C 16.4S(a,Z).6o(b);5(a.5l)C a.5l[F.4e(b)];C A},3w:16.2R(8(){B a=Y.1t(\'1R-7n\');5(a!=Z){F.3U();16.2n(F.3w)}},46),4f:8(a,b){a.1d.7F(a);a.11.2K="3T";b.1a(a)},V:8(a,b,c){5(!F.1z(a,b,c)&&a.56){a.56(\'5L\'+b,c)}},1z:8(a,b,c){5(a.4r){a.4r(b,c,A);F.4O=E;16.4r("6T",8(){F.1H(a,b,c)},A);C E}1i C A},1H:8(a,b,c){5(!F.5B(a,b,c)&&a.5P)a.5P(\'5L\'+b,c)},5B:8(a,b,c){5(a.5T){a.5T(b,c,A);C E}1i C A}};8 7z(a){F.3O(a)};F.4F();',62,481,'||||sC|if||sBr|function||||||||||||||||||||||||||||false|var|return|sY|true|fleXenv|tDv|mDv|sfU|wD|px|movBr|this|padding|scroller|getStyle|curPos|Math||createDiv|cntRSize|addTrggr|getSize|match|document|null||style|moveDelta|width|fleXcroll|offsetHeight|window|reqS|target|paddings|appendChild|left|trgtScrll|parentNode|top|href|0px|setScrollPos|else|parseInt|sDv|pDv|event|for|anchoR||offsetWidth|className||getElementById|preventDefault|forcedHide|targetSkew|fDv|setPos|addChckTrggr|delta|while|srcElement|yPos|sSBr|xPos|updateScrollBars|remTrggr|cntSize|mxScroll|border|goScroll|id|findPos|position|retFalse|edge|flexcroll|_|barSpace|hoverH|scrollPosition|sSDv|max|scrollState|height|sFBr|zIndex|iNDx|nV|mDPosFix|right|maxPos|keyAct|min|forcedBar|curleft|classChange|scrollTop|targetTouches|fHide|clientX|bottom|curtop|scrollLeft|tSelectFunc|mV|clientY|hidden|clearInterval|externaL|urlBase|new|formItem||documentElement|copyStyles|sFDv|indx|touchPos|length|moved|mWheelProc|indexOf|intClear|touchPrevent|minPos|hBr|touchFlick|urlExt|jBox|mTBox|display|barZ|mousemove|setSize|createScrollBars|pusher|mMouseUp|setInterval|barPadding|cPSize|vrt|visibility|fleXlist|focusProtect|location|ofstParent|getElementsByTagName|tDivZ|offsetParent|typeof|pageScrolled|relative|vEdge|stdMode|fShow|vertical|eScroll|userAgent|RegExp|sRange|vUpReq|getContentHeight|fleXanchor|absolute|sYdir|scrollBoth|fleXdiv|getContentWidth|realScrollPos|hrz|stepp|maxCWidth|sXdir|mMoveBar|tgDiv|clicked|hUpReq|mouseup|catchFastInit|flickClear|updateScroll|onfleXcroll|scrollToElement|overflow|handleTouch|brdWidthLoss|doBarPos|inputName|padHeightComp|prepAnchors|string|tSelectMouse|forcedPos|handleTouchMove|prepareScroll|reT|fleXcrollMain|handleTextSelect|uReg|wheelAct|setVisibility|none|initByClass|barClickRetard|abs|getByClassName|selectstart|retArray||baseAct|mdY|brdHeightLoss|baseProp||100|vBr|mHeight|claSS|onmousedown|barClickScroll|handleTouchEnd|setWidth|camelConv|putAway|parT|zTHeight|mY|Array|padLoss|setHeight|scrollContent|replace|formUpdate|easeInOut|div|addEventListener|xAw|refreshTimeout|calcCScrollVal|key|hElem|mdX|maxx|yScrld|hEdge|xScrld|yAw|mOnXEdge|mOnYEdge|fleXcrollInit|touchstart|scrlTrgt|fleXdata|fleXprocess|fixIEDispBug|wheelDelta|createElement|firstChild|w3events|1px|findRCpos|vBar|getComputedStyle|default|mousedown|setTimeout|100p|isddvChild|mousewheel|onfleXcrollRun|onfleXcrollFail|clearTimeout|100px|1em|basebeg|opera|attachEvent|type|keyCode|oScrollX|index|reqV|DOMMouseScroll|offsetTop|HTMLElement|pageYOffset|fixed|touchmove|solid|getPos|intlWidth|currentStyle|load|inMposX|paddingTop|aSize|Object|barbeg|textAlign|anchorList|checkHidden|pageXOffset|postHeight|pointerOffsetY|brdWidth|baseend|paddingLeft|remChckTrggr|text|pkeY|globalInit|flexinactive|hide|barend|offsetLeft|inMposY|touchend|on|80|regExer|inCurPos|detachEvent|touchBar|detail|pointerOffsetX|removeEventListener|write|onmousewheel|textarea|auto|_37|focus|childNodes|inline|OmniWeb|keypress|align|yScroll|scrollwrapper|flexcrollactive|hscroller|click|important|setAttribute|containerSize|425|_34|contentScroll|block|KDE|bscrollgeneric|borderBottom|vh|fontSize|visible|scrollerjogbox|getPropertyValue|css|keydown|input|onmouseover|_39|scrollUpdate|compPad|floor|undefined|keyup|black|touchLink|zoomdetectdiv|parseFloat|hBar|split|navigator|tabIndex|contentSize|contentwrapper|blur|vscroller|page|flex__|scrollbar|2px|_hscroller|999|onblur|select|unload|AppleWebKit|2500|borderBottomWidth|normal|_38|base|MSIE|pow|copyholder|scrollgeneric|prototype||button|_35|bar|platform|initialized|12px|sizeChangeDetect|Safari|onmouseclick|_33|failed|in|blue|toString|vendor|9999|mcontentwrapper|init|Mac|dblclick|domfixdiv|ceil|_40|nodeType|_36|charAt|xScroll|matcH|scrollerba|CSBfleXcroll|ondblclick|link|rs|getElementsByName|resize|removeChild|toUpperCase|scrollTo|substr|body|clsnm'.split('|'),0,{}));(function(){var _typeface_js={faces:{},loadFace:function(typefaceData){var familyName=typefaceData.familyName.toLowerCase();if(!this.faces[familyName]){this.faces[familyName]={};}
if(!this.faces[familyName][typefaceData.cssFontWeight]){this.faces[familyName][typefaceData.cssFontWeight]={};}
var face=this.faces[familyName][typefaceData.cssFontWeight][typefaceData.cssFontStyle]=typefaceData;face.loaded=true;},log:function(message){if(this.quiet){return;}
message="typeface.js: "+message;if(this.customLogFn){this.customLogFn(message);}else if(window.console&&window.console.log){window.console.log(message);}},pixelsFromPoints:function(face,style,points,dimension){var pixels=points*parseInt(style.fontSize)*72/(face.resolution*100);if(dimension=='horizontal'&&style.fontStretchPercent){pixels*=style.fontStretchPercent;}
return pixels;},pointsFromPixels:function(face,style,pixels,dimension){var points=pixels*face.resolution/(parseInt(style.fontSize)*72/100);if(dimension=='horizontal'&&style.fontStretchPrecent){points*=style.fontStretchPercent;}
return points;},cssFontWeightMap:{normal:'normal',bold:'bold',400:'normal',700:'bold'},cssFontStretchMap:{'ultra-condensed':0.55,'extra-condensed':0.77,'condensed':0.85,'semi-condensed':0.93,'normal':1,'semi-expanded':1.07,'expanded':1.15,'extra-expanded':1.23,'ultra-expanded':1.45,'default':1},fallbackCharacter:'.',configure:function(args){var configurableOptionNames=['customLogFn','customClassNameRegex','customTypefaceElementsList','quiet','verbose','disableSelection'];for(var i=0;i<configurableOptionNames.length;i++){var optionName=configurableOptionNames[i];if(args[optionName]){if(optionName=='customLogFn'){if(typeof args[optionName]!='function'){throw"customLogFn is not a function";}else{this.customLogFn=args.customLogFn;}}else{this[optionName]=args[optionName];}}}},getTextExtents:function(face,style,text){var extentX=0;var extentY=0;var horizontalAdvance;var textLength=text.length;for(var i=0;i<textLength;i++){var glyph=face.glyphs[text.charAt(i)]?face.glyphs[text.charAt(i)]:face.glyphs[this.fallbackCharacter];var letterSpacingAdjustment=this.pointsFromPixels(face,style,style.letterSpacing);extentX+=i+1==textLength?Math.max(glyph.x_max,glyph.ha):glyph.ha;extentX+=letterSpacingAdjustment;horizontalAdvance+=glyph.ha+letterSpacingAdjustment;}
return{x:extentX,y:extentY,ha:horizontalAdvance};},pixelsFromCssAmount:function(cssAmount,defaultValue,element){var matches=undefined;if(cssAmount=='normal'){return defaultValue;}else if(matches=cssAmount.match(/([\-\d+\.]+)px/)){return matches[1];}else{var pixelAmount;var leftInlineStyle=element.style.left;var leftRuntimeStyle=element.runtimeStyle.left;element.runtimeStyle.left=element.currentStyle.left;if(!cssAmount.match(/\d(px|pt)$/)){element.style.left='1em';}else{element.style.left=cssAmount||0;}
pixelAmount=element.style.pixelLeft;element.style.left=leftInlineStyle;element.runtimeStyle.left=leftRuntimeStyle;return pixelAmount||defaultValue;}},capitalizeText:function(text){return text.replace(/(^|\s)[a-z]/g,function(match){return match.toUpperCase()});},getElementStyle:function(e){if(window.getComputedStyle){return window.getComputedStyle(e,'');}else if(e.currentStyle){return e.currentStyle;}},getRenderedText:function(e){var browserStyle=this.getElementStyle(e.parentNode);var inlineStyleAttribute=e.parentNode.getAttribute('style');if(inlineStyleAttribute&&typeof(inlineStyleAttribute)=='object'){inlineStyleAttribute=inlineStyleAttribute.cssText;}
if(inlineStyleAttribute){var inlineStyleDeclarations=inlineStyleAttribute.split(/\s*\;\s*/);var inlineStyle={};for(var i=0;i<inlineStyleDeclarations.length;i++){var declaration=inlineStyleDeclarations[i];var declarationOperands=declaration.split(/\s*\:\s*/);inlineStyle[declarationOperands[0]]=declarationOperands[1];}}
var style={color:browserStyle.color,fontFamily:browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g,'').toLowerCase(),fontSize:this.pixelsFromCssAmount(browserStyle.fontSize,12,e.parentNode),fontWeight:this.cssFontWeightMap[browserStyle.fontWeight],fontStyle:browserStyle.fontStyle?browserStyle.fontStyle:'normal',fontStretchPercent:this.cssFontStretchMap[inlineStyle&&inlineStyle['font-stretch']?inlineStyle['font-stretch']:'default'],textDecoration:browserStyle.textDecoration,lineHeight:this.pixelsFromCssAmount(browserStyle.lineHeight,'normal',e.parentNode),letterSpacing:this.pixelsFromCssAmount(browserStyle.letterSpacing,0,e.parentNode),textTransform:browserStyle.textTransform};var face;if(this.faces[style.fontFamily]&&this.faces[style.fontFamily][style.fontWeight]){face=this.faces[style.fontFamily][style.fontWeight][style.fontStyle];}
var text=e.nodeValue;if(e.previousSibling&&e.previousSibling.nodeType==1&&e.previousSibling.tagName!='BR'&&this.getElementStyle(e.previousSibling).display.match(/inline/)){text=text.replace(/^\s+/,' ');}else{text=text.replace(/^\s+/,'');}
if(e.nextSibling&&e.nextSibling.nodeType==1&&e.nextSibling.tagName!='BR'&&this.getElementStyle(e.nextSibling).display.match(/inline/)){text=text.replace(/\s+$/,' ');}else{text=text.replace(/\s+$/,'');}
text=text.replace(/\s+/g,' ');if(style.textTransform&&style.textTransform!='none'){switch(style.textTransform){case'capitalize':text=this.capitalizeText(text);break;case'uppercase':text=text.toUpperCase();break;case'lowercase':text=text.toLowerCase();break;}}
if(!face){var excerptLength=12;var textExcerpt=text.substring(0,excerptLength);if(text.length>excerptLength){textExcerpt+='...';}
var fontDescription=style.fontFamily;if(style.fontWeight!='normal')fontDescription+=' '+style.fontWeight;if(style.fontStyle!='normal')fontDescription+=' '+style.fontStyle;this.log("couldn't find typeface font: "+fontDescription+' for text "'+textExcerpt+'"');return;}
var words=text.split(/\b(?=\w)/);var containerSpan=document.createElement('span');containerSpan.className='typeface-js-vector-container';var wordsLength=words.length;for(var i=0;i<wordsLength;i++){var word=words[i];var vector=this.renderWord(face,style,word);if(vector){containerSpan.appendChild(vector.element);if(!this.disableSelection){var selectableSpan=document.createElement('span');selectableSpan.className='typeface-js-selected-text';var wordNode=document.createTextNode(word);selectableSpan.appendChild(wordNode);if(this.vectorBackend!='vml'){selectableSpan.style.marginLeft=-1*(vector.width+1)+'px';}
selectableSpan.targetWidth=vector.width;if(this.vectorBackend=='vml'){vector.element.appendChild(selectableSpan);}else{containerSpan.appendChild(selectableSpan);}}}}
return containerSpan;},renderDocument:function(callback){if(!callback)
callback=function(e){e.style.visibility='visible'};var elements=document.getElementsByTagName('*');var elementsLength=elements.length;for(var i=0;i<elements.length;i++){if(elements[i].className.match(/(^|\s)typeface-js(\s|$)/)||elements[i].tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)){this.replaceText(elements[i]);if(typeof callback=='function'){callback(elements[i]);}}}
if(this.vectorBackend=='vml'){var dummyShape=document.createElement('v:shape');dummyShape.style.display='none';document.body.appendChild(dummyShape);}},replaceText:function(e){var childNodes=[];var childNodesLength=e.childNodes.length;for(var i=0;i<childNodesLength;i++){this.replaceText(e.childNodes[i]);}
if(e.nodeType==3&&e.nodeValue.match(/\S/)){var parentNode=e.parentNode;if(parentNode.className=='typeface-js-selected-text'){return;}
var renderedText=this.getRenderedText(e);if(parentNode.tagName=='A'&&this.vectorBackend=='vml'&&this.getElementStyle(parentNode).display=='inline'){parentNode.style.display='inline-block';parentNode.style.cursor='pointer';}
if(this.getElementStyle(parentNode).display=='inline'){parentNode.style.display='inline-block';}
if(renderedText){if(parentNode.replaceChild){parentNode.replaceChild(renderedText,e);}else{parentNode.insertBefore(renderedText,e);parentNode.removeChild(e);}
if(this.vectorBackend=='vml'){renderedText.innerHTML=renderedText.innerHTML;}
var childNodesLength=renderedText.childNodes.length
for(var i;i<childNodesLength;i++){var e=renderedText.childNodes[i];if(e.hasChildNodes()&&!e.targetWidth){e=e.childNodes[0];}
if(e&&e.targetWidth){var letterSpacingCount=e.innerHTML.length;var wordSpaceDelta=e.targetWidth-e.offsetWidth;var letterSpacing=wordSpaceDelta/(letterSpacingCount||1);if(this.vectorBackend=='vml'){letterSpacing=Math.ceil(letterSpacing);}
e.style.letterSpacing=letterSpacing+'px';e.style.width=e.targetWidth+'px';}}}}},applyElementVerticalMetrics:function(face,style,e){if(style.lineHeight=='normal'){style.lineHeight=this.pixelsFromPoints(face,style,face.lineHeight);}
var cssLineHeightAdjustment=style.lineHeight-this.pixelsFromPoints(face,style,face.lineHeight);e.style.marginTop=Math.round(cssLineHeightAdjustment/2)+'px';e.style.marginBottom=Math.round(cssLineHeightAdjustment/2)+'px';},vectorBackends:{canvas:{_initializeSurface:function(face,style,text){var extents=this.getTextExtents(face,style,text);var canvas=document.createElement('canvas');if(this.disableSelection){canvas.innerHTML=text;}
canvas.height=Math.round(this.pixelsFromPoints(face,style,face.lineHeight));canvas.width=Math.round(this.pixelsFromPoints(face,style,extents.x,'horizontal'));this.applyElementVerticalMetrics(face,style,canvas);if(extents.x>extents.ha)
canvas.style.marginRight=Math.round(this.pixelsFromPoints(face,style,extents.x-extents.ha,'horizontal'))+'px';var ctx=canvas.getContext('2d');var pointScale=this.pixelsFromPoints(face,style,1);ctx.scale(pointScale*style.fontStretchPercent,-1*pointScale);ctx.translate(0,-1*face.ascender);ctx.fillStyle=style.color;return{context:ctx,canvas:canvas};},_renderGlyph:function(ctx,face,char,style){var glyph=face.glyphs[char];if(!glyph){return this.renderGlyph(ctx,face,this.fallbackCharacter,style);}
if(glyph.o){var outline;if(glyph.cached_outline){outline=glyph.cached_outline;}else{outline=glyph.o.split(' ');glyph.cached_outline=outline;}
var outlineLength=outline.length;for(var i=0;i<outlineLength;){var action=outline[i++];switch(action){case'm':ctx.moveTo(outline[i++],outline[i++]);break;case'l':ctx.lineTo(outline[i++],outline[i++]);break;case'q':var cpx=outline[i++];var cpy=outline[i++];ctx.quadraticCurveTo(outline[i++],outline[i++],cpx,cpy);break;case'b':var x=outline[i++];var y=outline[i++];ctx.bezierCurveTo(outline[i++],outline[i++],outline[i++],outline[i++],x,y);break;}}}
if(glyph.ha){var letterSpacingPoints=style.letterSpacing&&style.letterSpacing!='normal'?this.pointsFromPixels(face,style,style.letterSpacing):0;ctx.translate(glyph.ha+letterSpacingPoints,0);}},_renderWord:function(face,style,text){var surface=this.initializeSurface(face,style,text);var ctx=surface.context;var canvas=surface.canvas;ctx.beginPath();ctx.save();var chars=text.split('');var charsLength=chars.length;for(var i=0;i<charsLength;i++){this.renderGlyph(ctx,face,chars[i],style);}
ctx.fill();if(style.textDecoration=='underline'){ctx.beginPath();ctx.moveTo(0,face.underlinePosition);ctx.restore();ctx.lineTo(0,face.underlinePosition);ctx.strokeStyle=style.color;ctx.lineWidth=face.underlineThickness;ctx.stroke();}
return{element:ctx.canvas,width:Math.floor(canvas.width)};}},vml:{_initializeSurface:function(face,style,text){var shape=document.createElement('v:shape');var extents=this.getTextExtents(face,style,text);shape.style.width=shape.style.height=style.fontSize+'px';shape.style.marginLeft='-1px';if(extents.x>extents.ha){shape.style.marginRight=this.pixelsFromPoints(face,style,extents.x-extents.ha,'horizontal')+'px';}
this.applyElementVerticalMetrics(face,style,shape);var resolutionScale=face.resolution*100/72;shape.coordsize=(resolutionScale/style.fontStretchPercent)+","+resolutionScale;shape.coordorigin='0,'+face.ascender;shape.style.flip='y';shape.fillColor=style.color;shape.stroked=false;shape.path='hh m 0,'+face.ascender+' l 0,'+face.descender+' ';return shape;},_renderGlyph:function(shape,face,char,offsetX,style,vmlSegments){var glyph=face.glyphs[char];if(!glyph){this.log("glyph not defined: "+char);this.renderGlyph(shape,face,this.fallbackCharacter,offsetX,style);return;}
vmlSegments.push('m');if(glyph.o){var outline,outlineLength;if(glyph.cached_outline){outline=glyph.cached_outline;outlineLength=outline.length;}else{outline=glyph.o.split(' ');outlineLength=outline.length;for(var i=0;i<outlineLength;){switch(outline[i++]){case'q':outline[i]=Math.round(outline[i++]);outline[i]=Math.round(outline[i++]);case'm':case'l':outline[i]=Math.round(outline[i++]);outline[i]=Math.round(outline[i++]);break;}}
glyph.cached_outline=outline;}
var prevX,prevY;for(var i=0;i<outlineLength;){var action=outline[i++];var x=Math.round(outline[i++])+offsetX;var y=Math.round(outline[i++]);switch(action){case'm':vmlSegments.push('xm ',x,',',y);break;case'l':vmlSegments.push('l ',x,',',y);break;case'q':var cpx=outline[i++]+offsetX;var cpy=outline[i++];var cp1x=Math.round(prevX+2.0/3.0*(cpx-prevX));var cp1y=Math.round(prevY+2.0/3.0*(cpy-prevY));var cp2x=Math.round(cp1x+(x-prevX)/3.0);var cp2y=Math.round(cp1y+(y-prevY)/3.0);vmlSegments.push('c ',cp1x,',',cp1y,',',cp2x,',',cp2y,',',x,',',y);break;case'b':var cp1x=Math.round(outline[i++])+offsetX;var cp1y=outline[i++];var cp2x=Math.round(outline[i++])+offsetX;var cp2y=outline[i++];vmlSegments.push('c ',cp1x,',',cp1y,',',cp2x,',',cp2y,',',x,',',y);break;}
prevX=x;prevY=y;}}
vmlSegments.push('x e');return vmlSegments;},_renderWord:function(face,style,text){var offsetX=0;var shape=this.initializeSurface(face,style,text);var letterSpacingPoints=style.letterSpacing&&style.letterSpacing!='normal'?this.pointsFromPixels(face,style,style.letterSpacing):0;letterSpacingPoints=Math.round(letterSpacingPoints);var chars=text.split('');var vmlSegments=[];for(var i=0;i<chars.length;i++){var char=chars[i];vmlSegments=this.renderGlyph(shape,face,char,offsetX,style,vmlSegments);offsetX+=face.glyphs[char].ha+letterSpacingPoints;}
if(style.textDecoration=='underline'){var posY=face.underlinePosition-(face.underlineThickness/2);vmlSegments.push('xm ',0,',',posY);vmlSegments.push('l ',offsetX,',',posY);vmlSegments.push('l ',offsetX,',',posY+face.underlineThickness);vmlSegments.push('l ',0,',',posY+face.underlineThickness);vmlSegments.push('l ',0,',',posY);vmlSegments.push('x e');}
shape.path+=vmlSegments.join('')+'m '+offsetX+' 0 l '+offsetX+' '+face.ascender;return{element:shape,width:Math.floor(this.pixelsFromPoints(face,style,offsetX,'horizontal'))};}}},setVectorBackend:function(backend){this.vectorBackend=backend;var backendFunctions=['renderWord','initializeSurface','renderGlyph'];for(var i=0;i<backendFunctions.length;i++){var backendFunction=backendFunctions[i];this[backendFunction]=this.vectorBackends[backend]['_'+backendFunction];}},initialize:function(){if(arguments.callee.done)return;arguments.callee.done=true;if(window._typefaceTimer)clearInterval(_typefaceTimer);this.renderDocument(function(e){e.style.visibility='visible'});}};var typefaceSelectors=['.typeface-js','h1','h2','h3','h4','h5','h6'];if(document.createStyleSheet){var styleSheet=document.createStyleSheet();for(var i=0;i<typefaceSelectors.length;i++){var selector=typefaceSelectors[i];styleSheet.addRule(selector,'visibility: hidden');}
styleSheet.addRule('.typeface-js-selected-text','-ms-filter: \
   "Chroma(color=black) \
   progid:DXImageTransform.Microsoft.MaskFilter(Color=white) \
   progid:DXImageTransform.Microsoft.MaskFilter(Color=blue) \
   alpha(opacity=30)" !important; \
  color: black; \
  font-family: Modern; \
  position: absolute; \
  white-space: pre; \
  filter: alpha(opacity=0) !important;');styleSheet.addRule('.typeface-js-vector-container','position: relative');}else if(document.styleSheets){if(!document.styleSheets.length){(function(){var styleSheet=document.createElement('style');styleSheet.type='text/css';document.getElementsByTagName('head')[0].appendChild(styleSheet);})()}
var styleSheet=document.styleSheets[0];document.styleSheets[0].insertRule(typefaceSelectors.join(',')+' { visibility: hidden; }',styleSheet.cssRules.length);document.styleSheets[0].insertRule('.typeface-js-selected-text { \
   color: rgba(128, 128, 128, 0); \
   opacity: 0.30; \
   position: absolute; \
   font-family: Arial, sans-serif; \
   white-space: pre \
  }',styleSheet.cssRules.length);try{document.styleSheets[0].insertRule('.typeface-js-selected-text::-moz-selection { background: blue; }',styleSheet.cssRules.length);}catch(e){};try{document.styleSheets[0].insertRule('.typeface-js-selected-text::selection { background: blue; }',styleSheet.cssRules.length);}catch(e){};if(/WebKit/i.test(navigator.userAgent)){document.styleSheets[0].insertRule('.typeface-js-vector-container { position: relative }',styleSheet.cssRules.length);}}
var backend=!!(window.attachEvent&&!window.opera)?'vml':window.CanvasRenderingContext2D||document.createElement('canvas').getContext?'canvas':null;if(backend=='vml'){document.namespaces.add("v","urn:schemas-microsoft-com:vml","#default#VML");var styleSheet=document.createStyleSheet();styleSheet.addRule('v\\:shape',"display: inline-block;");}
_typeface_js.setVectorBackend(backend);window._typeface_js=_typeface_js;if(/WebKit/i.test(navigator.userAgent)){var _typefaceTimer=setInterval(function(){if(/loaded|complete/.test(document.readyState)){_typeface_js.initialize();}},10);}
if(document.addEventListener){window.addEventListener('DOMContentLoaded',function(){_typeface_js.initialize()},false);}/*@cc_on @*//*@if (@_win32)

document.write("<script id=__ie_onload_typeface defer src=//:><\/script>");
var script = document.getElementById("__ie_onload_typeface");
script.onreadystatechange = function() {
 if (this.readyState == "complete") {
  _typeface_js.initialize(); 
 }
};

/*@end @*/try{console.log('initializing typeface.js')}catch(e){};})();;if(_typeface_js&&_typeface_js.loadFace)_typeface_js.loadFace({"glyphs":{"S":{"x_min":112,"x_max":1166,"ha":1256,"o":"m 973 806 q 867 828 943 819 q 670 838 791 838 l 631 838 q 441 829 539 838 q 299 801 343 821 q 242 748 255 781 q 230 667 230 714 q 276 550 230 581 q 411 520 323 520 l 513 520 l 731 520 q 832 520 788 520 q 966 510 877 520 q 1111 447 1056 500 q 1166 264 1166 393 q 1139 123 1166 179 q 1050 38 1113 66 q 897 1 986 9 q 702 -7 807 -7 l 628 -7 q 472 -7 524 -7 q 312 7 420 -7 q 158 80 204 21 q 113 289 113 140 l 226 289 l 226 269 q 239 162 226 198 q 307 109 252 126 q 453 93 362 93 q 634 93 545 93 q 877 105 778 93 q 1012 152 976 118 q 1049 266 1049 187 q 1002 393 1049 366 q 845 421 956 421 l 632 421 l 384 421 q 182 472 253 421 q 112 646 112 523 q 142 807 112 742 q 246 900 173 872 q 417 928 319 928 q 638 928 516 928 q 785 928 740 928 q 932 917 830 928 q 1088 848 1034 907 q 1143 670 1143 790 l 1030 670 q 1015 763 1030 732 q 973 806 1000 793 "},"¦":{"x_min":294,"x_max":400,"ha":694,"o":"m 400 463 l 294 463 l 294 926 l 400 926 l 400 463 m 400 -232 l 294 -232 l 294 213 l 400 213 l 400 -232 "},"/":{"x_min":-108.328125,"x_max":1001.390625,"ha":1043,"o":"m -108 -193 l 863 927 l 1001 927 l 29 -193 l -108 -193 "},"y":{"x_min":-37.609375,"x_max":813.78125,"ha":786,"o":"m 813 653 l 451 -54 q 320 -253 377 -196 q 136 -310 263 -310 l 86 -310 l 86 -231 l 113 -231 q 255 -180 215 -231 q 366 7 295 -130 l 329 7 l -37 653 l 74 653 l 402 75 l 699 653 l 813 653 "},"Á":{"x_min":-27.78125,"x_max":1220.828125,"ha":1193,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1220 0 l 1091 0 l 970 208 l 222 208 l 104 0 m 275 301 l 918 301 l 594 844 l 275 301 m 788 1050 l 425 990 l 404 1050 l 752 1165 l 788 1050 "},"g":{"x_min":93,"x_max":937,"ha":1048,"o":"m 937 -31 q 862 -235 937 -167 q 538 -304 787 -304 l 458 -304 q 195 -262 283 -304 q 108 -69 108 -220 l 202 -69 q 244 -169 215 -139 q 331 -207 274 -199 q 422 -216 387 -216 q 515 -216 458 -216 q 665 -210 601 -216 q 769 -184 729 -204 q 824 -122 809 -163 q 840 -30 840 -80 l 840 107 q 752 13 808 36 q 602 -10 695 -10 l 435 -10 q 172 60 251 -10 q 93 314 93 130 q 146 576 93 491 q 359 661 199 661 l 545 661 q 736 640 662 661 q 840 538 811 620 l 840 654 l 937 654 l 937 -31 m 448 78 l 494 78 l 517 78 q 625 78 586 78 q 722 92 665 78 q 809 155 779 106 q 840 288 840 204 q 803 514 840 454 q 616 575 766 575 l 429 575 q 242 523 287 575 q 197 323 197 472 l 197 308 q 233 137 197 184 q 310 83 269 89 q 390 78 352 78 q 448 78 429 78 "},"²":{"x_min":58,"x_max":693,"ha":735,"o":"m 690 371 l 58 371 l 58 453 q 64 530 58 498 q 99 595 71 563 q 185 633 127 627 q 388 640 243 640 q 566 657 534 640 q 605 699 598 675 q 612 755 612 723 q 589 839 612 815 q 502 863 566 863 l 363 863 q 296 863 328 863 q 218 856 264 863 q 155 825 172 850 q 139 740 139 800 l 139 716 l 64 716 q 70 826 64 786 q 110 891 77 866 q 201 925 143 917 q 337 933 259 933 l 434 933 q 645 889 598 933 q 693 752 693 845 q 651 615 693 655 q 516 575 609 575 l 252 575 q 158 550 183 575 q 134 452 134 526 l 134 436 l 690 436 l 690 371 "},"–":{"x_min":117,"x_max":1050,"ha":1167,"o":"m 1050 341 l 117 341 l 117 433 l 1050 433 l 1050 341 "},"ë":{"x_min":92,"x_max":924,"ha":1018,"o":"m 326 88 q 397 80 349 84 q 513 76 446 76 l 566 76 q 680 80 638 76 q 755 99 722 84 q 804 137 789 113 q 820 196 820 161 l 924 196 q 820 28 924 66 q 553 -10 717 -10 q 287 5 373 -10 q 146 92 201 21 q 92 324 92 162 q 168 594 92 525 q 448 663 245 663 l 514 663 q 751 645 671 663 q 877 560 831 628 q 924 343 924 492 l 924 310 l 189 310 q 215 160 189 213 q 326 88 241 106 m 555 577 l 479 577 q 336 567 398 577 q 242 532 273 558 q 201 471 211 505 q 191 393 191 437 l 824 393 q 815 469 824 436 q 782 526 807 503 q 703 563 757 549 q 555 577 650 577 m 437 745 l 241 745 l 241 837 l 437 837 l 437 745 m 775 745 l 579 745 l 579 837 l 775 837 l 775 745 "},"ƒ":{"x_min":156,"x_max":1031,"ha":1167,"o":"m 674 617 l 566 6 q 502 -140 548 -95 q 354 -185 456 -185 l 156 -185 l 156 -89 l 324 -89 q 429 -66 404 -89 q 467 36 453 -43 l 567 617 l 373 617 l 373 700 l 584 700 l 616 879 q 680 985 630 950 q 806 1020 731 1020 l 1031 1020 l 1031 924 l 816 924 q 745 900 768 924 q 713 828 721 876 l 689 700 l 944 700 l 944 617 l 674 617 "},"Î":{"x_min":-83.5,"x_max":453.109375,"ha":371,"o":"m 242 0 l 129 0 l 129 927 l 242 927 l 242 0 m -83 1036 l 184 1152 l 453 1036 l 436 982 l 184 1045 l -65 982 l -83 1036 "},"e":{"x_min":92,"x_max":924,"ha":1018,"o":"m 326 88 q 397 80 349 84 q 513 76 446 76 l 566 76 q 680 80 638 76 q 755 99 722 84 q 804 137 789 113 q 820 196 820 161 l 924 196 q 820 28 924 66 q 553 -10 717 -10 q 287 5 373 -10 q 146 92 201 21 q 92 324 92 162 q 168 594 92 525 q 448 663 245 663 l 514 663 q 751 645 671 663 q 877 560 831 628 q 924 343 924 492 l 924 310 l 189 310 q 215 160 189 213 q 326 88 241 106 m 555 577 l 479 577 q 336 567 398 577 q 242 532 273 558 q 201 471 211 505 q 191 393 191 437 l 824 393 q 815 469 824 436 q 782 526 807 503 q 703 563 757 549 q 555 577 650 577 "},"Ã":{"x_min":-27.78125,"x_max":1220.828125,"ha":1193,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1220 0 l 1091 0 l 970 208 l 222 208 l 104 0 m 275 301 l 918 301 l 594 844 l 275 301 m 476 1131 q 591 1101 511 1131 q 706 1071 672 1071 q 750 1089 733 1071 q 776 1134 766 1107 l 863 1134 q 818 1028 856 1069 q 718 988 780 988 q 595 1016 670 988 q 483 1045 519 1045 q 443 1029 456 1045 q 418 982 429 1014 l 330 982 q 377 1087 337 1043 q 476 1131 416 1131 "},"J":{"x_min":42,"x_max":910,"ha":1035,"o":"m 910 311 q 842 61 910 133 q 591 -10 775 -10 l 476 -10 l 451 -10 q 266 0 358 -10 q 93 66 145 0 q 42 263 42 133 l 42 337 l 150 337 l 150 310 q 177 143 150 184 q 320 91 204 102 l 501 91 q 657 98 592 91 q 751 132 722 106 q 788 198 780 159 q 797 291 797 238 l 797 310 l 797 927 l 910 927 l 910 311 "},"»":{"x_min":77.78125,"x_max":654.171875,"ha":733,"o":"m 445 694 l 654 341 l 445 -5 l 373 44 l 550 341 l 373 647 l 445 694 m 150 694 l 358 341 l 150 -5 l 77 44 l 254 341 l 77 647 l 150 694 "},"©":{"x_min":65,"x_max":1022,"ha":1087,"o":"m 282 461 q 354 666 282 583 q 548 749 427 749 q 710 698 640 749 q 791 558 781 647 l 735 558 q 667 654 721 619 q 546 689 613 689 q 403 622 455 689 q 351 461 351 555 q 403 303 351 367 q 546 240 455 240 q 680 285 627 240 q 744 410 732 330 l 799 410 q 726 244 799 308 q 547 180 653 180 q 355 260 429 180 q 282 461 282 341 m 544 -17 q 205 124 346 -17 q 65 462 65 265 q 205 801 65 661 q 544 942 345 942 q 881 801 741 942 q 1022 462 1022 661 q 881 124 1022 266 q 544 -17 741 -17 m 544 36 q 841 161 718 36 q 964 462 964 287 q 841 763 964 637 q 544 889 718 889 q 246 763 370 889 q 122 462 122 637 q 245 162 122 288 q 544 36 369 36 "},"ò":{"x_min":92,"x_max":949,"ha":1042,"o":"m 514 660 q 764 643 680 660 q 898 558 847 626 q 949 338 949 490 q 860 48 949 106 q 512 -10 771 -10 q 187 47 283 -10 q 92 320 92 104 q 136 554 92 473 q 275 648 180 636 q 412 660 369 660 q 514 660 455 660 m 514 74 q 771 106 697 74 q 846 295 846 139 q 820 485 846 417 q 721 564 794 554 q 605 574 648 574 q 501 574 561 574 l 472 574 q 253 531 311 574 q 196 325 196 488 q 255 122 196 170 q 476 74 315 74 l 514 74 m 327 776 l 364 892 l 712 776 l 690 716 l 327 776 "},"^":{"x_min":44.4375,"x_max":650,"ha":694,"o":"m 287 928 l 406 928 l 650 521 l 550 521 l 345 855 l 143 521 l 44 521 l 287 928 "},"«":{"x_min":77.78125,"x_max":654.171875,"ha":733,"o":"m 286 -11 l 77 341 l 286 689 l 358 640 l 180 341 l 358 36 l 286 -11 m 581 -11 l 373 341 l 581 689 l 654 640 l 476 341 l 654 36 l 581 -11 "},"D":{"x_min":131,"x_max":1273,"ha":1374,"o":"m 1273 476 q 1253 246 1273 353 q 1179 84 1234 140 q 1049 14 1125 29 q 867 0 972 0 l 856 0 l 131 0 l 131 926 l 904 926 q 1201 821 1129 926 q 1273 476 1273 717 m 1156 475 q 1108 751 1156 670 q 879 833 1060 833 l 244 833 l 244 93 l 868 93 q 1109 177 1062 93 q 1156 475 1156 262 "},"∙":{"x_min":514,"x_max":653,"ha":1167,"o":"m 653 263 l 514 263 l 514 415 l 653 415 l 653 263 "},"ÿ":{"x_min":-37.609375,"x_max":814.171875,"ha":786,"o":"m 814 653 l 451 -54 q 320 -253 377 -196 q 136 -310 263 -310 l 86 -310 l 86 -231 l 113 -231 q 255 -180 215 -231 q 366 7 295 -130 l 329 7 l -37 653 l 74 653 l 402 75 l 700 653 l 814 653 m 321 745 l 125 745 l 125 837 l 321 837 l 321 745 m 660 745 l 464 745 l 464 837 l 660 837 l 660 745 "},"í":{"x_min":-32.046875,"x_max":352.453125,"ha":319,"o":"m 208 0 l 111 0 l 111 653 l 208 653 l 208 0 m 352 776 l -11 716 l -32 776 l 316 892 l 352 776 "},"ˆ":{"x_min":79.171875,"x_max":615.28125,"ha":694,"o":"m 79 772 l 347 888 l 615 772 l 598 718 l 347 781 l 97 718 l 79 772 "},"w":{"x_min":-18.0625,"x_max":1302.78125,"ha":1285,"o":"m 1302 653 l 1004 0 l 858 0 l 643 579 l 427 0 l 283 0 l -18 653 l 91 653 l 354 72 l 569 653 l 718 653 l 933 72 l 1191 653 l 1302 653 "},"$":{"x_min":-3,"x_max":1169,"ha":1166,"o":"m 619 1005 l 619 926 l 653 926 l 872 926 q 1072 872 1003 926 q 1142 689 1142 818 l 1142 660 l 1032 660 q 993 793 1032 760 q 848 827 955 827 l 619 827 l 619 516 l 649 516 l 869 516 q 1096 464 1023 516 q 1169 263 1169 412 q 1068 48 1169 99 q 784 -2 968 -2 l 619 -2 l 619 -107 l 525 -107 l 525 0 l 399 0 l 209 0 q 41 81 85 11 q -3 286 -3 152 l 112 286 l 112 262 q 148 131 112 168 q 282 95 185 95 l 491 95 l 525 95 l 525 422 l 493 422 l 236 422 q 63 484 123 422 q 3 660 3 546 q 30 813 3 757 q 124 892 58 870 q 254 920 190 914 q 411 926 318 926 l 525 926 l 525 1005 l 619 1005 m 118 681 q 175 542 118 567 q 365 517 233 517 l 525 517 l 525 826 l 318 826 q 169 797 220 826 q 118 681 118 768 m 942 112 q 1028 162 1003 127 q 1054 261 1054 197 q 997 390 1054 364 q 820 417 940 417 l 619 417 l 619 93 l 755 93 q 858 96 819 93 q 942 112 898 99 "},"\\":{"x_min":41.671875,"x_max":1151.390625,"ha":1043,"o":"m 1151 -193 l 1013 -193 l 41 927 l 179 927 l 1151 -193 "},"Ì":{"x_min":-7.109375,"x_max":378.109375,"ha":371,"o":"m 242 0 l 129 0 l 129 927 l 242 927 l 242 0 m -7 1050 l 29 1166 l 378 1050 l 355 990 l -7 1050 "},"µ":{"x_min":87,"x_max":655,"ha":741,"o":"m 184 664 l 184 287 q 225 123 184 186 q 366 61 267 61 q 506 134 455 61 q 558 301 558 208 l 558 664 l 655 664 l 655 0 l 558 0 l 558 129 q 481 22 530 62 q 364 -17 432 -17 q 184 86 249 -17 l 184 -231 l 87 -231 l 87 664 l 184 664 "},"Ç":{"x_min":104,"x_max":1210,"ha":1303,"o":"m 900 -7 l 662 -7 l 559 -7 l 353 -7 q 104 262 104 23 l 104 440 q 104 597 104 546 q 122 740 104 648 q 210 879 140 832 q 403 926 280 926 q 508 932 459 932 q 624 932 557 932 l 657 932 l 791 932 q 921 932 871 932 q 1052 915 971 932 q 1166 825 1134 898 q 1198 631 1198 752 l 1087 631 l 1087 639 q 1079 740 1087 701 q 1043 795 1071 778 q 938 821 1014 812 q 727 831 862 831 q 575 831 677 831 q 423 831 474 831 q 311 816 353 831 q 253 770 269 802 q 232 707 238 738 q 223 636 227 676 q 219 530 219 597 q 219 403 219 464 q 254 157 219 224 q 442 90 289 90 l 658 90 l 865 90 q 1043 121 993 90 q 1093 269 1093 152 l 1093 307 l 1210 307 q 1154 58 1210 124 q 900 -7 1098 -7 m 768 -129 l 563 -184 l 535 -129 l 723 -44 l 768 -129 "},"’":{"x_min":182.9375,"x_max":340,"ha":523,"o":"m 340 782 q 182 622 340 622 l 182 695 q 233 715 216 702 q 251 755 251 727 l 249 771 l 201 771 l 201 927 l 340 927 l 340 782 "},"-":{"x_min":14,"x_max":449,"ha":463,"o":"m 449 341 l 14 341 l 14 433 l 449 433 l 449 341 "},"Q":{"x_min":103,"x_max":1376.28125,"ha":1385,"o":"m 1323 27 l 1227 91 q 1104 12 1171 31 q 939 -6 1037 -6 l 700 -6 l 583 -6 l 379 -6 q 164 82 226 8 q 103 308 103 156 l 103 462 q 103 590 103 538 q 119 749 103 641 q 226 894 136 857 q 512 932 316 932 l 692 932 l 985 932 q 1160 895 1089 932 q 1252 791 1231 859 q 1279 656 1273 724 q 1286 521 1286 588 l 1286 480 l 1286 403 q 1286 279 1286 327 q 1269 176 1286 231 l 1376 106 l 1323 27 m 1167 574 q 1125 784 1167 736 q 925 832 1083 832 l 690 832 l 476 832 q 374 832 418 832 q 298 815 331 832 q 249 765 265 799 q 226 685 233 732 q 220 590 220 639 q 220 470 220 542 l 220 393 q 227 241 220 300 q 258 150 235 181 q 312 108 282 119 q 381 94 343 98 q 470 90 419 90 q 547 90 520 90 l 840 90 l 857 90 l 874 90 q 940 90 907 90 q 1001 94 968 91 q 1067 109 1033 96 q 1130 153 1101 121 l 760 392 l 810 472 l 1167 244 l 1167 434 l 1167 574 "},"M":{"x_min":131,"x_max":1603,"ha":1732,"o":"m 821 0 l 244 832 l 244 0 l 131 0 l 131 927 l 314 927 l 867 132 l 1422 927 l 1603 927 l 1603 0 l 1490 0 l 1490 832 l 911 0 l 821 0 "},"C":{"x_min":104,"x_max":1210,"ha":1303,"o":"m 900 -7 l 662 -7 l 559 -7 l 353 -7 q 104 263 104 23 l 104 440 q 104 597 104 546 q 122 740 104 648 q 210 879 140 832 q 403 926 280 926 q 508 932 459 932 q 624 932 557 932 l 657 932 l 791 932 q 921 932 871 932 q 1052 915 971 932 q 1166 825 1134 898 q 1198 631 1198 752 l 1087 631 l 1087 639 q 1079 739 1087 701 q 1043 793 1071 776 q 938 818 1014 809 q 727 828 862 828 q 575 828 677 828 q 423 828 474 828 q 269 794 302 828 q 227 680 235 761 q 219 531 219 598 q 219 404 219 464 q 254 157 219 225 q 442 90 289 90 l 658 90 l 865 90 q 1043 121 993 90 q 1093 269 1093 152 l 1093 307 l 1210 307 q 1154 58 1210 124 q 900 -7 1098 -7 "},"œ":{"x_min":97,"x_max":1669,"ha":1758,"o":"m 944 260 q 987 135 944 176 q 1114 85 1030 93 q 1277 76 1198 76 l 1319 76 q 1368 76 1341 76 q 1450 83 1395 76 q 1537 116 1505 89 q 1569 203 1569 143 l 1669 203 q 1655 121 1669 157 q 1600 49 1641 85 q 1475 3 1559 14 q 1278 -8 1391 -8 l 1249 -8 q 1127 -8 1164 -8 q 1035 3 1089 -8 q 945 43 981 15 q 893 122 909 72 q 823 33 874 62 q 719 -1 772 4 q 614 -8 666 -8 q 514 -8 561 -8 q 190 47 284 -8 q 97 315 97 103 q 128 537 97 455 q 232 639 159 620 q 356 659 305 659 q 463 659 407 659 l 518 659 q 620 659 570 659 q 733 649 670 659 q 835 612 796 640 q 893 525 874 585 q 968 620 916 590 q 1084 656 1021 650 q 1193 663 1146 663 l 1223 663 l 1282 663 q 1580 610 1492 663 q 1669 364 1669 557 l 1669 295 l 944 295 l 944 260 m 1324 574 l 1278 574 q 1134 574 1160 574 q 1055 561 1108 574 q 973 506 1003 548 q 944 401 944 463 l 944 378 l 1575 378 q 1553 499 1575 452 q 1486 559 1531 545 q 1401 574 1441 574 q 1324 574 1362 574 m 517 78 l 541 78 q 655 78 617 78 q 742 92 693 78 q 817 163 790 107 q 845 293 845 220 q 826 465 845 398 q 752 552 807 532 q 640 573 696 573 q 517 573 584 573 q 388 573 441 573 q 284 554 335 573 q 219 488 233 535 q 203 403 206 442 q 199 315 199 364 q 228 156 199 217 q 323 87 258 96 q 423 78 388 78 q 517 78 459 78 "},"!":{"x_min":111,"x_max":257,"ha":368,"o":"m 257 0 l 111 0 l 111 158 l 257 158 l 257 0 m 234 279 l 126 279 l 126 927 l 234 927 l 234 279 "},"ç":{"x_min":92,"x_max":915.78125,"ha":999,"o":"m 608 -8 l 500 -8 q 188 54 284 -8 q 92 321 92 116 q 98 450 92 400 q 139 556 104 499 q 255 638 173 613 q 443 663 336 663 l 503 663 q 717 653 644 663 q 848 592 790 643 q 906 426 906 541 l 803 426 q 790 501 803 470 q 739 552 776 532 q 626 573 701 573 q 518 573 550 573 l 482 573 q 368 568 412 573 q 275 544 323 564 q 215 483 227 524 q 199 408 202 442 q 196 336 196 373 l 196 318 q 230 144 196 189 q 322 90 264 100 q 429 81 380 81 q 533 81 478 81 q 606 81 564 81 q 731 99 649 81 q 813 234 813 118 l 915 234 q 837 42 915 92 q 608 -8 760 -8 m 589 -130 l 383 -185 l 357 -130 l 543 -45 l 589 -130 "},"È":{"x_min":129,"x_max":1057.28125,"ha":1150,"o":"m 1018 527 l 1018 434 l 242 434 l 242 93 l 1057 93 l 1057 0 l 129 0 l 129 927 l 1047 927 l 1047 832 l 242 832 l 242 527 l 1018 527 m 382 1050 l 418 1166 l 767 1050 l 744 990 l 382 1050 "},"{":{"x_min":192,"x_max":507.71875,"ha":695,"o":"m 375 -35 q 404 -141 375 -113 q 507 -170 432 -170 l 507 -259 q 325 -220 378 -259 q 273 -51 273 -181 l 273 170 q 255 257 273 224 q 192 303 238 290 l 192 384 q 254 431 236 398 q 273 513 273 463 l 273 757 q 325 905 273 866 q 488 945 377 945 l 507 945 l 507 853 q 405 825 435 853 q 375 723 375 798 l 375 498 q 361 402 375 437 q 300 341 348 367 q 360 278 345 317 q 375 181 375 240 l 375 -35 "},"X":{"x_min":-19.4375,"x_max":1218.0625,"ha":1200,"o":"m 1162 927 l 704 493 l 1218 0 l 1048 0 l 598 437 l 150 0 l -19 0 l 494 493 l 33 927 l 197 927 l 598 547 l 995 927 l 1162 927 "},"ô":{"x_min":92,"x_max":949,"ha":1042,"o":"m 514 660 q 764 643 680 660 q 898 558 847 626 q 949 338 949 490 q 860 48 949 106 q 512 -10 771 -10 q 187 47 283 -10 q 92 320 92 104 q 136 554 92 473 q 275 648 180 636 q 412 660 369 660 q 514 660 455 660 m 514 74 q 771 106 697 74 q 846 295 846 139 q 820 485 846 417 q 721 564 794 554 q 605 574 648 574 q 501 574 561 574 l 472 574 q 253 531 311 574 q 196 325 196 488 q 255 122 196 170 q 476 74 315 74 l 514 74 m 251 771 l 519 886 l 787 771 l 771 716 l 519 779 l 269 716 l 251 771 "},"¼":{"x_min":110.046875,"x_max":1736,"ha":1778,"o":"m 110 744 l 350 927 l 443 927 l 443 371 l 367 371 l 367 860 l 155 696 l 110 744 m 547 0 l 462 0 l 1232 927 l 1316 927 l 547 0 m 1736 118 l 1646 118 l 1646 0 l 1570 0 l 1570 118 l 1086 118 l 1086 211 l 1544 556 l 1646 556 l 1646 185 l 1736 185 l 1736 118 m 1165 185 l 1570 185 l 1570 490 l 1165 185 "},"#":{"x_min":73.609375,"x_max":969.453125,"ha":1044,"o":"m 718 928 l 806 928 l 768 678 l 969 678 l 956 595 l 754 595 l 713 343 l 916 343 l 902 254 l 700 254 l 659 0 l 570 0 l 611 254 l 368 254 l 327 0 l 241 0 l 281 254 l 73 254 l 87 343 l 295 343 l 336 595 l 127 595 l 140 678 l 348 678 l 388 928 l 475 928 l 434 678 l 679 678 l 718 928 m 665 595 l 422 595 l 381 343 l 625 343 l 665 595 "},"Ê":{"x_min":129,"x_max":1057.28125,"ha":1150,"o":"m 1018 527 l 1018 434 l 242 434 l 242 93 l 1057 93 l 1057 0 l 129 0 l 129 927 l 1047 927 l 1047 832 l 242 832 l 242 527 l 1018 527 m 307 1036 l 575 1152 l 843 1036 l 826 982 l 575 1045 l 325 982 l 307 1036 "},")":{"x_min":18,"x_max":352,"ha":467,"o":"m 50 -104 q 198 -69 157 -104 q 239 68 239 -34 l 239 453 l 239 681 q 205 803 239 770 q 95 836 172 836 q 18 831 55 836 l 18 935 l 77 935 q 269 885 201 935 q 345 761 338 835 q 352 636 352 688 q 352 559 352 585 l 352 364 l 352 36 q 281 -149 352 -94 q 70 -204 211 -204 l 18 -204 l 18 -104 l 50 -104 "},"Å":{"x_min":-27.5,"x_max":1221.5,"ha":1194,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1221 0 l 1092 0 l 971 208 l 222 208 l 104 0 m 275 301 l 918 301 l 594 844 l 275 301 m 596 982 q 467 1002 525 982 q 410 1082 410 1023 q 469 1164 410 1140 q 596 1189 529 1189 q 725 1165 667 1189 q 784 1082 784 1141 q 725 1002 784 1023 q 596 982 667 982 m 592 1039 l 597 1039 q 690 1049 660 1039 q 720 1083 720 1059 q 690 1120 720 1108 q 596 1133 660 1133 q 511 1124 549 1133 q 474 1084 474 1116 q 511 1047 474 1056 q 592 1039 549 1039 "},"ø":{"x_min":68,"x_max":978,"ha":1041,"o":"m 978 572 l 917 531 q 940 433 934 489 q 947 321 947 378 q 899 90 947 168 q 708 0 852 12 q 616 -7 658 -7 q 508 -7 575 -7 q 386 -7 438 -7 q 277 5 333 -7 q 169 59 222 17 l 68 -5 l 68 79 l 126 116 q 101 194 110 147 q 92 328 92 242 q 174 592 92 526 q 461 659 257 659 q 636 659 579 659 q 759 647 693 659 q 873 589 824 635 l 978 654 l 978 572 m 513 570 q 355 561 447 570 q 230 496 264 553 q 196 327 196 439 q 199 240 196 273 q 216 172 202 206 l 783 531 q 694 570 747 562 l 513 570 m 512 79 l 537 79 q 637 79 604 79 q 735 92 670 79 q 821 161 799 105 q 843 321 843 217 q 839 404 843 367 q 824 474 836 440 l 262 116 q 334 85 298 91 q 422 79 370 79 q 512 79 473 79 "},"â":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 721 13 757 33 q 631 -6 686 -6 l 452 -6 l 368 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 231 383 160 376 q 355 390 301 390 q 456 390 409 390 l 640 390 q 720 373 690 390 q 782 315 751 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 m 227 771 l 495 887 l 763 771 l 747 717 l 495 780 l 245 717 l 227 771 "},"}":{"x_min":187.0625,"x_max":502,"ha":694,"o":"m 319 721 q 290 827 319 799 q 187 856 262 856 l 187 945 q 371 908 320 945 q 421 737 421 872 l 421 514 q 439 427 421 459 q 502 380 456 394 l 502 301 q 439 254 457 287 q 421 172 421 222 l 421 -72 q 369 -219 421 -179 q 206 -260 317 -260 l 187 -260 l 187 -167 q 289 -139 259 -167 q 319 -37 319 -112 l 319 187 q 333 282 319 247 q 394 343 348 318 q 334 405 349 366 q 319 502 319 444 l 319 721 "},"‰":{"x_min":29,"x_max":1958,"ha":1986,"o":"m 352 929 q 545 893 501 929 q 589 702 589 858 q 550 498 589 538 q 366 458 511 458 l 192 458 q 57 511 85 458 q 29 687 29 564 q 71 892 29 855 q 270 929 113 929 l 352 929 m 204 515 l 419 515 q 470 519 452 515 q 502 540 489 523 q 518 595 515 558 q 522 680 522 633 q 491 848 522 824 q 312 872 460 872 l 209 872 q 117 846 136 872 q 98 707 98 821 l 98 689 q 98 604 98 640 q 109 549 98 569 q 146 521 120 528 q 204 515 172 515 m 325 0 l 253 0 l 1023 924 l 1097 924 l 325 0 m 1084 466 q 1277 430 1233 466 q 1321 239 1321 395 q 1281 32 1321 70 q 1084 -6 1241 -6 l 924 -6 q 789 47 817 -6 q 761 223 761 101 q 804 429 761 393 q 1009 466 847 466 l 1084 466 m 842 87 q 880 58 855 65 q 938 51 905 51 l 1038 51 l 1143 51 q 1198 55 1176 51 q 1233 76 1220 59 q 1249 126 1246 92 q 1253 205 1253 160 l 1253 259 q 1249 332 1253 302 q 1232 379 1246 363 q 1181 401 1219 395 q 1095 408 1143 408 l 1044 408 l 941 408 q 848 381 866 408 q 830 258 830 354 l 830 226 l 830 208 q 830 132 830 159 q 842 87 830 105 m 1720 466 q 1912 429 1867 466 q 1958 239 1958 393 q 1918 32 1958 70 q 1721 -6 1878 -6 l 1562 -6 q 1425 47 1453 -6 q 1397 223 1397 101 q 1440 429 1397 393 q 1645 466 1483 466 l 1720 466 m 1572 51 l 1673 51 l 1779 51 q 1834 55 1811 51 q 1870 76 1857 59 q 1886 127 1883 93 q 1890 206 1890 161 l 1890 248 q 1885 329 1890 294 q 1869 381 1881 364 q 1834 403 1856 398 q 1784 408 1812 408 l 1681 408 l 1570 408 q 1515 402 1537 408 q 1483 376 1493 396 q 1469 319 1472 356 q 1466 242 1466 283 l 1466 226 q 1466 140 1466 175 q 1477 85 1466 105 q 1514 58 1488 65 q 1572 51 1540 51 "},"Ä":{"x_min":-27.953125,"x_max":1220.9375,"ha":1193,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1220 0 l 1091 0 l 970 208 l 222 208 l 104 0 m 274 301 l 918 301 l 594 844 l 274 301 m 525 1018 l 329 1018 l 329 1110 l 525 1110 l 525 1018 m 864 1018 l 668 1018 l 668 1110 l 864 1110 l 864 1018 "},"¸":{"x_min":230.5625,"x_max":463.890625,"ha":694,"o":"m 463 -105 l 258 -161 l 230 -105 l 418 -20 l 463 -105 "},"a":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 721 13 757 33 q 631 -6 686 -6 l 452 -6 l 368 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 231 383 160 376 q 355 390 301 390 q 456 390 409 390 l 640 390 q 720 373 690 390 q 782 315 751 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 "},"—":{"x_min":14,"x_max":1374,"ha":1388,"o":"m 1374 341 l 14 341 l 14 433 l 1374 433 l 1374 341 "},"=":{"x_min":33,"x_max":662,"ha":694,"o":"m 662 542 l 33 542 l 33 599 l 662 599 l 662 542 m 662 347 l 33 347 l 33 403 l 662 403 l 662 347 "},"N":{"x_min":129,"x_max":1283,"ha":1412,"o":"m 129 0 l 129 927 l 316 927 l 1170 88 l 1170 927 l 1283 927 l 1283 0 l 1097 0 l 242 842 l 242 0 l 129 0 "},"ú":{"x_min":112,"x_max":895,"ha":1005,"o":"m 798 126 q 707 26 773 62 q 499 -10 642 -10 q 187 55 263 -10 q 112 248 112 120 l 112 269 l 112 653 l 209 653 l 209 295 q 269 114 209 152 q 482 76 329 76 q 720 114 642 76 q 798 295 798 152 l 798 653 l 895 653 l 895 0 l 798 0 l 798 126 m 695 776 l 331 716 l 310 776 l 659 892 l 695 776 "},"2":{"x_min":82,"x_max":1107,"ha":1167,"o":"m 1105 0 l 82 0 l 82 39 q 131 351 82 260 q 370 442 180 442 l 577 442 q 693 442 640 442 q 841 457 746 442 q 964 511 936 472 q 992 644 992 551 q 949 791 992 749 q 803 834 907 834 l 575 834 l 397 834 q 244 792 288 834 q 200 631 200 750 l 200 584 l 92 584 q 132 833 92 761 q 285 919 173 906 q 446 933 396 933 q 575 933 496 933 l 683 933 q 1008 885 909 933 q 1107 638 1107 837 q 1043 414 1107 482 q 825 346 979 346 l 587 346 l 391 346 q 227 294 261 346 q 193 96 193 243 l 1105 96 l 1105 0 "},"ü":{"x_min":112,"x_max":895,"ha":1005,"o":"m 798 126 q 707 26 772 62 q 499 -10 642 -10 q 187 55 263 -10 q 112 248 112 120 l 112 269 l 112 653 l 209 653 l 209 295 q 269 114 209 152 q 482 76 329 76 q 720 114 642 76 q 798 295 798 152 l 798 653 l 895 653 l 895 0 l 798 0 l 798 126 m 432 745 l 236 745 l 236 837 l 432 837 l 432 745 m 770 745 l 574 745 l 574 837 l 770 837 l 770 745 "},"Z":{"x_min":36,"x_max":1107,"ha":1145,"o":"m 1107 0 l 36 0 l 36 93 l 915 832 l 75 832 l 75 927 l 1092 927 l 1092 832 l 211 93 l 1107 93 l 1107 0 "},"u":{"x_min":112,"x_max":895,"ha":1005,"o":"m 798 126 q 707 26 773 62 q 499 -10 642 -10 q 187 55 263 -10 q 112 248 112 120 l 112 269 l 112 653 l 209 653 l 209 295 q 269 114 209 152 q 482 76 329 76 q 720 114 642 76 q 798 295 798 152 l 798 653 l 895 653 l 895 0 l 798 0 l 798 126 "},"˜":{"x_min":130.5625,"x_max":795.828125,"ha":926,"o":"m 318 1006 q 466 955 372 1006 q 612 905 561 905 q 683 932 654 905 q 738 1008 712 959 l 795 964 q 717 853 766 897 q 602 810 668 810 q 458 858 548 810 q 323 911 368 906 q 247 884 277 911 q 187 807 216 857 l 130 851 q 208 962 162 918 q 318 1006 254 1006 "},"Ó":{"x_min":104,"x_max":1291,"ha":1392,"o":"m 428 935 l 838 935 q 1209 857 1128 935 q 1291 499 1291 780 l 1291 465 l 1291 436 q 1279 226 1291 336 q 1200 56 1267 116 q 998 -3 1132 -3 q 891 -9 956 -9 q 768 -9 827 -9 l 562 -9 l 537 -9 q 374 0 452 -9 q 243 29 296 7 q 157 107 190 52 q 113 249 123 162 q 104 456 104 337 q 104 618 104 569 q 124 759 104 668 q 222 893 144 851 q 428 935 300 935 m 455 90 l 693 90 l 780 90 l 809 90 q 1007 99 907 90 q 1140 164 1107 109 q 1173 333 1173 220 l 1173 523 q 1166 675 1173 610 q 1135 773 1159 739 q 1073 817 1111 807 q 995 831 1035 828 q 911 835 956 835 l 693 835 l 477 835 q 269 793 319 835 q 219 598 219 751 l 219 459 l 219 391 q 256 152 219 214 q 455 90 293 90 m 888 1050 l 524 990 l 503 1050 l 852 1165 l 888 1050 "},"k":{"x_min":111,"x_max":884.390625,"ha":865,"o":"m 839 653 l 359 346 l 884 0 l 723 0 l 266 309 l 208 309 l 208 0 l 111 0 l 111 935 l 208 935 l 208 392 l 266 392 l 676 653 l 839 653 "},"Ù":{"x_min":119,"x_max":1210,"ha":1331,"o":"m 1210 286 q 1131 40 1210 89 q 834 -8 1052 -8 l 648 -8 l 383 -8 q 182 52 245 -8 q 119 251 119 113 l 119 926 l 232 926 l 232 266 q 281 122 232 154 q 452 91 331 91 l 651 91 l 866 91 q 1047 124 997 91 q 1097 275 1097 157 l 1097 296 l 1097 926 l 1210 926 l 1210 286 m 472 1051 l 508 1166 l 856 1051 l 834 991 l 472 1051 "},"Ÿ":{"x_min":-27.609375,"x_max":1153.21875,"ha":1125,"o":"m 1153 927 l 618 394 l 618 0 l 505 0 l 505 394 l -27 927 l 132 927 l 560 491 l 993 927 l 1153 927 m 492 1019 l 296 1019 l 296 1111 l 492 1111 l 492 1019 m 831 1019 l 635 1019 l 635 1111 l 831 1111 l 831 1019 "},"¢":{"x_min":176,"x_max":991,"ha":1166,"o":"m 644 946 l 644 811 q 917 750 851 811 q 984 575 984 690 l 883 575 q 820 699 883 672 q 644 726 757 726 l 644 228 q 830 254 766 228 q 894 383 894 281 l 991 383 q 900 187 991 234 q 644 140 810 140 l 644 -13 l 556 -13 l 556 140 q 262 196 349 140 q 176 450 176 253 q 176 553 176 511 q 189 667 176 594 q 303 775 203 740 q 535 811 402 811 l 556 811 l 556 946 l 644 946 m 278 475 q 327 277 278 326 q 525 228 377 228 l 556 228 l 556 725 l 514 725 q 325 676 373 725 q 278 475 278 627 "},"ß":{"x_min":111,"x_max":943,"ha":1036,"o":"m 111 653 q 150 838 111 770 q 261 919 190 906 q 390 932 333 932 q 498 932 448 932 q 661 932 606 932 q 770 916 715 932 q 850 860 825 901 q 875 754 875 820 q 849 644 875 680 q 755 589 824 608 q 903 518 863 579 q 943 344 943 457 q 887 65 943 140 q 626 -10 831 -10 q 388 31 465 -10 q 311 221 311 73 l 311 249 l 410 249 l 410 228 q 450 105 410 134 q 587 76 490 76 q 788 119 736 76 q 840 305 840 163 q 799 496 840 444 q 626 548 758 548 l 368 548 l 368 631 l 627 631 q 736 653 701 631 q 771 744 771 675 q 744 823 771 801 q 658 846 718 846 l 466 846 q 342 841 391 846 q 262 814 292 837 q 217 742 226 789 q 208 631 208 696 l 208 0 l 111 0 l 111 653 "},"é":{"x_min":92,"x_max":924,"ha":1018,"o":"m 326 88 q 397 80 349 84 q 513 76 446 76 l 566 76 q 680 80 638 76 q 755 99 722 84 q 804 137 789 113 q 820 196 820 161 l 924 196 q 820 28 924 66 q 553 -10 717 -10 q 287 5 373 -10 q 146 92 201 21 q 92 324 92 162 q 168 594 92 525 q 448 663 245 663 l 514 663 q 751 645 671 663 q 877 560 831 628 q 924 343 924 492 l 924 310 l 189 310 q 215 160 189 213 q 326 88 241 106 m 555 577 l 479 577 q 336 567 398 577 q 242 532 273 558 q 201 471 211 505 q 191 393 191 437 l 824 393 q 815 469 824 436 q 782 526 807 503 q 703 563 757 549 q 555 577 650 577 m 701 776 l 337 717 l 316 776 l 665 892 l 701 776 "},"s":{"x_min":85,"x_max":909,"ha":991,"o":"m 679 574 l 487 574 q 388 574 426 574 q 302 567 350 574 q 225 541 254 560 q 197 476 197 521 q 226 397 197 416 q 320 378 256 378 l 489 378 l 671 378 q 850 339 792 378 q 909 187 909 301 q 840 24 909 57 q 628 -8 771 -8 l 446 -8 q 318 -8 362 -8 q 210 5 275 -8 q 115 62 146 18 q 85 191 85 107 l 85 221 l 184 221 l 186 205 q 213 113 186 139 q 311 80 241 87 l 482 80 l 511 80 l 536 80 q 690 87 622 80 q 782 112 759 95 q 805 174 805 129 q 770 267 805 242 q 661 292 736 292 l 485 292 l 316 292 q 149 327 206 292 q 93 468 93 362 q 148 613 93 567 q 302 659 203 659 l 487 659 q 587 659 539 659 q 697 655 636 659 q 841 613 799 655 q 883 472 883 571 l 786 472 q 761 547 781 527 q 679 574 741 566 "},"B":{"x_min":129,"x_max":1203,"ha":1291,"o":"m 1171 695 q 1137 547 1171 586 q 997 490 1104 508 q 1159 441 1115 490 q 1203 269 1203 391 q 1132 59 1203 118 q 900 0 1061 0 l 129 0 l 129 927 l 912 927 q 1105 872 1039 927 q 1171 695 1171 818 m 1054 685 q 1015 802 1054 772 q 884 832 976 832 l 242 832 l 242 530 l 868 530 q 1010 561 966 530 q 1054 685 1054 593 m 1086 253 q 1076 352 1086 314 q 1034 409 1066 391 q 967 432 1002 427 q 890 437 931 437 l 875 437 l 242 437 l 242 93 l 877 93 q 1035 125 984 93 q 1086 253 1086 158 "},"…":{"x_min":192,"x_max":1377,"ha":1570,"o":"m 331 0 l 192 0 l 192 152 l 331 152 l 331 0 m 855 0 l 716 0 l 716 152 l 855 152 l 855 0 m 1377 0 l 1238 0 l 1238 152 l 1377 152 l 1377 0 "},"?":{"x_min":85,"x_max":956,"ha":1028,"o":"m 538 -1 l 392 -1 l 392 157 l 538 157 l 538 -1 m 688 510 q 818 557 785 522 q 852 685 852 593 q 818 799 852 765 q 703 840 785 832 l 506 840 l 343 840 q 233 817 273 840 q 193 718 193 795 l 193 634 l 85 634 l 85 715 q 121 860 85 804 q 221 925 158 915 q 319 935 284 935 q 410 935 354 935 l 510 935 q 565 935 538 935 q 621 935 593 935 q 893 868 831 935 q 956 668 956 801 q 884 473 956 513 q 687 415 813 434 q 539 375 561 396 q 517 300 517 354 l 413 300 q 457 445 413 402 q 688 510 501 488 "},"H":{"x_min":129,"x_max":1216,"ha":1347,"o":"m 242 0 l 129 0 l 129 927 l 242 927 l 242 525 l 1105 525 l 1105 927 l 1216 927 l 1216 0 l 1105 0 l 1105 432 l 242 432 l 242 0 "},"î":{"x_min":-108.4375,"x_max":427.453125,"ha":319,"o":"m 208 0 l 111 0 l 111 653 l 208 653 l 208 0 m -108 772 l 159 887 l 427 772 l 410 718 l 159 780 l -90 718 l -108 772 "},"c":{"x_min":93,"x_max":915,"ha":998,"o":"m 609 -8 l 501 -8 q 189 54 286 -8 q 93 320 93 116 q 99 450 93 400 q 140 556 105 500 q 256 638 176 613 q 444 663 337 663 l 502 663 q 717 653 644 663 q 848 593 791 644 q 905 426 905 542 l 804 426 q 790 500 804 470 q 746 545 776 529 q 661 569 717 561 q 518 577 605 577 l 501 577 q 359 572 399 577 q 273 547 319 567 q 213 486 226 528 q 200 410 200 444 q 200 338 200 375 l 200 318 q 233 144 200 189 q 325 90 267 99 q 432 81 383 81 q 536 81 480 81 q 608 81 566 81 q 732 99 650 81 q 814 234 814 118 l 915 234 q 836 43 915 94 q 609 -8 758 -8 "},"¶":{"x_min":37.828125,"x_max":666,"ha":766,"o":"m 37 679 q 122 867 37 807 q 339 927 207 927 l 666 927 l 666 880 l 583 880 l 583 -156 l 525 -156 l 525 880 l 374 880 l 374 -156 l 317 -156 l 317 435 q 116 497 194 435 q 37 679 37 560 "},"•":{"x_min":275,"x_max":544,"ha":833,"o":"m 544 397 q 505 302 544 341 q 408 264 466 264 q 313 302 352 264 q 275 397 275 341 q 313 492 275 453 q 408 531 352 531 q 503 492 463 531 q 544 397 544 453 "},"¥":{"x_min":-27.671875,"x_max":1152.5625,"ha":1125,"o":"m 1152 927 l 839 615 l 997 615 l 997 568 l 790 568 l 619 398 l 859 398 l 859 345 l 618 345 l 618 0 l 505 0 l 505 345 l 278 345 l 278 398 l 502 398 l 336 568 l 139 568 l 139 615 l 289 615 l -27 927 l 132 927 l 560 492 l 992 927 l 1152 927 "},"(":{"x_min":117,"x_max":450,"ha":467,"o":"m 417 835 q 270 800 311 835 q 230 664 230 766 l 230 279 l 230 51 q 263 -70 230 -37 q 373 -103 296 -103 q 450 -98 412 -103 l 450 -202 l 390 -202 q 198 -152 266 -202 q 123 -30 130 -102 q 117 85 117 40 q 117 152 117 130 l 117 173 l 117 368 l 117 696 q 187 880 117 826 q 398 935 257 935 l 450 935 l 450 835 l 417 835 "},"U":{"x_min":119,"x_max":1210,"ha":1331,"o":"m 1210 286 q 1131 40 1210 89 q 834 -8 1052 -8 l 648 -8 l 383 -8 q 182 52 245 -8 q 119 251 119 113 l 119 926 l 232 926 l 232 266 q 281 122 232 154 q 452 91 331 91 l 651 91 l 866 91 q 1047 124 997 91 q 1097 275 1097 157 l 1097 296 l 1097 926 l 1210 926 l 1210 286 "},"Ñ":{"x_min":129,"x_max":1283,"ha":1412,"o":"m 129 0 l 129 927 l 316 927 l 1170 88 l 1170 927 l 1283 927 l 1283 0 l 1097 0 l 242 842 l 242 0 l 129 0 m 584 1131 q 699 1101 619 1131 q 814 1071 780 1071 q 857 1089 841 1071 q 884 1136 874 1107 l 971 1136 q 926 1029 964 1070 q 825 988 888 988 q 703 1016 778 988 q 591 1045 627 1045 q 551 1029 565 1045 q 526 983 537 1014 l 438 983 q 485 1087 445 1043 q 584 1131 524 1131 "},"F":{"x_min":129,"x_max":1014.21875,"ha":1080,"o":"m 975 522 l 975 429 l 242 429 l 242 0 l 129 0 l 129 927 l 1014 927 l 1014 832 l 242 832 l 242 522 l 975 522 "},":":{"x_min":193,"x_max":332,"ha":524,"o":"m 332 502 l 193 502 l 193 654 l 332 654 l 332 502 m 332 0 l 193 0 l 193 152 l 332 152 l 332 0 "},"Û":{"x_min":119,"x_max":1210,"ha":1331,"o":"m 1210 286 q 1131 40 1210 89 q 834 -8 1052 -8 l 648 -8 l 383 -8 q 182 52 245 -8 q 119 251 119 113 l 119 926 l 232 926 l 232 266 q 281 122 232 154 q 452 91 331 91 l 651 91 l 866 91 q 1047 124 997 91 q 1097 275 1097 157 l 1097 296 l 1097 926 l 1210 926 l 1210 286 m 395 1035 l 663 1151 l 931 1035 l 915 981 l 663 1044 l 413 981 l 395 1035 "},"*":{"x_min":318.5,"x_max":975.109375,"ha":1293,"o":"m 689 926 l 689 652 l 950 736 l 975 656 l 714 571 l 876 349 l 808 300 l 647 522 l 485 300 l 418 350 l 579 572 l 318 657 l 344 736 l 606 652 l 606 926 l 689 926 "},"†":{"x_min":178,"x_max":1116,"ha":1294,"o":"m 1116 640 l 1116 552 l 699 552 l 699 -297 l 595 -297 l 595 552 l 178 552 l 178 640 l 595 640 l 595 928 l 699 928 l 699 640 l 1116 640 "},"°":{"x_min":151,"x_max":542,"ha":693,"o":"m 151 721 q 206 863 151 805 q 346 922 261 922 q 485 863 428 922 q 542 724 542 805 q 483 587 542 644 q 345 530 425 530 q 209 587 267 530 q 151 721 151 644 m 201 723 q 244 623 201 666 q 345 580 287 580 q 448 622 406 580 q 491 726 491 664 q 449 828 491 785 q 346 872 407 872 q 243 828 285 872 q 201 723 201 784 "},"V":{"x_min":-27.78125,"x_max":1147.21875,"ha":1119,"o":"m 1147 927 l 633 0 l 479 0 l -27 927 l 102 927 l 556 100 l 1018 927 l 1147 927 "},"å":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 721 13 757 33 q 631 -6 686 -6 l 452 -6 l 367 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 230 383 160 376 q 355 390 301 390 q 456 390 409 390 l 640 390 q 720 373 690 390 q 782 315 751 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 m 494 708 q 365 728 423 708 q 308 808 308 749 q 367 891 308 867 q 494 916 427 916 q 623 892 565 916 q 682 808 682 868 q 623 728 682 749 q 494 708 565 708 m 490 765 l 495 765 q 588 775 558 765 q 618 809 618 785 q 588 847 618 834 q 494 860 558 860 q 409 851 447 860 q 372 811 372 843 q 409 774 372 783 q 490 765 447 765 "}," ":{"x_min":0,"x_max":0,"ha":347},"0":{"x_min":47,"x_max":1121,"ha":1167,"o":"m 328 932 l 591 932 l 893 932 q 1043 869 988 932 q 1109 726 1098 807 q 1121 579 1121 644 q 1121 438 1121 513 q 1104 179 1121 265 q 1016 42 1088 93 q 781 -8 945 -8 l 574 -8 l 356 -8 q 159 33 240 -8 q 62 154 78 74 q 47 306 47 235 q 47 451 47 376 q 47 607 47 551 q 63 750 47 663 q 145 884 80 837 q 328 932 209 932 m 378 89 l 577 89 l 784 89 q 936 114 887 89 q 994 210 985 140 q 1004 346 1004 281 q 1004 471 1004 411 q 1004 615 1004 545 q 989 739 1004 684 q 924 815 974 795 q 794 836 874 836 l 590 836 l 388 836 q 230 810 282 836 q 171 710 179 784 q 164 573 164 636 q 164 453 164 511 l 164 243 q 225 120 172 152 q 378 89 278 89 "},"”":{"x_min":181.5,"x_max":609,"ha":792,"o":"m 338 782 q 304 666 338 711 q 200 622 270 622 l 181 622 l 181 696 q 231 715 214 703 q 249 756 249 728 l 247 771 l 199 771 l 199 927 l 338 927 l 338 782 m 609 781 q 452 621 609 621 l 452 694 q 500 713 482 701 q 517 751 517 725 l 517 770 l 469 770 l 469 926 l 609 926 l 609 781 "},"¾":{"x_min":46,"x_max":1736,"ha":1778,"o":"m 511 687 q 581 705 559 687 q 603 771 603 724 q 586 846 603 827 q 515 865 570 865 l 358 865 l 244 865 q 172 858 199 865 q 135 831 145 852 q 126 791 126 809 q 126 751 126 773 l 50 751 q 66 857 50 816 q 127 912 83 898 q 212 929 172 926 q 309 933 252 933 l 405 933 q 470 933 433 933 q 567 924 508 933 q 654 882 626 916 q 682 774 682 849 q 667 690 682 710 q 616 656 652 670 q 676 612 662 640 q 690 527 690 583 q 660 409 690 445 q 540 366 631 374 l 465 366 l 286 366 q 100 397 155 366 q 46 548 46 428 l 122 548 l 122 531 q 136 456 122 479 q 202 434 151 434 q 284 434 243 434 q 366 434 325 434 l 516 434 q 590 452 570 434 q 611 524 611 471 q 595 603 611 587 q 515 620 579 620 l 282 620 l 282 687 l 511 687 m 546 0 l 462 0 l 1232 927 l 1316 927 l 546 0 m 1736 118 l 1646 118 l 1646 0 l 1570 0 l 1570 118 l 1086 118 l 1086 211 l 1544 556 l 1646 556 l 1646 185 l 1736 185 l 1736 118 m 1165 185 l 1570 185 l 1570 491 l 1165 185 "},"@":{"x_min":75,"x_max":1231,"ha":1295,"o":"m 999 303 q 1015 238 999 259 q 1076 218 1032 218 q 1143 246 1127 218 q 1160 332 1160 275 l 1160 438 q 1153 597 1160 525 q 1131 724 1147 670 q 1081 805 1115 779 q 990 840 1048 830 q 856 850 933 850 q 688 850 778 850 l 641 850 l 475 850 q 341 843 404 850 q 229 810 279 836 q 161 690 180 784 q 143 477 143 595 l 143 413 q 151 238 143 325 q 184 90 159 151 q 284 11 209 28 q 465 -6 358 -6 l 659 -6 l 904 -6 q 1031 12 979 -6 q 1108 84 1083 31 l 1173 41 q 1127 -26 1158 0 q 1032 -69 1095 -53 q 877 -85 970 -85 q 655 -85 784 -85 q 382 -77 465 -85 q 235 -51 298 -69 q 139 5 172 -33 q 91 111 107 45 q 75 252 75 177 q 75 416 75 328 l 75 491 q 81 658 75 586 q 111 786 88 729 q 177 872 133 843 q 292 916 222 901 q 451 931 362 931 q 642 931 541 931 q 822 931 755 931 q 972 921 888 931 q 1109 887 1055 911 q 1196 796 1162 862 q 1231 624 1231 730 q 1231 429 1231 517 q 1224 285 1231 347 q 1196 194 1218 222 q 1140 158 1175 166 q 1067 150 1106 150 q 970 176 1007 150 q 923 260 933 202 q 848 171 908 192 q 698 151 787 151 l 653 151 q 388 194 460 151 q 317 415 317 238 q 351 605 317 536 q 460 683 386 674 q 571 693 533 693 q 658 693 608 693 l 683 693 q 788 693 746 693 q 866 673 830 693 q 923 605 901 653 l 923 690 l 999 690 l 999 303 m 804 231 q 892 280 864 243 q 921 432 921 316 q 862 591 921 557 q 666 626 804 626 l 651 626 q 528 619 580 626 q 447 590 476 613 q 409 520 418 566 q 400 419 400 475 q 451 253 400 283 q 652 223 502 223 l 673 223 q 742 223 720 223 q 804 231 764 223 "},"ö":{"x_min":92,"x_max":949,"ha":1042,"o":"m 514 660 q 764 643 680 660 q 898 558 847 626 q 949 338 949 490 q 860 48 949 106 q 512 -10 771 -10 q 187 47 283 -10 q 92 320 92 104 q 136 554 92 473 q 275 648 180 636 q 412 660 369 660 q 514 660 455 660 m 514 74 q 771 106 697 74 q 846 295 846 139 q 820 485 846 417 q 721 564 794 554 q 605 574 648 574 q 501 574 561 574 l 472 574 q 253 531 311 574 q 196 325 196 488 q 255 122 196 170 q 476 74 315 74 l 514 74 m 449 745 l 253 745 l 253 837 l 449 837 l 449 745 m 788 745 l 592 745 l 592 837 l 788 837 l 788 745 "},"i":{"x_min":111,"x_max":208,"ha":319,"o":"m 208 0 l 111 0 l 111 653 l 208 653 l 208 0 m 208 813 l 111 813 l 111 935 l 208 935 l 208 813 "},"Õ":{"x_min":104,"x_max":1291,"ha":1392,"o":"m 428 935 l 838 935 q 1209 857 1128 935 q 1291 499 1291 780 l 1291 465 l 1291 436 q 1279 226 1291 336 q 1200 56 1267 116 q 998 -3 1132 -3 q 891 -9 956 -9 q 768 -9 827 -9 l 562 -9 l 537 -9 q 374 0 452 -9 q 243 29 296 7 q 157 107 190 52 q 113 249 123 162 q 104 456 104 337 q 104 618 104 569 q 124 759 104 668 q 222 893 144 851 q 428 935 300 935 m 455 90 l 693 90 l 780 90 l 809 90 q 1007 99 907 90 q 1140 164 1107 109 q 1173 333 1173 220 l 1173 523 q 1166 675 1173 610 q 1135 773 1159 739 q 1073 817 1111 807 q 995 831 1035 828 q 911 835 956 835 l 693 835 l 477 835 q 269 793 319 835 q 219 598 219 751 l 219 459 l 219 391 q 256 152 219 214 q 455 90 293 90 m 574 1131 q 689 1101 609 1131 q 805 1071 770 1071 q 848 1089 831 1071 q 874 1135 864 1107 l 961 1135 q 916 1028 954 1069 q 816 988 878 988 q 693 1016 768 988 q 581 1045 617 1045 q 541 1029 555 1045 q 516 982 527 1014 l 428 982 q 475 1087 435 1043 q 574 1131 514 1131 "},"þ":{"x_min":87,"x_max":931,"ha":1048,"o":"m 184 553 q 274 644 217 622 q 425 666 332 666 l 528 666 q 842 606 754 666 q 931 331 931 546 q 874 76 931 156 q 649 -4 817 -4 l 529 -4 l 389 -4 q 258 19 308 -4 q 184 112 207 43 l 184 -278 l 87 -278 l 87 927 l 184 927 l 184 553 m 827 325 q 770 538 827 499 q 527 577 714 577 l 493 577 q 388 577 427 577 q 290 563 350 577 q 208 491 231 550 q 185 328 185 433 q 254 115 185 150 q 528 80 324 80 q 767 120 707 80 q 827 325 827 160 "},"]":{"x_min":47.546875,"x_max":300,"ha":467,"o":"m 47 838 l 47 927 l 300 927 l 300 -193 l 47 -193 l 47 -105 l 192 -105 l 192 838 l 47 838 "},"m":{"x_min":111,"x_max":1498,"ha":1609,"o":"m 208 549 q 303 642 235 621 q 473 663 372 663 l 494 663 q 707 640 627 663 q 823 525 787 617 q 936 639 861 615 q 1138 663 1011 663 q 1409 612 1320 663 q 1498 393 1498 561 l 1498 0 l 1401 0 l 1401 393 q 1341 542 1401 508 q 1151 577 1281 577 l 1117 577 q 905 530 958 577 q 853 393 853 483 l 853 0 l 756 0 l 756 393 q 708 531 756 486 q 491 577 661 577 q 259 526 310 577 q 208 372 208 476 l 208 0 l 111 0 l 111 653 l 208 653 l 208 549 "},"8":{"x_min":68,"x_max":1098,"ha":1166,"o":"m 785 -10 l 567 -10 l 337 -10 q 131 42 194 -10 q 68 236 68 95 q 96 401 68 353 q 230 471 124 448 q 169 487 199 479 q 114 526 135 500 q 88 589 94 553 q 83 684 83 625 q 147 880 83 828 q 356 932 212 932 l 592 932 q 724 932 660 932 q 887 922 788 932 q 1035 861 985 912 q 1086 692 1086 810 q 1075 581 1086 631 q 1038 511 1065 531 q 987 483 1011 490 q 926 471 964 476 q 1064 411 1030 457 q 1098 254 1098 366 q 1029 42 1098 94 q 785 -10 961 -10 m 584 524 l 834 524 q 971 666 971 524 q 944 791 971 754 q 834 828 918 828 l 587 828 l 337 828 q 229 794 262 828 q 197 683 197 761 q 223 559 197 595 q 337 524 249 524 l 584 524 m 570 89 l 603 89 l 633 89 q 832 97 737 89 q 955 137 927 105 q 983 255 983 169 q 943 393 983 361 q 794 425 903 425 l 584 425 l 339 425 q 215 382 248 425 q 183 240 183 340 q 230 121 183 153 q 367 89 277 89 l 570 89 "},"R":{"x_min":129,"x_max":1197,"ha":1290,"o":"m 1197 651 q 1160 479 1197 526 q 999 415 1123 433 q 1136 370 1092 402 q 1180 251 1180 337 l 1180 0 l 1069 0 l 1069 205 q 1025 341 1069 308 q 873 375 981 375 l 242 375 l 242 0 l 129 0 l 129 927 l 883 927 q 1124 870 1051 927 q 1197 651 1197 814 m 1080 658 q 1028 799 1080 766 q 859 832 977 832 l 242 832 l 242 468 l 862 468 q 1032 506 984 468 q 1080 658 1080 544 "},"á":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 721 13 757 33 q 631 -6 686 -6 l 452 -6 l 368 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 231 383 160 376 q 355 390 301 390 q 456 390 409 390 l 640 390 q 720 373 690 390 q 782 315 751 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 m 687 776 l 323 716 l 302 776 l 651 891 l 687 776 "},"×":{"x_min":84.71875,"x_max":608.328125,"ha":694,"o":"m 566 735 l 608 693 l 386 472 l 606 251 l 566 212 l 347 433 l 126 211 l 84 252 l 306 473 l 86 693 l 126 733 l 345 512 l 566 735 "},"o":{"x_min":92,"x_max":949,"ha":1042,"o":"m 514 660 q 764 643 680 660 q 898 558 847 626 q 949 338 949 490 q 860 48 949 106 q 512 -10 771 -10 q 187 47 283 -10 q 92 320 92 104 q 136 554 92 473 q 275 648 180 636 q 412 660 369 660 q 514 660 455 660 m 514 74 q 771 106 697 74 q 846 295 846 139 q 820 485 846 417 q 721 564 794 554 q 605 574 648 574 q 501 574 561 574 l 472 574 q 253 531 311 574 q 196 325 196 488 q 255 122 196 170 q 476 74 315 74 l 514 74 "},"5":{"x_min":64,"x_max":1103,"ha":1167,"o":"m 370 627 q 480 627 424 627 l 518 627 l 686 627 q 971 592 857 627 q 1093 480 1084 557 q 1103 371 1103 402 q 1103 302 1103 340 q 1043 62 1103 132 q 812 -8 983 -8 l 666 -8 l 369 -8 q 137 42 211 -8 q 64 248 64 93 l 64 281 l 172 281 q 206 142 172 185 q 335 92 241 100 l 578 92 l 819 92 q 953 135 916 92 q 990 272 990 179 q 958 480 990 434 q 770 527 926 527 l 426 527 q 267 517 323 527 q 194 444 212 507 l 86 444 l 86 927 l 1074 927 l 1074 831 l 190 831 l 190 521 q 260 597 216 572 q 370 627 305 621 "},"õ":{"x_min":92,"x_max":949,"ha":1042,"o":"m 514 660 q 764 643 680 660 q 898 558 847 626 q 949 338 949 490 q 860 48 949 106 q 512 -10 771 -10 q 187 47 283 -10 q 92 320 92 104 q 136 554 92 473 q 275 648 180 636 q 412 660 369 660 q 514 660 455 660 m 514 74 q 771 106 697 74 q 846 295 846 139 q 820 485 846 417 q 721 564 794 554 q 605 574 648 574 q 501 574 561 574 l 472 574 q 253 531 311 574 q 196 325 196 488 q 255 122 196 170 q 476 74 315 74 l 514 74 m 398 866 q 514 836 433 866 q 629 806 594 806 q 672 824 655 806 q 698 869 689 842 l 786 869 q 741 763 779 804 q 640 723 703 723 q 517 751 593 723 q 405 780 441 780 q 365 764 379 780 q 340 717 351 749 l 252 717 q 299 822 259 778 q 398 866 339 866 "},"7":{"x_min":51,"x_max":1095,"ha":1166,"o":"m 51 927 l 1095 927 l 1095 790 l 405 0 l 255 0 l 985 831 l 51 831 l 51 927 "},"K":{"x_min":129,"x_max":1251.71875,"ha":1225,"o":"m 1014 927 l 1205 927 l 525 479 l 1251 0 l 1048 0 l 405 434 l 242 434 l 242 0 l 129 0 l 129 927 l 242 927 l 242 527 l 405 527 l 1014 927 "},",":{"x_min":182.9375,"x_max":340,"ha":523,"o":"m 340 11 q 182 -148 340 -148 l 182 -75 q 233 -55 216 -68 q 251 -15 251 -43 l 249 0 l 201 0 l 201 156 l 340 156 l 340 11 "},"d":{"x_min":93,"x_max":937,"ha":1048,"o":"m 937 0 l 840 0 l 840 100 q 746 9 811 30 q 584 -11 681 -11 l 494 -11 q 180 45 268 -11 q 93 317 93 101 q 165 591 93 521 q 441 662 238 662 l 518 662 q 672 657 630 662 q 747 640 715 653 q 801 603 779 627 q 840 547 823 579 l 840 935 l 937 935 l 937 0 m 516 78 q 770 119 702 78 q 838 326 838 160 q 810 496 838 440 q 712 562 781 552 q 590 573 643 573 q 490 573 538 573 q 255 531 313 573 q 197 312 197 489 q 235 132 197 186 q 392 78 273 78 l 516 78 "},"¨":{"x_min":79,"x_max":614,"ha":695,"o":"m 275 746 l 79 746 l 79 838 l 275 838 l 275 746 m 614 746 l 418 746 l 418 838 l 614 838 l 614 746 "},"Ô":{"x_min":104,"x_max":1291,"ha":1392,"o":"m 428 935 l 838 935 q 1209 857 1128 935 q 1291 499 1291 780 l 1291 465 l 1291 436 q 1279 226 1291 336 q 1200 56 1267 116 q 998 -3 1132 -3 q 891 -9 956 -9 q 768 -9 827 -9 l 562 -9 l 537 -9 q 374 0 452 -9 q 243 29 296 7 q 157 107 190 52 q 113 249 123 162 q 104 456 104 337 q 104 618 104 569 q 124 759 104 668 q 222 893 144 851 q 428 935 300 935 m 455 90 l 693 90 l 780 90 l 809 90 q 1007 99 907 90 q 1140 164 1107 109 q 1173 333 1173 220 l 1173 523 q 1166 675 1173 610 q 1135 773 1159 739 q 1073 817 1111 807 q 995 831 1035 828 q 911 835 956 835 l 693 835 l 477 835 q 269 793 319 835 q 219 598 219 751 l 219 459 l 219 391 q 256 152 219 214 q 455 90 293 90 m 427 1036 l 695 1151 l 963 1036 l 946 982 l 695 1044 l 445 982 l 427 1036 "},"E":{"x_min":129,"x_max":1057.28125,"ha":1150,"o":"m 1018 527 l 1018 434 l 242 434 l 242 93 l 1057 93 l 1057 0 l 129 0 l 129 927 l 1047 927 l 1047 832 l 242 832 l 242 527 l 1018 527 "},"Y":{"x_min":-27.34375,"x_max":1153.71875,"ha":1126,"o":"m 1153 927 l 619 394 l 619 0 l 506 0 l 506 394 l -27 927 l 132 927 l 561 491 l 994 927 l 1153 927 "},"\"":{"x_min":78,"x_max":377,"ha":455,"o":"m 78 927 l 174 927 l 174 556 l 78 556 l 78 927 m 281 927 l 377 927 l 377 556 l 281 556 l 281 927 "},"‹":{"x_min":77.78125,"x_max":358.328125,"ha":438,"o":"m 286 -11 l 77 341 l 286 689 l 358 640 l 180 341 l 358 36 l 286 -11 "},"ê":{"x_min":92,"x_max":924,"ha":1018,"o":"m 326 88 q 397 80 349 84 q 513 76 446 76 l 566 76 q 680 80 638 76 q 755 99 722 84 q 804 137 789 113 q 820 196 820 161 l 924 196 q 820 28 924 66 q 553 -10 717 -10 q 287 5 373 -10 q 146 92 201 21 q 92 324 92 162 q 168 594 92 525 q 448 663 245 663 l 514 663 q 751 645 671 663 q 877 560 831 628 q 924 343 924 492 l 924 310 l 189 310 q 215 160 189 213 q 326 88 241 106 m 555 577 l 479 577 q 336 567 398 577 q 242 532 273 558 q 201 471 211 505 q 191 393 191 437 l 824 393 q 815 469 824 436 q 782 526 807 503 q 703 563 757 549 q 555 577 650 577 m 240 772 l 508 888 l 776 772 l 760 718 l 508 781 l 258 718 l 240 772 "},"Ï":{"x_min":-82,"x_max":453,"ha":371,"o":"m 242 0 l 129 0 l 129 927 l 242 927 l 242 0 m 114 1019 l -82 1019 l -82 1111 l 114 1111 l 114 1019 m 453 1019 l 257 1019 l 257 1111 l 453 1111 l 453 1019 "},"„":{"x_min":183.5,"x_max":611,"ha":793,"o":"m 340 13 q 306 -102 340 -57 q 202 -146 272 -146 l 183 -146 l 183 -72 q 233 -53 216 -65 q 251 -12 251 -40 l 249 2 l 201 2 l 201 158 l 340 158 l 340 13 m 611 12 q 454 -147 611 -147 l 454 -74 q 502 -55 484 -67 q 519 -17 519 -43 l 519 1 l 471 1 l 471 157 l 611 157 l 611 12 "},"Â":{"x_min":-27.78125,"x_max":1220.828125,"ha":1193,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1220 0 l 1091 0 l 970 208 l 222 208 l 104 0 m 275 301 l 918 301 l 594 844 l 275 301 m 329 1036 l 597 1151 l 865 1036 l 848 982 l 597 1044 l 347 982 l 329 1036 "},"Í":{"x_min":-7.109375,"x_max":378.109375,"ha":371,"o":"m 242 0 l 129 0 l 129 927 l 242 927 l 242 0 m 378 1050 l 13 990 l -7 1050 l 342 1166 l 378 1050 "},"´":{"x_min":155.5625,"x_max":540.28125,"ha":694,"o":"m 540 778 l 176 718 l 155 778 l 504 893 l 540 778 "},"ì":{"x_min":-32.046875,"x_max":352.453125,"ha":319,"o":"m 208 0 l 111 0 l 111 653 l 208 653 l 208 0 m -32 776 l 4 892 l 352 776 l 330 716 l -32 776 "},"±":{"x_min":33,"x_max":662,"ha":694,"o":"m 318 787 l 378 787 l 378 518 l 662 518 l 662 461 l 378 461 l 378 199 l 318 199 l 318 461 l 33 461 l 33 518 l 318 518 l 318 787 m 662 79 l 33 79 l 33 136 l 662 136 l 662 79 "},"Ú":{"x_min":119,"x_max":1210,"ha":1331,"o":"m 1210 286 q 1131 40 1210 89 q 834 -8 1052 -8 l 648 -8 l 383 -8 q 182 52 245 -8 q 119 251 119 113 l 119 926 l 232 926 l 232 266 q 281 122 232 154 q 452 91 331 91 l 651 91 l 866 91 q 1047 124 997 91 q 1097 275 1097 157 l 1097 296 l 1097 926 l 1210 926 l 1210 286 m 856 1051 l 493 991 l 472 1051 l 820 1166 l 856 1051 "},"|":{"x_min":294,"x_max":400,"ha":694,"o":"m 400 -232 l 294 -232 l 294 926 l 400 926 l 400 -232 "},"§":{"x_min":167,"x_max":1127,"ha":1294,"o":"m 915 810 q 807 832 872 826 q 681 839 742 839 q 559 839 608 839 q 463 830 510 839 q 361 795 396 818 q 327 713 327 772 q 374 631 327 654 q 590 573 421 609 q 883 511 758 537 q 1067 442 1008 484 q 1127 297 1127 400 q 1091 188 1127 233 q 993 128 1055 143 q 1088 57 1058 109 q 1118 -68 1118 6 q 1091 -179 1118 -128 q 1003 -257 1065 -230 q 850 -296 941 -285 q 655 -308 758 -308 q 455 -296 544 -308 q 293 -251 365 -284 q 194 -156 221 -219 q 167 -12 167 -93 l 273 -12 q 282 -98 273 -67 q 336 -159 291 -130 q 470 -201 381 -188 q 651 -215 558 -215 q 806 -208 740 -215 q 946 -176 872 -201 q 1021 -63 1021 -152 q 968 36 1021 15 q 769 89 915 57 l 604 128 l 424 166 q 256 239 317 192 q 196 380 196 285 q 232 488 196 443 q 329 550 268 534 q 254 614 281 570 q 228 714 228 658 q 253 819 228 772 q 341 893 279 866 q 481 927 403 919 q 680 935 559 935 q 887 920 790 935 q 1022 870 983 905 q 1073 798 1061 834 q 1085 719 1085 762 l 981 719 q 915 810 981 784 m 464 262 l 876 173 q 987 208 947 182 q 1028 298 1028 234 q 997 378 1028 352 q 907 416 966 404 l 464 510 q 344 482 393 510 q 295 388 295 455 q 342 304 295 331 q 464 262 390 277 "},"Ý":{"x_min":-27.34375,"x_max":1153.71875,"ha":1126,"o":"m 1153 927 l 619 394 l 619 0 l 506 0 l 506 394 l -27 927 l 132 927 l 561 491 l 994 927 l 1153 927 m 756 1050 l 392 990 l 371 1050 l 720 1166 l 756 1050 "},"b":{"x_min":111,"x_max":957,"ha":1049,"o":"m 208 546 q 305 641 237 620 q 474 662 373 662 l 548 662 q 867 602 777 662 q 957 324 957 542 q 869 48 957 107 q 549 -11 782 -11 l 465 -11 q 306 9 365 -11 q 208 101 248 29 l 208 0 l 111 0 l 111 935 l 208 935 l 208 546 m 554 81 l 577 81 q 695 85 650 81 q 782 107 740 89 q 838 174 823 126 q 853 297 853 222 l 853 324 q 830 497 853 439 q 745 564 807 556 q 637 573 684 573 q 549 573 590 573 q 444 573 486 573 q 331 563 402 573 q 234 494 259 554 q 209 315 209 433 q 225 178 209 232 q 290 102 241 124 q 401 81 338 81 q 554 81 465 81 "},"q":{"x_min":93,"x_max":937,"ha":1048,"o":"m 937 -282 l 840 -282 l 840 104 q 769 24 816 50 q 656 -8 723 -2 l 508 -8 q 186 48 279 -8 q 93 319 93 104 q 144 565 93 496 q 264 645 195 634 q 390 657 333 657 q 495 657 447 657 l 576 657 q 744 640 681 657 q 840 550 806 623 l 840 653 l 937 653 l 937 -282 m 282 96 q 357 80 308 85 q 454 76 407 76 l 505 76 q 784 126 729 76 q 840 300 840 176 q 799 514 840 454 q 612 574 758 574 l 480 574 q 254 533 309 574 q 199 323 199 493 q 199 247 199 277 q 206 187 199 218 q 234 132 214 157 q 282 96 253 108 "},"Ö":{"x_min":104,"x_max":1291,"ha":1392,"o":"m 428 935 l 838 935 q 1209 857 1128 935 q 1291 499 1291 780 l 1291 465 l 1291 436 q 1279 226 1291 336 q 1200 56 1267 116 q 998 -3 1132 -3 q 892 -9 957 -9 q 769 -9 827 -9 l 562 -9 l 537 -9 q 374 0 452 -9 q 243 29 296 7 q 157 107 190 52 q 113 249 123 162 q 104 456 104 337 q 104 618 104 569 q 124 759 104 668 q 222 893 144 851 q 428 935 300 935 m 455 90 l 693 90 l 780 90 l 809 90 q 1007 99 907 90 q 1140 164 1107 109 q 1173 333 1173 220 l 1173 523 q 1166 675 1173 610 q 1135 773 1159 739 q 1073 817 1111 807 q 995 831 1035 828 q 911 835 956 835 l 693 835 l 477 835 q 269 793 319 835 q 219 598 219 751 l 219 459 l 219 391 q 256 152 219 214 q 455 90 293 90 m 625 1018 l 429 1018 l 429 1110 l 625 1110 l 625 1018 m 964 1018 l 768 1018 l 768 1110 l 964 1110 l 964 1018 "},"z":{"x_min":47,"x_max":783,"ha":829,"o":"m 187 83 l 783 83 l 783 0 l 47 0 l 47 98 l 645 574 l 75 574 l 75 657 l 783 657 l 783 560 l 187 83 "},"™":{"x_min":0,"x_max":1674,"ha":1762,"o":"m 289 370 l 289 863 l 0 863 l 0 927 l 661 927 l 661 863 l 370 863 l 370 370 l 289 370 m 1179 371 l 829 850 l 829 371 l 748 371 l 748 927 l 872 927 l 1211 462 l 1552 927 l 1674 927 l 1674 371 l 1593 371 l 1593 850 l 1241 371 l 1179 371 "},"ã":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 721 13 757 33 q 631 -6 686 -6 l 452 -6 l 368 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 231 383 160 376 q 355 390 301 390 q 456 390 409 390 l 640 390 q 720 373 690 390 q 782 315 751 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 m 374 867 q 490 837 409 867 q 605 807 570 807 q 648 825 631 807 q 675 870 665 843 l 762 870 q 717 764 755 805 q 616 724 679 724 q 493 752 569 724 q 381 781 418 781 q 341 765 355 781 q 316 718 327 750 l 229 718 q 275 823 236 779 q 374 867 315 867 "},"æ":{"x_min":83,"x_max":1612,"ha":1705,"o":"m 1170 74 l 1290 74 q 1455 96 1396 74 q 1515 203 1515 118 l 1612 203 q 1502 28 1612 67 q 1224 -10 1393 -10 l 1182 -10 q 1018 -2 1082 -10 q 907 33 953 5 q 842 116 862 62 q 807 52 828 76 q 752 14 786 29 q 663 -5 718 0 q 541 -10 607 -10 l 463 -10 l 438 -10 q 260 0 350 -10 q 126 50 169 9 q 83 185 83 91 q 101 301 83 254 q 164 365 119 348 q 266 388 209 383 q 391 393 323 393 l 467 393 q 550 393 510 393 q 642 387 589 393 q 730 363 695 381 q 791 302 765 345 l 791 364 q 765 506 791 458 q 677 563 739 555 q 577 572 614 572 q 488 572 539 572 l 463 572 l 439 572 q 341 572 374 572 q 275 560 309 572 q 230 524 242 548 q 219 464 219 500 l 113 464 q 150 595 113 553 q 250 647 188 637 q 366 657 313 657 q 465 657 420 657 q 636 657 570 657 q 748 639 703 657 q 813 595 792 622 q 842 527 834 569 q 869 587 850 566 q 933 627 888 608 q 1038 654 978 647 q 1173 661 1099 661 q 1506 611 1401 661 q 1612 363 1612 562 l 1612 293 l 890 293 q 954 113 890 153 q 1170 74 1019 74 m 1313 571 l 1185 571 q 1072 571 1122 571 q 978 555 1021 571 q 912 490 935 539 q 890 376 890 441 l 1518 376 q 1511 463 1518 430 q 1479 523 1505 495 q 1410 561 1454 551 q 1313 571 1366 571 m 466 78 l 652 78 q 752 103 714 78 q 790 187 790 128 q 761 265 790 237 q 680 298 733 292 q 580 305 628 305 q 467 305 531 305 l 305 305 q 214 278 242 305 q 187 189 187 252 q 216 104 187 130 q 307 78 246 78 l 466 78 "},"®":{"x_min":65,"x_max":1022,"ha":1087,"o":"m 761 585 q 734 501 761 537 q 661 448 708 464 q 750 313 750 423 q 767 184 750 202 l 701 184 q 691 213 694 196 q 689 245 689 229 l 689 287 q 663 395 689 365 q 541 425 638 425 l 407 425 l 407 184 l 339 184 l 339 732 l 568 732 q 705 697 649 732 q 761 585 761 663 m 544 469 q 651 494 609 469 q 693 581 693 519 q 654 662 693 639 q 555 685 616 685 l 407 685 l 407 469 l 544 469 m 544 -17 q 205 123 345 -17 q 65 462 65 263 q 205 801 65 661 q 544 942 345 942 q 881 801 741 942 q 1022 462 1022 661 q 881 124 1022 266 q 544 -17 741 -17 m 544 36 q 841 161 718 36 q 964 462 964 287 q 841 763 964 637 q 544 889 718 889 q 245 763 369 889 q 122 462 122 638 q 245 162 122 288 q 544 36 369 36 "},"É":{"x_min":129,"x_max":1057.28125,"ha":1150,"o":"m 1018 527 l 1018 434 l 242 434 l 242 93 l 1057 93 l 1057 0 l 129 0 l 129 927 l 1047 927 l 1047 832 l 242 832 l 242 527 l 1018 527 m 767 1050 l 403 990 l 382 1050 l 730 1166 l 767 1050 "},"~":{"x_min":130.5625,"x_max":795.828125,"ha":926,"o":"m 318 1006 q 466 955 372 1006 q 612 905 561 905 q 683 932 654 905 q 738 1008 712 959 l 795 964 q 717 853 766 897 q 602 810 668 810 q 458 858 548 810 q 323 911 368 906 q 247 884 277 911 q 187 807 216 857 l 130 851 q 208 962 162 918 q 318 1006 254 1006 "},"³":{"x_min":44,"x_max":688,"ha":734,"o":"m 509 687 q 579 705 557 687 q 601 771 601 724 q 585 846 601 827 q 513 865 569 865 l 357 865 l 243 865 q 150 849 178 865 q 123 764 123 833 l 123 751 l 48 751 q 63 858 48 819 q 125 912 78 898 q 212 929 173 926 q 309 933 252 933 l 403 933 q 468 933 431 933 q 562 925 506 933 q 649 887 618 917 q 680 788 680 856 q 668 693 680 714 q 614 656 656 671 q 674 612 660 640 q 688 527 688 583 q 658 409 688 445 q 538 366 629 374 l 463 366 l 284 366 q 98 397 153 366 q 44 548 44 428 l 120 548 l 120 531 q 134 456 120 479 q 200 434 149 434 q 282 434 241 434 q 364 434 323 434 l 514 434 q 588 452 568 434 q 609 525 609 471 q 593 604 609 588 q 513 620 577 620 l 280 620 l 280 687 l 509 687 "},"¡":{"x_min":111,"x_max":257,"ha":368,"o":"m 111 653 l 257 653 l 257 495 l 111 495 l 111 653 m 132 374 l 240 374 l 240 -274 l 132 -274 l 132 374 "},"[":{"x_min":167,"x_max":420.046875,"ha":467,"o":"m 420 -105 l 420 -193 l 167 -193 l 167 927 l 420 927 l 420 839 l 277 839 l 277 -105 l 420 -105 "},"L":{"x_min":129,"x_max":973.9375,"ha":1002,"o":"m 973 0 l 129 0 l 129 926 l 242 926 l 242 93 l 973 93 l 973 0 "}," ":{"x_min":0,"x_max":0,"ha":347},"%":{"x_min":29,"x_max":1321,"ha":1350,"o":"m 352 929 q 545 893 501 929 q 589 702 589 858 q 550 498 589 538 q 366 458 511 458 l 192 458 q 57 511 85 458 q 29 687 29 564 q 71 892 29 855 q 270 929 113 929 l 352 929 m 204 515 l 419 515 q 470 519 452 515 q 502 540 489 523 q 518 595 515 558 q 522 680 522 633 q 491 848 522 824 q 312 872 460 872 l 209 872 q 117 846 136 872 q 98 707 98 821 l 98 689 q 98 604 98 640 q 109 549 98 569 q 146 521 120 528 q 204 515 172 515 m 325 0 l 253 0 l 1023 924 l 1097 924 l 325 0 m 1084 466 q 1277 430 1233 466 q 1321 239 1321 395 q 1281 32 1321 70 q 1084 -6 1241 -6 l 924 -6 q 789 47 817 -6 q 761 223 761 101 q 804 429 761 393 q 1009 466 847 466 l 1084 466 m 842 87 q 880 58 855 65 q 938 51 905 51 l 1038 51 l 1143 51 q 1198 55 1176 51 q 1233 76 1220 59 q 1249 126 1246 92 q 1253 205 1253 160 l 1253 259 q 1249 332 1253 302 q 1232 379 1246 363 q 1181 401 1219 395 q 1095 408 1143 408 l 1044 408 l 941 408 q 848 381 866 408 q 830 258 830 354 l 830 226 l 830 208 q 830 132 830 159 q 842 87 830 105 "},"P":{"x_min":129,"x_max":1172,"ha":1237,"o":"m 1172 663 q 1160 523 1172 584 q 1117 428 1149 461 q 1035 379 1084 395 q 889 363 987 363 l 242 363 l 242 0 l 129 0 l 129 928 l 897 928 q 1110 871 1048 928 q 1172 663 1172 815 m 1055 657 q 1018 794 1055 755 q 885 833 982 833 l 242 833 l 242 456 l 821 456 q 1007 490 960 456 q 1055 657 1055 525 "},"À":{"x_min":-27.78125,"x_max":1220.828125,"ha":1193,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1220 0 l 1091 0 l 970 208 l 222 208 l 104 0 m 275 301 l 918 301 l 594 844 l 275 301 m 404 1050 l 440 1165 l 788 1050 l 766 990 l 404 1050 "},"_":{"x_min":0,"x_max":694,"ha":694,"o":"m 694 -170 l 0 -170 l 0 -100 l 694 -100 l 694 -170 "},"ñ":{"x_min":111,"x_max":893,"ha":1004,"o":"m 208 518 q 315 637 239 612 q 515 663 390 663 l 527 663 q 699 651 630 663 q 817 601 767 640 q 879 514 866 562 q 893 393 893 465 l 893 0 l 796 0 l 796 383 q 730 541 796 506 q 527 577 665 577 q 289 541 370 577 q 208 368 208 506 l 208 0 l 111 0 l 111 653 l 208 653 l 208 518 m 380 867 q 495 837 415 867 q 611 807 576 807 q 654 825 637 807 q 680 871 670 843 l 768 871 q 723 764 761 805 q 622 724 684 724 q 499 752 574 724 q 387 781 423 781 q 347 765 360 781 q 321 719 333 750 l 234 719 q 280 823 241 779 q 380 867 320 867 "},"+":{"x_min":32,"x_max":661,"ha":694,"o":"m 317 769 l 377 769 l 377 502 l 661 502 l 661 445 l 377 445 l 377 177 l 317 177 l 317 445 l 32 445 l 32 502 l 317 502 l 317 769 "},"‚":{"x_min":182.9375,"x_max":340,"ha":523,"o":"m 340 11 q 182 -148 340 -148 l 182 -75 q 233 -55 216 -68 q 251 -15 251 -43 l 249 0 l 201 0 l 201 156 l 340 156 l 340 11 "},"½":{"x_min":110.046875,"x_max":1728,"ha":1778,"o":"m 110 745 l 350 927 l 443 927 l 443 371 l 367 371 l 367 860 l 155 696 l 110 745 m 547 0 l 462 0 l 1231 927 l 1316 927 l 547 0 m 1728 0 l 1093 0 l 1093 27 l 1093 85 q 1099 160 1093 131 q 1135 223 1106 190 q 1220 262 1163 256 q 1423 269 1277 269 q 1602 286 1569 269 q 1642 327 1635 304 q 1649 384 1649 351 q 1642 440 1649 418 q 1603 477 1635 463 q 1537 492 1571 492 l 1398 492 q 1332 492 1365 492 q 1252 485 1300 492 q 1189 451 1204 479 q 1175 345 1175 422 l 1100 345 l 1100 367 q 1107 462 1100 428 q 1147 521 1115 496 q 1237 554 1179 546 q 1373 562 1295 562 l 1470 562 q 1665 531 1602 562 q 1728 381 1728 500 q 1687 244 1728 285 q 1551 204 1646 204 l 1287 204 q 1195 179 1219 204 q 1171 81 1171 155 l 1171 65 l 1728 65 l 1728 0 "},"Æ":{"x_min":-45.890625,"x_max":1824.046875,"ha":1917,"o":"m 1790 527 l 1790 434 l 1031 434 l 1031 93 l 1824 93 l 1824 0 l 918 0 l 918 201 l 261 201 l 101 0 l -45 0 l 694 927 l 1824 927 l 1824 832 l 1031 832 l 1031 527 l 1790 527 m 758 832 l 334 296 l 918 296 l 918 832 l 758 832 "},"Ë":{"x_min":129,"x_max":1057.28125,"ha":1150,"o":"m 1018 527 l 1018 434 l 242 434 l 242 93 l 1057 93 l 1057 0 l 129 0 l 129 927 l 1047 927 l 1047 832 l 242 832 l 242 527 l 1018 527 m 503 1019 l 307 1019 l 307 1111 l 503 1111 l 503 1019 m 842 1019 l 646 1019 l 646 1111 l 842 1111 l 842 1019 "},"'":{"x_min":78,"x_max":177,"ha":253,"o":"m 78 927 l 177 927 l 177 556 l 78 556 l 78 927 "},"Š":{"x_min":112,"x_max":1166,"ha":1256,"o":"m 973 806 q 867 828 943 819 q 670 838 791 838 l 631 838 q 441 829 539 838 q 299 801 343 821 q 242 748 255 781 q 230 667 230 714 q 276 550 230 581 q 411 520 323 520 l 513 520 l 731 520 q 832 520 788 520 q 966 510 877 520 q 1111 447 1056 500 q 1166 264 1166 393 q 1139 123 1166 179 q 1050 38 1113 66 q 897 1 986 9 q 702 -7 807 -7 l 628 -7 q 472 -7 524 -7 q 312 7 420 -7 q 158 80 204 21 q 113 289 113 140 l 226 289 l 226 269 q 239 162 226 198 q 307 109 252 126 q 453 93 362 93 q 634 93 545 93 q 877 105 778 93 q 1012 152 976 118 q 1049 266 1049 187 q 1002 393 1049 366 q 845 421 956 421 l 632 421 l 384 421 q 182 472 253 421 q 112 646 112 523 q 142 807 112 742 q 246 900 173 872 q 417 928 319 928 q 638 928 516 928 q 785 928 740 928 q 932 917 830 928 q 1088 848 1034 907 q 1143 670 1143 790 l 1030 670 q 1015 763 1030 732 q 973 806 1000 793 m 907 1089 l 639 973 l 371 1089 l 388 1143 l 639 1080 l 889 1143 l 907 1089 "},"ª":{"x_min":47,"x_max":453,"ha":482,"o":"m 47 406 l 47 459 l 453 459 l 453 406 l 47 406 m 336 602 q 273 544 304 562 q 194 527 242 527 q 92 555 134 527 q 51 642 51 583 q 192 758 51 739 q 333 818 333 778 q 304 877 333 857 q 234 897 276 897 q 133 806 141 897 l 72 806 q 118 909 72 875 q 238 944 163 944 q 354 908 312 944 q 397 797 397 873 l 397 641 q 401 582 397 605 q 420 538 405 558 l 347 538 q 336 602 336 565 m 202 571 q 306 618 277 571 q 336 744 336 666 q 213 724 316 733 q 111 643 111 715 q 138 589 111 607 q 202 571 165 571 "},"Œ":{"x_min":108,"x_max":2052.5,"ha":2141,"o":"m 2013 519 l 2013 424 l 1265 424 l 1265 93 l 2052 93 l 2052 0 l 1150 0 l 1150 116 q 1102 36 1137 66 q 1027 0 1067 6 q 949 -7 987 -7 q 869 -7 912 -7 l 662 -7 l 401 -7 q 158 87 208 -7 q 108 410 108 182 l 108 452 q 108 604 108 550 q 120 737 108 657 q 193 864 133 817 q 346 922 254 912 q 490 933 437 933 q 626 933 542 933 l 661 933 l 789 933 q 869 933 828 933 q 949 933 909 933 q 1081 906 1027 933 q 1150 811 1135 879 l 1150 927 l 2040 927 l 2040 832 l 1265 832 l 1265 519 l 2013 519 m 273 140 q 330 105 297 114 q 401 92 364 96 q 482 89 438 89 q 554 89 526 89 l 667 89 l 898 89 q 1058 110 997 89 q 1132 192 1120 132 q 1144 321 1144 252 q 1144 506 1144 390 q 1135 664 1144 589 q 1104 769 1127 738 q 1039 818 1081 800 q 912 837 997 837 l 760 837 l 655 837 q 519 837 585 837 q 391 830 454 837 q 298 805 328 824 q 252 746 267 787 q 230 639 238 703 q 222 457 222 575 l 222 401 q 235 227 222 286 q 273 140 248 168 "},"ð":{"x_min":50,"x_max":676,"ha":727,"o":"m 341 873 l 469 966 l 497 928 l 388 849 q 603 634 531 757 q 676 343 676 510 q 592 85 676 190 q 359 -19 509 -19 q 133 80 216 -19 q 50 326 50 179 q 129 562 50 465 q 345 659 208 659 q 438 638 391 659 q 517 586 485 618 q 438 713 477 664 q 331 810 398 761 l 203 715 l 177 754 l 290 836 q 228 870 262 853 q 162 896 194 886 l 181 938 q 260 911 210 932 q 341 873 310 889 m 360 52 q 526 137 474 52 q 579 344 579 222 q 528 529 579 453 q 374 606 478 606 q 204 524 262 606 q 147 324 147 443 q 201 132 147 213 q 360 52 255 52 "},"T":{"x_min":-10,"x_max":1039,"ha":1031,"o":"m 456 0 l 456 833 l -10 833 l -10 928 l 1039 928 l 1039 833 l 569 833 l 569 0 l 456 0 "},"š":{"x_min":85,"x_max":909,"ha":991,"o":"m 679 574 l 487 574 q 388 574 426 574 q 302 567 350 574 q 225 541 254 560 q 197 476 197 521 q 226 397 197 416 q 320 378 256 378 l 489 378 l 671 378 q 850 339 792 378 q 909 187 909 301 q 840 24 909 57 q 628 -8 771 -8 l 446 -8 q 318 -8 362 -8 q 210 5 275 -8 q 115 62 146 18 q 85 191 85 107 l 85 221 l 184 221 l 186 205 q 213 113 186 139 q 311 80 241 87 l 482 80 l 511 80 l 536 80 q 690 87 622 80 q 782 112 759 95 q 805 174 805 129 q 770 267 805 242 q 661 292 736 292 l 485 292 l 316 292 q 149 327 206 292 q 93 468 93 362 q 148 613 93 567 q 302 659 203 659 l 487 659 q 587 659 539 659 q 697 655 636 659 q 841 613 799 655 q 883 472 883 571 l 786 472 q 761 547 781 527 q 679 574 741 566 m 766 880 l 497 764 l 229 880 l 245 934 l 497 871 l 747 934 l 766 880 "},"Þ":{"x_min":129,"x_max":1171,"ha":1238,"o":"m 242 816 l 858 816 q 1083 745 995 816 q 1171 540 1171 675 q 1087 341 1171 413 q 874 270 1003 270 l 242 270 l 242 0 l 129 0 l 129 927 l 242 927 l 242 816 m 833 353 q 999 398 933 353 q 1065 540 1065 443 q 1006 683 1065 639 q 844 728 947 728 l 242 728 l 242 353 l 833 353 "},"j":{"x_min":-10,"x_max":205,"ha":316,"o":"m 205 0 q 169 -177 205 -122 q 17 -232 134 -232 l -10 -232 l -10 -151 l 10 -151 q 90 -121 73 -151 q 108 -27 108 -91 l 108 0 l 108 653 l 205 653 l 205 0 m 205 813 l 108 813 l 108 935 l 205 935 l 205 813 "},"1":{"x_min":170.9375,"x_max":699,"ha":1167,"o":"m 170 626 l 555 927 l 699 927 l 699 0 l 589 0 l 589 838 l 234 554 l 170 626 "},"›":{"x_min":77.78125,"x_max":358.328125,"ha":438,"o":"m 150 694 l 358 341 l 150 -5 l 77 44 l 254 341 l 77 647 l 150 694 "},"ä":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 720 13 756 33 q 631 -6 685 -6 l 452 -6 l 367 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 230 383 160 376 q 355 390 300 390 q 456 390 409 390 l 639 390 q 720 373 689 390 q 782 315 750 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 m 423 744 l 227 744 l 227 836 l 423 836 l 423 744 m 762 744 l 566 744 l 566 836 l 762 836 l 762 744 "},"<":{"x_min":46,"x_max":647,"ha":694,"o":"m 158 464 l 647 240 l 647 136 l 46 419 l 46 510 l 647 793 l 647 689 l 158 464 "},"£":{"x_min":21,"x_max":1167,"ha":1167,"o":"m 759 360 l 295 360 l 295 276 q 283 166 295 200 q 222 96 272 132 l 1167 96 l 1167 0 l 70 0 l 70 96 q 160 146 136 105 q 184 259 184 186 l 184 360 l 21 360 l 21 456 l 184 456 l 184 671 q 271 878 184 826 q 521 931 358 931 l 665 931 l 933 931 q 1084 858 1044 919 q 1125 681 1125 797 l 1125 649 l 1015 649 l 1015 675 q 996 797 1015 762 q 896 832 977 832 l 661 832 l 458 832 q 331 785 368 823 q 295 647 295 747 l 295 620 l 295 456 l 759 456 l 759 360 "},"¹":{"x_min":110.046875,"x_max":443,"ha":735,"o":"m 110 746 l 350 927 l 443 927 l 443 371 l 367 371 l 367 861 l 155 697 l 110 746 "},"t":{"x_min":-18,"x_max":705,"ha":737,"o":"m 689 570 l 237 570 l 237 255 q 274 110 237 145 q 421 76 311 76 q 567 100 520 76 q 615 213 615 124 l 615 287 l 705 287 q 661 48 705 106 q 432 -10 617 -10 q 210 29 280 -10 q 140 209 140 69 l 140 255 l 140 570 l -18 570 l -18 653 l 140 653 l 140 800 l 237 800 l 237 653 l 689 653 l 689 570 "},"¬":{"x_min":46,"x_max":647,"ha":694,"o":"m 46 292 l 46 385 l 647 385 l 647 0 l 546 0 l 546 292 l 46 292 "},"ù":{"x_min":112,"x_max":895,"ha":1005,"o":"m 798 126 q 707 26 773 62 q 499 -10 642 -10 q 187 55 263 -10 q 112 248 112 120 l 112 269 l 112 653 l 209 653 l 209 295 q 269 114 209 152 q 482 76 329 76 q 720 114 642 76 q 798 295 798 152 l 798 653 l 895 653 l 895 0 l 798 0 l 798 126 m 310 776 l 346 892 l 695 776 l 672 716 l 310 776 "},"W":{"x_min":-18.0625,"x_max":1902.78125,"ha":1885,"o":"m 1902 927 l 1461 0 l 1305 0 l 943 818 l 576 0 l 423 0 l -18 927 l 108 927 l 498 102 l 865 927 l 1019 927 l 1384 102 l 1777 927 l 1902 927 "},"ï":{"x_min":-107,"x_max":428,"ha":320,"o":"m 208 0 l 111 0 l 111 653 l 208 653 l 208 0 m 89 745 l -107 745 l -107 837 l 89 837 l 89 745 m 428 745 l 232 745 l 232 837 l 428 837 l 428 745 "},">":{"x_min":47,"x_max":648,"ha":694,"o":"m 535 465 l 47 689 l 47 793 l 648 510 l 648 419 l 47 136 l 47 241 l 535 465 "},"v":{"x_min":-27.78125,"x_max":851.390625,"ha":824,"o":"m 851 653 l 472 0 l 344 0 l -27 653 l 81 653 l 408 77 l 741 653 l 851 653 "},"û":{"x_min":112,"x_max":895,"ha":1005,"o":"m 798 126 q 707 26 773 62 q 499 -10 642 -10 q 187 55 263 -10 q 112 248 112 120 l 112 269 l 112 653 l 209 653 l 209 295 q 269 114 209 152 q 482 76 329 76 q 720 114 642 76 q 798 295 798 152 l 798 653 l 895 653 l 895 0 l 798 0 l 798 126 m 235 771 l 503 886 l 771 771 l 754 716 l 503 779 l 253 716 l 235 771 "},"Ò":{"x_min":104,"x_max":1291,"ha":1392,"o":"m 428 935 l 838 935 q 1209 857 1128 935 q 1291 499 1291 780 l 1291 465 l 1291 436 q 1279 226 1291 336 q 1200 56 1267 116 q 998 -3 1132 -3 q 891 -9 956 -9 q 768 -9 827 -9 l 562 -9 l 537 -9 q 374 0 452 -9 q 243 29 296 7 q 157 107 190 52 q 113 249 123 162 q 104 456 104 337 q 104 618 104 569 q 124 759 104 668 q 222 893 144 851 q 428 935 300 935 m 455 90 l 693 90 l 780 90 l 809 90 q 1007 99 907 90 q 1140 164 1107 109 q 1173 333 1173 220 l 1173 523 q 1166 675 1173 610 q 1135 773 1159 739 q 1073 817 1111 807 q 995 831 1035 828 q 911 835 956 835 l 693 835 l 477 835 q 269 793 319 835 q 219 598 219 751 l 219 459 l 219 391 q 256 152 219 214 q 455 90 293 90 m 503 1050 l 539 1165 l 888 1050 l 866 990 l 503 1050 "},"&":{"x_min":111,"x_max":1399.328125,"ha":1399,"o":"m 999 695 q 964 803 999 775 q 847 831 930 831 l 652 831 l 553 831 l 456 831 q 370 801 396 824 q 344 721 344 778 q 373 637 344 669 q 455 576 402 604 l 1092 244 q 1097 342 1097 287 l 1097 441 l 1216 441 l 1216 350 q 1199 190 1216 262 l 1399 87 l 1352 -5 l 1166 90 q 1077 18 1136 44 q 898 -7 1018 -7 l 745 -7 l 645 -7 l 375 -7 q 179 62 248 -7 q 111 264 111 131 q 154 472 111 414 q 338 546 198 529 q 255 611 280 570 q 230 717 230 652 q 306 892 230 850 q 529 934 383 934 l 653 934 q 774 934 715 934 q 896 928 832 934 q 1005 905 960 922 q 1079 852 1049 888 q 1110 761 1110 817 q 1110 655 1110 706 l 999 655 l 999 695 m 377 90 l 645 90 q 809 90 755 90 q 927 98 863 90 q 1015 115 991 107 q 1058 149 1038 122 l 410 489 q 265 432 300 476 q 230 269 230 387 q 260 140 230 180 q 377 90 291 99 "},"Ð":{"x_min":50,"x_max":1274,"ha":1374,"o":"m 869 92 q 1110 176 1063 92 q 1157 474 1157 261 q 1109 749 1157 668 q 880 831 1061 831 l 245 831 l 245 508 l 340 508 l 340 415 l 245 415 l 245 92 l 869 92 m 905 926 q 1202 821 1130 926 q 1274 476 1274 717 q 1254 246 1274 352 q 1180 83 1235 139 q 1050 13 1126 28 q 868 -1 973 -1 l 857 -1 l 132 -1 l 132 415 l 50 415 l 50 508 l 132 508 l 132 926 l 905 926 "},"I":{"x_min":129,"x_max":242,"ha":371,"o":"m 242 0 l 129 0 l 129 927 l 242 927 l 242 0 "},"G":{"x_min":107,"x_max":1271,"ha":1363,"o":"m 667 457 l 1271 457 l 1271 374 q 1208 75 1271 160 q 929 -10 1146 -10 l 701 -10 l 540 -10 q 191 68 276 -10 q 107 408 107 146 l 107 459 q 170 831 107 730 q 480 933 234 933 l 713 933 l 826 933 l 1011 933 q 1200 865 1144 933 q 1257 656 1257 798 l 1146 656 q 1094 806 1146 778 q 902 834 1043 834 l 713 834 l 604 834 l 421 834 q 270 792 314 823 q 226 637 226 760 l 226 398 q 247 168 226 247 q 471 89 268 89 l 706 89 l 806 89 l 827 89 q 994 98 890 89 q 1126 165 1098 108 q 1154 364 1154 221 l 667 364 l 667 457 "},"`":{"x_min":155.5625,"x_max":540.28125,"ha":694,"o":"m 155 778 l 191 893 l 540 778 l 518 718 l 155 778 "},"·":{"x_min":514,"x_max":653,"ha":1167,"o":"m 653 263 l 514 263 l 514 415 l 653 415 l 653 263 "},"r":{"x_min":111,"x_max":801,"ha":830,"o":"m 208 538 q 283 629 227 596 q 467 663 339 663 q 726 616 652 663 q 801 396 801 570 l 801 366 l 705 366 q 666 533 705 489 q 503 577 628 577 l 470 577 q 268 537 328 577 q 208 366 208 497 l 208 0 l 111 0 l 111 653 l 208 653 l 208 538 "},"¿":{"x_min":79,"x_max":948,"ha":1027,"o":"m 497 653 l 643 653 l 643 495 l 497 495 l 497 653 m 346 140 q 216 94 249 129 q 183 -35 183 59 q 218 -151 183 -114 q 331 -189 253 -189 l 527 -189 l 690 -189 q 802 -162 764 -189 q 841 -67 841 -136 l 841 -13 l 841 17 l 948 17 l 948 -63 q 912 -209 948 -154 q 814 -272 876 -263 q 703 -282 753 -282 q 609 -282 654 -282 l 524 -282 q 472 -282 498 -282 q 420 -282 446 -282 q 142 -215 206 -282 q 79 -15 79 -149 q 119 146 79 95 q 213 211 160 197 q 369 240 266 225 q 495 276 473 255 q 518 351 518 297 l 622 351 q 579 207 622 250 q 346 140 537 165 "},"ý":{"x_min":-37.609375,"x_max":813.78125,"ha":786,"o":"m 813 653 l 451 -54 q 320 -253 377 -196 q 136 -310 263 -310 l 86 -310 l 86 -231 l 113 -231 q 255 -180 215 -231 q 366 7 295 -130 l 329 7 l -37 653 l 74 653 l 402 75 l 699 653 l 813 653 m 584 776 l 220 716 l 199 776 l 548 892 l 584 776 "},"x":{"x_min":-8.328125,"x_max":869.453125,"ha":860,"o":"m 833 653 l 505 345 l 869 0 l 726 0 l 433 286 l 136 0 l -8 0 l 359 345 l 30 653 l 176 653 l 433 402 l 688 653 l 833 653 "},"è":{"x_min":92,"x_max":924,"ha":1018,"o":"m 326 88 q 397 80 349 84 q 513 76 446 76 l 566 76 q 680 80 638 76 q 755 99 722 84 q 804 137 789 113 q 820 196 820 161 l 924 196 q 820 28 924 66 q 553 -10 717 -10 q 287 5 373 -10 q 146 92 201 21 q 92 324 92 162 q 168 594 92 525 q 448 663 245 663 l 514 663 q 751 645 671 663 q 877 560 831 628 q 924 343 924 492 l 924 310 l 189 310 q 215 160 189 213 q 326 88 241 106 m 555 577 l 479 577 q 336 567 398 577 q 242 532 273 558 q 201 471 211 505 q 191 393 191 437 l 824 393 q 815 469 824 436 q 782 526 807 503 q 703 563 757 549 q 555 577 650 577 m 316 776 l 353 892 l 701 776 l 679 717 l 316 776 "},"º":{"x_min":39,"x_max":445,"ha":483,"o":"m 39 406 l 39 459 l 445 459 l 445 406 l 39 406 m 240 527 q 98 587 150 527 q 46 741 46 647 q 102 886 46 828 q 245 944 158 944 q 385 883 332 944 q 439 736 439 823 q 386 585 439 643 q 240 527 333 527 m 241 576 q 339 623 306 576 q 372 738 372 670 q 339 849 372 803 q 243 895 306 895 q 146 849 179 895 q 113 738 113 804 q 144 622 113 668 q 241 576 175 576 "},"Ø":{"x_min":61,"x_max":1333,"ha":1396,"o":"m 1333 831 l 1260 782 q 1280 721 1272 749 q 1288 667 1288 694 l 1288 462 l 1288 428 q 1283 292 1288 340 q 1265 163 1279 243 q 1177 38 1251 82 q 973 -6 1104 -6 l 690 -6 l 460 -6 q 301 9 364 -6 q 180 74 237 24 l 61 -6 l 61 104 l 134 153 q 110 296 116 221 q 105 461 105 370 q 105 595 105 550 q 121 745 105 639 q 222 892 137 850 q 473 934 308 934 l 696 934 l 927 934 q 1095 921 1033 934 q 1211 860 1157 909 l 1333 939 l 1333 831 m 797 834 l 698 834 l 536 834 q 411 834 455 834 q 321 820 367 834 q 255 770 274 807 q 228 676 235 733 q 222 577 222 619 q 222 465 222 535 q 222 330 222 384 q 233 217 222 276 l 1116 797 q 1017 834 1072 834 l 797 834 m 693 91 l 899 91 l 919 91 q 1001 91 973 91 q 1069 102 1028 91 q 1134 150 1111 114 q 1164 234 1157 186 q 1171 323 1171 283 q 1171 415 1171 362 l 1171 527 q 1171 632 1171 598 q 1159 715 1171 666 l 276 136 q 396 91 327 91 l 693 91 "},"÷":{"x_min":33,"x_max":662,"ha":694,"o":"m 662 445 l 33 445 l 33 502 l 662 502 l 662 445 m 348 676 q 309 691 325 676 q 294 730 294 707 q 309 768 294 752 q 348 784 325 784 q 385 768 370 784 q 401 730 401 753 q 385 692 401 709 q 348 676 370 676 m 346 163 q 309 178 325 163 q 294 215 294 194 q 309 253 294 236 q 346 270 324 270 q 385 254 370 270 q 401 215 401 239 q 385 178 401 193 q 346 163 370 163 "},"h":{"x_min":111,"x_max":912,"ha":1023,"o":"m 208 522 q 323 636 241 610 q 525 663 405 663 q 817 620 723 663 q 912 407 912 578 l 912 0 l 815 0 l 815 407 q 799 499 815 464 q 740 551 783 535 q 649 572 698 567 q 542 577 599 577 q 298 544 388 577 q 208 383 208 511 l 208 0 l 111 0 l 111 935 l 208 935 l 208 522 "},".":{"x_min":193,"x_max":332,"ha":524,"o":"m 332 0 l 193 0 l 193 152 l 332 152 l 332 0 "},";":{"x_min":182.9375,"x_max":340,"ha":523,"o":"m 340 11 q 182 -148 340 -148 l 182 -75 q 233 -55 216 -68 q 251 -15 251 -43 l 249 0 l 201 0 l 201 156 l 340 156 l 340 11 m 340 503 l 201 503 l 201 653 l 340 653 l 340 503 "},"f":{"x_min":-10,"x_max":561,"ha":524,"o":"m 561 568 l 233 568 l 233 0 l 136 0 l 136 568 l -10 568 l -10 651 l 136 651 l 136 706 q 199 882 136 831 q 394 934 263 934 l 561 934 l 561 852 l 427 852 q 278 826 324 852 q 233 706 233 801 l 233 651 l 561 651 l 561 568 "},"“":{"x_min":183,"x_max":611,"ha":793,"o":"m 454 774 q 488 888 454 843 q 591 933 523 933 l 611 933 l 611 861 q 561 842 580 854 q 543 801 543 829 l 545 785 l 593 785 l 593 631 l 454 631 l 454 774 m 183 775 q 218 889 183 843 q 320 935 253 935 l 340 935 l 340 862 q 291 844 309 856 q 273 806 273 832 l 273 799 l 274 788 l 323 788 l 323 632 l 183 632 l 183 775 "},"A":{"x_min":-27.78125,"x_max":1220.828125,"ha":1193,"o":"m 104 0 l -27 0 l 519 926 l 669 926 l 1220 0 l 1091 0 l 970 208 l 222 208 l 104 0 m 275 301 l 918 301 l 594 844 l 275 301 "},"6":{"x_min":78,"x_max":1092,"ha":1167,"o":"m 832 830 q 732 836 780 836 q 619 836 683 836 l 590 836 l 483 836 q 408 836 441 836 q 318 827 375 836 q 225 776 261 819 q 189 585 189 733 l 189 424 q 272 527 220 506 q 426 549 323 549 l 584 549 l 696 549 q 810 549 776 549 q 928 537 843 549 q 1052 468 1012 526 q 1092 286 1092 410 q 1015 47 1092 104 q 744 -10 939 -10 l 573 -10 l 472 -10 q 152 58 226 -10 q 78 261 78 126 l 78 482 l 78 703 q 149 864 78 802 q 323 927 220 927 q 437 931 383 931 q 562 931 491 931 l 596 931 l 816 931 q 1009 874 937 931 q 1082 696 1082 817 l 1082 663 l 967 663 q 942 786 967 750 q 832 830 918 821 m 667 90 l 687 90 q 828 99 744 90 q 944 150 911 108 q 977 286 977 192 q 939 418 977 385 q 801 452 901 452 l 585 452 l 404 452 q 239 411 291 452 q 187 261 187 371 q 230 135 187 172 q 365 90 273 98 l 667 90 "},"‘":{"x_min":183,"x_max":340,"ha":523,"o":"m 183 775 q 218 889 183 843 q 320 935 253 935 l 340 935 l 340 862 q 291 843 309 855 q 273 805 273 831 l 273 786 l 323 786 l 323 632 l 183 632 l 183 775 "},"O":{"x_min":104,"x_max":1291,"ha":1392,"o":"m 428 935 l 838 935 q 1209 857 1128 935 q 1291 499 1291 780 l 1291 465 l 1291 436 q 1279 226 1291 336 q 1200 56 1267 116 q 998 -3 1132 -3 q 891 -9 956 -9 q 768 -9 827 -9 l 562 -9 l 537 -9 q 374 0 452 -9 q 243 29 296 7 q 157 107 190 52 q 113 249 123 162 q 104 456 104 337 q 104 618 104 569 q 124 759 104 668 q 222 893 144 851 q 428 935 300 935 m 455 90 l 693 90 l 780 90 l 809 90 q 1007 99 907 90 q 1140 164 1107 109 q 1173 333 1173 220 l 1173 523 q 1166 675 1173 610 q 1135 773 1159 739 q 1073 817 1111 807 q 995 831 1035 828 q 911 835 956 835 l 693 835 l 477 835 q 269 793 319 835 q 219 598 219 751 l 219 459 l 219 391 q 256 152 219 214 q 455 90 293 90 "},"n":{"x_min":111,"x_max":893,"ha":1004,"o":"m 208 518 q 315 637 239 612 q 515 663 390 663 l 527 663 q 699 651 630 663 q 817 601 767 640 q 879 514 866 562 q 893 393 893 465 l 893 0 l 796 0 l 796 383 q 730 541 796 506 q 527 577 665 577 q 289 541 370 577 q 208 368 208 506 l 208 0 l 111 0 l 111 653 l 208 653 l 208 518 "},"3":{"x_min":64,"x_max":1104,"ha":1167,"o":"m 820 518 q 939 551 902 518 q 977 663 977 585 q 962 789 977 743 q 825 836 947 836 l 635 836 l 569 836 l 383 836 q 265 822 313 836 q 201 775 216 809 q 182 717 185 742 q 179 658 179 691 l 179 642 l 69 642 q 102 830 69 780 q 200 899 135 879 q 339 925 265 919 q 495 932 413 932 l 564 932 l 840 932 q 1033 873 974 920 q 1092 699 1092 827 q 1068 539 1092 589 q 952 474 1045 488 q 1075 411 1047 459 q 1104 258 1104 363 q 1023 30 1104 70 q 730 -10 942 -10 l 463 -10 l 443 -10 q 257 3 363 -10 q 107 77 151 16 q 64 283 64 138 l 174 283 q 199 144 174 189 q 312 91 225 99 l 581 91 l 829 91 q 961 135 933 91 q 990 288 990 180 q 958 395 990 369 q 836 422 927 422 l 827 422 l 452 422 l 452 518 l 820 518 "},"9":{"x_min":75,"x_max":1095,"ha":1167,"o":"m 451 87 l 637 87 l 682 87 l 698 87 q 737 87 719 87 q 832 95 755 87 q 943 149 908 103 q 978 295 978 195 l 978 383 l 978 515 q 916 409 959 440 q 791 378 873 378 l 583 378 l 545 378 l 513 378 q 293 387 405 378 q 128 453 181 397 q 75 625 75 509 q 116 832 75 758 q 244 919 157 907 q 411 932 331 932 q 564 932 491 932 l 605 932 l 784 932 q 988 889 902 932 q 1084 770 1074 847 q 1095 638 1095 693 q 1095 533 1095 584 l 1095 444 l 1095 266 q 1040 84 1095 153 q 897 5 985 14 q 744 -3 809 -3 q 581 -3 680 -3 l 284 -3 q 132 79 178 8 q 87 265 87 150 l 200 265 q 257 115 200 144 q 451 87 315 87 m 589 475 l 794 475 q 934 516 893 475 q 976 657 976 557 q 933 797 976 759 q 789 835 890 835 l 595 835 l 515 835 q 419 835 447 835 q 325 825 391 835 q 225 776 258 815 q 192 649 192 737 q 226 509 192 544 q 366 475 261 475 l 589 475 "},"l":{"x_min":111,"x_max":208,"ha":319,"o":"m 208 0 l 111 0 l 111 935 l 208 935 l 208 0 "},"¤":{"x_min":93.5,"x_max":861.5,"ha":955,"o":"m 156 475 q 173 573 156 528 q 225 669 190 618 l 93 799 l 150 856 l 280 725 q 378 777 332 760 q 479 795 425 795 q 576 776 529 795 q 672 726 624 758 l 803 856 l 860 799 l 730 669 q 782 575 765 622 q 799 473 799 528 q 782 375 799 422 q 732 280 765 329 l 861 151 l 805 94 l 676 223 q 476 154 585 154 q 378 172 425 154 q 280 223 332 190 l 153 94 l 96 151 l 222 280 q 156 475 156 369 m 478 246 q 638 313 571 246 q 706 475 706 380 q 639 637 706 569 q 478 706 572 706 q 316 638 383 706 q 249 475 249 571 q 316 313 249 380 q 478 246 383 246 "},"4":{"x_min":57.9375,"x_max":1108,"ha":1166,"o":"m 1108 202 l 961 202 l 961 0 l 851 0 l 851 202 l 57 202 l 57 347 l 803 928 l 961 928 l 961 297 l 1108 297 l 1108 202 m 157 297 l 851 297 l 851 840 l 157 297 "},"p":{"x_min":111,"x_max":955,"ha":1048,"o":"m 208 549 q 298 640 241 618 q 449 662 356 662 l 552 662 q 866 602 778 662 q 955 327 955 542 q 898 72 955 152 q 673 -8 841 -8 l 553 -8 l 413 -8 q 282 15 332 -8 q 208 108 231 39 l 208 -282 l 111 -282 l 111 653 l 208 653 l 208 549 m 851 321 q 794 534 851 495 q 551 573 738 573 l 517 573 q 412 573 451 573 q 314 559 374 573 q 232 487 255 546 q 209 324 209 429 q 278 111 209 146 q 552 76 348 76 q 791 116 731 76 q 851 321 851 156 "},"‡":{"x_min":178,"x_max":1116,"ha":1294,"o":"m 1116 640 l 1116 552 l 699 552 l 699 98 l 1116 98 l 1116 9 l 699 9 l 699 -297 l 595 -297 l 595 9 l 178 9 l 178 98 l 595 98 l 595 552 l 178 552 l 178 640 l 595 640 l 595 928 l 699 928 l 699 640 l 1116 640 "},"à":{"x_min":83,"x_max":879,"ha":990,"o":"m 782 76 q 721 13 757 33 q 631 -6 686 -6 l 452 -6 l 368 -6 q 139 42 195 -6 q 83 186 83 91 q 121 333 83 291 q 231 383 160 376 q 355 390 301 390 q 456 390 409 390 l 640 390 q 720 373 690 390 q 782 315 751 356 l 782 385 q 772 486 782 446 q 729 549 762 526 q 615 572 695 572 q 497 572 536 572 q 405 572 449 572 q 308 565 361 572 q 237 533 256 558 q 218 457 218 508 l 112 457 q 157 599 112 558 q 293 649 202 640 q 460 658 384 658 q 617 658 555 658 q 752 638 680 658 q 851 561 824 618 q 879 408 879 503 l 879 0 l 782 0 l 782 76 m 453 78 l 481 78 q 606 78 552 78 q 721 95 661 78 q 782 191 782 112 q 740 278 782 259 q 652 302 699 297 q 544 307 604 307 l 458 307 q 316 302 357 307 q 242 286 275 298 q 198 247 209 273 q 187 184 187 222 q 216 106 187 134 q 339 78 246 78 l 453 78 m 302 776 l 338 891 l 687 776 l 665 716 l 302 776 "},"Ü":{"x_min":119,"x_max":1210,"ha":1331,"o":"m 1210 286 q 1131 40 1210 89 q 834 -8 1052 -8 l 648 -8 l 383 -8 q 182 52 245 -8 q 119 251 119 113 l 119 926 l 232 926 l 232 266 q 281 122 232 154 q 452 91 331 91 l 651 91 l 866 91 q 1047 124 997 91 q 1097 275 1097 157 l 1097 296 l 1097 926 l 1210 926 l 1210 286 m 593 1019 l 397 1019 l 397 1111 l 593 1111 l 593 1019 m 932 1019 l 736 1019 l 736 1111 l 932 1111 l 932 1019 "},"ó":{"x_min":92,"x_max":949,"ha":1042,"o":"m 514 660 q 764 643 680 660 q 898 558 847 626 q 949 338 949 490 q 860 48 949 106 q 512 -10 771 -10 q 187 47 283 -10 q 92 320 92 104 q 136 554 92 473 q 275 648 180 636 q 412 660 369 660 q 514 660 455 660 m 514 74 q 771 106 697 74 q 846 295 846 139 q 820 485 846 417 q 721 564 794 554 q 605 574 648 574 q 501 574 561 574 l 472 574 q 253 531 311 574 q 196 325 196 488 q 255 122 196 170 q 476 74 315 74 l 514 74 m 712 776 l 348 716 l 327 776 l 676 892 l 712 776 "}},"cssFontWeight":"normal","ascender":1042,"underlinePosition":-97,"cssFontStyle":"normal","boundingBox":{"yMin":-310,"xMin":-108.4375,"yMax":1189,"xMax":2052.5},"resolution":1000,"original_font_information":{"postscript_name":"EurostileExtended-Roman","version_string":"Version 1","vendor_url":"","full_font_name":"Eurostile Extended","font_family_name":"Eurostile Extended","copyright":"Copyright (c) 1991 Digital Typeface Corp.","description":"","trademark":"","designer":"","designer_url":"","unique_font_identifier":"5016041","license_url":"","license_description":"","manufacturer_name":"","font_sub_family_name":"Regular"},"descender":-348,"familyName":"Eurostile Extended","lineHeight":1389,"underlineThickness":50});;if(_typeface_js&&_typeface_js.loadFace)_typeface_js.loadFace({"glyphs":{"S":{"x_min":101,"x_max":1264,"ha":1365,"o":"m 387 280 q 425 209 387 223 q 531 196 463 196 l 664 196 l 853 196 q 955 216 931 196 q 979 280 979 236 q 951 342 979 319 q 848 366 924 366 l 802 366 l 338 366 q 154 433 208 366 q 101 638 101 500 q 135 821 101 756 q 258 909 169 886 q 493 933 348 933 q 688 933 638 933 l 885 933 q 1075 914 1003 933 q 1177 845 1147 895 q 1215 755 1207 796 q 1224 645 1224 715 l 948 645 q 919 711 948 693 q 839 730 891 730 l 703 730 l 488 730 q 415 713 445 730 q 386 658 386 696 q 421 588 386 605 q 517 572 456 572 l 546 572 l 735 572 l 921 572 q 1182 514 1100 572 q 1264 286 1264 457 q 1190 57 1264 119 q 949 -4 1117 -4 l 588 -4 l 399 -4 q 178 44 249 -4 q 108 240 108 93 l 108 296 l 386 296 l 387 280 "},"¦":{"x_min":214,"x_max":479,"ha":694,"o":"m 479 424 l 214 424 l 214 926 l 479 926 l 479 424 m 479 -232 l 214 -232 l 214 213 l 479 213 l 479 -232 "},"/":{"x_min":-169.4375,"x_max":1036.109375,"ha":1083,"o":"m 31 -296 l -169 -296 l 840 927 l 1036 927 l 31 -296 "},"y":{"x_min":51.5625,"x_max":984.890625,"ha":1031,"o":"m 336 -292 l 246 -292 l 246 -127 l 298 -127 q 391 -101 366 -127 q 447 0 416 -75 l 348 0 l 51 648 l 318 648 l 508 170 l 718 649 l 984 649 l 604 -158 q 506 -269 562 -246 q 336 -292 450 -292 "},"Á":{"x_min":47.21875,"x_max":1450,"ha":1496,"o":"m 361 0 l 47 0 l 563 927 l 944 927 l 1450 0 l 1138 0 l 1051 168 l 452 168 l 361 0 m 551 360 l 948 360 l 750 726 l 551 360 m 601 1010 l 566 1103 l 877 1256 l 931 1103 l 601 1010 "},"g":{"x_min":85,"x_max":1021,"ha":1121,"o":"m 1021 -28 q 943 -223 1021 -151 q 742 -295 865 -295 q 638 -303 698 -303 q 520 -303 577 -303 q 221 -261 330 -303 q 113 -68 113 -220 l 357 -68 q 382 -116 357 -97 q 462 -135 408 -135 q 529 -135 516 -135 l 558 -135 q 681 -125 627 -135 q 754 -89 735 -115 q 775 -39 772 -63 q 779 13 779 -16 l 779 138 q 691 39 748 72 q 493 6 634 6 q 171 63 258 6 q 85 345 85 121 q 125 556 85 478 q 256 647 165 633 q 425 661 347 661 q 534 661 502 661 q 692 638 641 661 q 779 529 744 616 l 779 649 l 1021 649 l 1021 12 l 1021 -28 m 551 184 l 572 184 q 676 190 643 184 q 734 212 709 196 q 767 256 759 228 q 774 319 774 284 l 774 351 q 753 452 774 422 q 659 482 731 482 l 532 482 l 490 482 q 411 476 443 482 q 359 454 379 470 q 334 412 340 437 q 328 360 328 386 l 328 336 q 347 229 328 263 q 430 190 366 196 q 511 184 493 184 q 551 184 529 184 "},"²":{"x_min":82,"x_max":752,"ha":831,"o":"m 82 371 l 82 520 q 90 600 82 569 q 136 658 98 631 q 293 685 173 685 q 480 685 412 685 q 566 691 548 685 q 585 740 585 698 q 575 790 585 778 q 541 806 565 802 q 483 810 517 810 q 403 810 443 810 q 322 810 362 810 q 261 794 278 810 q 245 736 245 778 l 245 721 l 82 721 l 82 763 q 129 900 82 873 q 293 928 176 928 l 499 928 l 578 928 q 712 890 672 928 q 752 755 752 852 q 713 606 752 648 q 569 564 675 564 l 430 564 l 311 564 q 258 553 274 564 q 243 503 243 542 l 243 488 l 752 488 l 752 371 l 82 371 "},"–":{"x_min":218,"x_max":1104,"ha":1323,"o":"m 218 217 l 218 453 l 1104 453 l 1104 217 l 218 217 "},"ë":{"x_min":83,"x_max":964,"ha":1045,"o":"m 602 -10 l 370 -10 q 143 75 203 -10 q 83 341 83 161 q 146 583 83 507 q 368 660 210 660 l 596 660 q 766 648 699 660 q 883 597 834 637 q 948 498 932 557 q 964 363 964 439 q 964 326 964 347 q 964 279 964 305 l 327 279 q 355 170 327 202 q 458 139 383 139 l 594 139 q 671 144 640 139 q 712 163 702 149 q 723 212 723 176 l 963 212 q 869 29 963 69 q 602 -10 775 -10 m 488 518 q 369 502 412 518 q 326 422 326 486 l 326 404 l 726 404 q 691 496 726 474 q 578 518 656 518 l 488 518 m 279 742 l 279 882 l 472 882 l 472 742 l 279 742 m 575 742 l 575 882 l 768 882 l 768 742 l 575 742 "},"ƒ":{"x_min":208.328125,"x_max":1116.671875,"ha":1324,"o":"m 361 -188 l 208 -188 l 236 -30 l 329 -30 q 444 -3 416 -30 q 487 108 472 22 l 559 519 l 405 519 l 431 672 l 587 672 q 606 798 597 734 q 655 926 620 868 q 770 1002 690 984 q 963 1020 851 1020 l 1116 1020 l 1088 860 l 995 860 q 888 841 923 860 q 843 758 852 822 l 827 672 l 1055 672 l 1029 519 l 801 519 l 723 77 q 618 -139 693 -90 q 361 -188 543 -188 "},"Î":{"x_min":-15.109375,"x_max":541.890625,"ha":524,"o":"m 121 0 l 121 927 l 403 927 l 403 0 l 121 0 m 504 1006 l 259 1093 l 16 1006 l -15 1089 l 262 1248 l 541 1089 l 504 1006 "},"e":{"x_min":83,"x_max":964,"ha":1045,"o":"m 602 -10 l 370 -10 q 143 75 203 -10 q 83 341 83 161 q 146 583 83 507 q 368 660 210 660 l 596 660 q 766 648 699 660 q 883 597 834 637 q 948 498 932 557 q 964 363 964 439 q 964 326 964 347 q 964 279 964 305 l 327 279 q 355 170 327 202 q 458 139 383 139 l 594 139 q 671 144 640 139 q 712 163 702 149 q 723 212 723 176 l 963 212 q 869 29 963 69 q 602 -10 775 -10 m 488 518 q 369 502 412 518 q 326 422 326 486 l 326 404 l 726 404 q 691 496 726 474 q 578 518 656 518 l 488 518 "},"Ã":{"x_min":47.15625,"x_max":1449.9375,"ha":1496,"o":"m 361 0 l 47 0 l 563 927 l 944 927 l 1449 0 l 1138 0 l 1051 168 l 452 168 l 361 0 m 551 360 l 948 360 l 749 726 l 551 360 m 861 1002 q 754 1032 829 1002 q 644 1062 679 1062 q 600 1046 615 1062 q 579 1000 586 1031 l 455 1000 q 508 1146 470 1091 q 624 1201 545 1201 q 737 1172 665 1201 q 847 1144 809 1144 q 897 1159 876 1144 q 918 1203 918 1175 l 1043 1203 q 986 1061 1033 1121 q 861 1002 940 1002 "},"J":{"x_min":46,"x_max":1000,"ha":1121,"o":"m 1000 376 q 959 118 1000 205 q 817 12 918 31 q 643 -6 716 -6 q 502 -6 569 -6 q 231 11 319 -6 q 94 103 143 28 q 46 350 46 179 l 46 396 l 317 396 l 317 334 q 360 239 317 261 q 487 218 404 218 l 562 218 q 673 235 630 218 q 717 307 717 252 l 717 377 l 717 927 l 1000 927 l 1000 376 "},"»":{"x_min":83.328125,"x_max":833.328125,"ha":879,"o":"m 833 337 l 633 2 l 462 97 l 606 337 l 462 583 l 633 681 l 833 337 m 455 337 l 254 2 l 83 97 l 227 337 l 83 583 l 254 681 l 455 337 "},"©":{"x_min":47,"x_max":1009,"ha":1058,"o":"m 266 465 q 339 664 266 583 q 531 745 413 745 q 698 688 625 745 q 770 541 770 632 l 655 541 q 609 596 644 579 q 530 613 574 613 q 447 568 475 613 q 419 466 419 524 q 446 364 419 407 q 530 321 474 321 q 615 342 581 321 q 657 410 649 363 l 774 410 q 704 250 774 310 q 530 190 634 190 q 338 267 410 190 q 266 465 266 345 m 531 -21 q 189 120 332 -21 q 47 462 47 262 q 188 804 47 662 q 531 946 330 946 q 868 802 728 946 q 1009 462 1009 659 q 869 121 1009 263 q 531 -21 729 -21 m 530 87 q 786 198 681 87 q 891 462 891 310 q 786 726 891 614 q 530 838 681 838 q 271 727 377 838 q 165 462 165 616 q 271 197 165 308 q 530 87 377 87 "},"ò":{"x_min":90,"x_max":1019.0625,"ha":1095,"o":"m 535 656 l 787 656 q 968 575 917 640 q 1019 372 1019 510 l 1019 344 q 974 76 1019 144 q 732 -11 930 7 l 469 -11 q 174 43 258 -11 q 90 294 90 97 l 90 333 q 112 528 90 457 q 210 627 134 599 q 385 656 285 656 q 535 656 484 656 m 539 168 l 566 168 q 673 172 632 168 q 736 192 714 176 q 766 231 757 207 q 776 305 776 255 l 776 353 q 767 418 776 397 q 735 456 759 440 q 662 478 712 473 q 548 484 612 484 q 439 477 484 484 q 368 448 395 471 q 337 384 341 426 q 333 318 333 342 q 340 240 333 276 q 370 186 346 204 q 454 168 394 168 q 539 168 514 168 m 702 724 l 371 817 l 426 970 l 737 817 l 702 724 "},"^":{"x_min":8.328125,"x_max":686.109375,"ha":694,"o":"m 201 932 l 491 932 l 686 468 l 456 468 l 347 755 l 237 468 l 8 468 l 201 932 "},"«":{"x_min":45.828125,"x_max":795.828125,"ha":879,"o":"m 416 97 l 245 2 l 45 337 l 245 681 l 418 583 l 273 337 l 416 97 m 795 97 l 625 2 l 425 337 l 625 681 l 795 583 l 651 337 l 795 97 "},"D":{"x_min":121,"x_max":1359,"ha":1463,"o":"m 936 927 q 1273 843 1187 927 q 1359 510 1359 760 l 1359 457 l 1359 428 l 1359 403 q 1359 311 1359 337 q 1345 203 1359 284 q 1249 61 1331 122 q 1043 0 1167 0 l 121 0 l 121 927 l 936 927 m 1077 460 l 1077 468 q 1046 651 1077 604 q 882 699 1015 699 l 403 699 l 403 227 l 878 227 q 1042 275 1008 227 q 1077 460 1077 324 "},"∙":{"x_min":65,"x_max":314,"ha":379,"o":"m 65 217 l 65 474 l 314 474 l 314 217 l 65 217 "},"ÿ":{"x_min":51.5625,"x_max":985,"ha":1031,"o":"m 336 -292 l 246 -292 l 246 -127 l 298 -127 q 391 -101 366 -127 q 447 0 416 -75 l 348 0 l 51 648 l 318 648 l 508 170 l 718 649 l 985 649 l 604 -158 q 506 -269 562 -246 q 336 -292 450 -292 m 271 742 l 271 882 l 464 882 l 464 742 l 271 742 m 567 742 l 567 882 l 760 882 l 760 742 l 567 742 "},"í":{"x_min":38.5,"x_max":403.5,"ha":444,"o":"m 101 0 l 101 649 l 341 649 l 341 0 l 101 0 m 73 724 l 38 817 l 349 970 l 403 817 l 73 724 "},"ˆ":{"x_min":69.4375,"x_max":626.390625,"ha":694,"o":"m 588 739 l 344 827 l 101 739 l 69 822 l 347 981 l 626 822 l 588 739 "},"w":{"x_min":63.890625,"x_max":1469.453125,"ha":1535,"o":"m 891 0 l 765 383 l 630 0 l 300 0 l 63 649 l 318 649 l 469 163 l 650 649 l 879 649 l 1055 163 l 1212 649 l 1469 649 l 1229 0 l 891 0 "},"$":{"x_min":47,"x_max":1278,"ha":1324,"o":"m 770 567 l 954 567 q 1204 517 1131 567 q 1278 301 1278 467 q 1248 136 1278 202 q 1146 41 1218 69 q 991 6 1074 13 q 800 0 909 0 l 727 0 l 727 -111 l 587 -111 l 587 3 l 548 3 l 394 3 q 276 8 323 3 q 162 39 230 14 q 70 124 94 64 q 47 292 47 183 l 47 321 l 280 321 q 314 216 280 237 q 435 196 348 196 l 587 196 l 587 392 l 560 392 l 353 392 q 128 450 196 392 q 60 663 60 509 q 140 870 60 815 q 376 926 220 926 l 412 926 l 568 926 l 587 926 l 587 1002 l 727 1002 l 727 926 q 881 926 806 926 q 1063 916 956 926 q 1210 847 1170 906 q 1251 653 1251 788 l 1016 653 q 988 721 1016 706 q 906 736 960 736 l 727 736 l 727 567 l 770 567 m 304 666 q 324 596 304 614 q 398 578 345 578 l 587 578 l 587 740 l 401 740 q 322 723 341 740 q 304 666 304 707 m 1040 292 q 1007 369 1040 351 q 907 388 974 388 l 727 388 l 727 196 l 934 196 q 1014 217 988 196 q 1040 292 1040 239 "},"\\":{"x_min":47.21875,"x_max":1252.78125,"ha":1083,"o":"m 1051 -296 l 47 927 l 243 927 l 1252 -296 l 1051 -296 "},"Ì":{"x_min":80.734375,"x_max":446.046875,"ha":524,"o":"m 121 0 l 121 927 l 403 927 l 403 0 l 121 0 m 411 1010 l 80 1103 l 134 1256 l 446 1103 l 411 1010 "},"µ":{"x_min":76,"x_max":768,"ha":844,"o":"m 316 666 l 316 332 q 345 206 316 239 q 426 173 374 173 q 507 219 487 173 q 528 334 528 266 l 528 666 l 768 666 l 768 0 l 528 0 l 528 73 q 486 10 509 33 q 426 -12 463 -12 q 363 7 391 -12 q 316 61 335 27 l 316 -240 l 76 -240 l 76 666 l 316 666 "},"Ç":{"x_min":108,"x_max":1287,"ha":1387,"o":"m 1287 313 q 1217 55 1287 119 q 941 -8 1148 -8 l 726 -8 l 551 -8 q 190 65 272 -8 q 108 294 108 139 l 108 488 q 172 824 108 717 q 443 932 237 932 l 706 932 q 897 932 822 932 q 1079 919 972 932 q 1232 825 1186 906 q 1278 601 1278 744 l 1004 601 q 972 686 1004 664 q 873 708 941 708 l 794 708 l 716 708 l 573 708 q 417 660 445 708 q 389 464 389 613 q 418 271 389 323 q 577 219 448 219 l 709 219 l 854 219 q 974 242 938 219 q 1011 353 1011 266 l 1287 353 l 1287 313 m 595 -290 l 550 -201 l 773 -55 l 842 -210 l 595 -290 "},"’":{"x_min":47.109375,"x_max":365,"ha":447,"o":"m 129 421 l 108 421 q 47 425 76 421 l 47 569 l 76 567 q 144 592 124 567 q 163 668 163 618 l 86 668 l 86 927 l 365 927 l 365 668 q 315 477 365 534 q 129 421 265 421 "},"-":{"x_min":14,"x_max":467,"ha":481,"o":"m 14 217 l 14 453 l 467 453 l 467 217 l 14 217 "},"Q":{"x_min":106,"x_max":1477.71875,"ha":1478,"o":"m 1269 72 q 1128 10 1204 28 q 958 -8 1051 -8 l 749 -8 l 528 -8 q 315 7 400 -8 q 181 79 231 23 q 119 205 132 134 q 106 365 106 277 l 106 481 q 106 597 106 542 q 118 731 106 652 q 224 871 131 810 q 534 933 317 933 l 747 933 q 936 933 860 933 q 1118 922 1012 933 q 1294 843 1225 911 q 1364 638 1364 774 q 1368 546 1368 602 q 1368 482 1368 489 q 1368 354 1368 399 q 1358 249 1368 310 l 1477 183 l 1379 -2 l 1269 72 m 1085 499 q 1085 562 1085 536 q 1075 630 1085 589 q 1023 689 1066 671 q 918 708 980 708 l 751 708 q 621 708 671 708 q 502 700 571 708 q 410 648 432 692 q 388 518 388 604 l 388 443 q 422 262 388 305 q 601 220 456 220 l 912 220 q 997 233 953 220 l 697 399 l 814 584 l 1085 409 l 1085 499 "},"M":{"x_min":119,"x_max":1690,"ha":1811,"o":"m 1423 0 l 1423 706 l 1014 0 l 788 0 l 384 706 l 384 0 l 119 0 l 119 927 l 567 927 l 907 312 l 1243 927 l 1690 927 l 1690 0 l 1423 0 "},"C":{"x_min":108,"x_max":1287,"ha":1387,"o":"m 1287 313 q 1217 55 1287 119 q 941 -8 1148 -8 l 726 -8 l 551 -8 q 190 65 272 -8 q 108 294 108 139 l 108 488 q 172 824 108 717 q 443 932 237 932 l 706 932 q 897 932 822 932 q 1079 920 972 932 q 1232 826 1186 909 q 1278 601 1278 744 l 1004 601 q 972 686 1004 664 q 873 708 941 708 l 794 708 l 716 708 l 573 708 q 417 660 445 708 q 389 464 389 613 q 422 264 389 310 q 600 219 455 219 l 709 219 l 854 219 q 974 242 938 219 q 1011 353 1011 266 l 1287 353 l 1287 313 "},"œ":{"x_min":87,"x_max":1639,"ha":1720,"o":"m 1131 135 l 1255 135 q 1319 138 1288 135 q 1375 152 1350 141 q 1401 204 1401 163 l 1639 204 q 1565 47 1639 105 q 1301 -11 1492 -11 l 1065 -11 q 952 17 993 -3 q 882 91 911 37 q 791 9 846 33 q 656 -14 736 -14 l 461 -14 q 239 13 327 -14 q 123 103 150 40 q 91 212 96 166 q 87 309 87 257 q 130 560 87 484 q 280 647 173 636 q 437 659 388 659 q 554 659 486 659 l 588 659 q 697 659 651 659 q 798 642 743 659 q 882 564 853 625 q 982 643 915 624 q 1137 663 1049 663 l 1218 663 q 1455 647 1372 663 q 1589 566 1539 631 q 1639 361 1639 501 l 1639 281 l 1002 281 q 1029 166 1002 198 q 1131 135 1056 135 m 1248 518 l 1202 518 q 1140 518 1170 518 q 1057 507 1110 518 q 996 424 1004 497 l 996 406 l 1401 406 q 1394 459 1401 437 q 1369 495 1388 482 q 1318 513 1350 508 q 1248 518 1286 518 m 558 165 q 729 190 685 165 q 774 325 774 215 q 738 458 774 425 q 594 491 703 491 l 508 491 q 418 485 454 491 q 358 462 381 479 q 329 414 335 445 q 323 347 323 383 l 323 337 q 367 193 323 222 q 533 165 411 165 l 558 165 "},"!":{"x_min":90,"x_max":366,"ha":454,"o":"m 90 0 l 90 259 l 366 259 l 366 0 l 90 0 m 101 379 l 101 927 l 361 927 l 361 379 l 101 379 "},"ç":{"x_min":93,"x_max":996,"ha":1061,"o":"m 920 55 q 767 -1 866 11 q 551 -14 668 -14 q 293 5 384 -14 q 147 99 201 25 q 93 334 93 174 q 154 576 93 496 q 368 657 216 657 l 596 657 q 895 613 801 657 q 990 394 990 569 l 749 394 q 739 433 745 419 q 717 460 733 448 q 662 478 700 473 q 580 483 624 483 l 541 483 q 442 477 483 483 q 377 453 401 471 q 345 408 354 435 q 336 326 336 380 q 384 191 336 217 q 555 165 433 165 q 661 171 608 165 q 729 196 714 178 q 748 228 745 213 q 752 265 752 242 l 996 265 q 982 142 996 190 q 920 55 968 94 m 409 -172 l 603 -51 l 678 -162 l 458 -239 l 409 -172 "},"È":{"x_min":121,"x_max":1154.390625,"ha":1242,"o":"m 1154 927 l 1154 716 l 403 716 l 403 557 l 1104 557 l 1104 374 l 403 374 l 403 210 l 1154 210 l 1154 0 l 121 0 l 121 927 l 1154 927 m 769 1010 l 439 1103 l 493 1256 l 804 1103 l 769 1010 "},"{":{"x_min":103,"x_max":576.5,"ha":695,"o":"m 439 62 q 443 7 439 35 q 465 -26 447 -19 q 503 -35 483 -32 q 557 -38 523 -38 l 576 -38 l 576 -270 l 415 -270 q 238 -230 298 -270 q 179 -68 179 -190 l 179 113 q 163 194 179 165 q 103 234 147 224 l 103 447 q 161 482 144 455 q 179 554 179 508 l 179 739 q 238 898 179 860 q 413 937 297 937 l 576 937 l 576 692 l 557 692 q 457 680 469 692 q 439 593 445 668 l 439 508 q 423 406 439 443 q 356 334 408 369 q 422 263 405 302 q 439 159 439 223 l 439 62 "},"X":{"x_min":36.109375,"x_max":1429.171875,"ha":1467,"o":"m 1429 0 l 1043 0 l 731 332 l 419 0 l 36 0 l 498 462 l 62 927 l 438 927 l 734 594 l 1031 927 l 1395 927 l 962 462 l 1429 0 "},"ô":{"x_min":90,"x_max":1019.0625,"ha":1095,"o":"m 535 656 l 787 656 q 968 575 917 640 q 1019 372 1019 510 l 1019 344 q 974 76 1019 144 q 732 -11 930 7 l 469 -11 q 174 43 258 -11 q 90 294 90 97 l 90 333 q 112 528 90 457 q 210 627 134 599 q 385 656 285 656 q 535 656 484 656 m 539 168 l 566 168 q 673 172 632 168 q 736 192 714 176 q 766 231 757 207 q 776 305 776 255 l 776 353 q 767 418 776 397 q 735 456 759 440 q 662 478 712 473 q 548 484 612 484 q 439 477 484 484 q 368 448 395 471 q 337 384 341 426 q 333 318 333 342 q 340 240 333 276 q 370 186 346 204 q 454 168 394 168 q 539 168 514 168 m 795 738 l 551 825 l 308 738 l 276 821 l 553 980 l 832 821 l 795 738 "},"¼":{"x_min":121.046875,"x_max":1914.671875,"ha":1976,"o":"m 403 371 l 403 789 l 200 653 l 121 771 l 365 927 l 578 927 l 578 371 l 403 371 m 672 0 l 532 0 l 1303 927 l 1441 927 l 672 0 m 1914 227 l 1914 110 l 1823 110 l 1823 0 l 1660 0 l 1660 110 l 1210 110 l 1210 305 l 1619 556 l 1823 556 l 1823 227 l 1914 227 m 1339 227 l 1660 227 l 1660 423 l 1339 227 "},"#":{"x_min":108.328125,"x_max":809.71875,"ha":918,"o":"m 459 60 l 491 284 l 363 284 l 331 60 l 213 60 l 245 284 l 108 284 l 125 399 l 261 399 l 279 520 l 141 520 l 156 635 l 294 635 l 323 839 l 441 839 l 412 635 l 541 635 l 569 839 l 688 839 l 659 635 l 809 635 l 793 520 l 643 520 l 626 399 l 776 399 l 759 284 l 609 284 l 579 60 l 459 60 m 380 399 l 508 399 l 525 520 l 397 520 l 380 399 "},"Ê":{"x_min":121,"x_max":1154.390625,"ha":1242,"o":"m 1154 927 l 1154 716 l 403 716 l 403 557 l 1104 557 l 1104 374 l 403 374 l 403 210 l 1154 210 l 1154 0 l 121 0 l 121 927 l 1154 927 m 862 1006 l 618 1093 l 375 1006 l 343 1089 l 621 1248 l 900 1089 l 862 1006 "},")":{"x_min":27.34375,"x_max":476,"ha":589,"o":"m 476 528 l 476 426 l 476 284 l 476 -30 q 393 -249 476 -193 q 137 -306 310 -306 l 27 -306 l 27 -93 l 85 -93 q 187 -72 156 -93 q 219 15 219 -51 l 219 566 q 192 708 219 683 q 50 733 166 733 l 27 733 l 27 935 l 160 935 q 419 841 363 935 q 476 528 476 747 "},"Å":{"x_min":47.28125,"x_max":1450.328125,"ha":1496,"o":"m 361 0 l 47 0 l 563 927 l 944 927 l 1450 0 l 1139 0 l 1051 168 l 452 168 l 361 0 m 551 360 l 948 360 l 750 726 l 551 360 m 942 1096 q 884 1010 942 1034 q 751 987 826 987 q 616 1009 675 987 q 557 1095 557 1031 q 618 1175 557 1152 q 748 1198 680 1198 q 882 1177 823 1198 q 942 1096 942 1156 m 751 1048 q 830 1056 798 1048 q 863 1092 863 1064 q 823 1131 863 1125 q 759 1138 783 1138 l 748 1138 q 672 1129 708 1138 q 636 1089 636 1120 q 665 1056 636 1064 q 733 1048 695 1048 l 751 1048 "},"ø":{"x_min":33,"x_max":1062,"ha":1095,"o":"m 1062 549 l 995 511 q 1008 446 1005 481 q 1012 365 1012 411 l 1012 342 q 965 65 1012 141 q 726 -11 919 -11 l 527 -11 l 458 -11 q 280 -1 351 -11 q 160 45 209 8 l 33 -26 l 33 104 l 98 140 q 86 202 86 168 q 86 274 86 236 l 86 354 q 108 533 86 467 q 206 629 131 600 q 380 658 281 658 q 528 658 478 658 q 694 658 621 658 q 829 646 768 658 q 928 605 891 635 l 1062 680 l 1062 549 m 360 447 q 331 398 337 429 q 326 321 326 367 q 330 260 326 289 l 698 468 q 625 480 665 477 q 541 484 586 484 q 422 475 460 484 q 360 447 384 467 m 545 164 l 562 164 q 680 173 627 164 q 750 215 732 182 q 769 304 769 248 l 769 328 l 769 353 q 769 374 769 362 q 767 393 767 388 l 385 179 q 460 167 419 170 q 545 164 501 164 "},"â":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 429 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 686 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 418 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 m 772 739 l 527 826 l 284 739 l 252 822 l 530 981 l 809 822 l 772 739 "},"}":{"x_min":118.5,"x_max":592,"ha":695,"o":"m 256 605 q 232 688 256 671 q 139 706 208 706 l 118 706 l 118 937 l 282 937 q 456 898 397 937 q 516 736 516 859 l 516 554 q 531 473 516 504 q 592 433 547 443 l 592 220 q 533 185 550 212 q 516 113 516 159 l 516 -71 q 456 -231 516 -192 q 282 -270 397 -270 l 118 -270 l 118 -24 l 139 -24 q 230 -11 204 -24 q 256 58 256 1 l 256 159 q 271 263 256 226 q 338 334 287 299 q 272 404 289 365 q 256 508 256 444 l 256 605 "},"‰":{"x_min":58,"x_max":2139,"ha":2185,"o":"m 421 929 q 606 888 558 929 q 654 711 654 848 l 654 670 q 617 503 654 546 q 427 460 581 460 l 270 460 q 103 499 148 460 q 58 659 58 539 l 58 697 q 94 882 58 836 q 266 929 131 929 l 421 929 m 358 580 q 484 595 460 580 q 508 694 508 610 q 489 790 508 765 q 402 815 470 815 l 312 815 q 260 812 276 815 q 230 801 244 810 q 210 772 216 792 q 204 712 204 752 l 204 695 q 219 601 204 623 q 301 580 234 580 l 358 580 m 438 0 l 310 0 l 1081 927 l 1209 927 l 438 0 m 1230 466 q 1415 423 1368 466 q 1462 249 1462 381 l 1462 201 q 1450 91 1462 136 q 1410 28 1439 46 q 1340 3 1381 11 q 1224 -4 1299 -4 l 1086 -4 q 916 29 967 -4 q 866 196 866 62 l 866 234 q 902 419 866 373 q 1074 466 939 466 l 1230 466 m 1166 117 l 1229 117 q 1302 139 1289 117 q 1316 224 1316 161 l 1316 264 q 1311 308 1316 290 q 1291 336 1306 326 q 1257 348 1275 345 q 1210 352 1238 352 l 1120 352 q 1068 349 1084 352 q 1038 338 1052 347 q 1018 309 1024 329 q 1012 249 1012 289 l 1012 232 q 1026 137 1012 158 q 1110 117 1041 117 l 1166 117 m 1907 466 q 2092 423 2045 466 q 2139 249 2139 381 l 2139 201 q 2127 91 2139 136 q 2087 28 2116 46 q 2017 3 2058 11 q 1901 -4 1976 -4 l 1763 -4 q 1659 3 1693 -4 q 1594 29 1625 11 q 1553 90 1563 47 q 1543 196 1543 132 l 1543 234 q 1579 419 1543 373 q 1751 466 1616 466 l 1907 466 m 1843 117 l 1906 117 q 1979 139 1966 117 q 1993 224 1993 161 l 1993 263 q 1988 308 1993 289 q 1967 336 1983 326 q 1932 348 1951 345 q 1887 352 1913 352 l 1797 352 q 1745 349 1761 352 q 1715 338 1729 347 q 1695 309 1701 329 q 1689 249 1689 289 l 1689 232 q 1703 137 1689 158 q 1787 117 1718 117 l 1843 117 "},"Ä":{"x_min":47.046875,"x_max":1449.9375,"ha":1496,"o":"m 360 0 l 47 0 l 563 927 l 944 927 l 1449 0 l 1138 0 l 1051 168 l 452 168 l 360 0 m 551 360 l 948 360 l 749 726 l 551 360 m 504 1013 l 504 1153 l 697 1153 l 697 1013 l 504 1013 m 800 1013 l 800 1153 l 993 1153 l 993 1013 l 800 1013 "},"¸":{"x_min":201.390625,"x_max":494.4375,"ha":694,"o":"m 247 -290 l 201 -201 l 423 -55 l 494 -211 l 247 -290 "},"a":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 429 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 686 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 418 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 "},"—":{"x_min":28,"x_max":1414,"ha":1442,"o":"m 28 217 l 28 453 l 1414 453 l 1414 217 l 28 217 "},"=":{"x_min":4,"x_max":690,"ha":694,"o":"m 690 560 l 4 560 l 4 677 l 690 677 l 690 560 m 690 345 l 4 345 l 4 462 l 690 462 l 690 345 "},"N":{"x_min":119,"x_max":1391,"ha":1512,"o":"m 942 0 l 384 696 l 384 0 l 119 0 l 119 927 l 567 927 l 1126 232 l 1126 927 l 1391 927 l 1391 0 l 942 0 "},"ú":{"x_min":103,"x_max":992,"ha":1093,"o":"m 752 0 l 752 133 q 648 15 729 45 q 455 -14 567 -14 q 189 49 275 -14 q 103 287 103 112 l 103 648 l 343 648 l 343 309 q 388 190 343 216 q 537 165 434 165 q 701 201 650 165 q 752 344 752 238 l 752 363 l 752 649 l 992 649 l 992 0 l 752 0 m 400 724 l 365 817 l 676 970 l 731 817 l 400 724 "},"2":{"x_min":119,"x_max":1207,"ha":1324,"o":"m 120 0 l 120 245 q 166 436 120 375 q 335 515 213 497 l 822 515 q 914 545 886 523 q 943 629 943 567 l 943 648 q 917 720 943 702 q 815 739 891 739 l 670 739 l 506 739 q 439 729 467 739 q 396 700 410 720 q 379 662 382 681 q 376 620 376 644 l 376 588 l 119 588 l 119 654 q 192 883 119 838 q 460 928 266 928 l 772 928 l 927 928 q 1145 865 1083 928 q 1207 644 1207 803 q 1147 394 1207 463 q 913 325 1087 325 l 684 325 l 489 325 q 404 309 434 325 q 374 232 374 294 l 374 188 l 1207 188 l 1207 0 l 120 0 "},"ü":{"x_min":103,"x_max":992,"ha":1093,"o":"m 752 0 l 752 133 q 648 15 729 45 q 455 -14 567 -14 q 189 49 275 -14 q 103 287 103 112 l 103 648 l 343 648 l 343 309 q 388 190 343 216 q 537 165 434 165 q 701 201 650 165 q 752 344 752 238 l 752 363 l 752 649 l 992 649 l 992 0 l 752 0 m 303 741 l 303 881 l 496 881 l 496 741 l 303 741 m 599 741 l 599 881 l 792 881 l 792 741 l 599 741 "},"Z":{"x_min":79,"x_max":1205,"ha":1284,"o":"m 1205 210 l 1205 0 l 79 0 l 79 210 l 777 716 l 97 716 l 97 927 l 1191 927 l 1191 716 l 487 210 l 1205 210 "},"u":{"x_min":103,"x_max":992,"ha":1093,"o":"m 752 0 l 752 133 q 648 15 729 45 q 455 -14 567 -14 q 189 49 275 -14 q 103 287 103 112 l 103 648 l 343 648 l 343 309 q 388 190 343 216 q 537 165 434 165 q 701 201 650 165 q 752 344 752 238 l 752 363 l 752 649 l 992 649 l 992 0 l 752 0 "},"˜":{"x_min":127.78125,"x_max":802.78125,"ha":926,"o":"m 347 1061 q 477 1024 390 1061 q 595 988 563 988 q 640 1009 622 988 q 677 1065 659 1031 l 802 958 q 702 793 754 835 q 586 752 651 752 q 461 787 550 752 q 334 823 373 823 q 289 801 308 823 q 252 746 270 779 l 127 852 q 229 1017 175 973 q 347 1061 283 1061 "},"Ó":{"x_min":104,"x_max":1372,"ha":1473,"o":"m 718 934 l 943 934 q 1281 851 1190 934 q 1372 523 1372 769 l 1372 478 q 1299 91 1372 189 q 934 -7 1227 -7 l 721 -7 l 632 -7 l 441 -7 q 192 68 280 -7 q 104 306 104 143 l 104 476 q 176 846 104 759 q 518 934 248 934 l 718 934 m 565 220 l 717 220 l 861 220 q 1033 245 981 220 q 1086 372 1086 271 l 1086 497 q 1078 605 1086 560 q 1047 671 1070 650 q 977 700 1023 693 q 877 707 930 707 l 597 707 q 452 687 502 707 q 394 604 402 668 q 387 499 387 541 l 387 474 l 387 437 q 416 264 387 309 q 565 220 446 220 m 589 1010 l 555 1103 l 866 1256 l 920 1103 l 589 1010 "},"k":{"x_min":101,"x_max":997.9375,"ha":1035,"o":"m 393 439 l 622 649 l 945 649 l 607 352 l 997 0 l 674 0 l 406 268 l 341 268 l 341 0 l 101 0 l 101 927 l 341 927 l 341 439 l 393 439 "},"Ù":{"x_min":119,"x_max":1309,"ha":1430,"o":"m 1309 397 l 1309 343 q 1195 57 1309 126 q 846 -11 1082 -11 l 616 -11 q 335 8 432 -11 q 178 107 238 27 q 119 356 119 186 l 119 926 l 401 926 l 401 440 q 434 259 401 301 q 602 217 467 217 l 728 217 l 845 217 q 993 253 960 217 q 1026 400 1026 290 l 1026 435 l 1026 926 l 1309 926 l 1309 397 m 862 1010 l 531 1103 l 585 1256 l 896 1103 l 862 1010 "},"Ÿ":{"x_min":27.78125,"x_max":1361.21875,"ha":1389,"o":"m 1361 927 l 840 322 l 840 0 l 557 0 l 557 322 l 27 927 l 383 927 l 697 544 l 1008 927 l 1361 927 m 450 1013 l 450 1153 l 643 1153 l 643 1013 l 450 1013 m 746 1013 l 746 1153 l 939 1153 l 939 1013 l 746 1013 "},"¢":{"x_min":214,"x_max":1113.9375,"ha":1324,"o":"m 864 436 l 1111 436 q 1024 214 1111 265 q 744 164 937 164 l 732 164 l 732 54 l 606 54 l 606 164 q 296 227 378 164 q 214 512 214 290 q 299 770 214 699 q 575 841 384 841 l 606 841 l 606 937 l 732 937 l 732 841 q 1014 798 915 841 q 1113 599 1113 756 l 1113 564 l 873 564 q 831 636 865 621 q 732 652 797 652 l 732 349 q 825 368 786 349 q 864 436 864 387 m 606 349 l 606 652 q 491 621 523 652 q 460 506 460 590 q 485 387 460 414 q 606 349 511 360 "},"ß":{"x_min":101,"x_max":1040,"ha":1123,"o":"m 347 936 q 472 946 396 946 q 616 946 548 946 q 874 909 774 946 q 975 743 975 873 q 945 622 975 659 q 834 561 916 585 q 991 488 942 546 q 1040 319 1040 430 q 961 67 1040 148 q 709 -14 882 -14 q 548 5 617 -14 q 448 70 478 24 q 411 159 418 116 q 405 257 405 202 l 612 257 q 627 188 612 205 q 686 171 643 171 q 773 208 756 171 q 791 326 791 246 q 764 449 791 414 q 653 484 737 484 l 454 484 l 454 649 l 646 649 q 710 660 688 649 q 733 714 733 672 q 710 760 733 748 q 660 775 688 772 q 602 778 631 778 l 523 778 q 385 751 424 778 q 347 628 347 725 l 347 0 l 101 0 l 101 668 q 161 857 101 793 q 347 936 221 922 "},"é":{"x_min":83,"x_max":964,"ha":1045,"o":"m 602 -10 l 370 -10 q 143 75 203 -10 q 83 341 83 161 q 146 583 83 507 q 368 660 210 660 l 596 660 q 766 648 699 660 q 883 597 834 637 q 948 498 932 557 q 964 363 964 439 q 964 326 964 347 q 964 279 964 305 l 327 279 q 355 170 327 202 q 458 139 383 139 l 594 139 q 671 144 640 139 q 712 163 702 149 q 723 212 723 176 l 963 212 q 869 29 963 69 q 602 -10 775 -10 m 488 518 q 369 502 412 518 q 326 422 326 486 l 326 404 l 726 404 q 691 496 726 474 q 578 518 656 518 l 488 518 m 376 723 l 341 817 l 652 969 l 706 817 l 376 723 "},"s":{"x_min":83,"x_max":987,"ha":1070,"o":"m 664 509 q 624 516 645 516 q 574 516 603 516 l 470 516 q 425 516 446 516 q 382 512 404 516 q 344 494 359 508 q 330 459 330 480 q 352 422 330 430 q 410 414 374 414 l 675 414 q 909 382 831 414 q 987 219 987 350 q 964 89 987 135 q 879 17 942 42 q 729 -7 816 -7 q 541 -7 642 -7 l 439 -7 q 175 28 267 -7 q 83 200 83 63 l 334 200 q 366 145 334 155 q 423 135 399 135 q 481 135 447 135 l 595 135 q 663 137 632 135 q 719 151 693 140 q 745 200 745 161 q 721 240 745 231 q 660 250 697 250 l 479 250 l 274 250 q 87 450 87 266 q 154 606 87 565 q 350 659 222 647 l 585 659 q 706 659 666 659 q 816 647 746 659 q 920 593 885 635 q 955 472 955 552 l 701 472 q 664 509 697 502 "},"B":{"x_min":121,"x_max":1322,"ha":1423,"o":"m 999 927 q 1212 874 1138 927 q 1286 688 1286 821 q 1275 588 1286 629 q 1238 524 1265 547 q 1188 492 1211 500 q 1123 472 1165 483 q 1279 415 1236 454 q 1322 267 1322 376 q 1247 56 1322 112 q 1013 0 1173 0 l 121 0 l 121 927 l 999 927 m 1001 646 q 973 708 1001 693 q 894 724 946 724 l 403 724 l 403 563 l 888 563 q 972 578 944 563 q 1001 646 1001 593 m 1039 300 q 1014 359 1039 338 q 919 380 990 380 l 403 380 l 403 210 l 915 210 q 1001 220 964 210 q 1039 300 1039 230 "},"…":{"x_min":92,"x_max":1290,"ha":1383,"o":"m 92 0 l 92 259 l 368 259 l 368 0 l 92 0 m 553 0 l 553 259 l 829 259 l 829 0 l 553 0 m 1014 0 l 1014 259 l 1290 259 l 1290 0 l 1014 0 "},"?":{"x_min":54,"x_max":993,"ha":1106,"o":"m 332 0 l 332 259 l 608 259 l 608 0 l 332 0 m 648 580 q 727 606 696 587 q 758 670 758 625 q 720 736 758 716 q 632 757 682 757 l 517 757 l 419 757 q 324 733 355 757 q 294 650 294 709 q 296 608 294 622 l 54 608 q 108 860 54 789 q 329 931 162 931 l 519 931 q 674 931 623 931 q 814 918 724 931 q 948 844 904 905 q 993 673 993 783 l 993 652 q 985 547 993 587 q 942 469 977 506 q 749 402 908 431 q 588 341 591 373 l 589 326 l 351 326 q 404 520 351 488 q 648 580 457 551 "},"H":{"x_min":119,"x_max":1323,"ha":1444,"o":"m 1323 927 l 1323 0 l 1040 0 l 1040 357 l 401 357 l 401 0 l 119 0 l 119 927 l 401 927 l 401 588 l 1040 588 l 1040 927 l 1323 927 "},"î":{"x_min":-57.328125,"x_max":499.328125,"ha":444,"o":"m 101 0 l 101 649 l 341 649 l 341 0 l 101 0 m 461 737 l 217 825 l -25 737 l -57 821 l 220 979 l 499 821 l 461 737 "},"c":{"x_min":83,"x_max":986,"ha":1069,"o":"m 910 55 q 757 -1 856 11 q 541 -14 658 -14 q 283 5 374 -14 q 137 99 191 25 q 83 334 83 174 q 143 568 83 494 q 358 657 203 643 l 585 657 q 885 613 791 657 q 980 394 980 569 l 739 394 q 729 433 735 419 q 707 460 723 448 q 652 478 690 473 q 570 483 614 483 l 531 483 q 432 477 473 483 q 367 453 391 471 q 335 408 344 435 q 326 326 326 380 q 374 191 326 217 q 545 165 423 165 q 666 173 625 165 q 721 197 707 181 q 738 227 735 213 q 742 265 742 241 l 986 265 q 972 142 986 190 q 910 55 958 94 "},"¶":{"x_min":90.71875,"x_max":778,"ha":910,"o":"m 340 447 q 160 511 229 447 q 90 685 90 575 q 178 875 90 822 q 408 928 265 928 l 778 928 l 778 833 l 711 833 l 711 -156 l 589 -156 l 589 833 l 478 833 l 478 -156 l 356 -156 l 356 449 l 340 447 "},"•":{"x_min":275,"x_max":544,"ha":833,"o":"m 544 397 q 505 302 544 341 q 408 264 466 264 q 313 302 352 264 q 275 397 275 341 q 313 492 275 453 q 408 531 352 531 q 503 492 463 531 q 544 397 544 453 "},"¥":{"x_min":28.171875,"x_max":1361.046875,"ha":1389,"o":"m 1361 926 l 1097 619 l 1293 619 l 1293 522 l 1014 522 l 906 397 l 1293 397 l 1293 297 l 841 297 l 841 0 l 558 0 l 558 297 l 99 297 l 99 397 l 492 397 l 384 522 l 99 522 l 99 619 l 299 619 l 28 926 l 384 926 l 698 544 l 1008 926 l 1361 926 "},"(":{"x_min":115,"x_max":562.0625,"ha":588,"o":"m 538 733 q 396 707 424 733 q 369 566 369 681 l 369 224 l 369 137 l 369 15 q 400 -69 369 -46 q 496 -93 431 -93 l 562 -93 l 562 -306 l 452 -306 q 198 -250 281 -306 q 115 -30 115 -194 l 115 158 l 115 401 l 115 692 q 201 879 115 824 q 430 935 288 935 l 562 935 l 562 733 l 538 733 "},"U":{"x_min":119,"x_max":1309,"ha":1430,"o":"m 1309 397 l 1309 343 q 1195 57 1309 126 q 846 -11 1082 -11 l 616 -11 q 335 8 432 -11 q 178 107 238 27 q 119 356 119 186 l 119 926 l 401 926 l 401 440 q 434 259 401 301 q 602 217 467 217 l 728 217 l 845 217 q 993 253 960 217 q 1026 400 1026 290 l 1026 435 l 1026 926 l 1309 926 l 1309 397 "},"Ñ":{"x_min":119,"x_max":1391,"ha":1512,"o":"m 943 0 l 384 696 l 384 0 l 119 0 l 119 927 l 567 927 l 1126 232 l 1126 927 l 1391 927 l 1391 0 l 943 0 m 867 1002 q 760 1032 836 1002 q 651 1062 685 1062 q 607 1046 621 1062 q 585 1000 592 1031 l 461 1000 q 514 1146 477 1091 q 631 1201 552 1201 q 744 1172 671 1201 q 854 1144 816 1144 q 904 1159 883 1144 q 925 1203 925 1175 l 1049 1203 q 993 1061 1040 1121 q 867 1002 947 1002 "},"F":{"x_min":121,"x_max":1104.390625,"ha":1154,"o":"m 1104 927 l 1104 716 l 403 716 l 403 557 l 1104 557 l 1104 374 l 403 374 l 403 0 l 121 0 l 121 927 l 1104 927 "},":":{"x_min":92,"x_max":368,"ha":461,"o":"m 92 390 l 92 649 l 368 649 l 368 390 l 92 390 m 92 0 l 92 259 l 368 259 l 368 0 l 92 0 "},"Û":{"x_min":119,"x_max":1309,"ha":1430,"o":"m 1309 397 l 1309 343 q 1195 57 1309 126 q 846 -11 1082 -11 l 616 -11 q 335 8 432 -11 q 178 107 238 27 q 119 356 119 186 l 119 926 l 401 926 l 401 440 q 434 259 401 301 q 602 217 467 217 l 728 217 l 845 217 q 993 253 960 217 q 1026 400 1026 290 l 1026 435 l 1026 926 l 1309 926 l 1309 397 m 955 1005 l 710 1092 l 467 1005 l 435 1088 l 713 1247 l 992 1088 l 955 1005 "},"*":{"x_min":340.21875,"x_max":984.765625,"ha":1324,"o":"m 732 927 l 732 707 l 941 774 l 984 642 l 775 573 l 904 396 l 791 314 l 662 491 l 533 314 l 419 396 l 549 573 l 340 642 l 383 775 l 593 707 l 593 927 l 732 927 "},"†":{"x_min":132,"x_max":1192,"ha":1324,"o":"m 1192 654 l 1192 476 l 787 476 l 787 -300 l 536 -300 l 536 476 l 132 476 l 132 654 l 536 654 l 536 927 l 787 927 l 787 654 l 1192 654 "},"°":{"x_min":118,"x_max":577,"ha":695,"o":"m 118 699 q 181 870 118 801 q 347 940 245 940 q 510 871 443 940 q 577 706 577 803 q 508 546 577 612 q 344 480 439 480 q 186 544 255 480 q 118 699 118 609 m 217 707 q 255 616 217 656 q 344 577 293 577 q 437 615 397 577 q 478 707 478 654 q 440 802 478 762 q 347 843 403 843 q 255 802 294 843 q 217 707 217 762 "},"V":{"x_min":36.109375,"x_max":1401.390625,"ha":1439,"o":"m 525 0 l 36 927 l 344 927 l 708 227 l 1087 927 l 1401 927 l 884 0 l 525 0 "},"å":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 428 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 685 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 418 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 m 723 852 q 665 765 723 789 q 533 742 607 742 q 397 764 456 742 q 339 850 339 786 q 400 930 339 907 q 530 954 462 954 q 664 933 605 954 q 723 852 723 912 m 533 803 q 612 811 580 803 q 644 847 644 819 q 604 887 644 881 q 541 894 564 894 l 530 894 q 454 884 490 894 q 418 844 418 875 q 447 811 418 819 q 515 803 477 803 l 533 803 "}," ":{"x_min":0,"x_max":0,"ha":347},"0":{"x_min":86,"x_max":1241,"ha":1323,"o":"m 664 930 l 773 930 q 884 930 850 930 q 993 919 917 930 q 1128 872 1070 909 q 1206 773 1186 836 q 1233 646 1225 711 q 1241 467 1241 581 q 1220 174 1241 263 q 1113 40 1199 85 q 831 -4 1027 -4 l 539 -4 q 174 71 262 -4 q 86 417 86 146 l 86 468 q 157 837 86 745 q 487 930 229 930 l 664 930 m 667 224 l 744 224 q 923 260 878 224 q 969 446 969 297 l 969 467 l 969 486 l 969 503 q 960 609 969 563 q 922 678 952 656 q 857 706 892 700 q 780 712 823 712 q 732 712 738 712 l 602 712 q 397 672 437 712 q 358 481 358 632 l 358 463 q 389 270 358 317 q 557 224 420 224 l 667 224 "},"”":{"x_min":47.109375,"x_max":740,"ha":822,"o":"m 129 421 l 108 421 q 47 425 76 421 l 47 569 l 76 567 q 144 592 124 567 q 163 668 163 618 l 86 668 l 86 927 l 365 927 l 365 668 q 315 477 365 534 q 129 421 265 421 m 504 421 l 483 421 q 422 425 451 421 l 422 569 l 451 567 q 519 592 499 567 q 538 668 538 618 l 461 668 l 461 927 l 740 927 l 740 668 q 696 475 740 530 q 504 421 652 421 "},"¾":{"x_min":74,"x_max":1914.671875,"ha":1976,"o":"m 492 705 q 554 713 532 705 q 577 753 577 721 q 574 779 577 769 q 561 796 572 788 q 515 807 550 804 q 439 811 481 811 l 396 811 l 314 811 q 260 799 278 811 q 242 750 242 788 l 243 734 l 77 734 q 113 879 77 835 q 246 923 149 923 q 329 929 279 929 q 425 929 379 929 l 470 929 q 534 929 503 929 q 623 921 564 929 q 712 880 681 913 q 744 770 744 846 q 727 693 744 718 q 661 654 710 668 l 640 649 q 730 613 704 642 q 757 520 757 585 q 698 398 757 427 q 533 369 639 369 l 290 369 q 126 399 178 369 q 74 534 74 430 l 74 567 l 237 567 q 249 503 237 520 q 308 487 261 487 l 519 487 q 574 499 559 487 q 590 534 590 512 q 574 579 590 567 q 526 592 559 592 l 483 592 l 345 592 l 345 705 l 492 705 m 672 0 l 532 0 l 1303 927 l 1441 927 l 672 0 m 1914 227 l 1914 110 l 1823 110 l 1823 0 l 1660 0 l 1660 110 l 1210 110 l 1210 306 l 1619 556 l 1823 556 l 1823 227 l 1914 227 m 1339 227 l 1660 227 l 1660 424 l 1339 227 "},"@":{"x_min":85,"x_max":1452,"ha":1535,"o":"m 1288 -23 q 1247 -25 1277 -25 q 1176 -25 1218 -25 l 526 -25 l 304 -25 q 123 44 162 -25 q 85 269 85 114 l 85 457 l 85 636 q 113 867 85 791 q 265 944 141 944 l 444 944 l 754 944 l 893 944 l 1242 944 q 1418 862 1384 944 q 1452 606 1452 780 l 1452 452 q 1452 387 1452 415 q 1445 319 1452 359 q 1415 249 1438 279 q 1354 213 1392 220 q 1266 206 1316 206 q 1180 206 1216 206 q 1051 216 1103 206 q 984 257 998 227 q 971 332 971 288 q 878 230 947 253 q 704 208 809 208 q 569 217 623 208 q 473 255 515 226 q 421 328 431 284 q 411 434 411 372 l 411 459 q 415 570 411 539 q 440 643 419 601 q 532 700 462 685 q 701 716 602 716 l 745 716 q 886 700 830 716 q 971 627 943 684 l 971 711 l 1124 711 l 1124 418 q 1138 352 1124 375 q 1194 330 1153 330 l 1206 330 q 1272 358 1257 330 q 1287 441 1287 386 l 1287 617 l 1287 634 q 1279 740 1287 702 q 1250 791 1271 778 q 1202 810 1229 805 q 1133 815 1174 815 q 1087 815 1092 815 l 948 815 l 773 815 l 538 815 l 386 815 q 276 777 299 815 q 254 653 254 739 l 254 605 l 254 460 l 254 238 q 276 144 259 170 q 342 110 293 118 q 426 103 392 103 q 506 103 460 103 l 784 103 l 1182 103 q 1255 113 1225 103 q 1293 155 1285 123 l 1450 126 q 1395 22 1433 58 q 1288 -23 1357 -13 m 786 322 q 928 349 888 322 q 968 469 968 376 q 933 586 968 560 q 797 612 898 612 l 745 612 q 664 606 701 612 q 610 584 627 600 q 585 545 593 568 q 578 474 578 522 l 578 464 q 605 353 578 385 q 711 322 633 322 l 786 322 "},"ö":{"x_min":90,"x_max":1019.0625,"ha":1095,"o":"m 535 656 l 787 656 q 968 575 917 640 q 1019 372 1019 510 l 1019 344 q 974 76 1019 144 q 732 -11 930 7 l 468 -11 q 173 43 257 -11 q 90 294 90 97 l 90 333 q 112 528 90 457 q 210 627 134 599 q 385 656 285 656 q 535 656 484 656 m 539 168 l 566 168 q 673 172 632 168 q 736 192 714 176 q 766 231 757 207 q 776 305 776 255 l 776 353 q 767 418 776 397 q 735 456 759 440 q 662 478 712 473 q 548 484 612 484 q 439 477 484 484 q 368 448 395 471 q 337 384 341 426 q 333 318 333 342 q 340 240 333 276 q 370 186 346 204 q 454 168 394 168 q 539 168 514 168 m 309 741 l 309 881 l 502 881 l 502 741 l 309 741 m 605 741 l 605 881 l 798 881 l 798 741 l 605 741 "},"i":{"x_min":101,"x_max":341,"ha":444,"o":"m 101 752 l 101 927 l 341 927 l 341 752 l 101 752 m 101 0 l 101 649 l 341 649 l 341 0 l 101 0 "},"Õ":{"x_min":104,"x_max":1372,"ha":1473,"o":"m 718 934 l 943 934 q 1281 851 1190 934 q 1372 523 1372 769 l 1372 478 q 1299 91 1372 189 q 934 -7 1227 -7 l 722 -7 l 633 -7 l 441 -7 q 192 68 280 -7 q 104 306 104 143 l 104 476 q 176 846 104 759 q 518 934 248 934 l 718 934 m 565 220 l 717 220 l 861 220 q 1033 245 981 220 q 1086 372 1086 271 l 1086 497 q 1078 605 1086 560 q 1047 671 1070 650 q 977 700 1023 693 q 877 707 930 707 l 597 707 q 452 687 502 707 q 394 604 402 668 q 387 499 387 541 l 387 474 l 387 437 q 416 264 387 309 q 565 220 446 220 m 849 1002 q 742 1032 818 1002 q 633 1062 667 1062 q 589 1046 603 1062 q 567 1000 574 1031 l 444 1000 q 496 1146 459 1091 q 613 1201 534 1201 q 726 1172 653 1201 q 836 1144 798 1144 q 886 1159 865 1144 q 907 1203 907 1175 l 1031 1203 q 975 1061 1022 1121 q 849 1002 929 1002 "},"þ":{"x_min":101,"x_max":1030,"ha":1115,"o":"m 341 544 q 372 600 354 576 q 427 637 391 624 q 513 657 463 651 q 632 663 564 663 q 936 615 843 663 q 1030 378 1030 567 l 1030 298 q 1020 165 1030 219 q 966 63 1010 111 q 838 0 923 15 q 635 -14 754 -14 q 451 8 525 -14 q 341 109 377 31 l 341 -288 l 101 -288 l 101 927 l 341 927 l 341 544 m 595 167 q 751 196 715 167 q 788 340 788 226 q 761 450 788 419 q 653 482 735 482 l 495 482 q 418 476 443 482 q 375 457 393 470 q 349 415 356 443 q 342 350 342 387 l 342 325 q 368 203 342 240 q 475 167 395 167 l 595 167 "},"]":{"x_min":18.5,"x_max":469,"ha":590,"o":"m 469 -296 l 18 -296 l 18 -111 l 231 -111 l 231 742 l 18 742 l 18 927 l 469 927 l 469 -296 "},"m":{"x_min":101,"x_max":1547,"ha":1650,"o":"m 341 528 q 442 635 377 607 q 606 663 507 663 q 794 632 714 663 q 913 518 874 601 q 1012 633 938 603 q 1194 663 1087 663 q 1453 596 1359 663 q 1547 371 1547 529 l 1547 0 l 1307 0 l 1307 322 l 1307 343 q 1276 449 1307 421 q 1151 477 1245 477 l 1126 477 q 1022 464 1065 477 q 965 424 980 451 q 947 372 950 396 q 944 322 944 347 l 944 310 l 944 0 l 704 0 l 704 339 q 671 448 704 419 q 552 477 638 477 l 531 477 q 388 450 436 477 q 341 339 341 424 l 341 0 l 101 0 l 101 649 l 341 649 l 341 528 "},"8":{"x_min":112,"x_max":1209,"ha":1323,"o":"m 1131 41 q 1034 2 1079 8 q 939 -3 989 -3 q 846 -3 889 -3 l 657 -3 l 471 -3 q 203 40 294 -3 q 112 240 112 83 q 151 394 112 351 q 301 471 191 437 q 158 543 195 500 q 122 697 122 586 q 191 878 122 826 q 392 931 261 931 l 562 931 l 775 931 l 855 931 q 1136 869 1068 931 q 1205 685 1205 808 q 1165 540 1205 583 q 1025 468 1125 496 q 1167 399 1125 440 q 1209 266 1209 359 q 1195 128 1209 181 q 1131 41 1182 75 m 817 563 q 906 583 871 563 q 942 654 942 604 q 903 728 942 711 q 800 746 865 746 l 531 746 q 426 729 466 746 q 386 661 386 712 q 423 584 386 605 q 521 563 460 563 l 817 563 m 582 185 l 786 185 q 901 203 857 185 q 946 279 946 221 q 907 364 946 342 q 799 386 869 386 l 516 386 q 412 367 449 386 q 375 287 375 348 q 386 232 375 251 q 425 203 397 214 q 498 189 454 193 q 582 185 542 185 "},"R":{"x_min":121,"x_max":1293,"ha":1404,"o":"m 983 928 q 1221 863 1149 928 q 1293 634 1293 798 q 1286 527 1293 571 q 1258 449 1279 482 q 1209 401 1237 417 q 1092 356 1181 385 q 1236 306 1190 343 q 1282 178 1282 269 l 1282 0 l 996 0 l 996 89 q 984 197 996 157 q 873 238 972 238 l 403 238 l 403 0 l 121 0 l 121 928 l 983 928 m 865 463 q 984 486 960 463 q 1008 593 1008 510 q 998 661 1008 639 q 961 692 989 684 q 915 701 933 701 q 872 701 896 701 l 849 701 l 403 701 l 403 463 l 829 463 l 865 463 "},"á":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 429 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 686 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 418 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 m 383 723 l 348 817 l 659 969 l 713 817 l 383 723 "},"×":{"x_min":58.328125,"x_max":636.109375,"ha":694,"o":"m 548 799 l 636 711 l 431 508 l 634 308 l 550 223 l 348 425 l 145 221 l 58 308 l 262 511 l 62 711 l 147 796 l 345 594 l 548 799 "},"o":{"x_min":90,"x_max":1019.0625,"ha":1095,"o":"m 535 656 l 787 656 q 968 575 917 640 q 1019 372 1019 510 l 1019 344 q 974 76 1019 144 q 732 -11 930 7 l 469 -11 q 174 43 258 -11 q 90 294 90 97 l 90 333 q 112 528 90 457 q 210 627 134 599 q 385 656 285 656 q 535 656 484 656 m 539 168 l 566 168 q 673 172 632 168 q 736 192 714 176 q 766 231 757 207 q 776 305 776 255 l 776 353 q 767 418 776 397 q 735 456 759 440 q 662 478 712 473 q 548 484 612 484 q 439 477 484 484 q 368 448 395 471 q 337 384 341 426 q 333 318 333 342 q 340 240 333 276 q 370 186 346 204 q 454 168 394 168 q 539 168 514 168 "},"5":{"x_min":112,"x_max":1218,"ha":1324,"o":"m 386 740 l 386 550 q 465 608 420 592 q 569 624 509 624 l 655 624 l 741 624 q 858 624 801 624 q 1019 612 916 624 q 1170 538 1122 601 q 1218 334 1218 474 q 1151 78 1218 158 q 907 -1 1084 -1 l 803 -1 l 698 -1 l 433 -1 q 185 55 259 -1 q 112 286 112 111 l 370 286 q 429 199 370 210 q 543 188 488 188 l 678 188 l 796 188 q 919 211 884 188 q 955 313 955 234 q 926 413 955 384 q 825 442 898 442 l 674 442 l 522 442 q 467 440 488 442 q 419 429 447 438 q 386 384 391 421 l 154 384 l 154 928 l 1177 928 l 1177 740 l 386 740 "},"õ":{"x_min":90,"x_max":1019.0625,"ha":1095,"o":"m 535 656 l 787 656 q 968 575 917 640 q 1019 372 1019 510 l 1019 344 q 974 76 1019 144 q 732 -11 930 7 l 469 -11 q 174 43 258 -11 q 90 294 90 97 l 90 333 q 112 528 90 457 q 210 627 134 599 q 385 656 285 656 q 535 656 484 656 m 539 168 l 566 168 q 673 172 632 168 q 736 192 714 176 q 766 231 757 207 q 776 305 776 255 l 776 353 q 767 418 776 397 q 735 456 759 440 q 662 478 712 473 q 548 484 612 484 q 439 477 484 484 q 368 448 395 471 q 337 384 341 426 q 333 318 333 342 q 340 240 333 276 q 370 186 346 204 q 454 168 394 168 q 539 168 514 168 m 666 731 q 559 761 634 731 q 449 791 484 791 q 405 775 420 791 q 384 729 391 760 l 260 729 q 313 875 276 820 q 430 930 351 930 q 542 901 470 930 q 652 873 614 873 q 702 888 681 873 q 723 932 723 904 l 848 932 q 791 790 838 850 q 666 731 745 731 "},"7":{"x_min":110,"x_max":1214,"ha":1324,"o":"m 601 0 l 268 0 l 872 699 l 110 699 l 110 927 l 1214 927 l 1214 715 l 601 0 "},"K":{"x_min":121,"x_max":1376.609375,"ha":1413,"o":"m 547 578 l 929 927 l 1318 927 l 787 468 l 1376 0 l 962 0 l 547 353 l 403 353 l 403 0 l 121 0 l 121 927 l 403 927 l 403 578 l 547 578 "},",":{"x_min":47.109375,"x_max":365,"ha":447,"o":"m 129 -247 l 108 -247 q 47 -242 76 -247 l 47 -98 l 76 -101 q 144 -75 124 -101 q 163 0 163 -49 l 86 0 l 86 259 l 365 259 l 365 0 q 314 -190 365 -134 q 129 -247 263 -247 "},"d":{"x_min":90,"x_max":1022,"ha":1116,"o":"m 787 0 l 787 140 q 686 17 763 48 q 497 -14 609 -14 q 292 0 380 -14 q 159 55 205 12 q 101 156 113 98 q 90 293 90 215 l 90 340 q 103 496 90 433 q 169 598 116 560 q 304 649 222 636 q 479 663 387 663 q 684 634 623 663 q 787 545 745 606 l 787 927 l 1022 927 l 1022 0 l 787 0 m 587 164 q 743 189 701 164 q 786 316 786 214 q 750 455 786 426 q 593 484 713 484 l 540 484 q 445 478 487 484 q 377 454 402 472 q 345 407 352 436 q 339 333 339 378 q 370 196 339 228 q 508 164 402 164 l 587 164 "},"¨":{"x_min":103,"x_max":592,"ha":695,"o":"m 103 741 l 103 881 l 296 881 l 296 741 l 103 741 m 399 741 l 399 881 l 592 881 l 592 741 l 399 741 "},"Ô":{"x_min":104,"x_max":1372,"ha":1473,"o":"m 718 934 l 943 934 q 1281 851 1190 934 q 1372 523 1372 769 l 1372 478 q 1299 91 1372 189 q 934 -7 1227 -7 l 721 -7 l 632 -7 l 441 -7 q 192 68 280 -7 q 104 306 104 143 l 104 476 q 176 846 104 759 q 518 934 248 934 l 718 934 m 565 220 l 717 220 l 861 220 q 1033 245 981 220 q 1086 372 1086 271 l 1086 497 q 1078 605 1086 560 q 1047 671 1070 650 q 977 700 1023 693 q 877 707 930 707 l 597 707 q 452 687 502 707 q 394 604 402 668 q 387 499 387 541 l 387 474 l 387 437 q 416 264 387 309 q 565 220 446 220 m 979 1006 l 734 1093 l 491 1006 l 459 1089 l 737 1248 l 1016 1089 l 979 1006 "},"E":{"x_min":121,"x_max":1154.390625,"ha":1242,"o":"m 1154 927 l 1154 716 l 403 716 l 403 557 l 1104 557 l 1104 374 l 403 374 l 403 210 l 1154 210 l 1154 0 l 121 0 l 121 927 l 1154 927 "},"Y":{"x_min":27.84375,"x_max":1360.828125,"ha":1389,"o":"m 1360 927 l 840 322 l 840 0 l 557 0 l 557 322 l 27 927 l 383 927 l 697 544 l 1008 927 l 1360 927 "},"\"":{"x_min":23.609375,"x_max":645.828125,"ha":671,"o":"m 23 926 l 309 926 l 259 555 l 73 555 l 23 926 m 359 926 l 645 926 l 594 555 l 408 555 l 359 926 "},"‹":{"x_min":45.828125,"x_max":418.0625,"ha":501,"o":"m 416 97 l 245 2 l 45 337 l 245 681 l 418 583 l 273 337 l 416 97 "},"ê":{"x_min":83,"x_max":964,"ha":1045,"o":"m 602 -10 l 370 -10 q 143 75 203 -10 q 83 341 83 161 q 146 583 83 507 q 368 660 210 660 l 596 660 q 766 648 699 660 q 883 597 834 637 q 948 498 932 557 q 964 363 964 439 q 964 326 964 347 q 964 279 964 305 l 327 279 q 355 170 327 202 q 458 139 383 139 l 594 139 q 671 144 640 139 q 712 163 702 149 q 723 212 723 176 l 963 212 q 869 29 963 69 q 602 -10 775 -10 m 488 518 q 369 502 412 518 q 326 422 326 486 l 326 404 l 726 404 q 691 496 726 474 q 578 518 656 518 l 488 518 m 764 739 l 520 826 l 277 739 l 245 822 l 523 981 l 802 822 l 764 739 "},"Ï":{"x_min":18,"x_max":507,"ha":524,"o":"m 121 0 l 121 927 l 403 927 l 403 0 l 121 0 m 18 1013 l 18 1153 l 211 1153 l 211 1013 l 18 1013 m 314 1013 l 314 1153 l 507 1153 l 507 1013 l 314 1013 "},"„":{"x_min":47.109375,"x_max":740,"ha":822,"o":"m 129 -247 l 108 -247 q 47 -242 76 -247 l 47 -98 l 76 -101 q 144 -75 124 -101 q 163 0 163 -49 l 86 0 l 86 259 l 365 259 l 365 0 q 314 -190 365 -134 q 129 -247 263 -247 m 504 -247 l 483 -247 q 422 -242 451 -247 l 422 -98 l 451 -101 q 519 -75 499 -101 q 538 0 538 -49 l 461 0 l 461 259 l 740 259 l 740 0 q 690 -191 740 -135 q 504 -247 641 -247 "},"Â":{"x_min":47.21875,"x_max":1450,"ha":1496,"o":"m 361 0 l 47 0 l 563 927 l 944 927 l 1450 0 l 1138 0 l 1051 168 l 452 168 l 361 0 m 551 360 l 948 360 l 750 726 l 551 360 m 990 1006 l 745 1093 l 502 1006 l 470 1089 l 748 1248 l 1027 1089 l 990 1006 "},"Í":{"x_min":80.734375,"x_max":446.046875,"ha":524,"o":"m 121 0 l 121 927 l 403 927 l 403 0 l 121 0 m 115 1010 l 80 1103 l 391 1256 l 446 1103 l 115 1010 "},"´":{"x_min":165.28125,"x_max":530.5625,"ha":694,"o":"m 200 724 l 165 817 l 476 970 l 530 817 l 200 724 "},"ì":{"x_min":38.5,"x_max":403.5,"ha":444,"o":"m 101 0 l 101 649 l 341 649 l 341 0 l 101 0 m 368 724 l 38 817 l 92 970 l 403 817 l 368 724 "},"±":{"x_min":4,"x_max":689,"ha":695,"o":"m 283 854 l 408 854 l 408 573 l 689 573 l 689 453 l 408 453 l 408 183 l 283 183 l 283 453 l 4 453 l 4 573 l 283 573 l 283 854 m 689 8 l 4 8 l 4 128 l 689 128 l 689 8 "},"Ú":{"x_min":119,"x_max":1309,"ha":1430,"o":"m 1309 397 l 1309 343 q 1195 57 1309 126 q 846 -11 1082 -11 l 616 -11 q 335 8 432 -11 q 178 107 238 27 q 119 356 119 186 l 119 926 l 401 926 l 401 440 q 434 259 401 301 q 602 217 467 217 l 728 217 l 845 217 q 993 253 960 217 q 1026 400 1026 290 l 1026 435 l 1026 926 l 1309 926 l 1309 397 m 566 1010 l 531 1103 l 842 1256 l 896 1103 l 566 1010 "},"|":{"x_min":214,"x_max":479,"ha":694,"o":"m 479 -232 l 214 -232 l 214 926 l 479 926 l 479 -232 "},"§":{"x_min":128,"x_max":1196,"ha":1324,"o":"m 770 758 l 654 758 l 548 758 q 442 744 480 758 q 404 675 404 731 q 438 610 404 627 q 527 593 473 593 l 976 542 q 1143 485 1090 527 q 1196 338 1196 443 q 1173 228 1196 276 q 1100 157 1151 179 q 1175 95 1157 137 q 1193 -17 1193 52 q 1125 -248 1193 -190 q 879 -307 1058 -307 l 558 -307 l 367 -307 q 192 -265 256 -307 q 128 -115 128 -224 l 128 -35 l 379 -35 q 406 -111 379 -94 q 497 -129 434 -129 l 654 -129 l 800 -129 q 904 -110 865 -129 q 943 -32 943 -91 q 856 50 943 39 l 316 119 q 142 326 142 143 q 164 426 142 392 q 245 486 186 461 q 166 556 183 510 q 150 685 150 602 q 220 881 150 829 q 436 933 290 933 l 664 933 l 854 933 q 1091 882 1022 933 q 1160 674 1160 832 l 911 674 q 874 743 911 728 q 770 758 837 758 m 529 251 l 909 203 q 949 262 938 237 q 961 311 961 287 q 928 372 961 354 q 843 396 895 389 l 455 443 q 421 395 433 420 q 410 340 410 371 q 440 276 410 292 q 529 251 471 260 "},"Ý":{"x_min":27.84375,"x_max":1360.828125,"ha":1389,"o":"m 1360 927 l 840 322 l 840 0 l 557 0 l 557 322 l 27 927 l 383 927 l 697 544 l 1008 927 l 1360 927 m 547 1010 l 512 1103 l 823 1256 l 877 1103 l 547 1010 "},"b":{"x_min":101,"x_max":1032,"ha":1115,"o":"m 341 541 q 455 640 384 620 q 644 661 525 661 q 949 601 866 661 q 1032 329 1032 542 q 956 51 1032 116 q 652 -14 880 -14 l 616 -14 q 441 10 503 -14 q 341 122 378 34 l 341 0 l 101 0 l 101 926 l 341 926 l 341 541 m 573 164 q 683 170 635 164 q 753 195 730 176 q 782 244 776 215 q 788 307 788 273 q 756 452 788 422 q 595 482 723 482 l 567 482 q 500 482 532 482 q 421 472 468 482 q 357 429 374 462 q 339 330 339 395 q 382 195 339 227 q 532 164 425 164 l 573 164 "},"q":{"x_min":94,"x_max":1016,"ha":1106,"o":"m 1016 -288 l 776 -288 l 776 106 q 685 17 744 48 q 488 -14 625 -14 q 163 55 232 -14 q 94 272 94 124 q 161 586 94 512 q 462 661 228 661 l 514 661 q 676 641 620 661 q 776 548 732 621 l 776 647 l 1016 647 l 1016 -288 m 366 198 q 446 170 394 176 q 567 164 498 164 l 589 164 q 742 191 705 164 q 780 323 780 218 l 780 333 q 774 404 780 374 q 750 449 769 434 q 686 473 731 464 q 570 483 641 483 l 532 483 q 437 477 480 483 q 373 454 395 471 q 344 408 350 437 q 337 340 337 378 l 337 330 l 337 292 q 342 236 337 259 q 366 198 348 212 "},"Ö":{"x_min":104,"x_max":1372,"ha":1473,"o":"m 718 934 l 943 934 q 1281 851 1190 934 q 1372 523 1372 769 l 1372 478 q 1299 91 1372 189 q 934 -7 1227 -7 l 722 -7 l 633 -7 l 441 -7 q 192 68 280 -7 q 104 306 104 143 l 104 476 q 176 846 104 759 q 518 934 248 934 l 718 934 m 565 220 l 717 220 l 861 220 q 1033 245 981 220 q 1086 372 1086 271 l 1086 497 q 1078 605 1086 560 q 1047 671 1070 650 q 977 700 1023 693 q 877 707 930 707 l 597 707 q 452 687 502 707 q 394 604 402 668 q 387 499 387 541 l 387 474 l 387 437 q 416 264 387 309 q 565 220 446 220 m 493 1013 l 493 1153 l 686 1153 l 686 1013 l 493 1013 m 789 1013 l 789 1153 l 982 1153 l 982 1013 l 789 1013 "},"z":{"x_min":74,"x_max":870,"ha":945,"o":"m 442 163 l 870 163 l 870 0 l 74 0 l 74 167 l 503 488 l 102 488 l 102 649 l 856 649 l 856 468 l 442 163 "},"™":{"x_min":29,"x_max":1822,"ha":1904,"o":"m 286 370 l 286 781 l 29 781 l 29 927 l 728 927 l 728 781 l 472 781 l 472 370 l 286 370 m 1647 371 l 1647 772 l 1402 371 l 1255 371 l 1014 772 l 1014 371 l 838 371 l 838 927 l 1125 927 l 1331 571 l 1537 927 l 1822 927 l 1822 371 l 1647 371 "},"ã":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 429 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 686 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 418 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 m 643 731 q 536 761 611 731 q 426 791 461 791 q 382 775 397 791 q 361 729 368 760 l 237 729 q 290 875 252 820 q 406 930 327 930 q 519 901 447 930 q 629 873 591 873 q 679 888 658 873 q 700 932 700 904 l 825 932 q 768 790 815 850 q 643 731 722 731 "},"æ":{"x_min":90,"x_max":1598,"ha":1676,"o":"m 1103 132 l 1226 132 q 1320 144 1284 132 q 1357 205 1357 156 l 1598 205 q 1486 24 1585 62 q 1212 -14 1388 -14 l 1141 -14 q 997 -7 1048 -14 q 896 15 946 -1 q 817 94 846 31 q 775 39 799 61 q 707 4 751 18 q 610 -10 663 -10 q 473 -10 557 -10 l 448 -10 l 427 -10 q 263 1 345 -10 q 135 60 181 13 q 90 197 90 107 q 139 358 90 306 q 294 410 188 410 l 427 410 l 541 410 q 655 401 620 410 q 728 345 690 393 l 728 421 q 698 495 728 477 q 606 513 667 513 l 483 513 q 416 511 438 513 q 383 502 394 509 q 369 488 373 495 q 363 467 366 481 l 117 467 q 195 622 117 583 q 406 662 273 662 l 546 662 q 621 662 584 662 q 709 657 657 662 q 797 632 760 652 q 853 560 834 611 q 959 645 895 627 q 1128 663 1024 663 l 1182 663 q 1523 594 1448 663 q 1598 379 1598 526 l 1598 275 l 962 275 q 990 160 962 189 q 1103 132 1019 132 m 1201 509 l 1163 509 q 993 486 1021 509 q 957 400 966 464 l 1358 400 q 1352 452 1358 432 q 1327 485 1346 472 q 1274 504 1307 499 q 1201 509 1241 509 m 512 137 l 549 137 q 606 137 577 137 q 663 141 635 137 q 709 159 692 145 q 727 200 727 173 q 702 254 727 234 q 614 275 678 275 l 444 275 q 358 257 383 275 q 333 210 333 240 q 364 151 333 166 q 446 137 395 137 l 512 137 "},"®":{"x_min":47,"x_max":1009,"ha":1058,"o":"m 747 589 q 663 457 747 494 q 734 354 724 432 q 752 205 744 276 l 608 205 q 591 323 591 233 q 477 414 591 414 l 477 205 l 326 205 l 326 735 l 551 735 q 691 701 635 735 q 747 589 747 668 m 520 500 q 597 576 597 500 q 525 643 597 643 l 477 643 l 477 500 l 520 500 m 531 -21 q 189 120 332 -21 q 47 462 47 262 q 188 804 47 662 q 531 946 330 946 q 868 802 728 946 q 1009 462 1009 659 q 869 121 1009 263 q 531 -21 729 -21 m 530 87 q 786 198 681 87 q 891 462 891 310 q 786 726 891 614 q 530 838 681 838 q 271 727 377 838 q 165 462 165 616 q 271 197 165 308 q 530 87 377 87 "},"É":{"x_min":121,"x_max":1154.390625,"ha":1242,"o":"m 1154 927 l 1154 716 l 403 716 l 403 557 l 1104 557 l 1104 374 l 403 374 l 403 210 l 1154 210 l 1154 0 l 121 0 l 121 927 l 1154 927 m 473 1010 l 439 1103 l 750 1256 l 804 1103 l 473 1010 "},"~":{"x_min":127.78125,"x_max":802.78125,"ha":926,"o":"m 347 1061 q 477 1024 390 1061 q 595 988 563 988 q 640 1009 622 988 q 677 1065 659 1031 l 802 958 q 702 793 754 835 q 586 752 651 752 q 461 787 550 752 q 334 823 373 823 q 289 801 308 823 q 252 746 270 779 l 127 852 q 229 1017 175 973 q 347 1061 283 1061 "},"³":{"x_min":74,"x_max":757,"ha":831,"o":"m 492 704 q 554 712 532 704 q 577 754 577 720 q 566 795 577 787 q 540 807 556 804 q 511 810 524 810 l 396 810 l 314 810 q 260 798 278 810 q 242 751 242 787 l 242 734 l 77 734 q 111 876 77 836 q 246 927 146 915 l 425 927 l 475 927 q 538 927 507 927 q 625 919 568 927 q 712 878 681 911 q 744 769 744 845 q 724 687 744 710 q 640 649 704 663 q 731 613 706 638 q 757 519 757 587 q 698 397 757 426 q 533 368 639 368 l 290 368 q 126 398 178 368 q 74 533 74 429 l 74 566 l 237 566 q 249 502 237 519 q 308 486 261 486 l 519 486 q 570 495 551 486 q 590 536 590 505 q 575 580 590 567 q 526 593 560 593 l 345 593 l 345 704 l 492 704 "},"¡":{"x_min":90,"x_max":366,"ha":454,"o":"m 90 649 l 366 649 l 366 390 l 90 390 l 90 649 m 101 270 l 361 270 l 361 -278 l 101 -278 l 101 270 "},"[":{"x_min":121,"x_max":571.5,"ha":590,"o":"m 359 742 l 359 -111 l 571 -111 l 571 -296 l 121 -296 l 121 927 l 571 927 l 571 742 l 359 742 "},"L":{"x_min":121,"x_max":1043.28125,"ha":1079,"o":"m 1043 232 l 1043 0 l 121 0 l 121 926 l 403 926 l 403 232 l 1043 232 "}," ":{"x_min":0,"x_max":0,"ha":347},"%":{"x_min":58,"x_max":1462,"ha":1508,"o":"m 421 929 q 606 888 558 929 q 654 711 654 848 l 654 670 q 617 503 654 546 q 427 460 581 460 l 270 460 q 103 499 148 460 q 58 659 58 539 l 58 697 q 94 882 58 836 q 266 929 131 929 l 421 929 m 358 580 q 484 595 460 580 q 508 694 508 610 q 489 790 508 765 q 402 815 470 815 l 312 815 q 260 812 276 815 q 230 801 244 810 q 210 772 216 792 q 204 712 204 752 l 204 695 q 219 601 204 623 q 301 580 234 580 l 358 580 m 438 0 l 310 0 l 1081 927 l 1209 927 l 438 0 m 1230 466 q 1415 423 1368 466 q 1462 249 1462 381 l 1462 201 q 1450 91 1462 136 q 1410 28 1439 46 q 1340 3 1381 11 q 1224 -4 1299 -4 l 1086 -4 q 916 29 967 -4 q 866 196 866 62 l 866 234 q 902 419 866 373 q 1074 466 939 466 l 1230 466 m 1166 117 l 1229 117 q 1302 139 1289 117 q 1316 224 1316 161 l 1316 264 q 1311 308 1316 290 q 1291 336 1306 326 q 1257 348 1275 345 q 1210 352 1238 352 l 1120 352 q 1068 349 1084 352 q 1038 338 1052 347 q 1018 309 1024 329 q 1012 249 1012 289 l 1012 232 q 1026 137 1012 158 q 1110 117 1041 117 l 1166 117 "},"P":{"x_min":121,"x_max":1243,"ha":1321,"o":"m 870 927 q 1161 858 1080 927 q 1243 585 1243 790 q 1179 310 1243 390 q 914 231 1116 231 l 842 231 l 403 231 l 403 0 l 121 0 l 121 927 l 870 927 m 958 575 q 924 677 958 653 q 808 702 891 702 l 403 702 l 403 456 l 812 456 q 925 478 892 456 q 958 575 958 501 "},"À":{"x_min":47.21875,"x_max":1450,"ha":1496,"o":"m 361 0 l 47 0 l 563 927 l 944 927 l 1450 0 l 1138 0 l 1051 168 l 452 168 l 361 0 m 551 360 l 948 360 l 750 726 l 551 360 m 897 1010 l 566 1103 l 620 1256 l 931 1103 l 897 1010 "},"_":{"x_min":0,"x_max":694,"ha":694,"o":"m 694 -221 l 0 -221 l 0 -68 l 694 -68 l 694 -221 "},"ñ":{"x_min":101,"x_max":983,"ha":1084,"o":"m 341 515 q 441 633 371 604 q 620 663 510 663 q 900 598 817 663 q 983 340 983 533 l 983 0 l 741 0 l 741 340 q 705 451 741 426 q 574 477 670 477 l 546 477 q 390 445 439 477 q 341 305 341 414 l 341 290 l 341 0 l 101 0 l 101 649 l 341 649 l 341 515 m 653 731 q 546 761 621 731 q 436 791 471 791 q 393 775 407 791 q 371 729 378 760 l 248 729 q 300 875 263 820 q 417 930 338 930 q 530 901 457 930 q 640 873 602 873 q 690 888 669 873 q 711 932 711 904 l 835 932 q 779 790 825 850 q 653 731 732 731 "},"+":{"x_min":6,"x_max":691,"ha":695,"o":"m 285 853 l 410 853 l 410 571 l 691 571 l 691 450 l 410 450 l 410 168 l 285 168 l 285 450 l 6 450 l 6 571 l 285 571 l 285 853 "},"‚":{"x_min":47.109375,"x_max":365,"ha":447,"o":"m 129 -247 l 108 -247 q 47 -242 76 -247 l 47 -98 l 76 -101 q 144 -75 124 -101 q 163 0 163 -49 l 86 0 l 86 259 l 365 259 l 365 0 q 314 -190 365 -134 q 129 -247 263 -247 "},"½":{"x_min":121.046875,"x_max":1893,"ha":1975,"o":"m 403 371 l 403 789 l 200 652 l 121 771 l 365 927 l 578 927 l 578 371 l 403 371 m 672 0 l 532 0 l 1302 927 l 1441 927 l 672 0 m 1225 0 l 1225 148 q 1233 228 1225 196 q 1279 287 1241 260 q 1436 315 1317 315 q 1625 315 1555 315 q 1712 325 1696 315 q 1728 375 1728 336 l 1728 387 q 1718 422 1725 412 q 1685 435 1711 432 q 1626 439 1659 439 q 1545 439 1586 439 q 1463 439 1504 439 q 1403 424 1420 439 q 1386 371 1386 409 l 1386 350 l 1225 350 l 1225 392 q 1272 531 1225 505 q 1434 557 1319 557 l 1641 557 q 1849 515 1806 557 q 1893 383 1893 474 q 1854 234 1893 276 q 1711 193 1816 193 l 1572 193 l 1454 193 q 1401 182 1417 193 q 1386 135 1386 171 l 1386 117 l 1893 117 l 1893 0 l 1225 0 "},"Æ":{"x_min":27.78125,"x_max":1988,"ha":2076,"o":"m 1940 557 l 1940 374 l 1239 374 l 1239 210 l 1988 210 l 1988 0 l 975 0 l 975 168 l 473 168 l 361 0 l 27 0 l 647 927 l 1988 927 l 1988 716 l 1239 716 l 1239 557 l 1940 557 m 829 716 l 593 357 l 975 357 l 975 716 l 829 716 "},"Ë":{"x_min":121,"x_max":1154.390625,"ha":1242,"o":"m 1154 927 l 1154 716 l 403 716 l 403 557 l 1104 557 l 1104 374 l 403 374 l 403 210 l 1154 210 l 1154 0 l 121 0 l 121 927 l 1154 927 m 377 1013 l 377 1153 l 570 1153 l 570 1013 l 377 1013 m 672 1013 l 672 1153 l 865 1153 l 865 1013 l 672 1013 "},"'":{"x_min":23.609375,"x_max":318.0625,"ha":343,"o":"m 23 926 l 318 926 l 268 555 l 73 555 l 23 926 "},"Š":{"x_min":101,"x_max":1264,"ha":1365,"o":"m 387 280 q 425 209 387 223 q 531 196 463 196 l 664 196 l 853 196 q 955 216 931 196 q 979 280 979 236 q 951 342 979 319 q 848 366 924 366 l 802 366 l 338 366 q 154 433 208 366 q 101 638 101 500 q 135 821 101 756 q 258 909 169 886 q 493 933 348 933 q 688 933 638 933 l 885 933 q 1075 914 1003 933 q 1177 845 1147 895 q 1215 755 1207 796 q 1224 645 1224 715 l 948 645 q 919 711 948 693 q 839 730 891 730 l 703 730 l 488 730 q 415 713 445 730 q 386 658 386 696 q 421 588 386 605 q 517 572 456 572 l 546 572 l 735 572 l 921 572 q 1182 514 1100 572 q 1264 286 1264 457 q 1190 57 1264 119 q 949 -4 1117 -4 l 588 -4 l 399 -4 q 178 44 249 -4 q 108 240 108 93 l 108 296 l 386 296 l 387 280 m 441 1248 l 685 1160 l 928 1248 l 960 1165 l 682 1006 l 403 1165 l 441 1248 "},"ª":{"x_min":22,"x_max":586,"ha":576,"o":"m 217 925 l 372 925 q 509 898 461 925 q 557 790 557 872 l 557 528 l 411 528 l 411 593 q 350 533 395 545 q 238 521 305 521 q 80 542 131 521 q 30 653 30 564 q 64 745 30 713 q 159 778 99 778 l 248 778 l 292 778 q 363 771 336 778 q 411 737 391 765 l 411 781 q 405 816 411 803 q 386 835 399 830 q 329 840 372 840 q 279 840 287 840 l 231 840 q 200 833 210 840 q 190 808 190 827 l 47 808 q 96 898 47 872 q 217 925 145 925 m 372 618 q 411 660 411 624 q 391 690 411 682 q 347 699 372 699 l 266 699 q 214 695 232 699 q 184 683 196 692 q 173 658 173 675 q 192 621 173 630 q 246 613 212 613 l 280 613 q 337 613 308 613 q 372 618 361 617 m 586 461 l 586 347 l 22 347 l 22 461 l 586 461 "},"Œ":{"x_min":104,"x_max":2086,"ha":2174,"o":"m 2039 557 l 2039 374 l 1337 374 l 1337 210 l 2086 210 l 2086 0 l 1075 0 l 1075 102 q 975 15 1037 38 q 827 -8 913 -8 l 622 -8 l 592 -8 q 371 4 498 -8 q 174 86 245 16 q 104 310 104 157 q 104 398 104 336 q 104 466 104 461 q 176 829 104 724 q 487 934 248 934 l 725 934 q 793 934 760 934 q 886 928 826 934 q 990 902 945 923 q 1075 821 1034 881 l 1075 926 l 2086 926 l 2086 716 l 1337 716 l 1337 557 l 2039 557 m 508 221 l 707 221 l 844 221 q 1035 262 999 221 q 1072 462 1072 304 l 1072 479 q 1072 543 1072 515 q 1065 606 1072 571 q 1042 661 1059 640 q 996 690 1026 682 q 940 698 967 698 q 879 698 913 698 l 719 698 l 529 698 q 411 650 437 689 q 386 502 386 610 l 386 463 l 386 434 q 406 283 386 334 q 508 221 427 232 "},"ð":{"x_min":33,"x_max":762,"ha":795,"o":"m 310 892 l 482 1006 l 528 932 l 406 856 q 672 642 583 764 q 762 332 762 521 q 655 78 762 178 q 391 -22 548 -22 q 133 82 234 -22 q 33 344 33 187 q 133 587 33 494 q 384 681 234 681 q 333 733 353 714 q 280 774 312 753 l 123 671 l 76 743 l 199 820 q 44 868 131 853 l 76 947 q 200 925 142 938 q 310 892 258 913 m 395 143 q 493 198 467 143 q 520 337 520 254 q 501 476 520 418 q 418 535 482 535 q 309 479 344 535 q 275 341 275 423 q 308 189 275 236 q 395 143 342 143 "},"T":{"x_min":36,"x_max":1144,"ha":1182,"o":"m 450 0 l 450 695 l 36 695 l 36 927 l 1144 927 l 1144 695 l 732 695 l 732 0 l 450 0 "},"š":{"x_min":83,"x_max":987,"ha":1070,"o":"m 664 509 q 624 516 645 516 q 574 516 603 516 l 470 516 q 425 516 446 516 q 382 512 404 516 q 344 494 359 508 q 330 459 330 480 q 352 422 330 430 q 410 414 374 414 l 675 414 q 909 382 831 414 q 987 219 987 350 q 964 89 987 135 q 879 17 942 42 q 729 -7 816 -7 q 541 -7 642 -7 l 439 -7 q 175 28 267 -7 q 83 200 83 63 l 334 200 q 366 145 334 155 q 423 135 399 135 q 481 135 447 135 l 595 135 q 663 137 632 135 q 719 151 693 140 q 745 200 745 161 q 721 240 745 231 q 660 250 697 250 l 479 250 l 274 250 q 87 450 87 266 q 154 606 87 565 q 350 659 222 647 l 585 659 q 706 659 666 659 q 816 647 746 659 q 920 593 885 635 q 955 472 955 552 l 701 472 q 664 509 697 502 m 293 980 l 538 892 l 781 980 l 813 896 l 535 738 l 256 896 l 293 980 "},"Þ":{"x_min":119,"x_max":1241,"ha":1320,"o":"m 401 815 l 896 815 q 1141 726 1042 815 q 1241 493 1241 638 q 1147 264 1241 347 q 904 181 1053 181 l 401 181 l 401 -1 l 119 -1 l 119 926 l 401 926 l 401 815 m 858 384 q 944 413 910 384 q 978 495 978 443 q 944 574 978 549 q 854 600 911 600 l 401 600 l 401 384 l 858 384 "},"j":{"x_min":45.5,"x_max":400,"ha":501,"o":"m 160 752 l 160 927 l 400 927 l 400 752 l 160 752 m 398 -43 q 333 -203 398 -158 q 146 -249 268 -249 q 45 -242 101 -249 l 45 -84 q 77 -89 62 -89 q 139 -66 120 -89 q 158 0 158 -44 l 158 649 l 398 649 l 398 33 l 398 -43 "},"1":{"x_min":185.890625,"x_max":923,"ha":1323,"o":"m 647 0 l 647 708 l 310 478 l 185 667 l 581 927 l 923 927 l 923 0 l 647 0 "},"›":{"x_min":83.328125,"x_max":455.5625,"ha":501,"o":"m 455 337 l 254 2 l 83 97 l 227 337 l 83 583 l 254 681 l 455 337 "},"ä":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 429 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 686 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 417 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 m 286 742 l 286 882 l 479 882 l 479 742 l 286 742 m 582 742 l 582 882 l 775 882 l 775 742 l 582 742 "},"<":{"x_min":46,"x_max":647,"ha":694,"o":"m 323 469 l 646 286 l 646 26 l 46 360 l 46 579 l 647 913 l 647 651 l 323 469 "},"£":{"x_min":65,"x_max":1258,"ha":1323,"o":"m 108 0 l 108 201 q 191 239 171 201 q 211 348 211 278 l 65 348 l 65 505 l 208 505 q 264 837 208 749 q 542 926 321 926 l 721 926 l 793 926 q 975 926 900 926 q 1118 902 1049 926 q 1213 815 1187 879 q 1240 650 1240 752 l 1240 610 l 979 610 q 944 703 979 681 q 833 726 910 726 l 683 726 q 606 726 635 726 q 540 717 577 726 q 487 685 503 709 q 472 623 472 662 l 472 545 l 472 505 l 858 505 l 858 348 l 475 348 q 454 258 475 283 q 367 204 433 233 l 1258 204 l 1258 0 l 108 0 "},"¹":{"x_min":121.046875,"x_max":578,"ha":831,"o":"m 403 371 l 403 789 l 200 654 l 121 771 l 365 927 l 578 927 l 578 371 l 403 371 "},"t":{"x_min":56,"x_max":819,"ha":907,"o":"m 427 489 l 427 281 q 447 191 427 217 q 528 165 467 165 q 606 183 582 165 q 631 252 631 201 l 631 281 l 819 281 q 764 47 819 109 q 531 -14 709 -14 q 246 40 313 -14 q 180 210 180 95 l 180 489 l 56 489 l 56 649 l 180 649 l 180 807 l 427 807 l 427 649 l 819 649 l 819 489 l 427 489 "},"¬":{"x_min":46.15625,"x_max":648,"ha":695,"o":"m 46 183 l 46 414 l 648 414 l 648 0 l 392 0 l 392 183 l 46 183 "},"ù":{"x_min":103,"x_max":992,"ha":1093,"o":"m 752 0 l 752 133 q 648 15 729 45 q 455 -14 567 -14 q 189 49 275 -14 q 103 287 103 112 l 103 648 l 343 648 l 343 309 q 388 190 343 216 q 537 165 434 165 q 701 201 650 165 q 752 344 752 238 l 752 363 l 752 649 l 992 649 l 992 0 l 752 0 m 696 724 l 365 817 l 419 970 l 731 817 l 696 724 "},"W":{"x_min":37.5,"x_max":1977.78125,"ha":2015,"o":"m 1212 0 l 1006 657 l 793 0 l 413 0 l 37 927 l 326 927 l 597 223 l 840 927 l 1180 927 l 1411 223 l 1690 927 l 1977 927 l 1595 0 l 1212 0 "},"ï":{"x_min":-24,"x_max":465,"ha":444,"o":"m 101 0 l 101 649 l 341 649 l 341 0 l 101 0 m -24 741 l -24 881 l 169 881 l 169 741 l -24 741 m 272 741 l 272 881 l 465 881 l 465 741 l 272 741 "},">":{"x_min":47,"x_max":648,"ha":694,"o":"m 370 469 l 47 653 l 47 913 l 648 579 l 648 360 l 47 26 l 47 287 l 370 469 "},"v":{"x_min":41.671875,"x_max":997.21875,"ha":1039,"o":"m 362 0 l 41 649 l 312 649 l 520 183 l 727 649 l 997 649 l 677 0 l 362 0 "},"û":{"x_min":103,"x_max":992,"ha":1093,"o":"m 752 0 l 752 133 q 648 15 729 45 q 455 -14 567 -14 q 189 49 275 -14 q 103 287 103 112 l 103 648 l 343 648 l 343 309 q 388 190 343 216 q 537 165 434 165 q 701 201 650 165 q 752 344 752 238 l 752 363 l 752 649 l 992 649 l 992 0 l 752 0 m 789 737 l 544 825 l 301 737 l 269 821 l 547 979 l 826 821 l 789 737 "},"Ò":{"x_min":104,"x_max":1372,"ha":1473,"o":"m 718 934 l 943 934 q 1281 851 1190 934 q 1372 523 1372 769 l 1372 478 q 1299 91 1372 189 q 934 -7 1227 -7 l 721 -7 l 632 -7 l 441 -7 q 192 68 280 -7 q 104 306 104 143 l 104 476 q 176 846 104 759 q 518 934 248 934 l 718 934 m 565 220 l 717 220 l 861 220 q 1033 245 981 220 q 1086 372 1086 271 l 1086 497 q 1078 605 1086 560 q 1047 671 1070 650 q 977 700 1023 693 q 877 707 930 707 l 597 707 q 452 687 502 707 q 394 604 402 668 q 387 499 387 541 l 387 474 l 387 437 q 416 264 387 309 q 565 220 446 220 m 885 1010 l 555 1103 l 609 1256 l 920 1103 l 885 1010 "},"&":{"x_min":85,"x_max":1402.609375,"ha":1425,"o":"m 1195 264 l 1402 156 l 1319 -9 l 1125 85 q 1007 18 1066 40 q 871 -3 948 -3 l 676 -3 l 437 -3 q 179 49 273 -3 q 85 253 85 101 q 122 453 85 401 q 297 521 159 504 q 211 597 229 558 q 193 720 193 635 q 247 879 193 831 q 411 928 302 928 l 634 928 l 868 928 q 1077 864 1029 928 q 1125 628 1125 801 l 883 628 l 885 644 q 878 692 885 672 q 855 721 871 713 q 825 733 840 730 q 796 736 811 736 l 605 736 q 561 736 581 736 q 507 731 540 736 q 460 713 474 726 q 447 679 447 700 q 492 618 447 641 q 551 587 537 594 l 972 373 q 978 430 978 399 q 978 469 978 450 q 972 495 973 487 l 1204 495 q 1204 367 1204 402 q 1195 264 1204 331 m 338 307 q 371 214 338 239 q 476 190 405 190 l 601 190 l 918 190 l 444 427 q 415 431 429 431 q 355 394 372 431 q 338 307 338 357 "},"Ð":{"x_min":0,"x_max":1360,"ha":1466,"o":"m 0 393 l 0 560 l 121 560 l 121 927 l 940 927 q 1251 866 1143 927 q 1360 625 1360 806 l 1360 457 l 1360 416 l 1360 395 q 1357 307 1360 332 q 1342 202 1355 283 q 1247 61 1329 122 q 1042 0 1165 0 l 121 0 l 121 393 l 0 393 m 1079 459 l 1079 468 q 1047 651 1079 603 q 884 699 1015 699 l 403 699 l 403 560 l 656 560 l 656 393 l 403 393 l 403 225 l 880 225 q 1044 275 1010 225 q 1079 459 1079 325 "},"I":{"x_min":121,"x_max":403,"ha":524,"o":"m 121 0 l 121 927 l 403 927 l 403 0 l 121 0 "},"G":{"x_min":104,"x_max":1311,"ha":1412,"o":"m 1311 523 l 1311 328 q 1252 74 1311 157 q 1023 -8 1193 -8 l 876 -8 l 708 -8 l 562 -8 q 308 13 402 -8 q 159 109 214 35 q 104 335 104 184 l 104 452 q 170 829 104 724 q 483 934 237 934 l 694 934 l 772 934 l 960 934 q 1226 870 1144 934 q 1309 625 1309 806 l 1309 608 l 1033 608 q 1023 665 1033 642 q 987 699 1013 689 q 936 710 960 708 q 866 713 912 713 l 539 713 q 413 664 439 713 q 387 500 387 615 l 387 413 q 413 271 387 317 q 488 218 439 224 q 563 212 536 212 q 629 212 589 212 l 880 212 q 992 235 951 212 q 1033 322 1033 258 l 1033 349 l 676 349 l 676 523 l 1311 523 "},"`":{"x_min":165.28125,"x_max":530.5625,"ha":694,"o":"m 495 724 l 165 817 l 219 970 l 530 817 l 495 724 "},"·":{"x_min":65,"x_max":314,"ha":379,"o":"m 65 217 l 65 474 l 314 474 l 314 217 l 65 217 "},"r":{"x_min":101,"x_max":859,"ha":915,"o":"m 341 520 q 431 633 367 603 q 595 663 496 663 q 802 610 745 663 q 859 410 859 557 l 859 368 l 635 368 q 634 383 634 372 q 599 466 628 449 q 495 484 571 484 q 374 437 407 484 q 341 296 341 390 l 341 0 l 101 0 l 101 649 l 341 649 l 341 520 "},"¿":{"x_min":57,"x_max":994,"ha":1105,"o":"m 718 648 l 718 389 l 442 389 l 442 648 l 718 648 m 400 66 q 322 39 354 59 q 290 -23 290 18 q 329 -88 290 -68 q 416 -108 368 -108 l 508 -108 l 630 -108 q 724 -84 695 -108 q 754 0 754 -60 q 751 38 754 26 l 994 38 l 994 -5 q 973 -162 994 -99 q 888 -253 952 -225 q 733 -281 824 -281 q 528 -281 641 -281 q 385 -281 452 -281 q 231 -269 319 -281 q 100 -197 144 -258 q 57 -24 57 -135 l 57 4 q 64 102 57 64 q 107 179 72 141 q 301 245 142 218 q 460 320 460 272 l 698 320 q 645 126 698 161 q 400 66 592 92 "},"ý":{"x_min":51.5625,"x_max":984.890625,"ha":1031,"o":"m 336 -292 l 246 -292 l 246 -127 l 298 -127 q 391 -101 366 -127 q 447 0 416 -75 l 348 0 l 51 648 l 318 648 l 508 170 l 718 649 l 984 649 l 604 -158 q 506 -269 562 -246 q 336 -292 450 -292 m 368 724 l 333 817 l 644 970 l 698 817 l 368 724 "},"x":{"x_min":41.671875,"x_max":990.28125,"ha":1032,"o":"m 990 0 l 680 0 l 512 233 l 343 0 l 41 0 l 329 341 l 59 649 l 380 649 l 508 473 l 647 649 l 959 649 l 698 350 l 990 0 "},"è":{"x_min":83,"x_max":964,"ha":1045,"o":"m 602 -10 l 370 -10 q 143 75 203 -10 q 83 341 83 161 q 146 583 83 507 q 368 660 210 660 l 596 660 q 766 648 699 660 q 883 597 834 637 q 948 498 932 557 q 964 363 964 439 q 964 326 964 347 q 964 279 964 305 l 327 279 q 355 170 327 202 q 458 139 383 139 l 594 139 q 671 144 640 139 q 712 163 702 149 q 723 212 723 176 l 963 212 q 869 29 963 69 q 602 -10 775 -10 m 488 518 q 369 502 412 518 q 326 422 326 486 l 326 404 l 726 404 q 691 496 726 474 q 578 518 656 518 l 488 518 m 671 723 l 341 817 l 395 969 l 706 817 l 671 723 "},"º":{"x_min":18,"x_max":586,"ha":604,"o":"m 285 925 q 371 925 310 925 q 436 925 431 925 q 544 874 513 915 q 576 751 576 834 l 576 714 q 564 609 576 649 q 521 551 553 568 q 461 529 489 535 q 403 523 432 523 q 325 523 364 523 q 247 523 285 523 q 70 556 123 523 q 18 704 18 590 l 18 728 l 18 735 q 73 895 18 865 q 285 925 129 925 m 295 629 q 366 631 339 629 q 407 645 392 634 q 426 671 423 656 q 430 711 430 686 l 430 741 q 426 778 430 763 q 407 803 423 793 q 361 817 392 814 q 292 821 330 821 q 229 816 258 821 q 185 800 200 812 q 167 769 170 789 q 164 723 164 750 q 167 677 164 697 q 184 647 170 656 q 222 633 197 637 q 295 629 248 629 m 586 461 l 586 347 l 22 347 l 22 461 l 586 461 "},"Ø":{"x_min":35,"x_max":1439,"ha":1474,"o":"m 1439 777 l 1353 726 l 1363 685 q 1370 605 1370 653 q 1370 480 1370 558 q 1297 92 1370 192 q 934 -7 1225 -7 l 720 -7 l 473 -7 q 322 9 391 -7 q 202 69 252 26 l 35 -27 l 35 141 l 123 193 q 107 256 112 220 q 103 326 103 291 l 103 347 l 103 475 q 174 846 103 760 q 518 933 246 933 l 717 933 l 943 933 q 1057 933 1037 933 q 1148 923 1076 933 q 1279 857 1219 913 l 1439 951 l 1439 777 m 598 706 q 499 700 541 706 q 430 669 458 694 q 394 605 402 644 q 386 509 386 566 q 386 432 386 469 q 391 351 386 395 l 392 345 l 996 697 q 930 706 964 706 q 844 706 896 706 l 598 706 m 533 218 l 715 218 l 840 218 q 1040 254 996 218 q 1085 437 1085 290 l 1085 575 l 484 227 l 533 218 "},"÷":{"x_min":4,"x_max":689,"ha":695,"o":"m 689 450 l 4 450 l 4 570 l 689 570 l 689 450 m 347 654 q 284 680 310 654 q 258 743 258 706 q 284 805 258 779 q 347 832 310 832 q 409 805 383 832 q 436 743 436 779 q 409 680 436 706 q 347 654 383 654 m 345 188 q 283 214 309 188 q 257 277 257 240 q 283 339 257 313 q 345 366 309 366 q 409 339 383 366 q 436 277 436 313 q 409 214 436 240 q 345 188 383 188 "},"h":{"x_min":103,"x_max":986,"ha":1087,"o":"m 616 663 q 894 601 802 663 q 986 362 986 540 l 986 0 l 746 0 l 746 324 q 720 452 746 421 q 568 484 694 484 l 552 484 q 390 453 438 484 q 343 321 343 422 l 343 269 l 343 0 l 103 0 l 103 927 l 343 927 l 343 538 q 443 640 379 618 q 616 663 508 663 "},".":{"x_min":92,"x_max":368,"ha":461,"o":"m 92 0 l 92 259 l 368 259 l 368 0 l 92 0 "},";":{"x_min":47.109375,"x_max":365,"ha":447,"o":"m 89 391 l 89 650 l 365 650 l 365 391 l 89 391 m 129 -247 l 108 -247 q 47 -242 76 -247 l 47 -98 l 76 -101 q 144 -75 124 -101 q 163 0 163 -49 l 86 0 l 86 259 l 365 259 l 365 0 q 314 -190 365 -134 q 129 -247 263 -247 "},"f":{"x_min":65,"x_max":676,"ha":718,"o":"m 433 489 l 433 0 l 191 0 l 191 489 l 65 489 l 65 649 l 192 649 q 260 885 192 825 q 506 945 329 945 q 594 945 538 945 q 661 945 650 945 l 661 787 l 566 787 q 497 780 520 787 q 459 760 475 773 q 438 727 444 747 q 432 665 432 708 l 433 649 l 676 649 l 676 489 l 433 489 "},"“":{"x_min":76,"x_max":768.890625,"ha":816,"o":"m 691 929 q 729 929 710 929 q 768 924 748 929 l 768 779 l 739 782 q 671 756 691 782 q 652 680 652 730 l 730 680 l 730 423 l 451 423 l 451 680 q 503 874 451 819 q 691 929 555 929 m 316 929 q 354 929 335 929 q 393 924 373 929 l 393 779 l 364 782 q 296 756 316 782 q 277 680 277 730 l 355 680 l 355 423 l 76 423 l 76 680 q 128 874 76 819 q 316 929 180 929 "},"A":{"x_min":47.21875,"x_max":1450,"ha":1496,"o":"m 361 0 l 47 0 l 563 927 l 944 927 l 1450 0 l 1138 0 l 1051 168 l 452 168 l 361 0 m 551 360 l 948 360 l 750 726 l 551 360 "},"6":{"x_min":121,"x_max":1210,"ha":1324,"o":"m 798 740 l 716 740 l 555 740 q 463 735 494 740 q 414 706 433 730 q 390 656 395 682 q 386 597 386 630 l 386 563 l 386 481 q 482 565 417 548 q 652 583 547 583 l 845 583 q 997 574 932 583 q 1118 541 1062 566 q 1191 454 1173 516 q 1210 312 1210 391 q 1133 56 1210 117 q 848 -4 1056 -4 l 559 -4 q 332 13 408 -4 q 203 72 257 31 q 134 184 148 113 q 121 371 121 255 l 121 571 q 121 625 121 599 q 130 731 121 652 q 227 866 140 810 q 449 922 315 922 q 555 929 505 929 q 672 929 605 929 q 861 929 792 929 q 1024 917 930 929 q 1153 843 1117 905 q 1190 667 1190 781 l 934 667 q 890 725 927 711 q 798 740 852 740 m 797 186 q 909 206 873 186 q 946 296 946 226 q 914 370 946 349 q 830 391 883 391 l 695 391 l 518 391 q 417 372 451 391 q 384 293 384 354 q 422 204 384 223 q 540 186 459 186 l 797 186 "},"‘":{"x_min":76,"x_max":393.875,"ha":441,"o":"m 316 929 q 354 929 335 929 q 393 924 373 929 l 393 779 l 364 782 q 296 756 316 782 q 277 680 277 730 l 355 680 l 355 423 l 76 423 l 76 680 q 128 874 76 819 q 316 929 180 929 "},"O":{"x_min":104,"x_max":1372,"ha":1473,"o":"m 718 934 l 943 934 q 1281 851 1190 934 q 1372 523 1372 769 l 1372 478 q 1299 91 1372 189 q 934 -7 1227 -7 l 721 -7 l 632 -7 l 441 -7 q 192 68 280 -7 q 104 306 104 143 l 104 476 q 176 846 104 759 q 518 934 248 934 l 718 934 m 565 220 l 717 220 l 861 220 q 1033 245 981 220 q 1086 372 1086 271 l 1086 497 q 1078 605 1086 560 q 1047 671 1070 650 q 977 700 1023 693 q 877 707 930 707 l 597 707 q 452 687 502 707 q 394 604 402 668 q 387 499 387 541 l 387 474 l 387 437 q 416 264 387 309 q 565 220 446 220 "},"n":{"x_min":101,"x_max":983,"ha":1084,"o":"m 341 515 q 441 633 371 604 q 620 663 510 663 q 900 598 817 663 q 983 340 983 533 l 983 0 l 741 0 l 741 340 q 705 451 741 426 q 574 477 670 477 l 546 477 q 390 445 439 477 q 341 305 341 414 l 341 290 l 341 0 l 101 0 l 101 649 l 341 649 l 341 515 "},"3":{"x_min":108,"x_max":1218,"ha":1324,"o":"m 738 553 l 786 553 q 895 565 860 553 q 931 634 931 578 q 906 719 931 699 q 796 740 881 740 l 784 740 l 630 740 l 496 740 q 404 718 435 740 q 373 637 373 696 l 373 612 l 112 612 q 165 843 112 779 q 333 918 218 908 q 501 929 448 929 q 639 929 555 929 l 677 929 l 892 929 q 1122 875 1050 929 q 1194 667 1194 821 q 1188 592 1194 623 q 1164 533 1182 561 q 1094 486 1145 504 q 1008 462 1033 469 q 1173 407 1128 448 q 1218 247 1218 366 q 1149 60 1218 125 q 855 -4 1080 -4 l 636 -4 l 459 -4 q 191 46 275 -4 q 108 270 108 97 l 108 320 l 364 320 q 388 216 364 247 q 485 186 413 186 l 646 186 l 802 186 l 833 186 q 921 203 888 186 q 954 273 954 221 q 927 352 954 331 q 841 374 901 374 l 772 374 l 551 374 l 551 553 l 738 553 "},"9":{"x_min":111,"x_max":1208,"ha":1323,"o":"m 501 187 l 642 187 l 800 187 q 909 214 878 187 q 941 310 941 241 l 941 429 q 857 364 909 380 q 730 349 804 349 l 507 349 q 216 403 305 349 q 127 649 127 458 q 208 871 127 814 q 464 929 289 929 l 776 929 q 890 929 852 929 q 1000 916 928 929 q 1125 865 1072 903 q 1192 760 1177 827 q 1208 640 1208 693 q 1208 511 1208 586 l 1208 440 q 1144 90 1208 181 q 831 -1 1081 -1 l 642 -1 l 364 -1 q 172 56 234 10 q 111 225 111 102 l 111 262 l 374 262 q 410 201 374 216 q 501 187 446 187 m 674 538 l 800 538 q 909 555 868 538 q 949 632 949 572 q 925 714 949 689 q 843 739 900 739 l 781 739 l 638 739 l 530 739 q 418 714 446 739 q 390 644 390 690 q 428 554 390 570 q 553 538 466 538 l 674 538 "},"l":{"x_min":101,"x_max":341,"ha":444,"o":"m 101 0 l 101 927 l 341 927 l 341 0 l 101 0 "},"¤":{"x_min":43,"x_max":969,"ha":1012,"o":"m 143 472 q 156 561 143 516 q 192 650 169 605 l 44 799 l 179 934 l 330 782 q 421 815 373 803 q 514 827 469 827 q 595 816 557 827 q 678 783 632 806 l 828 932 l 962 797 l 817 652 q 855 564 841 611 q 869 471 869 518 q 857 382 869 423 q 824 294 846 340 l 969 150 l 835 15 l 692 158 q 502 107 602 107 q 412 119 455 107 q 320 158 370 132 l 176 16 l 43 148 l 187 294 q 143 472 143 380 m 506 335 q 602 375 563 335 q 641 471 641 415 q 602 566 641 526 q 506 607 563 607 q 412 566 452 607 q 372 471 372 526 q 410 375 372 415 q 506 335 449 335 "},"4":{"x_min":93.5,"x_max":1239,"ha":1324,"o":"m 1239 373 l 1239 185 l 1089 185 l 1089 0 l 831 0 l 831 185 l 93 185 l 93 509 l 762 927 l 1089 927 l 1089 373 l 1239 373 m 286 373 l 831 373 l 831 719 l 286 373 "},"p":{"x_min":101,"x_max":1030,"ha":1115,"o":"m 341 544 q 372 600 354 576 q 427 637 391 624 q 513 657 463 651 q 632 663 564 663 q 936 615 843 663 q 1030 378 1030 567 l 1030 298 q 1020 165 1030 219 q 966 63 1010 111 q 838 0 923 15 q 635 -14 754 -14 q 451 8 525 -14 q 341 109 377 31 l 341 -288 l 101 -288 l 101 649 l 341 649 l 341 544 m 595 167 q 751 196 715 167 q 788 340 788 226 q 761 450 788 419 q 653 482 735 482 l 495 482 q 418 476 443 482 q 375 457 393 470 q 349 415 356 443 q 342 350 342 387 l 342 325 q 368 203 342 240 q 475 167 395 167 l 595 167 "},"‡":{"x_min":132,"x_max":1192,"ha":1324,"o":"m 1192 654 l 1192 476 l 787 476 l 787 166 l 1192 166 l 1192 -12 l 787 -12 l 787 -300 l 536 -300 l 536 -12 l 132 -12 l 132 166 l 536 166 l 536 476 l 132 476 l 132 654 l 536 654 l 536 927 l 787 927 l 787 654 l 1192 654 "},"à":{"x_min":83,"x_max":960,"ha":1061,"o":"m 395 660 l 647 660 q 878 615 797 660 q 960 435 960 571 l 960 0 l 718 0 l 718 105 q 617 6 690 27 q 429 -14 544 -14 l 384 -14 q 155 25 228 -14 q 83 206 83 64 q 139 361 83 309 q 298 414 195 414 q 408 414 352 414 l 445 414 l 516 414 q 638 402 590 414 q 718 347 686 391 l 718 418 q 693 497 718 477 q 608 518 668 518 l 497 518 l 418 518 q 366 507 383 518 q 350 465 350 497 l 111 465 q 190 619 111 578 q 395 660 270 660 m 486 139 l 507 139 q 636 146 586 139 q 702 169 687 154 q 718 217 718 185 q 686 269 718 256 q 611 283 655 283 l 473 283 q 365 271 409 283 q 321 213 321 259 q 355 153 321 167 q 445 139 390 139 l 486 139 m 679 723 l 348 817 l 402 969 l 713 817 l 679 723 "},"Ü":{"x_min":119,"x_max":1309,"ha":1430,"o":"m 1309 397 l 1309 343 q 1195 57 1309 126 q 846 -11 1082 -11 l 616 -11 q 335 8 432 -11 q 178 107 238 27 q 119 356 119 186 l 119 926 l 401 926 l 401 440 q 434 259 401 301 q 602 217 467 217 l 728 217 l 845 217 q 993 253 960 217 q 1026 400 1026 290 l 1026 435 l 1026 926 l 1309 926 l 1309 397 m 469 1014 l 469 1154 l 662 1154 l 662 1014 l 469 1014 m 765 1014 l 765 1154 l 958 1154 l 958 1014 l 765 1014 "},"ó":{"x_min":90,"x_max":1019.0625,"ha":1095,"o":"m 535 656 l 787 656 q 968 575 917 640 q 1019 372 1019 510 l 1019 344 q 974 76 1019 144 q 732 -11 930 7 l 469 -11 q 174 43 258 -11 q 90 294 90 97 l 90 333 q 112 528 90 457 q 210 627 134 599 q 385 656 285 656 q 535 656 484 656 m 539 168 l 566 168 q 673 172 632 168 q 736 192 714 176 q 766 231 757 207 q 776 305 776 255 l 776 353 q 767 418 776 397 q 735 456 759 440 q 662 478 712 473 q 548 484 612 484 q 439 477 484 484 q 368 448 395 471 q 337 384 341 426 q 333 318 333 342 q 340 240 333 276 q 370 186 346 204 q 454 168 394 168 q 539 168 514 168 m 406 724 l 371 817 l 682 970 l 737 817 l 406 724 "}},"cssFontWeight":"bold","ascender":1042,"underlinePosition":-104,"cssFontStyle":"normal","boundingBox":{"yMin":-307,"xMin":-169.4375,"yMax":1256.796875,"xMax":2139},"resolution":1000,"original_font_information":{"postscript_name":"EurostileExtended-Black","version_string":"Version 1","vendor_url":"","full_font_name":"Eurostile Extended Black","font_family_name":"Eurostile Extended","copyright":"Copyright (c) 1991 Digital Typeface Corp.","description":"","trademark":"","designer":"","designer_url":"","unique_font_identifier":"5016042","license_url":"","license_description":"","manufacturer_name":"","font_sub_family_name":"Bold"},"descender":-348,"familyName":"Eurostile Extended","lineHeight":1389,"underlineThickness":110});;(function($){var EYE=window.EYE=function(){var _registered={init:[]};return{init:function(){$.each(_registered.init,function(nr,fn){fn.call();});},extend:function(prop){for(var i in prop){if(prop[i]!=undefined){this[i]=prop[i];}}},register:function(fn,type){if(!_registered[type]){_registered[type]=[];}
_registered[type].push(fn);}};}();$(EYE.init);})(jQuery);;(function($){EYE.extend({spacegallery:{defaults:{border:6,perspective:140,minScale:0.2,duration:800,loadingClass:null,before:function(){return false},after:function(){return false}},animated:false,positionImages:function(el){var top=0;EYE.spacegallery.animated=false;$(el).find('a').removeClass(el.spacegalleryCfg.loadingClass).end().find('img').removeAttr('height').each(function(nr){var newWidth=this.spacegallery.origWidth-(this.spacegallery.origWidth-this.spacegallery.origWidth*el.spacegalleryCfg.minScale)*el.spacegalleryCfg.asins[nr];$(this).css({top:el.spacegalleryCfg.tops[nr]+'px',marginLeft:-parseInt((newWidth+el.spacegalleryCfg.border)/2,10)+'px',opacity:1-el.spacegalleryCfg.asins[nr]}).attr('width',parseInt(newWidth));this.spacegallery.next=el.spacegalleryCfg.asins[nr+1];this.spacegallery.nextTop=el.spacegalleryCfg.tops[nr+1]-el.spacegalleryCfg.tops[nr];this.spacegallery.origTop=el.spacegalleryCfg.tops[nr];this.spacegallery.opacity=1-el.spacegalleryCfg.asins[nr];this.spacegallery.increment=el.spacegalleryCfg.asins[nr]-this.spacegallery.next;this.spacegallery.current=el.spacegalleryCfg.asins[nr];this.spacegallery.width=newWidth;})},next:function(e){if(EYE.spacegallery.animated===false){EYE.spacegallery.animated=true;var el=this.parentNode;el.spacegalleryCfg.before.apply(el);$(el).css('spacegallery',0).animate({spacegallery:100},{easing:'easeOut',duration:el.spacegalleryCfg.duration,complete:function(){$(el).find('img:last').prependTo(el);EYE.spacegallery.positionImages(el);el.spacegalleryCfg.after.apply(el);},step:function(now){$('img',this).each(function(nr){var newWidth,top,next;if(nr+1==el.spacegalleryCfg.images){top=this.spacegallery.origTop+this.spacegallery.nextTop*4*now/100;newWidth=this.spacegallery.width*top/this.spacegallery.origTop;$(this).css({top:top+'px',opacity:0.7-now/100,marginLeft:-parseInt((newWidth+el.spacegalleryCfg.border)/2,10)+'px'}).attr('width',newWidth);}else{next=this.spacegallery.current-this.spacegallery.increment*now/100;newWidth=this.spacegallery.origWidth-(this.spacegallery.origWidth-this.spacegallery.origWidth*el.spacegalleryCfg.minScale)*next;$(this).css({top:this.spacegallery.origTop+this.spacegallery.nextTop*now/100+'px',opacity:1-next,marginLeft:-parseInt((newWidth+el.spacegalleryCfg.border)/2,10)+'px'}).attr('width',newWidth);}});}});}
this.blur();return false;},init:function(opt){opt=$.extend({},EYE.spacegallery.defaults,opt||{});return this.each(function(){var el=this;if($(el).is('.spacegallery')){$('<a href="#" title="Click to see next image"></a>').appendTo(this).addClass(opt.loadingClass).bind('click',EYE.spacegallery.next);el.spacegalleryCfg=opt;el.spacegalleryCfg.images=el.getElementsByTagName('img').length;el.spacegalleryCfg.loaded=0;el.spacegalleryCfg.asin=Math.asin(1);el.spacegalleryCfg.asins={};el.spacegalleryCfg.tops={};el.spacegalleryCfg.increment=parseInt(el.spacegalleryCfg.perspective/el.spacegalleryCfg.images,10);var top=0;$('img',el).each(function(nr){var imgEl=new Image();var elImg=this;el.spacegalleryCfg.asins[nr]=1-Math.asin((nr+1)/el.spacegalleryCfg.images)/el.spacegalleryCfg.asin;top+=el.spacegalleryCfg.increment-el.spacegalleryCfg.increment*el.spacegalleryCfg.asins[nr];el.spacegalleryCfg.tops[nr]=top;elImg.spacegallery={};imgEl.src=this.src;if(imgEl.complete){el.spacegalleryCfg.loaded++;elImg.spacegallery.origWidth=imgEl.width;elImg.spacegallery.origHeight=imgEl.height}else{imgEl.onload=function(){el.spacegalleryCfg.loaded++;elImg.spacegallery.origWidth=imgEl.width;elImg.spacegallery.origHeight=imgEl.height
if(el.spacegalleryCfg.loaded==el.spacegalleryCfg.images){EYE.spacegallery.positionImages(el);}};}});el.spacegalleryCfg.asins[el.spacegalleryCfg.images]=el.spacegalleryCfg.asins[el.spacegalleryCfg.images-1]*1.3;el.spacegalleryCfg.tops[el.spacegalleryCfg.images]=el.spacegalleryCfg.tops[el.spacegalleryCfg.images-1]*1.3;if(el.spacegalleryCfg.loaded==el.spacegalleryCfg.images){EYE.spacegallery.positionImages(el);}}});}}});$.fn.extend({spacegallery:EYE.spacegallery.init});$.extend($.easing,{easeOut:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;}});})(jQuery);
