// jQuery SWFObject v1.1.1 MIT/GPL @jon_neal
// http://jquery.thewikies.com/swfobject
(function(f,h,i){function k(a,c){var b=(a[0]||0)-(c[0]||0);return b>0||!b&&a.length>0&&k(a.slice(1),c.slice(1))}function l(a){if(typeof a!=g)return a;var c=[],b="";for(var d in a){b=typeof a[d]==g?l(a[d]):[d,m?encodeURI(a[d]):a[d]].join("=");c.push(b)}return c.join("&")}function n(a){var c=[];for(var b in a)a[b]&&c.push([b,'="',a[b],'"'].join(""));return c.join(" ")}function o(a){var c=[];for(var b in a)c.push(['<param name="',b,'" value="',l(a[b]),'" />'].join(""));return c.join("")}var g="object",m=true;try{var j=i.description||function(){return(new i("ShockwaveFlash.ShockwaveFlash")).GetVariable("$version")}()}catch(p){j="Unavailable"}var e=j.match(/\d+/g)||[0];f[h]={available:e[0]>0,activeX:i&&!i.name,version:{original:j,array:e,string:e.join("."),major:parseInt(e[0],10)||0,minor:parseInt(e[1],10)||0,release:parseInt(e[2],10)||0},hasVersion:function(a){a=/string|number/.test(typeof a)?a.toString().split("."):/object/.test(typeof a)?[a.major,a.minor]:a||[0,0];return k(e,a)},encodeParams:true,expressInstall:"expressInstall.swf",expressInstallIsActive:false,create:function(a){if(!a.swf||this.expressInstallIsActive||!this.available&&!a.hasVersionFail)return false;if(!this.hasVersion(a.hasVersion||1)){this.expressInstallIsActive=true;if(typeof a.hasVersionFail=="function")if(!a.hasVersionFail.apply(a))return false;a={swf:a.expressInstall||this.expressInstall,height:137,width:214,flashvars:{MMredirectURL:location.href,MMplayerType:this.activeX?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}}attrs={data:a.swf,type:"application/x-shockwave-flash",id:a.id||"flash_"+Math.floor(Math.random()*999999999),width:a.width||320,height:a.height||180,style:a.style||""};m=typeof a.useEncode!=="undefined"?a.useEncode:this.encodeParams;a.movie=a.swf;a.wmode=a.wmode||"opaque";delete a.fallback;delete a.hasVersion;delete a.hasVersionFail;delete a.height;delete a.id;delete a.swf;delete a.useEncode;delete a.width;var c=document.createElement("div");c.innerHTML=["<object ",n(attrs),">",o(a),"</object>"].join("");return c.firstChild}};f.fn[h]=function(a){var c=this.find(g).andSelf().filter(g);/string|object/.test(typeof a)&&this.each(function(){var b=f(this),d;a=typeof a==g?a:{swf:a};a.fallback=this;if(d=f[h].create(a)){b.children().remove();b.html(d)}});typeof a=="function"&&c.each(function(){var b=this;b.jsInteractionTimeoutMs=b.jsInteractionTimeoutMs||0;if(b.jsInteractionTimeoutMs<660)b.clientWidth||b.clientHeight?a.call(b):setTimeout(function(){f(b)[h](a)},b.jsInteractionTimeoutMs+66)});return c}})(jQuery,"flash",navigator.plugins["Shockwave Flash"]||window.ActiveXObject);;
/**
 * jQuery plugin that uses, if an object element is not found,
 * jQuery SWFObject plugin to place a Flash object and enable communication
 * between it and JavaScript.
 * 
 * NOTE: Designed to work for the NFL On Location's video player. 
 * 
 * To send commands to Flash, simply get the data member 'connector' of  the
 * SWF object wrapper you initiated the plugin on.
 * <code>
 *   $('#flash-wrapper').flashConnector({
 *     swf: 'path/to/file.swf',
 *     wmode: 'transparent',
 *     allowFullScreen: true,
 *     flashvars: {
 *       exampleVar: 'WTF!',
 *     },
 *   });
 *   var flashConnector = $('#flash-wrapper').data('connector');
 *   flashConnector.send(new Command('doStuff', { data: { say: 'Hello!' } });
 * </code>
 * 
 * FIXME: needs a lot more work.
 * 
 * @name jquery.flashConnector.js
 * @author Plamen Ivanov <pivanov@flycommunications.com>
 * @version 0.1
 * @date July 22, 2011
 * @category jQuery plugin
 * @depends jquery.swfobject.1-1-1.min.js
 */

function Command(name, data) {
    if (name) {
        this.name = name;
    }
    
    if (data) {
        this.data = data;
    }
}
Command.prototype = {
    name: 'nop',
    data: {}
};

(function($) {
  // This is not a good idea. Nice temporary fix.
  // Needs to be moved in a seperate JS file and loaded before any other.
  function __log(msg) {
      msg = 'flashConnector: ' + msg;
      
      if (window.console) {
          window.console.log(msg);
      } else {
          // Don't log.
      }
  };
  
  /**
   * FlashConnector - should be a plugin.
   **/
  function FlashConnector(asCallback, jsCallback) {
    FlashConnector.serial++;
    this.id = FlashConnector.serial;
    
    this.callback = asCallback;
    this.handler = jsCallback;
    
    var handler = jsCallback.split('window.');
    if (1 < handler.length) {
      handler = handler[1];
    } else {
      handler = handler[0];
    }
    
    var self = this;
    window[handler] = function (cmd) {
      self.receive(cmd);
    };
  }
  FlashConnector.serial = 0;
  FlashConnector.prototype = {
    id: 0,
    obj: null,
    callback: null,
    handler: null,
    connected: false,
    iId: 0,
    
    connectTo: function(obj) {
      if (this.iId || this.obj) {
        return false;
      }
      
      this.obj = obj;
      
      var self = this;
      var flash = obj;
      var callback = this.callback;
      // Try connecting to Flash until a command is received.
      this.iId = window.setInterval(function() {
        if (self.connected) {
          //__log('connector [' + self.id + ']: already connected, don\'t send CON');
          window.clearInterval(self.iId);
          return;
        }
        
        if (flash && flash[callback]) {
          flash[callback](new Command('CON'));
          //__log('connector [' + self.id + ']: sent CON (connect) command');
        }
      }, 25);
      
      return true;
    },
    
    getCallbackName: function() {
      return this.callback;
    },
    
    getHandlerName: function() {
      return 'window.' + this.handler;
    },
    
    setObj: function (obj) {
      this.obj = obj;
    },
    
    // For external use only!
    send: function(cmd) {
      if (!this.ready()) {
        return false;
      }
      
      return this.obj[this.callback](cmd);
    },
    
    receive: function(cmd) {
      //__log('connector [' + this.id + ']: command received: ' + cmd.name);
      
      // Make sure we're done with the dumb handshake.
      if (0 != this.iId) {
        window.clearInterval(this.iId);
        this.iId = 0;
      }
      
      // There are some special commands we need to take care of first (about
      // which the user sounld not be concerend, like handshaking).
      switch (cmd.name) {
        // Flash is trying to connect!
        // Send an ACK command.
        case 'CON':
          this.obj[this.callback](new Command('ACK'));
        break;
        
        // We tried to connect to Flash and received an ACK command.
        case 'ACK':
          if (!this.connected) {
            this.connected = true;
            this.obj[this.callback](new Command('ACK'));
          }
        break;
        
        default:
          $(this.obj).parent().trigger(cmd.name, [cmd]);
        break;
      }
    },
    
    ready: function() {
      if (!this.obj || !this.callback || !this.handler || !this.connected) {
        return false;
      }
      
      return true;
    }
  };
  
  $.fn.flashConnector = function(settings) {
    settings = $.extend(true, {
      // Defaults.
    }, settings || {});
    
    // outCallback & inCallback are quite confusing here.
    // Consider these from Flash's point of view.
    var connector = new FlashConnector(settings.flashvars.inCallback, settings.flashvars.outCallback);
    var obj = $('object:first', this);
    
    if (0 == $(obj).size()) {
      $(this).flash(settings);
      obj = $('object:first', this);
    }
    $(this).data('connector', connector);
    $(this).bind('send', function(cmd) {
      connector.send(cmd);
    });
    connector.connectTo($(obj)[0]);
    
    return $(this);
  };
})(jQuery);


























;
(function($){
    /** HELPERS **/
    //This is not a good idea. Nice temporary fix.
    // Needs to be moved in a seperate JS file and loaded before any other.
    function __log(msg) {
        msg = 'nflolVideoBox: ' + msg;
        
        if (window.console) {
          window.console.log(msg);
        } else {
          if (window.nlog) {
            window.nlog(msg);
          }
        }
    };
    
    __log('is there a console?');
    
    function VideoInfo(info) {
        if (info) {
            $.extend(this, info);
        }
    };
    VideoInfo.prototype = {
        flv: null,
        caption: 'This is a video.',
        description: '',
        indexInCarousel: 0
    };
    
    Drupal.theme.prototype.homeCarousel = function(wrapper) {
        if (1 == $(wrapper).size()) {
            // Dealing with a single carousel.
        } else if (1 < $(wrapper).size()) {
            // TODO: Dealing with multiple.
        } else {
            __log('homeCarousel: No wrappers found!');
            return;
        }
        
        var tid = 0;
        var matched = wrapper;
        
        // Transition lock - to prevent column event handlers from disrupting
        // the roll up/roll down transition animations.
        // See enterEvent() and leaveEvent().
        var transitionLock = false;
        
        var animTime = 600; // In milisec.
        var lastTick = (new Date()).getTime();//Date.now();
        
        var width_normal = 199; // Mouse is out of box - carousel not focused.
        var width_focused_1 = 370; // Mouse is in box - focused event.
        var width_focused_2 = 142; // Mouse is in box - rest of events.
        
        var complete_1 = false;
        var complete_2 = false;
        var complete_3 = false;
        
        /**
         For the initial state. Note that 199 should be replaced with whatever the
         current width is (look at updateAnimationVars()).
         animTime / (370 - 199)
         animTime / (142 - 199)
         */ 
        
        // The following 2 are constants.
        // Tick for both mouse in states.
        // tc = tick constant.
        var tc = animTime / (370 - 199); // NOTE: will replace values later.
        var ts = 0;
        var tc_2 = animTime / (142 - 199);
        var ts_2 = 0;
        var rem = 0;
        var p = 0;
        
        var elapsedtime = 0;
        
        // Event slide gallery functionality.
        function slideEvents() {
            
            var totalEvents = $('.nflol-home-event-wrapper', matched).size();
            var animateToX = 0;
            
            // Move the current index.
            if (true == slideEvents.btnText.test($(this).attr('id')))
            {
                slideEvents.eventIndex++;
            }
            else
            {
                slideEvents.eventIndex--;
            }
            
            // Range check.
            if (0 >= slideEvents.eventIndex)
            {
                slideEvents.eventIndex = 0;
                
                $('#nflol-home-event-button-next', $(matched))
                    .fadeIn();
                    //.show();
                $('#nflol-home-event-button-prev', $(matched))
                    .fadeOut();
                    //.hide();
            }
            else if (totalEvents < slideEvents.eventIndex + 1 + 4)
            {
                slideEvents.eventIndex = totalEvents - 4;
                
                $('#nflol-home-event-button-next', $(matched))
                    .fadeOut();
                    //.hide();
                $('#nflol-home-event-button-prev', $(matched))
                    .fadeIn();
                    //.show();
            }
            else
            {
                $('#nflol-home-event-button-next, #nflol-home-event-button-prev', $(matched))
                    .fadeIn();
                    //.show();
            }
            
            animateToX = -201*slideEvents.eventIndex;
            
            $('#nflol-home-events-wrapper', matched)
                .animate({ left: [animateToX, 'swing'] }, 600);
            
            return false;
        }
        slideEvents.btnText = /next/;
        slideEvents.eventIndex = 0;
        
        // Refreshes the events view - if there is a .event-expand class
        // amongst the event elements, start the animation.
        // 
        // @param boolean delay Inserts a delay before the animations starts
        function animateEventElements(delay) {
            $(matched)
                .stop(true)
                .clearQueue();
            
            if (delay == 'undefined' || delay == true)
            {
                $(matched).delay(1000);
            }
            
            $(matched)
                .queue(function() {
                    clearEventAnimations();
                    
                    var animationSpeed = 'slow';
                    
                    if (0 == $('.nflol-home-event-wrapper.event-expand', matched).size())
                    {
                        $('.nflol-home-event-gray-panel', matched)
                            .fadeOut();
                        
                        $('.nflol-home-event-wrapper .copy, .nflol-home-event-wrapper .nflol-home-event-button', matched)
                            .fadeOut(animationSpeed, 'swing');
                    }
                    else
                    {
                        $('.nflol-home-event-wrapper.event-expand', matched)
                            .find('.nflol-home-event-gray-panel', matched)
                            .fadeOut();
                        
                        var btn = $('.nflol-home-event-wrapper.event-expand .nflol-home-event-button', matched);
                        $(btn)
                            .css('margin-left', '-' + parseInt($(btn).width()/2) + 'px');
                        $('.nflol-home-event-wrapper.event-expand .copy, .nflol-home-event-wrapper.event-expand .nflol-home-event-button', matched)
                            .css('opacity', 0)
                            .show()
                            .animate({ opacity: 1 }, animationSpeed, 'swing');
                        
                        var visibleEvents = null;
                        if (0 == slideEvents.eventIndex)
                        {
                            visibleEvents = $('.nflol-home-event-wrapper:lt(4):not(.event-expand)', matched);
                        }
                        else
                        {
                            visibleEvents = $('.nflol-home-event-wrapper:gt(' + (slideEvents.eventIndex-1) + '):lt(4):not(.event-expand)', matched);    
                        }
                        
                        $(visibleEvents)
                            .find('.copy, .nflol-home-event-button', matched)
                            .fadeOut(animationSpeed, 'swing');
                        
                        $('.nflol-home-event-wrapper:not(.event-expand) .nflol-home-event-gray-panel', matched)
                            .show()
                            .animate({ opacity: 0.8}, animationSpeed);
                    }
                    
                    $.dequeue(this);
            });
        }
        
        function clearEventAnimations()
        {
            $('.nflol-home-event-wrapper', matched)
                .stop(true)
                .clearQueue();
            
            $('.nflol-home-event-wrapper .nflol-home-event-gray-panel', matched)
                .stop(true)
                .clearQueue();
            
            $('.nflol-home-event-wrapper .copy, .nflol-home-event-wrapper .nflol-home-event-button', matched)
                .stop(true)
                .clearQueue();
        }
        
        // Clean up and roll the shades.
        function rollUpEvents()
        {
            transitionLock = true;
          
            $('.nflol-home-event-wrapper', matched)
                .unbind('mouseenter')
                .unbind('mouseleave');
            $('#nflol-home-event-button-next, #nflol-home-event-button-prev', matched)
                .unbind('click')
                .fadeOut();
            
            $('.nflol-home-event-gray-panel, .copy, .nflol-home-event-button', matched)
                .fadeOut();
            
            $('.nflol-home-event-wrapper.event-expand')
                .removeClass('event-expand');
            animateEventElements();
            
            var last = slideEvents.eventIndex+4;
            $('.nflol-home-event-wrapper', matched).each(function(index, eventElement) {
                if (index >= slideEvents.eventIndex && index < last)
                {
                    $(eventElement)
                        .delay(index * 250)
                        .animate({ top: -420 }, 1000, function() {
                            if (index == (last-1)) {
                                $('.gap', matched).hide();
                                $(matched).trigger('rolledUp');
                            }
                        });
                }
            });
        }
        
        //Okey, video finished, back to normal.
        function rollDownEvents()
        {   
            $('.gap', matched).fadeIn('slow');
            
            var last = null;
            $('.nflol-home-event-wrapper').each(function(index, eventElement) {
                if (index >= slideEvents.eventIndex && index < slideEvents.eventIndex+4)
                {
                    $(eventElement)
                        .delay(index * 250)
                        .animate({ top: 0 }, 1000);
                    
                    if (index == slideEvents.eventIndex + 3)
                    {
                        last = eventElement;
                    }
                }
            });
            
            $(last)
            .queue(function() {
                initEventsUI();
                $('#nflol-home-event-button-next').hide();
                
                // Make sure next/prev buttons appear correctly.
                var totalEvents = $('.nflol-home-event-wrapper', matched).size();
                
                if (4 < totalEvents) {
                  // Range check.
                  if (0 >= slideEvents.eventIndex)
                  {
                      $('#nflol-home-event-button-next', matched)
                        .fadeIn();
                      $('#nflol-home-event-button-prev', matched)
                        .fadeOut();
                  }
                  else if (totalEvents < slideEvents.eventIndex + 1 + 4)
                  {
                      $('#nflol-home-event-button-next', matched)
                        .fadeOut();
                      $('#nflol-home-event-button-prev', matched)
                        .fadeIn();
                  }
                  else
                  {
                      $('#nflol-home-event-button-next, #nflol-home-event-button-prev', matched)
                        .fadeIn();
                  }
                }
                
                $('.gap', matched).show();
                
                $(matched).trigger('rolledDown');
                transitionLock = false;
                
                $.dequeue(this);
            });
        }
        
        function updateAnimationVars() {
          complete_1 = false;
          complete_2 = false;
          complete_3 = false;
          
          $('.nflol-home-event-wrapper').data('ts', 0);
          var expand = $('.nflol-home-event-wrapper.event-expand');
          
          if (0 == $(expand).size()) {
            $('.nflol-home-event-wrapper').each(function(){
              $(this).data('tc',
                animTime / (width_normal - $(this).width())
              );
            });
            
            return;
          }
          
          var visible = null;
          if (0 == slideEvents.eventIndex)
          {
            visible = $('.nflol-home-event-wrapper:lt(4):not(.event-expand)');
          }
          else
          {
            visible = $('.nflol-home-event-wrapper:gt(' + (slideEvents.eventIndex-1) + '):lt(4):not(.event-expand)');
          }
          
          // We could make the value of tc absolute, however, it can be used as a
          // hint for the direction.
          $(expand).data('tc', 
            animTime / (width_focused_1 - $(expand).width())
          );
          
          $(visible).each(function() {
            $(this).data('tc',
              animTime / (width_focused_2 - $(this).width())
            );
          });
        }
        
        function animationTick() {
          //__log('Tick.');
          
          complete_1 = true;
          complete_2 = true;
          complete_3 = true;
          
          // This basically will be the multiplier.
          elapsedtime = (new Date()).getTime() - lastTick;
          // First check negative.
          if (1 >= elapsedtime) {
            elapsedtime = 1;
          // In case the elapsed time has been greated then the animation time
          // just jump to the last "frame".
          } else if (animTime < elapsedtime) {
            elapsedtime = animTime;
          }
          lastTick = (new Date()).getTime();
          
          // Take into account the elapsed time between script executions.
          $('.nflol-home-event-wrapper').each(function() {
            $(this).data('ts', $(this).data('ts') + elapsedtime);
          });
          
         /**
          * Mouse out of wrapper: 199 px
          * Mouse in wrapper:
          *         focused event: 370 px
          *         regular event: 142 px (they get dimmed)
          **/
         this.expand = $('.nflol-home-event-wrapper.event-expand');
         
         if (0 == $(this.expand).size()) { 
            $('.nflol-home-event-wrapper').each(function() {
              if (width_normal == $(this).width()) {
                return;
              }
              
              ts = $(this).data('ts');
              tc = $(this).data('tc');
              rem = ts % tc;
              p = (ts - rem) / tc;
              $(this).data('ts', rem);
              
              if (ts >= tc) {
                // All these stupid are check for the case P has error.
                if (width_normal < $(this).width() 
                    && width_normal > ($(this).width() + p)) {
                  $(this).width(width_normal);
                
                } else if (width_normal > $(this).width() 
                    && width_normal < ($(this).width() + p)) {
                  $(this).width(width_normal);
                
                } else {
                  $(this).width($(this).width() + p);
                }
              }
              
              if (width_normal != $(this).width()) {
                complete_1 = false;
              }
            });
            
            if (complete_1) {
              stopAnimation();
            }
            
            return;
          }
          
          // Visible events, excluding the event to be expanded.
          var visibleEvents = null;
          if (0 == slideEvents.eventIndex)
          {
            visibleEvents = $('.nflol-home-event-wrapper:lt(4):not(.event-expand)');
          }
          else
          {
            visibleEvents = $('.nflol-home-event-wrapper:gt(' + (slideEvents.eventIndex-1) + '):lt(4):not(.event-expand)');
          }
          
          // Deal with the focused...
          ts = $(this.expand).data('ts');
          tc = $(this.expand).data('tc');
          if (ts >= tc) {
            rem = ts % tc;
            p = (ts - rem) / tc;
            $(this.expand).data('ts', rem);
            
            // Add pixels.
            if (width_focused_1 > $(this.expand).width()) {
              if (width_focused_1 < ($(this.expand).width() + p)) {
                $(this.expand).width(width_focused_1);
              } else {
                $(this.expand).width($(this.expand).width() + p);
              }
            }
            
            if (width_focused_1 != $(this.expand).width()) {
              complete_2 = false;
            }
          }
          
          // ...and the rest.
          $(visibleEvents).each(function() {
            ts = $(this).data('ts');
            tc = $(this).data('tc');
            rem = ts % tc;
            p = (ts - rem) / tc;
            $(this).data('ts', rem);
            
            if (ts >= tc) {
              if (width_focused_2 >= ($(this).width() + p)) {
                $(this).width(width_focused_2);
              } else if (width_focused_2 < $(this).width()) {
                $(this).width($(this).width() + p);
              }
            }
            
            if (width_focused_2 != $(this).width()) {
              complete_3 = false;
            }
          });
          
          if (complete_2 && complete_3) {
            stopAnimation();
          }
        }
        
        var iId = 0;
        function startAnimation() {
          // Every 40ms should be 25 fps.
          if (0 == iId) {
            //__log('Start Tick.');
            lastTick = (new Date()).getTime();
            iId = setInterval(animationTick, 40);
          }
        }
        
        /**
         * Stop when there is nothing to animate. We don't want to exaust the processor.
         */
        function stopAnimation() {
          //__log('Stop Tick.');
          clearInterval(iId);
          iId = 0;
        }
        
        function enterEvent()
        {
          if (transitionLock) {
            return;
          }
          
          $(this).addClass('event-expand');
          
          animateEventElements();
          updateAnimationVars();
          startAnimation();
          
          //__log('Mouse enter: event.');
        }
        
        function leaveEvent()
        {
          if (transitionLock) {
            return;
          }
          
          $(this).removeClass('event-expand');
          animateEventElements();
          
          //__log('Mouse leave: event.');
        }
        
        function initEventsUI() {
            $('#nflol-home-events')
              .bind('mouseleave', function() {
                //__log('Mouse leave: wrapper.');
                enterEvent();
              });
            
            $('.nflol-home-event-wrapper', matched)
            .bind('mouseenter', enterEvent)
            .bind('mouseleave', leaveEvent)
            .find('.copy, .nflol-home-event-button')
                .hide();
        
            $('#nflol-home-event-button-next, #nflol-home-event-button-prev', $(matched).parent())
                .bind('mouseenter', function() {
                  //__log('Mouse leave: next/prev.');
                  enterEvent();
                })
                .click(slideEvents)
                .hide();
            
            if (4 < $('.nflol-home-event-wrapper', matched).size()) {
                $('#nflol-home-event-button-next', $(matched).parent()).show();
            }
            
            $('.nflol-home-event-gray-panel', matched)
                .css('opacity', 0)
                .hide();
        }
        
        function eventsRollToggle() {
            if (this.rolledUp) {
                this.rolledUp = false;
                $(matched).trigger('rollingDownStart');
                rollDownEvents();
            } else {
                this.rolledUp = true;
                $(matched).trigger('rollingUpStart');
                rollUpEvents();
            }
        }
        eventsRollToggle.rolledUp = false;
        
        // Init.
        function initHomeEvents()
        {
            // Make the #nflol-home-events-wrapper wide as the combined width of all events (+ right margin)
            // and add 1 aditional event width, just to be safe.
            var count = $('.nflol-home-event-wrapper', matched).size() + 1;
            var combinedWidth = $('.nflol-home-event-wrapper', matched).first().width() + 2;
            combinedWidth = combinedWidth*count;
            
            $('#nflol-home-events-wrapper', matched).css('width', combinedWidth + 'px');
            
            initEventsUI();
            
            $(matched).bind('roll', eventsRollToggle);
            
            /*$('.nflol-home-event-box-content .logo img', matched).each(function(i, img){
                var top = $(img).parent('.logo').height() - $(img).height();
                if (0 > top) {
                    $(img).parent('.logo').css('height', 'auto');
                } else {
                    $(img).css('top', top + 'px');
                }
            });*/
        }
        
        initHomeEvents();
    };
    
    Drupal.behaviors.nflolHome = {
        attach: function(context, settings)
        {
            if (!Drupal.behaviors.nflolHome.ran) {
                Drupal.behaviors.nflolHome.ran = true;
            } else {
                return;
            }
            
            var eventsContainer = '#nflol-home-events';
            Drupal.theme('homeCarousel', $(eventsContainer));
            
            if (!Drupal.settings.hasVideo) {
                $('#nflol-home-link-wrapper').css('visibility', 'hidden');
                return;
            }
            

            var flashSettings = $.extend(true, {
                swf: '',
                id: 'moviePlayer',
                hasVersion: 9,
                hasVersionFail: function (options) {
                    return true;
                },
                flashvars: {
                    jsExternalHandler: 'window.___receiveFlash',
                    jsApiFunction: '___sendFlash',
                    homePage: 0
                },
                scale: 'showAll',
                quality: 'best',
                bgcolor: '#000000',
                play: false,
                loop: false,
                wmode: 'transparent',
                allowFullScreen: true,
                scale: 'showall',
                menu: false,
                devicefont: false,
                salign: '',
                allowScriptAccess: 'sameDomain',
                
                width: 802,
                height: 420
            }, Drupal.settings.flash);
            
            var player = $('#nflol-home-events-video')
              .flashConnector(flashSettings)
              .data('connector');
            
            Drupal.settings.flash.retryIId = 0;
            $('#nflol-home-video-link').bind('click', function(){
                if (player.ready()) {
                    $(eventsContainer).trigger('roll');
                } else if (!Drupal.settings.flash.retryIId) {
                    // Try untill the flash has loaded.
                    Drupal.settings.flash.retryIId = window.setInterval(function() {
                        if (player.ready()) {
                            window.clearInterval(Drupal.settings.flash.retryIId);
                        } else {
                            return;
                        }
                        
                        $('#nflol-home-video-link').click();
                    }, 500);
                }
                
                return false;
            });
            
            $(eventsContainer)
                .bind('rolledUp', function() {
                    $('#nflol-home-events').hide();
                    player.send(new Command('rolledUp'));
                })
                .bind('rolledDown', function() {
                    player.send(new Command('rolledDown'));
                    $('#nflol-home-link-wrapper').css('visibility', 'visible');
                })
                .bind('rollingUpStart', function() {
                    player.send(new Command('rollingUpStart'));
                    $('#nflol-home-link-wrapper').css('visibility', 'hidden');
                }) 
                .bind('rollingDownStart', function() {
                    player.send(new Command('rollingDownStart'));
                    $('#nflol-home-events').show();
                });
            $('#nflol-home-events-video')
                .bind('rolldown', function(e, cmd){
                    $('#nflol-home-video-link').click();
                });
        }
    };
})(jQuery);
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2007 the National Football League. All rights reserved.
 * 
 * Trademark:
 * Endzone is a trademark of the National Football League.
 * 
 * Description:
 * Copyright (c) 2007 the National Football League. All rights reserved.
 * 
 * Manufacturer:
 * Bespoke type by Village for the National Football League
 * 
 * Designer:
 * Village Type & Design LLC
 */
Cufon.registerFont({"w":113,"face":{"font-family":"Endzone Slab Bold","font-weight":800,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-11 -331 425 72.1887","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":81,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":7,"T":7,"V":7,"W":7,"Y":7,"\u0178":7}},"\ufb01":{"d":"126,0r-108,0r0,-36r20,-5r0,-103r-25,0r0,-34r25,-7v-4,-50,9,-80,60,-81v22,0,34,2,40,6r0,45v-12,-5,-42,-12,-41,11r0,17r36,0r0,43r-36,0r0,103r29,8r0,33xm253,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36xm167,-234v0,-20,13,-32,36,-32v23,0,36,12,36,32v0,20,-13,32,-36,32v-23,0,-36,-12,-36,-32","w":262},"\ufb02":{"d":"126,0r-108,0r0,-36r20,-5r0,-103r-25,0r0,-34r25,-7v-4,-50,9,-80,60,-81v22,0,34,2,40,6r0,45v-12,-5,-42,-12,-41,11r0,17r36,0r0,43r-36,0r0,103r29,8r0,33xm252,0r-99,0r0,-36r21,-5r0,-180r-21,-6r0,-36r78,0r0,222r21,5r0,36","w":260},"A":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"B":{"d":"14,-252r142,0v81,-6,100,86,47,117v69,31,46,135,-50,135r-139,0r0,-39r26,-7r0,-160r-26,-7r0,-39xm180,-79v8,-33,-42,-32,-79,-31r0,61v35,0,88,4,79,-30xm170,-178v0,-11,-2,-25,-29,-25r-40,0r0,51v30,3,76,-1,69,-26","w":250,"k":{"A":4,"\u00c4":4,"\u00c5":4,"\u00c2":4,"\u00c1":4,"\u00c3":4,"\u00c0":4,"V":7,"W":7,"Y":11,"\u0178":11,"X":11}},"C":{"d":"226,-14v-28,14,-61,18,-94,18v-90,0,-119,-35,-119,-130v0,-95,29,-130,119,-130v33,0,66,4,94,18r0,71r-42,0r-9,-33v-10,-3,-23,-5,-40,-5v-54,0,-59,32,-59,79v0,47,5,79,59,79v17,0,30,-2,40,-5r9,-33r42,0r0,71","w":240},"D":{"d":"122,0r-108,0r0,-39r26,-7r0,-160r-26,-7r0,-39r108,0v90,0,124,30,124,126v0,96,-34,126,-124,126xm101,-203r0,154r24,0v55,0,58,-29,58,-77v0,-58,-17,-83,-82,-77","w":258,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"E":{"d":"101,-107r0,58r78,0r8,-30r42,0r0,79r-215,0r0,-39r26,-7r0,-160r-26,-7r0,-39r215,0r0,79r-42,0r-8,-30r-78,0r0,53r37,0r5,-17r33,0r0,77r-33,0r-5,-17r-37,0","w":239},"\u20ac":{"d":"5,-166r22,0v0,-51,21,-86,102,-86v40,0,62,10,81,22r-21,47v-17,-20,-114,-25,-104,17r98,0r-12,36r-86,0r0,11r87,0r-11,36r-76,0v-6,47,85,36,104,17r21,47v-19,12,-41,23,-81,23v-81,0,-102,-36,-102,-87r-22,0r0,-36r22,0r0,-11r-22,0r0,-36","w":221},"F":{"d":"178,-162r0,78r-33,0r-5,-17r-39,0r0,55r29,7r0,39r-116,0r0,-39r26,-7r0,-160r-26,-7r0,-39r209,0r0,79r-42,0r-8,-30r-72,0r0,59r39,0r5,-18r33,0","w":230,"k":{"A":32,"\u00c4":32,"\u00c5":32,"\u00c2":32,"\u00c1":32,"\u00c3":32,"\u00c0":32,"J":32,"Z":4,"f":9,"t":9,"a":9,"\u00e1":9,"\u00e0":9,"\u00e2":9,"\u00e4":9,"\u00e3":9,"\u00e5":9,"\u00e6":9}},"G":{"d":"134,-91r0,-38r112,0r0,39r-25,6r0,84r-42,0r-2,-13v-17,12,-36,17,-59,17v-75,0,-105,-35,-105,-130v0,-95,28,-130,119,-130v33,0,62,4,90,18r0,71r-41,0r-10,-33v-10,-3,-23,-5,-37,-5v-55,0,-58,32,-58,79v0,47,5,79,45,79v19,0,32,-4,43,-11r-1,-26","w":252,"k":{"T":7,"V":7,"W":4,"Y":7,"\u0178":7,"X":7}},"H":{"d":"192,-109r-91,0r0,63r29,7r0,39r-116,0r0,-39r26,-7r0,-160r-26,-7r0,-39r116,0r0,39r-29,7r0,53r91,0r0,-53r-29,-7r0,-39r116,0r0,39r-25,7r0,160r25,7r0,39r-116,0r0,-39r29,-7r0,-63","w":293},"I":{"d":"135,0r-119,0r0,-39r29,-7r0,-160r-29,-7r0,-39r119,0r0,39r-29,7r0,160r29,7r0,39","w":151},"J":{"d":"81,-77r0,-129r-28,-7r0,-39r117,0r0,39r-25,7r0,133v0,48,-28,77,-80,77v-24,0,-42,-5,-52,-10r8,-49v18,10,60,15,60,-22","w":177,"k":{"A":18,"\u00c4":18,"\u00c5":18,"\u00c2":18,"\u00c1":18,"\u00c3":18,"\u00c0":18}},"K":{"d":"236,-207r-61,59r71,103r23,7r0,38r-122,0r0,-39r18,-6r-38,-57r-26,25r0,31r29,7r0,39r-116,0r0,-39r26,-7r0,-160r-26,-7r0,-39r116,0r0,39r-29,7r0,61r64,-63r-18,-5r0,-39r113,0r0,39","w":273,"k":{"V":4,"W":4,"Y":4,"\u0178":4,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d6":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"Q":7,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"S":4,"f":9,"t":9,"v":18,"w":18,"y":18,"\u00ff":18}},"L":{"d":"101,-206r0,157r65,0r8,-30r42,0r0,79r-202,0r0,-39r26,-7r0,-160r-26,-7r0,-39r116,0r0,39","w":223,"k":{"T":16,"V":29,"W":29,"Y":25,"\u0178":25,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":11,"\u00dc":11,"\u00da":11,"\u00db":11,"\u00d9":11,"S":11,"v":18,"w":18,"y":9,"\u00ff":9}},"M":{"d":"125,-252r45,118r45,-118r110,0r0,39r-25,7r0,160r25,7r0,39r-115,0r0,-39r28,-7r4,-129r-50,128r-45,0r-49,-128r3,129r29,7r0,39r-116,0r0,-39r26,-7r0,-160r-26,-7r0,-39r111,0","w":339},"N":{"d":"247,0r-76,0r-80,-171r3,125r28,7r0,39r-108,0r0,-39r26,-7r0,-160r-26,-7r0,-39r102,0r80,171r-3,-125r-28,-7r0,-39r108,0r0,39r-26,7r0,206","w":279},"O":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,95,-31,130,-117,130v-86,0,-117,-35,-117,-130xm183,-126v0,-47,-3,-79,-53,-79v-50,0,-54,32,-54,79v0,47,4,79,54,79v50,0,53,-32,53,-79","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"\u0152":{"d":"136,-252r189,0r0,79r-41,0r-9,-30r-67,0r0,53r26,0r5,-17r33,0r0,77r-33,0r-5,-17r-26,0r0,58r67,0r9,-30r41,0r0,79r-189,0v-90,0,-123,-30,-123,-126v0,-96,33,-126,123,-126xm147,-49r0,-154v-60,-4,-71,24,-71,77v0,53,10,81,71,77","w":336},"\u00d8":{"d":"232,-270r-21,35v26,19,36,54,36,109v0,95,-31,130,-117,130v-25,0,-46,-3,-62,-9r-14,23r-27,0r21,-35v-25,-19,-35,-54,-35,-109v0,-95,31,-130,117,-130v24,0,44,4,60,10r15,-24r27,0xm130,-205v-69,0,-57,83,-48,133r79,-126v-8,-4,-18,-7,-31,-7xm130,-47v70,0,56,-85,46,-133r-78,126v8,4,18,7,32,7","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"P":{"d":"101,-90r0,44r29,7r0,39r-116,0r0,-39r26,-7r0,-160r-26,-7r0,-39r130,0v61,0,84,27,84,81v0,71,-50,87,-127,81xm168,-170v5,-41,-33,-32,-67,-33r0,67v35,0,72,6,67,-34","w":236,"k":{"A":14,"\u00c4":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c3":14,"\u00c0":14,"W":7,"Y":11,"\u0178":11,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d6":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"Q":7,"S":7,"a":9,"\u00e1":9,"\u00e0":9,"\u00e2":9,"\u00e4":9,"\u00e3":9,"\u00e5":9,"\u00e6":9,"s":5}},"Q":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,38,-5,67,-17,87v14,6,22,8,31,9r-12,54v-22,-4,-41,-13,-63,-28v-15,5,-33,8,-56,8v-86,0,-117,-35,-117,-130xm177,-73v9,-48,22,-132,-47,-132v-50,0,-54,32,-54,79v0,53,11,86,68,78r-17,-21r22,-31v8,10,18,19,28,27","w":259,"k":{"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"R":{"d":"255,0r-112,0r0,-39r17,-5r-26,-56r-33,0r0,54r29,7r0,39r-116,0r0,-39r26,-7r0,-160r-26,-7r0,-39r142,0v61,0,86,25,86,76v0,38,-13,63,-48,69r35,61r26,7r0,39xm183,-175v6,-40,-49,-25,-82,-28r0,55v33,-3,86,12,82,-27","w":262,"k":{"A":4,"\u00c4":4,"\u00c5":4,"\u00c2":4,"\u00c1":4,"\u00c3":4,"\u00c0":4,"T":4,"Y":7,"\u0178":7,"v":5,"w":5,"y":5,"\u00ff":5}},"S":{"d":"161,-200v-22,-10,-97,-10,-86,19v0,20,15,23,52,28v67,10,97,19,97,77v0,92,-142,94,-210,62r0,-71r41,0r10,34v29,9,104,10,97,-22v0,-21,-17,-24,-59,-30v-67,-10,-91,-26,-91,-80v0,-79,134,-89,200,-55r0,71r-41,0","w":234,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"T":4}},"T":{"d":"65,-39r29,-7r0,-157r-36,0r-9,30r-42,0r0,-79r234,0r0,79r-42,0r-8,-30r-36,0r0,157r29,7r0,39r-119,0r0,-39","w":248,"k":{"A":25,"\u00c4":25,"\u00c5":25,"\u00c2":25,"\u00c1":25,"\u00c3":25,"\u00c0":25,"J":7," ":7,"f":18,"t":18,"v":36,"w":36,"y":36,"\u00ff":36,"a":36,"\u00e1":36,"\u00e0":36,"\u00e2":36,"\u00e4":36,"\u00e3":36,"\u00e5":36,"\u00e6":36,"s":36,"c":36,"\u00e7":36,"d":36,"e":36,"\u00e9":36,"\u00e8":36,"\u00ea":36,"\u00eb":36,"g":36,"\u0131":9,"i":9,"\u00ed":9,"\u00ec":9,"\u00ee":9,"\u00ef":9,"j":9,"m":36,"n":36,"\u00f1":36,"o":36,"\u00f8":36,"\u00f3":36,"\u00f2":36,"\u00f4":36,"\u00f6":36,"\u00f5":36,"\u0153":36,"p":36,"q":36,"r":36,"u":36,"\u00fa":36,"\u00f9":36,"\u00fb":36,"\u00fc":36,"x":36,"z":36}},"U":{"d":"91,-206r0,111v0,31,8,48,47,48v39,0,47,-17,47,-48r0,-111r-29,-7r0,-39r115,0r0,39r-25,7r0,106v0,75,-27,104,-108,104v-81,0,-108,-29,-108,-104r0,-106r-26,-7r0,-39r116,0r0,39","w":275,"k":{"A":14,"\u00c4":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c3":14,"\u00c0":14}},"V":{"d":"131,-61r41,-145r-28,-7r0,-39r112,0r0,39r-23,7r-65,206r-74,0r-65,-206r-24,-7r0,-39r114,0r0,39r-29,7","w":261,"k":{"A":32,"\u00c4":32,"\u00c5":32,"\u00c2":32,"\u00c1":32,"\u00c3":32,"\u00c0":32," ":7,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u00d6":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"Q":4,"f":9,"t":9,"v":9,"w":9,"y":9,"\u00ff":9,"a":18,"\u00e1":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e3":18,"\u00e5":18,"\u00e6":18,"s":18,"c":18,"\u00e7":18,"d":18,"e":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"g":18,"m":9,"n":9,"\u00f1":9,"o":18,"\u00f8":18,"\u00f3":18,"\u00f2":18,"\u00f4":18,"\u00f6":18,"\u00f5":18,"\u0153":18,"p":9,"q":18,"r":9,"u":9,"\u00fa":9,"\u00f9":9,"\u00fb":9,"\u00fc":9,"x":9,"z":9}},"W":{"d":"76,0r-44,-206r-24,-7r0,-39r114,0r0,39r-28,7r20,120r39,-166r65,0r39,166r20,-120r-29,-7r0,-39r115,0r0,39r-24,7r-44,206r-70,0r-40,-160r-39,160r-70,0","w":370,"k":{"A":25,"\u00c4":25,"\u00c5":25,"\u00c2":25,"\u00c1":25,"\u00c3":25,"\u00c0":25," ":7,"f":9,"t":9,"v":9,"w":9,"y":9,"\u00ff":9,"a":18,"\u00e1":18,"\u00e0":18,"\u00e2":18,"\u00e4":18,"\u00e3":18,"\u00e5":18,"\u00e6":18,"s":18,"c":18,"\u00e7":18,"d":18,"e":18,"\u00e9":18,"\u00e8":18,"\u00ea":18,"\u00eb":18,"g":18,"m":9,"n":9,"\u00f1":9,"o":18,"\u00f8":18,"\u00f3":18,"\u00f2":18,"\u00f4":18,"\u00f6":18,"\u00f5":18,"\u0153":18,"p":9,"q":18,"r":9,"u":9,"\u00fa":9,"\u00f9":9,"\u00fb":9,"\u00fc":9,"x":9,"z":9}},"X":{"d":"135,-91r-33,45r23,7r0,39r-117,0r0,-39r25,-7r61,-83r-57,-77r-25,-7r0,-39r117,0r0,39r-24,7r30,40r30,-40r-24,-7r0,-39r117,0r0,39r-25,7r-57,77r61,83r25,7r0,39r-117,0r0,-39r23,-7","w":270,"k":{"C":13,"\u00c7":13,"G":13,"O":13,"\u00d8":13,"\u00d6":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"Q":13,"U":13,"\u00dc":13,"\u00da":13,"\u00db":13,"\u00d9":13,"S":13,"f":9,"t":9,"v":18,"w":18,"z":18}},"Y":{"d":"127,-143r34,-63r-27,-7r0,-39r117,0r0,39r-26,7r-68,112r0,48r29,7r0,39r-119,0r0,-39r29,-7r0,-48r-68,-112r-25,-7r0,-39r116,0r0,39r-26,7","w":253,"k":{"A":29,"\u00c4":29,"\u00c5":29,"\u00c2":29,"\u00c1":29,"\u00c3":29,"\u00c0":29,"J":36," ":7,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"f":18,"t":18,"v":27,"w":27,"y":27,"\u00ff":27,"a":36,"\u00e1":36,"\u00e0":36,"\u00e2":36,"\u00e4":36,"\u00e3":36,"\u00e5":36,"\u00e6":36,"s":40,"c":36,"\u00e7":36,"d":36,"e":36,"\u00e9":36,"\u00e8":36,"\u00ea":36,"\u00eb":36,"g":36,"m":27,"n":27,"\u00f1":27,"o":36,"\u00f8":36,"\u00f3":36,"\u00f2":36,"\u00f4":36,"\u00f6":36,"\u00f5":36,"\u0153":36,"p":27,"q":36,"r":27,"u":27,"\u00fa":27,"\u00f9":27,"\u00fb":27,"\u00fc":27,"x":27,"z":27}},"Z":{"d":"216,-201r-135,152r91,1r10,-31r41,0r0,79r-216,0r0,-50r136,-153r-75,-1r-10,31r-42,0r0,-79r200,0r0,51","w":230,"k":{"f":9,"t":9,"v":9,"w":9,"y":9,"\u00ff":9}},"a":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00b4":{"d":"35,-202r20,-50r54,0r-31,50r-43,0"},"\u00e6":{"d":"71,-58v0,27,40,16,49,2v-1,-8,-4,-19,-4,-27v-29,0,-45,7,-45,25xm210,4v-31,0,-53,-8,-68,-22v-32,32,-133,33,-133,-34v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53v21,-14,108,-21,128,2v14,-10,32,-15,55,-15v67,-2,91,36,88,112r-116,1v0,24,5,37,34,37v25,0,31,-5,30,-21v16,1,37,-2,51,1v3,50,-23,65,-81,65xm204,-146v-24,0,-27,15,-28,34v19,-1,41,2,58,-1v-1,-18,-2,-33,-30,-33","w":303},"&":{"d":"172,-199v0,33,-12,47,-54,69v14,15,33,30,53,44v4,-7,6,-14,8,-22r-15,-5r0,-38r90,0r0,38r-18,5v-4,19,-11,35,-21,50v12,7,25,14,36,19r-29,43v-14,-7,-29,-16,-43,-25v-23,15,-52,25,-87,25v-61,0,-87,-28,-87,-71v0,-34,7,-52,45,-75v-30,-49,-21,-114,54,-114v48,0,68,21,68,57xm133,-53v-21,-17,-41,-34,-57,-53v-26,18,-13,59,22,59v13,0,25,-2,35,-6xm104,-209v-25,2,-19,27,-11,44v22,-11,27,-16,27,-30v0,-7,-5,-14,-16,-14","w":254},"\u2248":{"d":"143,-126v-45,-1,-90,-34,-121,-6r-11,-43v5,-3,20,-14,44,-14v44,1,89,32,121,6r11,43v-5,3,-20,14,-44,14xm143,-59v-45,-1,-89,-34,-121,-7r-11,-42v5,-3,20,-14,44,-14v44,1,89,32,121,6r11,43v-5,3,-20,14,-44,14","w":198},"^":{"d":"7,-108r65,-144r54,0r65,144r-54,0r-38,-89r-38,89r-54,0","w":198},"~":{"d":"127,-76v-42,0,-75,-33,-105,-6r-13,-43v5,-3,20,-14,44,-14v41,0,75,31,105,6r13,43v-5,3,-20,14,-44,14","w":180},"*":{"d":"5,-203r9,-27r26,4r4,-26r28,0r3,26r27,-4r8,27r-24,11r13,24r-23,16r-18,-19r-19,19r-22,-16r12,-24","w":115},"@":{"d":"218,-43v22,-5,37,-27,37,-71v0,-65,-30,-90,-107,-90v-77,0,-108,35,-108,112v0,77,31,113,108,113v51,0,83,-7,101,-14r7,20v-17,8,-53,16,-108,16v-92,0,-134,-46,-134,-135v0,-89,42,-135,134,-135v92,0,131,39,131,114v0,60,-32,104,-107,93r0,-20v-5,7,-22,23,-47,23v-30,0,-53,-11,-53,-54r0,-41v-7,-71,82,-61,100,-32r0,-20r46,0r0,121xm169,-112v-12,-13,-48,-21,-48,7v0,22,-4,46,20,46v11,0,20,-6,28,-13r0,-40","w":286},"b":{"d":"138,-191v45,0,66,28,66,98v0,70,-21,97,-66,97v-33,0,-48,-17,-54,-26r0,22r-73,0r0,-36r20,-5r0,-180r-20,-6r0,-36r78,0r0,93v7,-9,23,-21,49,-21xm120,-43v27,0,29,-22,29,-51v0,-29,-2,-50,-29,-50v-17,0,-26,10,-31,18r0,65v5,8,14,18,31,18","w":217,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\\":{"d":"182,11r-58,0r-115,-274r58,0","w":190},"|":{"d":"13,-263r45,0r0,310r-45,0r0,-310","w":70},"{":{"d":"86,47v-65,3,-52,-52,-52,-107v0,-24,-6,-32,-28,-31r0,-34v70,3,-21,-147,80,-138r22,0r0,34v-58,-7,-4,94,-44,121v23,14,16,55,16,90v0,25,6,32,28,31r0,34r-22,0","w":115},"}":{"d":"29,-263v65,-3,52,52,52,107v0,24,6,32,28,31r0,34v-70,-3,21,147,-80,138r-22,0r0,-34v58,7,5,-93,44,-121v-22,-15,-15,-56,-15,-90v0,-25,-7,-32,-29,-31r0,-34r22,0","w":115},"[":{"d":"9,-263r70,0r0,34r-25,0r0,242r25,0r0,34r-70,0r0,-310","w":86},"]":{"d":"7,-263r70,0r0,310r-70,0r0,-34r25,0r0,-242r-25,0r0,-34","w":86},"\u02d8":{"d":"57,-198v-49,0,-54,-25,-54,-54r30,0v0,14,8,18,24,18v16,0,23,-4,23,-18r31,0v0,29,-5,54,-54,54"},"\u2022":{"d":"36,-108v0,-21,17,-37,38,-37v21,0,37,16,37,37v0,21,-16,37,-37,37v-21,0,-38,-16,-38,-37","w":147},"c":{"d":"100,4v-67,0,-89,-28,-89,-98v0,-70,22,-97,89,-97v35,0,60,7,77,24r0,45r-45,0v-2,-16,-13,-24,-31,-23v-33,0,-35,23,-35,52v0,29,2,51,35,51v22,0,32,-9,31,-24v15,1,35,-2,48,1v4,50,-21,69,-80,69","w":190},"\u02c7":{"d":"30,-202r-33,-50r42,0r18,18r18,-18r41,0r-32,50r-54,0"},"\u00b8":{"d":"67,38v0,-6,-6,-11,-23,-16r6,-22r18,0r-3,12v23,7,38,15,38,32v7,31,-64,32,-82,21r7,-22v4,4,43,9,39,-5"},"\u00a2":{"d":"101,-170v-33,0,-35,20,-35,46v0,25,2,46,35,46v22,0,32,-9,31,-24v15,1,35,-2,48,1v5,52,-26,70,-87,69r-10,32r-34,0r12,-36v-37,-9,-50,-38,-50,-89v0,-68,24,-92,92,-91r11,-32r34,0r-13,35v33,7,48,27,45,66r-48,0v1,-14,-9,-23,-31,-23","w":176},"\u02c6":{"d":"84,-252r32,50r-41,0r-18,-18r-18,18r-42,0r33,-50r54,0"},":":{"d":"9,-32v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm9,-136v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,35,-36,35v-20,0,-36,-15,-36,-35","w":90},",":{"d":"81,-31v0,27,-20,56,-47,81r-22,-15v28,-24,-3,-39,-3,-67v0,-20,16,-36,36,-36v20,0,36,16,36,37","w":90},"\u00a9":{"d":"263,-124v0,89,-43,128,-124,128v-81,0,-125,-39,-125,-128v0,-89,44,-128,125,-128v81,0,124,39,124,128xm238,-124v0,-77,-33,-106,-99,-106v-66,0,-100,29,-100,106v0,77,34,105,100,105v66,0,99,-28,99,-105xm117,-134v0,25,-3,44,26,43v16,0,26,-7,38,-13r17,38v-15,9,-31,17,-58,17v-58,1,-75,-30,-71,-87v-11,-68,88,-77,129,-48r-17,39v-16,-14,-64,-22,-64,11","w":277},"d":{"d":"13,-93v0,-70,22,-98,67,-98v26,0,41,12,48,21r0,-51r-20,-6r0,-36r78,0r0,222r20,5r0,36r-72,0r0,-22v-6,9,-21,26,-54,26v-45,0,-67,-27,-67,-97xm97,-43v17,0,26,-10,31,-18r0,-65v-5,-8,-14,-18,-31,-18v-27,0,-29,22,-29,51v0,29,2,50,29,50","w":215},"\u00b0":{"d":"74,-211v0,-13,-11,-23,-24,-23v-13,0,-23,10,-23,23v0,13,10,24,23,24v13,0,24,-11,24,-24xm9,-211v0,-23,18,-41,41,-41v23,0,42,18,42,41v0,23,-19,42,-42,42v-23,0,-41,-19,-41,-42","w":100},"\u00a8":{"d":"52,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm122,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32"},"\u00f7":{"d":"63,-54v0,-20,16,-35,36,-35v20,0,36,15,36,35v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm63,-195v0,-20,16,-35,36,-35v20,0,36,15,36,35v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm11,-148r176,0r0,47r-176,0r0,-47","w":198},"$":{"d":"86,-79v21,0,23,-6,23,-12v0,-9,-8,-11,-32,-13v-44,-3,-60,-21,-60,-51v0,-37,17,-61,74,-61r10,-32r34,0r-12,35v14,3,26,8,40,16r-18,42v-18,-10,-36,-15,-51,-15v-16,0,-21,5,-21,10v0,8,9,11,32,13v46,4,61,21,61,53v0,42,-22,62,-79,62r-10,32r-35,0r13,-35v-15,-3,-30,-9,-45,-18r18,-41v18,10,37,15,58,15","w":175},"\u02d9":{"d":"93,-234v0,20,-13,32,-36,32v-23,0,-36,-12,-36,-32v0,-20,13,-32,36,-32v23,0,36,12,36,32"},"\u0131":{"d":"111,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36","w":120,"k":{"f":5,"t":5}},"e":{"d":"185,-79r-116,1v0,24,5,37,34,37v25,0,32,-5,31,-21v16,1,36,-2,50,1v3,50,-23,65,-81,65v-69,0,-92,-28,-92,-98v0,-70,24,-97,87,-97v67,0,90,36,87,112xm98,-146v-24,0,-28,15,-29,34v19,-1,41,2,58,-1v-1,-18,-1,-33,-29,-33","w":196,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"8":{"d":"112,-46v28,0,40,-9,40,-29v0,-21,-8,-32,-40,-32v-32,0,-41,11,-41,33v0,19,13,28,41,28xm112,-153v26,0,29,-13,29,-27v0,-13,-7,-22,-29,-22v-22,0,-30,9,-30,23v0,13,4,26,30,26xm112,4v-103,0,-133,-95,-67,-135v-15,-11,-24,-27,-24,-50v0,-43,20,-71,91,-71v71,0,90,28,90,72v0,22,-9,38,-24,49v22,12,35,30,35,59v0,49,-33,76,-101,76","w":223,"k":{"7":5}},"\u2026":{"d":"22,-32v0,-20,16,-36,36,-36v20,0,35,16,35,36v0,20,-15,36,-35,36v-20,0,-36,-16,-36,-36xm144,-32v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm267,-32v0,-20,15,-36,35,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-35,-16,-35,-36","w":360},"\u2014":{"d":"352,-129r0,42r-344,0r0,-42r344,0","w":360},"\u2013":{"d":"172,-129r0,42r-164,0r0,-42r164,0","w":180},"=":{"d":"11,-112r176,0r0,47r-176,0r0,-47xm11,-184r176,0r0,47r-176,0r0,-47","w":198},"!":{"d":"22,-77r-12,-175r70,0r-12,175r-46,0xm9,-32v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36","w":90},"\u00a1":{"d":"68,-110r12,178r-70,0r12,-178r46,0xm81,-155v0,20,-16,35,-36,35v-20,0,-36,-15,-36,-35v0,-20,16,-36,36,-36v20,0,36,16,36,36","w":90},"f":{"d":"126,0r-108,0r0,-36r20,-5r0,-103r-25,0r0,-34r25,-7v-4,-50,9,-80,60,-81v22,0,34,2,40,6r0,45v-12,-5,-42,-12,-41,11r0,17r36,0r0,43r-36,0r0,103r29,8r0,33","w":142,"k":{"a":5,"\u00e1":5,"\u00e0":5,"\u00e2":5,"\u00e4":5,"\u00e3":5,"\u00e5":5,"\u00e6":5,"c":5,"\u00e7":5,"d":5,"e":5,"\u00e9":5,"\u00e8":5,"\u00ea":5,"\u00eb":5,"o":5,"\u00f8":5,"\u00f3":5,"\u00f2":5,"\u00f4":5,"\u00f6":5,"\u00f5":5,"\u0153":5,"q":5}},"5":{"d":"112,4v-51,0,-106,-12,-97,-87v19,1,43,-2,60,1v0,27,4,38,37,38v30,0,39,-13,39,-42v0,-27,-7,-41,-42,-41v-33,0,-36,17,-38,24r-48,0r0,-145r171,0r0,51r-119,-1r0,45v9,-13,25,-21,51,-21v52,0,86,27,86,88v0,59,-33,90,-100,90","w":226,"k":{"7":7,"9":7,"1":7}},"4":{"d":"6,-102r116,-150r52,0r0,142r36,0r0,42r-36,0r0,22r25,7r0,39r-115,0r0,-39r29,-7r0,-22r-107,0r0,-34xm113,-110r1,-63r-50,64","w":222,"k":{"9":7}},"\u2044":{"d":"54,0r-50,0r158,-248r50,0","w":216},"g":{"d":"80,-4v-45,0,-67,-26,-67,-94v0,-68,22,-93,67,-93v33,0,48,17,54,26r0,-22r72,0r0,35r-20,6v-6,105,32,218,-95,218v-30,0,-51,-6,-68,-15r0,-48v22,11,47,16,67,16v35,1,40,-16,38,-48v-5,7,-20,19,-48,19xm97,-50v17,0,26,-10,31,-18r0,-58v-5,-8,-14,-18,-31,-18v-27,0,-29,20,-29,47v0,27,2,47,29,47","w":213},"`":{"d":"59,-252r19,50r-43,0r-30,-50r54,0"},">":{"d":"187,-97r-176,61r0,-54r110,-36r-110,-36r0,-54r176,61r0,58","w":198},"\u00ab":{"d":"11,-131r47,-27r0,34r-20,16r20,16r0,34r-47,-27r0,-46xm65,-131r47,-35r0,36r-20,22r20,22r0,36r-47,-35r0,-46","w":122},"\u00bb":{"d":"112,-85r-47,27r0,-34r20,-16r-20,-16r0,-34r47,27r0,46xm58,-85r-47,35r0,-36r20,-22r-20,-22r0,-36r47,35r0,46","w":122},"\u2039":{"d":"11,-131r47,-27r0,34r-20,16r20,16r0,34r-47,-27r0,-46","w":68},"\u203a":{"d":"58,-85r-47,27r0,-34r20,-16r-20,-16r0,-34r47,27r0,46","w":68},"h":{"d":"91,-127r0,86r20,5r0,36r-98,0r0,-36r20,-5r0,-180r-20,-6r0,-36r78,0r0,93v20,-28,111,-32,111,28r0,101r20,5r0,36r-78,0r0,-120v2,-32,-44,-19,-53,-7","w":230,"k":{"v":9,"w":9,"y":9,"\u00ff":9}},"\u02dd":{"d":"6,-202r17,-50r52,0r-25,50r-44,0xm64,-202r16,-50r52,0r-25,50r-43,0"},"-":{"d":"112,-129r0,42r-98,0r0,-42r98,0","w":126},"i":{"d":"111,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36xm25,-234v0,-20,13,-32,36,-32v23,0,35,12,35,32v0,20,-12,32,-35,32v-23,0,-36,-12,-36,-32","w":120,"k":{"f":5,"t":5}},"j":{"d":"-11,21v13,5,44,12,44,-12r0,-155r-20,-6r0,-35r78,0r0,205v9,48,-64,65,-102,47r0,-44xm25,-234v0,-20,13,-32,36,-32v23,0,35,12,35,32v0,20,-12,32,-35,32v-23,0,-36,-12,-36,-32","w":115},"k":{"d":"212,-152v-27,8,-41,29,-61,45r48,66r19,5r0,36r-96,0r0,-36r12,-4r-21,-34v-8,10,-29,13,-22,33r20,5r0,36r-98,0r0,-36r20,-5r0,-180r-20,-6r0,-36r78,0r-2,160r46,-42r-19,-7r0,-35r96,0r0,35","w":226,"k":{"f":5,"t":5,"a":5,"\u00e1":5,"\u00e0":5,"\u00e2":5,"\u00e4":5,"\u00e3":5,"\u00e5":5,"\u00e6":5,"c":5,"\u00e7":5,"d":5,"e":5,"\u00e9":5,"\u00e8":5,"\u00ea":5,"\u00eb":5,"g":5,"\u0131":5,"i":5,"\u00ed":5,"\u00ec":5,"\u00ee":5,"\u00ef":5,"o":5,"\u00f8":5,"\u00f3":5,"\u00f2":5,"\u00f4":5,"\u00f6":5,"\u00f5":5,"\u0153":5,"q":5,"l":5}},"l":{"d":"109,0r-98,0r0,-36r20,-5r0,-180r-20,-6r0,-36r78,0r0,222r20,5r0,36","w":118,"k":{"f":5,"t":5}},"<":{"d":"187,-36r-176,-61r0,-58r176,-61r0,54r-110,36r110,36r0,54","w":198},"m":{"d":"91,-126r0,85r20,5r0,36r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r72,0r0,22v9,-21,91,-44,100,1v7,-9,28,-27,58,-27v25,0,49,14,49,46r0,104r20,5r0,36r-78,0r0,-126v0,-23,-38,-13,-43,0r0,85r20,5r0,36r-77,0r0,-126v0,-23,-38,-13,-43,0","w":319,"k":{"v":9,"w":9,"y":9,"\u00ff":9}},"\u00af":{"d":"9,-252r96,0r0,41r-96,0r0,-41"},"n":{"d":"91,-127r0,86r20,5r0,36r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r72,0r0,22v22,-34,117,-39,117,23r0,101r20,5r0,36r-78,0r0,-120v2,-32,-44,-19,-53,-7","w":229,"k":{"v":9,"w":9,"y":9,"\u00ff":9}},"9":{"d":"12,-164v0,-60,39,-88,102,-88v61,0,100,31,100,99v0,88,-51,134,-101,160r-62,-14r0,-8v32,-18,73,-39,93,-83v-53,42,-132,20,-132,-66xm73,-166v0,54,61,49,83,19v2,-35,-12,-57,-42,-57v-27,0,-41,11,-41,38","w":226},"\u2260":{"d":"34,-37r16,-28r-39,0r0,-47r66,0r15,-25r-81,0r0,-47r108,0r23,-40r22,13r-16,27r39,0r0,47r-66,0r-15,25r81,0r0,47r-108,0r-23,40","w":198},"#":{"d":"11,-187r32,0r0,-61r47,0r0,61r36,0r0,-61r47,0r0,61r32,0r0,47r-32,0r0,32r32,0r0,47r-32,0r0,61r-47,0r0,-61r-36,0r0,61r-47,0r0,-61r-32,0r0,-47r32,0r0,-32r-32,0r0,-47xm90,-140r0,32r36,0r0,-32r-36,0","w":216},"o":{"d":"101,4v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v67,0,90,28,90,98v0,70,-23,97,-90,97xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u0153":{"d":"310,-79r-116,1v0,24,5,37,34,37v25,0,31,-5,30,-21v16,1,37,-2,51,1v3,50,-23,65,-81,65v-33,0,-53,-6,-65,-20v-12,14,-31,20,-62,20v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v31,0,50,6,62,20v11,-14,29,-20,59,-20v67,-2,91,36,88,112xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51xm222,-146v-24,0,-27,15,-28,34v19,-1,41,2,58,-1v-1,-18,-2,-33,-30,-33","w":321},"\u02db":{"d":"53,33v0,19,33,16,42,10r7,22v-20,9,-82,17,-82,-25v0,-27,31,-45,50,-50r16,10v-21,6,-33,17,-33,33"},"1":{"d":"18,-237v31,-8,58,-18,100,-15r0,207r40,10r0,35r-140,0r0,-35r39,-10r0,-156r-39,3r0,-39","w":166,"k":{"4":11,"7":7,"9":7}},"\u00f8":{"d":"191,-94v0,89,-56,109,-132,93r-12,19r-27,0r18,-30v-19,-15,-27,-41,-27,-82v0,-88,58,-109,132,-91r12,-20r27,0r-19,30v19,15,28,41,28,81xm117,-143v-55,-17,-55,40,-49,81xm85,-45v48,18,59,-34,48,-80","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"p":{"d":"138,4v-26,0,-42,-12,-49,-21r0,44r24,6r0,35r-102,0r0,-35r20,-6r0,-173r-20,-6r0,-35r73,0r0,22v6,-9,21,-26,54,-26v45,0,66,28,66,98v0,70,-21,97,-66,97xm120,-144v-17,0,-26,10,-31,18r0,65v5,8,14,18,31,18v27,0,29,-22,29,-51v0,-29,-2,-50,-29,-50","w":217,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"(":{"d":"61,-108v0,76,17,121,31,155r-47,0v-13,-23,-36,-72,-36,-155v0,-83,23,-132,36,-155r47,0v-14,34,-31,79,-31,155","w":97},")":{"d":"36,-108v0,-76,-17,-121,-31,-155r47,0v13,23,36,72,36,155v0,83,-23,132,-36,155r-47,0v14,-34,31,-79,31,-155","w":97},"%":{"d":"67,-216v-25,-1,-13,26,-16,46v0,7,5,12,16,12v24,1,15,-27,15,-46v0,-7,-4,-12,-15,-12xm67,-252v60,-1,59,32,59,85v0,29,-18,45,-59,45v-60,1,-60,-32,-60,-85v0,-29,19,-45,60,-45xm97,0r-50,0r158,-248r51,0xm236,-32v24,1,15,-27,15,-46v0,-7,-4,-12,-15,-12v-24,-1,-15,27,-15,46v0,7,4,12,15,12xm236,4v-60,1,-60,-32,-60,-85v0,-29,19,-45,60,-45v60,-1,59,32,59,85v0,29,-18,45,-59,45","w":302},".":{"d":"9,-32v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36","w":90},"\u00b7":{"d":"9,-108v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36","w":90},"\u2030":{"d":"67,-216v-25,-1,-13,26,-16,46v0,7,5,12,16,12v24,1,15,-27,15,-46v0,-7,-4,-12,-15,-12xm67,-252v60,-1,59,32,59,85v0,29,-18,45,-59,45v-60,1,-60,-32,-60,-85v0,-29,19,-45,60,-45xm97,0r-50,0r158,-248r51,0xm236,-32v24,1,15,-27,15,-46v0,-7,-4,-12,-15,-12v-24,-1,-15,27,-15,46v0,7,4,12,15,12xm236,4v-60,1,-60,-32,-60,-85v0,-29,19,-45,60,-45v60,-1,59,32,59,85v0,29,-18,45,-59,45xm365,-32v25,1,13,-26,16,-46v0,-7,-5,-12,-16,-12v-24,-1,-15,27,-15,46v0,7,4,12,15,12xm365,4v-60,1,-59,-32,-59,-85v0,-29,18,-45,59,-45v60,-1,60,32,60,85v0,29,-19,45,-60,45","w":432},"+":{"d":"11,-148r65,0r0,-64r46,0r0,64r65,0r0,47r-65,0r0,65r-46,0r0,-65r-65,0r0,-47","w":198},"q":{"d":"80,4v-45,0,-67,-28,-67,-98v0,-70,22,-97,67,-97v33,0,48,17,54,26r0,-22r72,0r0,35r-20,6r0,173r20,6r0,35r-102,0r0,-35r24,-6r0,-44v-7,9,-22,21,-48,21xm97,-144v-27,0,-29,22,-29,51v0,29,2,50,29,50v17,0,26,-10,31,-18r0,-65v-5,-8,-14,-18,-31,-18","w":215},"?":{"d":"51,-32v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,36,-36,36v-20,0,-36,-16,-36,-36xm177,-190v0,71,-87,47,-72,113r-37,0v-12,-23,-20,-60,17,-81v19,-11,28,-15,28,-27v-7,-28,-61,-18,-84,-3r-21,-47v16,-9,35,-21,83,-21v63,0,86,30,86,66","w":185},"\u00bf":{"d":"134,-155v0,20,-16,35,-36,35v-20,0,-35,-15,-35,-35v0,-20,15,-36,35,-36v20,0,36,16,36,36xm80,-110r38,0v12,23,20,60,-17,81v-19,11,-28,17,-28,29v6,29,60,19,83,4r21,48v-16,9,-35,20,-83,20v-63,0,-86,-31,-86,-67v0,-48,29,-55,58,-72v18,-10,19,-23,14,-43","w":185},"\"":{"d":"22,-166r-9,-86r63,0r-9,86r-45,0xm98,-166r-9,-86r62,0r-9,86r-44,0","w":164},"\u201e":{"d":"86,-31v0,27,-20,56,-47,81r-22,-15v28,-24,-3,-39,-3,-67v0,-20,16,-36,36,-36v20,0,36,16,36,37xm172,-31v0,27,-20,56,-47,81r-21,-15v28,-24,-3,-39,-3,-67v0,-20,15,-36,35,-36v20,0,36,16,36,37","w":193},"\u201c":{"d":"14,-193v0,-27,20,-56,47,-81r22,16v-28,24,3,39,3,67v0,20,-16,35,-36,35v-20,0,-36,-16,-36,-37xm101,-193v0,-27,20,-56,47,-81r21,16v-28,24,3,39,3,67v0,20,-16,35,-36,35v-20,0,-35,-16,-35,-37","w":193},"\u201d":{"d":"93,-226v0,27,-20,56,-47,81r-22,-16v28,-23,-2,-38,-2,-66v0,-20,15,-36,35,-36v20,0,36,16,36,37xm179,-226v0,27,-20,56,-47,81r-21,-16v28,-23,-3,-38,-3,-66v0,-20,16,-36,36,-36v20,0,35,16,35,37","w":193},"\u2018":{"d":"14,-193v0,-27,20,-56,47,-81r22,16v-28,24,3,39,3,67v0,20,-16,35,-36,35v-20,0,-36,-16,-36,-37","w":107},"\u2019":{"d":"93,-226v0,27,-20,56,-47,81r-22,-16v28,-23,-2,-38,-2,-66v0,-20,15,-36,35,-36v20,0,36,16,36,37","w":107},"\u201a":{"d":"86,-31v0,27,-20,56,-47,81r-22,-15v28,-24,-3,-39,-3,-67v0,-20,16,-36,36,-36v20,0,36,16,36,37","w":107},"'":{"d":"22,-166r-9,-86r63,0r-9,86r-45,0","w":88},"r":{"d":"115,0r-102,0r0,-36r20,-5r0,-105r-20,-6r0,-35r71,0r0,32v9,-22,38,-45,68,-32r0,57v-26,-7,-45,-3,-61,10r0,79r24,6r0,35","w":159,"k":{"a":5,"\u00e1":5,"\u00e0":5,"\u00e2":5,"\u00e4":5,"\u00e3":5,"\u00e5":5,"\u00e6":5}},"\u00ae":{"d":"82,-220v0,27,-13,39,-37,39v-24,0,-37,-12,-37,-39v0,-27,13,-38,37,-38v24,0,37,11,37,38xm74,-220v0,-23,-9,-32,-29,-32v-20,0,-29,9,-29,32v0,23,9,33,29,33v20,0,29,-10,29,-33xm39,-212r0,18r-12,0r0,-51v19,0,37,-3,37,19v0,6,-3,11,-8,13r8,19r-13,0v-4,-6,-1,-19,-12,-18xm39,-222v11,4,20,-10,8,-13r-8,0r0,13","w":90},"\u02da":{"d":"30,-229v0,-15,12,-27,27,-27v15,0,27,12,27,27v0,15,-12,27,-27,27v-15,0,-27,-12,-27,-27xm70,-229v0,-7,-6,-13,-13,-13v-7,0,-13,6,-13,13v0,7,6,13,13,13v7,0,13,-6,13,-13"},"s":{"d":"115,-145v-14,-4,-55,-3,-49,12v0,9,6,13,39,18v57,8,70,19,70,56v0,70,-111,75,-164,47r0,-53r43,0r6,21v13,5,69,6,60,-11v0,-10,-5,-10,-42,-16v-54,-8,-67,-23,-67,-58v0,-64,94,-75,152,-50r0,53r-43,0","w":185},";":{"d":"9,-136v0,-20,16,-36,36,-36v20,0,36,16,36,36v0,20,-16,35,-36,35v-20,0,-36,-15,-36,-35xm81,-31v0,27,-20,56,-47,81r-22,-15v28,-24,-3,-39,-3,-67v0,-20,16,-36,36,-36v20,0,36,16,36,37","w":90},"7":{"d":"192,-248r0,35v-44,56,-74,126,-74,213r-67,0v0,-77,38,-151,75,-201r-62,1r-9,31r-42,0r0,-79r179,0","w":201,"k":{"4":18,"3":5,"6":13,"8":5}},"6":{"d":"215,-85v0,60,-39,89,-102,89v-61,0,-100,-31,-100,-100v0,-88,50,-134,100,-160r63,14r0,9v-32,18,-73,39,-93,83v53,-42,132,-21,132,65xm113,-44v27,0,41,-11,41,-39v0,-53,-61,-48,-83,-19v-2,35,12,58,42,58","w":226,"k":{"7":11,"9":11,"1":5}},"\/":{"d":"67,11r-58,0r115,-274r58,0","w":190},"t":{"d":"130,-144r-43,0r0,82v-2,26,30,19,42,14r0,44v-8,4,-20,8,-40,8v-79,2,-60,-77,-62,-148r-25,0r0,-34r25,-7r0,-36r60,-8r0,42r43,0r0,43","w":140},"3":{"d":"108,4v-49,0,-105,-12,-96,-87v19,1,42,-2,59,1v-4,27,6,38,37,38v29,0,40,-8,40,-30v0,-32,-31,-37,-67,-34r0,-43v30,1,57,1,57,-29v0,-17,-8,-25,-30,-25v-15,0,-36,3,-32,38v-19,-1,-42,2,-59,-1v-8,-64,24,-84,91,-84v65,0,90,23,90,71v0,27,-11,40,-26,50v23,12,37,29,37,63v0,46,-33,72,-101,72","w":219,"k":{"7":5}},"\u02dc":{"d":"85,-238v8,0,11,-5,11,-13r25,0v4,77,-56,44,-92,34v-8,0,-12,4,-12,12r-24,0v-4,-78,57,-44,92,-33"},"\u2122":{"d":"25,-187r0,-52r-18,0r0,-13r51,0r0,13r-18,0r0,52r-15,0xm88,-252r11,36r11,-36r24,0r0,65r-16,0r1,-48r-13,42r-13,0r-13,-42r0,48r-15,0r0,-65r23,0","w":148},"2":{"d":"163,-79r42,0r0,79r-192,0v-4,-83,23,-114,85,-141v32,-14,49,-22,49,-38v0,-23,-15,-26,-33,-26v-19,0,-41,3,-38,39v-19,-1,-42,2,-59,-1v-4,-70,26,-85,98,-85v64,0,91,18,91,72v0,42,-32,54,-78,78v-42,22,-56,32,-56,54r82,-1","w":219,"k":{"4":4}},"u":{"d":"139,-60r0,-86r-21,-6r0,-35r78,0r0,146r21,5r0,36r-73,0r0,-23v-21,34,-116,41,-116,-22r0,-101r-21,-6r0,-35r78,0r0,120v-1,32,45,19,54,7","w":223},"_":{"d":"164,30r0,38r-148,0r0,-38r148,0","w":180},"v":{"d":"112,-49r28,-97r-21,-5r0,-36r90,0r0,35r-17,5r-45,147r-81,0r-46,-147r-16,-5r0,-35r101,0r0,36r-20,5","w":212,"k":{"a":4,"\u00e1":4,"\u00e0":4,"\u00e2":4,"\u00e4":4,"\u00e3":4,"\u00e5":4,"s":4,"c":4,"\u00e7":4,"d":4,"e":4,"\u00e9":4,"\u00e8":4,"\u00ea":4,"\u00eb":4,"g":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f2":4,"\u00f4":4,"\u00f6":4,"\u00f5":4,"q":4}},"w":{"d":"53,0r-31,-147r-17,-5r0,-35r97,0r0,35r-19,6r14,86r35,-127r52,0r34,126r15,-85r-19,-6r0,-35r83,0r0,35r-17,5r-31,147r-71,0r-27,-106r-26,106r-72,0","w":302,"k":{"a":4,"\u00e1":4,"\u00e0":4,"\u00e2":4,"\u00e4":4,"\u00e3":4,"\u00e5":4,"s":4,"c":4,"\u00e7":4,"d":4,"e":4,"\u00e9":4,"\u00e8":4,"\u00ea":4,"\u00eb":4,"g":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f2":4,"\u00f4":4,"\u00f6":4,"\u00f5":4,"q":4}},"x":{"d":"80,-40r17,4r0,36r-89,0r0,-36r15,-4r48,-59v-20,-17,-30,-45,-59,-53r0,-35r109,0r0,35r-16,5r20,21r20,-21r-15,-5r0,-35r86,0r0,35v-30,9,-41,39,-62,57r51,55r15,4r0,36r-110,0r0,-36r17,-4r-25,-28","w":227,"k":{"c":4,"\u00e7":4,"d":4,"e":4,"\u00e9":4,"\u00e8":4,"\u00ea":4,"\u00eb":4,"g":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f2":4,"\u00f4":4,"\u00f6":4,"\u00f5":4,"\u0153":4,"q":4}},"y":{"d":"118,-64r31,-82r-21,-5r0,-36r90,0r0,35r-17,5r-53,127r-29,88r-72,0r39,-76r-65,-139r-17,-5r0,-35r107,0r0,36r-21,5","w":221},"z":{"d":"180,0r-169,0r0,-45r93,-99r-40,0r-5,19r-43,0r0,-62r159,0r0,45r-94,98r51,0r6,-19r42,0r0,63","w":190},"0":{"d":"115,-201v-47,0,-35,53,-35,96v0,41,2,57,35,57v47,0,36,-52,36,-96v0,-41,-3,-57,-36,-57xm115,-252v93,0,98,62,98,155v0,72,-27,101,-98,101v-93,0,-97,-62,-97,-155v0,-72,26,-101,97,-101","w":230},"\u00c4":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0xm126,-299v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm196,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"\u00c5":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0xm104,-293v0,-15,12,-27,27,-27v15,0,27,12,27,27v0,15,-12,27,-27,27v-15,0,-27,-12,-27,-27xm144,-293v0,-7,-6,-13,-13,-13v-7,0,-13,6,-13,13v0,7,6,13,13,13v7,0,13,-6,13,-13","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"\u00c7":{"d":"135,38v0,-6,-6,-11,-23,-16r6,-19v-78,-3,-105,-39,-105,-129v0,-95,29,-130,119,-130v33,0,66,4,94,18r0,71r-42,0r-9,-33v-10,-3,-23,-5,-40,-5v-54,0,-59,32,-59,79v0,47,5,79,59,79v17,0,30,-2,40,-5r9,-33r42,0r0,71v-27,14,-58,18,-90,18r-2,8v23,7,38,15,38,32v7,31,-64,32,-82,21r6,-22v4,4,43,9,39,-5","w":240},"\u00c9":{"d":"101,-107r0,58r78,0r8,-30r42,0r0,79r-215,0r0,-39r26,-7r0,-160r-26,-7r0,-39r215,0r0,79r-42,0r-8,-30r-78,0r0,53r37,0r5,-17r33,0r0,77r-33,0r-5,-17r-37,0xm101,-266r20,-51r54,0r-31,51r-43,0","w":239},"\u00d1":{"d":"247,0r-76,0r-80,-171r3,125r28,7r0,39r-108,0r0,-39r26,-7r0,-160r-26,-7r0,-39r102,0r80,171r-3,-125r-28,-7r0,-39r108,0r0,39r-26,7r0,206xm168,-303v8,0,11,-4,11,-12r25,0v3,76,-57,43,-92,33v-8,0,-12,4,-12,12r-24,0v-4,-77,57,-42,92,-33","w":279},"\u00d6":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,95,-31,130,-117,130v-86,0,-117,-35,-117,-130xm183,-126v0,-47,-3,-79,-53,-79v-50,0,-54,32,-54,79v0,47,4,79,54,79v50,0,53,-32,53,-79xm125,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32xm195,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"\u00dc":{"d":"91,-206r0,111v0,31,8,48,47,48v39,0,47,-17,47,-48r0,-111r-29,-7r0,-39r115,0r0,39r-25,7r0,106v0,75,-27,104,-108,104v-81,0,-108,-29,-108,-104r0,-106r-26,-7r0,-39r116,0r0,39xm133,-299v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm203,-299v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32","w":275,"k":{"A":14,"\u00c4":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c3":14,"\u00c0":14}},"\u00e1":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17xm72,-202r19,-50r54,0r-30,50r-43,0","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00e0":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17xm97,-252r20,50r-44,0r-30,-50r54,0","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00e2":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17xm121,-252r33,50r-42,0r-18,-18r-18,18r-41,0r32,-50r54,0","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00e4":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17xm90,-234v0,20,-10,32,-31,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,31,12,31,32xm159,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00e3":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17xm122,-238v8,0,12,-5,12,-13r24,0v4,77,-56,44,-92,34v-8,0,-11,4,-11,12r-25,0v0,-40,13,-51,36,-51v24,0,36,18,56,18","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00e5":{"d":"21,-178v17,-8,37,-13,74,-13v96,0,78,69,80,150r21,5r0,36r-73,0r0,-22v-5,9,-20,26,-59,26v-33,0,-55,-22,-55,-56v0,-45,32,-64,109,-64v7,-26,-23,-35,-50,-28r-5,19r-42,0r0,-53xm88,-42v23,-2,34,-14,30,-42v-30,0,-47,7,-47,25v0,10,7,17,17,17xm67,-229v0,-15,12,-27,27,-27v15,0,27,12,27,27v0,15,-12,27,-27,27v-15,0,-27,-12,-27,-27xm107,-229v0,-7,-6,-13,-13,-13v-7,0,-13,6,-13,13v0,7,6,13,13,13v7,0,13,-6,13,-13","w":203,"k":{"t":4,"v":9,"w":9,"y":9,"\u00ff":9,"p":4,"u":4,"\u00fa":4,"\u00f9":4,"\u00fb":4,"\u00fc":4,"x":5}},"\u00e7":{"d":"107,38v0,-6,-6,-11,-23,-16r5,-19v-58,-3,-78,-31,-78,-97v0,-70,22,-97,89,-97v35,0,60,7,77,24r0,45r-45,0v-2,-16,-13,-24,-31,-23v-33,0,-35,23,-35,52v0,29,2,51,35,51v22,0,32,-9,31,-24v15,1,35,-2,48,1v4,48,-19,67,-73,68r-2,9v23,7,38,15,38,32v7,31,-64,32,-82,21r7,-22v4,4,43,9,39,-5","w":190},"\u00e9":{"d":"185,-79r-116,1v0,24,5,37,34,37v25,0,32,-5,31,-21v16,1,36,-2,50,1v3,50,-23,65,-81,65v-69,0,-92,-28,-92,-98v0,-70,24,-97,87,-97v67,0,90,36,87,112xm98,-146v-24,0,-28,15,-29,34v19,-1,41,2,58,-1v-1,-18,-1,-33,-29,-33xm76,-202r19,-50r54,0r-30,50r-43,0","w":196,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00e8":{"d":"185,-79r-116,1v0,24,5,37,34,37v25,0,32,-5,31,-21v16,1,36,-2,50,1v3,50,-23,65,-81,65v-69,0,-92,-28,-92,-98v0,-70,24,-97,87,-97v67,0,90,36,87,112xm98,-146v-24,0,-28,15,-29,34v19,-1,41,2,58,-1v-1,-18,-1,-33,-29,-33xm101,-252r20,50r-44,0r-30,-50r54,0","w":196,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00ea":{"d":"185,-79r-116,1v0,24,5,37,34,37v25,0,32,-5,31,-21v16,1,36,-2,50,1v3,50,-23,65,-81,65v-69,0,-92,-28,-92,-98v0,-70,24,-97,87,-97v67,0,90,36,87,112xm98,-146v-24,0,-28,15,-29,34v19,-1,41,2,58,-1v-1,-18,-1,-33,-29,-33xm125,-252r32,50r-41,0r-18,-18r-18,18r-41,0r32,-50r54,0","w":196,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00eb":{"d":"185,-79r-116,1v0,24,5,37,34,37v25,0,32,-5,31,-21v16,1,36,-2,50,1v3,50,-23,65,-81,65v-69,0,-92,-28,-92,-98v0,-70,24,-97,87,-97v67,0,90,36,87,112xm98,-146v-24,0,-28,15,-29,34v19,-1,41,2,58,-1v-1,-18,-1,-33,-29,-33xm93,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm163,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32","w":196,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00ed":{"d":"111,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36xm38,-202r20,-50r54,0r-31,50r-43,0","w":120,"k":{"f":5,"t":5}},"\u00ec":{"d":"111,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36xm63,-252r19,50r-43,0r-30,-50r54,0","w":120,"k":{"f":5,"t":5}},"\u00ee":{"d":"111,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36xm87,-252r33,50r-42,0r-18,-18r-18,18r-41,0r32,-50r54,0","w":120,"k":{"f":5,"t":5}},"\u00ef":{"d":"111,0r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r78,0r0,146r20,5r0,36xm55,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm125,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32","w":120,"k":{"f":5,"t":5}},"\u00f1":{"d":"91,-127r0,86r20,5r0,36r-98,0r0,-36r20,-5r0,-105r-20,-6r0,-35r72,0r0,22v22,-34,117,-39,117,23r0,101r20,5r0,36r-78,0r0,-120v2,-32,-44,-19,-53,-7xm143,-238v8,0,11,-5,11,-13r25,0v3,77,-57,44,-93,34v-8,0,-11,4,-11,12r-25,0v0,-40,13,-51,36,-51v24,0,37,18,57,18","w":229,"k":{"v":9,"w":9,"y":9,"\u00ff":9}},"\u00f3":{"d":"101,4v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v67,0,90,28,90,98v0,70,-23,97,-90,97xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51xm78,-202r20,-50r54,0r-31,50r-43,0","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00f2":{"d":"101,4v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v67,0,90,28,90,98v0,70,-23,97,-90,97xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51xm103,-252r20,50r-43,0r-31,-50r54,0","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00f4":{"d":"101,4v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v67,0,90,28,90,98v0,70,-23,97,-90,97xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51xm128,-252r32,50r-41,0r-18,-18r-18,18r-42,0r33,-50r54,0","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00f6":{"d":"101,4v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v67,0,90,28,90,98v0,70,-23,97,-90,97xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51xm96,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm166,-234v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00f5":{"d":"101,4v-67,0,-90,-28,-90,-98v0,-70,23,-97,90,-97v67,0,90,28,90,98v0,70,-23,97,-90,97xm101,-42v33,0,35,-20,35,-52v0,-32,-2,-51,-35,-51v-33,0,-35,20,-35,52v0,32,2,51,35,51xm129,-238v8,0,11,-5,11,-13r25,0v4,77,-56,44,-92,34v-8,0,-12,4,-12,12r-24,0v-4,-78,57,-44,92,-33","w":201,"k":{"v":5,"w":5,"y":5,"\u00ff":5,"a":-4,"\u00e1":-4,"\u00e0":-4,"\u00e2":-4,"\u00e4":-4,"\u00e3":-4,"\u00e5":-4,"c":-4,"\u00e7":-4,"d":-4,"e":-4,"\u00e9":-4,"\u00e8":-4,"\u00ea":-4,"\u00eb":-4,"g":-4,"o":-4,"\u00f8":-4,"\u00f3":-4,"\u00f2":-4,"\u00f4":-4,"\u00f6":-4,"\u00f5":-4,"q":-4,"x":5}},"\u00fa":{"d":"139,-60r0,-86r-21,-6r0,-35r78,0r0,146r21,5r0,36r-73,0r0,-23v-21,34,-116,41,-116,-22r0,-101r-21,-6r0,-35r78,0r0,120v-1,32,45,19,54,7xm82,-202r20,-50r54,0r-31,50r-43,0","w":223},"\u00f9":{"d":"139,-60r0,-86r-21,-6r0,-35r78,0r0,146r21,5r0,36r-73,0r0,-23v-21,34,-116,41,-116,-22r0,-101r-21,-6r0,-35r78,0r0,120v-1,32,45,19,54,7xm107,-252r20,50r-43,0r-31,-50r54,0","w":223},"\u00fb":{"d":"139,-60r0,-86r-21,-6r0,-35r78,0r0,146r21,5r0,36r-73,0r0,-23v-21,34,-116,41,-116,-22r0,-101r-21,-6r0,-35r78,0r0,120v-1,32,45,19,54,7xm132,-252r32,50r-41,0r-18,-18r-18,18r-42,0r33,-50r54,0","w":223},"\u00fc":{"d":"139,-60r0,-86r-21,-6r0,-35r78,0r0,146r21,5r0,36r-73,0r0,-23v-21,34,-116,41,-116,-22r0,-101r-21,-6r0,-35r78,0r0,120v-1,32,45,19,54,7xm100,-234v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm170,-234v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32","w":223},"\u00ff":{"d":"118,-64r31,-82r-21,-5r0,-36r90,0r0,35r-17,5r-53,127r-29,88r-72,0r39,-76r-65,-139r-17,-5r0,-35r107,0r0,36r-21,5xm106,-234v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32xm176,-234v0,20,-10,32,-31,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,31,12,31,32","w":221},"\u0178":{"d":"127,-143r34,-63r-27,-7r0,-39r117,0r0,39r-26,7r-68,112r0,48r29,7r0,39r-119,0r0,-39r29,-7r0,-48r-68,-112r-25,-7r0,-39r116,0r0,39r-26,7xm122,-299v0,20,-9,32,-30,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,30,12,30,32xm192,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32","w":253,"k":{"A":29,"\u00c4":29,"\u00c5":29,"\u00c2":29,"\u00c1":29,"\u00c3":29,"\u00c0":29,"J":36," ":7,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"f":18,"t":18,"v":27,"w":27,"y":27,"\u00ff":27,"a":36,"\u00e1":36,"\u00e0":36,"\u00e2":36,"\u00e4":36,"\u00e3":36,"\u00e5":36,"\u00e6":36,"s":40,"c":36,"\u00e7":36,"d":36,"e":36,"\u00e9":36,"\u00e8":36,"\u00ea":36,"\u00eb":36,"g":36,"m":27,"n":27,"\u00f1":27,"o":36,"\u00f8":36,"\u00f3":36,"\u00f2":36,"\u00f4":36,"\u00f6":36,"\u00f5":36,"\u0153":36,"p":27,"q":36,"r":27,"u":27,"\u00fa":27,"\u00f9":27,"\u00fb":27,"\u00fc":27,"x":27,"z":27}},"\u00da":{"d":"91,-206r0,111v0,31,8,48,47,48v39,0,47,-17,47,-48r0,-111r-29,-7r0,-39r115,0r0,39r-25,7r0,106v0,75,-27,104,-108,104v-81,0,-108,-29,-108,-104r0,-106r-26,-7r0,-39r116,0r0,39xm115,-266r20,-51r54,0r-31,51r-43,0","w":275,"k":{"A":14,"\u00c4":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c3":14,"\u00c0":14}},"\u00db":{"d":"91,-206r0,111v0,31,8,48,47,48v39,0,47,-17,47,-48r0,-111r-29,-7r0,-39r115,0r0,39r-25,7r0,106v0,75,-27,104,-108,104v-81,0,-108,-29,-108,-104r0,-106r-26,-7r0,-39r116,0r0,39xm165,-317r32,51r-41,0r-18,-18r-18,18r-42,0r33,-51r54,0","w":275,"k":{"A":14,"\u00c4":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c3":14,"\u00c0":14}},"\u00d9":{"d":"91,-206r0,111v0,31,8,48,47,48v39,0,47,-17,47,-48r0,-111r-29,-7r0,-39r115,0r0,39r-25,7r0,106v0,75,-27,104,-108,104v-81,0,-108,-29,-108,-104r0,-106r-26,-7r0,-39r116,0r0,39xm140,-317r20,51r-43,0r-31,-51r54,0","w":275,"k":{"A":14,"\u00c4":14,"\u00c5":14,"\u00c2":14,"\u00c1":14,"\u00c3":14,"\u00c0":14}},"\u00d2":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,95,-31,130,-117,130v-86,0,-117,-35,-117,-130xm183,-126v0,-47,-3,-79,-53,-79v-50,0,-54,32,-54,79v0,47,4,79,54,79v50,0,53,-32,53,-79xm132,-317r20,51r-43,0r-31,-51r54,0","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"\u00c2":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0xm158,-317r32,51r-41,0r-18,-18r-18,18r-42,0r33,-51r54,0","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"\u00ca":{"d":"101,-107r0,58r78,0r8,-30r42,0r0,79r-215,0r0,-39r26,-7r0,-160r-26,-7r0,-39r215,0r0,79r-42,0r-8,-30r-78,0r0,53r37,0r5,-17r33,0r0,77r-33,0r-5,-17r-37,0xm150,-317r33,51r-42,0r-18,-18r-18,18r-41,0r32,-51r54,0","w":239},"\u00c1":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0xm108,-266r20,-51r54,0r-30,51r-44,0","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"\u00cb":{"d":"101,-107r0,58r78,0r8,-30r42,0r0,79r-215,0r0,-39r26,-7r0,-160r-26,-7r0,-39r215,0r0,79r-42,0r-8,-30r-78,0r0,53r37,0r5,-17r33,0r0,77r-33,0r-5,-17r-37,0xm119,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32xm189,-299v0,20,-10,32,-31,32v-21,0,-30,-12,-30,-32v0,-20,9,-32,30,-32v21,0,31,12,31,32","w":239},"\u00c8":{"d":"101,-107r0,58r78,0r8,-30r42,0r0,79r-215,0r0,-39r26,-7r0,-160r-26,-7r0,-39r215,0r0,79r-42,0r-8,-30r-78,0r0,53r37,0r5,-17r33,0r0,77r-33,0r-5,-17r-37,0xm126,-317r20,51r-43,0r-31,-51r54,0","w":239},"\u00cd":{"d":"135,0r-119,0r0,-39r29,-7r0,-160r-29,-7r0,-39r119,0r0,39r-29,7r0,160r29,7r0,39xm53,-266r20,-51r54,0r-31,51r-43,0","w":151},"\u00ce":{"d":"135,0r-119,0r0,-39r29,-7r0,-160r-29,-7r0,-39r119,0r0,39r-29,7r0,160r29,7r0,39xm103,-317r32,51r-41,0r-18,-18r-18,18r-42,0r33,-51r54,0","w":151},"\u00cf":{"d":"135,0r-119,0r0,-39r29,-7r0,-160r-29,-7r0,-39r119,0r0,39r-29,7r0,160r29,7r0,39xm71,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32xm141,-299v0,20,-9,32,-30,32v-21,0,-31,-12,-31,-32v0,-20,10,-32,31,-32v21,0,30,12,30,32","w":151},"\u00cc":{"d":"135,0r-119,0r0,-39r29,-7r0,-160r-29,-7r0,-39r119,0r0,39r-29,7r0,160r29,7r0,39xm78,-317r20,51r-43,0r-31,-51r54,0","w":151},"\u00d3":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,95,-31,130,-117,130v-86,0,-117,-35,-117,-130xm183,-126v0,-47,-3,-79,-53,-79v-50,0,-54,32,-54,79v0,47,4,79,54,79v50,0,53,-32,53,-79xm107,-266r20,-51r54,0r-31,51r-43,0","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"\u00d4":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,95,-31,130,-117,130v-86,0,-117,-35,-117,-130xm183,-126v0,-47,-3,-79,-53,-79v-50,0,-54,32,-54,79v0,47,4,79,54,79v50,0,53,-32,53,-79xm157,-317r32,51r-41,0r-18,-18r-18,18r-42,0r33,-51r54,0","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"\u00d5":{"d":"13,-126v0,-95,31,-130,117,-130v86,0,117,35,117,130v0,95,-31,130,-117,130v-86,0,-117,-35,-117,-130xm183,-126v0,-47,-3,-79,-53,-79v-50,0,-54,32,-54,79v0,47,4,79,54,79v50,0,53,-32,53,-79xm158,-303v8,0,11,-4,11,-12r25,0v3,76,-57,43,-92,33v-8,0,-12,4,-12,12r-24,0v-4,-77,57,-42,92,-33","w":259,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":14,"T":4,"V":7,"W":7,"Y":11,"\u0178":11,"C":-5,"\u00c7":-5,"G":-5,"O":-5,"\u00d8":-5,"\u00d6":-5,"\u00d2":-5,"\u00d3":-5,"\u00d4":-5,"\u00d5":-5,"Q":-5,"U":4,"\u00dc":4,"\u00da":4,"\u00db":4,"\u00d9":4,"X":11,"B":9,"D":9,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"F":9,"H":9,"I":9,"\u00cd":9,"\u00ce":9,"\u00cf":9,"\u00cc":9,"K":9,"L":9,"M":9,"N":9,"\u00d1":9,"P":9,"R":9}},"\u00c3":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0xm159,-303v8,0,11,-4,11,-12r25,0v3,76,-57,43,-92,33v-8,0,-12,4,-12,12r-24,0v-4,-77,57,-42,92,-33","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"\u00c0":{"d":"97,-71r-8,25r29,7r0,39r-113,0r0,-39r24,-7r65,-206r74,0r65,206r23,7r0,39r-113,0r0,-39r28,-7r-7,-25r-67,0xm130,-191r-21,80r42,0xm134,-317r19,51r-43,0r-30,-51r54,0","w":261,"k":{"T":25,"V":32,"W":25,"Y":29,"\u0178":29,"C":11,"\u00c7":11,"G":11,"O":11,"\u00d8":11,"\u00d6":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"Q":11,"U":14,"\u00dc":14,"\u00da":14,"\u00db":14,"\u00d9":14,"f":5,"t":5,"v":14,"w":14,"y":5,"\u00ff":5}},"\u2020":{"d":"11,-214r45,7r-7,-45r50,0r-7,45r45,-7r0,50r-45,-7r7,95r-50,0r7,-95r-45,7r0,-50","w":147},"\u00b1":{"d":"11,-180r65,0r0,-47r46,0r0,47r65,0r0,47r-65,0r0,47r-46,0r0,-47r-65,0r0,-47xm11,-68r176,0r0,46r-176,0r0,-46","w":198},"\u2264":{"d":"187,-79r-176,-54r0,-43r176,-44r0,45r-107,22r107,29r0,45xm187,-29r-176,-53r0,-37r176,54r0,36","w":198},"\u2265":{"d":"187,-133r-176,54r0,-45r107,-29r-107,-22r0,-45r176,44r0,43xm187,-82r-176,53r0,-36r176,-54r0,37","w":198},"\u00aa":{"d":"14,-246v13,-6,31,-10,59,-10v73,0,66,50,65,113r15,4r0,27r-58,0r0,-17v-4,7,-15,20,-44,20v-25,0,-46,-16,-46,-42v0,-34,28,-48,86,-48v7,-20,-23,-19,-40,-16r-3,9r-34,0r0,-40xm68,-147v16,-1,26,-9,23,-29v-25,0,-36,7,-36,17v0,7,5,12,13,12","w":153},"\u00ba":{"d":"75,-109v-50,0,-67,-21,-67,-74v0,-53,17,-73,67,-73v50,0,68,21,68,74v0,53,-18,73,-68,73xm75,-150v21,0,23,-12,23,-33v0,-21,-2,-32,-23,-32v-21,0,-22,12,-22,33v0,21,1,32,22,32","w":150},"\u00c6":{"d":"213,-107r0,58r78,0r8,-30r42,0r0,79r-189,0r0,-55r-56,0r-5,11r18,5r0,39r-104,0r0,-39r26,-7r96,-206r214,0r0,79r-42,0r-8,-30r-78,0r0,53r37,0r5,-17r33,0r0,77r-33,0r-5,-17r-37,0xm152,-182r-37,84r37,0r0,-84","w":351},"\u2021":{"d":"11,-139r45,8v-4,-13,-4,-27,0,-40r-45,7r0,-50r45,7r-7,-45r50,0r-7,45r45,-7r0,50r-45,-7v3,13,3,27,0,40r45,-8r0,51r-45,-7r7,95r-50,0r7,-95r-45,7r0,-51","w":147},"\u2212":{"d":"11,-148r176,0r0,47r-176,0r0,-47","w":198},"\u00d7":{"d":"8,-67r58,-57r-58,-58r33,-33r58,58r58,-58r33,33r-58,58r58,57r-33,34r-58,-58r-58,58","w":198},"\u00a0":{"w":81,"k":{"A":7,"\u00c4":7,"\u00c5":7,"\u00c2":7,"\u00c1":7,"\u00c3":7,"\u00c0":7,"J":7,"T":7,"V":7,"W":7,"Y":7,"\u0178":7}}}});
;

