var Prototype={Version:'1.6.0.2',Browser:{IE:!!(window.attachEvent&&!window.opera),Opera:!!window.opera,WebKit:navigator.userAgent.indexOf('AppleWebKit/')>-1,Gecko:navigator.userAgent.indexOf('Gecko')>-1&&navigator.userAgent.indexOf('KHTML')==-1,MobileSafari:!!navigator.userAgent.match(/Apple.*Mobile.*Safari/)},BrowserFeatures:{XPath:!!document.evaluate,ElementExtensions:!!window.HTMLElement,SpecificElementExtensions:document.createElement('div').__proto__&&document.createElement('div').__proto__!==document.createElement('form').__proto__},ScriptFragment:'<script[^>]*>([\\S\\s]*?)<\/script>',JSONFilter:/^\/\*-secure-([\s\S]*)\*\/\s*$/,emptyFunction:function(){},K:function(x){return x}};if(Prototype.Browser.MobileSafari)Prototype.BrowserFeatures.SpecificElementExtensions=false;var Class={create:function(){var parent=null,properties=$A(arguments);if(Object.isFunction(properties[0]))parent=properties.shift();function klass(){this.initialize.apply(this,arguments)}Object.extend(klass,Class.Methods);klass.superclass=parent;klass.subclasses=[];if(parent){var subclass=function(){};subclass.prototype=parent.prototype;klass.prototype=new subclass;parent.subclasses.push(klass)}for(var i=0;i<properties.length;i++)klass.addMethods(properties[i]);if(!klass.prototype.initialize)klass.prototype.initialize=Prototype.emptyFunction;klass.prototype.constructor=klass;return klass}};Class.Methods={addMethods:function(source){var ancestor=this.superclass&&this.superclass.prototype;var properties=Object.keys(source);if(!Object.keys({toString:true}).length)properties.push("toString","valueOf");for(var i=0,length=properties.length;i<length;i++){var property=properties[i],value=source[property];if(ancestor&&Object.isFunction(value)&&value.argumentNames().first()=="$super"){var method=value,value=Object.extend((function(m){return function(){return ancestor[m].apply(this,arguments)}})(property).wrap(method),{valueOf:function(){return method},toString:function(){return method.toString()}})}this.prototype[property]=value}return this}};var Abstract={};Object.extend=function(destination,source){for(var property in source)destination[property]=source[property];return destination};Object.extend(Object,{inspect:function(object){try{if(Object.isUndefined(object))return'undefined';if(object===null)return'null';return object.inspect?object.inspect():String(object)}catch(e){if(e instanceof RangeError)return'...';throw e}},toJSON:function(object){var type=typeof object;switch(type){case'undefined':case'function':case'unknown':return;case'boolean':return object.toString()}if(object===null)return'null';if(object.toJSON)return object.toJSON();if(Object.isElement(object))return;var results=[];for(var property in object){var value=Object.toJSON(object[property]);if(!Object.isUndefined(value))results.push(property.toJSON()+': '+value)}return'{'+results.join(', ')+'}'},toQueryString:function(object){return $H(object).toQueryString()},toHTML:function(object){return object&&object.toHTML?object.toHTML():String.interpret(object)},keys:function(object){var keys=[];for(var property in object)keys.push(property);return keys},values:function(object){var values=[];for(var property in object)values.push(object[property]);return values},clone:function(object){return Object.extend({},object)},isElement:function(object){return object&&object.nodeType==1},isArray:function(object){return object!=null&&typeof object=="object"&&'splice'in object&&'join'in object},isHash:function(object){return object instanceof Hash},isFunction:function(object){return typeof object=="function"},isString:function(object){return typeof object=="string"},isNumber:function(object){return typeof object=="number"},isUndefined:function(object){return typeof object=="undefined"}});Object.extend(Function.prototype,{argumentNames:function(){var names=this.toString().match(/^[\s\(]*function[^(]*\((.*?)\)/)[1].split(",").invoke("strip");return names.length==1&&!names[0]?[]:names},bind:function(){if(arguments.length<2&&Object.isUndefined(arguments[0]))return this;var __method=this,args=$A(arguments),object=args.shift();return function(){return __method.apply(object,args.concat($A(arguments)))}},bindAsEventListener:function(){var __method=this,args=$A(arguments),object=args.shift();return function(event){return __method.apply(object,[event||window.event].concat(args))}},curry:function(){if(!arguments.length)return this;var __method=this,args=$A(arguments);return function(){return __method.apply(this,args.concat($A(arguments)))}},delay:function(){var __method=this,args=$A(arguments),timeout=args.shift()*1000;return window.setTimeout(function(){return __method.apply(__method,args)},timeout)},wrap:function(wrapper){var __method=this;return function(){return wrapper.apply(this,[__method.bind(this)].concat($A(arguments)))}},methodize:function(){if(this._methodized)return this._methodized;var __method=this;return this._methodized=function(){return __method.apply(null,[this].concat($A(arguments)))}}});Function.prototype.defer=Function.prototype.delay.curry(0.01);Date.prototype.toJSON=function(){return'"'+this.getUTCFullYear()+'-'+(this.getUTCMonth()+1).toPaddedString(2)+'-'+this.getUTCDate().toPaddedString(2)+'T'+this.getUTCHours().toPaddedString(2)+':'+this.getUTCMinutes().toPaddedString(2)+':'+this.getUTCSeconds().toPaddedString(2)+'Z"'};var Try={these:function(){var returnValue;for(var i=0,length=arguments.length;i<length;i++){var lambda=arguments[i];try{returnValue=lambda();break}catch(e){}}return returnValue}};RegExp.prototype.match=RegExp.prototype.test;RegExp.escape=function(str){return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g,'\\$1')};var PeriodicalExecuter=Class.create({initialize:function(callback,frequency){this.callback=callback;this.frequency=frequency;this.currentlyExecuting=false;this.registerCallback()},registerCallback:function(){this.timer=setInterval(this.onTimerEvent.bind(this),this.frequency*1000)},execute:function(){this.callback(this)},stop:function(){if(!this.timer)return;clearInterval(this.timer);this.timer=null},onTimerEvent:function(){if(!this.currentlyExecuting){try{this.currentlyExecuting=true;this.execute()}finally{this.currentlyExecuting=false}}}});Object.extend(String,{interpret:function(value){return value==null?'':String(value)},specialChar:{'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','\\':'\\\\'}});Object.extend(String.prototype,{gsub:function(pattern,replacement){var result='',source=this,match;replacement=arguments.callee.prepareReplacement(replacement);while(source.length>0){if(match=source.match(pattern)){result+=source.slice(0,match.index);result+=String.interpret(replacement(match));source=source.slice(match.index+match[0].length)}else{result+=source,source=''}}return result},sub:function(pattern,replacement,count){replacement=this.gsub.prepareReplacement(replacement);count=Object.isUndefined(count)?1:count;return this.gsub(pattern,function(match){if(--count<0)return match[0];return replacement(match)})},scan:function(pattern,iterator){this.gsub(pattern,iterator);return String(this)},truncate:function(length,truncation){length=length||30;truncation=Object.isUndefined(truncation)?'...':truncation;return this.length>length?this.slice(0,length-truncation.length)+truncation:String(this)},strip:function(){return this.replace(/^\s+/,'').replace(/\s+$/,'')},stripTags:function(){return this.replace(/<\/?[^>]+>/gi,'')},stripScripts:function(){return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'')},extractScripts:function(){var matchAll=new RegExp(Prototype.ScriptFragment,'img');var matchOne=new RegExp(Prototype.ScriptFragment,'im');return(this.match(matchAll)||[]).map(function(scriptTag){return(scriptTag.match(matchOne)||['',''])[1]})},evalScripts:function(){return this.extractScripts().map(function(script){return eval(script)})},escapeHTML:function(){var self=arguments.callee;self.text.data=this;return self.div.innerHTML},unescapeHTML:function(){var div=new Element('div');div.innerHTML=this.stripTags();return div.childNodes[0]?(div.childNodes.length>1?$A(div.childNodes).inject('',function(memo,node){return memo+node.nodeValue}):div.childNodes[0].nodeValue):''},toQueryParams:function(separator){var match=this.strip().match(/([^?#]*)(#.*)?$/);if(!match)return{};return match[1].split(separator||'&').inject({},function(hash,pair){if((pair=pair.split('='))[0]){var key=decodeURIComponent(pair.shift());var value=pair.length>1?pair.join('='):pair[0];if(value!=undefined)value=decodeURIComponent(value);if(key in hash){if(!Object.isArray(hash[key]))hash[key]=[hash[key]];hash[key].push(value)}else hash[key]=value}return hash})},toArray:function(){return this.split('')},succ:function(){return this.slice(0,this.length-1)+String.fromCharCode(this.charCodeAt(this.length-1)+1)},times:function(count){return count<1?'':new Array(count+1).join(this)},camelize:function(){var parts=this.split('-'),len=parts.length;if(len==1)return parts[0];var camelized=this.charAt(0)=='-'?parts[0].charAt(0).toUpperCase()+parts[0].substring(1):parts[0];for(var i=1;i<len;i++)camelized+=parts[i].charAt(0).toUpperCase()+parts[i].substring(1);return camelized},capitalize:function(){return this.charAt(0).toUpperCase()+this.substring(1).toLowerCase()},underscore:function(){return this.gsub(/::/,'/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase()},dasherize:function(){return this.gsub(/_/,'-')},inspect:function(useDoubleQuotes){var escapedString=this.gsub(/[\x00-\x1f\\]/,function(match){var character=String.specialChar[match[0]];return character?character:'\\u00'+match[0].charCodeAt().toPaddedString(2,16)});if(useDoubleQuotes)return'"'+escapedString.replace(/"/g,'\\"')+'"';return"'"+escapedString.replace(/'/g,'\\\'')+"'"},toJSON:function(){return this.inspect(true)},unfilterJSON:function(filter){return this.sub(filter||Prototype.JSONFilter,'#{1}')},isJSON:function(){var str=this;if(str.blank())return false;str=this.replace(/\\./g,'@').replace(/"[^"\\\n\r]*"/g,'');return(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str)},evalJSON:function(sanitize){var json=this.unfilterJSON();try{if(!sanitize||json.isJSON())return eval('('+json+')')}catch(e){}throw new SyntaxError('Badly formed JSON string: '+this.inspect())},include:function(pattern){return this.indexOf(pattern)>-1},startsWith:function(pattern){return this.indexOf(pattern)===0},endsWith:function(pattern){var d=this.length-pattern.length;return d>=0&&this.lastIndexOf(pattern)===d},empty:function(){return this==''},blank:function(){return/^\s*$/.test(this)},interpolate:function(object,pattern){return new Template(this,pattern).evaluate(object)}});if(Prototype.Browser.WebKit||Prototype.Browser.IE)Object.extend(String.prototype,{escapeHTML:function(){return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;')},unescapeHTML:function(){return this.replace(/&amp;/g,'&').replace(/&lt;/g,'<').replace(/&gt;/g,'>')}});String.prototype.gsub.prepareReplacement=function(replacement){if(Object.isFunction(replacement))return replacement;var template=new Template(replacement);return function(match){return template.evaluate(match)}};String.prototype.parseQuery=String.prototype.toQueryParams;Object.extend(String.prototype.escapeHTML,{div:document.createElement('div'),text:document.createTextNode('')});with(String.prototype.escapeHTML)div.appendChild(text);var Template=Class.create({initialize:function(template,pattern){this.template=template.toString();this.pattern=pattern||Template.Pattern},evaluate:function(object){if(Object.isFunction(object.toTemplateReplacements))object=object.toTemplateReplacements();return this.template.gsub(this.pattern,function(match){if(object==null)return'';var before=match[1]||'';if(before=='\\')return match[2];var ctx=object,expr=match[3];var pattern=/^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;match=pattern.exec(expr);if(match==null)return before;while(match!=null){var comp=match[1].startsWith('[')?match[2].gsub('\\\\]',']'):match[1];ctx=ctx[comp];if(null==ctx||''==match[3])break;expr=expr.substring('['==match[3]?match[1].length:match[0].length);match=pattern.exec(expr)}return before+String.interpret(ctx)})}});Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;var $break={};var Enumerable={each:function(iterator,context){var index=0;iterator=iterator.bind(context);try{this._each(function(value){iterator(value,index++)})}catch(e){if(e!=$break)throw e}return this},eachSlice:function(number,iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var index=-number,slices=[],array=this.toArray();while((index+=number)<array.length)slices.push(array.slice(index,index+number));return slices.collect(iterator,context)},all:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result=true;this.each(function(value,index){result=result&&!!iterator(value,index);if(!result)throw $break});return result},any:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result=false;this.each(function(value,index){if(result=!!iterator(value,index))throw $break});return result},collect:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var results=[];this.each(function(value,index){results.push(iterator(value,index))});return results},detect:function(iterator,context){iterator=iterator.bind(context);var result;this.each(function(value,index){if(iterator(value,index)){result=value;throw $break}});return result},findAll:function(iterator,context){iterator=iterator.bind(context);var results=[];this.each(function(value,index){if(iterator(value,index))results.push(value)});return results},grep:function(filter,iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var results=[];if(Object.isString(filter))filter=new RegExp(filter);this.each(function(value,index){if(filter.match(value))results.push(iterator(value,index))});return results},include:function(object){if(Object.isFunction(this.indexOf))if(this.indexOf(object)!=-1)return true;var found=false;this.each(function(value){if(value==object){found=true;throw $break}});return found},inGroupsOf:function(number,fillWith){fillWith=Object.isUndefined(fillWith)?null:fillWith;return this.eachSlice(number,function(slice){while(slice.length<number)slice.push(fillWith);return slice})},inject:function(memo,iterator,context){iterator=iterator.bind(context);this.each(function(value,index){memo=iterator(memo,value,index)});return memo},invoke:function(method){var args=$A(arguments).slice(1);return this.map(function(value){return value[method].apply(value,args)})},max:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result;this.each(function(value,index){value=iterator(value,index);if(result==null||value>=result)result=value});return result},min:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var result;this.each(function(value,index){value=iterator(value,index);if(result==null||value<result)result=value});return result},partition:function(iterator,context){iterator=iterator?iterator.bind(context):Prototype.K;var trues=[],falses=[];this.each(function(value,index){(iterator(value,index)?trues:falses).push(value)});return[trues,falses]},pluck:function(property){var results=[];this.each(function(value){results.push(value[property])});return results},reject:function(iterator,context){iterator=iterator.bind(context);var results=[];this.each(function(value,index){if(!iterator(value,index))results.push(value)});return results},sortBy:function(iterator,context){iterator=iterator.bind(context);return this.map(function(value,index){return{value:value,criteria:iterator(value,index)}}).sort(function(left,right){var a=left.criteria,b=right.criteria;return a<b?-1:a>b?1:0}).pluck('value')},toArray:function(){return this.map()},zip:function(){var iterator=Prototype.K,args=$A(arguments);if(Object.isFunction(args.last()))iterator=args.pop();var collections=[this].concat(args).map($A);return this.map(function(value,index){return iterator(collections.pluck(index))})},size:function(){return this.toArray().length},inspect:function(){return'#<Enumerable:'+this.toArray().inspect()+'>'}};Object.extend(Enumerable,{map:Enumerable.collect,find:Enumerable.detect,select:Enumerable.findAll,filter:Enumerable.findAll,member:Enumerable.include,entries:Enumerable.toArray,every:Enumerable.all,some:Enumerable.any});function $A(iterable){if(!iterable)return[];if(iterable.toArray)return iterable.toArray();var length=iterable.length||0,results=new Array(length);while(length--)results[length]=iterable[length];return results}if(Prototype.Browser.WebKit){$A=function(iterable){if(!iterable)return[];if(!(Object.isFunction(iterable)&&iterable=='[object NodeList]')&&iterable.toArray)return iterable.toArray();var length=iterable.length||0,results=new Array(length);while(length--)results[length]=iterable[length];return results}}Array.from=$A;Object.extend(Array.prototype,Enumerable);if(!Array.prototype._reverse)Array.prototype._reverse=Array.prototype.reverse;Object.extend(Array.prototype,{_each:function(iterator){for(var i=0,length=this.length;i<length;i++)iterator(this[i])},clear:function(){this.length=0;return this},first:function(){return this[0]},last:function(){return this[this.length-1]},compact:function(){return this.select(function(value){return value!=null})},flatten:function(){return this.inject([],function(array,value){return array.concat(Object.isArray(value)?value.flatten():[value])})},without:function(){var values=$A(arguments);return this.select(function(value){return!values.include(value)})},reverse:function(inline){return(inline!==false?this:this.toArray())._reverse()},reduce:function(){return this.length>1?this:this[0]},uniq:function(sorted){return this.inject([],function(array,value,index){if(0==index||(sorted?array.last()!=value:!array.include(value)))array.push(value);return array})},intersect:function(array){return this.uniq().findAll(function(item){return array.detect(function(value){return item===value})})},clone:function(){return[].concat(this)},size:function(){return this.length},inspect:function(){return'['+this.map(Object.inspect).join(', ')+']'},toJSON:function(){var results=[];this.each(function(object){var value=Object.toJSON(object);if(!Object.isUndefined(value))results.push(value)});return'['+results.join(', ')+']'}});if(Object.isFunction(Array.prototype.forEach))Array.prototype._each=Array.prototype.forEach;if(!Array.prototype.indexOf)Array.prototype.indexOf=function(item,i){i||(i=0);var length=this.length;if(i<0)i=length+i;for(;i<length;i++)if(this[i]===item)return i;return-1};if(!Array.prototype.lastIndexOf)Array.prototype.lastIndexOf=function(item,i){i=isNaN(i)?this.length:(i<0?this.length+i:i)+1;var n=this.slice(0,i).reverse().indexOf(item);return(n<0)?n:i-n-1};Array.prototype.toArray=Array.prototype.clone;function $w(string){if(!Object.isString(string))return[];string=string.strip();return string?string.split(/\s+/):[]}if(Prototype.Browser.Opera){Array.prototype.concat=function(){var array=[];for(var i=0,length=this.length;i<length;i++)array.push(this[i]);for(var i=0,length=arguments.length;i<length;i++){if(Object.isArray(arguments[i])){for(var j=0,arrayLength=arguments[i].length;j<arrayLength;j++)array.push(arguments[i][j])}else{array.push(arguments[i])}}return array}}Object.extend(Number.prototype,{toColorPart:function(){return this.toPaddedString(2,16)},succ:function(){return this+1},times:function(iterator){$R(0,this,true).each(iterator);return this},toPaddedString:function(length,radix){var string=this.toString(radix||10);return'0'.times(length-string.length)+string},toJSON:function(){return isFinite(this)?this.toString():'null'}});$w('abs round ceil floor').each(function(method){Number.prototype[method]=Math[method].methodize()});function $H(object){return new Hash(object)};var Hash=Class.create(Enumerable,(function(){function toQueryPair(key,value){if(Object.isUndefined(value))return key;return key+'='+encodeURIComponent(String.interpret(value))}return{initialize:function(object){this._object=Object.isHash(object)?object.toObject():Object.clone(object)},_each:function(iterator){for(var key in this._object){var value=this._object[key],pair=[key,value];pair.key=key;pair.value=value;iterator(pair)}},set:function(key,value){return this._object[key]=value},get:function(key){return this._object[key]},unset:function(key){var value=this._object[key];delete this._object[key];return value},toObject:function(){return Object.clone(this._object)},keys:function(){return this.pluck('key')},values:function(){return this.pluck('value')},index:function(value){var match=this.detect(function(pair){return pair.value===value});return match&&match.key},merge:function(object){return this.clone().update(object)},update:function(object){return new Hash(object).inject(this,function(result,pair){result.set(pair.key,pair.value);return result})},toQueryString:function(){return this.map(function(pair){var key=encodeURIComponent(pair.key),values=pair.value;if(values&&typeof values=='object'){if(Object.isArray(values))return values.map(toQueryPair.curry(key)).join('&')}return toQueryPair(key,values)}).join('&')},inspect:function(){return'#<Hash:{'+this.map(function(pair){return pair.map(Object.inspect).join(': ')}).join(', ')+'}>'},toJSON:function(){return Object.toJSON(this.toObject())},clone:function(){return new Hash(this)}}})());Hash.prototype.toTemplateReplacements=Hash.prototype.toObject;Hash.from=$H;var ObjectRange=Class.create(Enumerable,{initialize:function(start,end,exclusive){this.start=start;this.end=end;this.exclusive=exclusive},_each:function(iterator){var value=this.start;while(this.include(value)){iterator(value);value=value.succ()}},include:function(value){if(value<this.start)return false;if(this.exclusive)return value<this.end;return value<=this.end}});var $R=function(start,end,exclusive){return new ObjectRange(start,end,exclusive)};var Ajax={getTransport:function(){return Try.these(function(){return new XMLHttpRequest()},function(){return new ActiveXObject('Msxml2.XMLHTTP')},function(){return new ActiveXObject('Microsoft.XMLHTTP')})||false},activeRequestCount:0};Ajax.Responders={responders:[],_each:function(iterator){this.responders._each(iterator)},register:function(responder){if(!this.include(responder))this.responders.push(responder)},unregister:function(responder){this.responders=this.responders.without(responder)},dispatch:function(callback,request,transport,json){this.each(function(responder){if(Object.isFunction(responder[callback])){try{responder[callback].apply(responder,[request,transport,json])}catch(e){}}})}};Object.extend(Ajax.Responders,Enumerable);Ajax.Responders.register({onCreate:function(){Ajax.activeRequestCount++},onComplete:function(){Ajax.activeRequestCount--}});Ajax.Base=Class.create({initialize:function(options){this.options={method:'post',asynchronous:true,contentType:'application/x-www-form-urlencoded',encoding:'UTF-8',parameters:'',evalJSON:true,evalJS:true};Object.extend(this.options,options||{});this.options.method=this.options.method.toLowerCase();if(Object.isString(this.options.parameters))this.options.parameters=this.options.parameters.toQueryParams();else if(Object.isHash(this.options.parameters))this.options.parameters=this.options.parameters.toObject()}});Ajax.Request=Class.create(Ajax.Base,{_complete:false,initialize:function($super,url,options){$super(options);this.transport=Ajax.getTransport();this.request(url)},request:function(url){this.url=url;this.method=this.options.method;var params=Object.clone(this.options.parameters);if(!['get','post'].include(this.method)){params['_method']=this.method;this.method='post'}this.parameters=params;if(params=Object.toQueryString(params)){if(this.method=='get')this.url+=(this.url.include('?')?'&':'?')+params;else if(/Konqueror|Safari|KHTML/.test(navigator.userAgent))params+='&_='}try{var response=new Ajax.Response(this);if(this.options.onCreate)this.options.onCreate(response);Ajax.Responders.dispatch('onCreate',this,response);this.transport.open(this.method.toUpperCase(),this.url,this.options.asynchronous);if(this.options.asynchronous)this.respondToReadyState.bind(this).defer(1);this.transport.onreadystatechange=this.onStateChange.bind(this);this.setRequestHeaders();this.body=this.method=='post'?(this.options.postBody||params):null;this.transport.send(this.body);if(!this.options.asynchronous&&this.transport.overrideMimeType)this.onStateChange()}catch(e){this.dispatchException(e)}},onStateChange:function(){var readyState=this.transport.readyState;if(readyState>1&&!((readyState==4)&&this._complete))this.respondToReadyState(this.transport.readyState)},setRequestHeaders:function(){var headers={'X-Requested-With':'XMLHttpRequest','X-Prototype-Version':Prototype.Version,'Accept':'text/javascript, text/html, application/xml, text/xml, */*'};if(this.method=='post'){headers['Content-type']=this.options.contentType+(this.options.encoding?'; charset='+this.options.encoding:'');if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005)headers['Connection']='close'}if(typeof this.options.requestHeaders=='object'){var extras=this.options.requestHeaders;if(Object.isFunction(extras.push))for(var i=0,length=extras.length;i<length;i+=2)headers[extras[i]]=extras[i+1];else $H(extras).each(function(pair){headers[pair.key]=pair.value})}for(var name in headers)this.transport.setRequestHeader(name,headers[name])},success:function(){var status=this.getStatus();return!status||(status>=200&&status<300)},getStatus:function(){try{return this.transport.status||0}catch(e){return 0}},respondToReadyState:function(readyState){var state=Ajax.Request.Events[readyState],response=new Ajax.Response(this);if(state=='Complete'){try{this._complete=true;(this.options['on'+response.status]||this.options['on'+(this.success()?'Success':'Failure')]||Prototype.emptyFunction)(response,response.headerJSON)}catch(e){this.dispatchException(e)}var contentType=response.getHeader('Content-type');if(this.options.evalJS=='force'||(this.options.evalJS&&this.isSameOrigin()&&contentType&&contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))this.evalResponse()}try{(this.options['on'+state]||Prototype.emptyFunction)(response,response.headerJSON);Ajax.Responders.dispatch('on'+state,this,response,response.headerJSON)}catch(e){this.dispatchException(e)}if(state=='Complete'){this.transport.onreadystatechange=Prototype.emptyFunction}},isSameOrigin:function(){var m=this.url.match(/^\s*https?:\/\/[^\/]*/);return!m||(m[0]=='#{protocol}//#{domain}#{port}'.interpolate({protocol:location.protocol,domain:document.domain,port:location.port?':'+location.port:''}))},getHeader:function(name){try{return this.transport.getResponseHeader(name)||null}catch(e){return null}},evalResponse:function(){try{var script=(this.transport.responseText||'').unfilterJSON();if(window.execScript){window.execScript(script);return}else{return window.eval(script)}}catch(e){this.dispatchException(e)}},dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);Ajax.Responders.dispatch('onException',this,exception)}});Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];Ajax.Response=Class.create({initialize:function(request){this.request=request;var transport=this.transport=request.transport,readyState=this.readyState=transport.readyState;if((readyState>2&&!Prototype.Browser.IE)||readyState==4){this.status=this.getStatus();this.statusText=this.getStatusText();this.responseText=String.interpret(transport.responseText);this.headerJSON=this._getHeaderJSON()}if(readyState==4){var xml=transport.responseXML;this.responseXML=Object.isUndefined(xml)?null:xml;this.responseJSON=this._getResponseJSON()}},status:0,statusText:'',getStatus:Ajax.Request.prototype.getStatus,getStatusText:function(){try{return this.transport.statusText||''}catch(e){return''}},getHeader:Ajax.Request.prototype.getHeader,getAllHeaders:function(){try{return this.getAllResponseHeaders()}catch(e){return null}},getResponseHeader:function(name){return this.transport.getResponseHeader(name)},getAllResponseHeaders:function(){return this.transport.getAllResponseHeaders()},_getHeaderJSON:function(){var json=this.getHeader('X-JSON');if(!json)return null;json=decodeURIComponent(escape(json));try{return json.evalJSON(this.request.options.sanitizeJSON||!this.request.isSameOrigin())}catch(e){this.request.dispatchException(e)}},_getResponseJSON:function(){var options=this.request.options;if(!options.evalJSON||(options.evalJSON!='force'&&!(this.getHeader('Content-type')||'').include('application/json'))||this.responseText.blank())return null;try{return this.responseText.evalJSON(options.sanitizeJSON||!this.request.isSameOrigin())}catch(e){this.request.dispatchException(e)}}});Ajax.Updater=Class.create(Ajax.Request,{initialize:function($super,container,url,options){this.container={success:(container.success||container),failure:(container.failure||(container.success?null:container))};options=Object.clone(options);var onComplete=options.onComplete;options.onComplete=(function(response,json){this.updateContent(response.responseText);if(Object.isFunction(onComplete))onComplete(response,json)}).bind(this);$super(url,options)},updateContent:function(responseText){var receiver=this.container[this.success()?'success':'failure'],options=this.options;if(!options.evalScripts)responseText=responseText.stripScripts();if(receiver=$(receiver)){if(options.insertion){if(Object.isString(options.insertion)){var insertion={};insertion[options.insertion]=responseText;receiver.insert(insertion)}else options.insertion(receiver,responseText)}else receiver.update(responseText)}}});Ajax.PeriodicalUpdater=Class.create(Ajax.Base,{initialize:function($super,container,url,options){$super(options);this.onComplete=this.options.onComplete;this.frequency=(this.options.frequency||2);this.decay=(this.options.decay||1);this.updater={};this.container=container;this.url=url;this.start()},start:function(){this.options.onComplete=this.updateComplete.bind(this);this.onTimerEvent()},stop:function(){this.updater.options.onComplete=undefined;clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments)},updateComplete:function(response){if(this.options.decay){this.decay=(response.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=response.responseText}this.timer=this.onTimerEvent.bind(this).delay(this.decay*this.frequency)},onTimerEvent:function(){this.updater=new Ajax.Updater(this.container,this.url,this.options)}});function $(element){if(arguments.length>1){for(var i=0,elements=[],length=arguments.length;i<length;i++)elements.push($(arguments[i]));return elements}if(Object.isString(element))element=document.getElementById(element);return Element.extend(element)}if(Prototype.BrowserFeatures.XPath){document._getElementsByXPath=function(expression,parentElement){var results=[];var query=document.evaluate(expression,$(parentElement)||document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,length=query.snapshotLength;i<length;i++)results.push(Element.extend(query.snapshotItem(i)));return results}}if(!window.Node)var Node={};if(!Node.ELEMENT_NODE){Object.extend(Node,{ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3,CDATA_SECTION_NODE:4,ENTITY_REFERENCE_NODE:5,ENTITY_NODE:6,PROCESSING_INSTRUCTION_NODE:7,COMMENT_NODE:8,DOCUMENT_NODE:9,DOCUMENT_TYPE_NODE:10,DOCUMENT_FRAGMENT_NODE:11,NOTATION_NODE:12})}(function(){var element=this.Element;this.Element=function(tagName,attributes){attributes=attributes||{};tagName=tagName.toLowerCase();var cache=Element.cache;if(Prototype.Browser.IE&&attributes.name){tagName='<'+tagName+' name="'+attributes.name+'">';delete attributes.name;return Element.writeAttribute(document.createElement(tagName),attributes)}if(!cache[tagName])cache[tagName]=Element.extend(document.createElement(tagName));return Element.writeAttribute(cache[tagName].cloneNode(false),attributes)};Object.extend(this.Element,element||{})}).call(window);Element.cache={};Element.Methods={visible:function(element){return $(element).style.display!='none'},toggle:function(element){element=$(element);Element[Element.visible(element)?'hide':'show'](element);return element},hide:function(element){$(element).style.display='none';return element},show:function(element){$(element).style.display='';return element},remove:function(element){element=$(element);element.parentNode.removeChild(element);return element},update:function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content))return element.update().insert(content);content=Object.toHTML(content);element.innerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element},replace:function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();else if(!Object.isElement(content)){content=Object.toHTML(content);var range=element.ownerDocument.createRange();range.selectNode(element);content.evalScripts.bind(content).defer();content=range.createContextualFragment(content.stripScripts())}element.parentNode.replaceChild(content,element);return element},insert:function(element,insertions){element=$(element);if(Object.isString(insertions)||Object.isNumber(insertions)||Object.isElement(insertions)||(insertions&&(insertions.toElement||insertions.toHTML)))insertions={bottom:insertions};var content,insert,tagName,childNodes;for(var position in insertions){content=insertions[position];position=position.toLowerCase();insert=Element._insertionTranslations[position];if(content&&content.toElement)content=content.toElement();if(Object.isElement(content)){insert(element,content);continue}content=Object.toHTML(content);tagName=((position=='before'||position=='after')?element.parentNode:element).tagName.toUpperCase();childNodes=Element._getContentFromAnonymousElement(tagName,content.stripScripts());if(position=='top'||position=='after')childNodes.reverse();childNodes.each(insert.curry(element));content.evalScripts.bind(content).defer()}return element},wrap:function(element,wrapper,attributes){element=$(element);if(Object.isElement(wrapper))$(wrapper).writeAttribute(attributes||{});else if(Object.isString(wrapper))wrapper=new Element(wrapper,attributes);else wrapper=new Element('div',wrapper);if(element.parentNode)element.parentNode.replaceChild(wrapper,element);wrapper.appendChild(element);return wrapper},inspect:function(element){element=$(element);var result='<'+element.tagName.toLowerCase();$H({'id':'id','className':'class'}).each(function(pair){var property=pair.first(),attribute=pair.last();var value=(element[property]||'').toString();if(value)result+=' '+attribute+'='+value.inspect(true)});return result+'>'},recursivelyCollect:function(element,property){element=$(element);var elements=[];while(element=element[property])if(element.nodeType==1)elements.push(Element.extend(element));return elements},ancestors:function(element){return $(element).recursivelyCollect('parentNode')},descendants:function(element){return $(element).select("*")},firstDescendant:function(element){element=$(element).firstChild;while(element&&element.nodeType!=1)element=element.nextSibling;return $(element)},immediateDescendants:function(element){if(!(element=$(element).firstChild))return[];while(element&&element.nodeType!=1)element=element.nextSibling;if(element)return[element].concat($(element).nextSiblings());return[]},previousSiblings:function(element){return $(element).recursivelyCollect('previousSibling')},nextSiblings:function(element){return $(element).recursivelyCollect('nextSibling')},siblings:function(element){element=$(element);return element.previousSiblings().reverse().concat(element.nextSiblings())},match:function(element,selector){if(Object.isString(selector))selector=new Selector(selector);return selector.match($(element))},up:function(element,expression,index){element=$(element);if(arguments.length==1)return $(element.parentNode);var ancestors=element.ancestors();return Object.isNumber(expression)?ancestors[expression]:Selector.findElement(ancestors,expression,index)},down:function(element,expression,index){element=$(element);if(arguments.length==1)return element.firstDescendant();return Object.isNumber(expression)?element.descendants()[expression]:element.select(expression)[index||0]},previous:function(element,expression,index){element=$(element);if(arguments.length==1)return $(Selector.handlers.previousElementSibling(element));var previousSiblings=element.previousSiblings();return Object.isNumber(expression)?previousSiblings[expression]:Selector.findElement(previousSiblings,expression,index)},next:function(element,expression,index){element=$(element);if(arguments.length==1)return $(Selector.handlers.nextElementSibling(element));var nextSiblings=element.nextSiblings();return Object.isNumber(expression)?nextSiblings[expression]:Selector.findElement(nextSiblings,expression,index)},select:function(){var args=$A(arguments),element=$(args.shift());return Selector.findChildElements(element,args)},adjacent:function(){var args=$A(arguments),element=$(args.shift());return Selector.findChildElements(element.parentNode,args).without(element)},identify:function(element){element=$(element);var id=element.readAttribute('id'),self=arguments.callee;if(id)return id;do{id='anonymous_element_'+self.counter++}while($(id));element.writeAttribute('id',id);return id},readAttribute:function(element,name){element=$(element);if(Prototype.Browser.IE){var t=Element._attributeTranslations.read;if(t.values[name])return t.values[name](element,name);if(t.names[name])name=t.names[name];if(name.include(':')){return(!element.attributes||!element.attributes[name])?null:element.attributes[name].value}}return element.getAttribute(name)},writeAttribute:function(element,name,value){element=$(element);var attributes={},t=Element._attributeTranslations.write;if(typeof name=='object')attributes=name;else attributes[name]=Object.isUndefined(value)?true:value;for(var attr in attributes){name=t.names[attr]||attr;value=attributes[attr];if(t.values[attr])name=t.values[attr](element,value);if(value===false||value===null)element.removeAttribute(name);else if(value===true)element.setAttribute(name,name);else element.setAttribute(name,value)}return element},getHeight:function(element){return $(element).getDimensions().height},getWidth:function(element){return $(element).getDimensions().width},classNames:function(element){return new Element.ClassNames(element)},hasClassName:function(element,className){if(!(element=$(element)))return;var elementClassName=element.className;return(elementClassName.length>0&&(elementClassName==className||new RegExp("(^|\\s)"+className+"(\\s|$)").test(elementClassName)))},addClassName:function(element,className){if(!(element=$(element)))return;if(!element.hasClassName(className))element.className+=(element.className?' ':'')+className;return element},removeClassName:function(element,className){if(!(element=$(element)))return;element.className=element.className.replace(new RegExp("(^|\\s+)"+className+"(\\s+|$)"),' ').strip();return element},toggleClassName:function(element,className){if(!(element=$(element)))return;return element[element.hasClassName(className)?'removeClassName':'addClassName'](className)},cleanWhitespace:function(element){element=$(element);var node=element.firstChild;while(node){var nextNode=node.nextSibling;if(node.nodeType==3&&!/\S/.test(node.nodeValue))element.removeChild(node);node=nextNode}return element},empty:function(element){return $(element).innerHTML.blank()},descendantOf:function(element,ancestor){element=$(element),ancestor=$(ancestor);var originalAncestor=ancestor;if(element.compareDocumentPosition)return(element.compareDocumentPosition(ancestor)&8)===8;if(element.sourceIndex&&!Prototype.Browser.Opera){var e=element.sourceIndex,a=ancestor.sourceIndex,nextAncestor=ancestor.nextSibling;if(!nextAncestor){do{ancestor=ancestor.parentNode}while(!(nextAncestor=ancestor.nextSibling)&&ancestor.parentNode)}if(nextAncestor&&nextAncestor.sourceIndex)return(e>a&&e<nextAncestor.sourceIndex)}while(element=element.parentNode)if(element==originalAncestor)return true;return false},scrollTo:function(element){element=$(element);var pos=element.cumulativeOffset();window.scrollTo(pos[0],pos[1]);return element},getStyle:function(element,style){element=$(element);style=style=='float'?'cssFloat':style.camelize();var value=element.style[style];if(!value){var css=document.defaultView.getComputedStyle(element,null);value=css?css[style]:null}if(style=='opacity')return value?parseFloat(value):1.0;return value=='auto'?null:value},getOpacity:function(element){return $(element).getStyle('opacity')},setStyle:function(element,styles){element=$(element);var elementStyle=element.style,match;if(Object.isString(styles)){element.style.cssText+=';'+styles;return styles.include('opacity')?element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]):element}for(var property in styles)if(property=='opacity')element.setOpacity(styles[property]);else elementStyle[(property=='float'||property=='cssFloat')?(Object.isUndefined(elementStyle.styleFloat)?'cssFloat':'styleFloat'):property]=styles[property];return element},setOpacity:function(element,value){element=$(element);element.style.opacity=(value==1||value==='')?'':(value<0.00001)?0:value;return element},getDimensions:function(element){element=$(element);var display=$(element).getStyle('display');if(display!='none'&&display!=null)return{width:element.offsetWidth,height:element.offsetHeight};var els=element.style;var originalVisibility=els.visibility;var originalPosition=els.position;var originalDisplay=els.display;els.visibility='hidden';els.position='absolute';els.display='block';var originalWidth=element.clientWidth;var originalHeight=element.clientHeight;els.display=originalDisplay;els.position=originalPosition;els.visibility=originalVisibility;return{width:originalWidth,height:originalHeight}},makePositioned:function(element){element=$(element);var pos=Element.getStyle(element,'position');if(pos=='static'||!pos){element._madePositioned=true;element.style.position='relative';if(window.opera){element.style.top=0;element.style.left=0}}return element},undoPositioned:function(element){element=$(element);if(element._madePositioned){element._madePositioned=undefined;element.style.position=element.style.top=element.style.left=element.style.bottom=element.style.right=''}return element},makeClipping:function(element){element=$(element);if(element._overflow)return element;element._overflow=Element.getStyle(element,'overflow')||'auto';if(element._overflow!=='hidden')element.style.overflow='hidden';return element},undoClipping:function(element){element=$(element);if(!element._overflow)return element;element.style.overflow=element._overflow=='auto'?'':element._overflow;element._overflow=null;return element},cumulativeOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent}while(element);return Element._returnOffset(valueL,valueT)},positionedOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;if(element){if(element.tagName=='BODY')break;var p=Element.getStyle(element,'position');if(p!=='static')break}}while(element);return Element._returnOffset(valueL,valueT)},absolutize:function(element){element=$(element);if(element.getStyle('position')=='absolute')return;var offsets=element.positionedOffset();var top=offsets[1];var left=offsets[0];var width=element.clientWidth;var height=element.clientHeight;element._originalLeft=left-parseFloat(element.style.left||0);element._originalTop=top-parseFloat(element.style.top||0);element._originalWidth=element.style.width;element._originalHeight=element.style.height;element.style.position='absolute';element.style.top=top+'px';element.style.left=left+'px';element.style.width=width+'px';element.style.height=height+'px';return element},relativize:function(element){element=$(element);if(element.getStyle('position')=='relative')return;element.style.position='relative';var top=parseFloat(element.style.top||0)-(element._originalTop||0);var left=parseFloat(element.style.left||0)-(element._originalLeft||0);element.style.top=top+'px';element.style.left=left+'px';element.style.height=element._originalHeight;element.style.width=element._originalWidth;return element},cumulativeScrollOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.scrollTop||0;valueL+=element.scrollLeft||0;element=element.parentNode}while(element);return Element._returnOffset(valueL,valueT)},getOffsetParent:function(element){if(element.offsetParent)return $(element.offsetParent);if(element==document.body)return $(element);while((element=element.parentNode)&&element!=document.body)if(Element.getStyle(element,'position')!='static')return $(element);return $(document.body)},viewportOffset:function(forElement){var valueT=0,valueL=0;var element=forElement;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body&&Element.getStyle(element,'position')=='absolute')break}while(element=element.offsetParent);element=forElement;do{if(!Prototype.Browser.Opera||element.tagName=='BODY'){valueT-=element.scrollTop||0;valueL-=element.scrollLeft||0}}while(element=element.parentNode);return Element._returnOffset(valueL,valueT)},clonePosition:function(element,source){var options=Object.extend({setLeft:true,setTop:true,setWidth:true,setHeight:true,offsetTop:0,offsetLeft:0},arguments[2]||{});source=$(source);var p=source.viewportOffset();element=$(element);var delta=[0,0];var parent=null;if(Element.getStyle(element,'position')=='absolute'){parent=element.getOffsetParent();delta=parent.viewportOffset()}if(parent==document.body){delta[0]-=document.body.offsetLeft;delta[1]-=document.body.offsetTop}if(options.setLeft)element.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';if(options.setTop)element.style.top=(p[1]-delta[1]+options.offsetTop)+'px';if(options.setWidth)element.style.width=source.offsetWidth+'px';if(options.setHeight)element.style.height=source.offsetHeight+'px';return element}};Element.Methods.identify.counter=1;Object.extend(Element.Methods,{getElementsBySelector:Element.Methods.select,childElements:Element.Methods.immediateDescendants});Element._attributeTranslations={write:{names:{className:'class',htmlFor:'for'},values:{}}};if(Prototype.Browser.Opera){Element.Methods.getStyle=Element.Methods.getStyle.wrap(function(proceed,element,style){switch(style){case'left':case'top':case'right':case'bottom':if(proceed(element,'position')==='static')return null;case'height':case'width':if(!Element.visible(element))return null;var dim=parseInt(proceed(element,style),10);if(dim!==element['offset'+style.capitalize()])return dim+'px';var properties;if(style==='height'){properties=['border-top-width','padding-top','padding-bottom','border-bottom-width']}else{properties=['border-left-width','padding-left','padding-right','border-right-width']}return properties.inject(dim,function(memo,property){var val=proceed(element,property);return val===null?memo:memo-parseInt(val,10)})+'px';default:return proceed(element,style)}});Element.Methods.readAttribute=Element.Methods.readAttribute.wrap(function(proceed,element,attribute){if(attribute==='title')return element.title;return proceed(element,attribute)})}else if(Prototype.Browser.IE){Element.Methods.getOffsetParent=Element.Methods.getOffsetParent.wrap(function(proceed,element){element=$(element);var position=element.getStyle('position');if(position!=='static')return proceed(element);element.setStyle({position:'relative'});var value=proceed(element);element.setStyle({position:position});return value});$w('positionedOffset viewportOffset').each(function(method){Element.Methods[method]=Element.Methods[method].wrap(function(proceed,element){element=$(element);var position=element.getStyle('position');if(position!=='static')return proceed(element);var offsetParent=element.getOffsetParent();if(offsetParent&&offsetParent.getStyle('position')==='fixed')offsetParent.setStyle({zoom:1});element.setStyle({position:'relative'});var value=proceed(element);element.setStyle({position:position});return value})});Element.Methods.getStyle=function(element,style){element=$(element);style=(style=='float'||style=='cssFloat')?'styleFloat':style.camelize();var value=element.style[style];if(!value&&element.currentStyle)value=element.currentStyle[style];if(style=='opacity'){if(value=(element.getStyle('filter')||'').match(/alpha\(opacity=(.*)\)/))if(value[1])return parseFloat(value[1])/100;return 1.0}if(value=='auto'){if((style=='width'||style=='height')&&(element.getStyle('display')!='none'))return element['offset'+style.capitalize()]+'px';return null}return value};Element.Methods.setOpacity=function(element,value){function stripAlpha(filter){return filter.replace(/alpha\([^\)]*\)/gi,'')}element=$(element);var currentStyle=element.currentStyle;if((currentStyle&&!currentStyle.hasLayout)||(!currentStyle&&element.style.zoom=='normal'))element.style.zoom=1;var filter=element.getStyle('filter'),style=element.style;if(value==1||value===''){(filter=stripAlpha(filter))?style.filter=filter:style.removeAttribute('filter');return element}else if(value<0.00001)value=0;style.filter=stripAlpha(filter)+'alpha(opacity='+(value*100)+')';return element};Element._attributeTranslations={read:{names:{'class':'className','for':'htmlFor'},values:{_getAttr:function(element,attribute){return element.getAttribute(attribute,2)},_getAttrNode:function(element,attribute){var node=element.getAttributeNode(attribute);return node?node.value:""},_getEv:function(element,attribute){attribute=element.getAttribute(attribute);return attribute?attribute.toString().slice(23,-2):null},_flag:function(element,attribute){return $(element).hasAttribute(attribute)?attribute:null},style:function(element){return element.style.cssText.toLowerCase()},title:function(element){return element.title}}}};Element._attributeTranslations.write={names:Object.extend({cellpadding:'cellPadding',cellspacing:'cellSpacing'},Element._attributeTranslations.read.names),values:{checked:function(element,value){element.checked=!!value},style:function(element,value){element.style.cssText=value?value:''}}};Element._attributeTranslations.has={};$w('colSpan rowSpan vAlign dateTime accessKey tabIndex '+'encType maxLength readOnly longDesc').each(function(attr){Element._attributeTranslations.write.names[attr.toLowerCase()]=attr;Element._attributeTranslations.has[attr.toLowerCase()]=attr});(function(v){Object.extend(v,{href:v._getAttr,src:v._getAttr,type:v._getAttr,action:v._getAttrNode,disabled:v._flag,checked:v._flag,readonly:v._flag,multiple:v._flag,onload:v._getEv,onunload:v._getEv,onclick:v._getEv,ondblclick:v._getEv,onmousedown:v._getEv,onmouseup:v._getEv,onmouseover:v._getEv,onmousemove:v._getEv,onmouseout:v._getEv,onfocus:v._getEv,onblur:v._getEv,onkeypress:v._getEv,onkeydown:v._getEv,onkeyup:v._getEv,onsubmit:v._getEv,onreset:v._getEv,onselect:v._getEv,onchange:v._getEv})})(Element._attributeTranslations.read.values)}else if(Prototype.Browser.Gecko&&/rv:1\.8\.0/.test(navigator.userAgent)){Element.Methods.setOpacity=function(element,value){element=$(element);element.style.opacity=(value==1)?0.999999:(value==='')?'':(value<0.00001)?0:value;return element}}else if(Prototype.Browser.WebKit){Element.Methods.setOpacity=function(element,value){element=$(element);element.style.opacity=(value==1||value==='')?'':(value<0.00001)?0:value;if(value==1)if(element.tagName=='IMG'&&element.width){element.width++;element.width--}else try{var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n)}catch(e){}return element};Element.Methods.cumulativeOffset=function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body)if(Element.getStyle(element,'position')=='absolute')break;element=element.offsetParent}while(element);return Element._returnOffset(valueL,valueT)}}if(Prototype.Browser.IE||Prototype.Browser.Opera){Element.Methods.update=function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content))return element.update().insert(content);content=Object.toHTML(content);var tagName=element.tagName.toUpperCase();if(tagName in Element._insertionTranslations.tags){$A(element.childNodes).each(function(node){element.removeChild(node)});Element._getContentFromAnonymousElement(tagName,content.stripScripts()).each(function(node){element.appendChild(node)})}else element.innerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element}}if('outerHTML'in document.createElement('div')){Element.Methods.replace=function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content)){element.parentNode.replaceChild(content,element);return element}content=Object.toHTML(content);var parent=element.parentNode,tagName=parent.tagName.toUpperCase();if(Element._insertionTranslations.tags[tagName]){var nextSibling=element.next();var fragments=Element._getContentFromAnonymousElement(tagName,content.stripScripts());parent.removeChild(element);if(nextSibling)fragments.each(function(node){parent.insertBefore(node,nextSibling)});else fragments.each(function(node){parent.appendChild(node)})}else element.outerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element}}Element._returnOffset=function(l,t){var result=[l,t];result.left=l;result.top=t;return result};Element._getContentFromAnonymousElement=function(tagName,html){var div=new Element('div'),t=Element._insertionTranslations.tags[tagName];if(t){div.innerHTML=t[0]+html+t[1];t[2].times(function(){div=div.firstChild})}else div.innerHTML=html;return $A(div.childNodes)};Element._insertionTranslations={before:function(element,node){element.parentNode.insertBefore(node,element)},top:function(element,node){element.insertBefore(node,element.firstChild)},bottom:function(element,node){element.appendChild(node)},after:function(element,node){element.parentNode.insertBefore(node,element.nextSibling)},tags:{TABLE:['<table>','</table>',1],TBODY:['<table><tbody>','</tbody></table>',2],TR:['<table><tbody><tr>','</tr></tbody></table>',3],TD:['<table><tbody><tr><td>','</td></tr></tbody></table>',4],SELECT:['<select>','</select>',1]}};(function(){Object.extend(this.tags,{THEAD:this.tags.TBODY,TFOOT:this.tags.TBODY,TH:this.tags.TD})}).call(Element._insertionTranslations);Element.Methods.Simulated={hasAttribute:function(element,attribute){attribute=Element._attributeTranslations.has[attribute]||attribute;var node=$(element).getAttributeNode(attribute);return node&&node.specified}};Element.Methods.ByTag={};Object.extend(Element,Element.Methods);if(!Prototype.BrowserFeatures.ElementExtensions&&document.createElement('div').__proto__){window.HTMLElement={};window.HTMLElement.prototype=document.createElement('div').__proto__;Prototype.BrowserFeatures.ElementExtensions=true}Element.extend=(function(){if(Prototype.BrowserFeatures.SpecificElementExtensions)return Prototype.K;var Methods={},ByTag=Element.Methods.ByTag;var extend=Object.extend(function(element){if(!element||element._extendedByPrototype||element.nodeType!=1||element==window)return element;var methods=Object.clone(Methods),tagName=element.tagName,property,value;if(ByTag[tagName])Object.extend(methods,ByTag[tagName]);for(property in methods){value=methods[property];if(Object.isFunction(value)&&!(property in element))element[property]=value.methodize()}element._extendedByPrototype=Prototype.emptyFunction;return element},{refresh:function(){if(!Prototype.BrowserFeatures.ElementExtensions){Object.extend(Methods,Element.Methods);Object.extend(Methods,Element.Methods.Simulated)}}});extend.refresh();return extend})();Element.hasAttribute=function(element,attribute){if(element.hasAttribute)return element.hasAttribute(attribute);return Element.Methods.Simulated.hasAttribute(element,attribute)};Element.addMethods=function(methods){var F=Prototype.BrowserFeatures,T=Element.Methods.ByTag;if(!methods){Object.extend(Form,Form.Methods);Object.extend(Form.Element,Form.Element.Methods);Object.extend(Element.Methods.ByTag,{"FORM":Object.clone(Form.Methods),"INPUT":Object.clone(Form.Element.Methods),"SELECT":Object.clone(Form.Element.Methods),"TEXTAREA":Object.clone(Form.Element.Methods)})}if(arguments.length==2){var tagName=methods;methods=arguments[1]}if(!tagName)Object.extend(Element.Methods,methods||{});else{if(Object.isArray(tagName))tagName.each(extend);else extend(tagName)}function extend(tagName){tagName=tagName.toUpperCase();if(!Element.Methods.ByTag[tagName])Element.Methods.ByTag[tagName]={};Object.extend(Element.Methods.ByTag[tagName],methods)}function copy(methods,destination,onlyIfAbsent){onlyIfAbsent=onlyIfAbsent||false;for(var property in methods){var value=methods[property];if(!Object.isFunction(value))continue;if(!onlyIfAbsent||!(property in destination))destination[property]=value.methodize()}}function findDOMClass(tagName){var klass;var trans={"OPTGROUP":"OptGroup","TEXTAREA":"TextArea","P":"Paragraph","FIELDSET":"FieldSet","UL":"UList","OL":"OList","DL":"DList","DIR":"Directory","H1":"Heading","H2":"Heading","H3":"Heading","H4":"Heading","H5":"Heading","H6":"Heading","Q":"Quote","INS":"Mod","DEL":"Mod","A":"Anchor","IMG":"Image","CAPTION":"TableCaption","COL":"TableCol","COLGROUP":"TableCol","THEAD":"TableSection","TFOOT":"TableSection","TBODY":"TableSection","TR":"TableRow","TH":"TableCell","TD":"TableCell","FRAMESET":"FrameSet","IFRAME":"IFrame"};if(trans[tagName])klass='HTML'+trans[tagName]+'Element';if(window[klass])return window[klass];klass='HTML'+tagName+'Element';if(window[klass])return window[klass];klass='HTML'+tagName.capitalize()+'Element';if(window[klass])return window[klass];window[klass]={};window[klass].prototype=document.createElement(tagName).__proto__;return window[klass]}if(F.ElementExtensions){copy(Element.Methods,HTMLElement.prototype);copy(Element.Methods.Simulated,HTMLElement.prototype,true)}if(F.SpecificElementExtensions){for(var tag in Element.Methods.ByTag){var klass=findDOMClass(tag);if(Object.isUndefined(klass))continue;copy(T[tag],klass.prototype)}}Object.extend(Element,Element.Methods);delete Element.ByTag;if(Element.extend.refresh)Element.extend.refresh();Element.cache={}};document.viewport={getDimensions:function(){var dimensions={};var B=Prototype.Browser;$w('width height').each(function(d){var D=d.capitalize();dimensions[d]=(B.WebKit&&!document.evaluate)?self['inner'+D]:(B.Opera)?document.body['client'+D]:document.documentElement['client'+D]});return dimensions},getWidth:function(){return this.getDimensions().width},getHeight:function(){return this.getDimensions().height},getScrollOffsets:function(){return Element._returnOffset(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft,window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop)}};var Selector=Class.create({initialize:function(expression){this.expression=expression.strip();this.compileMatcher()},shouldUseXPath:function(){if(!Prototype.BrowserFeatures.XPath)return false;var e=this.expression;if(Prototype.Browser.WebKit&&(e.include("-of-type")||e.include(":empty")))return false;if((/(\[[\w-]*?:|:checked)/).test(this.expression))return false;return true},compileMatcher:function(){if(this.shouldUseXPath())return this.compileXPathMatcher();var e=this.expression,ps=Selector.patterns,h=Selector.handlers,c=Selector.criteria,le,p,m;if(Selector._cache[e]){this.matcher=Selector._cache[e];return}this.matcher=["this.matcher = function(root) {","var r = root, h = Selector.handlers, c = false, n;"];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){p=ps[i];if(m=e.match(p)){this.matcher.push(Object.isFunction(c[i])?c[i](m):new Template(c[i]).evaluate(m));e=e.replace(m[0],'');break}}}this.matcher.push("return h.unique(n);\n}");eval(this.matcher.join('\n'));Selector._cache[this.expression]=this.matcher},compileXPathMatcher:function(){var e=this.expression,ps=Selector.patterns,x=Selector.xpath,le,m;if(Selector._cache[e]){this.xpath=Selector._cache[e];return}this.matcher=['.//*'];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){if(m=e.match(ps[i])){this.matcher.push(Object.isFunction(x[i])?x[i](m):new Template(x[i]).evaluate(m));e=e.replace(m[0],'');break}}}this.xpath=this.matcher.join('');Selector._cache[this.expression]=this.xpath},findElements:function(root){root=root||document;if(this.xpath)return document._getElementsByXPath(this.xpath,root);return this.matcher(root)},match:function(element){this.tokens=[];var e=this.expression,ps=Selector.patterns,as=Selector.assertions;var le,p,m;while(e&&le!==e&&(/\S/).test(e)){le=e;for(var i in ps){p=ps[i];if(m=e.match(p)){if(as[i]){this.tokens.push([i,Object.clone(m)]);e=e.replace(m[0],'')}else{return this.findElements(document).include(element)}}}}var match=true,name,matches;for(var i=0,token;token=this.tokens[i];i++){name=token[0],matches=token[1];if(!Selector.assertions[name](element,matches)){match=false;break}}return match},toString:function(){return this.expression},inspect:function(){return"#<Selector:"+this.expression.inspect()+">"}});Object.extend(Selector,{_cache:{},xpath:{descendant:"//*",child:"/*",adjacent:"/following-sibling::*[1]",laterSibling:'/following-sibling::*',tagName:function(m){if(m[1]=='*')return'';return"[local-name()='"+m[1].toLowerCase()+"' or local-name()='"+m[1].toUpperCase()+"']"},className:"[contains(concat(' ', @class, ' '), ' #{1} ')]",id:"[@id='#{1}']",attrPresence:function(m){m[1]=m[1].toLowerCase();return new Template("[@#{1}]").evaluate(m)},attr:function(m){m[1]=m[1].toLowerCase();m[3]=m[5]||m[6];return new Template(Selector.xpath.operators[m[2]]).evaluate(m)},pseudo:function(m){var h=Selector.xpath.pseudos[m[1]];if(!h)return'';if(Object.isFunction(h))return h(m);return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m)},operators:{'=':"[@#{1}='#{3}']",'!=':"[@#{1}!='#{3}']",'^=':"[starts-with(@#{1}, '#{3}')]",'$=':"[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",'*=':"[contains(@#{1}, '#{3}')]",'~=':"[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",'|=':"[contains(concat('-', @#{1}, '-'), '-#{3}-')]"},pseudos:{'first-child':'[not(preceding-sibling::*)]','last-child':'[not(following-sibling::*)]','only-child':'[not(preceding-sibling::* or following-sibling::*)]','empty':"[count(*) = 0 and (count(text()) = 0 or translate(text(), ' \t\r\n', '') = '')]",'checked':"[@checked]",'disabled':"[@disabled]",'enabled':"[not(@disabled)]",'not':function(m){var e=m[6],p=Selector.patterns,x=Selector.xpath,le,v;var exclusion=[];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in p){if(m=e.match(p[i])){v=Object.isFunction(x[i])?x[i](m):new Template(x[i]).evaluate(m);exclusion.push("("+v.substring(1,v.length-1)+")");e=e.replace(m[0],'');break}}}return"[not("+exclusion.join(" and ")+")]"},'nth-child':function(m){return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ",m)},'nth-last-child':function(m){return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ",m)},'nth-of-type':function(m){return Selector.xpath.pseudos.nth("position() ",m)},'nth-last-of-type':function(m){return Selector.xpath.pseudos.nth("(last() + 1 - position()) ",m)},'first-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-of-type'](m)},'last-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-last-of-type'](m)},'only-of-type':function(m){var p=Selector.xpath.pseudos;return p['first-of-type'](m)+p['last-of-type'](m)},nth:function(fragment,m){var mm,formula=m[6],predicate;if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';if(mm=formula.match(/^(\d+)$/))return'['+fragment+"= "+mm[1]+']';if(mm=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(mm[1]=="-")mm[1]=-1;var a=mm[1]?Number(mm[1]):1;var b=mm[2]?Number(mm[2]):0;predicate="[((#{fragment} - #{b}) mod #{a} = 0) and "+"((#{fragment} - #{b}) div #{a} >= 0)]";return new Template(predicate).evaluate({fragment:fragment,a:a,b:b})}}}},criteria:{tagName:'n = h.tagName(n, r, "#{1}", c);      c = false;',className:'n = h.className(n, r, "#{1}", c);    c = false;',id:'n = h.id(n, r, "#{1}", c);           c = false;',attrPresence:'n = h.attrPresence(n, r, "#{1}", c); c = false;',attr:function(m){m[3]=(m[5]||m[6]);return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m)},pseudo:function(m){if(m[6])m[6]=m[6].replace(/"/g,'\\"');return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m)},descendant:'c = "descendant";',child:'c = "child";',adjacent:'c = "adjacent";',laterSibling:'c = "laterSibling";'},patterns:{laterSibling:/^\s*~\s*/,child:/^\s*>\s*/,adjacent:/^\s*\+\s*/,descendant:/^\s/,tagName:/^\s*(\*|[\w\-]+)(\b|$)?/,id:/^#([\w\-\*]+)(\b|$)/,className:/^\.([\w\-\*]+)(\b|$)/,pseudo:/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,attrPresence:/^\[([\w]+)\]/,attr:/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/},assertions:{tagName:function(element,matches){return matches[1].toUpperCase()==element.tagName.toUpperCase()},className:function(element,matches){return Element.hasClassName(element,matches[1])},id:function(element,matches){return element.id===matches[1]},attrPresence:function(element,matches){return Element.hasAttribute(element,matches[1])},attr:function(element,matches){var nodeValue=Element.readAttribute(element,matches[1]);return nodeValue&&Selector.operators[matches[2]](nodeValue,matches[5]||matches[6])}},handlers:{concat:function(a,b){for(var i=0,node;node=b[i];i++)a.push(node);return a},mark:function(nodes){var _true=Prototype.emptyFunction;for(var i=0,node;node=nodes[i];i++)node._countedByPrototype=_true;return nodes},unmark:function(nodes){for(var i=0,node;node=nodes[i];i++)node._countedByPrototype=undefined;return nodes},index:function(parentNode,reverse,ofType){parentNode._countedByPrototype=Prototype.emptyFunction;if(reverse){for(var nodes=parentNode.childNodes,i=nodes.length-1,j=1;i>=0;i--){var node=nodes[i];if(node.nodeType==1&&(!ofType||node._countedByPrototype))node.nodeIndex=j++}}else{for(var i=0,j=1,nodes=parentNode.childNodes;node=nodes[i];i++)if(node.nodeType==1&&(!ofType||node._countedByPrototype))node.nodeIndex=j++}},unique:function(nodes){if(nodes.length==0)return nodes;var results=[],n;for(var i=0,l=nodes.length;i<l;i++)if(!(n=nodes[i])._countedByPrototype){n._countedByPrototype=Prototype.emptyFunction;results.push(Element.extend(n))}return Selector.handlers.unmark(results)},descendant:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)h.concat(results,node.getElementsByTagName('*'));return results},child:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++){for(var j=0,child;child=node.childNodes[j];j++)if(child.nodeType==1&&child.tagName!='!')results.push(child)}return results},adjacent:function(nodes){for(var i=0,results=[],node;node=nodes[i];i++){var next=this.nextElementSibling(node);if(next)results.push(next)}return results},laterSibling:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)h.concat(results,Element.nextSiblings(node));return results},nextElementSibling:function(node){while(node=node.nextSibling)if(node.nodeType==1)return node;return null},previousElementSibling:function(node){while(node=node.previousSibling)if(node.nodeType==1)return node;return null},tagName:function(nodes,root,tagName,combinator){var uTagName=tagName.toUpperCase();var results=[],h=Selector.handlers;if(nodes){if(combinator){if(combinator=="descendant"){for(var i=0,node;node=nodes[i];i++)h.concat(results,node.getElementsByTagName(tagName));return results}else nodes=this[combinator](nodes);if(tagName=="*")return nodes}for(var i=0,node;node=nodes[i];i++)if(node.tagName.toUpperCase()===uTagName)results.push(node);return results}else return root.getElementsByTagName(tagName)},id:function(nodes,root,id,combinator){var targetNode=$(id),h=Selector.handlers;if(!targetNode)return[];if(!nodes&&root==document)return[targetNode];if(nodes){if(combinator){if(combinator=='child'){for(var i=0,node;node=nodes[i];i++)if(targetNode.parentNode==node)return[targetNode]}else if(combinator=='descendant'){for(var i=0,node;node=nodes[i];i++)if(Element.descendantOf(targetNode,node))return[targetNode]}else if(combinator=='adjacent'){for(var i=0,node;node=nodes[i];i++)if(Selector.handlers.previousElementSibling(targetNode)==node)return[targetNode]}else nodes=h[combinator](nodes)}for(var i=0,node;node=nodes[i];i++)if(node==targetNode)return[targetNode];return[]}return(targetNode&&Element.descendantOf(targetNode,root))?[targetNode]:[]},className:function(nodes,root,className,combinator){if(nodes&&combinator)nodes=this[combinator](nodes);return Selector.handlers.byClassName(nodes,root,className)},byClassName:function(nodes,root,className){if(!nodes)nodes=Selector.handlers.descendant([root]);var needle=' '+className+' ';for(var i=0,results=[],node,nodeClassName;node=nodes[i];i++){nodeClassName=node.className;if(nodeClassName.length==0)continue;if(nodeClassName==className||(' '+nodeClassName+' ').include(needle))results.push(node)}return results},attrPresence:function(nodes,root,attr,combinator){if(!nodes)nodes=root.getElementsByTagName("*");if(nodes&&combinator)nodes=this[combinator](nodes);var results=[];for(var i=0,node;node=nodes[i];i++)if(Element.hasAttribute(node,attr))results.push(node);return results},attr:function(nodes,root,attr,value,operator,combinator){if(!nodes)nodes=root.getElementsByTagName("*");if(nodes&&combinator)nodes=this[combinator](nodes);var handler=Selector.operators[operator],results=[];for(var i=0,node;node=nodes[i];i++){var nodeValue=Element.readAttribute(node,attr);if(nodeValue===null)continue;if(handler(nodeValue,value))results.push(node)}return results},pseudo:function(nodes,name,value,root,combinator){if(nodes&&combinator)nodes=this[combinator](nodes);if(!nodes)nodes=root.getElementsByTagName("*");return Selector.pseudos[name](nodes,value,root)}},pseudos:{'first-child':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(Selector.handlers.previousElementSibling(node))continue;results.push(node)}return results},'last-child':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(Selector.handlers.nextElementSibling(node))continue;results.push(node)}return results},'only-child':function(nodes,value,root){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)if(!h.previousElementSibling(node)&&!h.nextElementSibling(node))results.push(node);return results},'nth-child':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root)},'nth-last-child':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,true)},'nth-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,false,true)},'nth-last-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,true,true)},'first-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,"1",root,false,true)},'last-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,"1",root,true,true)},'only-of-type':function(nodes,formula,root){var p=Selector.pseudos;return p['last-of-type'](p['first-of-type'](nodes,formula,root),formula,root)},getIndices:function(a,b,total){if(a==0)return b>0?[b]:[];return $R(1,total).inject([],function(memo,i){if(0==(i-b)%a&&(i-b)/a>=0)memo.push(i);return memo})},nth:function(nodes,formula,root,reverse,ofType){if(nodes.length==0)return[];if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';var h=Selector.handlers,results=[],indexed=[],m;h.mark(nodes);for(var i=0,node;node=nodes[i];i++){if(!node.parentNode._countedByPrototype){h.index(node.parentNode,reverse,ofType);indexed.push(node.parentNode)}}if(formula.match(/^\d+$/)){formula=Number(formula);for(var i=0,node;node=nodes[i];i++)if(node.nodeIndex==formula)results.push(node)}else if(m=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(m[1]=="-")m[1]=-1;var a=m[1]?Number(m[1]):1;var b=m[2]?Number(m[2]):0;var indices=Selector.pseudos.getIndices(a,b,nodes.length);for(var i=0,node,l=indices.length;node=nodes[i];i++){for(var j=0;j<l;j++)if(node.nodeIndex==indices[j])results.push(node)}}h.unmark(nodes);h.unmark(indexed);return results},'empty':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(node.tagName=='!'||(node.firstChild&&!node.innerHTML.match(/^\s*$/)))continue;results.push(node)}return results},'not':function(nodes,selector,root){var h=Selector.handlers,selectorType,m;var exclusions=new Selector(selector).findElements(root);h.mark(exclusions);for(var i=0,results=[],node;node=nodes[i];i++)if(!node._countedByPrototype)results.push(node);h.unmark(exclusions);return results},'enabled':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)if(!node.disabled)results.push(node);return results},'disabled':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)if(node.disabled)results.push(node);return results},'checked':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)if(node.checked)results.push(node);return results}},operators:{'=':function(nv,v){return nv==v},'!=':function(nv,v){return nv!=v},'^=':function(nv,v){return nv.startsWith(v)},'$=':function(nv,v){return nv.endsWith(v)},'*=':function(nv,v){return nv.include(v)},'~=':function(nv,v){return(' '+nv+' ').include(' '+v+' ')},'|=':function(nv,v){return('-'+nv.toUpperCase()+'-').include('-'+v.toUpperCase()+'-')}},split:function(expression){var expressions=[];expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/,function(m){expressions.push(m[1].strip())});return expressions},matchElements:function(elements,expression){var matches=$$(expression),h=Selector.handlers;h.mark(matches);for(var i=0,results=[],element;element=elements[i];i++)if(element._countedByPrototype)results.push(element);h.unmark(matches);return results},findElement:function(elements,expression,index){if(Object.isNumber(expression)){index=expression;expression=false}return Selector.matchElements(elements,expression||'*')[index||0]},findChildElements:function(element,expressions){expressions=Selector.split(expressions.join(','));var results=[],h=Selector.handlers;for(var i=0,l=expressions.length,selector;i<l;i++){selector=new Selector(expressions[i].strip());h.concat(results,selector.findElements(element))}return(l>1)?h.unique(results):results}});if(Prototype.Browser.IE){Object.extend(Selector.handlers,{concat:function(a,b){for(var i=0,node;node=b[i];i++)if(node.tagName!=="!")a.push(node);return a},unmark:function(nodes){for(var i=0,node;node=nodes[i];i++)node.removeAttribute('_countedByPrototype');return nodes}})}function $$(){return Selector.findChildElements(document,$A(arguments))}var Form={reset:function(form){$(form).reset();return form},serializeElements:function(elements,options){if(typeof options!='object')options={hash:!!options};else if(Object.isUndefined(options.hash))options.hash=true;var key,value,submitted=false,submit=options.submit;var data=elements.inject({},function(result,element){if(!element.disabled&&element.name){key=element.name;value=$(element).getValue();if(value!=null&&(element.type!='submit'||(!submitted&&submit!==false&&(!submit||key==submit)&&(submitted=true)))){if(key in result){if(!Object.isArray(result[key]))result[key]=[result[key]];result[key].push(value)}else result[key]=value}}return result});return options.hash?data:Object.toQueryString(data)}};Form.Methods={serialize:function(form,options){return Form.serializeElements(Form.getElements(form),options)},getElements:function(form){return $A($(form).getElementsByTagName('*')).inject([],function(elements,child){if(Form.Element.Serializers[child.tagName.toLowerCase()])elements.push(Element.extend(child));return elements})},getInputs:function(form,typeName,name){form=$(form);var inputs=form.getElementsByTagName('input');if(!typeName&&!name)return $A(inputs).map(Element.extend);for(var i=0,matchingInputs=[],length=inputs.length;i<length;i++){var input=inputs[i];if((typeName&&input.type!=typeName)||(name&&input.name!=name))continue;matchingInputs.push(Element.extend(input))}return matchingInputs},disable:function(form){form=$(form);Form.getElements(form).invoke('disable');return form},enable:function(form){form=$(form);Form.getElements(form).invoke('enable');return form},findFirstElement:function(form){var elements=$(form).getElements().findAll(function(element){return'hidden'!=element.type&&!element.disabled});var firstByIndex=elements.findAll(function(element){return element.hasAttribute('tabIndex')&&element.tabIndex>=0}).sortBy(function(element){return element.tabIndex}).first();return firstByIndex?firstByIndex:elements.find(function(element){return['input','select','textarea'].include(element.tagName.toLowerCase())})},focusFirstElement:function(form){form=$(form);form.findFirstElement().activate();return form},request:function(form,options){form=$(form),options=Object.clone(options||{});var params=options.parameters,action=form.readAttribute('action')||'';if(action.blank())action=window.location.href;options.parameters=form.serialize(true);if(params){if(Object.isString(params))params=params.toQueryParams();Object.extend(options.parameters,params)}if(form.hasAttribute('method')&&!options.method)options.method=form.method;return new Ajax.Request(action,options)}};Form.Element={focus:function(element){$(element).focus();return element},select:function(element){$(element).select();return element}};Form.Element.Methods={serialize:function(element){element=$(element);if(!element.disabled&&element.name){var value=element.getValue();if(value!=undefined){var pair={};pair[element.name]=value;return Object.toQueryString(pair)}}return''},getValue:function(element){element=$(element);var method=element.tagName.toLowerCase();return Form.Element.Serializers[method](element)},setValue:function(element,value){element=$(element);var method=element.tagName.toLowerCase();Form.Element.Serializers[method](element,value);return element},clear:function(element){$(element).value='';return element},present:function(element){return $(element).value!=''},activate:function(element){element=$(element);try{element.focus();if(element.select&&(element.tagName.toLowerCase()!='input'||!['button','reset','submit'].include(element.type)))element.select()}catch(e){}return element},disable:function(element){element=$(element);element.blur();element.disabled=true;return element},enable:function(element){element=$(element);element.disabled=false;return element}};var Field=Form.Element;var $F=Form.Element.Methods.getValue;Form.Element.Serializers={input:function(element,value){switch(element.type.toLowerCase()){case'checkbox':case'radio':return Form.Element.Serializers.inputSelector(element,value);default:return Form.Element.Serializers.textarea(element,value)}},inputSelector:function(element,value){if(Object.isUndefined(value))return element.checked?element.value:null;else element.checked=!!value},textarea:function(element,value){if(Object.isUndefined(value))return element.value;else element.value=value},select:function(element,index){if(Object.isUndefined(index))return this[element.type=='select-one'?'selectOne':'selectMany'](element);else{var opt,value,single=!Object.isArray(index);for(var i=0,length=element.length;i<length;i++){opt=element.options[i];value=this.optionValue(opt);if(single){if(value==index){opt.selected=true;return}}else opt.selected=index.include(value)}}},selectOne:function(element){var index=element.selectedIndex;return index>=0?this.optionValue(element.options[index]):null},selectMany:function(element){var values,length=element.length;if(!length)return null;for(var i=0,values=[];i<length;i++){var opt=element.options[i];if(opt.selected)values.push(this.optionValue(opt))}return values},optionValue:function(opt){return Element.extend(opt).hasAttribute('value')?opt.value:opt.text}};Abstract.TimedObserver=Class.create(PeriodicalExecuter,{initialize:function($super,element,frequency,callback){$super(callback,frequency);this.element=$(element);this.lastValue=this.getValue()},execute:function(){var value=this.getValue();if(Object.isString(this.lastValue)&&Object.isString(value)?this.lastValue!=value:String(this.lastValue)!=String(value)){this.callback(this.element,value);this.lastValue=value}}});Form.Element.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.Element.getValue(this.element)}});Form.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.serialize(this.element)}});Abstract.EventObserver=Class.create({initialize:function(element,callback){this.element=$(element);this.callback=callback;this.lastValue=this.getValue();if(this.element.tagName.toLowerCase()=='form')this.registerFormCallbacks();else this.registerCallback(this.element)},onElementEvent:function(){var value=this.getValue();if(this.lastValue!=value){this.callback(this.element,value);this.lastValue=value}},registerFormCallbacks:function(){Form.getElements(this.element).each(this.registerCallback,this)},registerCallback:function(element){if(element.type){switch(element.type.toLowerCase()){case'checkbox':case'radio':Event.observe(element,'click',this.onElementEvent.bind(this));break;default:Event.observe(element,'change',this.onElementEvent.bind(this));break}}}});Form.Element.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.Element.getValue(this.element)}});Form.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.serialize(this.element)}});if(!window.Event)var Event={};Object.extend(Event,{KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,KEY_HOME:36,KEY_END:35,KEY_PAGEUP:33,KEY_PAGEDOWN:34,KEY_INSERT:45,cache:{},relatedTarget:function(event){var element;switch(event.type){case'mouseover':element=event.fromElement;break;case'mouseout':element=event.toElement;break;default:return null}return Element.extend(element)}});Event.Methods=(function(){var isButton;if(Prototype.Browser.IE){var buttonMap={0:1,1:4,2:2};isButton=function(event,code){return event.button==buttonMap[code]}}else if(Prototype.Browser.WebKit){isButton=function(event,code){switch(code){case 0:return event.which==1&&!event.metaKey;case 1:return event.which==1&&event.metaKey;default:return false}}}else{isButton=function(event,code){return event.which?(event.which===code+1):(event.button===code)}}return{isLeftClick:function(event){return isButton(event,0)},isMiddleClick:function(event){return isButton(event,1)},isRightClick:function(event){return isButton(event,2)},element:function(event){var node=Event.extend(event).target;return Element.extend(node.nodeType==Node.TEXT_NODE?node.parentNode:node)},findElement:function(event,expression){var element=Event.element(event);if(!expression)return element;var elements=[element].concat(element.ancestors());return Selector.findElement(elements,expression,0)},pointer:function(event){return{x:event.pageX||(event.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)),y:event.pageY||(event.clientY+(document.documentElement.scrollTop||document.body.scrollTop))}},pointerX:function(event){return Event.pointer(event).x},pointerY:function(event){return Event.pointer(event).y},stop:function(event){Event.extend(event);event.preventDefault();event.stopPropagation();event.stopped=true}}})();Event.extend=(function(){var methods=Object.keys(Event.Methods).inject({},function(m,name){m[name]=Event.Methods[name].methodize();return m});if(Prototype.Browser.IE){Object.extend(methods,{stopPropagation:function(){this.cancelBubble=true},preventDefault:function(){this.returnValue=false},inspect:function(){return"[object Event]"}});return function(event){if(!event)return false;if(event._extendedByPrototype)return event;event._extendedByPrototype=Prototype.emptyFunction;var pointer=Event.pointer(event);Object.extend(event,{target:event.srcElement,relatedTarget:Event.relatedTarget(event),pageX:pointer.x,pageY:pointer.y});return Object.extend(event,methods)}}else{Event.prototype=Event.prototype||document.createEvent("HTMLEvents").__proto__;Object.extend(Event.prototype,methods);return Prototype.K}})();Object.extend(Event,(function(){var cache=Event.cache;function getEventID(element){if(element._prototypeEventID)return element._prototypeEventID[0];arguments.callee.id=arguments.callee.id||1;return element._prototypeEventID=[++arguments.callee.id]}function getDOMEventName(eventName){if(eventName&&eventName.include(':'))return"dataavailable";return eventName}function getCacheForID(id){return cache[id]=cache[id]||{}}function getWrappersForEventName(id,eventName){var c=getCacheForID(id);return c[eventName]=c[eventName]||[]}function createWrapper(element,eventName,handler){var id=getEventID(element);var c=getWrappersForEventName(id,eventName);if(c.pluck("handler").include(handler))return false;var wrapper=function(event){if(!Event||!Event.extend||(event.eventName&&event.eventName!=eventName))return false;Event.extend(event);handler.call(element,event)};wrapper.handler=handler;c.push(wrapper);return wrapper}function findWrapper(id,eventName,handler){var c=getWrappersForEventName(id,eventName);return c.find(function(wrapper){return wrapper.handler==handler})}function destroyWrapper(id,eventName,handler){var c=getCacheForID(id);if(!c[eventName])return false;c[eventName]=c[eventName].without(findWrapper(id,eventName,handler))}function destroyCache(){for(var id in cache)for(var eventName in cache[id])cache[id][eventName]=null}if(window.attachEvent){window.attachEvent("onunload",destroyCache)}return{observe:function(element,eventName,handler){element=$(element);var name=getDOMEventName(eventName);var wrapper=createWrapper(element,eventName,handler);if(!wrapper)return element;if(element.addEventListener){element.addEventListener(name,wrapper,false)}else{element.attachEvent("on"+name,wrapper)}return element},stopObserving:function(element,eventName,handler){element=$(element);var id=getEventID(element),name=getDOMEventName(eventName);if(!handler&&eventName){getWrappersForEventName(id,eventName).each(function(wrapper){element.stopObserving(eventName,wrapper.handler)});return element}else if(!eventName){Object.keys(getCacheForID(id)).each(function(eventName){element.stopObserving(eventName)});return element}var wrapper=findWrapper(id,eventName,handler);if(!wrapper)return element;if(element.removeEventListener){element.removeEventListener(name,wrapper,false)}else{element.detachEvent("on"+name,wrapper)}destroyWrapper(id,eventName,handler);return element},fire:function(element,eventName,memo){element=$(element);if(element==document&&document.createEvent&&!element.dispatchEvent)element=document.documentElement;var event;if(document.createEvent){event=document.createEvent("HTMLEvents");event.initEvent("dataavailable",true,true)}else{event=document.createEventObject();event.eventType="ondataavailable"}event.eventName=eventName;event.memo=memo||{};if(document.createEvent){element.dispatchEvent(event)}else{element.fireEvent(event.eventType,event)}return Event.extend(event)}}})());Object.extend(Event,Event.Methods);Element.addMethods({fire:Event.fire,observe:Event.observe,stopObserving:Event.stopObserving});Object.extend(document,{fire:Element.Methods.fire.methodize(),observe:Element.Methods.observe.methodize(),stopObserving:Element.Methods.stopObserving.methodize(),loaded:false});(function(){var timer;function fireContentLoadedEvent(){if(document.loaded)return;if(timer)window.clearInterval(timer);document.fire("dom:loaded");document.loaded=true}if(document.addEventListener){if(Prototype.Browser.WebKit){timer=window.setInterval(function(){if(/loaded|complete/.test(document.readyState))fireContentLoadedEvent()},0);Event.observe(window,"load",fireContentLoadedEvent)}else{document.addEventListener("DOMContentLoaded",fireContentLoadedEvent,false)}}else{document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");$("__onDOMContentLoaded").onreadystatechange=function(){if(this.readyState=="complete"){this.onreadystatechange=null;fireContentLoadedEvent()}}}})();Hash.toQueryString=Object.toQueryString;var Toggle={display:Element.toggle};Element.Methods.childOf=Element.Methods.descendantOf;var Insertion={Before:function(element,content){return Element.insert(element,{before:content})},Top:function(element,content){return Element.insert(element,{top:content})},Bottom:function(element,content){return Element.insert(element,{bottom:content})},After:function(element,content){return Element.insert(element,{after:content})}};var $continue=new Error('"throw $continue" is deprecated, use "return" instead');var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0},within:function(element,x,y){if(this.includeScrollOffsets)return this.withinIncludingScrolloffsets(element,x,y);this.xcomp=x;this.ycomp=y;this.offset=Element.cumulativeOffset(element);return(y>=this.offset[1]&&y<this.offset[1]+element.offsetHeight&&x>=this.offset[0]&&x<this.offset[0]+element.offsetWidth)},withinIncludingScrolloffsets:function(element,x,y){var offsetcache=Element.cumulativeScrollOffset(element);this.xcomp=x+offsetcache[0]-this.deltaX;this.ycomp=y+offsetcache[1]-this.deltaY;this.offset=Element.cumulativeOffset(element);return(this.ycomp>=this.offset[1]&&this.ycomp<this.offset[1]+element.offsetHeight&&this.xcomp>=this.offset[0]&&this.xcomp<this.offset[0]+element.offsetWidth)},overlap:function(mode,element){if(!mode)return 0;if(mode=='vertical')return((this.offset[1]+element.offsetHeight)-this.ycomp)/element.offsetHeight;if(mode=='horizontal')return((this.offset[0]+element.offsetWidth)-this.xcomp)/element.offsetWidth},cumulativeOffset:Element.Methods.cumulativeOffset,positionedOffset:Element.Methods.positionedOffset,absolutize:function(element){Position.prepare();return Element.absolutize(element)},relativize:function(element){Position.prepare();return Element.relativize(element)},realOffset:Element.Methods.cumulativeScrollOffset,offsetParent:Element.Methods.getOffsetParent,page:Element.Methods.viewportOffset,clone:function(source,target,options){options=options||{};return Element.clonePosition(target,source,options)}};if(!document.getElementsByClassName)document.getElementsByClassName=function(instanceMethods){function iter(name){return name.blank()?null:"[contains(concat(' ', @class, ' '), ' "+name+" ')]"}instanceMethods.getElementsByClassName=Prototype.BrowserFeatures.XPath?function(element,className){className=className.toString().strip();var cond=/\s/.test(className)?$w(className).map(iter).join(''):iter(className);return cond?document._getElementsByXPath('.//*'+cond,element):[]}:function(element,className){className=className.toString().strip();var elements=[],classNames=(/\s/.test(className)?$w(className):null);if(!classNames&&!className)return elements;var nodes=$(element).getElementsByTagName('*');className=' '+className+' ';for(var i=0,child,cn;child=nodes[i];i++){if(child.className&&(cn=' '+child.className+' ')&&(cn.include(className)||(classNames&&classNames.all(function(name){return!name.toString().blank()&&cn.include(' '+name+' ')}))))elements.push(Element.extend(child))}return elements};return function(className,parentElement){return $(parentElement||document.body).getElementsByClassName(className)}}(Element.Methods);Element.ClassNames=Class.create();Element.ClassNames.prototype={initialize:function(element){this.element=$(element)},_each:function(iterator){this.element.className.split(/\s+/).select(function(name){return name.length>0})._each(iterator)},set:function(className){this.element.className=className},add:function(classNameToAdd){if(this.include(classNameToAdd))return;this.set($A(this).concat(classNameToAdd).join(' '))},remove:function(classNameToRemove){if(!this.include(classNameToRemove))return;this.set($A(this).without(classNameToRemove).join(' '))},toString:function(){return $A(this).join(' ')}};Object.extend(Element.ClassNames.prototype,Enumerable);Element.addMethods();String.prototype.parseColor=function(){var color='#';if(this.slice(0,4)=='rgb('){var cols=this.slice(4,this.length-1).split(',');var i=0;do{color+=parseInt(cols[i]).toColorPart()}while(++i<3)}else{if(this.slice(0,1)=='#'){if(this.length==4)for(var i=1;i<4;i++)color+=(this.charAt(i)+this.charAt(i)).toLowerCase();if(this.length==7)color=this.toLowerCase()}}return(color.length==7?color:(arguments[0]||this))};Element.collectTextNodes=function(element){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:(node.hasChildNodes()?Element.collectTextNodes(node):''))}).flatten().join('')};Element.collectTextNodesIgnoreClass=function(element,className){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:((node.hasChildNodes()&&!Element.hasClassName(node,className))?Element.collectTextNodesIgnoreClass(node,className):''))}).flatten().join('')};Element.setContentZoom=function(element,percent){element=$(element);element.setStyle({fontSize:(percent/100)+'em'});if(Prototype.Browser.WebKit)window.scrollBy(0,0);return element};Element.getInlineOpacity=function(element){return $(element).style.opacity||''};Element.forceRerendering=function(element){try{element=$(element);var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n)}catch(e){}};var Effect={_elementDoesNotExistError:{name:'ElementDoesNotExistError',message:'The specified DOM element does not exist, but is required for this effect to operate'},Transitions:{linear:Prototype.K,sinoidal:function(pos){return(-Math.cos(pos*Math.PI)/2)+.5},reverse:function(pos){return 1-pos},flicker:function(pos){var pos=((-Math.cos(pos*Math.PI)/4)+.75)+Math.random()/4;return pos>1?1:pos},wobble:function(pos){return(-Math.cos(pos*Math.PI*(9*pos))/2)+.5},pulse:function(pos,pulses){return(-Math.cos((pos*((pulses||5)-.5)*2)*Math.PI)/2)+.5},spring:function(pos){return 1-(Math.cos(pos*4.5*Math.PI)*Math.exp(-pos*6))},none:function(pos){return 0},full:function(pos){return 1}},DefaultOptions:{duration:1.0,fps:100,sync:false,from:0.0,to:1.0,delay:0.0,queue:'parallel'},tagifyText:function(element){var tagifyStyle='position:relative';if(Prototype.Browser.IE)tagifyStyle+=';zoom:1';element=$(element);$A(element.childNodes).each(function(child){if(child.nodeType==3){child.nodeValue.toArray().each(function(character){element.insertBefore(new Element('span',{style:tagifyStyle}).update(character==' '?String.fromCharCode(160):character),child)});Element.remove(child)}})},multiple:function(element,effect){var elements;if(((typeof element=='object')||Object.isFunction(element))&&(element.length))elements=element;else elements=$(element).childNodes;var options=Object.extend({speed:0.1,delay:0.0},arguments[2]||{});var masterDelay=options.delay;$A(elements).each(function(element,index){new effect(element,Object.extend(options,{delay:index*options.speed+masterDelay}))})},PAIRS:{'slide':['SlideDown','SlideUp'],'blind':['BlindDown','BlindUp'],'appear':['Appear','Fade']},toggle:function(element,effect,options){element=$(element);effect=(effect||'appear').toLowerCase();return Effect[Effect.PAIRS[effect][element.visible()?1:0]](element,Object.extend({queue:{position:'end',scope:(element.id||'global'),limit:1}},options||{}))}};Effect.DefaultOptions.transition=Effect.Transitions.sinoidal;Effect.ScopedQueue=Class.create(Enumerable,{initialize:function(){this.effects=[];this.interval=null},_each:function(iterator){this.effects._each(iterator)},add:function(effect){var timestamp=new Date().getTime();var position=Object.isString(effect.options.queue)?effect.options.queue:effect.options.queue.position;switch(position){case'front':this.effects.findAll(function(e){return e.state=='idle'}).each(function(e){e.startOn+=effect.finishOn;e.finishOn+=effect.finishOn});break;case'with-last':timestamp=this.effects.pluck('startOn').max()||timestamp;break;case'end':timestamp=this.effects.pluck('finishOn').max()||timestamp;break}effect.startOn+=timestamp;effect.finishOn+=timestamp;if(!effect.options.queue.limit||(this.effects.length<effect.options.queue.limit))this.effects.push(effect);if(!this.interval)this.interval=setInterval(this.loop.bind(this),15)},remove:function(effect){this.effects=this.effects.reject(function(e){return e==effect});if(this.effects.length==0){clearInterval(this.interval);this.interval=null}},loop:function(){var timePos=new Date().getTime();for(var i=0,len=this.effects.length;i<len;i++)this.effects[i]&&this.effects[i].loop(timePos)}});Effect.Queues={instances:$H(),get:function(queueName){if(!Object.isString(queueName))return queueName;return this.instances.get(queueName)||this.instances.set(queueName,new Effect.ScopedQueue())}};Effect.Queue=Effect.Queues.get('global');Effect.Base=Class.create({position:null,start:function(options){if(options&&options.transition===false)options.transition=Effect.Transitions.linear;this.options=Object.extend(Object.extend({},Effect.DefaultOptions),options||{});this.currentFrame=0;this.state='idle';this.startOn=this.options.delay*1000;this.finishOn=this.startOn+(this.options.duration*1000);this.fromToDelta=this.options.to-this.options.from;this.totalTime=this.finishOn-this.startOn;this.totalFrames=this.options.fps*this.options.duration;this.render=(function(){function dispatch(effect,eventName){if(effect.options[eventName+'Internal'])effect.options[eventName+'Internal'](effect);if(effect.options[eventName])effect.options[eventName](effect)}return function(pos){if(this.state==="idle"){this.state="running";dispatch(this,'beforeSetup');if(this.setup)this.setup();dispatch(this,'afterSetup')}if(this.state==="running"){pos=(this.options.transition(pos)*this.fromToDelta)+this.options.from;this.position=pos;dispatch(this,'beforeUpdate');if(this.update)this.update(pos);dispatch(this,'afterUpdate')}}})();this.event('beforeStart');if(!this.options.sync)Effect.Queues.get(Object.isString(this.options.queue)?'global':this.options.queue.scope).add(this)},loop:function(timePos){if(timePos>=this.startOn){if(timePos>=this.finishOn){this.render(1.0);this.cancel();this.event('beforeFinish');if(this.finish)this.finish();this.event('afterFinish');return}var pos=(timePos-this.startOn)/this.totalTime,frame=(pos*this.totalFrames).round();if(frame>this.currentFrame){this.render(pos);this.currentFrame=frame}}},cancel:function(){if(!this.options.sync)Effect.Queues.get(Object.isString(this.options.queue)?'global':this.options.queue.scope).remove(this);this.state='finished'},event:function(eventName){if(this.options[eventName+'Internal'])this.options[eventName+'Internal'](this);if(this.options[eventName])this.options[eventName](this)},inspect:function(){var data=$H();for(property in this)if(!Object.isFunction(this[property]))data.set(property,this[property]);return'#<Effect:'+data.inspect()+',options:'+$H(this.options).inspect()+'>'}});Effect.Parallel=Class.create(Effect.Base,{initialize:function(effects){this.effects=effects||[];this.start(arguments[1])},update:function(position){this.effects.invoke('render',position)},finish:function(position){this.effects.each(function(effect){effect.render(1.0);effect.cancel();effect.event('beforeFinish');if(effect.finish)effect.finish(position);effect.event('afterFinish')})}});Effect.Tween=Class.create(Effect.Base,{initialize:function(object,from,to){object=Object.isString(object)?$(object):object;var args=$A(arguments),method=args.last(),options=args.length==5?args[3]:null;this.method=Object.isFunction(method)?method.bind(object):Object.isFunction(object[method])?object[method].bind(object):function(value){object[method]=value};this.start(Object.extend({from:from,to:to},options||{}))},update:function(position){this.method(position)}});Effect.Event=Class.create(Effect.Base,{initialize:function(){this.start(Object.extend({duration:0},arguments[0]||{}))},update:Prototype.emptyFunction});Effect.Opacity=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);if(Prototype.Browser.IE&&(!this.element.currentStyle.hasLayout))this.element.setStyle({zoom:1});var options=Object.extend({from:this.element.getOpacity()||0.0,to:1.0},arguments[1]||{});this.start(options)},update:function(position){this.element.setOpacity(position)}});Effect.Move=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({x:0,y:0,mode:'relative'},arguments[1]||{});this.start(options)},setup:function(){this.element.makePositioned();this.originalLeft=parseFloat(this.element.getStyle('left')||'0');this.originalTop=parseFloat(this.element.getStyle('top')||'0');if(this.options.mode=='absolute'){this.options.x=this.options.x-this.originalLeft;this.options.y=this.options.y-this.originalTop}},update:function(position){this.element.setStyle({left:(this.options.x*position+this.originalLeft).round()+'px',top:(this.options.y*position+this.originalTop).round()+'px'})}});Effect.MoveBy=function(element,toTop,toLeft){return new Effect.Move(element,Object.extend({x:toLeft,y:toTop},arguments[3]||{}))};Effect.Scale=Class.create(Effect.Base,{initialize:function(element,percent){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({scaleX:true,scaleY:true,scaleContent:true,scaleFromCenter:false,scaleMode:'box',scaleFrom:100.0,scaleTo:percent},arguments[2]||{});this.start(options)},setup:function(){this.restoreAfterFinish=this.options.restoreAfterFinish||false;this.elementPositioning=this.element.getStyle('position');this.originalStyle={};['top','left','width','height','fontSize'].each(function(k){this.originalStyle[k]=this.element.style[k]}.bind(this));this.originalTop=this.element.offsetTop;this.originalLeft=this.element.offsetLeft;var fontSize=this.element.getStyle('font-size')||'100%';['em','px','%','pt'].each(function(fontSizeType){if(fontSize.indexOf(fontSizeType)>0){this.fontSize=parseFloat(fontSize);this.fontSizeType=fontSizeType}}.bind(this));this.factor=(this.options.scaleTo-this.options.scaleFrom)/100;this.dims=null;if(this.options.scaleMode=='box')this.dims=[this.element.offsetHeight,this.element.offsetWidth];if(/^content/.test(this.options.scaleMode))this.dims=[this.element.scrollHeight,this.element.scrollWidth];if(!this.dims)this.dims=[this.options.scaleMode.originalHeight,this.options.scaleMode.originalWidth]},update:function(position){var currentScale=(this.options.scaleFrom/100.0)+(this.factor*position);if(this.options.scaleContent&&this.fontSize)this.element.setStyle({fontSize:this.fontSize*currentScale+this.fontSizeType});this.setDimensions(this.dims[0]*currentScale,this.dims[1]*currentScale)},finish:function(position){if(this.restoreAfterFinish)this.element.setStyle(this.originalStyle)},setDimensions:function(height,width){var d={};if(this.options.scaleX)d.width=width.round()+'px';if(this.options.scaleY)d.height=height.round()+'px';if(this.options.scaleFromCenter){var topd=(height-this.dims[0])/2;var leftd=(width-this.dims[1])/2;if(this.elementPositioning=='absolute'){if(this.options.scaleY)d.top=this.originalTop-topd+'px';if(this.options.scaleX)d.left=this.originalLeft-leftd+'px'}else{if(this.options.scaleY)d.top=-topd+'px';if(this.options.scaleX)d.left=-leftd+'px'}}this.element.setStyle(d)}});Effect.Highlight=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});this.start(options)},setup:function(){if(this.element.getStyle('display')=='none'){this.cancel();return}this.oldStyle={};if(!this.options.keepBackgroundImage){this.oldStyle.backgroundImage=this.element.getStyle('background-image');this.element.setStyle({backgroundImage:'none'})}if(!this.options.endcolor)this.options.endcolor=this.element.getStyle('background-color').parseColor('#ffffff');if(!this.options.restorecolor)this.options.restorecolor=this.element.getStyle('background-color');this._base=$R(0,2).map(function(i){return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16)}.bind(this));this._delta=$R(0,2).map(function(i){return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i]}.bind(this))},update:function(position){this.element.setStyle({backgroundColor:$R(0,2).inject('#',function(m,v,i){return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart())}.bind(this))})},finish:function(){this.element.setStyle(Object.extend(this.oldStyle,{backgroundColor:this.options.restorecolor}))}});Effect.ScrollTo=function(element){var options=arguments[1]||{},scrollOffsets=document.viewport.getScrollOffsets(),elementOffsets=$(element).cumulativeOffset();if(options.offset)elementOffsets[1]+=options.offset;return new Effect.Tween(null,scrollOffsets.top,elementOffsets[1],options,function(p){scrollTo(scrollOffsets.left,p.round())})};Effect.Fade=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();var options=Object.extend({from:element.getOpacity()||1.0,to:0.0,afterFinishInternal:function(effect){if(effect.options.to!=0)return;effect.element.hide().setStyle({opacity:oldOpacity})}},arguments[1]||{});return new Effect.Opacity(element,options)};Effect.Appear=function(element){element=$(element);var options=Object.extend({from:(element.getStyle('display')=='none'?0.0:element.getOpacity()||0.0),to:1.0,afterFinishInternal:function(effect){effect.element.forceRerendering()},beforeSetup:function(effect){effect.element.setOpacity(effect.options.from).show()}},arguments[1]||{});return new Effect.Opacity(element,options)};Effect.Puff=function(element){element=$(element);var oldStyle={opacity:element.getInlineOpacity(),position:element.getStyle('position'),top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};return new Effect.Parallel([new Effect.Scale(element,200,{sync:true,scaleFromCenter:true,scaleContent:true,restoreAfterFinish:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:1.0,beforeSetupInternal:function(effect){Position.absolutize(effect.effects[0].element)},afterFinishInternal:function(effect){effect.effects[0].element.hide().setStyle(oldStyle)}},arguments[1]||{}))};Effect.BlindUp=function(element){element=$(element);element.makeClipping();return new Effect.Scale(element,0,Object.extend({scaleContent:false,scaleX:false,restoreAfterFinish:true,afterFinishInternal:function(effect){effect.element.hide().undoClipping()}},arguments[1]||{}))};Effect.BlindDown=function(element){element=$(element);var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:0,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makeClipping().setStyle({height:'0px'}).show()},afterFinishInternal:function(effect){effect.element.undoClipping()}},arguments[1]||{}))};Effect.SwitchOff=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();return new Effect.Appear(element,Object.extend({duration:0.4,from:0,transition:Effect.Transitions.flicker,afterFinishInternal:function(effect){new Effect.Scale(effect.element,1,{duration:0.3,scaleFromCenter:true,scaleX:false,scaleContent:false,restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makePositioned().makeClipping()},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned().setStyle({opacity:oldOpacity})}})}},arguments[1]||{}))};Effect.DropOut=function(element){element=$(element);var oldStyle={top:element.getStyle('top'),left:element.getStyle('left'),opacity:element.getInlineOpacity()};return new Effect.Parallel([new Effect.Move(element,{x:0,y:100,sync:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:0.5,beforeSetup:function(effect){effect.effects[0].element.makePositioned()},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle)}},arguments[1]||{}))};Effect.Shake=function(element){element=$(element);var options=Object.extend({distance:20,duration:0.5},arguments[1]||{});var distance=parseFloat(options.distance);var split=parseFloat(options.duration)/10.0;var oldStyle={top:element.getStyle('top'),left:element.getStyle('left')};return new Effect.Move(element,{x:distance,y:0,duration:split,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance,y:0,duration:split,afterFinishInternal:function(effect){effect.element.undoPositioned().setStyle(oldStyle)}})}})}})}})}})}})};Effect.SlideDown=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:window.opera?0:1,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().setStyle({height:'0px'}).show()},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'})},afterFinishInternal:function(effect){effect.element.undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom})}},arguments[1]||{}))};Effect.SlideUp=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,window.opera?0:1,Object.extend({scaleContent:false,scaleX:false,scaleMode:'box',scaleFrom:100,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().show()},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'})},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom})}},arguments[1]||{}))};Effect.Squish=function(element){return new Effect.Scale(element,window.opera?1:0,{restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makeClipping()},afterFinishInternal:function(effect){effect.element.hide().undoClipping()}})};Effect.Grow=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.full},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var initialMoveX,initialMoveY;var moveX,moveY;switch(options.direction){case'top-left':initialMoveX=initialMoveY=moveX=moveY=0;break;case'top-right':initialMoveX=dims.width;initialMoveY=moveY=0;moveX=-dims.width;break;case'bottom-left':initialMoveX=moveX=0;initialMoveY=dims.height;moveY=-dims.height;break;case'bottom-right':initialMoveX=dims.width;initialMoveY=dims.height;moveX=-dims.width;moveY=-dims.height;break;case'center':initialMoveX=dims.width/2;initialMoveY=dims.height/2;moveX=-dims.width/2;moveY=-dims.height/2;break}return new Effect.Move(element,{x:initialMoveX,y:initialMoveY,duration:0.01,beforeSetup:function(effect){effect.element.hide().makeClipping().makePositioned()},afterFinishInternal:function(effect){new Effect.Parallel([new Effect.Opacity(effect.element,{sync:true,to:1.0,from:0.0,transition:options.opacityTransition}),new Effect.Move(effect.element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition}),new Effect.Scale(effect.element,100,{scaleMode:{originalHeight:dims.height,originalWidth:dims.width},sync:true,scaleFrom:window.opera?1:0,transition:options.scaleTransition,restoreAfterFinish:true})],Object.extend({beforeSetup:function(effect){effect.effects[0].element.setStyle({height:'0px'}).show()},afterFinishInternal:function(effect){effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle)}},options))}})};Effect.Shrink=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.none},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var moveX,moveY;switch(options.direction){case'top-left':moveX=moveY=0;break;case'top-right':moveX=dims.width;moveY=0;break;case'bottom-left':moveX=0;moveY=dims.height;break;case'bottom-right':moveX=dims.width;moveY=dims.height;break;case'center':moveX=dims.width/2;moveY=dims.height/2;break}return new Effect.Parallel([new Effect.Opacity(element,{sync:true,to:0.0,from:1.0,transition:options.opacityTransition}),new Effect.Scale(element,window.opera?1:0,{sync:true,transition:options.scaleTransition,restoreAfterFinish:true}),new Effect.Move(element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition})],Object.extend({beforeStartInternal:function(effect){effect.effects[0].element.makePositioned().makeClipping()},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle)}},options))};Effect.Pulsate=function(element){element=$(element);var options=arguments[1]||{},oldOpacity=element.getInlineOpacity(),transition=options.transition||Effect.Transitions.linear,reverser=function(pos){return 1-transition((-Math.cos((pos*(options.pulses||5)*2)*Math.PI)/2)+.5)};return new Effect.Opacity(element,Object.extend(Object.extend({duration:2.0,from:0,afterFinishInternal:function(effect){effect.element.setStyle({opacity:oldOpacity})}},options),{transition:reverser}))};Effect.Fold=function(element){element=$(element);var oldStyle={top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};element.makeClipping();return new Effect.Scale(element,5,Object.extend({scaleContent:false,scaleX:false,afterFinishInternal:function(effect){new Effect.Scale(element,1,{scaleContent:false,scaleY:false,afterFinishInternal:function(effect){effect.element.hide().undoClipping().setStyle(oldStyle)}})}},arguments[1]||{}))};Effect.Morph=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({style:{}},arguments[1]||{});if(!Object.isString(options.style))this.style=$H(options.style);else{if(options.style.include(':'))this.style=options.style.parseStyle();else{this.element.addClassName(options.style);this.style=$H(this.element.getStyles());this.element.removeClassName(options.style);var css=this.element.getStyles();this.style=this.style.reject(function(style){return style.value==css[style.key]});options.afterFinishInternal=function(effect){effect.element.addClassName(effect.options.style);effect.transforms.each(function(transform){effect.element.style[transform.style]=''})}}}this.start(options)},setup:function(){function parseColor(color){if(!color||['rgba(0, 0, 0, 0)','transparent'].include(color))color='#ffffff';color=color.parseColor();return $R(0,2).map(function(i){return parseInt(color.slice(i*2+1,i*2+3),16)})}this.transforms=this.style.map(function(pair){var property=pair[0],value=pair[1],unit=null;if(value.parseColor('#zzzzzz')!='#zzzzzz'){value=value.parseColor();unit='color'}else if(property=='opacity'){value=parseFloat(value);if(Prototype.Browser.IE&&(!this.element.currentStyle.hasLayout))this.element.setStyle({zoom:1})}else if(Element.CSS_LENGTH.test(value)){var components=value.match(/^([\+\-]?[0-9\.]+)(.*)$/);value=parseFloat(components[1]);unit=(components.length==3)?components[2]:null}var originalValue=this.element.getStyle(property);return{style:property.camelize(),originalValue:unit=='color'?parseColor(originalValue):parseFloat(originalValue||0),targetValue:unit=='color'?parseColor(value):value,unit:unit}}.bind(this)).reject(function(transform){return((transform.originalValue==transform.targetValue)||(transform.unit!='color'&&(isNaN(transform.originalValue)||isNaN(transform.targetValue))))})},update:function(position){var style={},transform,i=this.transforms.length;while(i--)style[(transform=this.transforms[i]).style]=transform.unit=='color'?'#'+(Math.round(transform.originalValue[0]+(transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart()+(Math.round(transform.originalValue[1]+(transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart()+(Math.round(transform.originalValue[2]+(transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart():(transform.originalValue+(transform.targetValue-transform.originalValue)*position).toFixed(3)+(transform.unit===null?'':transform.unit);this.element.setStyle(style,true)}});Effect.Transform=Class.create({initialize:function(tracks){this.tracks=[];this.options=arguments[1]||{};this.addTracks(tracks)},addTracks:function(tracks){tracks.each(function(track){track=$H(track);var data=track.values().first();this.tracks.push($H({ids:track.keys().first(),effect:Effect.Morph,options:{style:data}}))}.bind(this));return this},play:function(){return new Effect.Parallel(this.tracks.map(function(track){var ids=track.get('ids'),effect=track.get('effect'),options=track.get('options');var elements=[$(ids)||$$(ids)].flatten();return elements.map(function(e){return new effect(e,Object.extend({sync:true},options))})}).flatten(),this.options)}});Element.CSS_PROPERTIES=$w('backgroundColor backgroundPosition borderBottomColor borderBottomStyle '+'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth '+'borderRightColor borderRightStyle borderRightWidth borderSpacing '+'borderTopColor borderTopStyle borderTopWidth bottom clip color '+'fontSize fontWeight height left letterSpacing lineHeight '+'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+'maxWidth minHeight minWidth opacity outlineColor outlineOffset '+'outlineWidth paddingBottom paddingLeft paddingRight paddingTop '+'right textIndent top width wordSpacing zIndex');Element.CSS_LENGTH=/^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;String.__parseStyleElement=document.createElement('div');String.prototype.parseStyle=function(){var style,styleRules=$H();if(Prototype.Browser.WebKit)style=new Element('div',{style:this}).style;else{String.__parseStyleElement.innerHTML='<div style="'+this+'"></div>';style=String.__parseStyleElement.childNodes[0].style}Element.CSS_PROPERTIES.each(function(property){if(style[property])styleRules.set(property,style[property])});if(Prototype.Browser.IE&&this.include('opacity'))styleRules.set('opacity',this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);return styleRules};if(document.defaultView&&document.defaultView.getComputedStyle){Element.getStyles=function(element){var css=document.defaultView.getComputedStyle($(element),null);return Element.CSS_PROPERTIES.inject({},function(styles,property){styles[property]=css[property];return styles})}}else{Element.getStyles=function(element){element=$(element);var css=element.currentStyle,styles;styles=Element.CSS_PROPERTIES.inject({},function(results,property){results[property]=css[property];return results});if(!styles.opacity)styles.opacity=element.getOpacity();return styles}}Effect.Methods={morph:function(element,style){element=$(element);new Effect.Morph(element,Object.extend({style:style},arguments[2]||{}));return element},visualEffect:function(element,effect,options){element=$(element);var s=effect.dasherize().camelize(),klass=s.charAt(0).toUpperCase()+s.substring(1);new Effect[klass](element,options);return element},highlight:function(element,options){element=$(element);new Effect.Highlight(element,options);return element}};$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+'pulsate shake puff squish switchOff dropOut').each(function(effect){Effect.Methods[effect]=function(element,options){element=$(element);Effect[effect.charAt(0).toUpperCase()+effect.substring(1)](element,options);return element}});$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each(function(f){Effect.Methods[f]=Element[f]});Element.addMethods(Effect.Methods);var Builder={NODEMAP:{AREA:'map',CAPTION:'table',COL:'table',COLGROUP:'table',LEGEND:'fieldset',OPTGROUP:'select',OPTION:'select',PARAM:'object',TBODY:'table',TD:'table',TFOOT:'table',TH:'table',THEAD:'table',TR:'table'},node:function(elementName){elementName=elementName.toUpperCase();var parentTag=this.NODEMAP[elementName]||'div';var parentElement=document.createElement(parentTag);try{parentElement.innerHTML="<"+elementName+"></"+elementName+">"}catch(e){}var element=parentElement.firstChild||null;if(element&&(element.tagName.toUpperCase()!=elementName))element=element.getElementsByTagName(elementName)[0];if(!element)element=document.createElement(elementName);if(!element)return;if(arguments[1])if(this._isStringOrNumber(arguments[1])||(arguments[1]instanceof Array)||arguments[1].tagName){this._children(element,arguments[1])}else{var attrs=this._attributes(arguments[1]);if(attrs.length){try{parentElement.innerHTML="<"+elementName+" "+attrs+"></"+elementName+">"}catch(e){}element=parentElement.firstChild||null;if(!element){element=document.createElement(elementName);for(attr in arguments[1])element[attr=='class'?'className':attr]=arguments[1][attr]}if(element.tagName.toUpperCase()!=elementName)element=parentElement.getElementsByTagName(elementName)[0]}}if(arguments[2])this._children(element,arguments[2]);return $(element)},_text:function(text){return document.createTextNode(text)},ATTR_MAP:{'className':'class','htmlFor':'for'},_attributes:function(attributes){var attrs=[];for(attribute in attributes)attrs.push((attribute in this.ATTR_MAP?this.ATTR_MAP[attribute]:attribute)+'="'+attributes[attribute].toString().escapeHTML().gsub(/"/,'&quot;')+'"');return attrs.join(" ")},_children:function(element,children){if(children.tagName){element.appendChild(children);return}if(typeof children=='object'){children.flatten().each(function(e){if(typeof e=='object')element.appendChild(e);else if(Builder._isStringOrNumber(e))element.appendChild(Builder._text(e))})}else if(Builder._isStringOrNumber(children))element.appendChild(Builder._text(children))},_isStringOrNumber:function(param){return(typeof param=='string'||typeof param=='number')},build:function(html){var element=this.node('div');$(element).update(html.strip());return element.down()},dump:function(scope){if(typeof scope!='object'&&typeof scope!='function')scope=window;var tags=("A ABBR ACRONYM ADDRESS APPLET AREA B BASE BASEFONT BDO BIG BLOCKQUOTE BODY "+"BR BUTTON CAPTION CENTER CITE CODE COL COLGROUP DD DEL DFN DIR DIV DL DT EM FIELDSET "+"FONT FORM FRAME FRAMESET H1 H2 H3 H4 H5 H6 HEAD HR HTML I IFRAME IMG INPUT INS ISINDEX "+"KBD LABEL LEGEND LI LINK MAP MENU META NOFRAMES NOSCRIPT OBJECT OL OPTGROUP OPTION P "+"PARAM PRE Q S SAMP SCRIPT SELECT SMALL SPAN STRIKE STRONG STYLE SUB SUP TABLE TBODY TD "+"TEXTAREA TFOOT TH THEAD TITLE TR TT U UL VAR").split(/\s+/);tags.each(function(tag){scope[tag]=function(){return Builder.node.apply(Builder,[tag].concat($A(arguments)))}})}};var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return!a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();LightboxOptions=Object.extend({fileLoadingImage:'/images/lightbox/loading.gif',fileBottomNavCloseImage:'/images/lightbox/close.gif',overlayOpacity:0.4,animate:true,resizeSpeed:7,borderSize:10,labelImage:"Bild",labelOf:"von"},window.LightboxOptions||{});var Lightbox=Class.create();Lightbox.prototype={imageArray:[],activeImage:undefined,initialize:function(){this.updateImageList();this.keyboardAction=this.keyboardAction.bindAsEventListener(this);if(LightboxOptions.resizeSpeed>10)LightboxOptions.resizeSpeed=10;if(LightboxOptions.resizeSpeed<1)LightboxOptions.resizeSpeed=1;this.resizeDuration=LightboxOptions.animate?((11-LightboxOptions.resizeSpeed)*0.15):0;this.overlayDuration=LightboxOptions.animate?0.2:0;var size=(LightboxOptions.animate?250:1)+'px';var objBody=$$('body')[0];objBody.appendChild(Builder.node('div',{id:'overlay'}));objBody.appendChild(Builder.node('div',{id:'lightbox'},[Builder.node('div',{id:'outerImageContainer'},Builder.node('div',{id:'imageContainer'},[Builder.node('img',{id:'lightboxImage'}),Builder.node('div',{id:'hoverNav'},[Builder.node('a',{id:'prevLink',href:'#'}),Builder.node('a',{id:'nextLink',href:'#'})]),Builder.node('div',{id:'loading'},Builder.node('a',{id:'loadingLink',href:'#'},Builder.node('img',{src:LightboxOptions.fileLoadingImage})))])),Builder.node('div',{id:'imageDataContainer'},Builder.node('div',{id:'imageData'},[Builder.node('div',{id:'imageDetails'},[Builder.node('span',{id:'caption'}),Builder.node('span',{id:'numberDisplay'})]),Builder.node('div',{id:'bottomNav'},Builder.node('a',{id:'bottomNavClose',href:'#'},Builder.node('img',{src:LightboxOptions.fileBottomNavCloseImage})))]))]));$('overlay').hide().observe('click',(function(){this.end()}).bind(this));$('lightbox').hide().observe('click',(function(event){if(event.element().id=='lightbox')this.end()}).bind(this));$('outerImageContainer').setStyle({width:size,height:size});$('prevLink').observe('click',(function(event){event.stop();this.changeImage(this.activeImage-1)}).bindAsEventListener(this));$('nextLink').observe('click',(function(event){event.stop();this.changeImage(this.activeImage+1)}).bindAsEventListener(this));$('loadingLink').observe('click',(function(event){event.stop();this.end()}).bind(this));$('bottomNavClose').observe('click',(function(event){event.stop();this.end()}).bind(this));var th=this;(function(){var ids='overlay lightbox outerImageContainer imageContainer lightboxImage hoverNav prevLink nextLink loading loadingLink '+'imageDataContainer imageData imageDetails caption numberDisplay bottomNav bottomNavClose';$w(ids).each(function(id){th[id]=$(id)})}).defer()},updateImageList:function(){this.updateImageList=Prototype.emptyFunction;document.observe('click',(function(event){var target=event.findElement('a[rel^=lightbox]')||event.findElement('area[rel^=lightbox]');if(target){event.stop();this.start(target)}}).bind(this))},start:function(imageLink){$$('select','object','embed').each(function(node){node.style.visibility='hidden'});var arrayPageSize=this.getPageSize();$('overlay').setStyle({width:arrayPageSize[0]+'px',height:arrayPageSize[1]+'px'});new Effect.Appear(this.overlay,{duration:this.overlayDuration,from:0.0,to:LightboxOptions.overlayOpacity});this.imageArray=[];var imageNum=0;if((imageLink.rel=='lightbox')){this.imageArray.push([imageLink.href,imageLink.title])}else{this.imageArray=$$(imageLink.tagName+'[href][rel="'+imageLink.rel+'"]').collect(function(anchor){return[anchor.href,anchor.title]}).uniq();while(this.imageArray[imageNum][0]!=imageLink.href){imageNum++}}var arrayPageScroll=document.viewport.getScrollOffsets();var lightboxTop=arrayPageScroll[1]+(document.viewport.getHeight()/10);var lightboxLeft=arrayPageScroll[0];this.lightbox.setStyle({top:lightboxTop+'px',left:lightboxLeft+'px'}).show();this.changeImage(imageNum)},changeImage:function(imageNum){this.activeImage=imageNum;if(LightboxOptions.animate)this.loading.show();this.lightboxImage.hide();this.hoverNav.hide();this.prevLink.hide();this.nextLink.hide();this.imageDataContainer.setStyle({opacity:.0001});this.numberDisplay.hide();var imgPreloader=new Image();imgPreloader.onload=(function(){this.lightboxImage.src=this.imageArray[this.activeImage][0];this.resizeImageContainer(imgPreloader.width,imgPreloader.height)}).bind(this);imgPreloader.src=this.imageArray[this.activeImage][0]},resizeImageContainer:function(imgWidth,imgHeight){var widthCurrent=this.outerImageContainer.getWidth();var heightCurrent=this.outerImageContainer.getHeight();var widthNew=(imgWidth+LightboxOptions.borderSize*2);var heightNew=(imgHeight+LightboxOptions.borderSize*2);var xScale=(widthNew/widthCurrent)*100;var yScale=(heightNew/heightCurrent)*100;var wDiff=widthCurrent-widthNew;var hDiff=heightCurrent-heightNew;if(hDiff!=0)new Effect.Scale(this.outerImageContainer,yScale,{scaleX:false,duration:this.resizeDuration,queue:'front'});if(wDiff!=0)new Effect.Scale(this.outerImageContainer,xScale,{scaleY:false,duration:this.resizeDuration,delay:this.resizeDuration});var timeout=0;if((hDiff==0)&&(wDiff==0)){timeout=100;if(Prototype.Browser.IE)timeout=250}(function(){this.prevLink.setStyle({height:imgHeight+'px'});this.nextLink.setStyle({height:imgHeight+'px'});this.imageDataContainer.setStyle({width:widthNew+'px'});this.showImage()}).bind(this).delay(timeout/1000)},showImage:function(){this.loading.hide();new Effect.Appear(this.lightboxImage,{duration:this.resizeDuration,queue:'end',afterFinish:(function(){this.updateDetails()}).bind(this)});this.preloadNeighborImages()},updateDetails:function(){if(this.imageArray[this.activeImage][1]!=""){this.caption.update(this.imageArray[this.activeImage][1]).show()}if(this.imageArray.length>1){}new Effect.Parallel([new Effect.SlideDown(this.imageDataContainer,{sync:true,duration:this.resizeDuration,from:0.0,to:1.0}),new Effect.Appear(this.imageDataContainer,{sync:true,duration:this.resizeDuration})],{duration:this.resizeDuration,afterFinish:(function(){var arrayPageSize=this.getPageSize();this.overlay.setStyle({height:arrayPageSize[1]+'px'});this.updateNav()}).bind(this)})},updateNav:function(){this.hoverNav.show();if(this.activeImage>0)this.prevLink.show();if(this.activeImage<(this.imageArray.length-1))this.nextLink.show();this.enableKeyboardNav()},enableKeyboardNav:function(){document.observe('keydown',this.keyboardAction)},disableKeyboardNav:function(){document.stopObserving('keydown',this.keyboardAction)},keyboardAction:function(event){var keycode=event.keyCode;var escapeKey;if(event.DOM_VK_ESCAPE){escapeKey=event.DOM_VK_ESCAPE}else{escapeKey=27}var key=String.fromCharCode(keycode).toLowerCase();if(key.match(/x|o|c/)||(keycode==escapeKey)){this.end()}else if((key=='p')||(keycode==37)){if(this.activeImage!=0){this.disableKeyboardNav();this.changeImage(this.activeImage-1)}}else if((key=='n')||(keycode==39)){if(this.activeImage!=(this.imageArray.length-1)){this.disableKeyboardNav();this.changeImage(this.activeImage+1)}}},preloadNeighborImages:function(){var preloadNextImage,preloadPrevImage;if(this.imageArray.length>this.activeImage+1){preloadNextImage=new Image();preloadNextImage.src=this.imageArray[this.activeImage+1][0]}if(this.activeImage>0){preloadPrevImage=new Image();preloadPrevImage.src=this.imageArray[this.activeImage-1][0]}},end:function(){this.disableKeyboardNav();this.lightbox.hide();new Effect.Fade(this.overlay,{duration:this.overlayDuration});$$('select','object','embed').each(function(node){node.style.visibility='visible'})},getPageSize:function(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight}var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth}else{windowWidth=self.innerWidth}windowHeight=self.innerHeight}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight}if(yScroll<windowHeight){pageHeight=windowHeight}else{pageHeight=yScroll}if(xScroll<windowWidth){pageWidth=xScroll}else{pageWidth=windowWidth}return[pageWidth,pageHeight]}};document.observe('dom:loaded',function(){new Lightbox()});if(typeof Widget=="undefined")Widget={};Widget.Fader=Class.create({initialize:function(img,list,options){this.img=$(img);this.list=list;this.options=Object.extend({id:this.img.id,fadeInDuration:2.5,fadeOutDuration:1.5,displayDuration:2.5,autoSize:false,autoStart:true,attributes:{},dir:"",beforeFade:null,startIndex:0,builder:Widget.Fader.imageBuilder},options||{});this.options.attributes["id"]=this.options.id;this.index=this.options.startIndex;this.container=$(this.img.parentNode);this.loadedObserver=this.loaded.bind(this);this.fadeInObserver=this.fadeIn.bind(this);this.nextObserver=this.next.bind(this);if(this.options.autoStart){setTimeout(this.start.bind(this),this.options.displayDuration*1000)}},start:function(){this.stopped=false;this.next()},stop:function(){this.stopped=true;try{clearTimeout(this.timeout)}catch(ex){}try{Effect.Queues.get(this.options.id).each(function(effect){effect.cancel()})}catch(ex){}if(this.oldImg){this.img=this.oldImg;--this.index}Element.setOpacity(this.img,1)},next:function(){this.oldImg=this.img;if(this.stopped||this.list.length==0){return}++this.index;if(this.index>=this.list.length){this.index=0}this.img=this.options.builder(this,this.list[this.index],this.loadedObserver)},loaded:function(){Event.stopObserving(this.img,"load",this.loadedObserver);if(typeof this.options.beforeFade=="function"){this.options.beforeFade(this.oldImg,false)}new Effect.Opacity(this.oldImg,{duration:this.options.fadeOutDuration,from:1.0,to:0.0,queue:{scope:this.options.id}});this.timeout=setTimeout(this.fadeInObserver,this.options.fadeOutDuration*1000)},fadeIn:function(){if(typeof this.options.beforeFade=="function"){this.options.beforeFade(this.img,true)}this.img.id=this.id;Element.setOpacity(this.img,0);if(this.options.autoSize){this.resize(this.img)}this.container.replaceChild(this.img,this.oldImg);this.oldImg=null;new Effect.Opacity(this.img,{duration:this.options.fadeInDuration,from:0.0,to:1.0,queue:{scope:this.options.id}});this.timeout=setTimeout(this.nextObserver,(this.options.fadeInDuration+this.options.displayDuration)*1000)},resize:function(img){var dim=this.container.getDimensions();dim.width-=parseInt(this.container.getStyle("padding-left"))+parseInt(this.container.getStyle("padding-right"))+parseInt(this.container.getStyle("border-left-width"))+parseInt(this.container.getStyle("border-right-width"));dim.height-=parseInt(this.container.getStyle("padding-top"))+parseInt(this.container.getStyle("padding-bottom"))+parseInt(this.container.getStyle("border-top-width"))+parseInt(this.container.getStyle("border-bottom-width"));var dw=dim.width/img.width;var dh=dim.height/img.height;var w1=img.width*dh;var h1=img.height*dw;if(dw>dh){img.width=w1;img.height=dim.height}else{img.width=dim.width;img.height=h1}}});Widget.Fader.imageBuilder=function(fader,item,loaded){var img=new Element("img",fader.options.attributes);img.observe("load",loaded);img.src=fader.options.dir+item;return img};Widget.Fader.textBuilder=function(fader,item,loaded){var div=new Element("div",fader.options.attributes).update(item);loaded.defer();return div};var Fader=Widget.Fader;var map=new Array();var lLat=new Array();var lLng=new Array();function GoogleMap(oObject){this.sMap='';this.lLat=-1;this.lLng=-1;this.sKunde='';this.sKundeStrasse='';this.sKundeAdresse='';this.sKundeTel='';this.sKundeFax='';this.sUnbekannteAdresse='';this.sAnfragenichtbearbeitet='';this.sStartpunkt='';this.sKeyungultig='';this.sunbekannterFehler='';var sMap='';var gdir=null;var sKunde='';var sKundeStrasse='';var sKundeAdresse='';var sKundeTel='';var sKundeFax='';var sUnbekannteAdresse='';var sAnfragenichtbearbeitet='';var sStartpunkt='';var sKeyungultig='';var sunbekannterFehler='';GoogleMap.prototype.load=function(){if(GBrowserIsCompatible()){map[oObject]=new GMap2(document.getElementById(sMap));map[oObject].setCenter(new GLatLng(lLat[oObject],lLng[oObject]),10);map[oObject].addControl(new GSmallMapControl());map[oObject].addControl(new GMapTypeControl());map[oObject].setMapType(G_NORMAL_MAP);function createMarker(point,number){var marker=new GMarker(point);GEvent.addListener(marker,"click",function(){marker.openInfoWindowHtml("<div style=\"width:290px;\"><div style=\"float:left; color: #232323;\"><strong>"+sKunde+"</strong><br />"+sKundeStrasse+"<br />"+sKundeAdresse+"<br/><br/>"+sKundeTel+"<br/>"+sKundeFax+"<br /><br /></div></div>")});return marker}var bounds=map[oObject].getBounds();var southWest=bounds.getSouthWest();var northEast=bounds.getNorthEast();var point=new GLatLng(lLat[oObject],lLng[oObject]);map[oObject].addOverlay(createMarker(point,1))}};GoogleMap.prototype.setDirections=function(oObject,fromStreet,fromZip,fromCity,fromCountry,locale,sDirections){document.getElementById(sDirections).innerHTML='';fromStreet+=',';fromZip+=',';fromCity+=',';fromAddress=fromStreet+" "+fromZip+" "+fromCity+" "+fromCountry;gdir=new GDirections(map[oObject],document.getElementById(sDirections));GEvent.addListener(gdir,"load",onGDirectionsLoad);GEvent.addListener(gdir,"error",this.handleErrors);gdir.load("from: "+fromAddress+" to: "+lLat[oObject]+", "+lLng[oObject],{"locale":locale});document.getElementById(sDirections).style.display='block'};GoogleMap.prototype.handleErrors=function(){if(gdir.getStatus().code==G_GEO_UNKNOWN_ADDRESS){alert(sUnbekannteAdresse)}else if(gdir.getStatus().code==G_GEO_SERVER_ERROR){alert(sAnfragenichtbearbeitet)}else if(gdir.getStatus().code==G_GEO_MISSING_QUERY){alert(sStartpunkt)}else if(gdir.getStatus().code==G_GEO_BAD_KEY){alert(sKeyungultig)}else if(gdir.getStatus().code==G_GEO_BAD_REQUEST){alert(sAnfragenichtbearbeitet)}else{alert(sunbekannterFehler)}};function onGDirectionsLoad(){return true}GoogleMap.prototype.init=function(){sMap=this.sMap;lLat[oObject]=this.lLat;lLng[oObject]=this.lLng;sKunde=this.sKunde;sKundeStrasse=this.sKundeStrasse;sKundeAdresse=this.sKundeAdresse;sKundeTel=this.sKundeTel;sKundeFax=this.sKundeFax;sUnbekannteAdresse=this.sUnbekannteAdresse;sAnfragenichtbearbeitet=this.sAnfragenichtbearbeitet;sStartpunkt=this.sStartpunkt;sKeyungultig=this.sKeyungultig;sunbekannterFehler=this.sunbekannterFehler;if(window.addEventListener){window.addEventListener("load",this.load,false);window.addEventListener("unload",GUnload,false)}else if(window.attachEvent){window.attachEvent("onload",this.load);window.attachEvent("onunload",GUnload)}}}var audioplayer_swfobject=function(){var d="undefined",R="object",s="Shockwave Flash",w="ShockwaveFlash.ShockwaveFlash",Q="application/x-shockwave-flash",r="SWFObjectExprInst",X="onreadystatechange",o=window,J=document,T=navigator,t=false,u=[H],O=[],n=[],i=[],L,q,e,b,j=false,A=false,N,g,M=true,m=function(){var AA=typeof J.getElementById!=d&&typeof J.getElementsByTagName!=d&&typeof J.createElement!=d,AH=T.userAgent.toLowerCase(),y=T.platform.toLowerCase(),AE=y?/win/.test(y):/win/.test(AH),AC=y?/mac/.test(y):/mac/.test(AH),AF=/webkit/.test(AH)?parseFloat(AH.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,x=!+"\v1",AG=[0,0,0],AB=null;if(typeof T.plugins!=d&&typeof T.plugins[s]==R){AB=T.plugins[s].description;if(AB&&!(typeof T.mimeTypes!=d&&T.mimeTypes[Q]&&!T.mimeTypes[Q].enabledPlugin)){t=true;x=false;AB=AB.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AG[0]=parseInt(AB.replace(/^(.*)\..*$/,"$1"),10);AG[1]=parseInt(AB.replace(/^.*\.(.*)\s.*$/,"$1"),10);AG[2]=/[a-zA-Z]/.test(AB)?parseInt(AB.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof o.ActiveXObject!=d){try{var AD=new ActiveXObject(w);if(AD){AB=AD.GetVariable("$version");if(AB){x=true;AB=AB.split(" ")[1].split(",");AG=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}}catch(z){}}}return{w3:AA,pv:AG,wk:AF,ie:x,win:AE,mac:AC}}(),K=function(){if(!m.w3){return}if((typeof J.readyState!=d&&J.readyState=="complete")||(typeof J.readyState==d&&(J.getElementsByTagName("body")[0]||J.body))){F()}if(!j){if(typeof J.addEventListener!=d){J.addEventListener("DOMContentLoaded",F,false)}if(m.ie&&m.win){J.attachEvent(X,function(){if(J.readyState=="complete"){J.detachEvent(X,arguments.callee);F()}});if(o==top){(function(){if(j){return}try{J.documentElement.doScroll("left")}catch(x){setTimeout(arguments.callee,0);return}F()})()}}if(m.wk){(function(){if(j){return}if(!/loaded|complete/.test(J.readyState)){setTimeout(arguments.callee,0);return}F()})()}S(F)}}();function F(){if(j){return}try{var z=J.getElementsByTagName("body")[0].appendChild(c("span"));z.parentNode.removeChild(z)}catch(AA){return}j=true;var x=u.length;for(var y=0;y<x;y++){u[y]()}}function k(x){if(j){x()}else{u[u.length]=x}}function S(y){if(typeof o.addEventListener!=d){o.addEventListener("load",y,false)}else{if(typeof J.addEventListener!=d){J.addEventListener("load",y,false)}else{if(typeof o.attachEvent!=d){I(o,"onload",y)}else{if(typeof o.onload=="function"){var x=o.onload;o.onload=function(){x();y()}}else{o.onload=y}}}}}function H(){if(t){v()}else{h()}}function v(){var x=J.getElementsByTagName("body")[0];var AA=c(R);AA.setAttribute("type",Q);var z=x.appendChild(AA);if(z){var y=0;(function(){if(typeof z.GetVariable!=d){var AB=z.GetVariable("$version");if(AB){AB=AB.split(" ")[1].split(",");m.pv=[parseInt(AB[0],10),parseInt(AB[1],10),parseInt(AB[2],10)]}}else{if(y<10){y++;setTimeout(arguments.callee,10);return}}x.removeChild(AA);z=null;h()})()}else{h()}}function h(){var AG=O.length;if(AG>0){for(var AF=0;AF<AG;AF++){var y=O[AF].id;var AB=O[AF].callbackFn;var AA={success:false,id:y};if(m.pv[0]>0){var AE=C(y);if(AE){if(f(O[AF].swfVersion)&&!(m.wk&&m.wk<312)){W(y,true);if(AB){AA.success=true;AA.ref=Z(y);AB(AA)}}else{if(O[AF].expressInstall&&a()){var AI={};AI.data=O[AF].expressInstall;AI.width=AE.getAttribute("width")||"0";AI.height=AE.getAttribute("height")||"0";if(AE.getAttribute("class")){AI.styleclass=AE.getAttribute("class")}if(AE.getAttribute("align")){AI.align=AE.getAttribute("align")}var AH={};var x=AE.getElementsByTagName("param");var AC=x.length;for(var AD=0;AD<AC;AD++){if(x[AD].getAttribute("name").toLowerCase()!="movie"){AH[x[AD].getAttribute("name")]=x[AD].getAttribute("value")}}p(AI,AH,y,AB)}else{P(AE);if(AB){AB(AA)}}}}}else{W(y,true);if(AB){var z=Z(y);if(z&&typeof z.SetVariable!=d){AA.success=true;AA.ref=z}AB(AA)}}}}}function Z(AA){var x=null;var y=C(AA);if(y&&y.nodeName=="OBJECT"){if(typeof y.SetVariable!=d){x=y}else{var z=y.getElementsByTagName(R)[0];if(z){x=z}}}return x}function a(){return!A&&f("6.0.65")&&(m.win||m.mac)&&!(m.wk&&m.wk<312)}function p(AA,AB,x,z){A=true;e=z||null;b={success:false,id:x};var AE=C(x);if(AE){if(AE.nodeName=="OBJECT"){L=G(AE);q=null}else{L=AE;q=x}AA.id=r;if(typeof AA.width==d||(!/%$/.test(AA.width)&&parseInt(AA.width,10)<310)){AA.width="310"}if(typeof AA.height==d||(!/%$/.test(AA.height)&&parseInt(AA.height,10)<137)){AA.height="137"}J.title=J.title.slice(0,47)+" - Flash Player Installation";var AD=m.ie&&m.win?"ActiveX":"PlugIn",AC="MMredirectURL="+o.location.toString().replace(/&/g,"%26")+"&MMplayerType="+AD+"&MMdoctitle="+J.title;if(typeof AB.flashvars!=d){AB.flashvars+="&"+AC}else{AB.flashvars=AC}if(m.ie&&m.win&&AE.readyState!=4){var y=c("div");x+="SWFObjectNew";y.setAttribute("id",x);AE.parentNode.insertBefore(y,AE);AE.style.display="none";(function(){if(AE.readyState==4){AE.parentNode.removeChild(AE)}else{setTimeout(arguments.callee,10)}})()}U(AA,AB,x)}}function P(y){if(m.ie&&m.win&&y.readyState!=4){var x=c("div");y.parentNode.insertBefore(x,y);x.parentNode.replaceChild(G(y),x);y.style.display="none";(function(){if(y.readyState==4){y.parentNode.removeChild(y)}else{setTimeout(arguments.callee,10)}})()}else{y.parentNode.replaceChild(G(y),y)}}function G(AB){var AA=c("div");if(m.win&&m.ie){AA.innerHTML=AB.innerHTML}else{var y=AB.getElementsByTagName(R)[0];if(y){var AC=y.childNodes;if(AC){var x=AC.length;for(var z=0;z<x;z++){if(!(AC[z].nodeType==1&&AC[z].nodeName=="PARAM")&&!(AC[z].nodeType==8)){AA.appendChild(AC[z].cloneNode(true))}}}}}return AA}function U(AI,AG,y){var x,AA=C(y);if(m.wk&&m.wk<312){return x}if(AA){if(typeof AI.id==d){AI.id=y}if(m.ie&&m.win){var AH="";for(var AE in AI){if(AI[AE]!=Object.prototype[AE]){if(AE.toLowerCase()=="data"){AG.movie=AI[AE]}else{if(AE.toLowerCase()=="styleclass"){AH+=' class="'+AI[AE]+'"'}else{if(AE.toLowerCase()!="classid"){AH+=" "+AE+'="'+AI[AE]+'"'}}}}}var AF="";for(var AD in AG){if(AG[AD]!=Object.prototype[AD]){AF+='<param name="'+AD+'" value="'+AG[AD]+'" />'}}AA.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AH+">"+AF+"</object>";n[n.length]=AI.id;x=C(AI.id)}else{var z=c(R);z.setAttribute("type",Q);for(var AC in AI){if(AI[AC]!=Object.prototype[AC]){if(AC.toLowerCase()=="styleclass"){z.setAttribute("class",AI[AC])}else{if(AC.toLowerCase()!="classid"){z.setAttribute(AC,AI[AC])}}}}for(var AB in AG){if(AG[AB]!=Object.prototype[AB]&&AB.toLowerCase()!="movie"){E(z,AB,AG[AB])}}AA.parentNode.replaceChild(z,AA);x=z}}return x}function E(z,x,y){var AA=c("param");AA.setAttribute("name",x);AA.setAttribute("value",y);z.appendChild(AA)}function Y(y){var x=C(y);if(x&&x.nodeName=="OBJECT"){if(m.ie&&m.win){x.style.display="none";(function(){if(x.readyState==4){B(y)}else{setTimeout(arguments.callee,10)}})()}else{x.parentNode.removeChild(x)}}}function B(z){var y=C(z);if(y){for(var x in y){if(typeof y[x]=="function"){y[x]=null}}y.parentNode.removeChild(y)}}function C(z){var x=null;try{x=J.getElementById(z)}catch(y){}return x}function c(x){return J.createElement(x)}function I(z,x,y){z.attachEvent(x,y);i[i.length]=[z,x,y]}function f(z){var y=m.pv,x=z.split(".");x[0]=parseInt(x[0],10);x[1]=parseInt(x[1],10)||0;x[2]=parseInt(x[2],10)||0;return(y[0]>x[0]||(y[0]==x[0]&&y[1]>x[1])||(y[0]==x[0]&&y[1]==x[1]&&y[2]>=x[2]))?true:false}function V(AC,y,AD,AB){if(m.ie&&m.mac){return}var AA=J.getElementsByTagName("head")[0];if(!AA){return}var x=(AD&&typeof AD=="string")?AD:"screen";if(AB){N=null;g=null}if(!N||g!=x){var z=c("style");z.setAttribute("type","text/css");z.setAttribute("media",x);N=AA.appendChild(z);if(m.ie&&m.win&&typeof J.styleSheets!=d&&J.styleSheets.length>0){N=J.styleSheets[J.styleSheets.length-1]}g=x}if(m.ie&&m.win){if(N&&typeof N.addRule==R){N.addRule(AC,y)}}else{if(N&&typeof J.createTextNode!=d){N.appendChild(J.createTextNode(AC+" {"+y+"}"))}}}function W(z,x){if(!M){return}var y=x?"visible":"hidden";if(j&&C(z)){C(z).style.visibility=y}else{V("#"+z,"visibility:"+y)}}function l(y){var z=/[\\\"<>\.;]/;var x=z.exec(y)!=null;return x&&typeof encodeURIComponent!=d?encodeURIComponent(y):y}var D=function(){if(m.ie&&m.win){window.attachEvent("onunload",function(){var AC=i.length;for(var AB=0;AB<AC;AB++){i[AB][0].detachEvent(i[AB][1],i[AB][2])}var z=n.length;for(var AA=0;AA<z;AA++){Y(n[AA])}for(var y in m){m[y]=null}m=null;for(var x in audioplayer_swfobject){audioplayer_swfobject[x]=null}audioplayer_swfobject=null})}}();return{registerObject:function(AB,x,AA,z){if(m.w3&&AB&&x){var y={};y.id=AB;y.swfVersion=x;y.expressInstall=AA;y.callbackFn=z;O[O.length]=y;W(AB,false)}else{if(z){z({success:false,id:AB})}}},getObjectById:function(x){if(m.w3){return Z(x)}},embedSWF:function(AB,AH,AE,AG,y,AA,z,AD,AF,AC){var x={success:false,id:AH};if(m.w3&&!(m.wk&&m.wk<312)&&AB&&AH&&AE&&AG&&y){W(AH,false);k(function(){AE+="";AG+="";var AJ={};if(AF&&typeof AF===R){for(var AL in AF){AJ[AL]=AF[AL]}}AJ.data=AB;AJ.width=AE;AJ.height=AG;var AM={};if(AD&&typeof AD===R){for(var AK in AD){AM[AK]=AD[AK]}}if(z&&typeof z===R){for(var AI in z){if(typeof AM.flashvars!=d){AM.flashvars+="&"+AI+"="+z[AI]}else{AM.flashvars=AI+"="+z[AI]}}}if(f(y)){var AN=U(AJ,AM,AH);if(AJ.id==AH){W(AH,true)}x.success=true;x.ref=AN}else{if(AA&&a()){AJ.data=AA;p(AJ,AM,AH,AC);return}else{W(AH,true)}}if(AC){AC(x)}})}else{if(AC){AC(x)}}},switchOffAutoHideShow:function(){M=false},ua:m,getFlashPlayerVersion:function(){return{major:m.pv[0],minor:m.pv[1],release:m.pv[2]}},hasFlashPlayerVersion:f,createSWF:function(z,y,x){if(m.w3){return U(z,y,x)}else{return undefined}},showExpressInstall:function(z,AA,x,y){if(m.w3&&a()){p(z,AA,x,y)}},removeSWF:function(x){if(m.w3){Y(x)}},createCSS:function(AA,z,y,x){if(m.w3){V(AA,z,y,x)}},addDomLoadEvent:k,addLoadEvent:S,getQueryParamValue:function(AA){var z=J.location.search||J.location.hash;if(z){if(/\?/.test(z)){z=z.split("?")[1]}if(AA==null){return l(z)}var y=z.split("&");for(var x=0;x<y.length;x++){if(y[x].substring(0,y[x].indexOf("="))==AA){return l(y[x].substring((y[x].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A){var x=C(r);if(x&&L){x.parentNode.replaceChild(L,x);if(q){W(q,true);if(m.ie&&m.win){L.style.display="block"}}if(e){e(b)}}A=false}}}}();var AudioPlayer=function(){var H=[];var D;var F="";var A={};var E=-1;var G="9";function B(I){if(document.all&&!window[I]){for(var J=0;J<document.forms.length;J++){if(document.forms[J][I]){return document.forms[J][I];break}}}return document.all?window[I]:document[I]}function C(I,J,K){B(I).addListener(J,K)}return{setup:function(J,I){F=J;A=I;if(audioplayer_swfobject.hasFlashPlayerVersion(G)){audioplayer_swfobject.switchOffAutoHideShow();audioplayer_swfobject.createCSS("p.audioplayer_container span","visibility:hidden;height:24px;overflow:hidden;padding:0;border:none;")}},getPlayer:function(I){return B(I)},addListener:function(I,J,K){C(I,J,K)},embed:function(I,K){var N={};var L;var J={};var O={};var M={};for(L in A){N[L]=A[L]}for(L in K){N[L]=K[L]}if(N.transparentpagebg=="yes"){J.bgcolor="#FFFFFF";J.wmode="transparent"}else{if(N.pagebg){J.bgcolor="#"+N.pagebg}J.wmode="opaque"}J.menu="false";for(L in N){if(L=="pagebg"||L=="width"||L=="transparentpagebg"){continue}O[L]=N[L]}M.name=I;M.style="outline: none";O.playerID=I;audioplayer_swfobject.embedSWF(F,I,N.width.toString(),"24",G,false,O,J,M);H.push(I)},syncVolumes:function(I,K){E=K;for(var J=0;J<H.length;J++){if(H[J]!=I){B(H[J]).setVolume(E)}}},activate:function(I,J){if(D&&D!=I){B(D).close()}D=I},load:function(K,I,L,J){B(K).load(I,L,J)},close:function(I){B(I).close();if(I==D){D=null}},open:function(I,J){if(J==undefined){J=1}B(I).open(J==undefined?0:J-1)},getVolume:function(I){return E}}}();/*!
 * Copyright (c) 2010 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		}

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 100;
			return {
				'ultra-condensed': 0.5,
				'extra-condensed': 0.625,
				condensed: 0.75,
				'semi-condensed': 0.875,
				'semi-expanded': 1.125,
				expanded: 1.25,
				'extra-expanded': 1.5,
				'ultra-expanded': 2
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, '');
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		function isContainerReady(el) {
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		function onEnterLeave(e) {
			trigger(this, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				api.replace(el, hoverState ? merge(options, options.hover) : options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}

	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				el.replaceChild(process(font,
					CSS.whiteSpace(text, style, anchor, lastElement, simple),
					style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		forceHitArea: false,
		hover: false,
		hoverables: {
			a: true
		},
		ignore: {
			applet: 1,
			canvas: 1,
			col: 1,
			colgroup: 1,
			head: 1,
			iframe: 1,
			map: 1,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		printable: true,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'simple'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (document.documentMode || 0) < 8;

	document.write(('<style type="text/css">' +
		'cufoncanvas{text-indent:0;}' +
		'@media screen{' +
			'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}' +
			'cufoncanvas{position:absolute;text-align:left;}' +
			'cufon{display:inline-block;position:relative;vertical-align:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * Copyright 1990-1993 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":152,"face":{"font-family":"oranda-cn-bt-condensed","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 10 5 6 4 5 5 3 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-45 -317 362 85","underline-thickness":"16.875","underline-position":"-28.6523","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":76},"!":{"d":"44,4v-12,0,-19,-7,-19,-19v0,-12,7,-19,19,-19v12,0,18,7,18,19v0,12,-6,19,-18,19xm43,-223v18,0,19,14,18,33r-8,141r-18,0r-9,-153v0,-13,4,-21,17,-21","w":87},"\"":{"d":"89,-257v12,0,16,11,14,25r-12,80r-5,0r-13,-87v-1,-12,6,-18,16,-18xm31,-257v12,0,16,11,14,25r-12,80r-5,0r-12,-87v0,-11,5,-17,15,-18","w":119},"#":{"d":"123,-153r-18,51r51,0r18,-51r-51,0xm137,-256r23,0r-29,83r50,0r30,-83r23,0r-30,83r54,0r-7,20r-54,0r-18,51r59,0r-8,20r-58,0r-29,82r-23,0r29,-82r-51,0r-29,82r-23,0r29,-82r-57,0r8,-20r56,0r18,-51r-61,0r7,-20r62,0","w":276},"$":{"d":"81,-18v24,-3,35,-33,21,-55v-5,-7,-12,-13,-21,-19r0,74xm71,-201v-22,3,-35,30,-21,51v4,6,12,13,21,19r0,-70xm71,1v-22,0,-38,-5,-56,-14r0,-39r21,0r11,34r24,1r0,-82v-22,-18,-54,-30,-54,-66v0,-31,24,-52,54,-53r0,-25r10,0r0,24v20,0,35,5,51,12r0,37r-21,0r-12,-31r-18,-1r0,77v24,19,57,29,56,68v0,33,-25,53,-56,57r0,24r-10,0r0,-23"},"%":{"d":"198,-132v33,0,46,29,46,65v1,40,-15,71,-50,71v-33,0,-46,-28,-46,-65v-1,-40,15,-71,50,-71xm196,-118v-30,0,-27,70,-18,95v4,9,9,14,17,14v34,-3,34,-109,1,-109xm58,-209v-30,0,-26,72,-18,96v3,9,9,13,17,13v34,-3,34,-109,1,-109xm60,-223v33,0,46,29,46,65v1,39,-14,72,-50,72v-34,0,-46,-28,-46,-66v-1,-40,15,-71,50,-71xm49,-4r143,-221r12,9r-141,222","w":254},"&":{"d":"81,-207v-46,3,-26,64,0,79v18,-12,29,-22,30,-47v0,-19,-11,-33,-30,-32xm65,-105v-39,22,-25,96,31,90v17,-2,31,-4,43,-11xm198,-109v7,35,-5,64,-25,80v5,10,22,9,34,13r0,16r-44,0r-11,-12v-45,29,-146,22,-141,-45v1,-31,18,-48,44,-58v-40,-28,-38,-111,28,-108v31,1,55,17,55,47v0,32,-21,47,-48,58r70,75v15,-12,21,-41,14,-66r-33,0r0,-20r73,0r0,20r-16,0","w":224},"'":{"d":"31,-257v12,0,16,11,14,25r-12,80r-5,0r-12,-87v0,-11,5,-17,15,-18","w":61},"(":{"d":"78,-235v-44,75,-44,227,0,302r-13,8v-63,-69,-64,-248,-1,-318","w":83},")":{"d":"19,-243v62,72,65,248,0,318r-13,-8v45,-76,42,-225,-1,-301","w":83},"*":{"d":"6,-208r9,-17r35,25r-4,-43r19,0r-5,43r34,-25r9,16r-39,18r39,17r-9,16r-34,-24r5,41r-19,0r4,-42r-35,25r-9,-17r39,-17","w":107},"+":{"d":"140,-215r20,0r0,97r95,0r0,21r-95,0r0,97r-20,0r0,-97r-95,0r0,-21r95,0r0,-97","w":299},",":{"d":"39,-34v43,8,18,76,-13,77r-6,-15v10,-6,19,-11,20,-24v-14,1,-22,-6,-22,-19v-1,-13,8,-19,21,-19","w":74},"-":{"d":"7,-77r0,-23r70,0r0,23r-70,0","w":83,"k":{"\u0153":-7,"\u0152":-13,"\u00f8":-7,"\u00d8":-13,"o":-7,"Y":33,"X":13,"V":13,"T":26,"Q":-7,"O":-13,"C":-7}},".":{"d":"37,4v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v15,0,21,5,21,19v0,13,-7,19,-21,19","w":74},"\/":{"d":"8,75r58,-318r17,0r-59,318r-16,0","w":90},"0":{"d":"76,-204v-53,0,-41,126,-29,167v5,15,16,23,29,23v38,0,38,-48,38,-102v0,-47,-2,-88,-38,-88xm145,-112v0,64,-16,116,-69,116v-56,0,-68,-45,-68,-110v-1,-64,15,-117,68,-117v56,0,68,46,69,111"},"1":{"d":"22,-194v30,-2,40,-25,74,-24r0,196r29,6r0,16r-86,0r0,-16r29,-6r0,-165v-13,5,-30,6,-46,8r0,-15"},"2":{"d":"16,-205v40,-32,126,-21,123,40v11,34,-93,109,-104,139r77,0r8,-26r19,0r0,52r-130,0v0,-44,25,-61,51,-88v32,-32,47,-58,47,-77v1,-32,-25,-43,-59,-38r-12,31r-20,0r0,-33"},"3":{"d":"140,-63v3,66,-85,82,-131,49r0,-16v40,17,102,13,102,-36v0,-28,-18,-43,-48,-42r0,-16v27,2,42,-16,42,-42v0,-31,-26,-43,-60,-37r-11,31r-20,0r0,-33v37,-28,123,-25,122,33v0,29,-19,51,-45,55v30,5,48,21,49,54"},"4":{"d":"23,-88r71,0r0,-102xm71,0r0,-16r23,-6r0,-45r-92,0r0,-23r90,-128r28,0r0,130r27,0r0,21r-27,0r0,45r23,6r0,16r-72,0"},"5":{"d":"140,-74v0,68,-76,98,-130,63r0,-17v42,21,99,8,99,-45v0,-48,-49,-58,-92,-45r0,-100r117,0r0,25r-98,0r0,57v48,-21,104,4,104,62"},"6":{"d":"116,-65v3,-47,-45,-59,-79,-40v1,49,1,92,41,92v26,0,36,-24,38,-52xm7,-98v-3,-85,53,-147,133,-117r0,15v-61,-15,-105,21,-103,83v36,-36,109,-17,109,45v0,43,-26,76,-68,76v-54,-1,-69,-42,-71,-102"},"7":{"d":"146,-218v5,74,-86,133,-67,218v-10,-1,-23,2,-31,-1v-13,-76,65,-144,75,-192r-81,0r-10,26r-19,0r0,-51r133,0"},"8":{"d":"76,-205v-29,0,-41,29,-26,50v5,6,16,14,33,25v28,-12,37,-75,-7,-75xm76,-14v31,0,48,-37,29,-62v-6,-7,-17,-17,-35,-29v-18,15,-30,26,-32,52v-1,23,16,39,38,39xm10,-52v1,-33,20,-49,47,-61v-23,-14,-39,-26,-40,-57v-1,-31,27,-53,59,-53v34,0,57,19,58,51v0,27,-18,42,-40,50v29,19,47,30,49,65v2,35,-31,61,-68,61v-36,0,-66,-21,-65,-56"},"9":{"d":"36,-151v0,46,45,56,79,39v0,-48,1,-91,-40,-92v-26,0,-39,25,-39,53xm146,-120v0,90,-53,144,-133,116r0,-13v62,13,103,-20,102,-83v-36,37,-108,16,-108,-46v0,-44,25,-77,67,-76v54,1,72,42,72,102"},":":{"d":"37,-115v-14,0,-20,-7,-20,-20v0,-13,6,-19,20,-19v14,0,21,6,21,19v0,14,-7,19,-21,20xm37,4v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v15,0,21,5,21,19v0,13,-7,19,-21,19","w":74},";":{"d":"37,-115v-14,0,-20,-7,-20,-20v0,-13,6,-19,20,-19v14,0,21,6,21,19v0,14,-7,19,-21,20xm39,-34v43,8,18,76,-13,77r-6,-15v10,-6,19,-11,20,-24v-14,1,-22,-6,-22,-19v-1,-13,8,-19,21,-19","w":74},"<":{"d":"253,-201r0,22r-175,72r175,71r0,23r-207,-85r0,-18","w":299},"=":{"d":"45,-84r210,0r0,21r-210,0r0,-21xm45,-151r210,0r0,20r-210,0r0,-20","w":299},">":{"d":"46,-201r207,85r0,18r-207,85r0,-23r176,-71r-176,-72r0,-22","w":299},"?":{"d":"14,-206v41,-28,128,-22,128,39v0,57,-63,60,-62,118r-20,0v-7,-59,51,-65,51,-116v0,-31,-30,-44,-65,-38r-11,31r-21,0r0,-34xm70,4v-12,0,-18,-7,-18,-19v0,-12,6,-19,18,-19v12,0,18,7,18,19v0,12,-6,19,-18,19","w":150},"@":{"d":"246,-22v-24,2,-36,-13,-37,-37v-12,20,-26,36,-54,37v-31,0,-51,-27,-49,-59v3,-51,34,-96,86,-96v22,0,34,14,38,34r10,-31r25,0r-33,126v-1,12,6,17,16,18v48,-9,74,-54,74,-107v0,-71,-50,-110,-121,-110v-96,0,-150,61,-155,158v-7,131,169,160,252,93r5,6v-30,23,-66,40,-115,39v-97,-2,-163,-49,-163,-143v0,-97,70,-158,171,-161v78,-2,134,46,134,120v0,59,-28,108,-84,113xm158,-31v44,0,62,-56,65,-101v2,-20,-12,-37,-30,-38v-41,8,-57,60,-61,104v-2,20,8,35,26,35","w":354},"A":{"d":"67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0","w":188,"k":{"\u201e":-13,"\u201a":-13,"\u2019":40,"\u2018":46,"\u201d":40,"\u201c":46,"\u0152":6,"\u00d8":6,"y":6,"w":6,"v":6,"u":6,"t":8,"e":6,"d":6,"c":6,"Y":20,"W":20,"V":13,"T":20,"O":6,"G":6,"C":13,".":-7,",":-7}},"B":{"d":"113,-163v0,-33,-21,-41,-56,-39r0,82v36,3,56,-10,56,-43xm122,-60v0,-38,-25,-45,-65,-43r0,86v38,3,65,-6,65,-43xm153,-60v2,67,-78,61,-146,60r0,-16r22,-6r0,-175r-22,-6r0,-15v62,1,137,-10,137,50v0,31,-18,51,-43,55v31,2,52,21,52,53","w":163,"k":{"\u201e":6,"\u201a":6,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"Y":13,"W":10,"V":11,"-":-7}},"C":{"d":"43,-108v0,72,51,106,119,84r0,16v-74,34,-149,-9,-149,-95v0,-87,71,-147,149,-108r0,38r-21,0r-11,-30v-59,-8,-87,36,-87,95","w":169,"k":{"\u203a":-7,"\u2039":6,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u00bb":-7,"\u00ab":6,"Y":-7,"-":6}},"D":{"d":"150,-113v0,-61,-29,-93,-94,-87r0,182v67,5,94,-30,94,-95xm181,-114v3,100,-69,122,-174,114r0,-16r22,-6r0,-175r-22,-3r0,-18r65,0v77,-3,106,34,109,104","w":193,"k":{"\u201e":20,"\u201a":20,"\u203a":-7,"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00bb":-7,"\u00ab":-7,"Y":20,"W":10,"V":13,"A":13,"-":-7}},"E":{"d":"6,0r0,-16r23,-6r0,-175r-23,-5r0,-16r141,0r0,46r-20,0r-9,-30r-61,0r0,80r47,0r8,-26r16,0r0,70r-16,0r-8,-27r-47,0r0,88r63,0r9,-34r18,0r0,51r-141,0","w":156},"F":{"d":"7,0r0,-16r23,-6r0,-175r-23,-5r0,-16r135,0r0,46r-20,0r-10,-30r-55,0r0,80r43,0r8,-26r16,0r0,70r-16,0r-8,-27r-43,0r0,83r24,6r0,16r-74,0","w":145,"k":{"\u201e":40,"\u201a":40,"\u2019":-7,"\u201d":-7,"\u0153":13,"\u00f8":13,"\u00e6":13,"y":6,"u":6,"r":13,"o":13,"e":13,"a":13,"A":26,";":13,":":13,".":46,"-":-7,",":46}},"G":{"d":"42,-108v0,63,33,103,98,91r0,-50r-23,-5r0,-17r73,0r0,17r-23,5r0,59v-76,34,-155,-6,-155,-97v0,-90,76,-142,158,-107r0,39r-21,0r-10,-31v-64,-8,-97,32,-97,96","w":194,"k":{"\u201e":6,"\u201a":6,"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"Y":10,"W":6,"T":13,"A":6,"-":-7}},"H":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,73r86,0r0,-73r-23,-5r0,-16r73,0r0,16r-22,5r0,175r22,6r0,16r-73,0r0,-16r23,-6r0,-83r-86,0r0,83r24,6r0,16r-73,0","w":198},"I":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,175r24,6r0,16r-73,0","w":85},"J":{"d":"65,8v9,60,-41,78,-87,60r0,-38r21,0r10,29v24,1,29,-15,28,-42r0,-214r-23,-5r0,-16r74,0r0,16r-23,5r0,205","w":91,"k":{"\u201e":6,"\u201a":6,"\u2019":-7,"\u201d":-7,"-":-7}},"K":{"d":"137,0r-78,-114r65,-84r-15,-4r0,-16r66,0r0,16r-24,5r-63,77r70,98r23,6r0,16r-44,0xm7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-23,5r0,175r23,6r0,16r-73,0","w":180,"k":{"\u2039":13,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u0153":6,"\u0152":6,"\u00ab":13,"\u00f8":6,"\u00e6":6,"\u00d8":6,"y":20,"u":13,"o":6,"e":10,"a":6,"Y":6,"W":6,"O":6,"C":13,"-":26}},"L":{"d":"7,0r0,-16r23,-6r0,-175r-23,-5r0,-16r74,0r0,16r-24,5r0,180r57,0r9,-34r17,0r0,51r-133,0","w":143,"k":{"\u201e":-7,"\u201a":-7,"\u203a":-7,"\u2019":46,"\u2018":40,"\u201d":46,"\u201c":40,"\u0152":6,"\u00bb":-7,"\u00d8":6,"y":20,"u":6,"Y":26,"W":26,"V":26,"U":6,"T":26,"O":6,"A":-7}},"M":{"d":"6,0r0,-16r23,-6r0,-175r-23,-5r0,-16r60,0r56,171r59,-171r55,0r0,16r-23,5r0,175r23,6r0,16r-73,0r0,-16r23,-6r0,-159r-61,181r-15,0r-61,-181r0,159r23,6r0,16r-66,0","w":241},"N":{"d":"7,0r0,-16r23,-6r0,-175r-23,-5r0,-16r53,0r91,163r0,-142r-22,-5r0,-16r66,0r0,16r-24,5r0,197r-20,0r-101,-181r0,159r22,6r0,16r-65,0","w":197},"O":{"d":"43,-106v1,49,12,91,54,91v42,0,57,-42,56,-92v0,-57,-8,-96,-55,-96v-45,0,-55,44,-55,97xm12,-109v0,-61,30,-114,86,-114v60,1,86,45,86,110v0,64,-27,117,-85,117v-59,0,-87,-48,-87,-113","w":195,"k":{"\u201e":20,"\u201a":20,"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"Y":13,"X":15,"V":6,"A":6,".":13,"-":-13,",":13}},"P":{"d":"122,-154v0,-41,-24,-51,-66,-48r0,98v42,2,66,-10,66,-50xm152,-157v0,51,-40,74,-96,69r0,66r28,7r0,15r-77,0r0,-15r22,-6r0,-176r-22,-6r0,-15v69,0,145,-10,145,61","w":158,"k":{"\u201e":53,"\u201a":53,"\u0153":6,"\u00f8":6,"\u00e6":6,"y":-7,"o":6,"e":6,"a":6,"Y":10,"W":6,"A":28,".":46,",":46}},"Q":{"d":"43,-104v1,49,12,89,54,89v44,0,56,-43,56,-96v0,-54,-9,-92,-55,-92v-47,0,-55,43,-55,99xm197,66v-63,23,-93,-12,-115,-64v-48,-9,-70,-52,-70,-112v0,-62,30,-113,86,-113v60,1,86,45,86,110v0,61,-24,107,-73,114v27,35,38,58,86,49r0,16","w":195,"k":{"\u2019":6,"\u201d":6,"-":-7}},"R":{"d":"118,-162v0,-34,-25,-41,-61,-39r0,80v37,3,61,-5,61,-41xm148,-164v0,32,-24,58,-56,57v36,19,36,79,79,91r0,16v-18,0,-37,2,-45,-11r-55,-90v-3,-2,-9,-2,-14,-2r0,81r23,6r0,16r-73,0r0,-16r23,-6r0,-175r-23,-5r0,-16v64,1,141,-13,141,54","w":170,"k":{"\u2039":13,"\u2019":13,"\u2018":13,"\u201d":13,"\u201c":13,"\u0153":6,"\u00ab":13,"\u00f8":6,"\u00e6":6,"y":6,"u":13,"o":6,"e":6,"a":6,"Y":13,"W":13,"V":13,"T":13,"C":8,";":-7,":":-7,".":-7,"-":20,",":-7}},"S":{"d":"135,-56v0,60,-76,73,-122,47r0,-41r21,0r11,35v57,16,85,-48,36,-74v-26,-23,-66,-34,-67,-77v-1,-56,71,-69,116,-45r0,39r-21,0r-12,-32v-54,-14,-74,47,-28,70v26,21,66,33,66,78","w":148,"k":{"A":6}},"T":{"d":"48,0r0,-16r24,-6r0,-180r-37,0r-10,30r-19,0r0,-46r159,0r0,46r-20,0r-9,-30r-37,0r0,180r23,6r0,16r-74,0","w":169,"k":{"\u201e":26,"\u201a":26,"\u203a":26,"\u2039":26,"\u2019":-7,"\u201d":-7,"\u0153":33,"\u00bb":26,"\u00ab":26,"\u00f8":33,"\u00e6":33,"y":20,"w":33,"u":26,"s":26,"r":20,"o":33,"i":6,"e":33,"c":33,"a":33,"C":13,"A":20,";":33,":":33,".":33,"-":26,",":33}},"U":{"d":"102,-17v33,0,47,-15,47,-48r0,-132r-23,-5r0,-16r67,0r0,16r-22,5v-5,87,28,201,-73,201v-46,0,-73,-21,-73,-64r0,-137r-22,-5r0,-16r73,0r0,16r-23,5r0,127v0,39,12,52,49,53","w":195,"k":{"J":6}},"V":{"d":"76,0r-58,-197r-17,-5r0,-16r67,0r0,16r-20,5r47,167r51,-167r-20,-5r0,-16r62,0r0,16r-17,5r-65,197r-30,0","w":187,"k":{"\u201e":46,"\u201a":46,"\u203a":13,"\u2039":20,"\u0153":26,"\u0152":6,"\u00bb":13,"\u00ab":20,"\u00f8":26,"\u00e6":26,"\u00d8":6,"y":13,"u":13,"o":26,"i":6,"e":26,"a":26,"O":6,"A":20,";":20,":":20,".":46,"-":13,",":46}},"W":{"d":"72,0r-48,-197r-19,-5r0,-16r68,0r0,16r-20,5r37,161r44,-182r25,0r42,185r41,-164r-21,-5r0,-16r63,0r0,16r-18,5r-55,197r-29,0r-39,-173r-42,173r-29,0","w":287,"k":{"\u201e":40,"\u201a":40,"\u203a":13,"\u2039":20,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u0153":26,"\u00bb":13,"\u00ab":20,"\u00f8":26,"\u00e6":26,"y":13,"u":13,"r":20,"o":26,"i":13,"e":26,"a":26,"A":26,";":20,":":20,".":33,"-":6,",":33}},"X":{"d":"6,0r0,-16r17,-6r57,-87r-54,-88r-17,-5r0,-16r69,0r0,16r-20,5r39,65r39,-65r-20,-5r0,-16r61,0r0,16r-17,5r-53,82r58,93r17,6r0,16r-69,0r0,-16r20,-6r-43,-69r-42,69r20,6r0,16r-62,0","w":186,"k":{"\u201e":-7,"\u201a":-7,"\u2039":13,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u0152":15,"\u00ab":13,"\u00d8":15,"e":13,"T":6,"O":15,"C":13,"-":13}},"Y":{"d":"49,0r0,-16r26,-6r0,-68r-56,-108r-18,-4r0,-16r68,0r0,16r-20,5r43,84r43,-84r-20,-6r0,-15r63,0r0,15r-18,6r-57,101r0,74r25,6r0,16r-79,0","w":177,"k":{"\u201e":40,"\u201a":40,"\u203a":13,"\u2039":26,"\u0153":33,"\u0152":13,"\u00bb":13,"\u00ab":26,"\u00f8":33,"\u00e6":40,"\u00d8":13,"u":26,"o":33,"i":6,"e":40,"a":40,"O":13,"C":20,"A":20,";":33,":":33,".":40,"-":33,",":40}},"Z":{"d":"149,-51r0,51r-140,0r0,-22r109,-180r-77,0r-9,30r-18,0r0,-46r134,0r0,21r-108,180r80,0r11,-34r18,0","w":159},"[":{"d":"30,75r0,-317r52,0r0,16r-27,0r0,284r27,0r0,17r-52,0","w":87},"\\":{"d":"83,75r-17,0r-58,-318r16,0","w":90},"]":{"d":"58,75r-52,0r0,-17r26,0r0,-284r-26,0r0,-16r52,0r0,317","w":87},"^":{"d":"164,-257r31,0r92,99r-16,0r-91,-76r-92,76r-16,0","w":360},"_":{"d":"0,64r180,0r0,21r-180,0r0,-21","w":180},"`":{"d":"119,-195r-16,8r-42,-46r24,-15","w":180},"a":{"d":"73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77","w":164},"b":{"d":"86,-149v-15,-1,-25,7,-35,15r0,112v42,21,71,-17,68,-66v-2,-34,-3,-60,-33,-61xm149,-94v0,63,-44,122,-99,87r-26,11r0,-221r-24,-5r0,-14r51,-7r0,93v15,-11,25,-20,46,-20v37,0,52,34,52,76","w":159},"c":{"d":"40,-80v0,56,41,73,86,56r0,16v-53,28,-114,3,-114,-68v0,-69,56,-116,114,-83r0,28r-22,0v-4,-9,2,-24,-18,-22v-35,3,-46,32,-46,73","w":135},"d":{"d":"73,-18v16,0,24,-7,36,-15r0,-112v-45,-19,-68,19,-68,70v0,31,6,56,32,57xm12,-73v-3,-63,44,-120,97,-87r0,-57r-24,-5r0,-14r51,-7r0,221r24,5r0,13r-51,5r0,-17v-11,9,-26,20,-44,20v-39,0,-51,-35,-53,-77","w":164},"e":{"d":"99,-127v3,-30,-39,-29,-50,-10v-5,9,-8,22,-8,41v34,0,56,-3,58,-31xm41,-80v-9,58,40,72,85,56r0,16v-52,27,-114,5,-114,-68v0,-53,24,-94,71,-95v27,0,45,14,45,41v0,42,-42,54,-87,50","w":138},"f":{"d":"100,-226v-38,-7,-45,19,-42,59r34,0r0,17r-34,0r0,128r30,7r0,15r-79,0r0,-16r22,-6r0,-128r-24,0r0,-17r24,0v-10,-65,47,-92,97,-66r0,23r-22,0","w":97,"k":{"\u201e":-13,"\u201a":-13,"\u203a":-13,"\u2019":-40,"\u2018":-27,"\u201d":-40,"\u201c":-27,"\u00bb":-13}},"g":{"d":"47,55v48,8,69,-19,62,-71v-11,9,-26,20,-44,20v-39,0,-51,-35,-53,-77v-3,-64,44,-120,99,-87r25,-10r0,166v13,78,-68,93,-120,64r0,-30r23,0xm73,-18v16,0,24,-7,36,-15r0,-112v-45,-19,-68,19,-68,70v0,31,6,56,32,57","w":161},"h":{"d":"121,-115v4,-43,-46,-35,-66,-18r0,111r22,6r0,16r-72,0r0,-16r23,-6r0,-196r-24,-4r0,-14r51,-7r0,94v26,-26,93,-33,93,23r0,104r23,6r0,16r-72,0r0,-16r22,-6r0,-93","w":175},"i":{"d":"62,-220v0,11,-7,18,-18,18v-11,0,-17,-7,-17,-18v0,-11,6,-17,17,-17v11,0,18,7,18,17xm59,-22r22,6r0,16r-71,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,147","w":88},"j":{"d":"62,-220v0,11,-7,18,-18,18v-11,0,-17,-7,-17,-18v0,-11,6,-17,17,-17v11,0,18,7,18,17xm11,59v20,-2,22,-22,21,-46r0,-157r-24,-5r0,-14r51,-6r0,179v5,52,-39,77,-81,57r0,-31r25,0","w":84},"k":{"d":"96,-167r67,0r0,16v-37,7,-51,38,-77,57r53,72r24,6r0,16r-43,0r-63,-90r56,-55r-17,-6r0,-16xm55,-243r0,221r22,6r0,16r-72,0r0,-16r23,-6r0,-196r-24,-4r0,-14","w":162,"k":{"\u0153":6,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6}},"l":{"d":"5,0r0,-16r23,-6r0,-196r-24,-4r0,-14r51,-7r0,221r22,6r0,16r-72,0","w":83},"m":{"d":"125,-115v5,-44,-47,-34,-67,-19r0,112r23,6r0,16r-72,0r0,-16r23,-6r0,-122r-24,-5r0,-14r50,-6r0,19v24,-19,76,-31,90,2v33,-26,97,-35,97,22r0,104r23,6r0,16r-72,0r0,-16r22,-6r0,-93v5,-43,-45,-35,-66,-19r0,112r22,6r0,16r-71,0r0,-16r22,-6r0,-93","w":271},"n":{"d":"125,-115v5,-44,-47,-34,-67,-19r0,112r23,6r0,16r-72,0r0,-16r23,-6r0,-122r-24,-5r0,-14r50,-6r0,19v29,-24,94,-32,94,24r0,104r22,6r0,16r-71,0r0,-16r22,-6r0,-93","w":178,"k":{"\u2019":26,"\u2018":13,"\u201d":26,"\u201c":13}},"o":{"d":"76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm12,-78v0,-52,20,-92,64,-93v44,-1,65,36,65,83v0,51,-21,92,-65,92v-43,0,-64,-35,-64,-82","k":{"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"x":13,";":6,":":6,".":13,"-":-7,",":13}},"p":{"d":"92,-149v-15,0,-23,7,-34,15r0,112v42,21,71,-17,68,-66v-2,-35,-4,-60,-34,-61xm156,-94v0,63,-42,121,-98,88r0,59r30,6r0,15r-79,0r0,-16r23,-5r0,-197r-24,-5r0,-14r50,-6r0,19v15,-12,25,-20,46,-20v37,0,52,34,52,76","w":167},"q":{"d":"73,-18v16,0,24,-7,36,-15r0,-112v-45,-19,-68,19,-68,70v0,31,6,56,32,57xm12,-73v-3,-64,44,-120,99,-87r25,-10r0,223r22,5r0,16r-71,0r0,-16r22,-5r0,-69v-11,9,-26,20,-44,20v-39,0,-51,-35,-53,-77","w":160},"r":{"d":"93,-147v-14,1,-24,6,-34,15r0,110r29,7r0,15r-78,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,20v17,-14,38,-27,63,-17r0,35r-23,0","w":123,"k":{"\u201e":26,"\u201a":26,"\u203a":-7,"\u2018":-7,"\u201c":-7,"\u0153":6,"\u00bb":-7,"\u00f8":6,"y":-8,"x":-7,"v":-7,"u":-7,"q":6,"o":6,"h":6,"g":6,"e":13,"d":13,"c":13,".":26,"-":6,",":26}},"s":{"d":"107,-68v31,57,-53,92,-94,59r0,-31r21,0v6,11,2,30,23,27v36,3,36,-44,8,-54v-20,-17,-50,-25,-51,-58v-1,-46,61,-53,95,-34r0,29r-22,0v-5,-9,-1,-26,-19,-23v-34,-2,-35,40,-6,50v15,10,38,22,45,35","w":125},"t":{"d":"101,-10v-28,19,-74,16,-74,-28r0,-112r-24,0v-3,-20,15,-18,24,-26r14,-31r13,0r0,40r46,0r0,17r-46,0r0,98v-4,33,21,36,47,30r0,12","w":110},"u":{"d":"54,-52v-5,43,47,35,67,19r0,-112r-24,-5r0,-14r51,-5r0,147r24,4r0,14r-51,6r0,-19v-29,25,-94,32,-94,-24r0,-104r-24,-5r0,-14r51,-5r0,117","w":179},"v":{"d":"66,0r-47,-146r-18,-5r0,-16r68,0r0,16r-20,5r36,125r36,-125r-20,-5r0,-16r62,0r0,16r-19,5r-47,146r-31,0","w":163,"k":{"\u201e":33,"\u201a":33,"\u2018":-7,"\u201c":-7,".":33,",":33}},"w":{"d":"65,0r-43,-145r-18,-6r0,-16r68,0r0,16r-20,5r28,113r42,-134r20,0r40,133r30,-112r-20,-5r0,-16r60,0r0,16r-17,6r-44,145r-25,0r-38,-125r-39,125r-24,0","w":255,"k":{"\u201e":33,"\u201a":33,"\u2039":6,"\u2018":-7,"\u201c":-7,"\u00ab":6,";":6,":":6,".":26,",":26}},"x":{"d":"5,0r0,-16r18,-6r47,-61r-43,-62r-17,-6r0,-16r64,0r0,16r-16,5r27,42r28,-42r-15,-5r0,-16r57,0r0,16r-18,6r-42,55r46,68r18,6r0,16r-64,0r0,-16r17,-5r-32,-47r-32,47r17,5r0,16r-60,0","w":164,"k":{"\u0153":13,"\u00f8":13,"o":13,"e":13,"c":13}},"y":{"d":"89,25v-9,38,-35,60,-76,42r0,-31r25,0r7,20v22,-3,21,-34,30,-52r-56,-150r-18,-5r0,-16r68,0r0,16r-20,5r38,116r34,-116r-20,-5r0,-16r62,0r0,16r-19,5","w":163,"k":{"\u201e":33,"\u201a":33,"\u2039":6,"\u2018":-7,"\u201c":-7,"\u00ab":6,";":6,":":6,".":40,",":40}},"z":{"d":"9,0r0,-17r87,-134r-54,0r-10,21r-17,0r0,-37r112,0r0,16r-88,135r62,0r11,-24r17,0r0,40r-120,0","w":139},"{":{"d":"80,-168v0,-63,1,-105,69,-98r0,8v-45,-3,-44,28,-44,72v0,52,-9,65,-50,74v50,5,50,41,50,100v0,36,9,44,44,46v-1,3,2,9,-2,9v-66,5,-67,-36,-67,-98v0,-40,-12,-48,-49,-52r0,-10v37,-4,49,-12,49,-51","w":180},"|":{"d":"79,-275r22,0r0,360r-22,0r0,-360","w":180},"}":{"d":"75,-186v0,-43,1,-75,-44,-72v1,-3,-2,-9,2,-8v65,-5,67,36,67,98v0,39,12,47,49,51r0,10v-52,-1,-49,37,-49,89v0,48,-19,61,-69,61r0,-9v45,2,45,-27,44,-71v0,-52,8,-66,50,-75v-41,-9,-50,-22,-50,-74","w":180},"~":{"d":"99,-130v34,-1,73,25,102,24v29,-1,46,-11,68,-27r0,23v-20,14,-39,24,-68,25v-33,1,-76,-26,-102,-24v-29,2,-46,12,-68,28r0,-23v20,-15,40,-25,68,-26","w":299},"\u00c4":{"d":"67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0xm120,-281v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm68,-281v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":188},"\u00c5":{"d":"96,-300v-13,0,-26,13,-26,26v0,14,12,27,26,27v14,0,26,-13,26,-27v0,-13,-13,-26,-26,-26xm96,-230v-24,0,-43,-20,-43,-44v0,-24,20,-43,43,-43v24,0,44,19,44,43v0,24,-20,44,-44,44xm67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0","w":188},"\u00c7":{"d":"43,-108v0,72,51,106,119,84r0,16v-74,34,-149,-9,-149,-95v0,-87,71,-147,149,-108r0,38r-21,0r-11,-30v-59,-8,-87,36,-87,95xm107,11v27,5,29,39,9,55v-10,7,-21,12,-36,13r-3,-15v22,-3,40,-31,16,-42r0,-22r14,0r0,11","w":169},"\u00c9":{"d":"6,0r0,-16r23,-6r0,-175r-23,-5r0,-16r141,0r0,46r-20,0r-9,-30r-61,0r0,80r47,0r8,-26r16,0r0,70r-16,0r-8,-27r-47,0r0,88r63,0r9,-34r18,0r0,51r-141,0xm49,-250r34,-53r24,15r-43,46","w":156},"\u00d1":{"d":"7,0r0,-16r23,-6r0,-175r-23,-5r0,-16r53,0r91,163r0,-142r-22,-5r0,-16r66,0r0,16r-24,5r0,197r-20,0r-101,-181r0,159r22,6r0,16r-65,0xm78,-269v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17","w":197},"\u00d6":{"d":"43,-106v1,49,12,91,54,91v42,0,57,-42,56,-92v0,-57,-8,-96,-55,-96v-45,0,-55,44,-55,97xm12,-109v0,-61,30,-114,86,-114v60,1,86,45,86,110v0,64,-27,117,-85,117v-59,0,-87,-48,-87,-113xm124,-281v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm72,-281v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":195},"\u00dc":{"d":"102,-17v33,0,47,-15,47,-48r0,-132r-23,-5r0,-16r67,0r0,16r-22,5v-5,87,28,201,-73,201v-46,0,-73,-21,-73,-64r0,-137r-22,-5r0,-16r73,0r0,16r-23,5r0,127v0,39,12,52,49,53xm124,-281v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm72,-281v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":195},"\u00e1":{"d":"73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77xm53,-195r34,-53r24,15r-43,46","w":164},"\u00e0":{"d":"73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77xm111,-195r-16,8r-42,-46r24,-15","w":164},"\u00e2":{"d":"73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77xm34,-196r48,-52r49,52r-14,9r-35,-29r-35,29","w":164},"\u00e4":{"d":"73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77xm108,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm56,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":164},"\u00e3":{"d":"73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77xm61,-214v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17","w":164},"\u00e5":{"d":"81,-251v-14,0,-26,12,-26,26v0,13,13,26,26,26v13,0,26,-13,26,-26v0,-14,-12,-26,-26,-26xm81,-182v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44v24,0,44,20,44,44v0,24,-20,43,-44,43xm73,-18v15,-1,23,-7,35,-15r0,-112v-45,-19,-68,19,-68,70v0,32,7,56,33,57xm11,-73v-3,-64,44,-120,99,-87r25,-10r0,148r24,5r0,13r-51,5r0,-17v-11,9,-27,20,-45,20v-38,0,-50,-36,-52,-77","w":164},"\u00e7":{"d":"40,-80v0,56,41,73,86,56r0,16v-53,28,-114,3,-114,-68v0,-69,56,-116,114,-83r0,28r-22,0v-4,-9,2,-24,-18,-22v-35,3,-46,32,-46,73xm89,11v27,5,29,39,9,55v-10,7,-21,12,-36,13r-3,-15v22,-3,40,-31,16,-42r0,-22r14,0r0,11","w":135},"\u00e9":{"d":"99,-127v3,-30,-39,-29,-50,-10v-5,9,-8,22,-8,41v34,0,56,-3,58,-31xm41,-80v-9,58,40,72,85,56r0,16v-52,27,-114,5,-114,-68v0,-53,24,-94,71,-95v27,0,45,14,45,41v0,42,-42,54,-87,50xm54,-195r34,-53r24,15r-43,46","w":138},"\u00e8":{"d":"99,-127v3,-30,-39,-29,-50,-10v-5,9,-8,22,-8,41v34,0,56,-3,58,-31xm41,-80v-9,58,40,72,85,56r0,16v-52,27,-114,5,-114,-68v0,-53,24,-94,71,-95v27,0,45,14,45,41v0,42,-42,54,-87,50xm112,-195r-16,8r-42,-46r24,-15","w":138},"\u00ea":{"d":"99,-127v3,-30,-39,-29,-50,-10v-5,9,-8,22,-8,41v34,0,56,-3,58,-31xm41,-80v-9,58,40,72,85,56r0,16v-52,27,-114,5,-114,-68v0,-53,24,-94,71,-95v27,0,45,14,45,41v0,42,-42,54,-87,50xm35,-196r48,-52r49,52r-14,9r-35,-29r-35,29","w":138},"\u00eb":{"d":"99,-127v3,-30,-39,-29,-50,-10v-5,9,-8,22,-8,41v34,0,56,-3,58,-31xm41,-80v-9,58,40,72,85,56r0,16v-52,27,-114,5,-114,-68v0,-53,24,-94,71,-95v27,0,45,14,45,41v0,42,-42,54,-87,50xm109,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm57,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":138},"\u00ed":{"d":"59,-22r22,6r0,16r-71,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,147xm8,-195r34,-53r24,15r-43,46","w":88},"\u00ec":{"d":"59,-22r22,6r0,16r-71,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,147xm66,-195r-16,8r-42,-46r24,-15","w":88},"\u00ee":{"d":"59,-22r22,6r0,16r-71,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,147xm-11,-196r48,-52r49,52r-14,9r-35,-29r-35,29","w":88},"\u00ef":{"d":"59,-22r22,6r0,16r-71,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,147xm63,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm11,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":88},"\u00f1":{"d":"125,-115v5,-44,-47,-34,-67,-19r0,112r23,6r0,16r-72,0r0,-16r23,-6r0,-122r-24,-5r0,-14r50,-6r0,19v29,-24,94,-32,94,24r0,104r22,6r0,16r-71,0r0,-16r22,-6r0,-93xm68,-214v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17","w":178},"\u00f3":{"d":"76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm12,-78v0,-52,20,-92,64,-93v44,-1,65,36,65,83v0,51,-21,92,-65,92v-43,0,-64,-35,-64,-82xm47,-195r34,-53r24,15r-43,46"},"\u00f2":{"d":"76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm12,-78v0,-52,20,-92,64,-93v44,-1,65,36,65,83v0,51,-21,92,-65,92v-43,0,-64,-35,-64,-82xm105,-195r-16,8r-42,-46r24,-15"},"\u00f4":{"d":"76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm12,-78v0,-52,20,-92,64,-93v44,-1,65,36,65,83v0,51,-21,92,-65,92v-43,0,-64,-35,-64,-82xm28,-196r48,-52r49,52r-14,9r-35,-29r-35,29"},"\u00f6":{"d":"76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm12,-78v0,-52,20,-92,64,-93v44,-1,65,36,65,83v0,51,-21,92,-65,92v-43,0,-64,-35,-64,-82xm102,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm50,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16"},"\u00f5":{"d":"76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm12,-78v0,-52,20,-92,64,-93v44,-1,65,36,65,83v0,51,-21,92,-65,92v-43,0,-64,-35,-64,-82xm55,-214v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17"},"\u00fa":{"d":"54,-52v-5,43,47,35,67,19r0,-112r-24,-5r0,-14r51,-5r0,147r24,4r0,14r-51,6r0,-19v-29,25,-94,32,-94,-24r0,-104r-24,-5r0,-14r51,-5r0,117xm49,-195r34,-53r24,15r-43,46","w":179},"\u00f9":{"d":"54,-52v-5,43,47,35,67,19r0,-112r-24,-5r0,-14r51,-5r0,147r24,4r0,14r-51,6r0,-19v-29,25,-94,32,-94,-24r0,-104r-24,-5r0,-14r51,-5r0,117xm107,-195r-16,8r-42,-46r24,-15","w":179},"\u00fb":{"d":"54,-52v-5,43,47,35,67,19r0,-112r-24,-5r0,-14r51,-5r0,147r24,4r0,14r-51,6r0,-19v-29,25,-94,32,-94,-24r0,-104r-24,-5r0,-14r51,-5r0,117xm30,-196r48,-52r49,52r-14,9r-35,-29r-35,29","w":179},"\u00fc":{"d":"54,-52v-5,43,47,35,67,19r0,-112r-24,-5r0,-14r51,-5r0,147r24,4r0,14r-51,6r0,-19v-29,25,-94,32,-94,-24r0,-104r-24,-5r0,-14r51,-5r0,117xm104,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm52,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":179},"\u2020":{"d":"68,75v-13,-53,-16,-124,-15,-195v4,-12,10,-25,10,-41r-55,9r0,-26r55,9r-10,-74r30,0r-11,74r55,-9r0,26r-55,-9v20,64,10,173,-4,236","w":135},"\u00b0":{"d":"95,-206v0,-19,-17,-35,-36,-35v-19,0,-35,16,-35,35v0,19,16,36,35,36v19,0,36,-17,36,-36xm10,-206v0,-27,23,-50,49,-50v27,0,50,23,50,50v0,26,-24,50,-50,50v-26,0,-49,-23,-49,-50","w":118},"\u00a2":{"d":"81,-155v-41,12,-46,121,0,131r0,-131xm91,-22v17,0,30,-3,44,-7r0,17v-14,6,-27,10,-44,12r0,22r-10,0r0,-23v-42,-4,-60,-33,-61,-79v-1,-48,21,-87,61,-93r0,-23r10,0r0,22v18,-1,31,3,44,10r0,29r-21,0v-3,-12,-4,-28,-23,-22r0,135"},"\u00a3":{"d":"58,-106v0,36,2,68,-20,81r86,0r9,-27r20,0r0,52r-143,0r0,-17v27,-9,19,-54,20,-89r-20,0r0,-18r20,0v-3,-61,6,-102,66,-99v20,0,35,5,50,12r0,38r-21,0r-12,-31v-52,-10,-59,28,-55,80r50,0r0,18r-50,0"},"\u00a7":{"d":"73,-124v-32,6,-48,53,-15,70r23,13v37,-6,46,-60,8,-74xm128,14v3,49,-67,57,-102,36r0,-28r21,0v5,10,3,26,23,22v25,3,43,-22,28,-41v-22,-28,-86,-31,-85,-82v0,-29,21,-45,44,-54v-47,-16,-36,-92,24,-92v18,0,34,4,47,10r0,29r-20,0v-6,-9,-2,-25,-21,-22v-28,-4,-45,22,-30,41v22,28,87,34,86,84v-1,27,-22,45,-46,52v18,8,30,22,31,45","w":155},"\u2022":{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},"\u00b6":{"d":"13,-199v-1,-69,83,-63,154,-61r0,14r-22,0r0,246r-17,0r0,-246r-32,0r0,246r-17,0r0,-137v-38,-1,-66,-24,-66,-62","w":180},"\u00df":{"d":"89,-225v-28,0,-37,14,-36,44r0,181r-51,0r0,-16r23,-6v8,-88,-34,-221,68,-221v58,0,83,59,34,85v-19,10,-37,39,-7,55v23,13,51,26,52,57v4,50,-67,62,-101,37r0,-31r21,0v6,11,2,30,23,27v37,4,37,-44,8,-54v-34,-13,-66,-60,-25,-92v12,-9,28,-17,28,-38v0,-20,-15,-29,-37,-28","w":176,"k":{"\u2019":13,"\u2018":13,"\u201d":13,"\u201c":13,"-":-7}},"\u00ae":{"d":"181,-157v3,-26,-47,-40,-53,-15r0,46v29,1,50,-5,53,-31xm105,-167v-1,-14,-7,-16,-23,-17r0,-8v50,2,125,-11,125,35v0,24,-23,30,-50,35v24,7,36,21,39,49v2,10,6,15,11,15v9,-1,11,-11,11,-23v3,1,9,-2,8,2v1,20,-10,31,-28,31v-19,0,-26,-11,-26,-31v0,-31,-14,-41,-44,-41v2,26,-10,65,22,62r0,7r-68,0r0,-7v16,0,23,-4,23,-18r0,-91xm256,-119v0,-66,-43,-110,-108,-110v-65,0,-108,44,-108,110v0,65,43,109,108,109v66,0,108,-45,108,-109xm24,-119v0,-73,49,-124,124,-124v73,0,123,48,123,124v0,74,-50,123,-124,123v-73,0,-123,-51,-123,-123","w":295},"\u00a9":{"d":"145,-194v19,-4,47,27,52,1r6,0r0,56r-7,0v-7,-28,-19,-49,-49,-49v-33,0,-44,28,-44,66v0,39,13,67,47,67v25,0,38,-14,50,-31r6,4v-12,22,-29,37,-60,37v-39,0,-71,-35,-71,-74v0,-41,30,-78,70,-77xm256,-119v0,-66,-43,-110,-108,-110v-65,0,-108,44,-108,110v0,65,43,109,108,109v66,0,108,-45,108,-109xm24,-119v0,-73,49,-124,124,-124v74,0,123,50,123,124v0,73,-49,123,-123,123v-74,0,-124,-50,-124,-123","w":295},"\u2122":{"d":"152,-238v0,-8,-4,-11,-13,-10r0,-5r32,0r24,71r26,-71r31,0v2,9,-13,2,-13,14r0,66v-2,11,13,5,13,14r-41,0v-1,-9,13,-3,13,-14r0,-70r-31,85r-3,0r-31,-85r0,70v1,7,7,9,14,10r0,4r-34,0v-1,-9,13,-3,13,-14r0,-65xm75,-248v-20,-1,-26,9,-28,27r-4,0r2,-32r77,0r2,32r-4,0v-2,-18,-8,-28,-28,-27r0,75v-2,11,13,5,13,14r-43,0v-1,-9,13,-3,13,-14r0,-75","w":295},"\u00b4":{"d":"61,-195r34,-53r24,15r-43,46","w":180},"\u00a8":{"d":"116,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm64,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":180},"\u2260":{"d":"213,-207r15,12r-34,44r61,0r0,20r-74,0r-37,48r111,0r0,20r-124,0r-45,56r-15,-13r34,-43r-60,0r0,-20r73,0r38,-48r-111,0r0,-20r123,0","w":299},"\u00c6":{"d":"75,-114r40,0r0,-92xm-8,0r0,-16r17,-6r93,-196r128,0r0,46r-19,0r-9,-30r-60,0r0,88r46,0r8,-26r16,0r0,70r-16,0r-8,-27r-46,0r0,80r61,0r10,-34r17,0r0,51r-137,0r0,-16r22,-6r0,-75r-48,0r-33,75r21,6r0,16r-63,0","w":240,"k":{"\u2019":-7,"\u201d":-7}},"\u00d8":{"d":"98,-15v59,1,63,-92,49,-148r-89,127v8,12,22,21,40,21xm98,-203v-59,-1,-62,90,-49,147r89,-127v-7,-13,-21,-19,-40,-20xm98,-223v24,1,41,8,55,19r24,-34r15,11r-26,38v38,63,17,197,-67,193v-24,-1,-42,-7,-55,-19r-26,37r-16,-13r29,-40v-40,-62,-19,-197,67,-192","w":195,"k":{"\u201e":20,"\u201a":20,"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"Y":13,"X":15,"V":6,"A":6,".":13,"-":-13,",":13}},"\u221e":{"d":"249,-110v0,-37,-41,-59,-65,-31v-8,8,-16,23,-25,43v13,44,90,44,90,-12xm52,-106v0,38,39,59,64,32v8,-8,16,-22,25,-43v-13,-43,-89,-45,-89,11xm208,-41v-30,0,-41,-19,-56,-46v-14,26,-26,45,-56,47v-33,2,-56,-32,-56,-67v0,-37,19,-68,52,-68v30,0,42,21,56,47v13,-25,25,-46,56,-47v33,-1,56,32,56,67v0,37,-20,67,-52,67","w":299},"\u00b1":{"d":"45,-28r210,0r0,21r-210,0r0,-21xm140,-207r20,0r0,60r95,0r0,21r-95,0r0,60r-20,0r0,-60r-95,0r0,-21r95,0r0,-60","w":299},"\u2264":{"d":"46,-26r208,0r0,20r-208,0r0,-20xm254,-210r0,22r-172,57r172,57r0,22r-208,-70r0,-18","w":299},"\u2265":{"d":"46,-26r208,0r0,20r-208,0r0,-20xm46,-210r208,70r0,18r-208,70r0,-22r172,-57r-172,-57r0,-22","w":299},"\u00a5":{"d":"49,0r0,-16r26,-6r0,-64r-58,0r0,-16r52,0r-14,-25r-38,0r0,-16r30,0r-28,-55r-18,-4r0,-16r68,0r0,16r-20,5r43,84r43,-84r-20,-6r0,-15r63,0r0,15r-18,6r-30,54r32,0r0,16r-41,0r-15,25r56,0r0,16r-59,0r0,64r25,6r0,16r-79,0","w":177},"\u00b5":{"d":"117,-34v-7,44,-85,54,-88,0v-6,22,-9,108,-29,107v-25,-10,-13,-24,-3,-63v15,-58,25,-108,38,-166r26,0r-21,107v-2,33,39,38,57,18v24,-28,24,-84,36,-125r26,0v-7,40,-19,75,-23,118v-1,11,6,19,16,19v23,0,23,-29,35,-39v3,0,4,3,4,6v-3,29,-17,55,-47,55v-18,0,-28,-17,-27,-37","w":196},"\u2202":{"d":"86,-140v27,0,39,13,47,34v4,-37,13,-102,-22,-108v-11,-2,-30,23,-40,22v-6,1,-14,-6,-13,-12v0,-17,22,-28,41,-27v45,1,66,47,66,99v0,65,-29,134,-85,136v-35,1,-59,-29,-59,-66v0,-40,26,-79,65,-78xm80,-5v32,-1,45,-43,45,-80v0,-25,-8,-43,-31,-43v-31,0,-45,42,-45,81v0,25,8,42,31,42","w":183},"\u2211":{"d":"2,-259r200,0r17,60r-13,0v-9,-17,-3,-48,-30,-48r-131,0r152,150r0,6r-151,133r171,-2v9,-13,12,-33,18,-49r13,0r-24,78r-222,0r0,-5r169,-147r-169,-167r0,-9","w":252},"\u220f":{"d":"10,-259r260,0r0,12r-33,0r0,304r33,0r0,12r-98,0r0,-12r35,0r0,-304r-134,0r0,304r35,0r0,12r-98,0r0,-12r33,0r0,-304r-33,0r0,-12","w":280},"\u03c0":{"d":"5,-89v9,-42,18,-67,63,-67r166,0r-7,29r-57,0v-9,27,-6,135,-31,135v-9,0,-14,-8,-14,-17v0,-22,30,-92,34,-118r-65,0v-9,27,-6,135,-31,135v-9,0,-14,-8,-14,-17v0,-22,30,-92,34,-118v-41,-1,-64,0,-67,38r-11,0","w":238},"\u222b":{"d":"28,21v19,-1,17,20,25,26v12,0,17,-39,20,-117v3,-97,-4,-192,69,-202v30,-5,41,44,9,44v-18,0,-17,-18,-24,-27v-12,0,-16,38,-21,112v-6,82,14,196,-69,208v-32,5,-39,-42,-9,-44","w":179},"\u00aa":{"d":"30,-154v-5,38,29,50,51,29r0,-78v-31,-14,-55,12,-51,49xm8,-153v-4,-46,36,-83,75,-60r18,-8r0,104r19,3r0,10r-39,4r0,-13v-28,29,-79,8,-73,-40","w":123},"\u00ba":{"d":"31,-160v0,28,3,48,26,48v23,0,27,-22,27,-50v0,-27,-4,-46,-27,-46v-22,0,-26,21,-26,48xm9,-157v0,-36,16,-63,48,-64v33,0,48,23,48,58v0,37,-15,63,-48,64v-32,0,-48,-24,-48,-58","w":114},"\u03a9":{"d":"247,-154v-2,54,-24,81,-54,121r0,5r55,0r12,-36r11,0r-19,64r-88,0v26,-44,46,-93,47,-152v1,-57,-21,-98,-73,-98v-52,0,-74,41,-73,98v1,60,22,106,48,152r-88,0r-20,-64r11,0r12,36r55,0r0,-5v-30,-40,-51,-66,-53,-121v-2,-63,45,-109,108,-109v63,0,111,46,109,109","w":275},"\u00e6":{"d":"158,-152v-26,1,-36,26,-35,56v34,1,58,-3,58,-32v0,-16,-7,-24,-23,-24xm38,-48v-1,30,38,35,60,22r0,-53v-34,0,-60,2,-60,31xm24,-154v23,-19,80,-27,94,4v19,-31,95,-29,93,20v-2,42,-40,52,-88,51v-10,54,39,70,85,54r0,16v-24,15,-81,18,-95,-8v-30,32,-107,28,-104,-29v2,-43,39,-52,89,-51v3,-37,-4,-67,-42,-56r-9,22r-23,0r0,-23","w":221},"\u00f8":{"d":"76,-14v39,0,37,-57,34,-101r-61,84v6,9,13,17,27,17xm76,-152v-38,1,-37,60,-33,101r60,-85v-6,-10,-12,-16,-27,-16xm12,-78v0,-70,54,-118,105,-78r21,-29r13,10r-23,33v29,49,10,146,-52,146v-18,0,-31,-6,-41,-15r-22,32r-14,-10r25,-35v-8,-13,-12,-33,-12,-54","k":{"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"x":13,";":6,":":6,".":13,"-":-7,",":13}},"\u00bf":{"d":"85,-223v12,0,19,6,18,19v0,13,-6,19,-18,19v-12,0,-18,-7,-18,-19v0,-12,6,-19,18,-19xm142,-13v-39,29,-128,23,-128,-39v0,-58,64,-58,62,-118r20,0v7,59,-51,64,-51,116v0,31,29,45,64,39r12,-31r21,0r0,33","w":150},"\u00a1":{"d":"44,-223v12,0,18,7,18,19v0,12,-6,19,-18,19v-12,0,-19,-7,-19,-19v0,-12,7,-19,19,-19xm44,4v-18,0,-18,-16,-17,-33r7,-141r19,0r8,153v1,13,-5,21,-17,21","w":87},"\u00ac":{"d":"45,-151r210,0r0,88r-20,0r0,-67r-190,0r0,-21","w":299},"\u221a":{"d":"194,-290r32,0r0,15r-21,0r-104,282r-9,0r-57,-157r-21,8r-4,-12r46,-16r47,128","w":226},"\u0192":{"d":"-23,54v0,-25,37,-18,41,1v39,-31,27,-139,41,-202r-33,0r2,-20r33,0v4,-49,23,-71,70,-76v33,-3,50,39,17,39v-13,0,-19,-8,-24,-20v-26,2,-32,29,-34,57r45,0r-2,20r-45,0v-23,77,6,216,-82,221v-16,1,-29,-7,-29,-20"},"\u2248":{"d":"201,-75v30,-1,44,-12,68,-28r0,23v-22,15,-39,24,-68,26v-20,1,-81,-25,-102,-24v-30,2,-44,12,-68,28r0,-23v21,-15,39,-24,68,-26v22,-2,82,26,102,24xm201,-137v30,-1,44,-11,68,-27r0,23v-20,15,-39,23,-68,25v-21,1,-81,-25,-102,-24v-30,2,-44,12,-68,28r0,-23v20,-15,40,-24,68,-26v22,-2,82,26,102,24","w":299},"\u2206":{"d":"98,-213r-69,183r135,0xm105,-263r5,0r97,263r-202,0","w":212},"\u00ab":{"d":"122,-151r-28,63r28,64r-23,0r-34,-64r34,-63r23,0xm68,-151r-28,63r28,64r-24,0r-33,-64r33,-63r24,0","w":129,"k":{"Y":13,"W":13,"V":13,"T":26}},"\u00bb":{"d":"62,-24r28,-64r-28,-63r23,0r33,63r-33,64r-23,0xm7,-24r28,-64r-28,-63r24,0r33,63r-33,64r-24,0","w":129,"k":{"\u0153":-7,"\u0152":-7,"\u00f8":-7,"\u00d8":-7,"w":6,"o":-7,"Y":26,"X":13,"W":20,"V":20,"T":26,"O":-7}},"\u2026":{"d":"60,4v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v15,0,21,5,21,19v0,13,-7,19,-21,19xm180,4v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v15,0,21,5,21,19v0,13,-7,19,-21,19xm300,4v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v15,0,21,5,21,19v0,13,-7,19,-21,19","w":360},"\u00a0":{},"\u00c0":{"d":"67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0xm123,-250r-16,8r-42,-46r24,-15","w":188},"\u00c3":{"d":"67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0xm73,-269v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17","w":188},"\u00d5":{"d":"43,-106v1,49,12,91,54,91v42,0,57,-42,56,-92v0,-57,-8,-96,-55,-96v-45,0,-55,44,-55,97xm12,-109v0,-61,30,-114,86,-114v60,1,86,45,86,110v0,64,-27,117,-85,117v-59,0,-87,-48,-87,-113xm77,-269v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17","w":195},"\u0152":{"d":"43,-105v-7,64,38,110,87,78r0,-167v-54,-29,-94,20,-87,89xm12,-110v0,-72,46,-130,118,-108r116,0r0,46r-19,0r-10,-30r-59,0r0,80r45,0r9,-26r15,0r0,70r-15,0r-9,-27r-45,0r0,88r61,0r10,-34r17,0r0,51v-48,1,-102,0,-146,3v-61,4,-88,-48,-88,-113","w":255},"\u0153":{"d":"173,-152v-26,1,-37,26,-36,56v35,0,59,-2,59,-32v0,-16,-7,-24,-23,-24xm76,-152v-44,-3,-40,90,-27,121v5,12,15,17,27,17v31,0,36,-32,36,-72v0,-39,-6,-64,-36,-66xm224,-9v-28,17,-86,17,-98,-15v-10,15,-28,28,-51,28v-42,0,-63,-36,-63,-82v0,-52,20,-93,65,-93v25,0,40,12,51,29v14,-37,99,-43,97,12v-1,43,-40,52,-88,51v-7,57,41,69,87,54r0,16","w":236},"\u2013":{"d":"0,-80r0,-17r180,0r0,17r-180,0","w":180},"\u2014":{"d":"-2,-80r0,-17r364,0r0,17r-364,0","w":360},"\u201c":{"d":"41,-145v-43,-10,-17,-74,13,-78r6,15v-10,6,-19,11,-20,24v14,-1,22,6,22,19v1,14,-8,19,-21,20xm97,-145v-43,-10,-17,-74,13,-78r6,15v-10,6,-19,11,-20,24v13,-1,22,6,22,19v0,13,-8,20,-21,20","w":130,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":33,"y":-13,"w":-7,"v":-7,"f":-7,"T":-7,"C":6,"A":40}},"\u201d":{"d":"95,-223v43,10,17,74,-13,78r-6,-15v10,-6,19,-11,20,-24v-14,0,-21,-7,-22,-20v-1,-13,8,-19,21,-19xm39,-223v43,10,17,74,-13,78r-6,-15v10,-6,19,-11,20,-24v-15,1,-22,-6,-22,-20v-1,-13,8,-19,21,-19","w":130},"\u2018":{"d":"41,-145v-43,-10,-17,-74,13,-78r6,15v-10,6,-19,11,-20,24v14,-1,22,6,22,19v1,14,-8,19,-21,20","w":74,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":33,"y":-13,"w":-7,"v":-7,"f":-7,"T":-7,"C":6,"A":40}},"\u2019":{"d":"39,-223v43,10,17,74,-13,78r-6,-15v10,-6,19,-11,20,-24v-15,1,-22,-6,-22,-20v-1,-13,8,-19,21,-19","w":74},"\u00f7":{"d":"130,-44v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm45,-118r210,0r0,21r-210,0r0,-21xm130,-171v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21","w":299},"\u25ca":{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},"\u00ff":{"d":"89,25v-9,38,-35,60,-76,42r0,-31r25,0r7,20v22,-3,21,-34,30,-52r-56,-150r-18,-5r0,-16r68,0r0,16r-20,5r38,116r34,-116r-20,-5r0,-16r62,0r0,16r-19,5xm108,-226v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm56,-226v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":163},"\u0178":{"d":"49,0r0,-16r26,-6r0,-68r-56,-108r-18,-4r0,-16r68,0r0,16r-20,5r43,84r43,-84r-20,-6r0,-15r63,0r0,15r-18,6r-57,101r0,74r25,6r0,16r-79,0xm115,-281v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm63,-281v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":177},"\u2215":{"d":"-45,-30r141,-167r9,8r-140,167","w":60},"\u00a4":{"d":"165,-156v1,-28,-26,-55,-55,-55v-30,0,-56,25,-56,55v0,30,27,56,56,56v29,0,55,-28,55,-56xm52,-111v-21,-21,-20,-69,0,-90r-37,-36r13,-12r36,36v22,-20,69,-21,91,0r36,-36r12,12r-36,36v19,20,20,70,0,90r36,36r-12,13r-36,-36v-21,21,-70,21,-91,0r-36,36r-13,-13","w":218},"\u2039":{"d":"68,-151r-28,63r28,64r-24,0r-33,-64r33,-63r24,0","w":74,"k":{"Y":13,"W":13,"V":13,"T":26}},"\u203a":{"d":"7,-151r24,0r33,63r-33,64r-24,0r28,-64","w":74,"k":{"\u0153":-7,"\u0152":-7,"\u00f8":-7,"\u00d8":-7,"w":6,"o":-7,"Y":26,"X":13,"W":20,"V":20,"T":26,"O":-7}},"\uf001":{"d":"115,-224v-40,-11,-64,9,-57,57r95,-2r0,147r22,6r0,16r-72,0r0,-16r23,-6r0,-128r-68,0r0,128r30,7r0,15r-79,0r0,-16r22,-6r0,-128r-24,0r0,-17r24,0v-3,-53,17,-76,69,-75v26,0,52,6,55,25v-5,26,-39,16,-40,-7","w":182},"\uf002":{"d":"126,-221v-39,-16,-78,-1,-68,54r34,0r0,17r-34,0r0,128r30,7r0,15r-79,0r0,-16r22,-6r0,-128r-24,0r0,-17r24,0v-7,-63,37,-85,96,-71r26,-5r0,221r23,6r0,16r-72,0r0,-16r22,-6r0,-199","w":182},"\u2021":{"d":"63,-103v-1,-13,-5,-21,-11,-30v6,-7,11,-16,11,-28r-55,9r0,-26r55,8r-10,-73r30,0r-11,73r55,-8r0,26r-55,-9v2,12,5,19,11,28v-5,9,-9,18,-11,30r55,-8r0,26r-55,-9v0,17,5,30,10,43v-2,47,-4,91,-14,125v-8,-39,-24,-104,-8,-146v2,-7,3,-14,3,-22r-55,9r0,-26","w":135},"\u00b7":{"d":"37,-90v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v14,0,21,6,21,19v0,14,-7,18,-21,19","w":74},"\u201a":{"d":"39,-34v43,8,18,76,-13,77r-6,-15v10,-6,19,-11,20,-24v-14,1,-22,-6,-22,-19v-1,-13,8,-19,21,-19","w":74,"k":{"\uf002":-13,"\uf001":-13,"\u0152":6,"\u00d8":6,"\u00c6":-13,"\u00df":-7,"y":13,"w":26,"v":33,"n":-7,"f":-13,"Z":-7,"Y":26,"X":-13,"W":33,"V":26,"T":26,"Q":6,"O":6,"J":-20,"G":6,"C":6,"A":-7}},"\u201e":{"d":"95,-34v43,8,18,76,-13,77r-6,-15v10,-6,19,-11,20,-24v-14,1,-22,-7,-22,-19v-1,-13,8,-19,21,-19xm39,-34v43,8,18,76,-13,77r-6,-15v10,-6,19,-11,20,-24v-14,1,-22,-6,-22,-19v-1,-13,8,-19,21,-19","w":130,"k":{"\uf002":-13,"\uf001":-13,"\u0152":6,"\u00d8":6,"\u00c6":-13,"\u00df":-7,"y":13,"w":26,"v":33,"n":-7,"f":-13,"Z":-7,"Y":26,"X":-13,"W":33,"V":26,"T":26,"Q":6,"O":6,"J":-20,"G":6,"C":6,"A":-7}},"\u2030":{"d":"308,-118v-30,0,-25,72,-17,95v4,9,8,14,16,14v33,-2,35,-109,1,-109xm310,-132v33,0,46,29,46,65v1,40,-15,71,-50,71v-33,0,-46,-28,-46,-65v-1,-41,15,-71,50,-71xm198,-132v33,0,46,29,46,65v1,40,-15,71,-50,71v-33,0,-46,-28,-46,-65v-1,-40,15,-71,50,-71xm196,-118v-30,0,-27,70,-18,95v4,9,9,14,17,14v34,-3,34,-109,1,-109xm58,-209v-30,0,-26,72,-18,96v3,9,9,13,17,13v34,-3,34,-109,1,-109xm60,-223v33,0,46,29,46,65v1,39,-14,72,-50,72v-34,0,-46,-28,-46,-66v-1,-40,15,-71,50,-71xm49,-4r143,-221r12,9r-141,222","w":366},"\u00c2":{"d":"67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0xm46,-251r48,-52r49,52r-14,9r-35,-29r-35,29","w":188},"\u00ca":{"d":"6,0r0,-16r23,-6r0,-175r-23,-5r0,-16r141,0r0,46r-20,0r-9,-30r-61,0r0,80r47,0r8,-26r16,0r0,70r-16,0r-8,-27r-47,0r0,88r63,0r9,-34r18,0r0,51r-141,0xm30,-251r48,-52r49,52r-14,9r-35,-29r-35,29","w":156},"\u00c1":{"d":"67,-105r50,0r-24,-86xm1,0r0,-16r18,-6r64,-196r30,0r58,196r17,6r0,16r-67,0r0,-16r20,-6r-18,-66r-60,0r-20,66r20,6r0,16r-62,0xm65,-250r34,-53r24,15r-43,46","w":188},"\u00cb":{"d":"6,0r0,-16r23,-6r0,-175r-23,-5r0,-16r141,0r0,46r-20,0r-9,-30r-61,0r0,80r47,0r8,-26r16,0r0,70r-16,0r-8,-27r-47,0r0,88r63,0r9,-34r18,0r0,51r-141,0xm104,-281v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm52,-281v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":156},"\u00c8":{"d":"6,0r0,-16r23,-6r0,-175r-23,-5r0,-16r141,0r0,46r-20,0r-9,-30r-61,0r0,80r47,0r8,-26r16,0r0,70r-16,0r-8,-27r-47,0r0,88r63,0r9,-34r18,0r0,51r-141,0xm107,-250r-16,8r-42,-46r24,-15","w":156},"\u00cd":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,175r24,6r0,16r-73,0xm14,-250r34,-53r24,15r-43,46","w":85},"\u00ce":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,175r24,6r0,16r-73,0xm-5,-251r48,-52r49,52r-14,9r-35,-29r-35,29","w":85},"\u00cf":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,175r24,6r0,16r-73,0xm69,-281v10,0,17,6,17,16v0,11,-6,17,-17,17v-11,1,-17,-6,-17,-17v0,-10,7,-16,17,-16xm17,-281v10,-1,17,6,17,16v0,11,-6,17,-17,17v-12,0,-17,-7,-17,-17v0,-10,6,-16,17,-16","w":85},"\u00cc":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,175r24,6r0,16r-73,0xm72,-250r-16,8r-42,-46r24,-15","w":85},"\u00d3":{"d":"43,-106v1,49,12,91,54,91v42,0,57,-42,56,-92v0,-57,-8,-96,-55,-96v-45,0,-55,44,-55,97xm12,-109v0,-61,30,-114,86,-114v60,1,86,45,86,110v0,64,-27,117,-85,117v-59,0,-87,-48,-87,-113xm69,-250r34,-53r24,15r-43,46","w":195},"\u00d4":{"d":"43,-106v1,49,12,91,54,91v42,0,57,-42,56,-92v0,-57,-8,-96,-55,-96v-45,0,-55,44,-55,97xm12,-109v0,-61,30,-114,86,-114v60,1,86,45,86,110v0,64,-27,117,-85,117v-59,0,-87,-48,-87,-113xm50,-251r48,-52r49,52r-14,9r-35,-29r-35,29","w":195},"\uf000":{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v20,-7,58,-21,83,-6v10,6,19,12,28,22v-20,14,-35,28,-35,58","w":284},"\u00d2":{"d":"43,-106v1,49,12,91,54,91v42,0,57,-42,56,-92v0,-57,-8,-96,-55,-96v-45,0,-55,44,-55,97xm12,-109v0,-61,30,-114,86,-114v60,1,86,45,86,110v0,64,-27,117,-85,117v-59,0,-87,-48,-87,-113xm127,-250r-16,8r-42,-46r24,-15","w":195},"\u00da":{"d":"102,-17v33,0,47,-15,47,-48r0,-132r-23,-5r0,-16r67,0r0,16r-22,5v-5,87,28,201,-73,201v-46,0,-73,-21,-73,-64r0,-137r-22,-5r0,-16r73,0r0,16r-23,5r0,127v0,39,12,52,49,53xm69,-250r34,-53r24,15r-43,46","w":195},"\u00db":{"d":"102,-17v33,0,47,-15,47,-48r0,-132r-23,-5r0,-16r67,0r0,16r-22,5v-5,87,28,201,-73,201v-46,0,-73,-21,-73,-64r0,-137r-22,-5r0,-16r73,0r0,16r-23,5r0,127v0,39,12,52,49,53xm50,-251r48,-52r49,52r-14,9r-35,-29r-35,29","w":195},"\u00d9":{"d":"102,-17v33,0,47,-15,47,-48r0,-132r-23,-5r0,-16r67,0r0,16r-22,5v-5,87,28,201,-73,201v-46,0,-73,-21,-73,-64r0,-137r-22,-5r0,-16r73,0r0,16r-23,5r0,127v0,39,12,52,49,53xm127,-250r-16,8r-42,-46r24,-15","w":195},"\u0131":{"d":"59,-22r22,6r0,16r-71,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,147","w":88},"\u02c6":{"d":"42,-196r48,-52r49,52r-14,9r-35,-29r-35,29","w":180},"\u02dc":{"d":"69,-214v-11,1,-11,7,-18,17r-13,-9v10,-15,16,-26,31,-30v8,-2,36,17,42,16v10,-1,12,-7,18,-17r12,10v-9,15,-15,28,-31,30v-7,3,-36,-18,-41,-17","w":180},"\u00af":{"d":"47,-227r86,0r0,22r-86,0r0,-22","w":180},"\u02d8":{"d":"140,-227v-12,27,-47,46,-78,26v-8,-6,-15,-15,-22,-26r11,-10v16,27,63,28,78,0","w":180},"\u02d9":{"d":"90,-227v12,0,18,6,18,17v0,12,-7,18,-18,18v-12,0,-17,-7,-18,-18v0,-11,6,-17,18,-17","w":180},"\u02da":{"d":"90,-190v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44v24,0,44,20,44,44v0,24,-20,43,-44,43xm90,-259v-14,0,-26,12,-26,26v0,13,13,26,26,26v13,0,26,-13,26,-26v0,-14,-12,-26,-26,-26","w":180},"\u00b8":{"d":"96,11v27,5,29,39,9,55v-10,7,-21,12,-36,13r-3,-15v22,-3,40,-31,16,-42r0,-22r14,0r0,11","w":180},"\u02dd":{"d":"95,-187r16,-56r30,0r-28,56r-18,0xm48,-187r16,-56r30,0r-28,56r-18,0","w":180},"\u02db":{"d":"62,49v0,-25,15,-32,33,-49r14,0v-12,12,-24,20,-24,37v0,17,12,16,32,18r-5,22v-28,0,-50,-4,-50,-28","w":180},"\u02c7":{"d":"139,-238r-49,51r-48,-51r13,-10r35,30r35,-30","w":180},"\u0141":{"d":"19,0r0,-16r23,-6r0,-69r-29,16r0,-19r29,-17r0,-86r-22,-5r0,-16r73,0r0,16r-23,5r0,73r43,-25r0,20r-43,25r0,87r56,0r10,-34r17,0r0,51r-134,0","w":156},"\u0142":{"d":"14,0r0,-16r22,-6r0,-70r-28,16r0,-19r28,-17r0,-106r-24,-4r0,-14r51,-7r0,119r28,-17r0,20r-28,17r0,82r22,6r0,16r-71,0","w":100},"\u0160":{"d":"135,-56v0,60,-76,73,-122,47r0,-41r21,0r11,35v57,16,85,-48,36,-74v-26,-23,-66,-34,-67,-77v-1,-56,71,-69,116,-45r0,39r-21,0r-12,-32v-54,-14,-74,47,-28,70v26,21,66,33,66,78xm123,-293r-49,51r-48,-51r13,-10r35,30r35,-30","w":148},"\u0161":{"d":"107,-68v31,57,-53,92,-94,59r0,-31r21,0v6,11,2,30,23,27v36,3,36,-44,8,-54v-20,-17,-50,-25,-51,-58v-1,-46,61,-53,95,-34r0,29r-22,0v-5,-9,-1,-26,-19,-23v-34,-2,-35,40,-6,50v15,10,38,22,45,35xm112,-238r-49,51r-48,-51r13,-10r35,30r35,-30","w":125},"\u017d":{"d":"149,-51r0,51r-140,0r0,-22r109,-180r-77,0r-9,30r-18,0r0,-46r134,0r0,21r-108,180r80,0r11,-34r18,0xm129,-293r-49,51r-48,-51r13,-10r35,30r35,-30","w":159},"\u017e":{"d":"9,0r0,-17r87,-134r-54,0r-10,21r-17,0r0,-37r112,0r0,16r-88,135r62,0r11,-24r17,0r0,40r-120,0xm119,-238r-49,51r-48,-51r13,-10r35,30r35,-30","w":139},"\u00a6":{"d":"79,-72r22,0r0,134r-22,0r0,-134xm79,-252r22,0r0,134r-22,0r0,-134","w":180},"\u00d0":{"d":"163,-113v0,-60,-29,-94,-94,-87r0,77r47,0r0,18r-47,0r0,87v67,5,94,-30,94,-95xm194,-114v4,101,-70,122,-175,114r0,-16r22,-6r0,-83r-29,0r0,-18r29,0r0,-74r-22,-3r0,-18r65,0v77,-3,108,34,110,104","w":205},"\u00f0":{"d":"12,-75v0,-56,30,-100,84,-83r-22,-40r-40,18r-5,-16r36,-16r-21,-28r12,-10v11,8,21,18,30,29r41,-17r8,15r-38,16v24,35,43,73,44,124v1,47,-21,87,-65,87v-43,0,-64,-33,-64,-79xm41,-79v0,38,4,65,35,65v31,0,36,-30,36,-68v0,-36,-7,-62,-36,-62v-29,0,-35,30,-35,65"},"\u00dd":{"d":"49,0r0,-16r26,-6r0,-68r-56,-108r-18,-4r0,-16r68,0r0,16r-20,5r43,84r43,-84r-20,-6r0,-15r63,0r0,15r-18,6r-57,101r0,74r25,6r0,16r-79,0xm60,-250r34,-53r24,15r-43,46","w":177},"\u00fd":{"d":"89,25v-9,38,-35,60,-76,42r0,-31r25,0r7,20v22,-3,21,-34,30,-52r-56,-150r-18,-5r0,-16r68,0r0,16r-20,5r38,116r34,-116r-20,-5r0,-16r62,0r0,16r-19,5xm53,-195r34,-53r24,15r-43,46","w":163},"\u00de":{"d":"122,-119v0,-41,-24,-51,-66,-48r0,98v42,3,66,-10,66,-50xm152,-122v0,51,-40,74,-96,69r0,31r28,7r0,15r-77,0r0,-15r22,-6r0,-176r-22,-6r0,-15r73,0r0,16r-24,5r0,14v58,-1,96,7,96,61","w":158},"\u00fe":{"d":"84,-149v-15,0,-24,7,-34,15r0,112v41,21,71,-18,68,-66v-2,-35,-4,-60,-34,-61xm147,-94v5,63,-42,121,-97,88r0,59r29,6r0,15r-79,0r0,-16r23,-5r0,-271r-24,-4r0,-14r51,-7r0,93v39,-42,107,-12,97,56","w":158},"\u2212":{"d":"45,-118r210,0r0,21r-210,0r0,-21","w":299},"\u00d7":{"d":"67,-205r84,83r83,-83r15,14r-84,84r84,83r-15,15r-83,-84r-84,84r-14,-15r83,-83r-83,-84","w":299},"\u00b9":{"d":"15,-203v19,-3,26,-14,48,-15r0,118r20,3r0,10r-57,0r0,-10r19,-3r0,-99v-10,2,-18,5,-30,5r0,-9","w":100},"\u00b2":{"d":"11,-211v27,-17,82,-13,81,25v5,22,-60,64,-69,83r51,0r5,-15r13,0r0,31r-86,0v-2,-40,64,-68,64,-99v0,-21,-18,-26,-39,-23r-7,19r-13,0r0,-21","w":100},"\u00b3":{"d":"92,-125v2,40,-55,49,-86,30r0,-10v26,8,67,10,67,-22v-1,-17,-13,-25,-32,-25v1,-4,-2,-11,3,-10v16,1,25,-9,25,-25v0,-19,-19,-26,-39,-22r-8,19r-13,0r0,-21v25,-15,81,-15,81,21v0,18,-12,31,-30,32v19,3,32,13,32,33","w":100},"\u00bc":{"d":"171,-49r45,0r0,-57xm201,0r0,-9r15,-3r0,-25r-58,0r0,-13r56,-72r18,0r0,73r16,0r0,12r-16,0r0,25r14,3r0,9r-45,0xm51,-30r141,-167r9,8r-140,167xm14,-205v18,-1,26,-14,46,-13r0,110r19,3r0,9r-54,0r0,-9r18,-3r0,-93r-29,5r0,-9","w":252},"\u00bd":{"d":"166,-115v25,-16,78,-13,78,23v7,18,-61,62,-66,78r48,0r6,-15r12,0r0,29r-82,0v-3,-39,62,-64,62,-92v0,-19,-16,-24,-38,-22r-7,17r-13,0r0,-18xm51,-30r141,-167r9,8r-140,167xm14,-205v18,-1,26,-14,46,-13r0,110r19,3r0,9r-54,0r0,-9r18,-3r0,-93r-29,5r0,-9","w":252},"\u00be":{"d":"171,-49r45,0r0,-57xm201,0r0,-9r15,-3r0,-25r-58,0r0,-13r56,-72r18,0r0,73r16,0r0,12r-16,0r0,25r14,3r0,9r-45,0xm51,-30r141,-167r9,8r-140,167xm88,-131v2,38,-54,44,-82,27r0,-9v24,8,64,10,64,-20v0,-17,-13,-23,-30,-23v1,-3,-2,-10,2,-10v15,0,24,-8,24,-23v0,-19,-18,-24,-38,-21r-7,17r-12,0r0,-18v23,-15,77,-15,77,19v-1,17,-12,28,-28,30v18,3,29,12,30,31","w":252},"\u20a3":{"d":"7,0r0,-16r23,-6r0,-175r-23,-5r0,-16r135,0r0,46r-20,0r-10,-30r-55,0r0,80r43,0r8,-26r16,0r0,70r-16,0r-8,-27r-43,0r0,83r24,6r0,16r-74,0xm238,-147v-14,1,-24,6,-34,15r0,110r29,7r0,15r-78,0r0,-16r22,-6r0,-122r-24,-5r0,-14r51,-6r0,20v17,-14,38,-27,63,-17r0,35r-23,0","w":268},"\u011e":{"d":"42,-108v0,63,33,103,98,91r0,-50r-23,-5r0,-17r73,0r0,17r-23,5r0,59v-76,34,-155,-6,-155,-97v0,-90,76,-142,158,-107r0,39r-21,0r-10,-31v-64,-8,-97,32,-97,96xm147,-282v-12,27,-47,46,-78,26v-8,-6,-15,-15,-22,-26r11,-10v16,27,63,28,78,0","w":194},"\u011f":{"d":"47,55v48,8,69,-19,62,-71v-11,9,-26,20,-44,20v-39,0,-51,-35,-53,-77v-3,-64,44,-120,99,-87r25,-10r0,166v13,78,-68,93,-120,64r0,-30r23,0xm73,-18v16,0,24,-7,36,-15r0,-112v-45,-19,-68,19,-68,70v0,31,6,56,32,57xm131,-227v-12,27,-47,46,-78,26v-8,-6,-15,-15,-22,-26r11,-10v16,27,63,28,78,0","w":161},"\u0130":{"d":"7,0r0,-16r22,-6r0,-175r-22,-5r0,-16r73,0r0,16r-24,5r0,175r24,6r0,16r-73,0xm43,-282v12,0,18,6,18,17v0,12,-7,18,-18,18v-12,0,-17,-7,-18,-18v0,-11,6,-17,18,-17","w":85},"\u015e":{"d":"135,-56v0,60,-76,73,-122,47r0,-41r21,0r11,35v57,16,85,-48,36,-74v-26,-23,-66,-34,-67,-77v-1,-56,71,-69,116,-45r0,39r-21,0r-12,-32v-54,-14,-74,47,-28,70v26,21,66,33,66,78xm80,11v27,5,29,39,9,55v-10,7,-21,12,-36,13r-3,-15v22,-3,40,-31,16,-42r0,-22r14,0r0,11","w":148},"\u015f":{"d":"107,-68v31,57,-53,92,-94,59r0,-31r21,0v6,11,2,30,23,27v36,3,36,-44,8,-54v-20,-17,-50,-25,-51,-58v-1,-46,61,-53,95,-34r0,29r-22,0v-5,-9,-1,-26,-19,-23v-34,-2,-35,40,-6,50v15,10,38,22,45,35xm69,11v27,5,29,39,9,55v-10,7,-21,12,-36,13r-3,-15v22,-3,40,-31,16,-42r0,-22r14,0r0,11","w":125},"\u0106":{"d":"43,-108v0,72,51,106,119,84r0,16v-74,34,-149,-9,-149,-95v0,-87,71,-147,149,-108r0,38r-21,0r-11,-30v-59,-8,-87,36,-87,95xm86,-250r34,-53r24,15r-43,46","w":169},"\u0107":{"d":"40,-80v0,56,41,73,86,56r0,16v-53,28,-114,3,-114,-68v0,-69,56,-116,114,-83r0,28r-22,0v-4,-9,2,-24,-18,-22v-35,3,-46,32,-46,73xm62,-195r34,-53r24,15r-43,46","w":135},"\u010c":{"d":"43,-108v0,72,51,106,119,84r0,16v-74,34,-149,-9,-149,-95v0,-87,71,-147,149,-108r0,38r-21,0r-11,-30v-59,-8,-87,36,-87,95xm164,-293r-49,51r-48,-51r13,-10r35,30r35,-30","w":169},"\u010d":{"d":"40,-80v0,56,41,73,86,56r0,16v-53,28,-114,3,-114,-68v0,-69,56,-116,114,-83r0,28r-22,0v-4,-9,2,-24,-18,-22v-35,3,-46,32,-46,73xm140,-238r-49,51r-48,-51r13,-10r35,30r35,-30","w":135},"\u0111":{"d":"73,-18v16,0,24,-7,36,-15r0,-112v-45,-19,-68,19,-68,70v0,31,6,56,32,57xm12,-73v-3,-63,44,-120,97,-87r0,-27r-50,0r0,-16r50,0r0,-14r-24,-5r0,-14r51,-7r0,40r24,0r0,16r-24,0r0,165r24,5r0,13r-51,5r0,-17v-11,9,-26,20,-44,20v-39,0,-51,-35,-53,-77","w":164},"\u00ad":{"d":"7,-77r0,-23r70,0r0,23r-70,0","w":83},"\u2219":{"d":"37,-90v-14,0,-20,-6,-20,-19v0,-13,6,-19,20,-19v14,0,21,6,21,19v0,14,-7,18,-21,19","w":74}}});/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * Copyright 1990-1993 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"oranda-cn-bt-bold","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 10 8 3 5 5 5 3 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-46 -325 393 85","underline-thickness":"28.8281","underline-position":"-22.6758","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":85},"!":{"d":"77,-19v0,15,-11,22,-28,22v-18,0,-28,-7,-28,-22v0,-15,12,-22,28,-22v17,0,28,7,28,22xm49,-223v29,-1,35,15,31,42r-15,128r-32,0r-17,-143v0,-22,10,-26,33,-27","w":97},"\"":{"d":"93,-257v14,0,22,13,19,27r-15,81r-8,0r-15,-88v0,-11,6,-20,19,-20xm32,-257v15,0,23,10,20,27r-16,81r-7,0r-16,-88v0,-11,6,-20,19,-20","w":126},"#":{"d":"124,-148r-15,41r45,0r14,-41r-44,0xm120,-258r44,0r-25,69r43,0r24,-69r44,0r-25,69r48,0r-15,41r-47,0r-14,41r48,0r-15,40r-48,0r-25,69r-43,0r25,-69r-43,0r-25,69r-43,0r25,-69r-49,0r15,-40r48,0r14,-41r-50,0r15,-41r50,0","w":276},"$":{"d":"75,0v-23,1,-44,-5,-60,-13r0,-45r38,0v7,11,5,32,23,32v31,0,35,-34,14,-49v-30,-22,-75,-36,-76,-84v-1,-36,27,-54,61,-59r0,-28r25,0r0,27v19,2,37,5,52,12r0,42r-39,0v-7,-10,-3,-30,-23,-28v-27,-4,-32,33,-12,43v30,25,81,37,81,88v0,35,-25,57,-59,62r0,28r-25,0r0,-28","w":171},"%":{"d":"62,-104v26,-3,25,-96,0,-101v-16,4,-16,22,-16,47v0,31,-3,49,16,54xm65,-223v35,0,55,26,54,65v0,42,-19,72,-59,72v-37,0,-54,-26,-54,-66v0,-43,19,-71,59,-71xm72,-8r105,-216r25,13r-105,216xm214,-132v37,0,54,26,54,65v0,43,-18,71,-59,71v-37,-1,-54,-26,-54,-65v1,-42,19,-71,59,-71xm211,-13v25,-4,25,-96,0,-101v-16,4,-16,22,-16,46v0,31,-3,50,16,55","w":275},"&":{"d":"70,-93v-26,38,14,86,64,65xm121,-170v0,-31,-44,-35,-44,-7v0,18,19,28,29,41v8,-7,15,-19,15,-34xm221,-100v1,26,-6,46,-20,59v7,11,19,17,34,20r0,21r-73,0r-8,-9v-47,23,-149,17,-145,-47v2,-30,19,-46,44,-55v-14,-13,-28,-27,-28,-52v1,-40,32,-61,76,-60v39,0,64,17,65,53v1,28,-20,45,-43,51r58,58v5,-9,6,-24,6,-39r-21,0r0,-27r72,0r0,27r-17,0","w":245},"'":{"d":"33,-257v14,0,22,11,19,27r-16,81r-7,0r-16,-88v-1,-12,8,-20,20,-20","w":65},"(":{"d":"75,-235v-19,84,-18,217,0,302r-29,8v-51,-76,-51,-243,0,-319","w":83},")":{"d":"9,66v19,-83,18,-220,0,-303r29,-7v51,76,51,243,0,319","w":83},"*":{"d":"72,-137r-27,0r9,-45r-35,30r-13,-23r43,-15r-44,-14r13,-24r35,30r-8,-45r27,0r-9,44r34,-30r14,25r-42,14r42,13r-13,24r-35,-29","w":115},"+":{"d":"129,-215r42,0r0,87r84,0r0,41r-84,0r0,87r-42,0r0,-87r-84,0r0,-41r84,0r0,-87","w":299},",":{"d":"40,-44v37,-2,38,44,23,67v-7,10,-16,17,-28,22r-16,-17v8,-6,20,-17,14,-27v-15,1,-23,-8,-23,-22v0,-16,13,-22,30,-23","w":76},"-":{"d":"70,-109r0,39r-65,0r0,-39r65,0","w":74,"k":{"\u0153":-7,"\u0152":-13,"\u00f8":-7,"\u00d8":-13,"o":-7,"Y":33,"X":13,"V":13,"T":26,"Q":-7,"O":-13,"C":-7}},".":{"d":"42,5v-20,0,-31,-5,-31,-25v0,-18,11,-24,31,-24v20,0,31,6,31,24v0,20,-11,25,-31,25","w":76},"\/":{"d":"84,-244r-36,319r-47,0r36,-319r47,0","w":84},"0":{"d":"86,-195v-30,8,-23,33,-23,86v0,54,-7,78,23,87v28,-10,22,-33,22,-87v0,-52,6,-76,-22,-86xm166,-111v0,67,-21,115,-80,115v-61,0,-80,-42,-80,-111v0,-70,20,-115,83,-115v59,0,77,44,77,111","w":171},"1":{"d":"14,-198v42,-4,61,-26,107,-23r0,194r26,6r0,21r-109,0r0,-21r26,-6r0,-150r-50,5r0,-26","w":171},"2":{"d":"14,-205v47,-28,149,-28,145,43v-3,69,-75,79,-105,122r64,0r8,-19r33,0r0,59v-49,-2,-106,4,-151,-2v0,-80,83,-87,91,-160v2,-21,-17,-36,-38,-31r-11,28r-36,0r0,-40","w":171},"3":{"d":"160,-62v2,70,-102,80,-153,50r0,-29v33,14,97,16,94,-29v-1,-21,-15,-34,-39,-33v1,-8,-2,-20,1,-26v19,0,32,-12,32,-32v0,-21,-10,-34,-33,-32r-11,28r-37,0r0,-40v44,-24,141,-29,140,36v0,31,-23,46,-50,52v35,2,55,19,56,55","w":171},"4":{"d":"88,-166r-46,69r46,0r0,-69xm88,-27r0,-31r-82,0r0,-39r85,-123r49,0r0,123r22,0r0,38r-22,0r0,32r16,6r0,21r-84,0r0,-21","w":171},"5":{"d":"157,-73v0,71,-89,98,-143,61r0,-29v31,16,84,12,84,-30v0,-38,-44,-45,-77,-33r0,-114r131,0r0,40r-99,0r0,40v53,-14,104,10,104,65","w":171},"6":{"d":"109,-64v0,-33,-18,-45,-46,-37v2,37,-6,77,23,77v17,0,23,-19,23,-40xm156,-185v-50,-10,-97,6,-93,58v41,-26,103,-2,103,55v0,48,-32,77,-79,77v-55,-1,-81,-40,-81,-99v0,-95,64,-151,150,-119r0,28","w":171},"7":{"d":"43,0v-10,-73,49,-122,76,-178r-64,0r-10,22r-36,0r0,-62r153,0v3,77,-77,129,-58,218r-61,0","w":171},"8":{"d":"85,-196v-28,0,-28,41,-3,49r12,7v15,-14,21,-56,-9,-56xm86,-24v22,0,33,-25,21,-43v-5,-7,-18,-17,-28,-23v-25,11,-31,66,7,66xm5,-52v0,-31,21,-45,46,-56v-20,-10,-38,-26,-38,-55v0,-41,31,-60,75,-60v39,0,68,17,68,52v0,25,-17,39,-37,47v24,15,47,27,47,63v0,43,-35,66,-80,66v-46,0,-81,-16,-81,-57","w":171},"9":{"d":"61,-152v-2,31,21,47,46,35v-3,-45,7,-76,-24,-76v-18,0,-20,19,-22,41xm164,-121v0,94,-66,148,-150,116r0,-28v50,9,98,-3,93,-57v-44,25,-103,1,-103,-57v0,-48,31,-76,79,-76v58,0,81,39,81,102","w":171},":":{"d":"43,-109v-21,0,-32,-6,-32,-25v0,-18,12,-24,32,-24v20,0,31,7,31,24v0,19,-11,25,-31,25xm43,5v-21,0,-32,-6,-32,-25v0,-18,12,-24,32,-24v20,0,31,7,31,24v0,19,-11,25,-31,25","w":84},";":{"d":"43,-109v-21,0,-32,-6,-32,-25v0,-18,12,-24,32,-24v20,0,31,7,31,24v0,19,-11,25,-31,25xm39,-44v38,-3,39,44,23,67v-7,10,-16,17,-28,22r-16,-17v10,-6,16,-14,17,-27v-17,2,-26,-7,-26,-22v0,-16,13,-22,30,-23","w":84},"<":{"d":"253,-213r0,44r-150,62r150,61r0,45r-207,-86r0,-41","w":299},"=":{"d":"45,-88r210,0r0,40r-210,0r0,-40xm45,-167r210,0r0,41r-210,0r0,-41","w":299},">":{"d":"46,-213r207,85r0,41r-207,86r0,-45r151,-61r-151,-62r0,-44","w":299},"?":{"d":"100,-19v0,16,-11,23,-28,23v-17,0,-28,-7,-28,-22v0,-16,11,-23,28,-23v16,0,28,7,28,22xm7,-206v51,-34,173,-18,140,62v-13,30,-45,45,-59,75r0,17r-33,0v-3,-49,32,-67,34,-114v0,-20,-8,-31,-29,-29r-13,28r-40,0r0,-39","w":155},"@":{"d":"245,-21v-22,2,-38,-12,-39,-34v-21,51,-112,41,-106,-27v5,-54,36,-97,90,-97v23,0,34,11,38,31r9,-27r36,0r-33,125v0,9,3,19,12,17v43,-9,68,-50,68,-102v0,-71,-49,-108,-118,-108v-91,0,-145,61,-148,152v-2,79,54,129,134,128v47,-1,79,-15,111,-37r7,10v-31,23,-69,40,-118,40v-96,2,-168,-54,-165,-145v3,-100,72,-159,174,-162v77,-2,139,46,136,122v-2,59,-29,110,-88,114xm162,-35v37,-9,55,-63,55,-106v0,-15,-6,-24,-19,-25v-38,9,-53,62,-57,104v-1,14,8,27,21,27","w":354},"A":{"d":"109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0","w":200,"k":{"\u201e":-13,"\u201a":-13,"\uf002":-7,"\uf001":-7,"\u2019":33,"\u2018":33,"\u201d":33,"\u201c":33,"y":6,"w":6,"v":6,"t":6,"f":-7,"Y":10,"V":10,"T":13,"S":-7,"A":-7,";":-7,":":-7}},"B":{"d":"119,-161v0,-27,-14,-35,-41,-33r0,69v28,2,41,-8,41,-36xm123,-63v0,-28,-15,-40,-45,-38r0,77v30,3,45,-12,45,-39xm180,-58v1,76,-101,55,-174,58r0,-21r17,-6r0,-165r-17,-6r0,-20v69,5,170,-22,170,52v0,33,-23,54,-57,53v35,2,61,19,61,55","w":188,"k":{"Y":6,"W":6,"V":6,"-":-7}},"C":{"d":"69,-110v-2,65,42,94,106,78r0,25v-79,32,-166,-5,-166,-97v0,-89,84,-145,166,-107r0,45r-40,0r-12,-29v-42,-2,-53,41,-54,85","k":{"\u201e":-13,"\u201a":-13,"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"Y":-7,"S":-7}},"D":{"d":"141,-112v0,-55,-10,-82,-61,-80r0,165v52,4,61,-32,61,-85xm201,-118v0,77,-33,121,-115,118r-80,0r0,-21r17,-6r0,-165r-17,-6r0,-20r87,0v69,-1,108,33,108,100","w":206,"k":{"\u201e":13,"\u201a":13,"\u2039":-7,"\u00ab":-7,"\u00c5":6,"Y":20,"V":6,"A":6,"-":-13}},"E":{"d":"6,0r0,-21r17,-6r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,74r37,0r13,-32r40,0r0,56r-164,0","w":175},"F":{"d":"23,-27r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,71r26,6r0,21r-100,0r0,-21","w":163,"k":{"\u201e":40,"\u201a":40,"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00e6":6,"\u00c5":15,"y":-13,"u":-7,"i":-7,"e":6,"a":6,"T":-7,"S":-7,"A":15,".":46,"-":-13,",":46}},"G":{"d":"9,-101v0,-98,87,-145,175,-109r0,44r-39,0r-13,-29v-49,-3,-63,36,-63,85v0,47,13,83,59,81r0,-45r-17,-6r0,-20r89,0r0,20r-18,6r0,65v-81,31,-173,2,-173,-92","w":203,"k":{"\u2039":-7,"\u2018":6,"\u201c":6,"\u00ab":-7,"Y":6,"T":6,"-":-7}},"H":{"d":"23,-27r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,65r57,0r0,-65r-17,-6r0,-20r91,0r0,20r-17,6r0,165r17,6r0,21r-91,0r0,-21r17,-6r0,-73r-57,0r0,73r17,6r0,21r-92,0r0,-21","w":216},"I":{"d":"97,-21r0,21r-92,0r0,-21r18,-6r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,165","w":102},"J":{"d":"79,19v3,58,-73,63,-122,47r0,-42r37,0v5,7,5,20,14,24v11,0,14,-7,14,-19r0,-221r-17,-6r0,-20r92,0r0,20r-18,6r0,211","w":96,"k":{"\u2019":-7,"\u201d":-7,"-":-7}},"K":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-165r-17,-6r0,-20r91,0r0,20r-17,6r0,165xm139,-193r-14,-7r0,-18r80,0r0,18r-23,7r-51,63r57,103r21,6r0,21r-72,0r-56,-108","w":203,"k":{"\u201e":-13,"\u201a":-13,"\u2019":-7,"\u201d":-7,"\u0152":6,"\u00d8":6,"y":13,"Y":6,"W":-7,"U":-7,"T":-7,"O":6,"C":6,"-":20}},"L":{"d":"23,-27r0,-165r-17,-6r0,-20r100,0r0,20r-26,6r0,168r33,0r13,-32r40,0r0,56r-160,0r0,-21","w":164,"k":{"\u201e":-13,"\u201a":-13,"\u203a":-7,"\u2019":40,"\u2018":53,"\u201d":40,"\u201c":53,"\u0153":-7,"\u0152":-7,"\u00bb":-7,"\u00f8":-7,"\u00e6":-7,"\u00d8":-7,"\u00c5":-7,"y":13,"o":-7,"e":-7,"a":-7,"Y":26,"W":13,"V":26,"T":20,"O":-7,"A":-7}},"M":{"d":"23,-27r0,-165r-17,-6r0,-20r84,0r41,127r41,-127r81,0r0,20r-17,6r0,165r17,6r0,21r-88,0r0,-21r17,-6r0,-134r-53,161r-19,0r-53,-161r0,134r17,6r0,21r-68,0r0,-21","w":258},"N":{"d":"23,-27r0,-165r-17,-6r0,-20r68,0r79,135r0,-109r-17,-7r0,-19r69,0r0,18r-17,8r0,192r-45,0r-85,-144r0,117r18,6r0,21r-70,0r0,-21","w":209},"O":{"d":"102,-194v-38,4,-36,35,-36,85v0,50,0,80,36,85v37,-5,37,-34,37,-85v0,-51,1,-81,-37,-85xm100,4v-61,0,-94,-46,-94,-110v0,-68,35,-117,99,-117v60,0,95,47,95,110v0,67,-35,117,-100,117","w":204,"k":{"\u201e":13,"\u201a":13,"\u2039":-7,"\u2019":6,"\u2018":-7,"\u201d":6,"\u201c":-7,"\u00ab":-7,"Y":13,"X":13,"V":6,";":-7,":":-7,".":13,"-":-13,",":13}},"P":{"d":"119,-153v1,-30,-9,-42,-39,-40r0,82v30,1,39,-12,39,-42xm179,-154v-2,52,-41,73,-99,69r0,58r26,6r0,21r-100,0r0,-21r17,-6r0,-165r-17,-6r0,-20v77,2,176,-18,173,64","w":182,"k":{"\u201e":60,"\u201a":60,"\u2018":-7,"\u201c":-7,"\u0153":6,"\u00f8":6,"\u00e6":6,"\u00c5":23,"y":-13,"u":-7,"o":6,"i":-7,"e":6,"a":6,"Y":6,"A":23,";":-7,":":-7,".":60,",":60}},"Q":{"d":"103,-23v36,-4,36,-35,36,-85v0,-51,0,-81,-36,-86v-39,4,-37,34,-37,86v0,51,0,81,37,85xm209,68v-31,10,-83,13,-104,-7v-11,-10,-21,-30,-30,-59v-44,-9,-69,-51,-69,-107v0,-68,35,-114,99,-118v118,-7,125,205,25,222v17,36,32,50,79,43r0,26","w":204,"k":{"-":-7}},"R":{"d":"123,-160v1,-28,-14,-37,-43,-34r0,71v29,3,42,-10,43,-37xm180,-163v0,33,-23,54,-57,54v47,4,40,75,79,88r0,21v-29,-2,-62,7,-73,-17v-12,-27,-24,-57,-40,-81r-9,-1r0,72r17,6r0,21r-91,0r0,-21r17,-6r0,-165r-17,-6r0,-20v71,5,174,-24,174,55","w":201,"k":{"\u201e":-7,"\u201a":-7,"\u2039":6,"\u2019":6,"\u201d":6,"\u0153":6,"\u00ab":6,"\u00f8":6,"\u00e6":6,"y":6,"u":6,"o":6,"e":6,"a":6,"Y":13,"W":13,"V":13,"T":6,"C":6,";":-7,":":-7,".":-7,"-":13,",":-7}},"S":{"d":"152,-62v4,71,-93,78,-144,52r0,-46r38,0v7,11,5,33,23,33v31,0,36,-38,13,-49v-28,-26,-73,-37,-75,-88v-2,-66,87,-74,138,-50r0,43r-39,0v-7,-10,-4,-29,-23,-29v-27,0,-31,30,-13,43v33,24,79,38,82,91","w":157},"T":{"d":"49,-194r-11,28r-36,0r0,-52r182,0r0,52r-36,0r-11,-28r-16,0r0,167r26,6r0,21r-109,0r0,-21r27,-6r0,-167r-16,0","w":185,"k":{"\u201e":26,"\u201a":26,"\u203a":26,"\u2039":26,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0153":26,"\u00bb":26,"\u00ab":26,"\u00f8":26,"\u00e6":26,"\u00c5":13,"s":20,"o":26,"e":26,"c":26,"a":26,"C":13,"A":13,";":13,":":13,".":26,"-":26,",":26}},"U":{"d":"107,6v-55,0,-86,-21,-86,-73r0,-125r-18,-6r0,-20r92,0r0,20r-18,6r0,127v1,26,12,39,38,39v26,0,36,-12,36,-39r0,-127r-17,-6r0,-20r73,0r0,18r-18,8r0,125v1,51,-30,73,-82,73","w":210},"V":{"d":"137,-198r0,-20r67,0r0,20r-12,6r-65,192r-56,0r-59,-192r-13,-6r0,-20r88,0r0,20r-17,6r41,147r43,-147","w":201,"k":{"\u201e":46,"\u201a":46,"\u203a":13,"\u2039":20,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0153":20,"\u0152":6,"\u00bb":13,"\u00ab":20,"\u00f8":20,"\u00e6":26,"\u00d8":6,"\u00c5":10,"y":6,"u":6,"o":20,"e":26,"a":26,"O":6,"A":10,";":13,":":13,".":40,"-":13,",":40}},"W":{"d":"52,0r-42,-192r-12,-6r0,-20r87,0r0,20r-17,6r25,147r36,-173r48,0r37,173r25,-144r-17,-6r0,-23r68,0r0,23r-12,6r-44,189r-61,0r-30,-144r-29,144r-62,0","w":287,"k":{"\u201e":26,"\u201a":26,"\u2039":6,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0153":13,"\u00ab":6,"\u00f8":13,"\u00e6":13,"r":6,"o":13,"e":13,"a":13,";":6,":":6,".":20,",":20}},"X":{"d":"17,-27r59,-81r-57,-84r-17,-6r0,-20r98,0r0,20r-15,6r29,46r30,-46r-14,-6r0,-20r70,0r0,20r-18,6r-52,71r64,94r17,6r0,21r-101,0r0,-21r17,-6r-33,-55r-37,55r18,6r0,21r-76,0r0,-21","w":206,"k":{"\u201e":-7,"\u201a":-7,"\u2039":13,"\u2018":6,"\u201c":6,"\u0152":13,"\u00ab":13,"\u00d8":13,"e":6,"O":13,"C":13,"-":13}},"Y":{"d":"72,-27r0,-59r-57,-106r-17,-6r0,-20r98,0r0,20r-18,6r33,66r33,-66r-18,-6r0,-20r77,0r0,20r-18,6r-57,93r0,72r23,6r0,21r-102,0r0,-21","w":199,"k":{"\u201e":40,"\u201a":40,"\u203a":13,"\u2039":26,"\u2019":-13,"\u201d":-13,"\u0153":33,"\u0152":13,"\u00bb":13,"\u00ab":26,"\u00f8":33,"\u00e6":33,"\u00d8":13,"\u00c5":10,"u":20,"o":33,"e":33,"a":33,"O":13,"C":20,"A":10,";":33,":":33,".":40,"-":33,",":40}},"Z":{"d":"109,-192r-49,0r-10,26r-40,0r0,-52r157,0r0,36r-105,156r54,0r12,-30r40,0r0,56r-164,0r0,-36","w":171,"k":{"\u201e":-7,"\u201a":-7,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7}},"[":{"d":"69,50r21,0r0,25r-71,0r0,-319r71,0r0,25r-21,0r0,269","w":93},"\\":{"d":"1,-244r47,0r36,319r-47,0","w":84},"]":{"d":"24,-219r-21,0r0,-25r72,0r0,319r-72,0r0,-25r21,0r0,-269","w":93},"^":{"d":"157,-257r46,0r84,99r-21,0r-86,-61r-86,61r-22,0","w":360},"_":{"d":"0,43r180,0r0,42r-180,0r0,-42"},"`":{"d":"105,-188r-48,-47r45,-11r33,49"},"a":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77","w":181},"b":{"d":"113,-97v0,-31,-18,-53,-40,-36r0,106v35,9,40,-30,40,-70xm172,-96v0,68,-54,123,-110,87r-45,11r0,-213r-17,-4r0,-20r73,-8r0,89v13,-10,27,-19,45,-19v36,0,54,36,54,77","w":177},"c":{"d":"63,-85v-4,52,37,69,82,54r0,24v-61,24,-139,11,-139,-69v0,-82,68,-114,139,-87r0,40r-39,0r-12,-29v-27,0,-29,36,-31,67","w":148},"d":{"d":"65,-77v0,35,15,58,40,40r0,-106v-34,-8,-40,26,-40,66xm6,-73v0,-63,39,-118,99,-93r0,-45r-17,-4r0,-21r73,-8r0,215r17,4r0,20r-73,8r0,-18v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77","w":181},"e":{"d":"83,-151v-20,0,-20,26,-20,51v25,1,35,-10,35,-33v-1,-11,-4,-18,-15,-18xm63,-80v-6,50,42,62,82,49r0,23v-60,26,-139,13,-139,-68v0,-59,30,-97,88,-97v32,0,54,15,54,45v0,42,-40,52,-85,48","w":152,"k":{"x":-7}},"f":{"d":"99,-222v-26,-7,-19,28,-20,52r31,0r0,26r-31,0r0,117r23,6r0,21r-96,0r0,-21r17,-6r0,-117r-17,0r0,-26r17,0v-13,-74,66,-83,124,-65r0,36r-38,0","w":105,"k":{"\u201e":-13,"\u201a":-13,"\u203a":-13,"\u2019":-47,"\u2018":-47,"\u201d":-47,"\u201c":-47,"\u00bb":-13,"y":-7,";":-10,":":-10}},"g":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm70,48v37,8,37,-28,35,-63v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77v0,-69,52,-124,109,-87r45,-12r0,186v3,67,-94,71,-145,48r0,-37r48,0","w":174},"h":{"d":"78,-153v26,-26,93,-31,93,23r0,103r18,6r0,21r-73,0r-1,-123v0,-20,-26,-18,-37,-9r0,105r18,6r0,21r-91,0r0,-21r17,-6r0,-184r-17,-4r0,-20r73,-8r0,90","w":191},"i":{"d":"51,-192v-22,0,-33,-4,-33,-23v0,-18,11,-23,33,-23v21,0,32,4,32,23v0,18,-12,23,-32,23xm97,-21r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,145","w":100},"j":{"d":"54,-192v-22,-1,-33,-3,-33,-23v0,-19,11,-23,33,-23v21,0,32,4,32,23v0,18,-12,23,-32,23xm82,17v5,60,-70,68,-116,48r0,-37r34,0v5,8,4,23,14,26v11,0,13,-12,12,-24r0,-170r-17,-4r0,-21r73,-7r0,189","w":97},"k":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-184r-17,-4r0,-20r73,-8r0,216xm127,-145r-15,-6r0,-19r78,0r0,19r-23,6r-34,39r40,79r20,6r0,21r-70,0r-40,-86","w":193,"k":{"\u0153":6,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6}},"l":{"d":"96,-21r0,21r-91,0r0,-21r17,-6r0,-184r-17,-4r0,-20r73,-8r0,216","w":98},"m":{"d":"168,-153v26,-26,97,-32,97,22r0,104r18,6r0,21r-73,0r0,-123v0,-20,-26,-19,-38,-10r0,106r18,6r0,21r-73,0r-1,-123v0,-20,-25,-18,-37,-9r0,105r18,6r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,19v21,-20,74,-31,89,0","w":285},"n":{"d":"79,-153v26,-26,93,-31,93,23r0,103r18,6r0,21r-73,0r0,-123v-1,-20,-26,-18,-38,-9r0,105r18,6r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,19","w":193,"k":{"\u2019":20,"\u2018":6,"\u201d":20,"\u201c":6}},"o":{"d":"87,-147v-21,4,-22,27,-22,58v0,40,-3,62,22,68v23,-5,22,-30,22,-65v0,-34,1,-56,-22,-61xm167,-87v0,55,-30,92,-81,92v-51,1,-80,-33,-80,-85v0,-57,28,-92,82,-92v52,0,79,31,79,85","w":173,"k":{"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"x":6,".":6,"-":-7,",":6}},"p":{"d":"178,-97v0,62,-40,118,-99,93r0,52r23,6r0,21r-96,0r0,-21r17,-6r0,-188r-17,-4r0,-21r73,-7r0,18v12,-10,28,-18,46,-19v37,0,53,35,53,76xm120,-97v1,-32,-18,-52,-41,-36r0,106v35,9,39,-31,41,-70","w":184},"q":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,52,-124,109,-87r46,-12r0,220r17,6r0,21r-90,0r0,-21r17,-6r0,-63v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77","w":179},"r":{"d":"98,-135v-8,0,-15,2,-19,6r0,102r23,6r0,21r-96,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,23v15,-15,41,-30,65,-19r0,49r-42,0","w":143,"k":{"\u201e":26,"\u201a":26,"\uf002":-7,"\uf001":-7,"\u2018":-13,"\u201c":-13,"y":-7,"x":-7,"w":-7,"v":-7,"u":-7,"f":-7,"e":6,";":-7,":":-7,".":33,"-":6,",":33}},"s":{"d":"135,-51v0,60,-79,64,-127,44r0,-40r42,0r13,30v24,4,26,-26,10,-36v-26,-17,-65,-25,-66,-68v-1,-57,76,-59,122,-41r0,40r-39,0v-5,-10,-6,-24,-15,-30v-20,-1,-24,28,-6,34v26,18,66,24,66,67","w":140},"t":{"d":"115,-7v-33,16,-95,19,-95,-36r0,-101r-17,0r0,-22r30,-14r21,-28r22,0r0,38r39,0r0,26r-39,0r0,88v-2,28,15,30,39,26r0,23","w":115},"u":{"d":"76,-49v-4,25,25,23,37,14r0,-104r-17,-5r0,-21r73,-8r0,142r17,6r0,21r-73,7r0,-17v-24,27,-93,31,-93,-21r0,-104r-17,-5r0,-21r73,-8r0,124","w":190},"v":{"d":"1,-149r0,-21r91,0r0,21r-17,5r24,103r25,-103r-17,-5r0,-21r64,0r0,21r-12,5r-44,144r-60,0r-41,-144","w":173,"k":{"\u201e":33,"\u201a":33,"\u2018":-7,"\u201c":-7,".":33,",":33}},"w":{"d":"1,-149r0,-21r84,0r0,21r-17,5r21,104r31,-130r43,0r32,125r19,-96r-17,-6r0,-23r65,0r0,23r-12,6r-39,141r-55,0r-25,-100r-24,100r-57,0r-36,-144","w":263,"k":{"\u2018":-7,"\u201c":-7,".":26,",":26}},"x":{"d":"16,-26r47,-59r-43,-59r-15,-5r0,-21r88,0r0,21r-12,5r21,29r19,-29r-12,-5r0,-21r64,0r0,21r-15,5r-40,50r50,68r16,5r0,21r-92,0r0,-21r15,-5r-26,-35r-22,35r14,5r0,21r-72,0r0,-21","w":183,"k":{"\u0153":6,"\u00f8":6,"o":6,"e":6,"c":6}},"y":{"d":"98,33v-5,38,-51,51,-87,33r0,-38r37,0v2,10,10,26,17,9r5,-17r-61,-164r-11,-5r0,-21r90,0r0,21r-18,5r27,87r23,-87r-17,-5r0,-21r64,0r0,21r-12,5","w":169,"k":{"\u201e":33,"\u201a":33,"\u2039":6,"\u2018":-7,"\u201c":-7,"\u00ab":6,".":33,",":33}},"z":{"d":"86,-146r-29,0r-8,23r-37,0r0,-47r133,0r0,26r-83,121r35,0r8,-25r39,0r0,48r-138,0r0,-29","w":151},"{":{"d":"77,-173v0,-63,6,-99,73,-93r0,11v-38,-2,-34,31,-34,69v-1,49,-5,64,-41,74v43,8,41,43,41,97v0,35,4,45,34,47v-1,3,2,11,-2,11v-67,5,-71,-31,-71,-94v0,-42,-9,-48,-46,-54r0,-14v38,-5,46,-12,46,-54"},"|":{"d":"69,-275r42,0r0,360r-42,0r0,-360"},"}":{"d":"64,-186v0,-38,4,-71,-34,-69v1,-3,-2,-11,2,-11v66,-5,71,30,71,93v0,42,8,49,46,54r0,14v-49,0,-46,37,-46,87v0,50,-20,61,-73,61r0,-11v38,2,34,-31,34,-70v1,-49,5,-63,41,-74v-36,-11,-40,-25,-41,-74"},"~":{"d":"204,-117v28,-1,43,-13,65,-27r0,45v-26,19,-60,33,-97,19v-59,-22,-101,-24,-141,10r0,-45v21,-14,40,-23,68,-25v35,-2,76,24,105,23","w":299},"\u00c4":{"d":"109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0xm72,-297v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm127,-297v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":200},"\u00c5":{"d":"102,-300v-12,0,-23,10,-23,22v0,12,12,23,23,23v11,0,23,-11,23,-23v0,-12,-11,-22,-23,-22xm102,-230v-27,0,-48,-22,-48,-48v0,-26,22,-47,48,-47v26,0,48,21,48,47v1,26,-22,48,-48,48xm109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0","w":200,"k":{"\u201e":-13,"\u201a":-13,"\uf002":-7,"\uf001":-7,"\u2019":33,"\u2018":33,"\u201d":33,"\u201c":33,"y":6,"w":6,"v":6,"t":6,"f":-7,"Y":10,"V":10,"T":13,"S":-7,";":-7,":":-7}},"\u00c7":{"d":"69,-110v-2,65,42,94,106,78r0,25v-79,32,-166,-5,-166,-97v0,-89,84,-145,166,-107r0,45r-40,0r-12,-29v-42,-2,-53,41,-54,85xm92,60v18,-3,30,-29,7,-33r0,-27r23,0r0,13v27,0,30,38,11,52v-9,6,-21,11,-36,13"},"\u00c9":{"d":"6,0r0,-21r17,-6r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,74r37,0r13,-32r40,0r0,56r-164,0xm86,-242r-31,-9r34,-49r44,11","w":175},"\u00d1":{"d":"23,-27r0,-165r-17,-6r0,-20r68,0r79,135r0,-109r-17,-7r0,-19r69,0r0,18r-17,8r0,192r-45,0r-85,-144r0,117r18,6r0,21r-70,0r0,-21xm126,-255v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24","w":209},"\u00d6":{"d":"102,-194v-38,4,-36,35,-36,85v0,50,0,80,36,85v37,-5,37,-34,37,-85v0,-51,1,-81,-37,-85xm100,4v-61,0,-94,-46,-94,-110v0,-68,35,-117,99,-117v60,0,95,47,95,110v0,67,-35,117,-100,117xm75,-297v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm130,-297v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":204},"\u00dc":{"d":"107,6v-55,0,-86,-21,-86,-73r0,-125r-18,-6r0,-20r92,0r0,20r-18,6r0,127v1,26,12,39,38,39v26,0,36,-12,36,-39r0,-127r-17,-6r0,-20r73,0r0,18r-18,8r0,125v1,51,-30,73,-82,73xm77,-297v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm132,-297v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":210},"\u00e1":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77xm89,-188r-31,-9r34,-49r44,11","w":181},"\u00e0":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77xm106,-188r-48,-47r45,-11r33,49","w":181},"\u00e2":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77xm61,-188r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":181},"\u00e4":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77xm63,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm118,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":181},"\u00e3":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77xm112,-201v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24","w":181},"\u00e5":{"d":"92,-255v-12,0,-23,11,-23,23v0,12,11,23,23,23v12,0,23,-11,23,-23v0,-12,-11,-23,-23,-23xm92,-184v-26,0,-48,-22,-48,-48v0,-26,22,-48,48,-48v26,0,48,22,48,48v0,26,-22,48,-48,48xm65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm6,-73v0,-69,54,-125,109,-87r46,-12r0,143r17,4r0,21r-73,8r0,-19v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77","w":181},"\u00e7":{"d":"63,-85v-4,52,37,69,82,54r0,24v-61,24,-139,11,-139,-69v0,-82,68,-114,139,-87r0,40r-39,0r-12,-29v-27,0,-29,36,-31,67xm65,60v18,-3,30,-29,7,-33r0,-27r23,0r0,13v27,0,30,38,11,52v-9,6,-21,11,-36,13","w":148},"\u00e9":{"d":"83,-151v-20,0,-20,26,-20,51v25,1,35,-10,35,-33v-1,-11,-4,-18,-15,-18xm63,-80v-6,50,42,62,82,49r0,23v-60,26,-139,13,-139,-68v0,-59,30,-97,88,-97v32,0,54,15,54,45v0,42,-40,52,-85,48xm74,-188r-31,-9r34,-49r44,11","w":152},"\u00e8":{"d":"83,-151v-20,0,-20,26,-20,51v25,1,35,-10,35,-33v-1,-11,-4,-18,-15,-18xm63,-80v-6,50,42,62,82,49r0,23v-60,26,-139,13,-139,-68v0,-59,30,-97,88,-97v32,0,54,15,54,45v0,42,-40,52,-85,48xm91,-188r-48,-47r45,-11r33,49","w":152},"\u00ea":{"d":"83,-151v-20,0,-20,26,-20,51v25,1,35,-10,35,-33v-1,-11,-4,-18,-15,-18xm63,-80v-6,50,42,62,82,49r0,23v-60,26,-139,13,-139,-68v0,-59,30,-97,88,-97v32,0,54,15,54,45v0,42,-40,52,-85,48xm46,-188r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":152},"\u00eb":{"d":"83,-151v-20,0,-20,26,-20,51v25,1,35,-10,35,-33v-1,-11,-4,-18,-15,-18xm63,-80v-6,50,42,62,82,49r0,23v-60,26,-139,13,-139,-68v0,-59,30,-97,88,-97v32,0,54,15,54,45v0,42,-40,52,-85,48xm48,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm103,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":152},"\u00ed":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,145xm48,-188r-31,-9r34,-49r44,11","w":100},"\u00ec":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,145xm65,-188r-48,-47r45,-11r33,49","w":100},"\u00ee":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,145xm20,-188r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":100},"\u00ef":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,145xm22,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm77,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":100},"\u00f1":{"d":"79,-153v26,-26,93,-31,93,23r0,103r18,6r0,21r-73,0r0,-123v-1,-20,-26,-18,-38,-9r0,105r18,6r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,19xm118,-201v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24","w":193},"\u00f3":{"d":"87,-147v-21,4,-22,27,-22,58v0,40,-3,62,22,68v23,-5,22,-30,22,-65v0,-34,1,-56,-22,-61xm167,-87v0,55,-30,92,-81,92v-51,1,-80,-33,-80,-85v0,-57,28,-92,82,-92v52,0,79,31,79,85xm85,-188r-31,-9r34,-49r44,11","w":173},"\u00f2":{"d":"87,-147v-21,4,-22,27,-22,58v0,40,-3,62,22,68v23,-5,22,-30,22,-65v0,-34,1,-56,-22,-61xm167,-87v0,55,-30,92,-81,92v-51,1,-80,-33,-80,-85v0,-57,28,-92,82,-92v52,0,79,31,79,85xm102,-188r-48,-47r45,-11r33,49","w":173},"\u00f4":{"d":"87,-147v-21,4,-22,27,-22,58v0,40,-3,62,22,68v23,-5,22,-30,22,-65v0,-34,1,-56,-22,-61xm167,-87v0,55,-30,92,-81,92v-51,1,-80,-33,-80,-85v0,-57,28,-92,82,-92v52,0,79,31,79,85xm57,-188r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":173},"\u00f6":{"d":"87,-147v-21,4,-22,27,-22,58v0,40,-3,62,22,68v23,-5,22,-30,22,-65v0,-34,1,-56,-22,-61xm167,-87v0,55,-30,92,-81,92v-51,1,-80,-33,-80,-85v0,-57,28,-92,82,-92v52,0,79,31,79,85xm59,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm114,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":173},"\u00f5":{"d":"87,-147v-21,4,-22,27,-22,58v0,40,-3,62,22,68v23,-5,22,-30,22,-65v0,-34,1,-56,-22,-61xm167,-87v0,55,-30,92,-81,92v-51,1,-80,-33,-80,-85v0,-57,28,-92,82,-92v52,0,79,31,79,85xm108,-201v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24","w":173},"\u00fa":{"d":"76,-49v-4,25,25,23,37,14r0,-104r-17,-5r0,-21r73,-8r0,142r17,6r0,21r-73,7r0,-17v-24,27,-93,31,-93,-21r0,-104r-17,-5r0,-21r73,-8r0,124xm91,-188r-31,-9r34,-49r44,11","w":190},"\u00f9":{"d":"76,-49v-4,25,25,23,37,14r0,-104r-17,-5r0,-21r73,-8r0,142r17,6r0,21r-73,7r0,-17v-24,27,-93,31,-93,-21r0,-104r-17,-5r0,-21r73,-8r0,124xm108,-188r-48,-47r45,-11r33,49","w":190},"\u00fb":{"d":"76,-49v-4,25,25,23,37,14r0,-104r-17,-5r0,-21r73,-8r0,142r17,6r0,21r-73,7r0,-17v-24,27,-93,31,-93,-21r0,-104r-17,-5r0,-21r73,-8r0,124xm63,-188r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":190},"\u00fc":{"d":"76,-49v-4,25,25,23,37,14r0,-104r-17,-5r0,-21r73,-8r0,142r17,6r0,21r-73,7r0,-17v-24,27,-93,31,-93,-21r0,-104r-17,-5r0,-21r73,-8r0,124xm65,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm120,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":190},"\u2020":{"d":"73,75v-25,-39,-29,-114,-28,-187v12,-7,19,-23,20,-42r-60,18r0,-51r60,19r-21,-76r58,0r-21,76r60,-19r0,51r-60,-18v2,18,8,34,19,42v1,73,-1,148,-27,187","w":145},"\u00b0":{"d":"88,-203v0,-16,-13,-29,-29,-29v-16,0,-29,14,-29,29v0,15,14,29,29,29v15,0,29,-13,29,-29xm5,-203v0,-29,25,-55,54,-55v29,0,55,26,55,55v0,29,-26,55,-55,55v-29,0,-54,-26,-54,-55","w":118},"\u00a2":{"d":"71,-90v-3,52,36,70,82,55r0,23v-14,5,-26,9,-42,11r0,29r-25,0r0,-28v-45,-4,-68,-31,-68,-81v-1,-51,25,-89,68,-95r0,-29r25,0r0,28v15,2,29,6,42,10r0,40r-39,0r-12,-29v-26,1,-29,35,-31,66","w":171},"\u00a3":{"d":"83,-103v2,32,-2,55,-26,63r70,0r9,-19r36,0r0,59r-165,0r0,-30v27,-5,19,-42,20,-73r-19,0r0,-27r19,0v-5,-63,13,-92,76,-92v25,0,44,5,63,13r0,44r-40,0r-12,-30v-37,-6,-31,32,-31,65r51,0r0,27r-51,0","w":171},"\u00a7":{"d":"70,-128v-24,11,-21,49,4,58r20,12v25,-10,20,-50,-5,-57xm146,6v0,54,-81,57,-125,39r0,-42r39,0v7,8,5,25,18,27v27,2,23,-30,5,-37v-29,-21,-75,-31,-77,-77v0,-30,19,-49,44,-57v-19,-12,-32,-23,-33,-48v-1,-57,81,-58,126,-41r0,42r-40,0v-7,-8,-4,-26,-18,-27v-26,-2,-24,30,-4,37v31,21,77,31,77,79v0,26,-22,48,-45,54v20,14,32,23,33,51","w":163},"\u2022":{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},"\u00b6":{"d":"5,-199v0,-76,95,-60,170,-61r0,22r-18,0r0,238r-31,0r0,-238r-27,0r0,238r-30,0r0,-138v-36,-1,-64,-24,-64,-61"},"\u00df":{"d":"220,-52v1,59,-76,63,-128,46r0,-42r43,0v6,10,7,24,15,31v22,2,23,-26,8,-36v-28,-18,-78,-33,-61,-83v7,-21,36,-32,38,-59v1,-15,-11,-23,-27,-23v-23,0,-31,8,-31,32r0,186r-73,0r0,-21r18,-6r0,-140v1,-60,26,-74,89,-76v54,-2,101,16,80,60v-10,22,-79,36,-38,64v26,18,67,25,67,67","w":222,"k":{"\u2019":13,"\u2018":13,"\u201d":13,"\u201c":13,"-":-7}},"\u00ae":{"d":"172,-158v5,-20,-36,-39,-36,-14r0,44v22,4,37,-7,36,-30xm228,-83v4,24,-10,37,-33,37v-50,0,-10,-76,-59,-72v3,22,-10,58,15,59r0,10r-70,0r0,-10v13,-3,18,-3,18,-16r0,-92v-1,-14,-5,-14,-18,-17r0,-9v52,2,129,-11,129,35v0,26,-22,32,-49,37v26,5,41,18,41,46v0,10,-1,14,7,15v8,0,10,-12,9,-23r10,0xm258,-119v0,-67,-44,-111,-110,-111v-68,0,-111,45,-111,111v0,66,45,111,111,111v65,0,110,-45,110,-111xm17,-119v0,-78,53,-131,131,-131v81,0,131,54,131,134v0,75,-55,128,-131,128v-79,0,-131,-54,-131,-131","w":295},"\u00a9":{"d":"147,-195v19,-5,44,26,51,1r9,0r0,58r-9,0v-5,-26,-20,-48,-46,-48v-31,0,-39,28,-39,64v0,37,9,66,42,66v23,0,36,-14,47,-31r9,5v-27,65,-140,40,-140,-37v0,-44,32,-79,76,-78xm258,-119v0,-67,-44,-111,-110,-111v-67,0,-111,46,-111,111v0,66,45,111,111,111v65,0,110,-45,110,-111xm17,-119v0,-78,53,-131,131,-131v78,0,131,53,131,131v0,77,-53,130,-131,130v-77,0,-131,-52,-131,-130","w":295},"\u2122":{"d":"143,-241v3,-12,-15,-3,-12,-16r39,0r22,63r22,-63r36,0v1,9,-11,4,-10,15v4,25,-11,67,10,77r0,6r-46,0v-2,-11,12,-4,12,-16r0,-62r-26,78r-8,0r-29,-80r0,64v-2,12,15,4,13,16r-35,0v-2,-11,15,-4,12,-16r0,-66xm67,-249v-15,1,-21,11,-23,27r-6,0r2,-35r81,0r2,35r-7,0v-1,-17,-7,-26,-22,-27r0,74v-3,11,12,5,10,16r-47,0v-2,-11,12,-4,10,-16r0,-74","w":295},"\u00b4":{"d":"88,-188r-31,-9r34,-49r44,11"},"\u00a8":{"d":"62,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm117,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22"},"\u2260":{"d":"210,-220r29,24r-23,30r39,0r0,39r-66,0r-32,39r98,0r0,39r-124,0r-43,54r-30,-24r24,-30r-37,0r0,-39r63,0r32,-39r-95,0r0,-39r122,0","w":299},"\u00c6":{"d":"107,-198r-28,78r28,0r0,-78xm247,-166r-40,0r-11,-28r-36,0r0,74r26,0r9,-23r35,0r0,71r-35,0r-9,-22r-26,0r0,70r38,0r12,-32r40,0r0,56r-160,0r0,-21r17,-6r0,-67r-38,0r-25,67r17,6r0,21r-68,0r0,-21r12,-6r79,-191r163,0r0,52","w":256,"k":{"\u2019":-7,"\u201d":-7}},"\u00d8":{"d":"102,-194v-46,2,-34,60,-35,119r65,-99v-4,-11,-15,-21,-30,-20xm102,-24v46,-1,37,-70,35,-121r-65,99v4,13,15,22,30,22xm6,-108v0,-89,81,-143,153,-99r22,-31r17,12r-23,33v50,65,23,197,-75,197v-22,0,-39,-6,-53,-15r-24,34r-17,-14r25,-34v-16,-19,-25,-47,-25,-83","w":204,"k":{"\u201e":13,"\u201a":13,"\u2039":-7,"\u2019":6,"\u2018":-7,"\u201d":6,"\u201c":-7,"\u00ab":-7,"Y":13,"X":13,"V":6,";":-7,":":-7,".":13,"-":-13,",":13}},"\u221e":{"d":"245,-107v0,-27,-34,-43,-54,-23v-7,6,-15,16,-23,31v12,33,77,34,77,-8xm55,-108v-1,28,35,43,55,23v6,-7,14,-16,22,-30v-11,-31,-77,-34,-77,7xm211,-33v-34,-1,-41,-18,-61,-45v-13,25,-26,44,-56,45v-34,1,-60,-36,-60,-74v0,-39,21,-74,56,-74v32,0,40,20,60,45v14,-25,27,-44,57,-45v34,-1,59,36,59,74v0,39,-19,75,-55,74","w":299},"\u00b1":{"d":"45,-37r210,0r0,40r-210,0r0,-40xm129,-218r42,0r0,56r84,0r0,41r-84,0r0,56r-42,0r0,-56r-84,0r0,-41r84,0r0,-56","w":299},"\u2264":{"d":"45,-37r210,0r0,40r-210,0r0,-40xm255,-221r0,42r-137,42r137,42r0,42r-210,-66r0,-36","w":299},"\u2265":{"d":"45,-37r210,0r0,40r-210,0r0,-40xm45,-221r210,66r0,36r-210,66r0,-42r137,-42r-137,-42r0,-42","w":299},"\u00a5":{"d":"51,0r0,-21r22,-6r0,-49r-58,0r0,-23r52,0r-13,-24r-39,0r0,-23r26,0r-24,-46r-18,-6r0,-20r95,0r0,20r-17,6r32,66r33,-66r-17,-6r0,-20r76,0r0,20r-18,6r-27,46r28,0r0,23r-43,0r-14,24r57,0r0,23r-57,0r0,49r22,6r0,21r-98,0","w":199},"\u00b5":{"d":"123,-31v-7,43,-83,48,-85,-2v-2,31,-11,116,-33,108v-33,-11,-22,-30,-10,-71v17,-57,24,-103,37,-160r52,0v-7,37,-19,72,-22,110v-2,22,26,28,36,11v18,-29,21,-83,31,-121r51,0v-6,37,-17,70,-21,109v0,9,4,16,13,16v17,0,19,-25,31,-27v2,0,6,2,5,6v4,49,-80,84,-85,21","w":216},"\u2202":{"d":"10,-69v0,-71,95,-114,125,-51v4,-33,18,-86,-10,-100v-10,0,-39,38,-55,33v-11,0,-20,-9,-20,-20v1,-18,31,-33,55,-32v55,1,80,46,80,105v0,72,-36,138,-102,138v-42,0,-73,-32,-73,-73xm83,-9v29,-3,41,-46,40,-85v-1,-22,-6,-40,-25,-41v-28,4,-41,47,-40,85v1,23,6,39,25,41","w":195},"\u2211":{"d":"5,-259r224,0r27,81r-16,0v-16,-31,-10,-65,-67,-65r-85,0r104,133r0,7r-121,115r166,-2v9,-13,11,-34,17,-50r16,0r-33,109r-233,0r0,-15r135,-128r-134,-172r0,-13","w":278},"\u220f":{"d":"8,-259r295,0r0,16r-34,0r0,296r34,0r0,16r-132,0r0,-16r29,0r0,-296r-90,0r0,296r30,0r0,16r-132,0r0,-16r33,0r0,-296r-33,0r0,-16","w":311},"\u03c0":{"d":"1,-78v12,-53,21,-78,78,-78r181,0r-12,57r-63,0v-4,40,20,107,-24,107v-52,0,3,-82,5,-107r-66,0v-3,39,18,107,-25,107v-52,0,5,-80,6,-107v-29,2,-67,-8,-68,21r-12,0","w":265},"\u222b":{"d":"58,31v0,7,-1,13,6,13v12,0,19,-40,21,-118v3,-102,4,-191,85,-200v40,-5,59,57,15,59v-16,0,-23,-11,-23,-27v0,-7,0,-9,-5,-10v-12,0,-18,39,-22,117v-5,87,0,192,-85,201v-41,4,-59,-58,-14,-59v14,0,22,9,22,24","w":219},"\u00aa":{"d":"48,-152v0,22,13,39,30,27r0,-74v-24,-7,-30,20,-30,47xm4,-151v-4,-49,40,-86,83,-61r34,-8r0,100r13,3r0,15r-56,5r0,-13v-30,28,-80,7,-74,-41","w":136},"\u00ba":{"d":"65,-202v-26,3,-24,87,0,88v25,-1,25,-87,0,-88xm126,-160v0,39,-23,64,-61,64v-37,-1,-61,-21,-61,-59v0,-41,22,-65,62,-65v39,0,60,22,60,60","w":129},"\u03a9":{"d":"266,-147v0,49,-30,79,-63,97r49,0r7,-21r14,0r-21,71r-96,0v18,-44,31,-93,31,-150v0,-53,-7,-93,-48,-97v-40,4,-46,46,-47,97v0,58,12,106,30,150r-96,0r-21,-71r15,0r6,21v16,-2,38,4,50,-2v-37,-14,-63,-48,-63,-96v0,-66,58,-115,126,-115v69,0,127,49,127,116","w":277},"\u00e6":{"d":"170,-151v-20,0,-22,26,-21,51v24,1,35,-10,35,-33v0,-11,-4,-18,-14,-18xm60,-51v-1,22,21,30,38,21r0,-50v-23,1,-37,7,-38,29xm5,-47v3,-46,40,-53,93,-53v0,-25,4,-57,-26,-49r-8,26r-45,0r0,-33v26,-17,86,-27,110,-3v32,-22,106,-21,105,30v-1,43,-37,50,-85,49v-6,48,37,61,82,49r0,23v-34,14,-91,17,-115,-8v-28,31,-115,28,-111,-31","w":238,"k":{"x":-7}},"\u00f8":{"d":"87,-147v-26,3,-21,41,-22,78r39,-63v-2,-8,-8,-16,-17,-15xm87,-21v27,-2,20,-43,22,-79r-40,62v2,10,7,18,18,17xm167,-87v5,71,-63,112,-123,82r-17,25r-19,-14r17,-26v-40,-51,-16,-152,63,-152v16,0,30,1,40,7r19,-25r18,13r-18,26v14,14,18,37,20,64","w":173,"k":{"\u2039":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00ab":-7,"x":6,".":6,"-":-7,",":6}},"\u00bf":{"d":"58,-201v0,-15,11,-22,28,-22v17,0,30,6,29,22v-1,16,-12,23,-30,22v-16,0,-27,-7,-27,-22xm152,-14v-51,35,-174,18,-140,-61v12,-28,40,-47,58,-71r0,-22r33,0v2,50,-32,68,-34,116v0,19,11,31,29,27r13,-28r41,0r0,39","w":155},"\u00a1":{"d":"20,-201v1,-15,13,-22,29,-22v17,0,28,7,28,22v0,17,-12,23,-30,23v-16,0,-27,-8,-27,-23xm49,4v-29,1,-35,-14,-32,-42r16,-128r32,0r16,143v0,22,-10,26,-32,27","w":97},"\u00ac":{"d":"45,-152r210,0r0,88r-40,0r0,-48r-170,0r0,-40","w":299},"\u221a":{"d":"203,-301r38,0r0,26r-17,0r-104,282r-21,0r-54,-149r-25,10r-7,-23r64,-22r39,112","w":240},"\u0192":{"d":"-23,50v0,-27,38,-25,43,-3v37,-23,26,-121,38,-178r-33,0r3,-27r33,0v2,-54,24,-85,82,-84v23,0,45,6,45,26v0,28,-41,24,-45,0v-27,2,-32,29,-35,58r46,0r-3,27r-46,0v-18,81,3,208,-91,206v-21,0,-37,-7,-37,-25","w":171},"\u2248":{"d":"204,-79v29,-1,44,-12,65,-27r0,45v-20,13,-39,23,-66,24v-20,2,-81,-25,-104,-23v-29,2,-46,12,-68,28r0,-45v22,-15,41,-22,71,-25v22,-2,83,24,102,23xm204,-156v28,-2,43,-12,65,-26r0,45v-21,13,-38,22,-66,23v-21,1,-82,-24,-104,-22v-30,3,-45,11,-68,27r0,-45v22,-15,41,-23,71,-25v21,-2,82,24,102,23","w":299},"\u2206":{"d":"93,-191r-63,132r126,0xm112,-263r14,0r125,263r-265,0","w":236},"\u00ab":{"d":"72,-89r29,-62r33,0r-15,62r15,62r-33,0xm6,-89r29,-62r33,0r-15,62r15,62r-33,0","w":143,"k":{"Y":13,"V":13,"T":26}},"\u00bb":{"d":"138,-89r-29,62r-33,0r15,-62r-15,-62r33,0xm72,-89r-29,62r-33,0r15,-62r-15,-62r33,0","w":143,"k":{"\u0153":-7,"\u0152":-7,"\u00f8":-7,"\u00d8":-7,"o":-7,"Y":26,"X":13,"W":6,"V":20,"T":26,"O":-7}},"\u2026":{"d":"64,5v-20,0,-31,-5,-31,-25v0,-18,11,-24,31,-24v20,0,31,6,31,24v0,20,-11,25,-31,25xm184,5v-20,0,-31,-5,-31,-25v0,-18,11,-24,31,-24v20,0,31,6,31,24v0,20,-11,25,-31,25xm304,5v-20,0,-31,-5,-31,-25v0,-18,11,-24,31,-24v20,0,31,6,31,24v0,20,-11,25,-31,25","w":360},"\u00a0":{"w":171},"\u00c0":{"d":"109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0xm115,-242r-48,-47r45,-11r33,49","w":200},"\u00c3":{"d":"109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0xm121,-255v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24","w":200},"\u00d5":{"d":"102,-194v-38,4,-36,35,-36,85v0,50,0,80,36,85v37,-5,37,-34,37,-85v0,-51,1,-81,-37,-85xm100,4v-61,0,-94,-46,-94,-110v0,-68,35,-117,99,-117v60,0,95,47,95,110v0,67,-35,117,-100,117xm124,-255v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24","w":204},"\u0152":{"d":"103,-24v15,1,21,-7,27,-17r0,-137v-5,-10,-14,-16,-27,-16v-39,0,-37,35,-37,85v0,51,0,82,37,85xm6,-106v0,-78,51,-134,129,-112r136,0r0,52r-39,0r-11,-28r-36,0r0,70r26,0r9,-23r34,0r0,71r-34,0r-9,-22r-26,0r0,74r37,0r13,-32r39,0r0,56r-142,0v-75,19,-126,-30,-126,-106","w":281},"\u0153":{"d":"195,-133v3,-22,-25,-23,-30,-6v-3,8,-5,21,-5,38r1,-1v16,7,38,-7,34,-31xm87,-152v-24,6,-22,30,-22,68v0,39,-3,62,22,67v24,-6,22,-31,22,-69v0,-38,1,-59,-22,-66xm243,-8v-31,12,-86,18,-112,-2v-52,37,-135,2,-125,-72v-9,-77,75,-113,131,-74v30,-26,111,-26,109,27v-1,42,-37,50,-85,49v-8,43,36,63,82,49r0,23","w":249,"k":{"x":-7}},"\u2013":{"d":"180,-104r0,29r-180,0r0,-29r180,0"},"\u2014":{"d":"362,-104r0,29r-364,0r0,-29r364,0","w":360},"\u201c":{"d":"115,-133v-38,0,-38,-44,-22,-67v7,-10,15,-18,27,-23r16,18v-9,6,-16,14,-16,27v15,-1,25,7,25,21v0,17,-12,24,-30,24xm43,-133v-56,-3,-31,-81,4,-90r17,18v-10,7,-17,13,-17,27v15,-1,25,7,25,21v1,17,-12,24,-29,24","w":154,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":33,"\u00c5":33,"y":-13,"w":-7,"v":-7,"f":-7,"T":-7,"A":33}},"\u201d":{"d":"112,-223v55,0,32,82,-4,90r-17,-17v10,-7,17,-13,17,-27v-15,1,-25,-7,-25,-21v0,-17,12,-25,29,-25xm39,-223v37,-3,40,44,24,68v-7,10,-16,17,-28,22r-16,-17v9,-7,16,-13,16,-27v-15,1,-25,-7,-25,-21v0,-17,12,-24,29,-25","w":154},"\u2018":{"d":"43,-133v-56,-3,-31,-81,4,-90r17,18v-9,7,-16,14,-17,27v15,-1,25,7,25,21v1,17,-12,24,-29,24","w":81,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":33,"\u00c5":33,"y":-13,"w":-7,"v":-7,"f":-7,"T":-7,"A":33}},"\u2019":{"d":"40,-223v37,-3,38,44,23,68v-7,10,-16,17,-28,22r-16,-17v8,-6,20,-17,14,-27v-13,0,-23,-7,-23,-21v0,-17,13,-24,30,-25","w":81},"\u00f7":{"d":"121,-36v0,-15,13,-29,29,-29v16,0,29,13,29,29v0,16,-14,29,-29,29v-15,0,-29,-13,-29,-29xm45,-128r210,0r0,41r-210,0r0,-41xm121,-179v0,-15,14,-29,29,-29v15,0,29,14,29,29v0,15,-13,29,-29,29v-16,0,-29,-13,-29,-29","w":299},"\u25ca":{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},"\u00ff":{"d":"98,33v-5,38,-51,51,-87,33r0,-38r37,0v2,10,10,26,17,9r5,-17r-61,-164r-11,-5r0,-21r90,0r0,21r-18,5r27,87r23,-87r-17,-5r0,-21r64,0r0,21r-12,5xm57,-243v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm112,-243v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":169},"\u0178":{"d":"72,-27r0,-59r-57,-106r-17,-6r0,-20r98,0r0,20r-18,6r33,66r33,-66r-18,-6r0,-20r77,0r0,20r-18,6r-57,93r0,72r23,6r0,21r-102,0r0,-21xm72,-297v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm127,-297v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":199},"\u2215":{"d":"107,-187r-134,172r-19,-18r135,-171","w":60},"\u00a4":{"d":"155,-156v0,-25,-21,-45,-45,-45v-25,0,-46,21,-46,45v0,25,21,46,46,46v25,0,45,-21,45,-46xm46,-114v-16,-21,-17,-62,0,-83r-35,-36r20,-21r36,36v21,-17,64,-18,85,0r35,-36r21,21r-35,36v16,20,15,63,0,83r35,36r-21,21r-35,-36v-20,17,-65,17,-85,0r-36,36r-20,-21","w":218},"\u2039":{"d":"6,-89r29,-62r33,0r-15,62r15,62r-33,0","w":78,"k":{"Y":13,"V":13,"T":26}},"\u203a":{"d":"72,-89r-29,62r-33,0r15,-62r-15,-61r33,0","w":78,"k":{"\u0153":-7,"\u0152":-7,"\u00f8":-7,"\u00d8":-7,"o":-7,"Y":26,"X":13,"W":6,"V":20,"T":26,"O":-7}},"\uf001":{"d":"126,-220v-26,-6,-52,-6,-47,29r0,21r106,-2r0,145r17,6r0,21r-90,0r0,-21r17,-6r0,-117r-50,0r0,117r18,6r0,21r-91,0r0,-21r17,-6r0,-117r-17,0r0,-26r17,0v-5,-55,25,-74,79,-73v39,1,74,3,80,30v-5,29,-57,23,-56,-7","w":205},"\uf002":{"d":"129,-220v-28,-7,-53,-7,-50,29r0,21r31,0r0,26r-31,0r0,117r18,6r0,21r-91,0r0,-21r17,-6r0,-117r-17,0r0,-26r17,0v-12,-75,64,-81,128,-68r34,-5r0,216r17,6r0,21r-90,0r0,-21r17,-6r0,-193","w":205},"\u2021":{"d":"65,-103v0,-13,-5,-19,-10,-27v5,-7,11,-16,10,-29r-60,18r0,-51r60,19r-21,-71r58,0r-21,71r60,-19r0,51r-60,-18v0,13,3,21,9,29v-5,7,-10,15,-9,27r60,-19r0,51r-60,-19v2,17,7,28,18,36v-2,54,-7,98,-26,128v-18,-27,-25,-76,-26,-128v10,-9,17,-19,18,-36r-60,19r0,-51","w":145},"\u00b7":{"d":"38,-84v-20,0,-31,-6,-31,-25v1,-19,11,-25,31,-25v21,0,32,6,32,25v0,18,-11,25,-32,25","w":76},"\u201a":{"d":"40,-44v37,-2,38,44,23,67v-7,10,-16,17,-28,22r-16,-17v8,-6,20,-17,14,-27v-15,1,-23,-8,-23,-22v0,-16,13,-22,30,-23","w":76,"k":{"\u00de":-7,"\u00d0":-13,"\u0141":-7,"\uf002":-13,"\uf001":-13,"\u0153":-7,"\u00f8":-7,"\u00c6":-20,"\u00df":-7,"\u00c5":-13,"y":6,"w":13,"v":20,"r":-13,"o":-7,"n":-13,"f":-13,"Z":-13,"Y":26,"X":-20,"W":13,"V":26,"T":13,"R":-7,"P":-7,"L":-7,"K":-7,"J":-53,"H":-7,"F":-13,"D":-13,"B":-13,"A":-13}},"\u201e":{"d":"117,-44v56,3,31,81,-4,89r-17,-17v9,-6,17,-13,17,-27v-16,2,-25,-7,-25,-22v0,-17,12,-23,29,-23xm40,-44v37,-2,38,44,23,67v-7,10,-16,17,-28,22r-16,-17v8,-6,20,-17,14,-27v-15,1,-23,-8,-23,-22v0,-16,13,-22,30,-23","w":154,"k":{"\u00de":-7,"\u00d0":-13,"\u0141":-7,"\uf002":-13,"\uf001":-13,"\u0153":-7,"\u00f8":-7,"\u00c6":-20,"\u00df":-7,"\u00c5":-13,"y":6,"w":13,"v":20,"r":-13,"o":-7,"n":-13,"f":-13,"Z":-13,"Y":26,"X":-20,"W":13,"V":26,"T":13,"R":-7,"P":-7,"L":-7,"K":-7,"J":-53,"H":-7,"F":-13,"D":-13,"B":-13,"A":-13}},"\u2030":{"d":"336,-13v25,-4,25,-96,0,-101v-16,4,-16,22,-16,46v0,31,-3,50,16,55xm339,-132v37,0,54,26,54,65v0,43,-18,71,-59,71v-37,-1,-54,-26,-54,-65v0,-43,19,-71,59,-71xm62,-104v26,-3,25,-96,0,-101v-16,4,-16,22,-16,47v0,31,-3,49,16,54xm65,-223v35,0,55,26,54,65v0,42,-19,72,-59,72v-37,0,-54,-26,-54,-66v0,-43,19,-71,59,-71xm72,-8r105,-216r25,13r-105,216xm214,-132v37,0,54,26,54,65v0,43,-18,71,-59,71v-37,-1,-54,-26,-54,-65v1,-42,19,-71,59,-71xm211,-13v25,-4,25,-96,0,-101v-16,4,-16,22,-16,46v0,31,-3,50,16,55","w":399},"\u00c2":{"d":"109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0xm70,-242r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":200},"\u00ca":{"d":"6,0r0,-21r17,-6r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,74r37,0r13,-32r40,0r0,56r-164,0xm58,-242r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":175},"\u00c1":{"d":"109,-105r-19,-69r-20,69r39,0xm-2,0r0,-21r11,-6r66,-191r56,0r59,191r13,6r0,21r-90,0r0,-21r17,-6r-14,-52r-53,0r-16,52r18,6r0,21r-67,0xm98,-242r-31,-9r34,-49r44,11","w":200},"\u00cb":{"d":"6,0r0,-21r17,-6r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,74r37,0r13,-32r40,0r0,56r-164,0xm60,-297v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm115,-297v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":175},"\u00c8":{"d":"6,0r0,-21r17,-6r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,74r37,0r13,-32r40,0r0,56r-164,0xm103,-242r-48,-47r45,-11r33,49","w":175},"\u00cd":{"d":"97,-21r0,21r-92,0r0,-21r18,-6r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,165xm50,-242r-31,-9r34,-49r44,11","w":102},"\u00ce":{"d":"97,-21r0,21r-92,0r0,-21r18,-6r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,165xm22,-242r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":102},"\u00cf":{"d":"97,-21r0,21r-92,0r0,-21r18,-6r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,165xm24,-297v13,0,19,7,19,22v0,14,-5,22,-19,22v-14,0,-19,-9,-19,-22v0,-14,6,-21,19,-22xm79,-297v13,0,19,8,19,22v0,13,-5,22,-19,22v-14,0,-19,-8,-19,-22v0,-15,6,-22,19,-22","w":102},"\u00cc":{"d":"97,-21r0,21r-92,0r0,-21r18,-6r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,165xm67,-242r-48,-47r45,-11r33,49","w":102},"\u00d3":{"d":"102,-194v-38,4,-36,35,-36,85v0,50,0,80,36,85v37,-5,37,-34,37,-85v0,-51,1,-81,-37,-85xm100,4v-61,0,-94,-46,-94,-110v0,-68,35,-117,99,-117v60,0,95,47,95,110v0,67,-35,117,-100,117xm101,-242r-31,-9r34,-49r44,11","w":204},"\u00d4":{"d":"102,-194v-38,4,-36,35,-36,85v0,50,0,80,36,85v37,-5,37,-34,37,-85v0,-51,1,-81,-37,-85xm100,4v-61,0,-94,-46,-94,-110v0,-68,35,-117,99,-117v60,0,95,47,95,110v0,67,-35,117,-100,117xm73,-242r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":204},"\uf000":{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v34,-14,91,-17,111,16v-20,14,-35,28,-35,58","w":284},"\u00d2":{"d":"102,-194v-38,4,-36,35,-36,85v0,50,0,80,36,85v37,-5,37,-34,37,-85v0,-51,1,-81,-37,-85xm100,4v-61,0,-94,-46,-94,-110v0,-68,35,-117,99,-117v60,0,95,47,95,110v0,67,-35,117,-100,117xm118,-242r-48,-47r45,-11r33,49","w":204},"\u00da":{"d":"107,6v-55,0,-86,-21,-86,-73r0,-125r-18,-6r0,-20r92,0r0,20r-18,6r0,127v1,26,12,39,38,39v26,0,36,-12,36,-39r0,-127r-17,-6r0,-20r73,0r0,18r-18,8r0,125v1,51,-30,73,-82,73xm103,-242r-31,-9r34,-49r44,11","w":210},"\u00db":{"d":"107,6v-55,0,-86,-21,-86,-73r0,-125r-18,-6r0,-20r92,0r0,20r-18,6r0,127v1,26,12,39,38,39v26,0,36,-12,36,-39r0,-127r-17,-6r0,-20r73,0r0,18r-18,8r0,125v1,51,-30,73,-82,73xm75,-242r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28","w":210},"\u00d9":{"d":"107,6v-55,0,-86,-21,-86,-73r0,-125r-18,-6r0,-20r92,0r0,20r-18,6r0,127v1,26,12,39,38,39v26,0,36,-12,36,-39r0,-127r-17,-6r0,-20r73,0r0,18r-18,8r0,125v1,51,-30,73,-82,73xm120,-242r-48,-47r45,-11r33,49","w":210},"\u0131":{"d":"97,-21r0,21r-91,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,145","w":100},"\u02c6":{"d":"60,-188r-25,-9r39,-49r32,0r39,49r-26,9r-29,-28"},"\u02dc":{"d":"111,-201v-20,0,-51,-24,-64,0r-16,-17v12,-13,20,-22,37,-25v9,-2,38,13,44,13v9,-1,13,-7,20,-13r16,18v-12,13,-20,24,-37,24"},"\u00af":{"d":"43,-206r0,-31r94,0r0,31r-94,0"},"\u02d8":{"d":"46,-243v21,17,66,17,87,0r14,17v-20,36,-93,39,-114,0"},"\u02d9":{"d":"90,-243v14,0,19,8,20,23v0,15,-5,23,-20,23v-15,0,-19,-8,-20,-23v0,-15,6,-23,20,-23"},"\u02da":{"d":"90,-260v-13,0,-23,10,-23,22v0,12,11,23,23,23v12,0,23,-11,23,-23v0,-12,-10,-22,-23,-22xm90,-190v-27,0,-48,-21,-48,-48v0,-26,22,-47,48,-47v26,0,48,21,48,47v1,26,-22,48,-48,48"},"\u00b8":{"d":"69,60v18,-3,30,-29,7,-33r0,-27r23,0r0,13v27,0,30,38,11,52v-9,6,-21,11,-36,13"},"\u02dd":{"d":"101,-194r15,-49r37,0r-29,49r-23,0xm55,-194r15,-49r37,0r-29,49r-23,0"},"\u02db":{"d":"58,49v3,-24,15,-32,33,-49r19,0v-11,11,-19,19,-21,33v2,15,11,14,31,16r-5,28v-33,-2,-54,-2,-57,-28"},"\u02c7":{"d":"119,-249r26,8r-39,49r-33,0r-38,-49r26,-8r29,28"},"\u0141":{"d":"36,-27r0,-60r-23,12r0,-29r23,-12r0,-76r-18,-6r0,-20r100,0r0,20r-26,6r0,54r41,-21r0,29r-41,21r0,85r34,0r13,-32r39,0r0,56r-160,0r0,-21","w":177,"k":{"\u201e":-13,"\u201a":-13,"\u203a":-7,"\u2019":40,"\u2018":53,"\u201d":40,"\u201c":53,"\u0153":-7,"\u0152":-7,"\u00bb":-7,"\u00f8":-7,"\u00e6":-7,"\u00d8":-7,"\u00c5":-7,"y":13,"o":-7,"e":-7,"a":-7,"Y":26,"W":13,"V":26,"T":20,"O":-7,"A":-7}},"\u0142":{"d":"108,-21r0,21r-90,0r0,-21r17,-6r0,-59r-22,11r0,-29r22,-11r0,-96r-17,-4r0,-20r73,-8r0,106r22,-12r0,30r-22,11r0,81","w":115},"\u0160":{"d":"152,-62v4,71,-93,78,-144,52r0,-46r38,0v7,11,5,33,23,33v31,0,36,-38,13,-49v-28,-26,-73,-37,-75,-88v-2,-66,87,-74,138,-50r0,43r-39,0v-7,-10,-4,-29,-23,-29v-27,0,-31,30,-13,43v33,24,79,38,82,91xm108,-303r26,8r-39,49r-33,0r-38,-49r26,-8r29,28","w":157},"\u0161":{"d":"135,-51v0,60,-79,64,-127,44r0,-40r42,0r13,30v24,4,26,-26,10,-36v-26,-17,-65,-25,-66,-68v-1,-57,76,-59,122,-41r0,40r-39,0v-5,-10,-6,-24,-15,-30v-20,-1,-24,28,-6,34v26,18,66,24,66,67xm99,-249r26,8r-39,49r-33,0r-38,-49r26,-8r29,28","w":140},"\u017d":{"d":"109,-192r-49,0r-10,26r-40,0r0,-52r157,0r0,36r-105,156r54,0r12,-30r40,0r0,56r-164,0r0,-36xm115,-303r26,8r-39,49r-33,0r-38,-49r26,-8r29,28","w":171},"\u017e":{"d":"86,-146r-29,0r-8,23r-37,0r0,-47r133,0r0,26r-83,121r35,0r8,-25r39,0r0,48r-138,0r0,-29xm105,-249r26,8r-39,49r-33,0r-38,-49r26,-8r29,28","w":151},"\u00a6":{"d":"69,-72r42,0r0,134r-42,0r0,-134xm69,-252r42,0r0,134r-42,0r0,-134"},"\u00d0":{"d":"154,-112v0,-53,-10,-82,-61,-80r0,62r30,0r0,27r-30,0r0,76v52,4,61,-32,61,-85xm213,-118v0,77,-32,121,-115,118r-79,0r0,-21r17,-6r0,-76r-23,0r0,-27r23,0r0,-62r-17,-6r0,-20r87,0v68,0,107,33,107,100","w":219,"k":{"\u201e":13,"\u201a":13,"\u2039":-7,"\u00ab":-7,"\u00c5":6,"Y":20,"V":6,"A":6,"-":-13}},"\u00f0":{"d":"82,-251r20,22r41,-17r8,21r-36,15v27,41,46,72,48,126v2,51,-28,89,-76,89v-49,-1,-77,-31,-77,-82v0,-58,33,-99,91,-88r-16,-34r-42,17r-7,-21r37,-15v-4,-8,-7,-12,-13,-20xm87,-142v-22,4,-21,26,-21,57v0,37,-2,59,21,64v23,-4,21,-28,21,-62v0,-32,1,-55,-21,-59","w":173},"\u00dd":{"d":"72,-27r0,-59r-57,-106r-17,-6r0,-20r98,0r0,20r-18,6r33,66r33,-66r-18,-6r0,-20r77,0r0,20r-18,6r-57,93r0,72r23,6r0,21r-102,0r0,-21xm98,-242r-31,-9r34,-49r44,11","w":199},"\u00fd":{"d":"98,33v-5,38,-51,51,-87,33r0,-38r37,0v2,10,10,26,17,9r5,-17r-61,-164r-11,-5r0,-21r90,0r0,21r-18,5r27,87r23,-87r-17,-5r0,-21r64,0r0,21r-12,5xm83,-188r-31,-9r34,-49r44,11","w":169},"\u00de":{"d":"117,-115v0,-28,-9,-39,-37,-38r0,78v29,1,38,-10,37,-40xm173,-116v0,51,-37,68,-93,64r0,25r26,6r0,21r-100,0r0,-21r17,-6r0,-165r-17,-6r0,-20r91,0r0,20r-17,6r0,16v56,-3,93,8,93,60","w":182,"k":{"\u201e":40,"\u201a":40,"\u2019":6,"\u201d":6,".":46,"-":-7,",":46}},"\u00fe":{"d":"114,-97v0,-33,-17,-52,-40,-36r0,106v35,9,40,-30,40,-70xm173,-97v0,62,-40,118,-99,93r0,52r23,6r0,21r-96,0r0,-21r17,-6r0,-259r-17,-4r0,-20r73,-8r0,89v13,-10,27,-18,46,-19v37,0,53,35,53,76","w":178},"\u2212":{"d":"45,-128r210,0r0,41r-210,0r0,-41","w":299},"\u00d7":{"d":"76,-213r77,77r77,-77r29,28r-78,78r78,77r-29,29r-77,-78r-77,78r-29,-29r78,-77r-78,-78","w":299},"\u00b9":{"d":"9,-206v29,-2,40,-16,71,-14r0,117r17,4r0,12r-72,0r0,-12r17,-4r0,-90r-33,3r0,-16","w":113},"\u00b2":{"d":"9,-211v38,-21,120,-6,91,46v-13,23,-48,35,-65,54r43,0r5,-12r22,0r0,36r-100,0v0,-50,61,-53,61,-98v0,-14,-11,-19,-26,-18r-7,17r-24,0r0,-25","w":113},"\u00b3":{"d":"105,-124v1,43,-68,47,-100,30r0,-18v22,8,62,11,62,-17v0,-14,-10,-21,-26,-20v1,-5,-2,-13,1,-16v12,0,21,-7,21,-19v0,-13,-8,-20,-22,-19r-8,17r-24,0r0,-24v28,-15,93,-18,93,21v0,19,-16,29,-34,31v22,1,37,12,37,34","w":113},"\u00bc":{"d":"224,-93r-30,39r30,0r0,-39xm224,-15r0,-18r-52,0r0,-21r53,-69r31,0r0,69r14,0r0,21r-14,0r0,18r10,3r0,12r-53,0r0,-12xm215,-187r-134,172r-19,-18r135,-171xm9,-207v27,-1,38,-15,67,-13r0,109r16,4r0,11r-68,0r0,-11r16,-4r0,-84r-31,3r0,-15","w":276},"\u00bd":{"d":"177,-115v36,-21,116,-7,87,43v-12,21,-46,31,-62,50r41,0r5,-11r20,0r0,33r-95,0v0,-47,58,-49,58,-91v0,-12,-11,-19,-25,-17r-6,16r-23,0r0,-23xm215,-187r-134,172r-19,-18r135,-171xm9,-207v27,-1,38,-15,67,-13r0,109r16,4r0,11r-68,0r0,-11r16,-4r0,-84r-31,3r0,-15","w":276},"\u00be":{"d":"224,-93r-29,39r29,0r0,-39xm224,-15r0,-18r-52,0r0,-21r54,-69r30,0r0,69r14,0r0,21r-14,0r0,18r11,3r0,12r-54,0r0,-12xm215,-187r-134,172r-18,-18r134,-171xm101,-130v0,39,-66,44,-96,27r0,-16v20,8,59,10,59,-16v0,-14,-10,-19,-25,-18v1,-5,-2,-12,1,-15v11,0,20,-7,20,-18v-1,-12,-8,-18,-21,-18r-7,16r-23,0r0,-23v28,-12,87,-17,88,21v0,17,-15,26,-32,28v22,2,36,10,36,32","w":276},"\u20a3":{"d":"23,-27r0,-165r-17,-6r0,-20r160,0r0,52r-40,0r-11,-28r-35,0r0,70r28,0r9,-23r32,0r0,71r-32,0r-9,-22r-28,0r0,71r26,6r0,21r-100,0r0,-21xm261,-135v-8,0,-15,2,-19,6r0,102r23,6r0,21r-96,0r0,-21r17,-6r0,-113r-17,-4r0,-21r73,-7r0,23v15,-15,41,-30,65,-19r0,49r-42,0","w":307},"\u011e":{"d":"9,-101v0,-98,87,-145,175,-109r0,44r-39,0r-13,-29v-49,-3,-63,36,-63,85v0,47,13,83,59,81r0,-45r-17,-6r0,-20r89,0r0,20r-18,6r0,65v-81,31,-173,2,-173,-92xm58,-297v21,17,66,17,87,0r14,17v-20,36,-93,39,-114,0","w":203},"\u011f":{"d":"65,-76v0,34,15,57,40,40r0,-107v-35,-9,-40,29,-40,67xm70,48v37,8,37,-28,35,-63v-13,10,-27,19,-46,19v-36,0,-53,-35,-53,-77v0,-69,52,-124,109,-87r45,-12r0,186v3,67,-94,71,-145,48r0,-37r48,0xm44,-243v21,17,66,17,87,0r14,17v-20,36,-93,39,-114,0","w":174},"\u0130":{"d":"97,-21r0,21r-92,0r0,-21r18,-6r0,-165r-18,-6r0,-20r92,0r0,20r-17,6r0,165xm52,-297v14,0,19,8,20,23v0,15,-5,23,-20,23v-15,0,-19,-8,-20,-23v0,-15,6,-23,20,-23","w":102},"\u015e":{"d":"152,-62v4,71,-93,78,-144,52r0,-46r38,0v7,11,5,33,23,33v31,0,36,-38,13,-49v-28,-26,-73,-37,-75,-88v-2,-66,87,-74,138,-50r0,43r-39,0v-7,-10,-4,-29,-23,-29v-27,0,-31,30,-13,43v33,24,79,38,82,91xm58,60v18,-3,30,-29,7,-33r0,-27r23,0r0,13v27,0,30,38,11,52v-9,6,-21,11,-36,13","w":157},"\u015f":{"d":"135,-51v0,60,-79,64,-127,44r0,-40r42,0r13,30v24,4,26,-26,10,-36v-26,-17,-65,-25,-66,-68v-1,-57,76,-59,122,-41r0,40r-39,0v-5,-10,-6,-24,-15,-30v-20,-1,-24,28,-6,34v26,18,66,24,66,67xm49,60v18,-3,30,-29,7,-33r0,-27r23,0r0,13v27,0,30,38,11,52v-9,6,-21,11,-36,13","w":140},"\u0106":{"d":"69,-110v-2,65,42,94,106,78r0,25v-79,32,-166,-5,-166,-97v0,-89,84,-145,166,-107r0,45r-40,0r-12,-29v-42,-2,-53,41,-54,85xm111,-242r-31,-9r34,-49r44,11"},"\u0107":{"d":"63,-85v-4,52,37,69,82,54r0,24v-61,24,-139,11,-139,-69v0,-82,68,-114,139,-87r0,40r-39,0r-12,-29v-27,0,-29,36,-31,67xm84,-188r-31,-9r34,-49r44,11","w":148},"\u010c":{"d":"69,-110v-2,65,42,94,106,78r0,25v-79,32,-166,-5,-166,-97v0,-89,84,-145,166,-107r0,45r-40,0r-12,-29v-42,-2,-53,41,-54,85xm142,-303r26,8r-39,49r-33,0r-38,-49r26,-8r29,28"},"\u010d":{"d":"63,-85v-4,52,37,69,82,54r0,24v-61,24,-139,11,-139,-69v0,-82,68,-114,139,-87r0,40r-39,0r-12,-29v-27,0,-29,36,-31,67xm115,-249r26,8r-39,49r-33,0r-38,-49r26,-8r29,28","w":148},"\u0111":{"d":"65,-79v0,37,14,60,40,42r0,-97v-30,-11,-40,19,-40,55xm6,-77v-2,-59,45,-104,99,-81r0,-22r-50,0r0,-23r50,0r0,-12r-17,-3r0,-18r73,-8r0,41r21,0r0,23r-21,0r0,151r17,4r0,20r-73,8r0,-18v-13,10,-27,19,-46,19v-39,0,-51,-37,-53,-81","w":181},"\u00ad":{"d":"70,-109r0,39r-65,0r0,-39r65,0","w":74},"\u2219":{"d":"38,-84v-20,0,-31,-6,-31,-25v1,-19,11,-25,31,-25v21,0,32,6,32,25v0,18,-11,25,-32,25","w":76}}});/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * Copyright Esselte Corporation 1997.  Portions Copyright (c) Microsoft
 * Corporation 1997.  All rights reserved.
 *
 * Trademark:
 * Rage Italic is a Trademark of Esselte Corporation.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"rage-italic","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"3 7 5 2 4 5 7 7 3 4","ascent":"288","descent":"-72","cap-height":"5","bbox":"-57.3869 -305 357.144 147","underline-thickness":"20.918","underline-position":"-27.7734","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":90},"!":{"d":"143,-216v-27,43,-52,89,-66,145v-12,6,-28,-21,-17,-33r42,-94v9,-5,11,-34,25,-39v4,-1,17,18,16,21xm62,-16v-29,0,-24,-41,-2,-42v19,3,19,33,2,42","w":107},"\"":{"d":"110,-229v27,15,0,53,-12,66v-14,-4,-20,-29,-5,-37v3,-6,8,-28,17,-29xm169,-210v-6,21,-19,31,-23,47v-18,0,-23,-29,-8,-37v4,-6,6,-26,17,-29v3,0,15,15,14,19","w":152},"#":{"d":"27,-20v10,-26,25,-48,37,-72v-5,-6,-26,3,-24,-12v2,-12,18,-6,28,-6v13,0,12,-16,20,-24v-6,-6,-27,4,-26,-12v1,-13,32,-2,36,-9v12,-25,27,-47,37,-74v7,-8,18,-11,21,3v-8,27,-25,49,-38,72v58,15,45,-63,83,-83v20,17,-10,44,-17,58v0,9,-8,14,-10,22v9,3,22,-2,25,9v-1,16,-22,13,-36,12v-3,8,-22,23,1,22v4,0,12,3,13,7v1,24,-39,1,-43,23v-12,20,-21,42,-35,60v0,3,-5,12,-9,11v-23,-6,4,-30,8,-44v3,-12,14,-23,19,-34v-8,-7,-33,-3,-35,4v-10,24,-23,41,-35,63v0,9,-18,16,-20,4xm128,-111v1,-8,10,-16,12,-22v-20,-11,-47,4,-40,22v10,-1,20,-1,28,0"},"$":{"d":"33,-22v-17,-3,-32,-13,-36,-28v15,2,40,14,49,2r47,-97v-29,2,-38,-44,-15,-54v15,-20,59,-15,66,-42v5,-4,10,-27,15,-10v-1,9,-4,16,-13,21v22,9,26,-20,35,-32v22,2,-11,32,3,34v16,3,14,29,5,35v-14,-4,7,-22,-10,-22v-24,0,-19,25,-29,43v44,7,42,84,13,105v-20,15,-43,29,-71,36v-11,-2,-9,29,-21,14v4,-11,-9,-9,-17,-7v-6,1,-6,16,-14,16v-3,-2,-11,-7,-7,-14xm130,-195r-10,24v6,-2,17,3,18,-4v4,-14,17,-24,17,-37v-8,5,-22,0,-25,17xm119,-195v-6,-5,-37,11,-38,23v-1,3,7,4,15,4v15,1,16,-17,23,-27xm111,-146v-19,25,-29,63,-42,94v34,-4,35,-68,56,-93xm100,-62v4,7,12,-8,21,-6v24,-13,48,-29,52,-63v-1,-10,-28,-18,-38,-11v-13,25,-20,56,-35,80"},"%":{"d":"69,9v-55,-34,25,-107,49,-140v11,-24,34,-35,45,-59v10,-8,21,-19,29,-28v-7,-9,-10,10,-22,10v-21,20,-44,40,-68,55v-3,-3,-7,-4,-7,3v-13,10,-38,13,-33,-14v20,-23,45,-49,78,-48v0,2,-1,4,1,5v22,-18,59,-24,83,-37v22,33,-35,52,-51,77v-13,12,-24,23,-35,40v-22,31,-55,60,-62,104v8,14,8,30,-7,32xm113,-193v-13,1,-24,21,-34,29v23,-10,33,-24,54,-35v-4,-4,-20,1,-20,6xm98,-50v12,-22,26,-40,52,-51v3,2,-2,7,-2,10v12,-7,16,7,17,18v-10,22,-27,37,-49,47v-13,0,-15,-13,-18,-24xm114,-40v12,-6,22,-16,27,-30v-10,0,-6,-13,0,-16v-8,-4,-8,17,-16,15v-3,9,-16,20,-11,31","w":177},"&":{"d":"143,-53v-12,14,-31,35,-52,33v-29,13,-66,-3,-68,-31v-3,-39,25,-49,44,-67v10,-9,35,-14,46,-24v-38,-25,15,-66,35,-78v18,-11,63,-33,65,8v1,14,-21,31,-25,15v-3,-10,25,-20,5,-23v-32,7,-52,31,-64,58v25,12,76,-4,85,-29v7,-18,18,-8,18,6v1,6,-11,9,-9,16v9,-4,6,-5,17,-2v16,-9,38,-6,38,14v-18,10,-49,2,-68,9v-16,22,-29,47,-47,67v3,8,-15,24,-3,30v26,3,33,-16,54,-21v7,-6,19,-26,26,-13v-2,20,-21,23,-27,38v-16,4,-53,33,-66,4v0,0,-5,-9,-4,-10xm55,-67v-8,44,42,25,62,13v18,-12,31,-31,40,-53v10,1,-3,-12,10,-15v-1,-6,13,-15,11,-21v-43,6,-74,19,-97,44v-13,5,-19,21,-26,32","w":257},"'":{"d":"110,-229v27,15,0,53,-12,66v-14,-4,-20,-29,-5,-37v3,-6,8,-28,17,-29","w":107},"(":{"d":"78,-44v-17,-59,15,-113,39,-151v26,-19,45,-48,75,-60v3,0,5,2,5,5v1,6,-10,2,-8,9v-45,27,-67,81,-90,130v-3,28,-6,61,-1,84v-1,4,27,30,16,34v-18,-6,-28,-33,-38,-49","w":160},")":{"d":"116,-207v5,-15,-20,-31,-16,-43v71,45,39,188,-11,223v-14,17,-34,25,-51,35v-3,-15,28,-27,33,-43v20,-23,33,-62,45,-95v2,-20,12,-54,0,-77","w":160},"*":{"d":"107,-204v18,-4,-13,-20,-1,-29v9,6,19,21,23,4v-2,-12,14,-23,15,-3v0,2,-8,9,-5,13v6,-3,15,-13,19,-4v-3,8,-16,11,-21,18v1,6,22,24,7,30v-7,2,-10,-12,-16,-12v-2,3,-5,29,-15,16v-7,-8,5,-18,0,-24v-5,-4,-22,19,-27,6v0,-11,15,-9,21,-15","w":139},"+":{"d":"105,-65v-30,-5,-4,-41,-2,-55v-10,4,-49,7,-48,-11v10,-19,37,1,56,-9v10,-16,15,-43,29,-55v32,8,-10,41,0,57v19,-9,64,-1,40,18v-17,13,-56,-14,-59,20v-2,14,-7,28,-16,35"},",":{"d":"27,24v-20,-2,0,-15,0,-23v-14,-13,-3,-34,13,-37v6,2,24,18,12,25v-4,14,-15,27,-25,35","w":88},"-":{"d":"1,-53v-9,-9,4,-16,15,-16v25,0,51,-4,69,2v-3,33,-37,11,-59,18v-9,-3,-15,0,-25,-4","w":87},".":{"d":"18,-18v2,-18,24,-28,30,-6v13,6,-2,28,-11,26v-8,-1,-15,-14,-19,-20","w":88},"\/":{"d":"30,-16v21,-71,69,-114,113,-167v7,-18,28,-25,37,-42v6,-11,28,-29,33,-9v-5,33,-42,43,-57,67v-14,12,-26,22,-35,40v-14,10,-22,31,-35,42v-7,22,-37,43,-23,76v2,14,-5,21,-17,17v-15,-1,-14,-11,-16,-24","w":163},"0":{"d":"193,-121v-21,47,-55,99,-121,100v-29,-9,-52,-50,-29,-82v-3,-14,12,-15,9,-24v0,-6,7,-6,10,-10v-1,0,-4,2,-3,-1v24,-42,56,-69,95,-94v19,5,-3,8,-4,17v50,-18,68,57,42,89xm149,-215v-2,-3,-7,-2,-4,1v2,0,4,0,4,-1xm126,-72v28,-30,59,-64,59,-114v0,-30,-38,-7,-51,1v-2,1,-1,-6,-4,-5v-17,12,-21,21,-33,37v-20,26,-50,79,-41,114v22,5,46,-12,59,-22v2,-6,6,-9,11,-11","w":186},"1":{"d":"62,-22v-5,7,-14,0,-18,-9v-16,-53,25,-92,41,-136v3,-9,14,-17,15,-25v-7,0,-11,-3,-11,-9v10,-12,25,-22,42,-28v31,19,-3,28,-8,48v-27,43,-56,96,-61,159","w":94},"2":{"d":"101,-213v36,-6,93,-14,98,30v-4,26,-37,27,-52,43v-19,6,-34,23,-53,30v-11,14,-34,23,-42,39v-6,5,-12,12,-2,16v33,-5,65,-12,100,-14v20,-1,23,30,12,34v-37,-17,-76,1,-112,4v-10,-1,-35,5,-35,-23v0,-42,40,-54,66,-76v27,-23,65,-35,98,-53v11,-6,2,-14,-7,-15v-31,-3,-49,3,-68,14v-9,-3,-17,8,-17,-13v0,-5,8,-17,14,-16","w":162},"3":{"d":"176,-208v34,25,-12,42,-34,49v-2,-2,-5,0,-6,2v16,7,44,18,36,43v8,36,-40,53,-66,69v-8,-8,-29,17,-40,8v-7,8,-38,15,-48,5v-3,-7,-17,-23,-5,-28v46,1,86,-16,119,-28v5,-9,36,-18,31,-37v-16,-33,-87,17,-96,-29v0,-6,1,-6,6,-6v32,-9,60,-19,87,-33v-15,-5,-28,6,-38,-1v-13,8,-32,0,-50,8v-9,-3,-25,-22,-8,-25v33,2,73,-3,102,3v3,-3,4,0,10,0","w":166},"4":{"d":"190,-124v9,16,-23,14,-32,23v-5,-4,-15,3,-22,0v-8,12,-14,25,-18,41v-15,4,0,80,-31,44v-17,-8,-11,-37,3,-44v-8,-16,24,-31,14,-48v-20,5,-28,-13,-46,-5v-14,2,-44,-15,-24,-26v18,-10,19,-28,38,-35v17,-15,29,-33,49,-44v-1,-8,0,-9,7,-8v7,12,-14,27,-18,39v-7,-5,-1,11,-10,9v-10,16,-26,27,-35,45v11,5,31,11,46,11v9,-4,14,-17,18,-26v11,-10,14,-29,24,-41v9,-7,6,-19,17,-23v-3,-5,3,-23,7,-24v29,16,-6,60,-17,79v-2,0,-3,0,-3,1v1,13,-15,17,-11,31v19,-4,30,-13,44,1","w":170},"5":{"d":"84,-34v-17,19,-46,14,-65,13v-3,0,-24,-24,-16,-29v59,20,91,-22,128,-42v8,-14,34,-53,-2,-55v-15,-1,-29,10,-36,5v-8,7,-25,17,-34,20v-3,-1,-27,-23,-10,-27v1,-5,7,-6,10,-9v10,-20,27,-35,35,-56v7,-7,9,-8,11,0v1,8,6,-2,13,-1v26,-11,57,-12,83,-22v9,-1,5,14,7,22v0,6,-7,9,-12,5r-88,24v-10,-6,-13,9,-22,7v4,8,-9,11,-5,19v17,-6,34,-8,52,-4v25,4,42,48,26,67v1,11,-10,17,-14,25v-6,-5,-8,13,-13,11v-5,4,-13,18,-19,12v-6,5,-19,16,-29,15","w":152},"6":{"d":"78,-26v-36,7,-62,-40,-42,-73v12,-19,22,-29,34,-50v2,-5,12,-3,11,-11v28,-31,56,-61,100,-76v5,3,11,7,11,14v0,12,-21,7,-28,17v-11,1,-20,20,-31,23v-17,9,-24,32,-39,43v-7,-5,-5,9,-11,13v35,-20,108,-29,94,30v0,3,-2,4,-6,5v-22,31,-46,56,-85,67v-2,0,-5,-1,-8,-2xm51,-43v52,-1,78,-40,106,-68v3,-9,5,-15,-6,-12v-12,-7,-27,8,-36,3v-7,8,-15,3,-22,12v-7,-4,-9,11,-16,5v-15,16,-27,27,-33,51v-1,5,4,10,7,9","w":172},"7":{"d":"66,-30v-3,-3,-24,-17,-17,-28v8,-46,59,-84,89,-114v10,-10,34,-22,43,-35v-44,-11,-69,4,-108,7v-20,1,-16,-7,-20,-18v6,-31,53,8,86,-12v27,3,65,-4,62,30v-2,19,-22,18,-28,33v-27,16,-48,38,-67,62v-17,10,-29,41,-39,61v1,4,4,13,-1,14","w":150},"8":{"d":"88,-18v-61,17,-78,-65,-36,-95v16,-20,43,-39,66,-55v-15,-11,-54,-1,-51,-31v13,-18,46,-34,70,-33v19,-17,84,2,52,22v-5,-3,-10,-17,-18,-11v-13,-8,-31,8,-43,5v-6,-1,-14,13,-17,6v-4,9,-20,6,-20,15v21,1,37,25,54,12v11,-9,33,-15,47,-23v13,-3,30,22,13,24v-2,-3,-4,-2,-5,2v-19,3,-34,12,-47,21v26,31,12,90,-14,100v-4,6,-10,16,-17,17v-6,13,-20,13,-34,24xm43,-45v13,18,43,-8,60,-12v23,-18,73,-63,38,-96v-31,22,-67,44,-84,77v-10,8,-11,19,-14,31","w":172},"9":{"d":"63,-134v35,-11,61,-44,89,-64v20,-14,37,-35,58,-48v26,5,7,42,-8,46v-8,25,-30,40,-41,63v-9,13,-18,29,-25,47v-13,13,-25,47,-14,67v-23,14,-41,-15,-28,-40v12,-24,27,-46,37,-70r43,-57v-12,11,-27,19,-35,33v-13,5,-23,22,-36,22v-3,2,-7,17,-16,11v-6,0,-8,17,-17,11v-1,3,-1,3,-3,3v-17,-3,-38,-27,-16,-43v31,-42,69,-76,124,-94v11,0,13,18,2,21v-26,-9,-44,20,-64,31v-3,2,-10,20,-14,11v-9,17,-31,31,-36,50","w":163},":":{"d":"29,-82v2,-18,23,-27,30,-7v13,7,-3,28,-11,27v-8,-1,-15,-14,-19,-20xm17,-15v2,-17,23,-27,30,-7v13,7,-3,28,-11,27v-8,-1,-15,-14,-19,-20","w":88},";":{"d":"47,-62v-18,-5,-24,-35,-3,-40v20,4,26,36,3,40xm23,24v-19,-2,1,-15,1,-23v-14,-13,-3,-34,13,-37v6,2,24,18,12,25v-4,15,-16,27,-26,35","w":88},"<":{"d":"186,-220r0,13r-114,74r114,76r0,34r-149,-99r0,-2"},"=":{"d":"193,-144v-30,6,-76,0,-118,1v-5,0,-7,-4,-7,-12v11,-18,48,-1,79,-9v13,6,44,-12,54,7v0,6,-3,11,-8,13xm168,-97v-30,8,-78,1,-118,2v-6,1,-10,-8,-7,-15v30,-10,81,1,117,-9v11,2,22,15,8,22"},">":{"d":"52,-23r0,-13r114,-74r-114,-76r0,-34r148,99r0,3"},"?":{"d":"85,-69v-11,-14,-28,-40,-5,-55v45,-30,95,-48,148,-70v13,-5,9,-16,-1,-18v-49,-2,-90,2,-120,17v-1,4,-4,14,-12,13v-18,-2,-13,-28,2,-31v46,-11,107,-22,143,-5v19,-2,27,42,5,47v-10,2,-14,15,-26,8v-16,21,-52,15,-67,34v-24,12,-52,12,-59,39v0,14,-3,21,-8,21xm88,-17v-28,-1,-20,-37,1,-41v20,7,14,35,-1,41","w":204},"@":{"d":"221,-94v43,-3,52,-70,27,-98v-27,-31,-101,-18,-125,4v-51,24,-100,122,-34,157v26,14,58,-1,78,-11v8,1,24,-28,31,-5v-18,25,-69,37,-98,30v-66,7,-81,-99,-39,-135v30,-45,75,-71,143,-75v72,-5,105,90,52,133v-12,18,-55,30,-61,2v-2,-8,-1,-15,0,-23v-4,3,-10,3,-11,10v-20,9,-51,57,-77,31v-13,-52,37,-76,77,-93v15,-2,18,5,22,18v4,-8,23,-23,26,-4v-2,19,-16,31,-17,49v0,6,2,10,6,10xm200,-140v-36,-2,-66,19,-76,49v1,11,7,5,15,1v24,-13,44,-30,61,-50","w":262},"A":{"d":"227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39","w":214},"B":{"d":"243,-122v23,37,-26,62,-53,74v-33,15,-62,24,-100,31v-13,-6,-27,6,-35,-8v-5,3,-6,-5,-7,-8v30,-34,90,-62,137,-76v11,-3,15,10,9,17v-6,14,-25,-5,-39,9v-25,6,-66,26,-75,38v0,3,7,4,22,4v57,0,96,-27,128,-59v1,0,3,2,4,0v8,-40,-60,-37,-91,-38v-10,0,-15,-1,-15,-4v4,-31,52,-26,70,-46v23,-9,19,-26,-10,-26v-19,0,-33,0,-44,3v7,34,-27,68,-34,102v-9,7,-7,27,-16,36v-38,-24,7,-65,16,-92v10,-9,2,-27,16,-33v-6,-7,11,-10,2,-14v-29,7,-62,7,-77,24v-1,4,-7,7,-11,8v-20,-17,12,-31,28,-33v18,-2,33,-13,50,-9v31,-13,95,-10,115,10v13,30,-40,46,-55,55v24,7,59,14,65,35","w":253},"C":{"d":"70,-25v27,1,38,-18,56,-27v17,-13,28,-31,48,-41v6,-9,12,-20,26,-23v11,16,-21,34,-30,47v-11,15,-23,16,-31,29v-2,-1,-3,-4,-5,0v-4,15,-31,26,-45,27v1,-1,1,-3,0,-3v-1,15,-15,6,-28,4v-40,-20,-21,-93,2,-115v-2,-10,11,-28,17,-20v1,0,2,-1,2,-2v-3,-1,-5,-4,-6,-7v9,-3,6,-18,16,-18v3,-14,19,-36,31,-31v-1,1,-3,2,-1,3v-1,-14,14,-19,23,-27v4,2,5,1,6,-3v21,-16,64,-19,54,19v-7,27,-20,51,-38,68v-2,19,-22,18,-25,4v-1,-4,10,-18,22,-20v2,-14,17,-17,19,-31v5,-5,18,-34,5,-37v-20,6,-35,14,-45,29v-7,0,-6,12,-15,13v-2,9,-4,12,-13,15v1,1,2,1,2,1v-8,11,-7,24,-21,31v-2,20,-20,38,-24,59v-6,11,-11,30,-7,42v-5,2,3,9,5,14","w":194},"D":{"d":"88,-123v-31,18,-76,-16,-38,-43v48,-62,211,-85,220,12v6,66,-42,87,-83,112r-3,-1v0,6,-6,5,-11,5v-10,8,-24,11,-39,10v2,3,1,5,-4,5v-14,-5,-25,9,-41,3v-13,11,-57,-9,-30,-20v1,0,10,6,9,-1v10,-31,29,-52,37,-74v6,0,0,-8,8,-11v-11,-1,-17,7,-25,3xm245,-135v-7,-14,0,-32,-9,-44v-47,-60,-162,-15,-182,37v0,16,22,9,30,12r0,2v3,-9,36,-3,36,-15v7,-17,17,-25,11,-44v8,-12,26,4,25,17v1,4,-5,14,-7,22v19,2,29,-10,45,-8v9,-6,26,-27,35,-10v-1,13,-31,26,-42,21v-12,4,-27,10,-43,11v-14,31,-35,63,-45,93v12,-3,29,-1,36,-8v35,-3,67,-25,88,-44v11,-10,12,-29,22,-42","w":247},"E":{"d":"131,-35v-12,6,-22,23,-36,19v-22,30,-78,8,-73,-20v-5,-34,21,-57,40,-75v14,-14,33,-20,50,-31v-13,5,-30,7,-31,-11v10,-39,41,-52,66,-75v26,-11,63,-30,71,5v0,18,-17,49,-25,25v0,-5,5,-11,11,-10v5,-8,8,-24,-7,-22v-5,-1,-14,7,-23,7v-24,20,-56,42,-65,73v21,-9,41,-26,66,-26v7,0,10,2,10,5v-8,34,-60,27,-76,53v-5,-4,-6,10,-14,9v0,6,-2,8,-6,6v2,10,-13,6,-9,10v-12,15,-36,44,-20,66v47,2,62,-26,92,-43v24,-14,38,-41,63,-49v-7,37,-42,41,-60,67v-8,5,-14,16,-25,12","w":204},"F":{"d":"221,-224v-17,30,-42,51,-62,77r45,-10v10,0,13,9,12,21v-22,18,-64,-15,-79,23v-2,0,-4,1,-4,2r-64,115v0,13,-5,34,7,24v3,-1,1,6,3,8v-2,3,-1,15,-18,10v-30,-8,-18,-67,2,-76v-2,-1,-4,0,-4,-1v8,-10,10,-25,20,-34v1,-18,22,-38,27,-52v-10,4,-20,2,-26,11v-27,5,-48,20,-62,38v-10,-1,-10,-12,-4,-20v18,-23,59,-29,86,-45v41,-6,51,-54,80,-73v3,-6,15,-14,12,-19v-26,-2,-38,12,-57,14v-18,18,-45,13,-52,40v0,1,-5,7,-7,6v-27,-24,21,-40,43,-51v16,-8,96,-49,102,-8","w":179},"G":{"d":"90,-161v22,-34,59,-68,106,-70v23,9,1,71,-13,45v-3,-7,25,-21,12,-28v-32,8,-50,33,-75,50v-13,19,-23,33,-41,51v0,18,-40,60,-25,85v10,-3,20,-17,31,-19v27,-35,64,-70,86,-112v7,-7,12,-5,17,4v18,31,-20,60,-23,90v16,-12,29,-22,50,-30v-8,38,-63,33,-68,74v-20,39,-37,82,-60,116v-7,10,-27,29,-35,8v-17,-28,10,-58,17,-79v20,-24,39,-50,64,-70v5,-21,20,-39,23,-59v-11,11,-20,21,-30,28v-8,23,-34,39,-49,57v-34,18,-62,-23,-39,-54v7,-4,-5,-19,13,-25v6,-25,24,-52,39,-62xm123,-20v-8,12,-24,18,-29,33v-19,10,-26,46,-34,66v4,3,-1,14,3,16v27,-21,29,-59,50,-83v-3,-13,12,-22,10,-32","w":188},"H":{"d":"64,-110v6,-20,41,-11,44,-32r44,-75v-9,-15,-36,6,-52,9v-13,10,-30,20,-38,35v-8,7,-20,5,-21,-8v4,-17,52,-30,67,-44v23,-10,78,-22,64,22v-7,24,-24,39,-32,62v33,-4,59,-12,91,-16v13,-28,33,-50,37,-85v0,-8,4,-11,11,-11v19,4,11,34,1,46v-8,10,-15,32,-21,47v12,1,29,-3,34,7v-5,26,-30,6,-47,13v-17,31,-30,66,-49,94v1,8,-7,23,3,31v-12,20,-35,3,-31,-19v3,-19,-4,-36,-2,-48v-17,-6,-31,-27,-52,-22v-14,25,-23,55,-39,78v4,9,-7,14,-4,25v-2,11,-10,9,-16,-1v-22,-37,20,-74,33,-103v-2,-11,-18,4,-25,-5xm128,-124v-17,19,0,14,16,18v18,5,35,18,39,37v9,-24,24,-44,34,-67v-20,-1,-36,7,-53,3v-3,6,-14,5,-16,0v-3,7,-14,9,-20,9xm91,-118v-4,0,-5,3,0,3r0,-3","w":240},"I":{"d":"91,-221v-13,19,-44,33,-40,60v-6,5,2,10,3,14v1,6,-7,14,-13,13v-23,-41,32,-94,70,-111v42,-19,75,29,51,69v-10,32,-31,55,-44,84v-11,11,-14,29,-26,40v2,22,-24,37,-9,57v-1,17,-25,7,-29,-1v-15,-28,14,-56,22,-79v4,-10,9,-19,18,-25v2,-24,31,-49,36,-70v4,-3,6,-3,4,-8v19,-20,17,-61,-16,-53v-10,2,-21,9,-27,10","w":135},"J":{"d":"33,95v-48,-50,22,-124,66,-148v13,-12,15,-40,27,-53v-1,-7,5,-24,12,-19v-6,-11,3,-28,10,-35v-5,-3,-1,-16,7,-16v-5,-11,5,-8,2,-21v23,-27,-9,-55,-32,-28v-32,23,-53,57,-59,103v6,10,0,22,7,33v5,9,24,19,16,34v-39,-21,-44,-114,-16,-150v20,-25,48,-41,82,-42v44,-1,31,67,15,89v-2,32,-23,56,-29,81v16,-10,29,-24,47,-32v9,3,0,16,-6,20v-21,15,-55,20,-59,52v-26,45,-47,102,-90,132xm57,1v-9,19,-30,40,-22,66v26,-27,44,-76,63,-107v-20,7,-26,29,-41,41","w":172},"K":{"d":"66,-136v-7,-24,44,-29,60,-45v8,-19,20,-33,12,-59v0,-3,3,-9,6,-9v30,-2,30,33,15,45v4,4,-4,10,0,10v20,-8,35,-21,57,-27v21,-12,44,-20,66,-30v21,6,4,27,-7,31v-42,17,-90,29,-128,50v-12,17,-18,38,-28,55v30,21,71,34,98,56v19,7,31,9,38,27v-3,9,-23,21,-28,6v-20,-5,-30,-21,-49,-31v-19,-9,-48,-39,-66,-47v0,15,-6,4,-8,24v-9,20,-26,42,-21,67v-1,6,-7,12,-13,7v-34,-29,14,-77,22,-110v0,-1,-8,-8,-26,-20xm85,-146v-11,8,6,14,13,18v4,1,9,-23,14,-29v-10,0,-24,10,-27,11","w":252},"L":{"d":"62,-13v-2,21,-66,23,-70,-3v16,-23,62,-13,73,-41v18,-27,35,-53,47,-85v-13,8,-30,21,-45,21v-3,10,-15,4,-16,-3v2,-10,15,-22,25,-12v20,-5,45,-19,52,-36v1,-12,9,-6,10,-18v0,-5,2,-9,7,-12v0,-12,10,-7,7,-17v9,-4,11,-18,19,-19v-1,-11,19,-21,27,-11v13,18,-3,37,-11,50v-12,12,-22,23,-38,32r-32,73v-6,7,-13,25,-18,38v35,1,70,-3,98,7v19,-7,40,22,21,33v-34,-18,-79,-38,-126,-24v-13,8,-15,27,-30,27xm195,-243v-14,7,-24,30,-27,43v12,-12,27,-21,27,-43xm2,-15v13,10,41,4,44,-14v-19,3,-34,7,-44,14","w":228},"M":{"d":"13,-117v-12,-25,41,-30,55,-45v21,-5,39,-23,68,-22v12,0,22,22,8,32v-11,25,-32,46,-41,74v10,-12,22,-18,31,-33v14,-9,22,-26,36,-33v0,-12,16,-8,17,-16v12,-15,45,-42,62,-19v7,21,-11,36,-14,55v14,-8,24,-30,40,-38v16,-17,30,-35,58,-38v26,-3,18,45,5,54v-10,23,-27,39,-37,63r-3,0v2,11,-17,35,-3,50v2,18,-18,11,-24,6v-18,-13,-10,-65,9,-72v-5,-8,8,-4,4,-11v11,-16,19,-37,33,-50v-5,-5,6,-12,6,-18v-21,10,-44,29,-60,47v-25,17,-43,57,-72,72v-21,-8,-2,-40,4,-52v1,0,7,-7,15,-21v2,-10,9,-15,12,-24v-26,-2,-50,36,-74,46v-9,17,-27,25,-34,42v-11,-1,-4,15,-17,18v-12,15,-27,55,-51,35v-4,-31,24,-44,24,-62v12,-15,18,-44,36,-52v-1,-2,-2,2,-5,1v5,-14,17,-27,17,-42v-20,3,-28,15,-48,17v-12,18,-30,15,-37,28v-2,6,-13,15,-20,8xm230,-119v2,2,3,-2,4,-3","w":331},"N":{"d":"120,-97v22,-25,49,-45,70,-70v2,-3,8,-8,12,-5v11,-13,34,-29,58,-28v7,1,22,9,19,19v-15,51,-56,82,-64,141v15,10,25,-21,43,-23v6,-11,12,-18,19,-11v-2,7,-5,25,-17,23v-11,15,-28,23,-50,26v-18,-3,-37,-38,-13,-55v6,-37,44,-67,49,-102v-12,8,-29,12,-38,23v-11,0,-19,20,-33,22v-19,30,-51,49,-72,78v-18,9,-24,38,-45,44v-22,-9,-7,-45,8,-54v10,-29,32,-48,47,-70v0,-4,2,-5,5,-5v4,-6,1,-11,10,-13v-3,-9,16,-12,5,-20v-39,8,-72,20,-92,45v-5,7,-20,8,-19,-7v23,-27,66,-36,99,-52v4,3,19,-10,24,-1v21,-9,30,20,15,35v-13,22,-28,37,-40,60","w":268},"O":{"d":"40,-70v-3,-17,8,-24,9,-38v11,-19,17,-41,33,-54v5,-20,27,-30,36,-47v13,-1,37,-46,50,-20v35,-25,87,-6,72,42v-20,62,-56,101,-92,143v-18,9,-20,23,-42,25v-24,29,-89,-3,-66,-51xm109,-174v-13,43,-59,85,-52,140r-2,3v17,26,56,-8,68,-24v9,3,10,-16,21,-17v25,-42,59,-74,74,-126v-3,-10,6,-31,-23,-28v-36,13,-65,39,-61,80v0,9,-3,13,-10,13v-17,1,-7,-25,-6,-33v14,-17,24,-41,42,-56v-25,8,-33,34,-51,48","w":199},"P":{"d":"266,-218v26,18,7,79,-17,86v-22,19,-60,26,-89,23v-4,8,-29,-2,-39,1v-19,26,-35,50,-41,88v0,4,-5,9,-10,8v-32,-8,-6,-60,10,-66v-2,-24,16,-36,21,-53v1,0,3,3,3,1v-2,-19,25,-36,25,-59v0,-13,20,-21,22,-2v15,21,-12,30,-15,50v-1,6,-11,14,-6,19v51,-2,98,-9,112,-43v14,-14,3,-41,-6,-52v-24,-5,-58,-12,-80,-4v-44,2,-78,18,-103,39v-3,13,-17,32,-22,11v1,-24,28,-25,41,-37v21,-9,60,-33,87,-26v29,-14,99,-11,107,16","w":221},"Q":{"d":"88,-3v-69,4,-48,-114,-14,-150v22,-38,42,-75,84,-89v16,11,26,-10,46,-10v14,0,31,12,28,24v11,8,-5,29,1,40v-22,59,-55,120,-98,160v3,9,13,12,15,22v11,2,37,4,24,20v-27,10,-42,-16,-48,-35v-9,8,-25,13,-38,18xm155,-222v-41,13,-49,62,-72,92v-12,35,-30,79,-12,112v19,-2,31,-14,43,-24v-5,-16,-18,-7,-28,-14v4,-20,31,-4,35,6v28,-32,58,-67,74,-110v2,-3,6,-9,9,-12v-1,-17,19,-46,4,-62v-28,-4,-43,22,-61,34v-6,12,-17,25,-10,42v0,2,-5,14,-10,12v-26,-16,11,-48,18,-67","w":197},"R":{"d":"259,-200v-40,-17,-125,-34,-176,2v-2,10,-26,14,-25,-2v27,-32,74,-24,119,-34v22,4,61,-4,73,7v37,-1,46,58,11,67v-7,1,-15,7,-21,5v-29,15,-64,11,-85,22v-25,-3,-31,26,-42,43v7,8,17,16,27,22v-1,6,15,6,16,15v18,5,29,25,45,33v28,23,27,22,45,41v1,20,-29,18,-31,3v-26,-16,-44,-40,-65,-61v-8,-6,-6,-10,-16,-13r1,-3v-15,-4,-24,-36,-33,-11v-7,11,-13,25,-14,43v-8,15,-24,-2,-26,-14v2,-23,20,-40,27,-59v-4,-8,-17,-14,-17,-22v4,-11,27,-19,39,-22v9,-12,15,-30,22,-44v8,0,-9,-24,10,-21v26,6,10,36,3,53v12,-5,38,-14,52,-11v3,-5,12,-7,19,-6r-1,-1v14,-10,51,-8,43,-32xm101,-120v-5,3,-15,3,-17,8v7,7,14,13,17,-8","w":242},"S":{"d":"235,-64v-64,22,-104,74,-184,78v-3,-2,-9,-4,-8,-10v32,-28,88,-33,119,-62v7,-13,29,-29,3,-41v-30,-14,-65,-19,-97,-30v-23,-8,-15,-41,1,-51v14,-18,31,-32,56,-39v13,-14,43,-15,57,-23v7,4,23,-5,31,2v2,-10,16,0,25,0v4,-6,15,12,21,6v13,11,29,48,6,59v-13,-1,-12,-14,-2,-18v-17,-40,-93,-21,-121,-6v-3,-2,-11,-6,-9,3v-28,14,-49,23,-62,49v4,9,21,6,25,14v23,-4,50,2,66,10v5,-5,24,0,21,9v13,-9,31,10,26,30v-2,10,-11,17,-12,23r49,-23v8,7,-6,18,-11,20xm68,0v16,-5,37,-7,47,-18v-19,3,-34,10,-47,18","w":227},"T":{"d":"190,-231v-44,4,-85,17,-124,38v-4,8,-18,23,-20,3v53,-58,154,-57,233,-63v12,-2,17,21,6,24v-14,11,-24,-12,-44,-5v-15,0,-45,-5,-35,12r-42,50v-7,6,-10,19,-17,30v-17,27,-36,73,-46,111v3,9,4,24,-10,22v-34,-6,-14,-56,-5,-74v14,-30,29,-54,46,-80v20,-20,36,-49,58,-68","w":177},"U":{"d":"186,-112v7,-26,31,-62,47,-89v9,-9,29,-16,37,-3v1,19,-18,24,-19,42v-14,40,-34,72,-31,113v17,-9,30,-24,46,-38v4,0,6,2,6,6v-9,30,-38,40,-59,49v-32,-15,-13,-58,-9,-89v-2,13,-8,4,-6,16v-5,3,-9,22,-16,18v-15,29,-33,61,-62,77v-39,7,-53,-47,-37,-83v-1,-6,12,-3,6,-9v13,-37,34,-66,53,-97v9,5,-3,-15,8,-7v5,-14,-1,-28,-11,-18v-26,5,-50,19,-53,42v-9,13,-26,5,-20,-13v20,-27,55,-41,92,-48v14,-3,29,18,17,39v-30,54,-68,103,-73,173v13,13,21,-19,37,-17v4,-19,18,-27,27,-41v4,0,4,0,3,-4v3,-3,13,-28,17,-19","w":253},"V":{"d":"109,-134v-4,-15,20,-39,17,-55v-21,9,-43,22,-50,45v-4,12,-23,9,-21,-4v21,-29,57,-51,95,-64v34,23,-25,72,-32,105v-6,26,-25,51,-21,79v20,-20,32,-44,49,-66v2,0,4,4,5,0v-6,-18,17,-39,30,-49v0,0,1,2,1,3v5,-8,-11,-5,4,-16v13,-9,13,-22,27,-26v-8,-10,20,-23,27,-37v5,2,9,0,6,-5v14,-11,43,-26,47,0v4,28,-29,18,-39,37v-25,23,-50,45,-67,75v-11,2,-15,23,-24,29v-12,16,-23,34,-34,50v-11,15,-35,36,-47,4v-9,-25,4,-44,4,-62v8,-12,10,-35,23,-43","w":201},"W":{"d":"131,-191v-19,4,-36,11,-50,22v-22,4,-30,36,-51,44v-11,-3,-17,-9,-6,-21v36,-24,67,-53,119,-61v47,19,-10,67,-16,95v-8,19,-18,39,-22,56v36,-22,59,-65,88,-95v-3,-14,16,-17,15,-32v8,-8,11,-25,29,-19v15,14,-10,35,-9,50v-16,22,-24,59,-24,89v21,16,38,-26,50,-43v16,-24,28,-53,34,-83v2,0,3,0,3,-1v-11,-18,-1,-75,25,-47v5,22,-4,40,-6,60v-9,11,-12,42,-26,50v-6,25,-27,42,-38,62v-8,15,-50,45,-65,14v-11,-13,0,-44,0,-57v-8,8,-12,26,-23,28v-1,4,-1,10,-6,7v-2,9,-11,17,-21,23v-5,15,-22,13,-30,28v-18,18,-38,-8,-30,-30v10,-28,19,-49,36,-75v-4,-18,36,-48,24,-64","w":284},"X":{"d":"82,-207v-25,-3,-38,53,-57,19v7,-28,60,-31,81,-46v40,-14,95,-2,66,50v2,4,0,8,1,11v20,-18,30,-34,55,-49v3,3,3,2,2,-2v8,-14,25,-29,40,-14v7,17,-19,22,-30,25v-10,17,-35,19,-41,37v-7,11,-17,14,-21,23v-21,12,-14,59,-24,81v6,14,0,32,17,31v20,-9,33,-28,52,-39v7,0,1,6,4,9v0,5,-11,17,-17,17v-11,17,-27,18,-40,32v-30,9,-53,-21,-41,-52v-1,-8,7,-14,0,-29v-15,31,-41,45,-54,75v-5,11,-32,34,-36,5v3,-21,24,-32,37,-44v11,-11,20,-28,33,-35v10,-17,36,-29,30,-53v0,-6,2,-5,6,-5v-4,-26,20,-84,-33,-62v-10,4,-22,7,-30,15","w":215},"Y":{"d":"130,-32v-13,35,-63,14,-61,-21v1,-17,3,-38,14,-46v4,-34,34,-67,48,-95v7,0,-1,-10,9,-10v2,-9,-1,-25,-12,-14v-18,1,-48,17,-49,41v-7,9,-27,6,-20,-10v22,-24,56,-41,97,-48v30,24,-16,60,-25,87v-12,36,-50,77,-32,120v54,-34,81,-93,112,-150v4,-8,9,-22,22,-26v8,-2,20,16,20,22v-25,29,-31,71,-48,107v18,-6,33,-29,53,-35v4,33,-58,40,-66,72v-9,34,-16,52,-28,81v-10,2,-4,20,-13,29v-7,6,-11,31,-23,28v-1,7,-11,10,-18,12v-12,-9,-26,-36,-14,-52v-4,-13,13,-28,17,-43v9,-8,15,-24,27,-23v-4,-10,5,-11,8,-14v-5,-7,10,-4,9,-12v22,-15,17,-39,29,-59v-2,-5,1,-4,2,-11v-21,20,-30,47,-54,65v1,3,2,6,-4,5xm114,92v18,-17,18,-41,31,-62r15,-49v-20,25,-34,38,-42,72v-5,10,-8,30,-4,39","w":239},"Z":{"d":"243,-205v-13,21,-40,28,-55,46v-38,22,-72,63,-92,99v15,-6,26,-16,44,-20v13,-11,23,-16,44,-20v12,6,5,20,-2,28r49,-27v12,24,-38,26,-51,42v-12,-1,-8,20,-20,21v-4,21,-20,25,-25,47v-14,13,-17,38,-33,49v-9,22,-22,42,-44,48v-28,-8,-8,-58,2,-73r2,1v-1,-12,1,-18,11,-24v-3,-8,14,-9,9,-14v17,-24,44,-40,69,-56v1,-3,9,-17,1,-10v-36,9,-65,34,-102,38v-14,2,-18,-6,-4,-23v44,-51,93,-98,152,-134v-56,9,-84,-1,-118,-14v-27,-3,-46,30,-18,38v23,7,57,7,73,-5v1,-8,20,-11,22,-3v-20,29,-75,21,-107,13v-34,-17,-15,-77,19,-70v36,-3,58,37,100,31v28,3,50,-6,71,-14v2,0,3,2,3,6xm135,-33v-43,23,-67,67,-80,119v1,6,4,-1,7,-1v24,-35,53,-76,73,-118","w":203},"[":{"d":"58,-76v19,-39,29,-86,58,-115v1,-9,13,-26,21,-34v10,-24,37,-31,64,-31v13,0,18,28,1,29v-14,1,-17,-15,-32,-6v-7,12,-17,25,-26,36v-4,19,-19,20,-23,39v-11,20,-25,49,-32,73v-7,5,-4,23,-13,30v-1,15,-11,31,-2,42v14,1,25,-5,33,-11v4,0,5,3,5,9v0,27,-64,21,-63,-5v-4,-16,0,-47,13,-54v-2,-1,-4,-1,-4,-2","w":161},"\\":{"d":"85,-208v0,-16,5,-34,18,-36v20,8,18,41,30,57v-4,8,8,18,4,31v1,-1,4,-2,3,2v12,55,37,151,-28,163v-15,-7,-6,-14,8,-29v18,-19,5,-45,13,-65v-8,-4,-2,-23,-11,-29v2,-30,-15,-72,-37,-94","w":163},"]":{"d":"52,-22v17,-17,22,-36,38,-52v0,-8,10,-10,11,-21v11,-17,24,-52,32,-73v9,-23,25,-53,15,-72v-14,-1,-26,4,-33,11v-11,-6,-1,-28,13,-25v45,-14,61,47,32,75v2,0,3,2,3,3v-18,44,-33,92,-63,123v0,14,-13,18,-17,30r-3,0v-6,22,-35,23,-59,26v-9,1,-14,-10,-12,-22v12,-14,28,7,43,1r0,-4","w":161},"^":{"d":"189,-103r-13,0r-74,-114r-77,114r-34,0r100,-149r2,0"},"_":{"d":"9,32r162,0r0,14r-162,0r0,-14"},"`":{"d":"114,-133v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40"},"a":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46","w":154},"b":{"d":"140,-230v-8,38,-27,65,-41,96v-7,1,-6,13,-14,16v2,12,-10,6,-10,17v-10,14,-14,32,-29,19v-5,19,-7,39,0,56v5,-3,28,-21,8,-23v-9,-13,12,-34,28,-27v13,-9,14,14,27,2v11,-5,21,-18,33,-17v0,17,-17,22,-23,32v-7,-6,-6,10,-15,5v-4,3,-9,10,-18,7v-11,16,-20,33,-46,34v-17,1,-27,-27,-18,-37v-8,-59,31,-97,51,-140v18,-18,29,-46,55,-57v4,0,12,13,12,17xm50,-99v30,-33,67,-72,74,-126v-28,38,-58,75,-74,126","w":111},"c":{"d":"130,-82v11,29,-39,40,-55,59v-15,0,-27,19,-40,8v-38,4,-33,-52,-8,-67v11,-20,41,-37,64,-31v8,-7,14,8,15,14v-7,20,-35,-3,-43,11v-19,11,-35,25,-39,52v3,12,24,2,33,1","w":121},"d":{"d":"62,-37v-7,16,-50,42,-54,6v-4,-46,32,-76,68,-90v10,-4,21,4,24,15v17,-23,21,-59,43,-77v5,-18,35,-66,49,-35v-10,32,-23,60,-40,83v-5,6,-8,19,-18,22v-1,12,-23,47,-11,69v22,-10,36,-29,53,-42v13,20,-24,38,-36,52v-21,10,-46,1,-43,-26v-1,-8,-3,-12,-5,-12v-8,16,-24,26,-30,35xm174,-199v-14,18,-26,40,-37,62v14,-20,35,-34,37,-62xm31,-31v29,-14,48,-40,65,-66v-38,-2,-56,29,-70,56v1,4,0,10,5,10","w":162},"e":{"d":"36,-33v34,-2,50,-23,74,-38v1,1,1,3,3,3v-2,-8,14,-19,19,-16v1,22,-18,27,-27,40v-5,-4,-9,12,-17,9v-16,15,-57,31,-70,8v-10,-6,-17,-25,-5,-32v8,-33,34,-62,78,-54v5,0,10,5,10,10v-4,18,-26,19,-33,31v-9,-1,-14,15,-22,12v-2,11,-21,6,-19,22v0,3,3,5,9,5xm80,-99v-16,-5,-41,13,-41,29v17,-5,27,-20,41,-29","w":116},"f":{"d":"13,80v-18,14,-51,66,-60,20r42,-113v13,-13,-14,-17,10,-23r15,-34v-11,1,-21,30,-32,19v1,-28,45,-48,56,-75r40,-97v2,-11,20,-11,19,3v2,15,2,36,-8,42v0,33,-39,61,-46,96v-5,8,-11,21,-14,35v8,-4,14,-11,23,-11v5,-17,36,-20,46,-34v11,6,-5,20,-9,24v-12,2,-42,31,-60,39v-4,10,2,4,10,17v17,26,0,53,-14,66v2,13,-13,16,-18,26xm-21,98v26,-19,46,-54,57,-90v-1,-7,-7,-25,-18,-21v-5,11,-6,34,-18,41v0,25,-19,43,-21,70","w":78},"g":{"d":"117,-91v-6,28,-18,46,-27,71v4,2,13,9,13,14v-3,19,-25,2,-29,12v-3,9,-14,16,-15,25v-8,1,-8,18,-18,17v2,7,-8,11,-12,14v-7,12,-27,28,-44,33v-32,-32,15,-92,51,-103v14,-10,38,-8,42,-29v5,-10,9,-23,10,-31v-16,6,-16,16,-29,19v-3,10,-16,9,-20,18v-17,6,-43,31,-47,-5v-3,1,-10,4,-10,-1v24,-41,62,-65,113,-74v6,3,6,17,15,5v6,-1,7,13,7,15xm10,-33v28,-7,62,-32,73,-53v-28,7,-48,26,-68,42v-2,0,-5,10,-5,11xm47,1v-27,15,-67,33,-60,71v31,-13,56,-42,68,-70v-3,1,-6,0,-8,-1","w":130},"h":{"d":"38,-60v21,-20,47,-58,83,-46v18,15,-12,43,-1,61v15,-11,28,-26,46,-35v6,14,-13,37,-27,37v-5,4,-4,11,-13,11v-7,18,-35,11,-32,-12v2,-14,6,-30,4,-43v-21,-1,-40,29,-58,38v-10,4,-28,52,-40,23v2,-16,9,-24,13,-38v-8,5,-11,10,-13,1v6,-26,33,-38,43,-61v17,-40,34,-81,63,-109v33,27,-15,84,-32,110v-18,8,-31,44,-36,63","w":158},"i":{"d":"80,-180v9,-6,21,6,16,18v-1,12,-20,10,-21,-1v-1,-7,-2,-17,5,-17xm45,-83v-13,-4,-29,13,-42,23v-15,-16,16,-26,25,-37v12,1,21,-26,36,-10v17,20,-11,39,-8,61v1,1,-4,3,-2,4v23,-4,36,-22,53,-32v4,27,-35,50,-63,59v-25,-11,-8,-53,1,-68","w":108},"j":{"d":"73,-167v-12,1,-21,-25,-3,-25v7,0,15,8,15,14v-3,4,-3,12,-12,11xm3,16v24,-28,28,-68,38,-106v-15,7,-25,21,-36,31v-24,-24,35,-41,48,-61v39,12,-8,78,-9,111v-1,4,-6,8,-4,11v22,-5,68,-20,71,10v0,7,-5,11,-14,10v-8,-16,-35,-16,-53,-13v-24,12,-21,49,-37,69v-11,26,-27,62,-51,69v-30,-23,-3,-83,17,-99v3,-10,22,-29,30,-32xm-42,122v7,-3,9,-10,17,-11v-5,-12,13,-23,12,-36r18,-49v-24,22,-56,56,-47,96","w":88},"k":{"d":"54,-63v-21,9,-33,57,-55,39v-1,-21,13,-30,13,-45v-5,9,-16,7,-19,3v33,-34,57,-77,76,-124v8,-5,13,-38,31,-27v13,61,-43,86,-59,135v-7,5,-5,13,-9,24v9,-10,20,-19,28,-30v7,-1,14,-20,24,-17v6,-16,40,-17,38,8v-2,22,-24,28,-38,39v5,11,17,26,29,14v7,-3,13,-13,21,-14v8,-4,18,-21,26,-16v-2,27,-28,27,-39,45v-23,20,-52,12,-58,-20v-12,-5,0,-15,6,-18v8,-8,26,-8,22,-25v-13,4,-18,14,-29,18v0,8,-9,4,-8,11","w":155},"l":{"d":"71,-175v9,-23,27,-42,46,-58v22,-4,27,23,13,33v-17,49,-48,88,-76,126v-1,13,-18,-7,-16,12v-3,18,1,39,19,24v7,4,4,-10,14,-9v4,1,0,-9,6,-8r29,-29v13,23,-20,37,-28,52v-11,4,-26,23,-42,13v-14,2,-20,-19,-19,-33v1,-27,12,-66,28,-83v0,-16,18,-26,23,-40r3,0xm78,-159v-8,22,-23,39,-31,61v10,0,11,-16,21,-17v1,-17,21,-22,24,-37v6,-4,6,-13,14,-15v1,-11,17,-27,12,-39v-15,9,-26,43,-40,47","w":95},"m":{"d":"56,-58v-7,15,-24,24,-30,40v-9,7,-16,-1,-16,-19v4,-16,28,-27,24,-44v-15,1,-25,33,-35,15v3,-19,26,-32,49,-37v5,-1,8,4,8,17v-1,2,-1,4,0,5v19,-11,46,-48,62,-18r1,36v22,-13,44,-54,65,-24v1,14,-3,32,2,42v9,0,10,-10,19,-9v1,-5,17,-22,21,-13v5,12,-10,15,-14,25v-15,5,-32,36,-49,12v-8,-13,0,-33,-5,-46v-20,15,-33,39,-52,53v-10,-5,-16,-31,-9,-44v-5,-6,4,-19,-3,-23v-16,7,-25,22,-35,33","w":226},"n":{"d":"34,-28v-6,12,-26,18,-26,0v0,-31,21,-27,27,-52r-35,23v-14,-22,30,-33,40,-48v16,0,25,20,17,35v20,-6,69,-58,79,-14v4,19,-10,37,1,48v10,1,12,-14,21,-12v4,-12,19,-16,28,-25v11,21,-24,32,-32,48v-15,16,-49,8,-44,-16v-6,-11,4,-28,-5,-38v-20,7,-35,23,-50,34v-3,3,-5,9,-9,11v-7,-7,-4,8,-12,6","w":186},"o":{"d":"100,-97v25,17,1,68,-18,71v-31,34,-90,4,-63,-43v-4,-4,-8,8,-12,4v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v20,-14,55,-39,83,-21v5,0,1,12,0,12xm38,-24v28,5,45,-21,52,-46v-8,-8,-5,-22,0,-27v-24,10,-46,19,-52,46v-6,6,-2,18,0,27","w":130},"p":{"d":"60,-12v-9,-3,-17,-22,-20,-1r-44,100v-6,7,-21,18,-26,2v-21,-63,52,-91,62,-151v1,-7,9,-19,4,-24v-8,-1,-1,12,-12,8v-4,6,-25,31,-29,12v6,-11,17,-18,29,-24r-1,-2v14,0,21,-36,39,-22v11,9,0,25,0,39v17,-17,42,-38,66,-40v33,7,8,52,-1,63v21,-10,36,-27,56,-37v8,15,-15,24,-23,34v-30,17,-57,39,-100,43xm50,-38v4,-1,25,-16,31,-3v19,-12,42,-28,39,-54v-31,4,-46,27,-64,41v2,6,-7,8,-6,16xm-23,73v16,-21,23,-46,33,-74v-18,22,-31,37,-33,74","w":161},"q":{"d":"4,-37v8,-49,46,-73,94,-77v7,-1,12,12,14,23v6,-14,36,-11,25,10v-7,13,-19,22,-24,37v-2,0,-10,5,-4,7v27,-7,44,-22,63,-36v11,22,-26,33,-40,45v-8,0,-16,8,-24,10v1,8,8,19,-2,23v3,30,-24,51,-29,80v-11,11,-21,41,-43,28v-8,-53,29,-89,42,-133v-7,-7,-1,-10,8,-14v0,-6,12,-20,9,-23v-3,4,-8,6,-12,5v-17,17,-35,29,-61,32v-8,-1,-19,-5,-16,-17xm21,-37v25,7,50,-24,73,-33v0,-5,10,-7,11,-13v-33,-9,-73,11,-84,46xm87,-4v-1,7,-5,27,-15,30v-1,24,-23,47,-18,72v3,0,7,-8,14,-20v12,-20,25,-54,19,-82","w":173},"r":{"d":"57,-96v-20,12,-37,28,-59,38v-10,-9,8,-24,16,-25v18,-13,33,-33,55,-39v15,3,21,30,16,44v-9,7,-25,29,-30,44v28,5,47,-20,66,-32v-1,-5,18,-15,11,-2v0,25,-38,33,-42,45v-6,5,-21,13,-34,12v-37,-15,-6,-61,5,-80v0,-3,-1,-5,-4,-5","w":129},"s":{"d":"41,-124v30,-9,30,48,25,71v20,-10,31,-25,51,-36v11,17,-13,21,-21,34v-27,16,-50,36,-81,48v-23,1,-36,-26,-12,-31v30,8,51,-26,42,-58v-16,15,-33,32,-52,45v-8,1,-8,-13,-2,-17r1,0v19,-10,42,-30,49,-56","w":96},"t":{"d":"18,-93v12,-19,43,-37,45,-63v-33,11,-73,12,-99,30v-15,-12,-5,-30,23,-31r90,-23v9,-12,19,-29,31,-35v8,2,8,18,6,28v15,1,29,-6,44,-8v11,6,-6,26,-15,30v-18,-12,-51,6,-55,26v-23,14,-30,51,-31,81v4,9,20,36,2,44v-26,-8,-20,-66,-13,-84r-39,35v-2,5,-17,20,-19,9v1,-18,18,-28,30,-39","w":99},"u":{"d":"31,-95v8,-22,48,-6,33,12v-4,15,-21,28,-19,45v11,-5,17,-15,28,-19v19,-16,37,-43,58,-50v8,3,16,8,19,17v-4,17,-15,31,-15,49v4,-1,5,-6,12,-6v7,-10,8,-11,18,-15v-2,-4,14,-15,15,-15v6,4,8,15,0,19v-19,12,-34,30,-55,40v-20,-9,-17,-34,-11,-58v-8,5,-12,18,-23,18v-5,12,-16,13,-22,24v-8,5,-15,13,-23,17v-31,1,-28,-45,-15,-60v-9,3,-19,18,-28,11v1,-10,5,-21,14,-18v2,-5,8,-11,14,-11","w":176},"v":{"d":"5,-64v-18,-13,12,-22,19,-33v9,-2,18,-10,27,-12v21,7,6,47,-3,59v5,1,1,20,9,5v26,-19,39,-57,74,-67v11,0,19,23,6,25v-48,9,-63,53,-95,78v-29,-9,-17,-52,-7,-73v-9,-8,-20,13,-30,18","w":130},"w":{"d":"0,-70v1,-11,12,-7,17,-18v14,-3,24,-22,35,-26v14,2,11,21,6,31v-5,11,-23,29,-20,43v14,-4,20,-18,32,-24v9,-14,18,-34,32,-43v6,1,16,12,15,22v-7,15,-18,34,-11,47v24,-9,53,-29,41,-61v0,-9,6,-12,15,-11v33,31,-16,94,-55,94v-20,0,-24,-28,-22,-47v-15,19,-30,42,-54,51v-30,-11,-4,-52,0,-66v-7,1,-26,26,-31,8","w":192},"x":{"d":"59,-100r-58,37v3,-31,42,-46,70,-58v21,-2,12,17,14,30v18,-8,32,-23,49,-31v4,0,5,3,5,9v0,2,-1,4,-2,4v-21,6,-36,22,-55,31v0,14,-14,36,-4,46r32,-20v2,1,2,3,2,3v3,-10,27,-33,30,-18v-4,19,-23,25,-38,33v-7,9,-21,22,-36,25v-22,-2,-18,-28,-16,-47v-6,5,-16,11,-20,18v-2,-1,-5,-4,-4,2v-4,9,-15,24,-23,22v-24,-35,65,-37,54,-86","w":137},"y":{"d":"52,-101v0,21,-23,35,-20,52v37,-14,61,-43,98,-57v24,2,5,32,6,46v-9,14,-15,35,-21,52v21,-5,58,-14,57,17v-12,20,-13,-18,-30,-11v-36,-7,-42,29,-55,52v5,9,-14,12,-8,20v-9,17,-23,33,-30,48v-9,0,2,11,-11,9v1,9,-10,15,-20,17v-49,-26,10,-84,26,-109v15,-10,25,-24,42,-32v13,-24,21,-48,29,-76v-10,2,-22,17,-29,11v-17,16,-42,30,-64,35v-20,-4,-10,-29,-8,-43v-6,7,-15,20,-21,3v18,-13,30,-33,53,-41v4,0,6,2,6,7xm10,125v32,-18,50,-69,65,-102v-15,9,-25,27,-38,35v2,9,-7,12,-12,20v-3,19,-16,30,-15,47","w":164},"z":{"d":"53,10v16,-9,20,-39,24,-56r-60,16v-17,-13,25,-39,10,-54v-7,12,-20,20,-29,29v-16,-14,16,-27,22,-40v13,-10,39,-37,46,-7v-6,17,-18,35,-21,51r51,-18v22,6,-2,26,-2,41r-16,37v10,3,21,26,-1,26v-21,-11,-21,25,-37,32v-19,22,-39,45,-69,56v-33,-45,28,-105,82,-113xm44,32v-31,-1,-55,28,-69,44v1,7,-6,19,-2,24v35,-12,50,-39,71,-68","w":118},"{":{"d":"65,-148v43,-7,47,-53,72,-77v7,-18,39,-29,64,-31v13,0,18,28,1,29v-12,1,-9,-9,-22,-9v-19,8,-17,20,-31,31v-6,19,-23,28,-28,47v-10,6,-7,11,-24,17v13,22,-5,37,-8,56v-7,5,-4,23,-13,30v-1,15,-11,31,-2,42v14,1,25,-5,33,-11v4,0,5,3,5,9v0,27,-64,21,-63,-5v-4,-16,0,-47,13,-54v-2,-1,-4,-1,-4,-2v8,-10,6,-25,15,-34v-2,-10,12,-38,-8,-38","w":161},"|":{"d":"81,-240r18,0r0,300r-18,0r0,-300"},"}":{"d":"42,-17v23,-10,25,-31,40,-47v1,-11,15,-14,19,-31v10,-9,12,-13,24,-17v-11,-18,2,-40,8,-56v9,-23,25,-53,15,-72v-14,-1,-26,4,-33,11v-11,-6,-1,-28,13,-25v45,-14,61,47,32,75v2,0,3,2,3,3v-8,22,-19,41,-16,68v0,2,4,3,10,3v-26,2,-21,16,-37,23v-24,39,-39,82,-99,85v-9,0,-14,-10,-12,-22v13,-11,19,-1,33,2","w":161},"~":{"d":"62,-88v31,-74,106,12,147,-39r5,3v-10,17,-27,32,-49,34v-8,1,-55,-16,-65,-15v-18,2,-21,6,-33,21","w":240},"\u00c4":{"d":"227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39xm163,-275v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm196,-273v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":214},"\u00c5":{"d":"185,-257v-18,-11,-3,-49,22,-42v25,7,9,47,-13,46xm194,-267v7,0,19,-16,9,-20v-9,2,-16,14,-9,20xm227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39","w":214},"\u00c7":{"d":"59,-12v-36,-22,-19,-92,4,-115v-2,-10,11,-28,17,-20v1,0,2,-1,2,-2v-3,-1,-5,-4,-6,-7v8,-3,6,-18,16,-18v4,-15,16,-33,31,-31v-1,1,-3,2,-1,3v-1,-12,16,-28,28,-25v8,-20,58,-27,56,4v-3,36,-28,59,-39,82v-6,15,-22,13,-25,0v-1,-4,10,-18,22,-20v8,-21,31,-33,30,-64v-25,-12,-48,25,-66,38v-6,17,-19,20,-23,38v-13,21,-24,43,-33,68v-5,12,-11,30,-7,42v-5,2,3,9,5,14v52,-6,66,-47,104,-68v6,-10,13,-19,26,-23v12,18,-24,33,-30,49v-13,12,-22,15,-31,27v-2,-1,-3,-4,-5,0v-14,28,-56,25,-69,48v10,22,-33,47,-53,28v1,-18,43,-6,29,-34v3,-4,13,-12,18,-14","w":194},"\u00c9":{"d":"131,-35v-12,6,-22,23,-36,19v-22,30,-78,8,-73,-20v-5,-34,21,-57,40,-75v14,-14,33,-20,50,-31v-13,5,-30,7,-31,-11v10,-39,41,-52,66,-75v26,-11,63,-30,71,5v0,18,-17,49,-25,25v0,-5,5,-11,11,-10v5,-8,8,-24,-7,-22v-5,-1,-14,7,-23,7v-24,20,-56,42,-65,73v21,-9,41,-26,66,-26v7,0,10,2,10,5v-8,34,-60,27,-76,53v-5,-4,-6,10,-14,9v0,6,-2,8,-6,6v2,10,-13,6,-9,10v-12,15,-36,44,-20,66v47,2,62,-26,92,-43v24,-14,38,-41,63,-49v-7,37,-42,41,-60,67v-8,5,-14,16,-25,12xm179,-257v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":204},"\u00d1":{"d":"120,-97v22,-25,49,-45,70,-70v2,-3,8,-8,12,-5v11,-13,34,-29,58,-28v7,1,22,9,19,19v-15,51,-56,82,-64,141v15,10,25,-21,43,-23v6,-11,12,-18,19,-11v-2,7,-5,25,-17,23v-11,15,-28,23,-50,26v-18,-3,-37,-38,-13,-55v6,-37,44,-67,49,-102v-12,8,-29,12,-38,23v-11,0,-19,20,-33,22v-19,30,-51,49,-72,78v-18,9,-24,38,-45,44v-22,-9,-7,-45,8,-54v10,-29,32,-48,47,-70v0,-4,2,-5,5,-5v4,-6,1,-11,10,-13v-3,-9,16,-12,5,-20v-39,8,-72,20,-92,45v-5,7,-20,8,-19,-7v23,-27,66,-36,99,-52v4,3,19,-10,24,-1v21,-9,30,20,15,35v-13,22,-28,37,-40,60xm209,-250v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17","w":268},"\u00d6":{"d":"40,-70v-3,-17,8,-24,9,-38v11,-19,17,-41,33,-54v5,-20,27,-30,36,-47v13,-1,37,-46,50,-20v35,-25,87,-6,72,42v-20,62,-56,101,-92,143v-18,9,-20,23,-42,25v-24,29,-89,-3,-66,-51xm109,-174v-13,43,-59,85,-52,140r-2,3v17,26,56,-8,68,-24v9,3,10,-16,21,-17v25,-42,59,-74,74,-126v-3,-10,6,-31,-23,-28v-36,13,-65,39,-61,80v0,9,-3,13,-10,13v-17,1,-7,-25,-6,-33v14,-17,24,-41,42,-56v-25,8,-33,34,-51,48xm180,-275v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm213,-273v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":199},"\u00dc":{"d":"186,-112v7,-26,31,-62,47,-89v9,-9,29,-16,37,-3v1,19,-18,24,-19,42v-14,40,-34,72,-31,113v17,-9,30,-24,46,-38v4,0,6,2,6,6v-9,30,-38,40,-59,49v-32,-15,-13,-58,-9,-89v-2,13,-8,4,-6,16v-5,3,-9,22,-16,18v-15,29,-33,61,-62,77v-39,7,-53,-47,-37,-83v-1,-6,12,-3,6,-9v13,-37,34,-66,53,-97v9,5,-3,-15,8,-7v5,-14,-1,-28,-11,-18v-26,5,-50,19,-53,42v-9,13,-26,5,-20,-13v20,-27,55,-41,92,-48v14,-3,29,18,17,39v-30,54,-68,103,-73,173v13,13,21,-19,37,-17v4,-19,18,-27,27,-41v4,0,4,0,3,-4v3,-3,13,-28,17,-19xm206,-275v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm239,-273v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":253},"\u00e1":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46xm80,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":154},"\u00e0":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46xm99,-133v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":154},"\u00e2":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46xm64,-130v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":154},"\u00e4":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46xm73,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm106,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":154},"\u00e3":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46xm73,-130v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17","w":154},"\u00e5":{"d":"116,-46v18,-7,24,-23,39,-32v12,24,-23,44,-43,53v-20,-1,-18,-21,-17,-37v-10,4,-11,18,-25,18v-10,19,-57,50,-66,16v0,-51,45,-76,88,-85v9,-2,10,11,14,18v1,-6,26,-24,26,-3v0,17,-22,31,-16,52xm23,-40v-1,19,15,2,22,1v20,-13,41,-28,55,-47v-41,-4,-61,20,-77,46xm83,-132v-19,-11,-1,-49,22,-43v27,6,7,49,-13,47xm101,-162v-9,0,-17,16,-8,20v7,-1,18,-16,8,-20","w":154},"\u00e7":{"d":"130,-82v11,30,-39,40,-55,59v-7,-4,-14,12,-19,5v-12,11,-35,13,-29,34v-9,13,-26,29,-48,22v-5,0,-7,-3,-7,-6v1,-16,43,-7,29,-31v-1,-3,10,-9,19,-19v-25,-14,-9,-54,7,-64v11,-20,41,-37,64,-31v8,-7,14,8,15,14v-7,20,-35,-3,-43,11v-20,11,-35,25,-39,52v3,12,24,2,33,1","w":121},"\u00e9":{"d":"36,-33v34,-2,50,-23,74,-38v1,1,1,3,3,3v-2,-8,14,-19,19,-16v1,22,-18,27,-27,40v-5,-4,-9,12,-17,9v-16,15,-57,31,-70,8v-10,-6,-17,-25,-5,-32v8,-33,34,-62,78,-54v5,0,10,5,10,10v-4,18,-26,19,-33,31v-9,-1,-14,15,-22,12v-2,11,-21,6,-19,22v0,3,3,5,9,5xm80,-99v-16,-5,-41,13,-41,29v17,-5,27,-20,41,-29xm61,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":116},"\u00e8":{"d":"36,-33v34,-2,50,-23,74,-38v1,1,1,3,3,3v-2,-8,14,-19,19,-16v1,22,-18,27,-27,40v-5,-4,-9,12,-17,9v-16,15,-57,31,-70,8v-10,-6,-17,-25,-5,-32v8,-33,34,-62,78,-54v5,0,10,5,10,10v-4,18,-26,19,-33,31v-9,-1,-14,15,-22,12v-2,11,-21,6,-19,22v0,3,3,5,9,5xm80,-99v-16,-5,-41,13,-41,29v17,-5,27,-20,41,-29xm81,-133v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":116},"\u00ea":{"d":"36,-33v34,-2,50,-23,74,-38v1,1,1,3,3,3v-2,-8,14,-19,19,-16v1,22,-18,27,-27,40v-5,-4,-9,12,-17,9v-16,15,-57,31,-70,8v-10,-6,-17,-25,-5,-32v8,-33,34,-62,78,-54v5,0,10,5,10,10v-4,18,-26,19,-33,31v-9,-1,-14,15,-22,12v-2,11,-21,6,-19,22v0,3,3,5,9,5xm80,-99v-16,-5,-41,13,-41,29v17,-5,27,-20,41,-29xm45,-130v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":116},"\u00eb":{"d":"36,-33v34,-2,50,-23,74,-38v1,1,1,3,3,3v-2,-8,14,-19,19,-16v1,22,-18,27,-27,40v-5,-4,-9,12,-17,9v-16,15,-57,31,-70,8v-10,-6,-17,-25,-5,-32v8,-33,34,-62,78,-54v5,0,10,5,10,10v-4,18,-26,19,-33,31v-9,-1,-14,15,-22,12v-2,11,-21,6,-19,22v0,3,3,5,9,5xm80,-99v-16,-5,-41,13,-41,29v17,-5,27,-20,41,-29xm54,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm87,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":116},"\u00ed":{"d":"45,-83v-13,-4,-29,13,-42,23v-15,-16,16,-26,25,-37v12,1,21,-26,36,-10v17,20,-11,39,-8,61v1,1,-4,3,-2,4v23,-4,36,-22,53,-32v4,27,-35,50,-63,59v-25,-11,-8,-53,1,-68xm57,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":108},"\u00ec":{"d":"45,-83v-13,-4,-29,13,-42,23v-15,-16,16,-26,25,-37v12,1,21,-26,36,-10v17,20,-11,39,-8,61v1,1,-4,3,-2,4v23,-4,36,-22,53,-32v4,27,-35,50,-63,59v-25,-11,-8,-53,1,-68xm77,-133v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":108},"\u00ee":{"d":"45,-83v-13,-4,-29,13,-42,23v-15,-16,16,-26,25,-37v12,1,21,-26,36,-10v17,20,-11,39,-8,61v1,1,-4,3,-2,4v23,-4,36,-22,53,-32v4,27,-35,50,-63,59v-25,-11,-8,-53,1,-68xm27,-130v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":108},"\u00ef":{"d":"45,-83v-13,-4,-29,13,-42,23v-15,-16,16,-26,25,-37v12,1,21,-26,36,-10v17,20,-11,39,-8,61v1,1,-4,3,-2,4v23,-4,36,-22,53,-32v4,27,-35,50,-63,59v-25,-11,-8,-53,1,-68xm40,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm73,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":108},"\u00f1":{"d":"34,-28v-6,12,-26,18,-26,0v0,-31,21,-27,27,-52r-35,23v-14,-22,30,-33,40,-48v16,0,25,20,17,35v20,-6,69,-58,79,-14v4,19,-10,37,1,48v10,1,12,-14,21,-12v4,-12,19,-16,28,-25v11,21,-24,32,-32,48v-15,16,-49,8,-44,-16v-6,-11,4,-28,-5,-38v-20,7,-35,23,-50,34v-3,3,-5,9,-9,11v-7,-7,-4,8,-12,6xm75,-130v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17","w":186},"\u00f3":{"d":"100,-97v25,17,1,68,-18,71v-31,34,-90,4,-63,-43v-4,-4,-8,8,-12,4v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v20,-14,55,-39,83,-21v5,0,1,12,0,12xm38,-24v28,5,45,-21,52,-46v-8,-8,-5,-22,0,-27v-24,10,-46,19,-52,46v-6,6,-2,18,0,27xm68,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":130},"\u00f2":{"d":"100,-97v25,17,1,68,-18,71v-31,34,-90,4,-63,-43v-4,-4,-8,8,-12,4v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v20,-14,55,-39,83,-21v5,0,1,12,0,12xm38,-24v28,5,45,-21,52,-46v-8,-8,-5,-22,0,-27v-24,10,-46,19,-52,46v-6,6,-2,18,0,27xm88,-133v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":130},"\u00f4":{"d":"100,-97v25,17,1,68,-18,71v-31,34,-90,4,-63,-43v-4,-4,-8,8,-12,4v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v20,-14,55,-39,83,-21v5,0,1,12,0,12xm38,-24v28,5,45,-21,52,-46v-8,-8,-5,-22,0,-27v-24,10,-46,19,-52,46v-6,6,-2,18,0,27xm53,-130v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":130},"\u00f6":{"d":"100,-97v25,17,1,68,-18,71v-31,34,-90,4,-63,-43v-4,-4,-8,8,-12,4v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v20,-14,55,-39,83,-21v5,0,1,12,0,12xm38,-24v28,5,45,-21,52,-46v-8,-8,-5,-22,0,-27v-24,10,-46,19,-52,46v-6,6,-2,18,0,27xm61,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm94,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":130},"\u00f5":{"d":"100,-97v25,17,1,68,-18,71v-31,34,-90,4,-63,-43v-4,-4,-8,8,-12,4v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v20,-14,55,-39,83,-21v5,0,1,12,0,12xm38,-24v28,5,45,-21,52,-46v-8,-8,-5,-22,0,-27v-24,10,-46,19,-52,46v-6,6,-2,18,0,27xm61,-130v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17","w":130},"\u00fa":{"d":"31,-95v8,-22,48,-6,33,12v-4,15,-21,28,-19,45v11,-5,17,-15,28,-19v19,-16,37,-43,58,-50v8,3,16,8,19,17v-4,17,-15,31,-15,49v4,-1,5,-6,12,-6v7,-10,8,-11,18,-15v-2,-4,14,-15,15,-15v6,4,8,15,0,19v-19,12,-34,30,-55,40v-20,-9,-17,-34,-11,-58v-8,5,-12,18,-23,18v-5,12,-16,13,-22,24v-8,5,-15,13,-23,17v-31,1,-28,-45,-15,-60v-9,3,-19,18,-28,11v1,-10,5,-21,14,-18v2,-5,8,-11,14,-11xm91,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":176},"\u00f9":{"d":"31,-95v8,-22,48,-6,33,12v-4,15,-21,28,-19,45v11,-5,17,-15,28,-19v19,-16,37,-43,58,-50v8,3,16,8,19,17v-4,17,-15,31,-15,49v4,-1,5,-6,12,-6v7,-10,8,-11,18,-15v-2,-4,14,-15,15,-15v6,4,8,15,0,19v-19,12,-34,30,-55,40v-20,-9,-17,-34,-11,-58v-8,5,-12,18,-23,18v-5,12,-16,13,-22,24v-8,5,-15,13,-23,17v-31,1,-28,-45,-15,-60v-9,3,-19,18,-28,11v1,-10,5,-21,14,-18v2,-5,8,-11,14,-11xm111,-133v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":176},"\u00fb":{"d":"31,-95v8,-22,48,-6,33,12v-4,15,-21,28,-19,45v11,-5,17,-15,28,-19v19,-16,37,-43,58,-50v8,3,16,8,19,17v-4,17,-15,31,-15,49v4,-1,5,-6,12,-6v7,-10,8,-11,18,-15v-2,-4,14,-15,15,-15v6,4,8,15,0,19v-19,12,-34,30,-55,40v-20,-9,-17,-34,-11,-58v-8,5,-12,18,-23,18v-5,12,-16,13,-22,24v-8,5,-15,13,-23,17v-31,1,-28,-45,-15,-60v-9,3,-19,18,-28,11v1,-10,5,-21,14,-18v2,-5,8,-11,14,-11xm76,-130v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":176},"\u00fc":{"d":"31,-95v8,-22,48,-6,33,12v-4,15,-21,28,-19,45v11,-5,17,-15,28,-19v19,-16,37,-43,58,-50v8,3,16,8,19,17v-4,17,-15,31,-15,49v4,-1,5,-6,12,-6v7,-10,8,-11,18,-15v-2,-4,14,-15,15,-15v6,4,8,15,0,19v-19,12,-34,30,-55,40v-20,-9,-17,-34,-11,-58v-8,5,-12,18,-23,18v-5,12,-16,13,-22,24v-8,5,-15,13,-23,17v-31,1,-28,-45,-15,-60v-9,3,-19,18,-28,11v1,-10,5,-21,14,-18v2,-5,8,-11,14,-11xm84,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm117,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":176},"\u2020":{"d":"135,-154v-10,38,-27,70,-38,108v-12,10,-3,42,-25,45v-25,-18,7,-52,8,-76r35,-87v-15,2,-47,8,-48,-11v8,-18,35,0,56,-9v6,-16,15,-31,22,-49v3,-10,22,-6,20,6v-2,17,-20,26,-13,45v12,-5,42,-10,47,4v1,32,-52,2,-64,24"},"\u00b0":{"d":"98,-166v-39,-4,-23,-64,5,-66v19,-7,43,14,32,36v-2,14,-20,31,-37,30xm118,-214v-13,-12,-23,12,-27,23v13,19,26,-4,29,-19","w":113},"\u00a2":{"d":"81,-144v6,-24,54,-27,60,-55v3,1,9,0,8,5v2,7,-8,15,-5,19v9,-6,16,6,16,14v-3,10,-18,12,-27,5v-6,18,-17,38,-20,55v27,-9,50,-30,71,-43v2,0,3,1,3,3v-3,18,-11,23,-25,33v-1,-1,-2,-2,-3,-2v-8,14,-21,14,-31,25v-6,-4,-14,12,-18,5v-11,7,-22,45,-32,20v14,-21,-19,-20,-19,-44v4,-15,9,-33,22,-40xm117,-149v-19,5,-38,31,-40,51v-1,6,9,7,14,5"},"\u00a3":{"d":"106,-69v-9,19,-36,51,-55,46v-16,15,-52,18,-67,4v-13,2,-15,-17,-23,-24v24,-34,71,-44,125,-48v2,-5,9,-11,8,-16v-8,3,-21,13,-25,4v10,-15,40,-9,42,-36v-12,2,-22,17,-39,19v-16,2,-11,-21,-1,-22v5,1,9,2,13,5v58,-14,57,-92,105,-115v3,-1,15,10,13,20v-13,25,-22,45,-45,61v-8,9,-12,30,-20,40v17,-5,36,-7,52,-13v7,4,21,25,6,29v-27,-2,-75,-6,-74,24v36,6,77,7,86,43v-2,22,-13,7,-14,-1v-22,-9,-61,-27,-87,-20xm168,-202v15,0,25,-23,27,-37v-12,7,-20,23,-27,37xm-24,-32v29,26,83,-9,96,-36v-22,-4,-38,5,-56,4v-11,6,-34,21,-40,32"},"\u00a7":{"d":"2,-19v51,12,110,-11,142,-35v17,-12,26,-27,30,-52v-24,-30,-131,18,-105,-57v7,-8,24,-12,15,-28v13,-41,68,-58,121,-54v12,4,15,29,3,35v-14,-3,10,-24,-11,-21v-38,5,-76,18,-96,42v24,9,127,-12,88,53v-24,15,12,47,-8,71v-23,49,-83,72,-147,72v-13,0,-36,-15,-32,-26xm81,-143v17,7,49,-4,76,3v8,-2,37,-19,17,-23v-35,3,-84,-9,-93,20"},"\u2022":{"d":"121,-172v25,0,49,24,49,50v0,27,-23,50,-49,50v-27,0,-51,-23,-51,-50v0,-27,24,-50,51,-50","w":240},"\u00b6":{"d":"203,-213v7,-15,35,-12,25,10v-6,7,-9,17,-17,21v-25,44,-46,99,-62,155v-12,14,-15,43,-24,70v-15,1,-15,-13,-13,-27v13,-81,50,-136,75,-203v-4,-15,-15,-26,-20,-6v-7,27,-22,38,-30,65v-16,57,-45,106,-57,169v-27,6,-15,-27,-11,-46v11,-50,34,-97,50,-138v-25,5,-89,10,-68,-36v8,-18,14,-21,27,-31v21,-25,60,-30,98,-32v12,5,26,8,27,29xm148,-210v-34,-4,-53,14,-74,29v-1,8,-17,20,-6,25v14,-5,28,6,42,-6v24,1,40,-24,38,-48","w":178},"\u00df":{"d":"118,-197v-21,-2,-31,31,-45,42v-11,40,-43,71,-68,98v-17,-15,10,-31,14,-38r70,-107v15,-14,41,-33,50,-3v-1,22,-15,32,-26,47v39,7,32,58,16,80v0,2,-1,4,-5,4v-9,27,-37,38,-57,52v-19,3,-51,15,-53,-15v2,-10,14,-8,19,-3v47,-12,76,-43,90,-89v-8,-22,-31,3,-43,7v-24,-25,44,-40,38,-75","w":143},"\u00ae":{"d":"109,-7v-60,8,-91,-76,-62,-126v-2,-9,8,-18,12,-22v27,-50,85,-79,153,-83v100,-5,114,128,47,173v-29,32,-81,53,-129,63v-8,0,-15,-3,-21,-5xm195,-40v38,-27,77,-55,91,-101v2,-92,-123,-97,-170,-46v-53,25,-86,136,-19,165v27,12,61,0,82,-10v-20,-16,-34,-35,-53,-51v-10,9,-12,29,-17,42v-41,-4,14,-46,-2,-62v-4,-3,-7,-5,-7,-8v13,-13,39,-17,40,-40v8,-6,-3,-27,14,-19v14,7,2,25,-2,35r70,-20v20,-7,3,-20,-7,-22v-33,-6,-76,-7,-96,0v33,-34,164,-18,121,32v-28,5,-59,21,-85,20v-11,5,-33,27,-18,39xm121,-115v-5,1,-18,5,-6,10v3,-1,6,-6,6,-10","w":288},"\u00a9":{"d":"109,-7v-60,8,-90,-76,-62,-127v-2,-8,8,-17,12,-21v28,-51,84,-79,153,-83v71,-4,116,80,73,142v-36,51,-90,80,-155,94v-8,0,-15,-3,-21,-5xm260,-95v54,-45,5,-151,-76,-123v-39,3,-61,25,-86,43v-41,30,-61,131,-1,153v37,14,85,-5,103,-24v26,-9,41,-33,60,-49xm147,-46v-33,13,-47,-40,-27,-68v8,-11,10,-29,22,-28v-10,-9,11,-15,8,-24v8,-4,12,-21,21,-15v2,-17,35,-27,49,-28v24,22,-9,55,-19,74v-1,2,-3,7,-8,6v-13,-1,-10,-15,1,-19v12,-9,26,-27,26,-46v-30,-8,-51,38,-68,58v-5,27,-40,65,-14,81v40,-12,56,-45,87,-64v3,20,-30,38,-43,53v-8,2,-22,22,-35,19v1,-1,1,-1,0,-2r0,3","w":288},"\u2122":{"d":"93,-112v-9,-50,35,-87,60,-119v-28,1,-61,12,-76,28v-14,-24,37,-29,60,-38r72,-6v6,0,9,2,9,8v-5,20,-37,-5,-51,7v3,12,-16,14,-17,25v-18,22,-38,55,-39,89v1,12,-12,13,-18,6xm181,-110v-6,-32,32,-57,39,-89v-21,6,-41,19,-57,32v-4,0,-7,-2,-7,-6v15,-21,47,-28,76,-36v23,17,-13,36,-16,56v26,-18,40,-54,77,-58v15,8,0,26,1,33v18,-14,30,-40,57,-39v26,32,-40,58,-23,93v0,17,-15,5,-21,1v-12,-33,27,-54,31,-80v-21,19,-43,35,-61,57v0,8,-19,13,-20,2v4,-19,15,-31,23,-46v-21,5,-44,30,-58,45v-10,11,-25,45,-41,35","w":314},"\u00b4":{"d":"93,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5"},"\u00a8":{"d":"86,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm119,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0"},"\u2260":{"d":"127,-115v16,-4,64,-6,41,18v-19,12,-56,-11,-60,19v-7,10,-10,30,-25,25v-10,-4,-4,-18,1,-22v1,-2,5,-8,10,-19v-18,-4,-56,10,-51,-16v14,-9,38,0,59,-5v0,0,13,-17,13,-28v-13,-1,-50,9,-47,-12v4,-23,61,13,65,-24v6,-13,5,-18,17,-29v28,0,7,35,1,46v18,-8,68,-4,42,18v-17,5,-39,2,-55,1"},"\u00c6":{"d":"228,-16v-43,40,-92,-9,-73,-68v1,-9,7,-20,5,-28v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-14,6,-29,8,-44v31,-60,71,-112,137,-137v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-22,1,-27,15,-44,23v-12,10,-21,23,-34,32v-2,15,-28,37,-30,51v-17,26,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,19,-23,22,-39v9,-6,11,-28,26,-33v28,5,1,41,1,60v-3,3,-11,10,-5,18v16,-13,35,-22,53,-33v-13,6,-33,7,-31,-11v6,-39,41,-53,66,-75v7,3,10,-11,17,-5v29,-29,75,7,43,40v0,4,-1,5,-5,5v-5,1,-11,-6,-10,-10v5,-10,27,-21,10,-32v-47,8,-78,44,-93,80v21,-9,43,-26,65,-26v7,0,10,2,10,5v-3,29,-49,25,-64,45v-8,-1,-8,13,-14,6v-3,5,-5,10,-11,11v1,8,-4,6,-7,7v3,3,-5,6,-7,8v-2,-2,-3,-2,-2,1v-11,18,-35,45,-19,66v49,4,63,-29,97,-44v16,-16,37,-39,57,-48v-3,35,-39,37,-53,62v-10,6,-20,22,-31,17v-2,14,-20,18,-31,26v-1,0,-2,-1,-4,-2","w":336},"\u00d8":{"d":"83,-162v4,-21,27,-30,35,-47v11,0,25,-30,45,-29v1,0,3,4,5,9v11,-11,44,-5,50,-24v7,-5,15,-24,23,-12v1,10,-27,26,-8,34v22,29,-1,78,-18,99v-7,25,-27,42,-42,60v-16,19,-38,49,-67,53v-13,14,-39,11,-52,6v-9,8,-26,35,-32,12v12,-16,23,-30,14,-60v8,-28,14,-59,31,-78v1,-9,6,-19,16,-23xm110,-171v-20,37,-50,74,-53,125r110,-143v9,-9,25,-25,27,-37v-10,1,-29,20,-32,4v-28,5,-32,35,-53,48v0,1,1,2,1,3xm60,-24v25,10,49,-16,63,-31v22,-9,33,-43,52,-57v13,-33,57,-70,38,-111v-27,26,-44,70,-74,93v-21,40,-56,68,-79,106","w":199},"\u221e":{"d":"192,-60v-28,0,-51,-24,-62,-45v-18,27,-25,41,-56,43v-31,2,-53,-26,-53,-57v0,-35,26,-61,56,-61v22,0,42,15,60,45v19,-29,26,-43,57,-45v32,-2,56,28,56,58v0,35,-28,62,-58,62xm241,-120v-1,-53,-81,-53,-99,-9v20,32,40,48,62,48v22,0,38,-18,37,-39xm30,-120v0,34,39,47,69,34v8,-4,17,-13,26,-27v-18,-26,-28,-43,-60,-46v-21,-1,-35,18,-35,39","w":240},"\u00b1":{"d":"74,-156v44,17,51,-27,69,-48v3,1,16,4,13,12v0,16,-18,25,-11,37v17,-2,41,-9,47,6v1,36,-61,-9,-66,32v-1,14,-7,29,-19,29v-17,-6,-3,-38,1,-47v-19,9,-72,-7,-34,-21xm45,-78v35,7,98,-14,123,5v-18,33,-79,9,-125,15v-6,1,-10,-8,-7,-16v1,-2,4,-3,9,-4"},"\u2264":{"d":"176,-242r0,13r-116,75r116,78r0,32r-149,-99r0,-2xm27,-33r149,0r0,11r-149,0r0,-11"},"\u2265":{"d":"47,-44r0,-13r116,-75r-116,-78r0,-32r149,100r0,2xm47,-33r149,0r0,11r-149,0r0,-11"},"\u00a5":{"d":"132,-83v10,0,22,37,-2,26v-33,-5,-54,16,-64,35r55,-14v6,5,22,25,6,29v-25,-2,-73,-6,-79,16v-1,1,-4,7,-8,19v1,16,13,45,-12,40v-31,-7,-10,-52,1,-67v-12,-1,-21,15,-28,4v5,-16,44,-7,45,-32v7,-4,13,-18,17,-23v-19,0,-34,8,-48,10v-4,-14,7,-6,27,-18r17,-6v-9,-26,3,-46,4,-64v9,-11,9,-34,23,-42v-9,-4,8,-14,5,-20v1,-9,13,-21,11,-30v3,-10,48,-31,34,-1v-18,38,-41,73,-55,115v-4,9,-9,26,-8,37v29,-9,31,-56,55,-61v-3,-18,17,-40,30,-49v0,3,3,2,3,0v-4,-4,-8,-4,2,-13v12,-10,6,-9,18,-19v-5,-7,15,-3,6,-9v5,-13,37,-37,48,-12r0,6v-27,23,-53,46,-71,78v-21,16,-36,50,-53,71v9,-1,12,-7,21,-6","w":146},"\u00b5":{"d":"157,-61v5,23,-22,36,-39,42v-8,-9,-23,-20,-12,-36v-1,-9,4,-12,4,-21v-9,4,-13,18,-24,18v-3,7,-7,13,-16,14v0,4,-3,11,-10,10v-1,8,-17,15,-20,17v-15,1,-11,-3,-20,-13v-14,13,11,42,-5,51v-34,-2,-12,-53,0,-64v-3,-13,8,-22,12,-33v-1,-18,26,-47,35,-21v0,5,4,15,-4,14v-3,19,-20,24,-18,45v11,-2,18,-17,28,-19v20,-17,32,-40,59,-50v33,9,3,42,3,66v9,-4,18,-15,27,-20","w":172},"\u2202":{"d":"155,-131v-19,-56,-43,-84,-90,-109r4,-7v66,25,108,91,111,165v2,47,-33,87,-79,87v-43,0,-77,-39,-77,-82v0,-71,93,-115,131,-54xm156,-80v0,-35,-19,-73,-54,-72v-71,2,-72,149,-1,149v34,0,55,-37,55,-77"},"\u2211":{"d":"167,69v47,0,64,-16,74,-54r7,0r-12,69r-186,0r87,-162r-87,-162r183,0r0,56r-7,0v1,-66,-83,-43,-144,-47r75,142r-85,158r95,0","w":240},"\u220f":{"d":"66,-205v2,-28,-6,-29,-33,-28r0,-7r223,0r0,7v-25,0,-31,0,-31,28r0,254v-3,28,7,28,31,28r0,7r-89,0r0,-7v25,0,32,1,32,-28r0,-254v7,-46,-48,-28,-83,-28v-23,0,-24,3,-24,28r0,254v-2,29,7,28,32,28r0,7r-89,0r0,-7v27,0,31,0,31,-28r0,-254","w":240},"\u03c0":{"d":"84,-150v-32,0,-42,9,-59,32r-3,-5v17,-18,22,-46,58,-45r147,1r0,17r-56,0v-15,28,-13,63,-13,104v0,29,10,39,32,29r0,6r-39,16v-32,-27,-17,-128,8,-155r-63,0r-1,45v-4,23,3,108,-20,111v-19,-3,-7,-32,-3,-44v9,-27,10,-78,12,-112"},"\u222b":{"d":"154,-236v-24,3,-29,39,-29,70r0,159v0,59,-8,97,-56,102v-23,3,-41,-16,-41,-36v0,-22,34,-25,35,-3v-3,9,-8,27,7,26v22,-2,29,-36,29,-65r0,-164v0,-59,7,-98,56,-103v24,-2,40,16,41,36v0,10,-7,19,-18,19v-31,0,0,-39,-24,-41"},"\u00aa":{"d":"101,-157v2,5,4,-8,12,-5v17,5,-8,24,-3,36v7,-1,18,-25,26,-15v-4,17,-16,25,-31,30v-12,-1,-10,-9,-11,-21v-12,9,-24,26,-43,29v-33,-20,10,-57,37,-62v6,-1,12,2,13,8xm96,-147v-21,-4,-47,18,-39,30v15,-8,28,-17,39,-30","w":94},"\u00ba":{"d":"35,-132v3,-21,48,-48,67,-26v8,10,2,45,-13,46v-19,21,-56,5,-42,-25v-2,1,-9,10,-12,5xm89,-152v-17,4,-36,23,-24,40v22,-3,26,-24,24,-40","w":79},"\u2126":{"d":"181,-14v37,-3,78,7,84,-27r6,0r-13,41r-99,0r0,-14v51,-24,76,-62,76,-114v1,-55,-34,-106,-90,-106v-56,0,-91,53,-91,106v1,55,32,97,76,114r0,14r-98,0r-14,-41r7,0v5,32,52,28,84,25v-49,-17,-82,-57,-84,-112v-2,-62,54,-116,120,-116v66,0,120,53,120,115v0,58,-40,93,-84,115","w":240},"\u00e6":{"d":"185,-68v-1,-9,15,-20,20,-17v1,22,-18,28,-26,40v-27,22,-90,50,-99,-5v-19,10,-50,54,-74,27v-6,-19,-1,-34,9,-43v13,-23,42,-38,68,-48v11,-1,21,7,22,18v12,-12,28,-19,52,-19v15,0,23,17,7,26v-22,12,-38,30,-61,41v-8,28,19,6,32,10v14,-14,35,-22,48,-33xm152,-99v-12,-7,-41,16,-39,29v13,-7,28,-19,39,-29xm98,-87v-34,-3,-67,18,-75,52v29,2,57,-33,75,-52","w":187},"\u00f8":{"d":"174,-144v-8,15,-27,19,-34,35v28,30,-8,79,-37,88v-6,-5,-3,7,-12,7v-7,7,-29,16,-38,5v-6,10,-20,17,-19,31v1,11,-3,21,-11,22v-36,-5,-4,-52,4,-60v-24,-12,-11,-62,5,-68v3,-7,14,-9,16,-17v11,0,17,-14,29,-10v10,-12,32,-11,48,-6v16,-10,26,-26,45,-32v3,0,4,2,4,5xm76,-100v-20,12,-52,39,-48,71v9,7,18,-6,20,-12v20,-15,38,-39,54,-54v-9,4,-26,13,-26,-5xm137,-92v-16,-21,-28,25,-44,32v-2,4,-24,27,-22,33v25,-13,69,-31,66,-65","w":167},"\u00bf":{"d":"193,-216v9,20,-26,43,-31,15v-8,-7,8,-21,14,-26v13,-2,11,7,17,11xm67,-29v26,-10,65,-5,89,-20v1,-4,4,-15,12,-13v18,2,13,27,-2,30v-56,12,-106,20,-148,6v-13,-8,-20,-37,-3,-46v13,-3,18,-15,29,-10v14,-12,34,-21,53,-21v17,-24,67,-19,73,-52v-2,-25,15,-24,15,-6v35,50,-56,67,-94,90v-15,1,-28,14,-43,16v-10,1,-34,17,-13,23v13,3,23,-2,32,3","w":204},"\u00a1":{"d":"114,-237v27,0,24,39,4,41v-11,1,-15,-10,-18,-18v5,-4,3,-23,14,-23xm61,-85v19,-28,23,-71,41,-99v41,34,-18,90,-28,129v-6,9,-13,16,-16,29v-2,7,-4,10,-9,10v-4,1,-17,-17,-16,-21v6,-15,19,-35,28,-48","w":107},"\u00ac":{"d":"148,-22r0,-82r-122,0r0,-14r154,0r0,96r-32,0"},"\u221a":{"d":"272,-296r0,9r-43,0r-67,287r-26,0r-31,-130r-61,0r0,-9r82,0r29,121r65,-278r52,0","w":240},"\u0192":{"d":"-51,78v-3,0,-4,-3,-4,-9v-2,-22,27,-7,37,-28v38,-44,72,-93,86,-161v-16,0,-27,13,-36,5v4,-17,47,-7,45,-30v14,-24,27,-52,51,-68v18,-22,32,-30,54,-42v4,0,7,3,7,9v1,10,-8,10,-15,8v-33,21,-52,58,-70,94v19,-4,35,-6,48,-12v6,5,21,25,6,29v-13,-5,-34,1,-55,0v-23,10,-12,47,-31,64v-1,14,-18,17,-18,32v-25,47,-57,85,-105,109","w":141},"\u2248":{"d":"38,-131v28,-51,74,-29,118,-19v14,0,26,-7,37,-20r5,3v-9,17,-29,33,-51,33v-22,0,-74,-30,-94,-5v-4,5,-9,16,-15,8xm91,-110v9,-1,54,17,65,15v14,0,26,-7,37,-20r5,3v-9,15,-30,34,-51,34v-24,-1,-75,-32,-94,-5v-5,4,-8,15,-15,8v15,-23,33,-35,53,-35"},"\u2206":{"d":"140,-246r112,246r-233,0r110,-246r11,0xm128,-216v-26,63,-59,120,-81,188v0,8,5,11,16,11r153,0","w":240},"\u00ab":{"d":"59,-91v20,13,-27,24,-9,38v4,4,17,17,6,21v-12,-6,-44,-30,-20,-43v3,-7,17,-11,23,-16xm77,-58v1,5,24,21,11,26v-13,-3,-46,-35,-13,-46v6,-2,19,-18,19,-2v0,7,-13,10,-17,22","w":117},"\u00bb":{"d":"67,-80v-7,2,-15,-11,-7,-15v7,14,46,17,31,36r-24,28v-22,-7,3,-30,9,-37v-2,-4,-6,-6,-9,-12xm63,-66v-6,13,-22,21,-28,33v-28,-15,31,-35,-3,-48v-5,0,-5,-13,-1,-13v9,10,26,16,32,28","w":117},"\u2026":{"d":"18,-18v2,-18,24,-28,30,-6v13,6,-2,28,-11,26v-8,-1,-15,-14,-19,-20xm125,2v-18,-5,-24,-35,-3,-40v19,4,26,37,3,40xm195,-18v2,-17,24,-28,30,-6v13,6,-2,27,-11,26v-7,-2,-16,-13,-19,-20","w":264},"\u00a0":{"w":90},"\u00c0":{"d":"227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39xm202,-260v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":214},"\u00c3":{"d":"227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39xm166,-254v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17","w":214},"\u00d5":{"d":"40,-70v-3,-17,8,-24,9,-38v11,-19,17,-41,33,-54v5,-20,27,-30,36,-47v13,-1,37,-46,50,-20v35,-25,87,-6,72,42v-20,62,-56,101,-92,143v-18,9,-20,23,-42,25v-24,29,-89,-3,-66,-51xm109,-174v-13,43,-59,85,-52,140r-2,3v17,26,56,-8,68,-24v9,3,10,-16,21,-17v25,-42,59,-74,74,-126v-3,-10,6,-31,-23,-28v-36,13,-65,39,-61,80v0,9,-3,13,-10,13v-17,1,-7,-25,-6,-33v14,-17,24,-41,42,-56v-25,8,-33,34,-51,48xm175,-250v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17","w":199},"\u0152":{"d":"118,-209v13,-1,36,-46,50,-20v22,-17,73,-14,74,17v9,9,17,-18,29,-15v22,-18,68,-28,68,4v0,19,-16,49,-26,25v5,-10,27,-21,10,-32v-45,7,-78,46,-93,80v21,-9,41,-26,66,-26v7,0,10,2,10,5v-7,32,-61,28,-76,53v0,0,-2,-1,-3,-2v-1,3,-5,12,-11,11v0,6,-2,8,-6,6v2,10,-13,6,-9,10v-12,17,-35,42,-20,66v44,3,58,-21,87,-37r59,-51v2,-3,7,-7,9,-4v-6,36,-41,38,-56,64v-10,5,-17,19,-29,15v1,13,-21,18,-31,26v-5,-4,-6,3,-9,5v-34,19,-67,-3,-71,-28v-13,9,-27,19,-44,24v-34,19,-74,-17,-56,-57v-3,-17,8,-24,9,-38v17,-41,43,-70,69,-101xm110,-171v-24,38,-54,90,-55,140v17,26,56,-8,68,-24v9,2,13,-18,21,-17v10,-17,16,-26,30,-39v13,-34,55,-66,41,-109v-4,-12,-40,-4,-43,5v-2,-1,-4,-2,-4,2v-12,12,-29,23,-33,45v-8,8,6,37,-11,36v-27,-19,8,-50,16,-69v8,-6,13,-15,20,-21v-25,8,-32,34,-51,48v0,1,1,2,1,3","w":324},"\u0153":{"d":"140,-37v13,-15,34,-21,48,-34v1,2,2,4,2,0v5,-5,14,-18,20,-13v1,22,-18,27,-27,40v-6,-5,-9,12,-17,9v-10,10,-27,15,-43,20v-7,-7,-24,5,-27,-12v-23,6,-90,38,-82,-28v1,-6,8,-12,3,-17v-3,3,-5,8,-10,7v1,3,-6,11,-9,5v-1,-18,11,-19,19,-28v17,-12,48,-35,73,-25v7,1,19,8,10,16v3,1,10,13,11,2v9,-13,35,-26,57,-18v25,9,-3,28,-14,35v-10,-3,-19,21,-31,18v-2,11,-20,8,-19,22v5,11,27,-1,36,1xm116,-71v16,0,28,-20,41,-28v-15,-4,-37,12,-41,28xm69,-91v-18,14,-42,39,-31,68v30,2,44,-22,52,-47v-10,-7,-4,-22,0,-27v-5,2,-11,10,-21,6","w":194},"\u2013":{"d":"151,-70v14,9,-1,24,-15,23v-27,-2,-46,2,-65,-2v-15,2,-52,10,-46,-15v26,-11,75,2,104,-8v9,1,14,0,22,2"},"\u2014":{"d":"48,-56v-26,-8,-41,34,-50,2v14,-46,90,-19,136,-27v35,7,71,4,104,13v3,2,9,11,0,11v-33,0,-65,-8,-88,-3v-35,-5,-69,4,-102,4","w":245},"\u201c":{"d":"129,-241v17,3,4,13,-1,23v13,9,5,35,-11,37v-35,-7,2,-55,12,-60xm181,-202v-3,23,-31,27,-36,3v8,-13,20,-52,39,-38v-7,13,-12,20,-3,35","w":152},"\u201d":{"d":"110,-181v-24,-5,12,-20,-5,-31v-4,-15,5,-26,18,-29v6,2,24,18,12,25v-3,15,-16,28,-25,35xm155,-181v-23,-6,11,-19,-5,-33v-2,-15,6,-25,18,-27v34,9,-2,55,-13,60","w":152},"\u2018":{"d":"129,-241v17,3,4,13,-1,23v13,9,5,35,-11,37v-35,-7,2,-55,12,-60","w":107},"\u2019":{"d":"110,-181v-24,-5,12,-20,-5,-31v-4,-15,5,-26,18,-29v6,2,24,18,12,25v-3,15,-16,28,-25,35","w":107},"\u00f7":{"d":"137,-155v-19,-4,-25,-35,-3,-40v19,5,26,36,3,40xm188,-134v-10,35,-66,7,-93,17v-15,-4,-40,6,-40,-13v13,-19,46,-2,79,-10v13,6,45,-12,54,6xm107,-64v-18,-5,-24,-34,-3,-40v10,4,16,12,20,22v1,6,-12,18,-17,18"},"\u25ca":{"d":"145,-249r93,129r-93,129r-93,-129xm145,-217r-71,97r71,97r71,-97","w":240},"\u00ff":{"d":"52,-101v0,21,-23,35,-20,52v37,-14,61,-43,98,-57v24,2,5,32,6,46v-9,14,-15,35,-21,52v21,-5,58,-14,57,17v-12,20,-13,-18,-30,-11v-36,-7,-42,29,-55,52v5,9,-14,12,-8,20v-9,17,-23,33,-30,48v-9,0,2,11,-11,9v1,9,-10,15,-20,17v-49,-26,10,-84,26,-109v15,-10,25,-24,42,-32v13,-24,21,-48,29,-76v-10,2,-22,17,-29,11v-17,16,-42,30,-64,35v-20,-4,-10,-29,-8,-43v-6,7,-15,20,-21,3v18,-13,30,-33,53,-41v4,0,6,2,6,7xm10,125v32,-18,50,-69,65,-102v-15,9,-25,27,-38,35v2,9,-7,12,-12,20v-3,19,-16,30,-15,47xm78,-152v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm111,-150v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":164},"\u0178":{"d":"130,-32v-13,35,-63,14,-61,-21v1,-17,3,-38,14,-46v4,-34,34,-67,48,-95v7,0,-1,-10,9,-10v2,-9,-1,-25,-12,-14v-18,1,-48,17,-49,41v-7,9,-27,6,-20,-10v22,-24,56,-41,97,-48v30,24,-16,60,-25,87v-12,36,-50,77,-32,120v54,-34,81,-93,112,-150v4,-8,9,-22,22,-26v8,-2,20,16,20,22v-25,29,-31,71,-48,107v18,-6,33,-29,53,-35v4,33,-58,40,-66,72v-9,34,-16,52,-28,81v-10,2,-4,20,-13,29v-7,6,-11,31,-23,28v-1,7,-11,10,-18,12v-12,-9,-26,-36,-14,-52v-4,-13,13,-28,17,-43v9,-8,15,-24,27,-23v-4,-10,5,-11,8,-14v-5,-7,10,-4,9,-12v22,-15,17,-39,29,-59v-2,-5,1,-4,2,-11v-21,20,-30,47,-54,65v1,3,2,6,-4,5xm114,92v18,-17,18,-41,31,-62r15,-49v-20,25,-34,38,-42,72v-5,10,-8,30,-4,39xm199,-275v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm232,-273v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":239},"\u2215":{"d":"16,-2v-51,-34,30,-99,45,-133r84,-93v5,-2,17,-15,16,1v-2,29,-36,36,-48,57v-11,13,-27,27,-37,43v-18,31,-53,57,-53,108v0,11,-3,17,-7,17","w":65},"\u00a4":{"d":"239,-30v-11,-26,-36,7,-57,2v-29,6,-53,-1,-74,-13v-15,11,-17,18,-31,25v-10,-1,-8,-5,-5,-12v8,-7,15,-17,24,-24v-46,-33,-37,-110,0,-137v-10,-10,-19,-17,-26,-29v15,-22,31,33,49,13v42,-16,91,-11,115,14v15,-8,21,-40,43,-24v-9,16,-19,24,-32,35v37,31,26,104,-6,127v12,7,20,20,29,31v-8,14,-26,2,-29,-8xm222,-178v-31,-31,-105,-21,-127,18v-44,79,54,157,123,102v30,-23,36,-57,25,-96v-3,-5,-6,-3,-5,-9v-6,-2,-11,-12,-16,-15","w":243},"\u2039":{"d":"59,-91v20,13,-27,24,-9,38v4,4,17,17,6,21v-12,-6,-44,-30,-20,-43v3,-7,17,-11,23,-16","w":87},"\u203a":{"d":"63,-66v-6,13,-22,21,-28,33v-28,-15,31,-35,-3,-48v-5,0,-5,-13,-1,-13v9,10,26,16,32,28","w":84},"\uf001":{"d":"13,80v-18,14,-50,66,-60,20r48,-122v-5,-6,-15,-8,4,-14r15,-34v-13,6,-18,22,-34,25v-8,-30,26,-30,36,-51v36,-30,37,-87,62,-127v2,-11,20,-11,19,3v2,15,2,36,-8,42v2,30,-39,60,-45,95v-6,9,-15,26,-15,40v10,-1,13,-11,23,-10v11,-17,35,-30,52,-42v5,-7,13,-14,22,-17v25,1,14,41,3,51v3,6,-3,14,-2,19v16,0,28,-21,40,-17v0,28,-29,35,-51,44v-24,-11,-7,-52,1,-68v-5,-6,-12,11,-20,7v-12,11,-25,26,-42,33v-6,8,-20,18,-27,18v6,5,29,35,15,49v-2,10,-7,21,-18,30v2,12,-14,17,-18,26xm28,30v9,-13,9,-48,-10,-43v-6,13,-5,35,-18,41v2,22,-22,48,-20,70v21,-18,37,-40,48,-68xm175,-162v-7,16,-22,5,-22,-9v0,-11,14,-14,20,-6v4,6,3,8,2,15","w":186},"\uf002":{"d":"13,80v-18,14,-50,66,-60,20r48,-122v-5,-6,-15,-8,4,-14r15,-34v-13,6,-18,22,-34,25v-8,-30,26,-30,36,-51v36,-31,37,-86,62,-127v2,-11,20,-11,19,3v2,15,2,36,-8,42v1,30,-39,61,-45,95v-6,9,-15,26,-15,40v10,-1,13,-11,23,-10v-1,-12,28,-15,24,-30v8,-16,13,-40,25,-52v0,-16,19,-27,23,-40v11,-10,20,-38,38,-46v0,-8,8,-12,16,-12v18,-1,20,25,8,33v-9,35,-32,56,-45,86v-11,12,-22,27,-31,41v-2,10,-21,-6,-16,11v-7,18,2,40,19,24v8,2,14,-27,24,-21v0,35,-43,59,-61,29v-1,-10,-6,-17,-2,-24v-7,2,-9,11,-19,11v-6,8,-20,18,-27,18v6,5,29,35,15,49v-2,10,-7,21,-18,30v2,12,-14,17,-18,26xm180,-206v-16,12,-24,33,-38,48v-2,-1,-2,-1,-2,2v-3,9,-13,17,-14,24v-6,8,-23,43,-12,30v16,-12,25,-32,39,-46v2,-8,8,-13,14,-19v2,-17,17,-21,13,-39xm28,30v9,-13,9,-48,-10,-43v-6,13,-5,35,-18,41v2,22,-22,48,-20,70v21,-18,37,-40,48,-68","w":156},"\u2021":{"d":"169,-109v5,41,-65,-3,-65,36v0,10,-5,25,-12,32v-3,16,-4,37,-20,40v-24,-17,7,-52,8,-76v1,-5,8,-11,6,-15v-28,14,-72,-24,-23,-18v42,5,43,-31,52,-54v-15,2,-47,8,-48,-11v8,-18,35,0,56,-9v10,-17,14,-42,29,-55v33,6,-11,41,0,57v15,-5,40,-10,48,4v1,36,-63,-7,-67,33v1,13,-13,27,-10,34v16,-1,36,-9,46,2"},"\u2219":{"d":"40,-40v-19,-4,-25,-34,-4,-40v20,4,27,36,4,40","w":88},"\u201a":{"d":"27,24v-20,-2,0,-15,0,-23v-14,-13,-3,-34,13,-37v6,2,24,18,12,25v-4,14,-15,27,-25,35","w":88},"\u201e":{"d":"36,24v-19,-2,1,-15,1,-23v-14,-13,-3,-34,13,-37v6,2,24,18,12,25v-3,15,-16,27,-26,35xm75,-15v1,-18,31,-28,36,-3v-6,14,-22,51,-39,38v0,-9,18,-18,4,-27v2,-2,0,-5,-1,-8","w":152},"\u2030":{"d":"69,9v-55,-34,25,-107,49,-140v11,-24,34,-35,45,-59v10,-8,21,-19,29,-28v-7,-9,-10,10,-22,10v-21,20,-44,40,-68,55v-3,-3,-7,-4,-7,3v-13,10,-38,13,-33,-14v20,-23,45,-49,78,-48v0,2,-1,4,1,5v22,-18,59,-24,83,-37v22,33,-35,52,-51,77v-13,12,-24,23,-35,40v-22,31,-55,60,-62,104v8,14,8,30,-7,32xm113,-193v-13,1,-24,21,-34,29v23,-10,33,-24,54,-35v-4,-4,-20,1,-20,6xm98,-50v12,-22,26,-40,52,-51v3,2,-2,7,-2,10v12,-7,16,7,17,18v-10,22,-27,37,-49,47v-13,0,-15,-13,-18,-24xm114,-40v12,-6,22,-16,27,-30v-10,0,-6,-13,0,-16v-8,-4,-8,17,-16,15v-3,9,-16,20,-11,31xm221,-92v20,4,8,41,-9,46v-11,18,-45,30,-46,-4v8,-20,29,-42,51,-51v3,2,-2,7,-2,10xm195,-71v-7,4,-17,23,-13,31v13,-8,32,-21,21,-38v-1,-2,3,-7,5,-8v-5,-3,-8,12,-13,15","w":244},"\u00c2":{"d":"227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39xm152,-255v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":214},"\u00ca":{"d":"131,-35v-12,6,-22,23,-36,19v-22,30,-78,8,-73,-20v-5,-34,21,-57,40,-75v14,-14,33,-20,50,-31v-13,5,-30,7,-31,-11v10,-39,41,-52,66,-75v26,-11,63,-30,71,5v0,18,-17,49,-25,25v0,-5,5,-11,11,-10v5,-8,8,-24,-7,-22v-5,-1,-14,7,-23,7v-24,20,-56,42,-65,73v21,-9,41,-26,66,-26v7,0,10,2,10,5v-8,34,-60,27,-76,53v-5,-4,-6,10,-14,9v0,6,-2,8,-6,6v2,10,-13,6,-9,10v-12,15,-36,44,-20,66v47,2,62,-26,92,-43v24,-14,38,-41,63,-49v-7,37,-42,41,-60,67v-8,5,-14,16,-25,12xm159,-252v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":204},"\u00c1":{"d":"227,-85v7,27,-27,47,-55,54v-29,-7,-16,-58,-12,-81v-16,19,-9,17,-23,36v-8,-1,-2,10,-10,10v-1,6,-5,18,-12,16v-7,40,-78,61,-82,5v2,-9,-1,-27,8,-23v-12,-25,15,-57,27,-78v26,-45,64,-84,118,-103v26,-2,23,29,16,47v0,14,-17,13,-17,1v1,-10,21,-19,10,-30v-19,-1,-27,19,-45,23v-24,25,-48,54,-63,83v-14,27,-30,52,-29,83v0,5,2,14,6,14v40,-16,53,-61,84,-87v1,-16,20,-22,22,-39v11,-7,14,-41,34,-30v15,14,-8,38,-7,57v-13,25,-23,56,-22,81v16,-8,35,-27,52,-39xm177,-261v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":214},"\u00cb":{"d":"131,-35v-12,6,-22,23,-36,19v-22,30,-78,8,-73,-20v-5,-34,21,-57,40,-75v14,-14,33,-20,50,-31v-13,5,-30,7,-31,-11v10,-39,41,-52,66,-75v26,-11,63,-30,71,5v0,18,-17,49,-25,25v0,-5,5,-11,11,-10v5,-8,8,-24,-7,-22v-5,-1,-14,7,-23,7v-24,20,-56,42,-65,73v21,-9,41,-26,66,-26v7,0,10,2,10,5v-8,34,-60,27,-76,53v-5,-4,-6,10,-14,9v0,6,-2,8,-6,6v2,10,-13,6,-9,10v-12,15,-36,44,-20,66v47,2,62,-26,92,-43v24,-14,38,-41,63,-49v-7,37,-42,41,-60,67v-8,5,-14,16,-25,12xm167,-275v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm200,-273v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":204},"\u00c8":{"d":"131,-35v-12,6,-22,23,-36,19v-22,30,-78,8,-73,-20v-5,-34,21,-57,40,-75v14,-14,33,-20,50,-31v-13,5,-30,7,-31,-11v10,-39,41,-52,66,-75v26,-11,63,-30,71,5v0,18,-17,49,-25,25v0,-5,5,-11,11,-10v5,-8,8,-24,-7,-22v-5,-1,-14,7,-23,7v-24,20,-56,42,-65,73v21,-9,41,-26,66,-26v7,0,10,2,10,5v-8,34,-60,27,-76,53v-5,-4,-6,10,-14,9v0,6,-2,8,-6,6v2,10,-13,6,-9,10v-12,15,-36,44,-20,66v47,2,62,-26,92,-43v24,-14,38,-41,63,-49v-7,37,-42,41,-60,67v-8,5,-14,16,-25,12xm206,-256v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":204},"\u00cd":{"d":"91,-221v-13,19,-44,33,-40,60v-6,5,2,10,3,14v1,6,-7,14,-13,13v-23,-41,32,-94,70,-111v42,-19,75,29,51,69v-10,32,-31,55,-44,84v-11,11,-14,29,-26,40v2,22,-24,37,-9,57v-1,17,-25,7,-29,-1v-15,-28,14,-56,22,-79v4,-10,9,-19,18,-25v2,-24,31,-49,36,-70v4,-3,6,-3,4,-8v19,-20,17,-61,-16,-53v-10,2,-21,9,-27,10xm124,-264v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":135},"\u00ce":{"d":"91,-221v-13,19,-44,33,-40,60v-6,5,2,10,3,14v1,6,-7,14,-13,13v-23,-41,32,-94,70,-111v42,-19,75,29,51,69v-10,32,-31,55,-44,84v-11,11,-14,29,-26,40v2,22,-24,37,-9,57v-1,17,-25,7,-29,-1v-15,-28,14,-56,22,-79v4,-10,9,-19,18,-25v2,-24,31,-49,36,-70v4,-3,6,-3,4,-8v19,-20,17,-61,-16,-53v-10,2,-21,9,-27,10xm100,-260v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":135},"\u00cf":{"d":"91,-221v-13,19,-44,33,-40,60v-6,5,2,10,3,14v1,6,-7,14,-13,13v-23,-41,32,-94,70,-111v42,-19,75,29,51,69v-10,32,-31,55,-44,84v-11,11,-14,29,-26,40v2,22,-24,37,-9,57v-1,17,-25,7,-29,-1v-15,-28,14,-56,22,-79v4,-10,9,-19,18,-25v2,-24,31,-49,36,-70v4,-3,6,-3,4,-8v19,-20,17,-61,-16,-53v-10,2,-21,9,-27,10xm109,-275v2,-8,18,-22,23,-5v8,6,2,16,-8,21v-7,-4,-14,-7,-15,-16xm142,-273v3,-14,27,-21,30,0v-5,13,-27,19,-30,0","w":135},"\u00cc":{"d":"91,-221v-13,19,-44,33,-40,60v-6,5,2,10,3,14v1,6,-7,14,-13,13v-23,-41,32,-94,70,-111v42,-19,75,29,51,69v-10,32,-31,55,-44,84v-11,11,-14,29,-26,40v2,22,-24,37,-9,57v-1,17,-25,7,-29,-1v-15,-28,14,-56,22,-79v4,-10,9,-19,18,-25v2,-24,31,-49,36,-70v4,-3,6,-3,4,-8v19,-20,17,-61,-16,-53v-10,2,-21,9,-27,10xm141,-263v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":135},"\u00d3":{"d":"40,-70v-3,-17,8,-24,9,-38v11,-19,17,-41,33,-54v5,-20,27,-30,36,-47v13,-1,37,-46,50,-20v35,-25,87,-6,72,42v-20,62,-56,101,-92,143v-18,9,-20,23,-42,25v-24,29,-89,-3,-66,-51xm109,-174v-13,43,-59,85,-52,140r-2,3v17,26,56,-8,68,-24v9,3,10,-16,21,-17v25,-42,59,-74,74,-126v-3,-10,6,-31,-23,-28v-36,13,-65,39,-61,80v0,9,-3,13,-10,13v-17,1,-7,-25,-6,-33v14,-17,24,-41,42,-56v-25,8,-33,34,-51,48xm187,-254v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":199},"\u00d4":{"d":"40,-70v-3,-17,8,-24,9,-38v11,-19,17,-41,33,-54v5,-20,27,-30,36,-47v13,-1,37,-46,50,-20v35,-25,87,-6,72,42v-20,62,-56,101,-92,143v-18,9,-20,23,-42,25v-24,29,-89,-3,-66,-51xm109,-174v-13,43,-59,85,-52,140r-2,3v17,26,56,-8,68,-24v9,3,10,-16,21,-17v25,-42,59,-74,74,-126v-3,-10,6,-31,-23,-28v-36,13,-65,39,-61,80v0,9,-3,13,-10,13v-17,1,-7,-25,-6,-33v14,-17,24,-41,42,-56v-25,8,-33,34,-51,48xm166,-250v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":199},"\u00d2":{"d":"40,-70v-3,-17,8,-24,9,-38v11,-19,17,-41,33,-54v5,-20,27,-30,36,-47v13,-1,37,-46,50,-20v35,-25,87,-6,72,42v-20,62,-56,101,-92,143v-18,9,-20,23,-42,25v-24,29,-89,-3,-66,-51xm109,-174v-13,43,-59,85,-52,140r-2,3v17,26,56,-8,68,-24v9,3,10,-16,21,-17v25,-42,59,-74,74,-126v-3,-10,6,-31,-23,-28v-36,13,-65,39,-61,80v0,9,-3,13,-10,13v-17,1,-7,-25,-6,-33v14,-17,24,-41,42,-56v-25,8,-33,34,-51,48xm211,-253v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":199},"\u00da":{"d":"186,-112v7,-26,31,-62,47,-89v9,-9,29,-16,37,-3v1,19,-18,24,-19,42v-14,40,-34,72,-31,113v17,-9,30,-24,46,-38v4,0,6,2,6,6v-9,30,-38,40,-59,49v-32,-15,-13,-58,-9,-89v-2,13,-8,4,-6,16v-5,3,-9,22,-16,18v-15,29,-33,61,-62,77v-39,7,-53,-47,-37,-83v-1,-6,12,-3,6,-9v13,-37,34,-66,53,-97v9,5,-3,-15,8,-7v5,-14,-1,-28,-11,-18v-26,5,-50,19,-53,42v-9,13,-26,5,-20,-13v20,-27,55,-41,92,-48v14,-3,29,18,17,39v-30,54,-68,103,-73,173v13,13,21,-19,37,-17v4,-19,18,-27,27,-41v4,0,4,0,3,-4v3,-3,13,-28,17,-19xm214,-254v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":253},"\u00db":{"d":"186,-112v7,-26,31,-62,47,-89v9,-9,29,-16,37,-3v1,19,-18,24,-19,42v-14,40,-34,72,-31,113v17,-9,30,-24,46,-38v4,0,6,2,6,6v-9,30,-38,40,-59,49v-32,-15,-13,-58,-9,-89v-2,13,-8,4,-6,16v-5,3,-9,22,-16,18v-15,29,-33,61,-62,77v-39,7,-53,-47,-37,-83v-1,-6,12,-3,6,-9v13,-37,34,-66,53,-97v9,5,-3,-15,8,-7v5,-14,-1,-28,-11,-18v-26,5,-50,19,-53,42v-9,13,-26,5,-20,-13v20,-27,55,-41,92,-48v14,-3,29,18,17,39v-30,54,-68,103,-73,173v13,13,21,-19,37,-17v4,-19,18,-27,27,-41v4,0,4,0,3,-4v3,-3,13,-28,17,-19xm193,-250v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8","w":253},"\u00d9":{"d":"186,-112v7,-26,31,-62,47,-89v9,-9,29,-16,37,-3v1,19,-18,24,-19,42v-14,40,-34,72,-31,113v17,-9,30,-24,46,-38v4,0,6,2,6,6v-9,30,-38,40,-59,49v-32,-15,-13,-58,-9,-89v-2,13,-8,4,-6,16v-5,3,-9,22,-16,18v-15,29,-33,61,-62,77v-39,7,-53,-47,-37,-83v-1,-6,12,-3,6,-9v13,-37,34,-66,53,-97v9,5,-3,-15,8,-7v5,-14,-1,-28,-11,-18v-26,5,-50,19,-53,42v-9,13,-26,5,-20,-13v20,-27,55,-41,92,-48v14,-3,29,18,17,39v-30,54,-68,103,-73,173v13,13,21,-19,37,-17v4,-19,18,-27,27,-41v4,0,4,0,3,-4v3,-3,13,-28,17,-19xm238,-253v-17,14,-29,-16,-33,-32v-2,-7,10,-12,19,-8v11,4,5,33,14,40","w":253},"\u0131":{"d":"45,-83v-13,-4,-29,13,-42,23v-15,-16,16,-26,25,-37v12,1,21,-26,36,-10v17,20,-11,39,-8,61v1,1,-4,3,-2,4v23,-4,36,-22,53,-32v4,27,-35,50,-63,59v-25,-11,-8,-53,1,-68","w":108},"\u02c6":{"d":"77,-130v-3,-11,14,-17,21,-24v10,-18,39,-30,44,-1v2,8,14,19,7,25v-26,6,-22,-33,-45,-8v-7,7,-15,10,-27,8"},"\u02dc":{"d":"86,-130v-16,-20,15,-38,28,-49v14,-3,15,37,26,14v8,-3,18,-21,26,-13v2,21,-19,27,-27,41v-14,9,-26,-5,-28,-17"},"\u02c9":{"d":"70,-152v19,-15,64,-11,87,-6v2,30,-38,12,-58,18v-8,-6,-27,6,-29,-12"},"\u02d8":{"d":"159,-169v0,22,-47,55,-66,26v-4,-7,-12,-32,5,-31v19,-4,-4,28,24,20v12,-4,19,-23,37,-15"},"\u02d9":{"d":"118,-166v12,2,21,24,3,27v-7,10,-16,-4,-18,-11v3,-8,6,-12,15,-16"},"\u02da":{"d":"97,-132v-19,-11,-1,-49,22,-43v27,6,7,49,-13,47xm115,-162v-9,0,-17,16,-8,20v7,-1,18,-16,8,-20"},"\u00b8":{"d":"32,13v-6,-24,30,-44,54,-34v-9,10,-37,19,-28,32v-6,19,-38,40,-57,21v2,-14,24,-6,31,-19"},"\u02dd":{"d":"78,-130v-9,-12,18,-20,19,-36v4,-11,8,-5,17,-6v16,0,5,14,2,20v-12,12,-23,23,-38,22xm117,-135v16,-9,16,-41,40,-37v13,2,4,18,-2,23v-11,11,-21,20,-34,19v-2,0,-4,-2,-4,-5"},"\u02db":{"d":"97,10v13,13,26,-21,36,-11v1,29,-41,49,-52,15v2,-23,2,-47,23,-51v14,9,-10,26,-7,47"},"\u02c7":{"d":"164,-175v6,9,-14,15,-18,23v-11,12,-36,37,-45,8v-3,-8,-14,-23,-10,-31v24,-5,22,30,40,13v8,-9,18,-14,33,-13"},"\u0141":{"d":"214,-162v-3,37,-37,22,-58,42v-15,7,-34,9,-39,26v-6,7,-13,25,-18,38v35,1,70,-3,98,7v19,-7,40,22,21,33v-34,-18,-79,-38,-126,-24v-13,8,-15,27,-30,27v-7,23,-67,21,-70,-3v26,-25,78,-18,86,-64v3,-5,13,-10,9,-15v-14,7,-28,13,-38,23v-26,-27,32,-41,55,-52v4,-10,14,-23,13,-32v-8,3,-20,12,-25,-1v1,-14,16,-19,30,-13v5,-7,17,-11,16,-20v0,-6,2,-10,7,-12v0,-12,10,-7,7,-17v9,-4,11,-18,19,-19v-1,-11,19,-21,27,-11v13,18,-3,37,-11,50v0,3,-2,5,-8,6v-13,16,-42,31,-41,58r70,-32v4,0,6,2,6,5xm195,-243v-14,7,-24,30,-27,43v12,-12,27,-21,27,-43xm2,-15v13,10,41,4,44,-14v-19,3,-34,7,-44,14","w":228},"\u0142":{"d":"139,-217v-6,13,-16,31,-18,44v9,-2,25,-19,32,-7v-4,10,-11,31,-22,22v-37,6,-41,41,-61,63v-11,6,-12,33,-30,23v-6,14,-5,53,17,34v7,4,4,-10,14,-9v4,1,0,-9,6,-8r29,-29v13,23,-20,37,-28,52v-11,3,-26,23,-42,13v-14,2,-19,-19,-19,-33v0,-17,12,-46,13,-62v-12,2,-25,26,-30,4v6,-28,48,-16,54,-47v17,-15,23,-38,40,-51v-1,-3,7,-13,12,-13v1,-7,7,-12,16,-12v7,0,18,8,17,16xm119,-206v-15,11,-29,35,-38,49v23,-4,36,-26,38,-49xm47,-99v9,4,12,-16,21,-16v-2,-8,12,-15,8,-20v-17,5,-22,21,-29,36","w":95},"\u0160":{"d":"235,-64v-64,22,-104,74,-184,78v-3,-2,-9,-4,-8,-10v32,-28,88,-33,119,-62v7,-13,29,-29,3,-41v-30,-14,-65,-19,-97,-30v-23,-8,-15,-41,1,-51v14,-18,31,-32,56,-39v13,-14,43,-15,57,-23v7,4,23,-5,31,2v2,-10,16,0,25,0v4,-6,15,12,21,6v13,11,29,48,6,59v-13,-1,-12,-14,-2,-18v-17,-40,-93,-21,-121,-6v-3,-2,-11,-6,-9,3v-28,14,-49,23,-62,49v4,9,21,6,25,14v23,-4,50,2,66,10v5,-5,24,0,21,9v13,-9,31,10,26,30v-2,10,-11,17,-12,23r49,-23v8,7,-6,18,-11,20xm68,0v16,-5,37,-7,47,-18v-19,3,-34,10,-47,18xm267,-297v6,9,-14,15,-18,23v-11,12,-36,37,-45,8v-3,-8,-14,-23,-10,-31v24,-5,22,30,40,13v8,-9,18,-14,33,-13","w":227},"\u0161":{"d":"41,-124v30,-9,30,48,25,71v20,-10,31,-25,51,-36v11,17,-13,21,-21,34v-27,16,-50,36,-81,48v-23,1,-36,-26,-12,-31v30,8,51,-26,42,-58v-16,15,-33,32,-52,45v-8,1,-8,-13,-2,-17r1,0v19,-10,42,-30,49,-56xm103,-180v6,9,-14,15,-18,23v-11,12,-36,37,-45,8v-3,-8,-14,-23,-10,-31v24,-5,22,30,40,13v8,-9,18,-14,33,-13","w":96},"\u017d":{"d":"243,-205v-13,21,-40,28,-55,46v-38,22,-72,63,-92,99v15,-6,26,-16,44,-20v13,-11,23,-16,44,-20v12,6,5,20,-2,28r49,-27v12,24,-38,26,-51,42v-12,-1,-8,20,-20,21v-4,21,-20,25,-25,47v-14,13,-17,38,-33,49v-9,22,-22,42,-44,48v-28,-8,-8,-58,2,-73r2,1v-1,-12,1,-18,11,-24v-3,-8,14,-9,9,-14v17,-24,44,-40,69,-56v1,-3,9,-17,1,-10v-36,9,-65,34,-102,38v-14,2,-18,-6,-4,-23v44,-51,93,-98,152,-134v-56,9,-84,-1,-118,-14v-27,-3,-46,30,-18,38v23,7,57,7,73,-5v1,-8,20,-11,22,-3v-20,29,-75,21,-107,13v-34,-17,-15,-77,19,-70v36,-3,58,37,100,31v28,3,50,-6,71,-14v2,0,3,2,3,6xm135,-33v-43,23,-67,67,-80,119v1,6,4,-1,7,-1v24,-35,53,-76,73,-118xm227,-295v6,9,-14,15,-18,23v-11,12,-36,37,-45,8v-3,-8,-14,-23,-10,-31v24,-5,22,30,40,13v8,-9,18,-14,33,-13","w":203},"\u017e":{"d":"53,10v16,-9,20,-39,24,-56r-60,16v-17,-13,25,-39,10,-54v-7,12,-20,20,-29,29v-16,-14,16,-27,22,-40v13,-10,39,-37,46,-7v-6,17,-18,35,-21,51r51,-18v22,6,-2,26,-2,41r-16,37v10,3,21,26,-1,26v-21,-11,-21,25,-37,32v-19,22,-39,45,-69,56v-33,-45,28,-105,82,-113xm44,32v-31,-1,-55,28,-69,44v1,7,-6,19,-2,24v35,-12,50,-39,71,-68xm112,-175v6,9,-14,15,-18,23v-11,12,-36,37,-45,8v-3,-8,-14,-23,-10,-31v24,-5,22,30,40,13v8,-9,18,-14,33,-13","w":118},"\u00a6":{"d":"81,-240r18,0r0,120r-18,0r0,-120xm81,-55r18,0r0,115r-18,0r0,-115"},"\u00d0":{"d":"237,-182v-50,-55,-149,-10,-187,33v-10,-8,-3,-20,8,-29v15,-11,17,-9,28,-12v89,-87,255,22,149,114v-29,25,-61,46,-101,48v1,7,-5,5,-11,4v-3,-2,-24,10,-34,4v-13,11,-57,-9,-30,-20v1,1,10,5,9,-1v3,-23,28,-40,24,-57v-14,3,-27,8,-38,15v-13,-12,-3,-30,24,-31v13,-7,37,-1,37,-21v8,-6,9,-24,18,-31v1,-7,-7,-22,4,-26v33,5,10,46,6,63v18,-8,42,-10,62,-16v13,4,-1,16,-6,23v-10,12,-44,0,-64,16v-17,6,-25,46,-37,65v12,-3,29,-1,37,-8v31,-2,50,-22,76,-33v4,-6,6,-10,12,-11v22,-29,23,-61,14,-89","w":247},"\u00f0":{"d":"18,-69v-6,-2,-19,25,-20,1v17,-23,62,-61,96,-42v3,-4,3,-43,-11,-35v-14,3,-27,4,-24,-13v0,-2,3,-3,7,-3v7,0,31,-4,20,-15v2,-7,-4,-13,-1,-21v7,-4,17,-11,21,-1r5,26v11,2,25,-14,31,-1v-9,21,-37,27,-25,74v-4,50,-28,84,-77,90v-22,-7,-34,-33,-22,-60xm40,-24v38,0,57,-42,55,-82v-3,8,-14,19,-26,16v-17,14,-44,41,-29,66","w":130},"\u00dd":{"d":"130,-32v-13,35,-63,14,-61,-21v1,-17,3,-38,14,-46v4,-34,34,-67,48,-95v7,0,-1,-10,9,-10v2,-9,-1,-25,-12,-14v-18,1,-48,17,-49,41v-7,9,-27,6,-20,-10v22,-24,56,-41,97,-48v30,24,-16,60,-25,87v-12,36,-50,77,-32,120v54,-34,81,-93,112,-150v4,-8,9,-22,22,-26v8,-2,20,16,20,22v-25,29,-31,71,-48,107v18,-6,33,-29,53,-35v4,33,-58,40,-66,72v-9,34,-16,52,-28,81v-10,2,-4,20,-13,29v-7,6,-11,31,-23,28v-1,7,-11,10,-18,12v-12,-9,-26,-36,-14,-52v-4,-13,13,-28,17,-43v9,-8,15,-24,27,-23v-4,-10,5,-11,8,-14v-5,-7,10,-4,9,-12v22,-15,17,-39,29,-59v-2,-5,1,-4,2,-11v-21,20,-30,47,-54,65v1,3,2,6,-4,5xm114,92v18,-17,18,-41,31,-62r15,-49v-20,25,-34,38,-42,72v-5,10,-8,30,-4,39xm207,-254v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":239},"\u00fd":{"d":"52,-101v0,21,-23,35,-20,52v37,-14,61,-43,98,-57v24,2,5,32,6,46v-9,14,-15,35,-21,52v21,-5,58,-14,57,17v-12,20,-13,-18,-30,-11v-36,-7,-42,29,-55,52v5,9,-14,12,-8,20v-9,17,-23,33,-30,48v-9,0,2,11,-11,9v1,9,-10,15,-20,17v-49,-26,10,-84,26,-109v15,-10,25,-24,42,-32v13,-24,21,-48,29,-76v-10,2,-22,17,-29,11v-17,16,-42,30,-64,35v-20,-4,-10,-29,-8,-43v-6,7,-15,20,-21,3v18,-13,30,-33,53,-41v4,0,6,2,6,7xm10,125v32,-18,50,-69,65,-102v-15,9,-25,27,-38,35v2,9,-7,12,-12,20v-3,19,-16,30,-15,47xm85,-134v13,-9,22,-29,34,-41v7,2,29,2,16,15v-10,17,-29,31,-46,31v-2,0,-4,-2,-4,-5","w":164},"\u00de":{"d":"136,-203v11,-14,4,-45,25,-48v21,2,11,34,7,44v29,-2,50,0,69,9v35,16,23,93,-7,99v-16,19,-60,24,-85,26v-15,1,-37,-6,-47,1v-5,19,-18,28,-18,52v0,4,-5,9,-10,8v-18,-7,-18,-19,-7,-43v12,-26,17,-14,17,-35v6,-8,6,-25,17,-30v3,-22,34,-50,29,-67v-25,4,-46,11,-66,19v-11,4,-12,16,-25,18v-3,15,-18,35,-22,12v5,-29,39,-28,54,-44v17,-9,50,-18,69,-21xm110,-90v39,7,101,-10,119,-46v0,-16,2,-35,-11,-44v-13,-8,-29,-7,-47,-12v-6,6,-14,-1,-15,13v-8,19,-20,34,-28,53v0,18,-16,20,-18,36","w":221},"\u00fe":{"d":"60,-12v-9,-3,-17,-22,-20,-1r-44,100v-6,7,-21,18,-26,2v-22,-63,54,-90,61,-151v1,-8,10,-18,5,-24v-6,-1,-3,13,-12,8v-8,11,-12,13,-23,20v-16,-12,11,-25,23,-32v-2,-2,-1,-4,4,-4v30,-21,43,-86,52,-125v0,-2,2,-4,6,-4v30,32,-11,81,-17,118v-2,10,-9,18,-7,30v17,-17,42,-38,66,-40v33,7,8,52,-1,63v21,-10,36,-27,56,-37v8,15,-15,24,-23,34v-30,17,-57,39,-100,43xm50,-38v4,-1,25,-16,31,-3v19,-12,42,-28,39,-54v-31,4,-46,27,-64,41v2,6,-7,8,-6,16xm-23,73v16,-21,23,-46,33,-74v-18,22,-31,37,-33,74","w":161},"\u2212":{"d":"188,-134v-10,35,-66,7,-93,17v-15,-4,-40,6,-40,-13v13,-19,46,-2,79,-10v13,6,45,-12,54,6"},"\u00d7":{"d":"67,-78v-24,-22,27,-35,39,-53v-6,-14,-38,-39,-16,-50v20,4,17,29,33,37v17,-12,33,-26,52,-36v8,-1,6,2,10,10v-11,17,-35,31,-50,43v8,12,23,23,28,39v-4,16,-28,10,-30,-6v-9,-1,-12,-26,-18,-16v-16,10,-30,23,-48,32"},"\u00b9":{"d":"155,-224v-20,31,-48,70,-48,113v0,2,-2,4,-5,4v-32,-27,10,-77,24,-103v-3,2,-9,0,-8,-5v7,-10,30,-27,37,-9","w":115},"\u00b2":{"d":"69,-113v-38,-25,18,-60,43,-73v14,-7,32,-15,44,-23v-17,-10,-42,0,-54,6v-12,-6,-2,-23,10,-22v27,-5,63,0,52,26v-6,13,-29,15,-37,25v-18,8,-45,24,-52,43v22,-2,50,-14,72,-5v7,11,-2,24,-11,15v-23,0,-49,5,-67,8","w":115},"\u00b3":{"d":"134,-157v11,-7,10,-15,1,-20v-20,1,-48,10,-52,-10v3,-13,28,-7,39,-18v9,2,21,-10,8,-4v-24,-4,-48,12,-54,-8v12,-13,52,-2,73,-4v23,7,3,23,-7,27v-4,1,-12,-1,-12,4v29,6,25,46,3,54v-23,15,-47,20,-70,24v-9,2,-21,-18,-10,-22v29,0,62,-10,81,-23","w":115},"\u00bd":{"d":"277,-227v-9,36,-54,51,-71,82v-6,3,-13,10,-14,18v-12,10,-18,28,-32,37v-4,26,-34,39,-21,70v0,11,-3,18,-7,18v-50,-36,29,-99,45,-133r82,-92v5,-3,18,-16,18,0xm155,-224v-20,31,-48,70,-48,113v0,2,-2,4,-5,4v-32,-27,10,-77,24,-103v-3,2,-9,0,-8,-5v7,-10,30,-27,37,-9xm203,-37v21,7,75,-24,76,9v-8,15,-33,-5,-55,8v-19,-1,-38,10,-42,-13v16,-47,66,-54,102,-80v-16,-11,-41,2,-54,5v-4,0,-5,-3,-5,-9v18,-40,106,5,54,24v-28,17,-57,29,-76,56","w":297},"\u00bc":{"d":"277,-227v-9,36,-54,51,-71,82v-6,3,-13,10,-14,18v-12,10,-18,28,-32,37v-4,26,-34,39,-21,70v0,11,-3,18,-7,18v-50,-36,29,-99,45,-133r82,-92v5,-3,18,-16,18,0xm155,-224v-20,31,-48,70,-48,113v0,2,-2,4,-5,4v-32,-27,10,-77,24,-103v-3,2,-9,0,-8,-5v7,-10,30,-27,37,-9xm187,-78v17,-20,35,-36,56,-52v-2,-6,3,-5,6,-6v2,0,3,2,3,4v-11,19,-25,34,-39,51v12,7,34,9,36,-8v10,-11,15,-31,25,-38v-4,-4,4,-16,5,-15v23,12,-10,41,-13,57v-3,0,-7,8,-3,9v9,-6,23,-4,28,3v-5,11,-26,14,-37,14v-5,15,-14,27,-14,47v1,8,-6,13,-11,7v-27,-15,7,-41,5,-59v-11,2,-22,-8,-36,-3v-3,-1,-12,-6,-11,-11","w":297},"\u00be":{"d":"132,-2v-51,-34,29,-99,45,-133v33,-32,57,-73,95,-100v3,0,5,2,5,8v-4,33,-34,31,-49,59v-13,11,-28,24,-36,41v-11,12,-18,28,-32,37v-6,26,-32,40,-21,70v0,11,-2,18,-7,18xm134,-157v11,-7,10,-15,1,-20v-20,1,-48,10,-52,-10v3,-13,28,-7,39,-18v9,2,21,-10,8,-4v-24,-4,-48,12,-54,-8v12,-13,52,-2,73,-4v23,7,3,23,-7,27v-4,1,-12,-1,-12,4v29,6,25,46,3,54v-23,15,-47,20,-70,24v-9,2,-21,-18,-10,-22v29,0,62,-10,81,-23xm190,-83v19,-16,33,-33,53,-47v-1,-6,3,-5,6,-6v4,1,4,9,-1,8v-8,21,-24,30,-35,47v12,7,34,9,36,-7v9,-13,14,-28,25,-39v-4,-4,4,-16,5,-15v23,12,-11,44,-13,57v-4,0,-6,9,-2,9v9,-6,22,-4,27,3v-5,11,-26,14,-37,14v-5,15,-14,27,-14,47v1,8,-6,13,-11,7v-13,-4,-13,-27,-3,-32v-4,-9,13,-16,8,-27v-13,-3,-54,1,-44,-19","w":297},"\u00ad":{"d":"1,-53v-9,-9,4,-16,15,-16v25,0,51,-4,69,2v-3,33,-37,11,-59,18v-9,-3,-15,0,-25,-4","w":87},"\u00af":{"d":"9,-271r162,0r0,14r-162,0r0,-14"},"\u00b7":{"d":"40,-40v-19,-4,-25,-34,-4,-40v20,4,27,36,4,40","w":88}}});


    Cufon.replace('ul.menu li a', { fontFamily: 'oranda-cn-bt-condensed', hover: true, fontSize: 24});
    Cufon.replace('div.mitte div.boxrechts h3', { fontFamily: 'oranda-cn-bt-condensed'});
    Cufon.replace('div.mitte div.footerkontakt h3', { fontFamily: 'oranda-cn-bt-condensed'});
    Cufon.replace('div.sprachmenu', { fontFamily: 'oranda-cn-bt-bold', hover: true});
    Cufon.replace('div.footerkontakt span.familie', { fontFamily: 'rage-italic'});
    Cufon.replace('div.intro div.familie span', { fontFamily: 'rage-italic'});function OpenClose(element){if(document.getElementById(element).style.display=='none'){Effect.BlindDown(element);return false}else{Effect.BlindUp(element);return false}}function OpenPopup(url,name,breite,hoehe){var width=breite;var height=hoehe;var l=(screen.availWidth-width)/2;var t=(screen.availHeight-height)/2;newwindow=window.open(url,"_blank","width="+breite+",height="+hoehe+",screenX="+l+",screenY="+t+",left="+l+",top="+t+",scrollbars=1,resizable=1,menubar=no");newwindow.focus()}function CheckEmailAddress(address){var username="";var hostname="";if(address.length<8)return false;var seperate=address.lastIndexOf("@");if(seperate==-1)return false;username=address.substring(0,seperate);if(!checkUsername(username,"<>()[],;:@\" "))return false;hostname=address.substring(seperate+1,address.length);if(!checkHostname(hostname))return false;return true}function trim(s){while(s.substring(0,1)==" "){s=s.substring(1,s.length)}while(s.substring(s.length-1,s.length)==" "){s=s.substring(0,s.length-1)}return s}
