diff --git a/content/images/aossinteractive.png b/content/images/aossinteractive.png
index 620a93ddd21c84ac7fff65414198e50a9e8177da..1e3659b983d6e855d84b6607b29d444f464a72b0 100644
Binary files a/content/images/aossinteractive.png and b/content/images/aossinteractive.png differ
diff --git a/content/images/buoyinteractive.png b/content/images/buoyinteractive.png
index 8050564e6dcd285dc315e7e1f8d60c14bcda8ab4..a5593622126b096566bca35cf6bb15e5751c1081 100644
Binary files a/content/images/buoyinteractive.png and b/content/images/buoyinteractive.png differ
diff --git a/content/images/portfolio-4.png b/content/images/portfolio-4.png
index c91f372d5a5f0ea136bd0583a963b17b1ca4bec4..95af67b29709c5f07c9a1003c03882d2aab0c37b 100644
Binary files a/content/images/portfolio-4.png and b/content/images/portfolio-4.png differ
diff --git a/content/js/datadownload.js b/content/js/datadownload.js
index 2ce2ee766520e77b573afa8c84171e745e033ac9..bb0e2c6eadbb5d7e5470fdd05ae78646509da9c5 100644
--- a/content/js/datadownload.js
+++ b/content/js/datadownload.js
@@ -1,4 +1,6 @@
-/* add a list of product objects to the #producs select
+var MAX_DATA = 90; // 3 months of daily records
+
+/* add a list of product objects to the #products select
  * and tie the level they come from to their value
  */
 var addProducts = function(products,prefix,opt_name){
@@ -112,17 +114,11 @@ function createForm(data) {
         $('#'+$(this).attr('id')+'_err').hide();
     });
 };
-
-/*
- * Read the values of the various inputs on the page and formulate an API request
- */
-var submitForm=function(){
+function findFormErrors(checkNFiles){
     $(".err_msg").hide();
     $("select").removeClass("alert-danger");
     var errors = [];
     var highlights = [];
-    var format = $('#format').val().toLowerCase();
-    var version = ($('#version').val()=='*')?'*':'v'+$('#version').val().split('_')[1];
     
 
     //check that each form has a valid value
@@ -134,10 +130,6 @@ var submitForm=function(){
         errors.push('#products_err');
         highlights.push('#products');
     }
-    if($('#format').val() == '--') errors.push('#submit_err');
-    console.log($('#levels').val(),$('#products').val(),$('#format').val());
-
-    
     //Check across multiple forms for a selected instrument 
     var is_valid_inst = false;
     $('#instruments').children('div').children('select').each(function(){
@@ -149,37 +141,69 @@ var submitForm=function(){
     }
     //Check that both a time is selected and that it matches a valid date
     var time_query = false;
+    var n_days = 0;
     if($("#last_x_days").is(":checked")){
-        if(/^[0-9]+$/.test(val_or_place('#x_days')));
+        if(/^[0-9]+$/.test(val_or_place('#x_days'))){
             time_query = '&begin=-'+val_or_place('#x_days');
+            n_days = Number(val_or_place('#x_days'));
+        }
     }else if ($("#date_range").is(":checked")){
         if(date_re.test(val_or_place('#Start-date-picker')) && 
-           date_re.test(val_or_place('#End-date-picker')))
+           date_re.test(val_or_place('#End-date-picker'))){
             time_query = '&begin='+val_or_place('#Start-date-picker')+
-                         '&end='+val_or_place('#End-date-picker'); 
-        
+                         '&end='+val_or_place('#End-date-picker')
+            n_days = -(moment($('#Start-date-picker').val())-moment($('#End-date-picker').val()))/1000;
+            n_days /= 60*60*24; // seconds to days
+        }
     } 
     if(!time_query)
         errors.push("#time_err");
+    else if (checkNFiles){
+        console.log(n_days);
+        if(n_days > MAX_DATA){
+            errors.push('#interval_err');
+            $('#max_points').html(MAX_DATA);
+            $('#too_many_points').html(n_days);
+        }
+
+    }
+
+    if(errors.length > 0){
+        _.each(errors,function(error){
+            $(error).show();
+        });
+        _.each(highlights,function(elem){
+            $(elem).addClass("alert-danger");
+        });
+    } 
+    return errors.length > 0;
+}
+/*
+ * Read the values of the various inputs on the page and formulate an API request
+ */
+var submitForm=function(){
+    if(!findFormErrors(true)){
+        var format = $('#format').val().toLowerCase();
+        var version = ($('#version').val()=='*')?'*':'v'+$('#version').val().split('_')[1];
 
-    if(errors.length == 0){
-        //make a list of streams from the vals of all selected products
+        if($("#last_x_days").is(":checked")){
+            if(/^[0-9]+$/.test(val_or_place('#x_days')));
+                time_query = '&begin=-'+val_or_place('#x_days');
+        }else if ($("#date_range").is(":checked")){
+            if(date_re.test(val_or_place('#Start-date-picker')) && 
+               date_re.test(val_or_place('#End-date-picker')))
+                time_query = '&begin='+val_or_place('#Start-date-picker')+
+                             '&end='+val_or_place('#End-date-picker'); 
+            
+        } 
         var streams = _.map(_.reject($('#products').val(),function(val){
             return val.indexOf('header') != -1;
         }),function(val){
             return val.split(' ')[0]+'.'+version;
         }).join(':');
-        
-        //create a query string and open it in a new window
         request_url = METOBS_API_URL+'/api/files.'+format+'?streams='+streams+time_query;
         window.open(request_url);
-    } else {
-        _.each(errors,function(error){
-            $(error).show();
-        });
-        _.each(highlights,function(elem){
-            $(elem).addClass("alert-danger");
-        });
+
     }
 };
 
@@ -215,6 +239,10 @@ $(document).ready(function(){
         $("#Start-date-picker").prop("disabled",false);
         $("#End-date-picker").prop("disabled",false);
     });
+    $('#time_forms input').click(function(){
+        $('#time_err').hide();
+        $('#interval_err').hide();
+    });
     //add placeholder values for the order forms    
     $('#x_days').attr('placeholder','5');
     $('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));
diff --git a/content/js/meteorogram/meteorogram.js b/content/js/meteorogram/meteorogram.js
index e3f011746a75069af5ab78403d88bac8042f471f..d9354b32164e467bf56e8efacde5babb749f9d1c 100644
--- a/content/js/meteorogram/meteorogram.js
+++ b/content/js/meteorogram/meteorogram.js
@@ -3680,11 +3680,13 @@ function initPlot(div_id, plotOrder, plotsInfo) {
     var key;
     var step = 1 / nshowing;
     var domain;
+    var x_anchor = axis_number;
     var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y', 'contours', 'line', 'colorscale', 'showscale', 'colorbar'];
     for (var plot_idx = 0; plot_idx < plotOrder.length; plot_idx++) {
         plot_key = plotOrder[plot_idx];
         plot_info = plotsInfo.plots[plot_key];
         axis_number += 1;
+        x_anchor = axis_number;
         axis_info = plot_info.yaxis;
         domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03, 1 - plot_idx * step * 1.05];
 
@@ -3795,7 +3797,8 @@ function initPlot(div_id, plotOrder, plotsInfo) {
         }
     }
     // xaxis only shows on the bottom most plot
-    layout['xaxis']['anchor'] = 'y' + axis_number;
+    layout['xaxis']['anchor'] = 'y' + x_anchor;
+    console.log("init sets xaxis # as ", layout['xaxis']['anchor']);
 
     // Toolbar configuration
     var toolbar = {
diff --git a/content/js/meteorogram/meteorogram.js.map b/content/js/meteorogram/meteorogram.js.map
index 39b788738cd67c6f62ce97e42a519bac1efb542e..d3200dcac4e6d0cc146b8084675fdfa3556a4ea5 100644
--- a/content/js/meteorogram/meteorogram.js.map
+++ b/content/js/meteorogram/meteorogram.js.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack:///webpack/bootstrap b2d3cda798553b30cd06","webpack:///./ui/loading.js","webpack:///./node_modules/underscore/underscore.js","webpack:///./node_modules/es5-ext/object/is-value.js","webpack:///./plot/ticks.js","webpack:///./node_modules/process/browser.js","webpack:///./plot/data.js","webpack:///./controller.js","webpack:///./ui/buttons.js","webpack:///./ui/button_template.js","webpack:///./dispatcher.js","webpack:///./node_modules/event-emitter/index.js","webpack:///./node_modules/d/index.js","webpack:///./node_modules/es5-ext/object/assign/index.js","webpack:///./node_modules/es5-ext/object/assign/is-implemented.js","webpack:///./node_modules/es5-ext/object/assign/shim.js","webpack:///./node_modules/es5-ext/object/keys/index.js","webpack:///./node_modules/es5-ext/object/keys/is-implemented.js","webpack:///./node_modules/es5-ext/object/keys/shim.js","webpack:///./node_modules/es5-ext/function/noop.js","webpack:///./node_modules/es5-ext/object/valid-value.js","webpack:///./node_modules/es5-ext/object/normalize-options.js","webpack:///./node_modules/es5-ext/object/is-callable.js","webpack:///./node_modules/es5-ext/string/#/contains/index.js","webpack:///./node_modules/es5-ext/string/#/contains/is-implemented.js","webpack:///./node_modules/es5-ext/string/#/contains/shim.js","webpack:///./node_modules/es5-ext/object/valid-callable.js","webpack:///./node_modules/flux/index.js","webpack:///./node_modules/flux/lib/Dispatcher.js","webpack:///./node_modules/fbjs/lib/invariant.js","webpack:///./plot/init.js","webpack:///./plot/table.js","webpack:///./plot/update.js"],"names":["loading","disable","$","prop","enable","getDate","dateString","timeString","year","parseInt","substring","month","day","hour","minute","seconds","date","Date","enablePlot","disablePlot","checkFields","startDate","endDate","startTime","endTime","interval","selected","text","start","end","diff","intervalVal","data","Math","floor","points","html","toString","attr","checkInterval","val","module","exports","_","require","String","prototype","format","args","arguments","replace","match","number","getWaterTempProbe","plotInfo","traceInfo","allData","allProbeText","probeText","row","col","rowText","depth","j","length","y","i","toFixed","name","getF","push","getSpeedMPH","getSpeedKTS","getPresInHg","getAccumMillimeter","cardinalWDir","degrees","getVal","CONVERSION_FUNCTIONS","null","undefined","formatValue","val2","yaxis2","convert_value","precision","yaxis","units","getDewpointProbe","relHum","anc_variables","rh_info","anc_info","defaultProbeText","PROBE_TEXT_FUNCTIONS","dewpoint","water_temp","getProbeText","probe_text","getTickText","values","axis_info","tickText","getTickVals","min","max","bump","extra","step","range","updatePlot","processData","dataObj","dates","map","timestamps","extend","plotting","url","var_names","plotsInfo","div","update","ajax","type","jsonp","dataType","success","graphDiv","document","getElementById","existingDates","console","warn","startIndex","info","slice","buildRequestUrl","epoch","sep","order","time","streams","request_url","METOBS_API_URL","intervalLookUp","varNamesForDiv","varNames","each","trace_data","Array","apply","requestPlotUpdate","stream_string","time_parts","split","Number","dt_in_ms","customPlot","userInfo","startParts","endParts","setTimeout","buildFormInDiv","Dispatcher","API","controlDiv","myDispatcher","getDispatcher","plotDiv","initMeteorogram","plot_div","plotOrder","hasGraph","dispatch","initMeteorogramTable","table_div","hasTable","tableDiv","initMeteorogramControls","displayRealTime","showPlot","varName","status","hidePlot","displayRecent","start_time","displayTimeRange","stop_time","window","MeteorogramController","controlPanelTemplate","dispatchCustom","dispatcher","join","getUserInfo","dispatchUpdate","dropDown","selectedText","log","timeDelta","bind_daterange_actions","jQ_div","click","change","set_active_form","which_block","set_form_datepickers","datetimepicker","changeMonth","changeYear","dateFormat","timeFormat","showSecond","showMillisec","showMicrosec","trigger","setup_all_forms","append","ready","checkboxTemplates","ee","Flux","Plot","Table","dataAccess","GRAPH_HEIGHT","checkboxEmitter","visible","setPlots","plot_key","setShowing","plotName","showing","getShowing","handleActions","action","emit","location","dispatchToken","register","bind","plotEmitter","waitFor","defaultPlots","debug","stopUpdate","progress","Object","validID","id","clearInterval","updateInterval","startUpdate","intervalID","setInterval","on","initTable","requestTableUpdate","initPlot","ticktext","div_id","DEFAULT_PLOT_HEIGHT","nshowing","layout","title","showlegend","height","domain","showline","zeroline","showticklabels","gridcolor","showgrid","tickformat","axis_number","plot_info","trace_info","trace_config","axis_config","key","trace_kwargs","plot_idx","plots","trace_info_idx","traces","x","xaxis","hoverinfo","hovermode","anc_data","plot_name","trace_index","idx","colorbar","len","z","titlefont","overlaying","side","anchor","toolbar","Plotly","newPlot","updateData","table","tbody","children","add_contour_rows","info_td","addClass","short_name","add_anc_rows","anc_info_idx","anc_idx","title_row","hightlight_idx","y_highlight","hightlight_idx_idx","hl_idx","data_cells","convert_cells","trace_idx","trace","indexOf","test_time","updateTable","results","td_idx","num_results","update_contour_cells","update_val","convert","old_precision","orig_val","convert_units","convert_val","innerHTML","update_anc_cells","zprobe","zprobe2","anc_key","plotsInDiv","plotNames","elem","replaceData","trace_anc_data","ancHandled","plotHandled","updateChanges","traceIndex","index","var_name","data_elem","shift","anc_name","anc_index","includes","data_index","new_anc_data","thisData","restyle","updateAxes","plots_info","traceIdx","minmax","yaxis_number","yaxis_name","yaxis_name_1","tickVals","unzip","e","l","this_min","this_max","relayout"],"mappings":"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CA;;AAEE;AACHlB,aAAYC,SAAZ,EAAuBC,OAAvB,EAAgCC,SAAhC,EAA2CC,OAA3C,EAAoDC,QAApD;AACA;;AAEDgB,OAAOC,OAAP,CAAe1C,OAAf,GAAyBA,OAAzB;AACAyC,OAAOC,OAAP,CAAezC,OAAf,GAAyBA,OAAzB;AACAwC,OAAOC,OAAP,CAAetC,MAAf,GAAwBA,MAAxB;AACAqC,OAAOC,OAAP,CAAeH,aAAf,GAA+BA,aAA/B,C;;;;;;AC5MA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yBAAyB,gBAAgB;AACzC;AACA;AACA;AACA,uBAAuB,OAAO;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,YAAY;AAClD;AACA;AACA,KAAK;AACL;AACA,uCAAuC,YAAY;AACnD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAY,8BAA8B;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,gBAAgB;AAC7C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA,oDAAoD;AACpD,GAAG;;AAEH;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,0CAA0C;AAC1C,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,4DAA4D,YAAY;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C,YAAY;AAC1D;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,8CAA8C,YAAY;AAC1D;AACA;AACA,qBAAqB,gBAAgB;AACrC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,6CAA6C,YAAY;AACzD;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,8BAA8B;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sDAAsD;AACtD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,0BAA0B;AACpE;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,qBAAqB,cAAc;AACnC;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,YAAY;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,YAAY;AAC3B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO,eAAe;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,qBAAqB,eAAe;AACpC;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,yBAAyB,gBAAgB;AACzC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,4CAA4C,mBAAmB;AAC/D;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,qDAAqD;AACrD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6EAA6E;AAC7E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;;AAEA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,mBAAmB,OAAO;AAC1B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,eAAe;AACf,cAAc;AACd,cAAc;AACd,gBAAgB;AAChB,gBAAgB;AAChB,gBAAgB;AAChB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP,qBAAqB;AACrB;;AAEA;AACA;AACA,KAAK;AACL,iBAAiB;;AAEjB;AACA,kDAAkD,EAAE,iBAAiB;;AAErE;AACA,wBAAwB,8BAA8B;AACtD,2BAA2B;;AAE3B;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,kDAAkD,iBAAiB;;AAEnE;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AAAA;AACL;AACA,CAAC;;;;;;;;AC3gDD;;AAEA,2CAA+C;;AAE/C;AACA;AACA;;;;;;;;ACNA;;AACA,IAAII,IAAI,mBAAAC,CAAQ,CAAR,CAAR;;AAEA;AACA,IAAI,CAACC,OAAOC,SAAP,CAAiBC,MAAtB,EAA8B;AAC5BF,WAAOC,SAAP,CAAiBC,MAAjB,GAA0B,YAAW;AACnC,YAAIC,OAAOC,SAAX;AACA,eAAO,KAAKC,OAAL,CAAa,UAAb,EAAyB,UAASC,KAA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IAAzB,CAAP;AACH;;AAGDnE,OAAOC,OAAP,CAAe6D,WAAf,GAA6BA,WAA7B;AACA9D,OAAOC,OAAP,CAAeuD,YAAf,GAA8BA,YAA9B;AACAxD,OAAOC,OAAP,CAAeyD,WAAf,GAA6BA,WAA7B,C;;;;;;AC1MA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;;;;AAIA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qCAAqC;;AAErC;AACA;AACA;;AAEA,2BAA2B;AAC3B;AACA;AACA;AACA,4BAA4B,UAAU;;;;;;;;ACvLtC;;AACA,IAAIW,aAAa,mBAAAlE,CAAQ,EAAR,CAAjB;AACA,IAAI5C,UAAU,mBAAA4C,CAAQ,CAAR,CAAd;AA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AEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,OAAO;;AAEpB;AACA,aAAa,2BAA2B;AACxC;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc,OAAO;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,0BAA0B;;AAE1B;AACA;AACA;AACA;;;;;;;;ACnIA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA,EAAE;AACF;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;;AAEA,SAAS;AACT;AACA;;;;;;;;AC9DA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;AACA;AACA;AACA,QAAQ;AACR,cAAc,aAAa,GAAG,eAAe;AAC7C;AACA;;;;;;;;ACRA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,YAAY,YAAY;AACxB;AACA;AACA;AACA;AACA;AACA;;;;;;;;ACtBA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;;;;;;;;ACTA;;AAEA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACRA;;AAEA;AACA;;;;;;;;ACHA;;AAEA;;AAEA;AACA;AACA;AACA;;;;;;;;ACPA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;;;;;;;;ACnBA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACNA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;;AAEA;AACA;AACA;AACA;;;;;;;;ACPA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACNA;;AAEA;AACA;AACA;AACA;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA,iDAAiD,0CAA0C,0DAA0D,EAAE;;AAEvJ;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,oBAAoB,iBAAiB;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;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","file":"meteorogram.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 6);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap b2d3cda798553b30cd06","\"use strict\";\n//var $ = require('jquery');\n\n/**\n* The purpose of this function is to either hide the graph and show the loading\n* spinner or to hide the loading spinner and show the graph\n* no parameters or returns\n*/\n\nfunction loading()\n{\n    return;\n    //$(\"#progress\").toggle();\n    //$(\"#graph\").toggle();\n}\n\n/**\n* The point of this method is to disable the custom area of the meteorogram\n* header\n*\n* no params\n* no returns\n*/\n\nfunction disable()\n{\n\t//disable custom rows\n\t$('#Start-date-picker').prop(\"disabled\", true);\n\t$('#Start-time-picker').prop(\"disabled\", true);\n\t$('#End-date-picker').prop(\"disabled\", true);\n\t$('#End-time-picker').prop(\"disabled\", true);\n\t$('#interval').prop(\"disabled\", true);\n\t$('#Plot').prop(\"disabled\", true);\n}\n\n/**\n* The purpose of this method is to enable the custom area of the meteorogram\n* header\n*\n* no params\n* no returns\n*/\n\nfunction enable()\n{\n\t//enable custom rows\n\t$('#Start-date-picker').prop(\"disabled\", false);\n\t$('#Start-time-picker').prop(\"disabled\", false);\n\t$('#End-date-picker').prop(\"disabled\", false);\n\t$('#End-time-picker').prop(\"disabled\", false);\n\t$('#interval').prop(\"disabled\", false);\n}\n\n/**\n* The purpose of this function is to take a date string and a time string and turn that\n* into a date JS object\n*\n* @param dateString - \"MM/DD/YYYY\"\n* @param timeString - \"HH-MM-SS\"\n* @return date object\n*/\n\nfunction getDate(dateString, timeString)\n{\n\t//get date string\n\tvar year = parseInt(dateString.substring(6,10));\n\tvar month = parseInt(dateString.substring(0,3));\n\tvar day = parseInt(dateString.substring(3,5));\n\tvar hour = parseInt(timeString.substring(0,2));\n\tvar minute = parseInt(timeString.substring(3,5));\n\tvar seconds = parseInt(timeString.substring(6,8));\n\n    //return date variable\n    var date = new Date(year, month, day, hour, minute, seconds);\n\n    return date;\n}\n\n/**\n* The purpose of this method is to make sure each field is valid and does\n* not result in too much or too less data points being plotted\n* @param start date - the date the user wants to start at\n* @param time user wants to start at\n* @param end Date - the date user wants to stop at\n* @param end Time - the time the user wants to stop at\n* @param interval - how many seconds averaged does the user want\n* no returns\n*/\n\n/**\n* The purpsoe of this method is to enable the plot button\n*\n* no params\n* no returns\n*/\n\nfunction enablePlot()\n{\n\t//enable plot button\n\t$('#Plot').prop(\"disabled\", false);\n}\n\n/**\n* The purpose of this method is to disable the plot button\n*\n* no params\n* no returns\n*/\n\nfunction disablePlot()\n{\n\t//disable plot button\n\t$('#Plot').prop(\"disabled\", true);\n}\n\nfunction checkFields(startDate, endDate, startTime, endTime, interval)\n{\n\t//get user information from selected drop down\n\tvar selected = $('#interval option:selected');\n\n    //give user time to fill out other fields\n\tif(selected.text() == '--');\n\n\telse\n\t{\n\t\t//get information to create a message to the user saying approx how many pts\n\t\t//they are plotting\n        var start = getDate(startDate, startTime);\n        var end = getDate(endDate, endTime);\n        var selected = $('#interval option:selected');\n        var diff = (end - start)/1000;\n        var intervalVal = selected.data(\"seconds\");\n        diff = Math.floor(diff/intervalVal);\n        var points = diff/interval;\n\n        //if too few points, tell user\n        if(diff >= 0 && diff < 60)\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() \n        \t\t + ' data points; that\\'s too few - please try again');\n\t\t\t$('#default').attr('selected', 'selected');\n\t\t\tdisablePlot();\n        }\n\n        //if the user accidentally mixed up start and end dates, politely tell them\n        else if(diff < 0)\n        {\n        \t$('#prompt_user').html('The end date is before the start date. Please choose a later end date.');\n\t\t\t$('#default').attr('selected', 'selected');\n        }\n\n        //if too many points, tell user\n        else if(diff > 1000)\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '\n        \t\t+ diff.toString() + ' data points; that\\'s too many - please try again');\n\t\t\t$('#default').attr('selected', 'selected');\n\t\t\tdisablePlot();\n        }\n\n        //else we enable the plot button and tell user how many points they're plotting\n        else\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '\n        \t\t+ diff.toString() + ' data points.');\n\n\t\t\tenablePlot();\n        }\n\n\t}\n}\n\n/**\n* The purpose of this method is to make sure all the fields and intervals selected are valid\n*\n* No parameters\n* No returns\n*/\n\nfunction checkInterval()\n{\n\tvar startDate = $('#Start-date-picker').val();\n\tvar endDate = $('#End-date-picker').val();\n\tvar startTime = $('#Start-time-picker').val();\n\tvar endTime = $('#End-time-picker').val();\n\tvar interval = $('#interval');\n\n\t//get user information from selected drop down\n\tvar selected = $('#interval option:selected');\n\n    //check if any fields are not filled out\n\tif((!startDate || !endDate || !startTime || !endTime) && selected.text() != '--')\n\t{\n\t\t$('#prompt_user').html('Please fill out all other fields before filling out the interval field');\n\t\t$('#default').attr('selected', 'selected');\n\t}\n\n    //check to see if fields are ok\n\tcheckFields(startDate, endDate, startTime, endTime, interval);\n}\n\nmodule.exports.loading = loading;\nmodule.exports.disable = disable;\nmodule.exports.enable = enable;\nmodule.exports.checkInterval = checkInterval;\n\n\n\n// WEBPACK FOOTER //\n// ./ui/loading.js","//     Underscore.js 1.8.3\n//     http://underscorejs.org\n//     (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n//     Underscore may be freely distributed under the MIT license.\n\n(function() {\n\n  // Baseline setup\n  // --------------\n\n  // Establish the root object, `window` in the browser, or `exports` on the server.\n  var root = this;\n\n  // Save the previous value of the `_` variable.\n  var previousUnderscore = root._;\n\n  // Save bytes in the minified (but not gzipped) version:\n  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;\n\n  // Create quick reference variables for speed access to core prototypes.\n  var\n    push             = ArrayProto.push,\n    slice            = ArrayProto.slice,\n    toString         = ObjProto.toString,\n    hasOwnProperty   = ObjProto.hasOwnProperty;\n\n  // All **ECMAScript 5** native function implementations that we hope to use\n  // are declared here.\n  var\n    nativeIsArray      = Array.isArray,\n    nativeKeys         = Object.keys,\n    nativeBind         = FuncProto.bind,\n    nativeCreate       = Object.create;\n\n  // Naked function reference for surrogate-prototype-swapping.\n  var Ctor = function(){};\n\n  // Create a safe reference to the Underscore object for use below.\n  var _ = function(obj) {\n    if (obj instanceof _) return obj;\n    if (!(this instanceof _)) return new _(obj);\n    this._wrapped = obj;\n  };\n\n  // Export the Underscore object for **Node.js**, with\n  // backwards-compatibility for the old `require()` API. If we're in\n  // the browser, add `_` as a global object.\n  if (typeof exports !== 'undefined') {\n    if (typeof module !== 'undefined' && module.exports) {\n      exports = module.exports = _;\n    }\n    exports._ = _;\n  } else {\n    root._ = _;\n  }\n\n  // Current version.\n  _.VERSION = '1.8.3';\n\n  // Internal function that returns an efficient (for current engines) version\n  // of the passed-in callback, to be repeatedly applied in other Underscore\n  // functions.\n  var optimizeCb = function(func, context, argCount) {\n    if (context === void 0) return func;\n    switch (argCount == null ? 3 : argCount) {\n      case 1: return function(value) {\n        return func.call(context, value);\n      };\n      case 2: return function(value, other) {\n        return func.call(context, value, other);\n      };\n      case 3: return function(value, index, collection) {\n        return func.call(context, value, index, collection);\n      };\n      case 4: return function(accumulator, value, index, collection) {\n        return func.call(context, accumulator, value, index, collection);\n      };\n    }\n    return function() {\n      return func.apply(context, arguments);\n    };\n  };\n\n  // A mostly-internal function to generate callbacks that can be applied\n  // to each element in a collection, returning the desired result — either\n  // identity, an arbitrary callback, a property matcher, or a property accessor.\n  var cb = function(value, context, argCount) {\n    if (value == null) return _.identity;\n    if (_.isFunction(value)) return optimizeCb(value, context, argCount);\n    if (_.isObject(value)) return _.matcher(value);\n    return _.property(value);\n  };\n  _.iteratee = function(value, context) {\n    return cb(value, context, Infinity);\n  };\n\n  // An internal function for creating assigner functions.\n  var createAssigner = function(keysFunc, undefinedOnly) {\n    return function(obj) {\n      var length = arguments.length;\n      if (length < 2 || obj == null) return obj;\n      for (var index = 1; index < length; index++) {\n        var source = arguments[index],\n            keys = keysFunc(source),\n            l = keys.length;\n        for (var i = 0; i < l; i++) {\n          var key = keys[i];\n          if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key];\n        }\n      }\n      return obj;\n    };\n  };\n\n  // An internal function for creating a new object that inherits from another.\n  var baseCreate = function(prototype) {\n    if (!_.isObject(prototype)) return {};\n    if (nativeCreate) return nativeCreate(prototype);\n    Ctor.prototype = prototype;\n    var result = new Ctor;\n    Ctor.prototype = null;\n    return result;\n  };\n\n  var property = function(key) {\n    return function(obj) {\n      return obj == null ? void 0 : obj[key];\n    };\n  };\n\n  // Helper for collection methods to determine whether a collection\n  // should be iterated as an array or as an object\n  // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n  // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\n  var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n  var getLength = property('length');\n  var isArrayLike = function(collection) {\n    var length = getLength(collection);\n    return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;\n  };\n\n  // Collection Functions\n  // --------------------\n\n  // The cornerstone, an `each` implementation, aka `forEach`.\n  // Handles raw objects in addition to array-likes. Treats all\n  // sparse array-likes as if they were dense.\n  _.each = _.forEach = function(obj, iteratee, context) {\n    iteratee = optimizeCb(iteratee, context);\n    var i, length;\n    if (isArrayLike(obj)) {\n      for (i = 0, length = obj.length; i < length; i++) {\n        iteratee(obj[i], i, obj);\n      }\n    } else {\n      var keys = _.keys(obj);\n      for (i = 0, length = keys.length; i < length; i++) {\n        iteratee(obj[keys[i]], keys[i], obj);\n      }\n    }\n    return obj;\n  };\n\n  // Return the results of applying the iteratee to each element.\n  _.map = _.collect = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length,\n        results = Array(length);\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      results[index] = iteratee(obj[currentKey], currentKey, obj);\n    }\n    return results;\n  };\n\n  // Create a reducing function iterating left or right.\n  function createReduce(dir) {\n    // Optimized iterator function as using arguments.length\n    // in the main function will deoptimize the, see #1991.\n    function iterator(obj, iteratee, memo, keys, index, length) {\n      for (; index >= 0 && index < length; index += dir) {\n        var currentKey = keys ? keys[index] : index;\n        memo = iteratee(memo, obj[currentKey], currentKey, obj);\n      }\n      return memo;\n    }\n\n    return function(obj, iteratee, memo, context) {\n      iteratee = optimizeCb(iteratee, context, 4);\n      var keys = !isArrayLike(obj) && _.keys(obj),\n          length = (keys || obj).length,\n          index = dir > 0 ? 0 : length - 1;\n      // Determine the initial value if none is provided.\n      if (arguments.length < 3) {\n        memo = obj[keys ? keys[index] : index];\n        index += dir;\n      }\n      return iterator(obj, iteratee, memo, keys, index, length);\n    };\n  }\n\n  // **Reduce** builds up a single result from a list of values, aka `inject`,\n  // or `foldl`.\n  _.reduce = _.foldl = _.inject = createReduce(1);\n\n  // The right-associative version of reduce, also known as `foldr`.\n  _.reduceRight = _.foldr = createReduce(-1);\n\n  // Return the first value which passes a truth test. Aliased as `detect`.\n  _.find = _.detect = function(obj, predicate, context) {\n    var key;\n    if (isArrayLike(obj)) {\n      key = _.findIndex(obj, predicate, context);\n    } else {\n      key = _.findKey(obj, predicate, context);\n    }\n    if (key !== void 0 && key !== -1) return obj[key];\n  };\n\n  // Return all the elements that pass a truth test.\n  // Aliased as `select`.\n  _.filter = _.select = function(obj, predicate, context) {\n    var results = [];\n    predicate = cb(predicate, context);\n    _.each(obj, function(value, index, list) {\n      if (predicate(value, index, list)) results.push(value);\n    });\n    return results;\n  };\n\n  // Return all the elements for which a truth test fails.\n  _.reject = function(obj, predicate, context) {\n    return _.filter(obj, _.negate(cb(predicate)), context);\n  };\n\n  // Determine whether all of the elements match a truth test.\n  // Aliased as `all`.\n  _.every = _.all = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length;\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      if (!predicate(obj[currentKey], currentKey, obj)) return false;\n    }\n    return true;\n  };\n\n  // Determine if at least one element in the object matches a truth test.\n  // Aliased as `any`.\n  _.some = _.any = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length;\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      if (predicate(obj[currentKey], currentKey, obj)) return true;\n    }\n    return false;\n  };\n\n  // Determine if the array or object contains a given item (using `===`).\n  // Aliased as `includes` and `include`.\n  _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) {\n    if (!isArrayLike(obj)) obj = _.values(obj);\n    if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n    return _.indexOf(obj, item, fromIndex) >= 0;\n  };\n\n  // Invoke a method (with arguments) on every item in a collection.\n  _.invoke = function(obj, method) {\n    var args = slice.call(arguments, 2);\n    var isFunc = _.isFunction(method);\n    return _.map(obj, function(value) {\n      var func = isFunc ? method : value[method];\n      return func == null ? func : func.apply(value, args);\n    });\n  };\n\n  // Convenience version of a common use case of `map`: fetching a property.\n  _.pluck = function(obj, key) {\n    return _.map(obj, _.property(key));\n  };\n\n  // Convenience version of a common use case of `filter`: selecting only objects\n  // containing specific `key:value` pairs.\n  _.where = function(obj, attrs) {\n    return _.filter(obj, _.matcher(attrs));\n  };\n\n  // Convenience version of a common use case of `find`: getting the first object\n  // containing specific `key:value` pairs.\n  _.findWhere = function(obj, attrs) {\n    return _.find(obj, _.matcher(attrs));\n  };\n\n  // Return the maximum element (or element-based computation).\n  _.max = function(obj, iteratee, context) {\n    var result = -Infinity, lastComputed = -Infinity,\n        value, computed;\n    if (iteratee == null && obj != null) {\n      obj = isArrayLike(obj) ? obj : _.values(obj);\n      for (var i = 0, length = obj.length; i < length; i++) {\n        value = obj[i];\n        if (value > result) {\n          result = value;\n        }\n      }\n    } else {\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index, list) {\n        computed = iteratee(value, index, list);\n        if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n          result = value;\n          lastComputed = computed;\n        }\n      });\n    }\n    return result;\n  };\n\n  // Return the minimum element (or element-based computation).\n  _.min = function(obj, iteratee, context) {\n    var result = Infinity, lastComputed = Infinity,\n        value, computed;\n    if (iteratee == null && obj != null) {\n      obj = isArrayLike(obj) ? obj : _.values(obj);\n      for (var i = 0, length = obj.length; i < length; i++) {\n        value = obj[i];\n        if (value < result) {\n          result = value;\n        }\n      }\n    } else {\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index, list) {\n        computed = iteratee(value, index, list);\n        if (computed < lastComputed || computed === Infinity && result === Infinity) {\n          result = value;\n          lastComputed = computed;\n        }\n      });\n    }\n    return result;\n  };\n\n  // Shuffle a collection, using the modern version of the\n  // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n  _.shuffle = function(obj) {\n    var set = isArrayLike(obj) ? obj : _.values(obj);\n    var length = set.length;\n    var shuffled = Array(length);\n    for (var index = 0, rand; index < length; index++) {\n      rand = _.random(0, index);\n      if (rand !== index) shuffled[index] = shuffled[rand];\n      shuffled[rand] = set[index];\n    }\n    return shuffled;\n  };\n\n  // Sample **n** random values from a collection.\n  // If **n** is not specified, returns a single random element.\n  // The internal `guard` argument allows it to work with `map`.\n  _.sample = function(obj, n, guard) {\n    if (n == null || guard) {\n      if (!isArrayLike(obj)) obj = _.values(obj);\n      return obj[_.random(obj.length - 1)];\n    }\n    return _.shuffle(obj).slice(0, Math.max(0, n));\n  };\n\n  // Sort the object's values by a criterion produced by an iteratee.\n  _.sortBy = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    return _.pluck(_.map(obj, function(value, index, list) {\n      return {\n        value: value,\n        index: index,\n        criteria: iteratee(value, index, list)\n      };\n    }).sort(function(left, right) {\n      var a = left.criteria;\n      var b = right.criteria;\n      if (a !== b) {\n        if (a > b || a === void 0) return 1;\n        if (a < b || b === void 0) return -1;\n      }\n      return left.index - right.index;\n    }), 'value');\n  };\n\n  // An internal function used for aggregate \"group by\" operations.\n  var group = function(behavior) {\n    return function(obj, iteratee, context) {\n      var result = {};\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index) {\n        var key = iteratee(value, index, obj);\n        behavior(result, value, key);\n      });\n      return result;\n    };\n  };\n\n  // Groups the object's values by a criterion. Pass either a string attribute\n  // to group by, or a function that returns the criterion.\n  _.groupBy = group(function(result, value, key) {\n    if (_.has(result, key)) result[key].push(value); else result[key] = [value];\n  });\n\n  // Indexes the object's values by a criterion, similar to `groupBy`, but for\n  // when you know that your index values will be unique.\n  _.indexBy = group(function(result, value, key) {\n    result[key] = value;\n  });\n\n  // Counts instances of an object that group by a certain criterion. Pass\n  // either a string attribute to count by, or a function that returns the\n  // criterion.\n  _.countBy = group(function(result, value, key) {\n    if (_.has(result, key)) result[key]++; else result[key] = 1;\n  });\n\n  // Safely create a real, live array from anything iterable.\n  _.toArray = function(obj) {\n    if (!obj) return [];\n    if (_.isArray(obj)) return slice.call(obj);\n    if (isArrayLike(obj)) return _.map(obj, _.identity);\n    return _.values(obj);\n  };\n\n  // Return the number of elements in an object.\n  _.size = function(obj) {\n    if (obj == null) return 0;\n    return isArrayLike(obj) ? obj.length : _.keys(obj).length;\n  };\n\n  // Split a collection into two arrays: one whose elements all satisfy the given\n  // predicate, and one whose elements all do not satisfy the predicate.\n  _.partition = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var pass = [], fail = [];\n    _.each(obj, function(value, key, obj) {\n      (predicate(value, key, obj) ? pass : fail).push(value);\n    });\n    return [pass, fail];\n  };\n\n  // Array Functions\n  // ---------------\n\n  // Get the first element of an array. Passing **n** will return the first N\n  // values in the array. Aliased as `head` and `take`. The **guard** check\n  // allows it to work with `_.map`.\n  _.first = _.head = _.take = function(array, n, guard) {\n    if (array == null) return void 0;\n    if (n == null || guard) return array[0];\n    return _.initial(array, array.length - n);\n  };\n\n  // Returns everything but the last entry of the array. Especially useful on\n  // the arguments object. Passing **n** will return all the values in\n  // the array, excluding the last N.\n  _.initial = function(array, n, guard) {\n    return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n  };\n\n  // Get the last element of an array. Passing **n** will return the last N\n  // values in the array.\n  _.last = function(array, n, guard) {\n    if (array == null) return void 0;\n    if (n == null || guard) return array[array.length - 1];\n    return _.rest(array, Math.max(0, array.length - n));\n  };\n\n  // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.\n  // Especially useful on the arguments object. Passing an **n** will return\n  // the rest N values in the array.\n  _.rest = _.tail = _.drop = function(array, n, guard) {\n    return slice.call(array, n == null || guard ? 1 : n);\n  };\n\n  // Trim out all falsy values from an array.\n  _.compact = function(array) {\n    return _.filter(array, _.identity);\n  };\n\n  // Internal implementation of a recursive `flatten` function.\n  var flatten = function(input, shallow, strict, startIndex) {\n    var output = [], idx = 0;\n    for (var i = startIndex || 0, length = getLength(input); i < length; i++) {\n      var value = input[i];\n      if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) {\n        //flatten current level of array or arguments object\n        if (!shallow) value = flatten(value, shallow, strict);\n        var j = 0, len = value.length;\n        output.length += len;\n        while (j < len) {\n          output[idx++] = value[j++];\n        }\n      } else if (!strict) {\n        output[idx++] = value;\n      }\n    }\n    return output;\n  };\n\n  // Flatten out an array, either recursively (by default), or just one level.\n  _.flatten = function(array, shallow) {\n    return flatten(array, shallow, false);\n  };\n\n  // Return a version of the array that does not contain the specified value(s).\n  _.without = function(array) {\n    return _.difference(array, slice.call(arguments, 1));\n  };\n\n  // Produce a duplicate-free version of the array. If the array has already\n  // been sorted, you have the option of using a faster algorithm.\n  // Aliased as `unique`.\n  _.uniq = _.unique = function(array, isSorted, iteratee, context) {\n    if (!_.isBoolean(isSorted)) {\n      context = iteratee;\n      iteratee = isSorted;\n      isSorted = false;\n    }\n    if (iteratee != null) iteratee = cb(iteratee, context);\n    var result = [];\n    var seen = [];\n    for (var i = 0, length = getLength(array); i < length; i++) {\n      var value = array[i],\n          computed = iteratee ? iteratee(value, i, array) : value;\n      if (isSorted) {\n        if (!i || seen !== computed) result.push(value);\n        seen = computed;\n      } else if (iteratee) {\n        if (!_.contains(seen, computed)) {\n          seen.push(computed);\n          result.push(value);\n        }\n      } else if (!_.contains(result, value)) {\n        result.push(value);\n      }\n    }\n    return result;\n  };\n\n  // Produce an array that contains the union: each distinct element from all of\n  // the passed-in arrays.\n  _.union = function() {\n    return _.uniq(flatten(arguments, true, true));\n  };\n\n  // Produce an array that contains every item shared between all the\n  // passed-in arrays.\n  _.intersection = function(array) {\n    var result = [];\n    var argsLength = arguments.length;\n    for (var i = 0, length = getLength(array); i < length; i++) {\n      var item = array[i];\n      if (_.contains(result, item)) continue;\n      for (var j = 1; j < argsLength; j++) {\n        if (!_.contains(arguments[j], item)) break;\n      }\n      if (j === argsLength) result.push(item);\n    }\n    return result;\n  };\n\n  // Take the difference between one array and a number of other arrays.\n  // Only the elements present in just the first array will remain.\n  _.difference = function(array) {\n    var rest = flatten(arguments, true, true, 1);\n    return _.filter(array, function(value){\n      return !_.contains(rest, value);\n    });\n  };\n\n  // Zip together multiple lists into a single array -- elements that share\n  // an index go together.\n  _.zip = function() {\n    return _.unzip(arguments);\n  };\n\n  // Complement of _.zip. Unzip accepts an array of arrays and groups\n  // each array's elements on shared indices\n  _.unzip = function(array) {\n    var length = array && _.max(array, getLength).length || 0;\n    var result = Array(length);\n\n    for (var index = 0; index < length; index++) {\n      result[index] = _.pluck(array, index);\n    }\n    return result;\n  };\n\n  // Converts lists into objects. Pass either a single array of `[key, value]`\n  // pairs, or two parallel arrays of the same length -- one of keys, and one of\n  // the corresponding values.\n  _.object = function(list, values) {\n    var result = {};\n    for (var i = 0, length = getLength(list); i < length; i++) {\n      if (values) {\n        result[list[i]] = values[i];\n      } else {\n        result[list[i][0]] = list[i][1];\n      }\n    }\n    return result;\n  };\n\n  // Generator function to create the findIndex and findLastIndex functions\n  function createPredicateIndexFinder(dir) {\n    return function(array, predicate, context) {\n      predicate = cb(predicate, context);\n      var length = getLength(array);\n      var index = dir > 0 ? 0 : length - 1;\n      for (; index >= 0 && index < length; index += dir) {\n        if (predicate(array[index], index, array)) return index;\n      }\n      return -1;\n    };\n  }\n\n  // Returns the first index on an array-like that passes a predicate test\n  _.findIndex = createPredicateIndexFinder(1);\n  _.findLastIndex = createPredicateIndexFinder(-1);\n\n  // Use a comparator function to figure out the smallest index at which\n  // an object should be inserted so as to maintain order. Uses binary search.\n  _.sortedIndex = function(array, obj, iteratee, context) {\n    iteratee = cb(iteratee, context, 1);\n    var value = iteratee(obj);\n    var low = 0, high = getLength(array);\n    while (low < high) {\n      var mid = Math.floor((low + high) / 2);\n      if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n    }\n    return low;\n  };\n\n  // Generator function to create the indexOf and lastIndexOf functions\n  function createIndexFinder(dir, predicateFind, sortedIndex) {\n    return function(array, item, idx) {\n      var i = 0, length = getLength(array);\n      if (typeof idx == 'number') {\n        if (dir > 0) {\n            i = idx >= 0 ? idx : Math.max(idx + length, i);\n        } else {\n            length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n        }\n      } else if (sortedIndex && idx && length) {\n        idx = sortedIndex(array, item);\n        return array[idx] === item ? idx : -1;\n      }\n      if (item !== item) {\n        idx = predicateFind(slice.call(array, i, length), _.isNaN);\n        return idx >= 0 ? idx + i : -1;\n      }\n      for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n        if (array[idx] === item) return idx;\n      }\n      return -1;\n    };\n  }\n\n  // Return the position of the first occurrence of an item in an array,\n  // or -1 if the item is not included in the array.\n  // If the array is large and already in sort order, pass `true`\n  // for **isSorted** to use binary search.\n  _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex);\n  _.lastIndexOf = createIndexFinder(-1, _.findLastIndex);\n\n  // Generate an integer Array containing an arithmetic progression. A port of\n  // the native Python `range()` function. See\n  // [the Python documentation](http://docs.python.org/library/functions.html#range).\n  _.range = function(start, stop, step) {\n    if (stop == null) {\n      stop = start || 0;\n      start = 0;\n    }\n    step = step || 1;\n\n    var length = Math.max(Math.ceil((stop - start) / step), 0);\n    var range = Array(length);\n\n    for (var idx = 0; idx < length; idx++, start += step) {\n      range[idx] = start;\n    }\n\n    return range;\n  };\n\n  // Function (ahem) Functions\n  // ------------------\n\n  // Determines whether to execute a function as a constructor\n  // or a normal function with the provided arguments\n  var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) {\n    if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n    var self = baseCreate(sourceFunc.prototype);\n    var result = sourceFunc.apply(self, args);\n    if (_.isObject(result)) return result;\n    return self;\n  };\n\n  // Create a function bound to a given object (assigning `this`, and arguments,\n  // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if\n  // available.\n  _.bind = function(func, context) {\n    if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));\n    if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');\n    var args = slice.call(arguments, 2);\n    var bound = function() {\n      return executeBound(func, bound, context, this, args.concat(slice.call(arguments)));\n    };\n    return bound;\n  };\n\n  // Partially apply a function by creating a version that has had some of its\n  // arguments pre-filled, without changing its dynamic `this` context. _ acts\n  // as a placeholder, allowing any combination of arguments to be pre-filled.\n  _.partial = function(func) {\n    var boundArgs = slice.call(arguments, 1);\n    var bound = function() {\n      var position = 0, length = boundArgs.length;\n      var args = Array(length);\n      for (var i = 0; i < length; i++) {\n        args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i];\n      }\n      while (position < arguments.length) args.push(arguments[position++]);\n      return executeBound(func, bound, this, this, args);\n    };\n    return bound;\n  };\n\n  // Bind a number of an object's methods to that object. Remaining arguments\n  // are the method names to be bound. Useful for ensuring that all callbacks\n  // defined on an object belong to it.\n  _.bindAll = function(obj) {\n    var i, length = arguments.length, key;\n    if (length <= 1) throw new Error('bindAll must be passed function names');\n    for (i = 1; i < length; i++) {\n      key = arguments[i];\n      obj[key] = _.bind(obj[key], obj);\n    }\n    return obj;\n  };\n\n  // Memoize an expensive function by storing its results.\n  _.memoize = function(func, hasher) {\n    var memoize = function(key) {\n      var cache = memoize.cache;\n      var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n      if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);\n      return cache[address];\n    };\n    memoize.cache = {};\n    return memoize;\n  };\n\n  // Delays a function for the given number of milliseconds, and then calls\n  // it with the arguments supplied.\n  _.delay = function(func, wait) {\n    var args = slice.call(arguments, 2);\n    return setTimeout(function(){\n      return func.apply(null, args);\n    }, wait);\n  };\n\n  // Defers a function, scheduling it to run after the current call stack has\n  // cleared.\n  _.defer = _.partial(_.delay, _, 1);\n\n  // Returns a function, that, when invoked, will only be triggered at most once\n  // during a given window of time. Normally, the throttled function will run\n  // as much as it can, without ever going more than once per `wait` duration;\n  // but if you'd like to disable the execution on the leading edge, pass\n  // `{leading: false}`. To disable execution on the trailing edge, ditto.\n  _.throttle = function(func, wait, options) {\n    var context, args, result;\n    var timeout = null;\n    var previous = 0;\n    if (!options) options = {};\n    var later = function() {\n      previous = options.leading === false ? 0 : _.now();\n      timeout = null;\n      result = func.apply(context, args);\n      if (!timeout) context = args = null;\n    };\n    return function() {\n      var now = _.now();\n      if (!previous && options.leading === false) previous = now;\n      var remaining = wait - (now - previous);\n      context = this;\n      args = arguments;\n      if (remaining <= 0 || remaining > wait) {\n        if (timeout) {\n          clearTimeout(timeout);\n          timeout = null;\n        }\n        previous = now;\n        result = func.apply(context, args);\n        if (!timeout) context = args = null;\n      } else if (!timeout && options.trailing !== false) {\n        timeout = setTimeout(later, remaining);\n      }\n      return result;\n    };\n  };\n\n  // Returns a function, that, as long as it continues to be invoked, will not\n  // be triggered. The function will be called after it stops being called for\n  // N milliseconds. If `immediate` is passed, trigger the function on the\n  // leading edge, instead of the trailing.\n  _.debounce = function(func, wait, immediate) {\n    var timeout, args, context, timestamp, result;\n\n    var later = function() {\n      var last = _.now() - timestamp;\n\n      if (last < wait && last >= 0) {\n        timeout = setTimeout(later, wait - last);\n      } else {\n        timeout = null;\n        if (!immediate) {\n          result = func.apply(context, args);\n          if (!timeout) context = args = null;\n        }\n      }\n    };\n\n    return function() {\n      context = this;\n      args = arguments;\n      timestamp = _.now();\n      var callNow = immediate && !timeout;\n      if (!timeout) timeout = setTimeout(later, wait);\n      if (callNow) {\n        result = func.apply(context, args);\n        context = args = null;\n      }\n\n      return result;\n    };\n  };\n\n  // Returns the first function passed as an argument to the second,\n  // allowing you to adjust arguments, run code before and after, and\n  // conditionally execute the original function.\n  _.wrap = function(func, wrapper) {\n    return _.partial(wrapper, func);\n  };\n\n  // Returns a negated version of the passed-in predicate.\n  _.negate = function(predicate) {\n    return function() {\n      return !predicate.apply(this, arguments);\n    };\n  };\n\n  // Returns a function that is the composition of a list of functions, each\n  // consuming the return value of the function that follows.\n  _.compose = function() {\n    var args = arguments;\n    var start = args.length - 1;\n    return function() {\n      var i = start;\n      var result = args[start].apply(this, arguments);\n      while (i--) result = args[i].call(this, result);\n      return result;\n    };\n  };\n\n  // Returns a function that will only be executed on and after the Nth call.\n  _.after = function(times, func) {\n    return function() {\n      if (--times < 1) {\n        return func.apply(this, arguments);\n      }\n    };\n  };\n\n  // Returns a function that will only be executed up to (but not including) the Nth call.\n  _.before = function(times, func) {\n    var memo;\n    return function() {\n      if (--times > 0) {\n        memo = func.apply(this, arguments);\n      }\n      if (times <= 1) func = null;\n      return memo;\n    };\n  };\n\n  // Returns a function that will be executed at most one time, no matter how\n  // often you call it. Useful for lazy initialization.\n  _.once = _.partial(_.before, 2);\n\n  // Object Functions\n  // ----------------\n\n  // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\n  var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\n  var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n                      'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n  function collectNonEnumProps(obj, keys) {\n    var nonEnumIdx = nonEnumerableProps.length;\n    var constructor = obj.constructor;\n    var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto;\n\n    // Constructor is a special case.\n    var prop = 'constructor';\n    if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);\n\n    while (nonEnumIdx--) {\n      prop = nonEnumerableProps[nonEnumIdx];\n      if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {\n        keys.push(prop);\n      }\n    }\n  }\n\n  // Retrieve the names of an object's own properties.\n  // Delegates to **ECMAScript 5**'s native `Object.keys`\n  _.keys = function(obj) {\n    if (!_.isObject(obj)) return [];\n    if (nativeKeys) return nativeKeys(obj);\n    var keys = [];\n    for (var key in obj) if (_.has(obj, key)) keys.push(key);\n    // Ahem, IE < 9.\n    if (hasEnumBug) collectNonEnumProps(obj, keys);\n    return keys;\n  };\n\n  // Retrieve all the property names of an object.\n  _.allKeys = function(obj) {\n    if (!_.isObject(obj)) return [];\n    var keys = [];\n    for (var key in obj) keys.push(key);\n    // Ahem, IE < 9.\n    if (hasEnumBug) collectNonEnumProps(obj, keys);\n    return keys;\n  };\n\n  // Retrieve the values of an object's properties.\n  _.values = function(obj) {\n    var keys = _.keys(obj);\n    var length = keys.length;\n    var values = Array(length);\n    for (var i = 0; i < length; i++) {\n      values[i] = obj[keys[i]];\n    }\n    return values;\n  };\n\n  // Returns the results of applying the iteratee to each element of the object\n  // In contrast to _.map it returns an object\n  _.mapObject = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    var keys =  _.keys(obj),\n          length = keys.length,\n          results = {},\n          currentKey;\n      for (var index = 0; index < length; index++) {\n        currentKey = keys[index];\n        results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n      }\n      return results;\n  };\n\n  // Convert an object into a list of `[key, value]` pairs.\n  _.pairs = function(obj) {\n    var keys = _.keys(obj);\n    var length = keys.length;\n    var pairs = Array(length);\n    for (var i = 0; i < length; i++) {\n      pairs[i] = [keys[i], obj[keys[i]]];\n    }\n    return pairs;\n  };\n\n  // Invert the keys and values of an object. The values must be serializable.\n  _.invert = function(obj) {\n    var result = {};\n    var keys = _.keys(obj);\n    for (var i = 0, length = keys.length; i < length; i++) {\n      result[obj[keys[i]]] = keys[i];\n    }\n    return result;\n  };\n\n  // Return a sorted list of the function names available on the object.\n  // Aliased as `methods`\n  _.functions = _.methods = function(obj) {\n    var names = [];\n    for (var key in obj) {\n      if (_.isFunction(obj[key])) names.push(key);\n    }\n    return names.sort();\n  };\n\n  // Extend a given object with all the properties in passed-in object(s).\n  _.extend = createAssigner(_.allKeys);\n\n  // Assigns a given object with all the own properties in the passed-in object(s)\n  // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\n  _.extendOwn = _.assign = createAssigner(_.keys);\n\n  // Returns the first key on an object that passes a predicate test\n  _.findKey = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = _.keys(obj), key;\n    for (var i = 0, length = keys.length; i < length; i++) {\n      key = keys[i];\n      if (predicate(obj[key], key, obj)) return key;\n    }\n  };\n\n  // Return a copy of the object only containing the whitelisted properties.\n  _.pick = function(object, oiteratee, context) {\n    var result = {}, obj = object, iteratee, keys;\n    if (obj == null) return result;\n    if (_.isFunction(oiteratee)) {\n      keys = _.allKeys(obj);\n      iteratee = optimizeCb(oiteratee, context);\n    } else {\n      keys = flatten(arguments, false, false, 1);\n      iteratee = function(value, key, obj) { return key in obj; };\n      obj = Object(obj);\n    }\n    for (var i = 0, length = keys.length; i < length; i++) {\n      var key = keys[i];\n      var value = obj[key];\n      if (iteratee(value, key, obj)) result[key] = value;\n    }\n    return result;\n  };\n\n   // Return a copy of the object without the blacklisted properties.\n  _.omit = function(obj, iteratee, context) {\n    if (_.isFunction(iteratee)) {\n      iteratee = _.negate(iteratee);\n    } else {\n      var keys = _.map(flatten(arguments, false, false, 1), String);\n      iteratee = function(value, key) {\n        return !_.contains(keys, key);\n      };\n    }\n    return _.pick(obj, iteratee, context);\n  };\n\n  // Fill in a given object with default properties.\n  _.defaults = createAssigner(_.allKeys, true);\n\n  // Creates an object that inherits from the given prototype object.\n  // If additional properties are provided then they will be added to the\n  // created object.\n  _.create = function(prototype, props) {\n    var result = baseCreate(prototype);\n    if (props) _.extendOwn(result, props);\n    return result;\n  };\n\n  // Create a (shallow-cloned) duplicate of an object.\n  _.clone = function(obj) {\n    if (!_.isObject(obj)) return obj;\n    return _.isArray(obj) ? obj.slice() : _.extend({}, obj);\n  };\n\n  // Invokes interceptor with the obj, and then returns obj.\n  // The primary purpose of this method is to \"tap into\" a method chain, in\n  // order to perform operations on intermediate results within the chain.\n  _.tap = function(obj, interceptor) {\n    interceptor(obj);\n    return obj;\n  };\n\n  // Returns whether an object has a given set of `key:value` pairs.\n  _.isMatch = function(object, attrs) {\n    var keys = _.keys(attrs), length = keys.length;\n    if (object == null) return !length;\n    var obj = Object(object);\n    for (var i = 0; i < length; i++) {\n      var key = keys[i];\n      if (attrs[key] !== obj[key] || !(key in obj)) return false;\n    }\n    return true;\n  };\n\n\n  // Internal recursive comparison function for `isEqual`.\n  var eq = function(a, b, aStack, bStack) {\n    // Identical objects are equal. `0 === -0`, but they aren't identical.\n    // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).\n    if (a === b) return a !== 0 || 1 / a === 1 / b;\n    // A strict comparison is necessary because `null == undefined`.\n    if (a == null || b == null) return a === b;\n    // Unwrap any wrapped objects.\n    if (a instanceof _) a = a._wrapped;\n    if (b instanceof _) b = b._wrapped;\n    // Compare `[[Class]]` names.\n    var className = toString.call(a);\n    if (className !== toString.call(b)) return false;\n    switch (className) {\n      // Strings, numbers, regular expressions, dates, and booleans are compared by value.\n      case '[object RegExp]':\n      // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n      case '[object String]':\n        // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n        // equivalent to `new String(\"5\")`.\n        return '' + a === '' + b;\n      case '[object Number]':\n        // `NaN`s are equivalent, but non-reflexive.\n        // Object(NaN) is equivalent to NaN\n        if (+a !== +a) return +b !== +b;\n        // An `egal` comparison is performed for other numeric values.\n        return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n      case '[object Date]':\n      case '[object Boolean]':\n        // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n        // millisecond representations. Note that invalid dates with millisecond representations\n        // of `NaN` are not equivalent.\n        return +a === +b;\n    }\n\n    var areArrays = className === '[object Array]';\n    if (!areArrays) {\n      if (typeof a != 'object' || typeof b != 'object') return false;\n\n      // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n      // from different frames are.\n      var aCtor = a.constructor, bCtor = b.constructor;\n      if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor &&\n                               _.isFunction(bCtor) && bCtor instanceof bCtor)\n                          && ('constructor' in a && 'constructor' in b)) {\n        return false;\n      }\n    }\n    // Assume equality for cyclic structures. The algorithm for detecting cyclic\n    // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n    // Initializing stack of traversed objects.\n    // It's done here since we only need them for objects and arrays comparison.\n    aStack = aStack || [];\n    bStack = bStack || [];\n    var length = aStack.length;\n    while (length--) {\n      // Linear search. Performance is inversely proportional to the number of\n      // unique nested structures.\n      if (aStack[length] === a) return bStack[length] === b;\n    }\n\n    // Add the first object to the stack of traversed objects.\n    aStack.push(a);\n    bStack.push(b);\n\n    // Recursively compare objects and arrays.\n    if (areArrays) {\n      // Compare array lengths to determine if a deep comparison is necessary.\n      length = a.length;\n      if (length !== b.length) return false;\n      // Deep compare the contents, ignoring non-numeric properties.\n      while (length--) {\n        if (!eq(a[length], b[length], aStack, bStack)) return false;\n      }\n    } else {\n      // Deep compare objects.\n      var keys = _.keys(a), key;\n      length = keys.length;\n      // Ensure that both objects contain the same number of properties before comparing deep equality.\n      if (_.keys(b).length !== length) return false;\n      while (length--) {\n        // Deep compare each member\n        key = keys[length];\n        if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n      }\n    }\n    // Remove the first object from the stack of traversed objects.\n    aStack.pop();\n    bStack.pop();\n    return true;\n  };\n\n  // Perform a deep comparison to check if two objects are equal.\n  _.isEqual = function(a, b) {\n    return eq(a, b);\n  };\n\n  // Is a given array, string, or object empty?\n  // An \"empty\" object has no enumerable own-properties.\n  _.isEmpty = function(obj) {\n    if (obj == null) return true;\n    if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0;\n    return _.keys(obj).length === 0;\n  };\n\n  // Is a given value a DOM element?\n  _.isElement = function(obj) {\n    return !!(obj && obj.nodeType === 1);\n  };\n\n  // Is a given value an array?\n  // Delegates to ECMA5's native Array.isArray\n  _.isArray = nativeIsArray || function(obj) {\n    return toString.call(obj) === '[object Array]';\n  };\n\n  // Is a given variable an object?\n  _.isObject = function(obj) {\n    var type = typeof obj;\n    return type === 'function' || type === 'object' && !!obj;\n  };\n\n  // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError.\n  _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) {\n    _['is' + name] = function(obj) {\n      return toString.call(obj) === '[object ' + name + ']';\n    };\n  });\n\n  // Define a fallback version of the method in browsers (ahem, IE < 9), where\n  // there isn't any inspectable \"Arguments\" type.\n  if (!_.isArguments(arguments)) {\n    _.isArguments = function(obj) {\n      return _.has(obj, 'callee');\n    };\n  }\n\n  // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8,\n  // IE 11 (#1621), and in Safari 8 (#1929).\n  if (typeof /./ != 'function' && typeof Int8Array != 'object') {\n    _.isFunction = function(obj) {\n      return typeof obj == 'function' || false;\n    };\n  }\n\n  // Is a given object a finite number?\n  _.isFinite = function(obj) {\n    return isFinite(obj) && !isNaN(parseFloat(obj));\n  };\n\n  // Is the given value `NaN`? (NaN is the only number which does not equal itself).\n  _.isNaN = function(obj) {\n    return _.isNumber(obj) && obj !== +obj;\n  };\n\n  // Is a given value a boolean?\n  _.isBoolean = function(obj) {\n    return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n  };\n\n  // Is a given value equal to null?\n  _.isNull = function(obj) {\n    return obj === null;\n  };\n\n  // Is a given variable undefined?\n  _.isUndefined = function(obj) {\n    return obj === void 0;\n  };\n\n  // Shortcut function for checking if an object has a given property directly\n  // on itself (in other words, not on a prototype).\n  _.has = function(obj, key) {\n    return obj != null && hasOwnProperty.call(obj, key);\n  };\n\n  // Utility Functions\n  // -----------------\n\n  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its\n  // previous owner. Returns a reference to the Underscore object.\n  _.noConflict = function() {\n    root._ = previousUnderscore;\n    return this;\n  };\n\n  // Keep the identity function around for default iteratees.\n  _.identity = function(value) {\n    return value;\n  };\n\n  // Predicate-generating functions. Often useful outside of Underscore.\n  _.constant = function(value) {\n    return function() {\n      return value;\n    };\n  };\n\n  _.noop = function(){};\n\n  _.property = property;\n\n  // Generates a function for a given object that returns a given property.\n  _.propertyOf = function(obj) {\n    return obj == null ? function(){} : function(key) {\n      return obj[key];\n    };\n  };\n\n  // Returns a predicate for checking whether an object has a given set of\n  // `key:value` pairs.\n  _.matcher = _.matches = function(attrs) {\n    attrs = _.extendOwn({}, attrs);\n    return function(obj) {\n      return _.isMatch(obj, attrs);\n    };\n  };\n\n  // Run a function **n** times.\n  _.times = function(n, iteratee, context) {\n    var accum = Array(Math.max(0, n));\n    iteratee = optimizeCb(iteratee, context, 1);\n    for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n    return accum;\n  };\n\n  // Return a random integer between min and max (inclusive).\n  _.random = function(min, max) {\n    if (max == null) {\n      max = min;\n      min = 0;\n    }\n    return min + Math.floor(Math.random() * (max - min + 1));\n  };\n\n  // A (possibly faster) way to get the current timestamp as an integer.\n  _.now = Date.now || function() {\n    return new Date().getTime();\n  };\n\n   // List of HTML entities for escaping.\n  var escapeMap = {\n    '&': '&amp;',\n    '<': '&lt;',\n    '>': '&gt;',\n    '\"': '&quot;',\n    \"'\": '&#x27;',\n    '`': '&#x60;'\n  };\n  var unescapeMap = _.invert(escapeMap);\n\n  // Functions for escaping and unescaping strings to/from HTML interpolation.\n  var createEscaper = function(map) {\n    var escaper = function(match) {\n      return map[match];\n    };\n    // Regexes for identifying a key that needs to be escaped\n    var source = '(?:' + _.keys(map).join('|') + ')';\n    var testRegexp = RegExp(source);\n    var replaceRegexp = RegExp(source, 'g');\n    return function(string) {\n      string = string == null ? '' : '' + string;\n      return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n    };\n  };\n  _.escape = createEscaper(escapeMap);\n  _.unescape = createEscaper(unescapeMap);\n\n  // If the value of the named `property` is a function then invoke it with the\n  // `object` as context; otherwise, return it.\n  _.result = function(object, property, fallback) {\n    var value = object == null ? void 0 : object[property];\n    if (value === void 0) {\n      value = fallback;\n    }\n    return _.isFunction(value) ? value.call(object) : value;\n  };\n\n  // Generate a unique integer id (unique within the entire client session).\n  // Useful for temporary DOM ids.\n  var idCounter = 0;\n  _.uniqueId = function(prefix) {\n    var id = ++idCounter + '';\n    return prefix ? prefix + id : id;\n  };\n\n  // By default, Underscore uses ERB-style template delimiters, change the\n  // following template settings to use alternative delimiters.\n  _.templateSettings = {\n    evaluate    : /<%([\\s\\S]+?)%>/g,\n    interpolate : /<%=([\\s\\S]+?)%>/g,\n    escape      : /<%-([\\s\\S]+?)%>/g\n  };\n\n  // When customizing `templateSettings`, if you don't want to define an\n  // interpolation, evaluation or escaping regex, we need one that is\n  // guaranteed not to match.\n  var noMatch = /(.)^/;\n\n  // Certain characters need to be escaped so that they can be put into a\n  // string literal.\n  var escapes = {\n    \"'\":      \"'\",\n    '\\\\':     '\\\\',\n    '\\r':     'r',\n    '\\n':     'n',\n    '\\u2028': 'u2028',\n    '\\u2029': 'u2029'\n  };\n\n  var escaper = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\n  var escapeChar = function(match) {\n    return '\\\\' + escapes[match];\n  };\n\n  // JavaScript micro-templating, similar to John Resig's implementation.\n  // Underscore templating handles arbitrary delimiters, preserves whitespace,\n  // and correctly escapes quotes within interpolated code.\n  // NB: `oldSettings` only exists for backwards compatibility.\n  _.template = function(text, settings, oldSettings) {\n    if (!settings && oldSettings) settings = oldSettings;\n    settings = _.defaults({}, settings, _.templateSettings);\n\n    // Combine delimiters into one regular expression via alternation.\n    var matcher = RegExp([\n      (settings.escape || noMatch).source,\n      (settings.interpolate || noMatch).source,\n      (settings.evaluate || noMatch).source\n    ].join('|') + '|$', 'g');\n\n    // Compile the template source, escaping string literals appropriately.\n    var index = 0;\n    var source = \"__p+='\";\n    text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n      source += text.slice(index, offset).replace(escaper, escapeChar);\n      index = offset + match.length;\n\n      if (escape) {\n        source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n      } else if (interpolate) {\n        source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n      } else if (evaluate) {\n        source += \"';\\n\" + evaluate + \"\\n__p+='\";\n      }\n\n      // Adobe VMs need the match returned to produce the correct offest.\n      return match;\n    });\n    source += \"';\\n\";\n\n    // If a variable is not specified, place data values in local scope.\n    if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n    source = \"var __t,__p='',__j=Array.prototype.join,\" +\n      \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n      source + 'return __p;\\n';\n\n    try {\n      var render = new Function(settings.variable || 'obj', '_', source);\n    } catch (e) {\n      e.source = source;\n      throw e;\n    }\n\n    var template = function(data) {\n      return render.call(this, data, _);\n    };\n\n    // Provide the compiled source as a convenience for precompilation.\n    var argument = settings.variable || 'obj';\n    template.source = 'function(' + argument + '){\\n' + source + '}';\n\n    return template;\n  };\n\n  // Add a \"chain\" function. Start chaining a wrapped Underscore object.\n  _.chain = function(obj) {\n    var instance = _(obj);\n    instance._chain = true;\n    return instance;\n  };\n\n  // OOP\n  // ---------------\n  // If Underscore is called as a function, it returns a wrapped object that\n  // can be used OO-style. This wrapper holds altered versions of all the\n  // underscore functions. Wrapped objects may be chained.\n\n  // Helper function to continue chaining intermediate results.\n  var result = function(instance, obj) {\n    return instance._chain ? _(obj).chain() : obj;\n  };\n\n  // Add your own custom functions to the Underscore object.\n  _.mixin = function(obj) {\n    _.each(_.functions(obj), function(name) {\n      var func = _[name] = obj[name];\n      _.prototype[name] = function() {\n        var args = [this._wrapped];\n        push.apply(args, arguments);\n        return result(this, func.apply(_, args));\n      };\n    });\n  };\n\n  // Add all of the Underscore functions to the wrapper object.\n  _.mixin(_);\n\n  // Add all mutator Array functions to the wrapper.\n  _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n    var method = ArrayProto[name];\n    _.prototype[name] = function() {\n      var obj = this._wrapped;\n      method.apply(obj, arguments);\n      if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];\n      return result(this, obj);\n    };\n  });\n\n  // Add all accessor Array functions to the wrapper.\n  _.each(['concat', 'join', 'slice'], function(name) {\n    var method = ArrayProto[name];\n    _.prototype[name] = function() {\n      return result(this, method.apply(this._wrapped, arguments));\n    };\n  });\n\n  // Extracts the result from a wrapped and chained object.\n  _.prototype.value = function() {\n    return this._wrapped;\n  };\n\n  // Provide unwrapping proxy for some methods used in engine operations\n  // such as arithmetic and JSON stringification.\n  _.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n  _.prototype.toString = function() {\n    return '' + this._wrapped;\n  };\n\n  // AMD registration happens at the end for compatibility with AMD loaders\n  // that may not enforce next-turn semantics on modules. Even though general\n  // practice for AMD registration is to be anonymous, underscore registers\n  // as a named module because, like jQuery, it is a base library that is\n  // popular enough to be bundled in a third party lib, but not be part of\n  // an AMD load request. Those cases could generate an error when an\n  // anonymous define() is called outside of a loader request.\n  if (typeof define === 'function' && define.amd) {\n    define('underscore', [], function() {\n      return _;\n    });\n  }\n}.call(this));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/underscore/underscore.js\n// module id = 1\n// module chunks = 0","\"use strict\";\n\nvar _undefined = require(\"../function/noop\")(); // Support ES3 engines\n\nmodule.exports = function (val) {\n return (val !== _undefined) && (val !== null);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/is-value.js\n// module id = 2\n// module chunks = 0","\"use strict\";\nvar _ = require('underscore');\n\n// Add string formatting if it doesn't exist\nif (!String.prototype.format) {\n  String.prototype.format = function() {\n    var args = arguments;\n    return this.replace(/{(\\d+)}/g, function(match, number) {\n      return typeof args[number] != 'undefined'\n        ? args[number]\n        : match\n      ;\n    });\n  };\n}\n\nfunction getWaterTempProbe(data, plotInfo, traceInfo, allData) {\n    var allProbeText = [];\n    var probeText;\n    var row, col;\n    var rowText;\n    var depth;\n    for (var j=0; j < data.length; j++) {\n        row = data[j];\n        rowText = [];\n        depth = traceInfo.y[j];\n        for (var i=0; i < row.length; i++) {\n            col = row[i];\n\n            probeText = \"Depth: {0}m<br>{1}: {2} °C ({3} °F)\".format(\n                depth.toFixed(1),\n                traceInfo.name,\n                col !== null ? col.toFixed(3) : \"N/A\",\n                col !== null ? getF(col).toFixed(3) : \"N/A\");\n            rowText.push(probeText);\n        }\n        allProbeText.push(rowText);\n    }\n    return allProbeText;\n}\n\nfunction getSpeedMPH(val) {\n    // convert m/s to mph\n    return val * 3600 / 1608;\n}\nfunction getSpeedKTS(val) {\n    //m/s to knots\n    return val * 1.94384;\n}\n\n\nfunction getPresInHg(val) {\n    // hPa to InHg\n    return val * 0.02952998751;\n}\n\n\nfunction getAccumMillimeter(val) {\n    // convert inches to millimeters\n    return val * 25.4;\n}\n\n\nfunction cardinalWDir(degrees){\n    \n    return ['N','NNE','NE','ENE',\n            'E','ESE','SE','SSE',\n            'S','SSW','SW','WSW',\n            'W','WNW','NW','NNW'][Math.floor(((degrees+11.25)%360)/22.5)];\n}\n// Convert C to F degrees\nfunction getF(val) {\n    return val * 1.8 + 32;\n}\n\nfunction getVal(val) {\n    return val;\n}\n\n\nvar CONVERSION_FUNCTIONS = {\n    null: getVal,\n    undefined: getVal,\n    getF: getF,\n    getPresInHg: getPresInHg,\n    getSpeedMPH: getSpeedMPH,\n    getAccumMillimeter: getAccumMillimeter,\n    cardinalWDir: cardinalWDir,\n    getSpeedKTS:getSpeedKTS\n};\n\n\n\nfunction formatValue(val, plotInfo, traceInfo) {\n    var val2;\n    if (val === null) {\n        val = \"\";\n        val2 = \"\";\n    } else {\n        if ('yaxis2' in plotInfo && 'convert_value' in plotInfo.yaxis2) {\n            val2 = CONVERSION_FUNCTIONS[plotInfo.yaxis2.convert_value](val);\n            val2 = (val2.toFixed)?val2.toFixed(plotInfo.yaxis2.precision):val2;\n        } else {\n            val2 = undefined;\n        }\n        val = CONVERSION_FUNCTIONS[plotInfo.yaxis.convert_value](val);\n        val=(val.toFixed)?val.toFixed(plotInfo.yaxis.precision):val;\n    }\n\n    if ('yaxis2' in plotInfo && val2 !== undefined) {\n        return \"{0}: {1}{2} ({3}{4})\".format(\n            traceInfo.name,\n            val, plotInfo.yaxis.units,\n            val2, plotInfo.yaxis2.units);\n    } else {\n        return \"{0}: {1}{2}\".format(\n            traceInfo.name,\n            val, plotInfo.yaxis.units);\n    }\n}\n\nfunction getDewpointProbe(data, plotInfo, traceInfo, allData) {\n    var allProbeText = [];\n    var probeText;\n    var relHum = undefined;\n    if ('anc_variables' in traceInfo && traceInfo.anc_variables.length == 1) {\n        relHum = allData[traceInfo.anc_variables[0]];\n    }\n    var rh_info = traceInfo.anc_info[traceInfo.anc_variables[0]];\n    if(!rh_info)\n        rh_info={ name: traceInfo.anc_variables[0], units: '', precision: 2};\n\n    for (var i=0; i < data.length; i++) {\n        probeText = formatValue(data[i], plotInfo, traceInfo);\n        if (relHum !== undefined) {\n            probeText += \"<br>{0}: {1}{2}\".format(rh_info.name,\n                    relHum[i] ? relHum[i].toFixed(rh_info.precision) : \"\",\n                    rh_info.units);\n        }\n        allProbeText.push(probeText);\n    }\n    return allProbeText;\n}\n\n\nfunction defaultProbeText(data, plotInfo, traceInfo, allData) {\n    // assume traces share the same 'x'\n    var allProbeText = [];\n    for (var i=0; i < data.length; i++) {\n        allProbeText.push(formatValue(data[i], plotInfo, traceInfo));\n    }\n    return allProbeText;\n}\n\n\nvar PROBE_TEXT_FUNCTIONS = {\n    undefined: defaultProbeText,\n    null: defaultProbeText,\n    dewpoint: getDewpointProbe,\n    water_temp: getWaterTempProbe,\n};\n\n\nfunction getProbeText(data, plotInfo, traceInfo, allData) {\n    if ('probe_text' in traceInfo) {\n        return PROBE_TEXT_FUNCTIONS[traceInfo.probe_text](data, plotInfo, traceInfo, allData);\n    }\n    return defaultProbeText(data, plotInfo, traceInfo, allData);\n}\n\n\nfunction getTickText(values, axis_info) {\n    var tickText = [];\n    for (var i=0; i < values.length; i++) {\n        var val = CONVERSION_FUNCTIONS[axis_info.convert_value](values[i]);\n        val = (val.toFixed)?val.toFixed(axis_info.precision):val;\n        tickText.push(val);\n    }\n    return tickText;\n}\n\n\n/**\n* the purpose of this method is to get the spacing for the y axis\n* For deg F and deg C\n* @param min - minimum of the temp or dew point array\n* @param max - maximum of the temp or dew point array\n* @return array of 4 tick values for the y axis\n*/\n\nfunction getTickVals(min, max, bump) {\n    var extra = (max - min) * 0.02;\n    min = min - extra;\n    max = max + extra;\n    var step = (max - min) / 4.;\n    //create 4 tick values for the y axis\n    return _.range(min, max + step, step);\n}\n\n\nmodule.exports.getTickVals = getTickVals;\nmodule.exports.getProbeText = getProbeText;\nmodule.exports.getTickText = getTickText;\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// ./plot/ticks.js","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things.  But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals.  It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n    throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n    throw new Error('clearTimeout has not been defined');\n}\n(function () {\n    try {\n        if (typeof setTimeout === 'function') {\n            cachedSetTimeout = setTimeout;\n        } else {\n            cachedSetTimeout = defaultSetTimout;\n        }\n    } catch (e) {\n        cachedSetTimeout = defaultSetTimout;\n    }\n    try {\n        if (typeof clearTimeout === 'function') {\n            cachedClearTimeout = clearTimeout;\n        } else {\n            cachedClearTimeout = defaultClearTimeout;\n        }\n    } catch (e) {\n        cachedClearTimeout = defaultClearTimeout;\n    }\n} ())\nfunction runTimeout(fun) {\n    if (cachedSetTimeout === setTimeout) {\n        //normal enviroments in sane situations\n        return setTimeout(fun, 0);\n    }\n    // if setTimeout wasn't available but was latter defined\n    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n        cachedSetTimeout = setTimeout;\n        return setTimeout(fun, 0);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedSetTimeout(fun, 0);\n    } catch(e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n            return cachedSetTimeout.call(null, fun, 0);\n        } catch(e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n            return cachedSetTimeout.call(this, fun, 0);\n        }\n    }\n\n\n}\nfunction runClearTimeout(marker) {\n    if (cachedClearTimeout === clearTimeout) {\n        //normal enviroments in sane situations\n        return clearTimeout(marker);\n    }\n    // if clearTimeout wasn't available but was latter defined\n    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n        cachedClearTimeout = clearTimeout;\n        return clearTimeout(marker);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedClearTimeout(marker);\n    } catch (e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n            return cachedClearTimeout.call(null, marker);\n        } catch (e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n            return cachedClearTimeout.call(this, marker);\n        }\n    }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n    if (!draining || !currentQueue) {\n        return;\n    }\n    draining = false;\n    if (currentQueue.length) {\n        queue = currentQueue.concat(queue);\n    } else {\n        queueIndex = -1;\n    }\n    if (queue.length) {\n        drainQueue();\n    }\n}\n\nfunction drainQueue() {\n    if (draining) {\n        return;\n    }\n    var timeout = runTimeout(cleanUpNextTick);\n    draining = true;\n\n    var len = queue.length;\n    while(len) {\n        currentQueue = queue;\n        queue = [];\n        while (++queueIndex < len) {\n            if (currentQueue) {\n                currentQueue[queueIndex].run();\n            }\n        }\n        queueIndex = -1;\n        len = queue.length;\n    }\n    currentQueue = null;\n    draining = false;\n    runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n    var args = new Array(arguments.length - 1);\n    if (arguments.length > 1) {\n        for (var i = 1; i < arguments.length; i++) {\n            args[i - 1] = arguments[i];\n        }\n    }\n    queue.push(new Item(fun, args));\n    if (queue.length === 1 && !draining) {\n        runTimeout(drainQueue);\n    }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n    this.fun = fun;\n    this.array = array;\n}\nItem.prototype.run = function () {\n    this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n    throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n    throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/process/browser.js\n// module id = 4\n// module chunks = 0","\"use strict\";\nvar updatePlot = require('./update.js');\nvar loading = require('../ui/loading.js');\nvar _ = require('underscore');\n\n\nfunction processData(dataObj) {\n    // plotly doesn't support the 'T' date/time separator or the 'Z' at the end\n    // https://help.plot.ly/date-format-and-time-series/#step-2-entering-dates-and-times-in-plotly-s-grid\n    var dates = _.map(dataObj.timestamps, function(date){return date.replace(\"T\",' ').substring(0, date.length-1)});\n    var allData = {\n        dates: dates,\n    };\n    _.extend(allData, dataObj.data);\n    return allData;\n}\n\n\nfunction plotting(url, var_names, plotsInfo, div, update) {\n    //gets information and updates component\n    $.ajax({\n            type: 'GET',\n            url: url,\n            jsonp: \"callback\",\n            dataType: \"jsonp\",\n            success: function(dataObj) {\n                var graphDiv = document.getElementById(div);\n                var allData = processData(dataObj['results']);\n                var existingDates = graphDiv.data[0]['x'];\n                var dates = allData['dates'];\n                dataObj = {\n                    dates: dates\n                };\n\n                if (dataObj.dates.length == 0) {\n                    console.warn(\"No data available from API\");\n                    return;\n                }\n\n                if (update) {\n                    // first index in the new data that is actually new\n                    var startIndex = 0;\n                    // update only dates that aren't already included\n                    // assume that we don't have any missing dates in the middle\n                    while (startIndex < dates.length && dates[startIndex] <= existingDates[existingDates.length - 1]) {\n                        startIndex++;\n                    }\n\n                    // subset the data if needed\n                    if (startIndex == dates.length) {\n                        console.info(\"No new data downloaded\");\n                        return;\n                    } else {\n                        dates = dates.slice(startIndex);\n                        for (var i = 0; i < var_names.length; i++) {\n                            dataObj[var_names[i]] = allData[var_names[i]].slice(startIndex);\n                        }\n                    }\n                } else {\n                    // replace the entire data array\n                    for (var i = 0; i < var_names.length; i++) {\n                        dataObj[var_names[i]] = allData[var_names[i]];\n                    }\n                }\n\n                updatePlot.updatePlot(graphDiv, plotsInfo, dataObj, update);\n            }\n    });\n}\n\n\nfunction buildRequestUrl(format, interval, epoch, sep, order, time, streams) {\n    var request_url = METOBS_API_URL+'/api/data.'+format+'?';\n    request_url += 'interval='+interval;\n    request_url += '&epoch='+epoch;\n    request_url +='&sep='+sep || ','; \n    request_url += '&order='+order;\n    request_url+=time;\n    request_url+='&symbols='+streams;\n    return request_url;\n}\n\n//the minimum time period (in milliseconds) that a request must cover in order to use\nvar intervalLookUp = [\n    //1 day for 5 minutes\n    [1000*60*60*24, '5m', '-00:10:00'],\n    //6 days for 30 minutes\n    [1000*60*60*24*6, '30m', '-01:00:00'],\n    //1 month for 1 hour\n    [1000*60*60*24*30*1, '1h', '-02:00:00'],\n    //3 months for 3 hours\n    [1000*60*60*24*30*3, '3h', '-06:00:00'],\n    //6 months for 6 hours\n    [1000*60*60*24*30*6, '6h', '-12:00:00'],\n    //1 year for 12 hours\n    [1000*60*60*24*365, '12h', '-24:00:00'],\n    //anything else is 1 minute\n];\n\n\nfunction varNamesForDiv(div) {\n    var varNames = [];\n    var graphDiv = document.getElementById(div);\n    _.each(graphDiv.data, function(trace_data) {\n        Array.prototype.push.apply(varNames, trace_data.var_names);\n        if ('anc_variables' in trace_data) {\n            Array.prototype.push.apply(varNames, trace_data.anc_variables);\n        }\n    });\n    return varNames;\n}\n\n\n//poorly ordered function parameters\nfunction requestPlotUpdate(div, plotsInfo, startTime, endTime, interval, update) {\n    var varNames = varNamesForDiv(div);\n    var stream_string = '';\n    for (var i in varNames) {\n        stream_string += varNames[i];\n        if (i < varNames.length - 1) stream_string += ':';\n    }\n\n    var time;\n    if (!endTime) {\n        interval = '1m';\n        // hours, minutes, seconds\n        var time_parts = _.map(startTime.split(':'), Number);\n        var dt_in_ms = -1000 * 60 * 60 * time_parts[0] + 1000 * 60 * time_parts[1] + 1000 * time_parts[2];\n        for (var i in intervalLookUp) {\n            if (dt_in_ms >= intervalLookUp[i][0]) {\n                interval = intervalLookUp[i][1];\n\n                if (update) {\n                    // we only want new data, the passed startTime was only\n                    // used to determine the interval\n                    startTime = intervalLookUp[i][2];\n                }\n            }\n        }\n        time = '&begin='+startTime;\n    } else {\n        time='&begin='+startTime+'&end='+endTime;\n        if(interval == 'auto'){\n            interval = '1m';\n            var dt_in_ms = (new Date(endTime)) - (new Date(startTime));\n            for(var i in intervalLookUp){\n                if (dt_in_ms >= intervalLookUp[i][0])\n                    interval = intervalLookUp[i][1];\n            }\n        }\n    }\n\n    var url = buildRequestUrl('json', interval, '', '', 'column', time, stream_string);\n    plotting(url, varNames, plotsInfo, div, update);\n    return interval;\n}\n\n/**\n* The purpose of this method is to create a url based on user info\n*\n* @param userInfo - jsn with startdate, start time, end date, end time, and interval\n* no returns\n*/\n\nfunction customPlot(userInfo,streams)\n{\n    //get dates\n    var startDate = userInfo.startDate;\n    var startParts = startDate.split('/');\n    startDate = startParts[2] + '-' + startParts[0] + '-' + startParts[1];\n\n    var endDate = userInfo.endDate;\n    var endParts = endDate.split('/');\n    endDate = endParts[2] + '-' + endParts[0] + '-' + endParts[1];\n\n    //get times\n    var startTime = userInfo.startTime;\n    var endTime = userInfo.endTime;\n\n    //get interval\n    var interval = userInfo.interval;\n\n    //create url\n    var url = 'http://metobs.ssec.wisc.edu/api/data.json?site=aoss&inst=tower&symbols=air_temp:dewpoint:rel_hum:pressure:wind_speed:wind_direction:accum_precip:solar_flux&begin=';\n    url += (startDate + 'T' + startTime + '&end=' + endDate + 'T' + endTime + '&interval=');\n    url += (interval);\n\n    //plot data\n    plotting(url);\n\n    //hide gif\n    setTimeout(loading.loading, 2000);\n}\n\n//export functions\nmodule.exports.requestPlotUpdate = requestPlotUpdate;\nmodule.exports.buildRequestUrl = buildRequestUrl;\nmodule.exports.customPlot = customPlot;\nmodule.exports.plotting = plotting;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/data.js","var buildFormInDiv = require('./ui/buttons.js');\nvar Dispatcher = require('./dispatcher.js');\nvar _ = require('underscore');\n\nfunction API(div, controlDiv, plotsInfo) {\n    var myDispatcher = Dispatcher.getDispatcher();\n    return {\n        plotDiv: div,\n        controlDiv: controlDiv,\n\n        initMeteorogram: function(plot_div,plotOrder) {\n            this.hasGraph = true;\n            this.plotDiv = plot_div || this.plotDiv;\n            //start with only the selected plots showing, reveal others only if their data is requested\n            myDispatcher.dispatch({\n                'status': 'initPlot',\n                'emit': 'plotEmitter',\n                'location': this.plotDiv,\n                'plotsInfo': plotsInfo,\n                'plotOrder': plotOrder\n            });\n        },\n        initMeteorogramTable: function(table_div,plotOrder) {\n            this.hasTable = true;\n            this.tableDiv = table_div || this.plotDiv;\n            //start with only the selected plots showing, reveal others only if their data is requested\n            myDispatcher.dispatch({\n                'status': 'initTable',\n                'emit': 'plotEmitter',\n                'location': this.tableDiv,\n                'plotsInfo': plotsInfo,\n                'plotOrder': plotOrder,\n            });\n        },\n\n        initMeteorogramControls:function(plotOrder){\n            buildFormInDiv(this.controlDiv, this.plotDiv,myDispatcher);\n        },\n\n        displayRealTime:function(){\n            if(this.hasTable){\n                myDispatcher.dispatch({\n                    'status':'update_table',\n                    'emit':'plotEmitter',\n                    'time':'-3:00:00',\n                    'location':this.tableDiv\n                });\n            }\n            if(this.hasGraph){\n                myDispatcher.dispatch({\n                    'status':'get_since_now',\n                    'emit':'plotEmitter',\n                    'time':'-3:00:00',\n                    'location':this.plotDiv\n                });\n\n            }\n        },\n\n        showPlot:function(varName){\n            myDispatcher.dispatch({status: ('show' + varName), 'emit': 'checkboxEmitter','location':this.div});\n        },\n\n        hidePlot:function(varName){\n            myDispatcher.dispatch({status: ('hide' + varName), 'emit': 'checkboxEmitter','location':this.div});\n        },\n\n        displayRecent:function(start_time){\n            myDispatcher.dispatch({\n                'status':'get_since_now',\n                'emit':'plotEmitter',\n                'time':start_time,\n            });\n        },\n\n        displayTimeRange:function(start_time,stop_time,interval){\n            myDispatcher.dispatch({\n                'status':'get_between_dates',\n                'emit':'plotEmitter',\n                'start':start_time,\n                'end':stop_time,\n                'interval':interval||'auto',\n            });\n\n        },\n    }\n}\n\n//expose the API to other scripts\nwindow.MeteorogramController = API;\n\n\n\n// WEBPACK FOOTER //\n// ./controller.js","\"use strict\";\n\n//var $ = require('jquery');\n//var jQuery = require('jquery');\n\nvar loading = require('./loading.js');\nconst controlPanelTemplate = require('./button_template.js');\n\n/**\n* The purpose of this method is to tell dispatcher\n* Oh, please check if user's entering stuff correctly\n*\n* no params\n* no returns\n*/\n\nfunction dispatchCustom(dispatcher)\n{\n    dispatcher.dispatch({\n        status:'get_between_dates',\n        'emit':'plotEmitter',\n        'start':$('#Start-date-picker').val().split(' ').join('T')+':00',\n        'end':$('#End-date-picker').val().split(' ').join('T')+':00',\n        'interval':'auto',\n    });\n}\n\n\n/**\n* The purpose of this method is to send dispatcher user information\n*\n* no params\n* no returns\n*/\n\nfunction getUserInfo(dispatcher)\n{\n    //show gif\n    loading.loading();\n\n    //get the information from the text boxes\n    var startDate = $('#Start-date-picker').val();\n    var endDate = $('#End-date-picker').val();\n    var startTime = $('#Start-time-picker').val();\n    var endTime = $('#End-time-picker').val();\n    var interval = $('#interval option:selected');\n    var intervalVal = interval.data(\"name\");\n\n    //store in user info\n    var userInfo = {'startDate' : startDate,\n                    'startTime' : startTime,\n                    'endDate': endDate,\n                    'endTime': endTime,\n                    'interval': intervalVal};\n\n    //send to dispatcher\n    setTimeout(function() {dispatch.dispatch({status: 'plot_custom', 'emit': 'plotEmitter', 'userInfo': userInfo});}, 200);                 \n}\n\n\n/**\n* The purpose of this method is to tell dispatcher, time to check if we need to update\n*\n* no params\n* no returns\n*/\n\nfunction dispatchUpdate(dispatcher)\n{\n    dispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter'});\n}\n\n/**\n* The purpose of this method is to figure out what the user wants to do based upon\n* what the user selects on the task dropdown\n*\n* no params\n* no returns\n*/\n\nfunction dropDown(selectedText, dispatcher)\n{\n    console.log(dispatcher);\n    if (selectedText == 'realtime') {\n        dispatcher.dispatch({\n            status:'get_since_now',\n            'emit':'plotEmitter',\n            'time':'-3:00:00'\n        });\n\n    } else {\n        var timeDelta = selectedText;\n        dispatcher.dispatch({\n            status:'get_since_now',\n            'emit':'plotEmitter',\n            'time':selectedText\n        });\n    }\n}\n\nvar bind_daterange_actions = function(jQ_div,dispatcher){\n    //bind to custom buttons and dropdowns\n    $(jQ_div+' #plot-btn').click(function(){dispatchCustom(dispatcher)});\n    $(jQ_div+' #dropDownId').change(function(){dropDown($(this).val(),dispatcher)});\n}\nvar set_active_form = function(which_block,jQ_div){\n    $(jQ_div+\" #dropDownId\").prop(\"disabled\",which_block!=\"recent\");\n\n    $(jQ_div+\" #interval\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #Start-date-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #End-date-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #Start-time-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #End-time-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #plot-btn\").prop(\"disabled\",which_block!=\"range\");\n}\n\nvar set_form_datepickers = function(jQ_div){\n    $(jQ_div+' #Start-date-picker').datetimepicker({\n        changeMonth: true, \n        changeYear: true,\n        dateFormat:'yy-mm-dd',\n        timeFormat:'HH:mm',\n        showSecond:false,\n        showMillisec:false,\n        showMicrosec:false\n    });\n\n    $(jQ_div+' #End-date-picker').datetimepicker({\n        changeMonth: true, \n        changeYear: true,\n        dateFormat:'yy-mm-dd',\n        timeFormat:'HH:mm',\n        showSecond:false,\n        showMillisec:false,\n        showMicrosec:false\n    });\n\n    //bind the enabling/disabling of forms to radio buttons\n    $(jQ_div+' [type=text]').prop(\"disabled\",true);\n    $(jQ_div+' select').prop(\"disabled\",true);\n    $(jQ_div+\" #last_x_days\").click(function(){\n        set_active_form(\"recent\",jQ_div);\n    });\n    $(jQ_div+\" #date_range\").click(function(){\n        set_active_form(\"range\",jQ_div);\n    });\n    //$('#Start-time-picker').editableSelect();\n    //$('#End-time-picker').editableSelect();\n    //add placeholder values for the order forms    \n    //$('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));\n    //$('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));\n    //Firefox (+others maybe) keep buttons selected on page reload\n    //enable the currrently selected one's field\n    $(jQ_div+\" #last_x_days\").trigger('click');\n\n};\n\nvar setup_all_forms = function(div,plot_div,dispatcher){\n    var jQ_div = '#'+div;\n    set_form_datepickers(jQ_div,plot_div);\n    bind_daterange_actions(jQ_div,dispatcher);\n}\n\nfunction buildFormInDiv(div, plot_div,dispatcher) {\n    $('#'+div).append(controlPanelTemplate.controlPanelTemplate);\n    //$('#'+div+ \" #show-hide-boxes\").append(controlPanelTemplate.checkboxTemplates[site]);\n    setup_all_forms(div,plot_div,dispatcher);\n}\n$(document).ready(function(){\n    //Hide all form errors initially\n    //Set up the date range inputs as datepicker objects\n});\n\nmodule.exports = buildFormInDiv;\n\n\n\n// WEBPACK FOOTER //\n// ./ui/buttons.js","const checkboxTemplates = {\n    'aoss.tower': '<div class=\"form-group\">'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"temp\">Temperature + Dewpoint'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"pres\">Pressure'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wS\">Wind Speed'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wD\">Wind Direction'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"aP\">Precipitation'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"sF\">Solar Flux'+\n        '</label>'+\n        '</div>',\n    'mendota.buoy': '<div class=\"form-group\">'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"temp\">Temperature + Dewpoint'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"rh\">Relative Humidity'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wS\">Wind Speed'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wD\">Wind Direction'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"chlor\">Chlorophyll'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"phyco\">Phycocyanin'+\n        '</label>'+\n        '</div>'\n};\n\nconst controlPanelTemplate = '<div class=\"row\" id=\"control-panel-row\">'+\n'<div id=\"show-hide-boxes\" class=\"col-md-12\">'+\n'</div>'+\n'<div class = \"col-md-9\">'+\n'<div class=\"row\" style=\"padding: 0 1em;\">'+\n'<div class=\"form-group\">'+\n'<table style=\"width:100%\">'+\n'<tr>'+\n'<td>'+\n'<div class=\"radio\">'+\n'<label><input type=\"radio\" id=\"last_x_days\" name=\"time_select\">'+\n'Recent Data:'+\n'</label>'+\n'</div>'+\n'</td>'+\n'<td>'+\n'<select class=\"form-control\" id=\"dropDownId\">'+\n'<option selected value=\"realtime\">Realtime Update</option>'+\n'<option value=\"-1:00:00\">Past 1 Hour</option>'+\n'<option value=\"-2:00:00\">Past 2 Hours</option>'+\n'<option value=\"-3:00:00\">Past 3 Hours</option>'+\n'<option value=\"-6:00:00\">Past 6 Hours</option>'+\n'<option value=\"-12:00:00\">Past 12 Hours</option>'+\n'<option value=\"-18:00:00\">Past 18 Hours</option>'+\n'<option value=\"-24:00:00\">Past 24 Hours</option>'+\n'<option value=\"-96:00:00\">Past 4 Days</option>'+\n'</select>'+\n'</td>'+\n'<td style=\"padding-left:.5em\">'+\n'<div class=\"radio\">'+\n'<label><input type=\"radio\" id=\"date_range\" name=\"time_select\">'+\n'Date Range:'+\n'</label>'+\n'</div>'+\n'</td>'+\n'<td>'+\n'<input class=\"form-control\" style=\"padding 0.5em 0;\" id=\"Start-date-picker\" type=\"text\" placeholder=\"YYYY-MM-DD\"/>'+\n'</td>'+\n'<td>to </td>'+\n'<td>'+\n'<input class=\"form-control\" style=\"padding 0.5em 0;\" id=\"End-date-picker\" type=\"text\" placeholder=\"YYYY-MM-DD\"/>'+\n'</td>'+\n'<td>'+\n'<button class=\"btn btn-primary btn-block\" id=\"plot-btn\">Plot</button>'+\n'</td>'+\n'</tr>'+\n'</table>'+\n'</div>'+\n'</div>'+\n'</div>'+\n'</div>'\n;\nmodule.exports = {\n    controlPanelTemplate:controlPanelTemplate,\n    checkboxTemplates:checkboxTemplates\n}\n\n\n\n// WEBPACK FOOTER //\n// ./ui/button_template.js","\"use strict\";\n\n//var $ = require('jquery');\nvar ee = require('event-emitter');\nvar Flux = require('flux');\nvar Plot = require('./plot/init.js');\nvar Table = require('./plot/table.js');\nvar dataAccess = require('./plot/data.js');\nvar loading = require('./ui/loading.js');\nvar getDispatcher = function(){\n    var myDispatcher = new Flux.Dispatcher();\n    //not sure where else to stick globals\n    myDispatcher.GRAPH_HEIGHT = 170;\n    /**\n    * The purpose of this method is to dispatch an update message to plotStore\n    *\n    * no parameters\n    * no returns\n    */\n\n    function dispatchUpdate(startTime) {\n        return function() {\n            //dispatch update message to plotStore\n            myDispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter', 'startTime': startTime});\n        }\n    }\n\n    //creates checkbox store\n    var checkboxEmitter = ee({\n        visible: {},\n        setPlots: function (plotsInfo) {\n            for (var plot_key in plotsInfo) {\n                this.visible[plot_key] = true;\n            }\n        },\n        setShowing: function(plotName, visible) {\n            if (visible === undefined) {\n                this.showing[plotName] = !this.showing[plotName];\n            } else {\n                this.showing[plotName] = visible;\n            }\n        },\n        getShowing: function(plotName) {\n            return this.showing[plotName];\n        },\n        handleActions: function(action) {\n            //only handels if action is for checkbox emitter\n            if(action.emit == 'checkboxEmitter')\n            {\n                this.emit(action.status, action.location);\n            }    \n        }\n    });\n\n    //register store with dispatcher\n    checkboxEmitter.dispatchToken = myDispatcher.register(checkboxEmitter.handleActions.bind(checkboxEmitter));\n\n    //create plotStore\n    // FIXME: Event emitter should be added to a class prototype, not the other way around\n    // See https://github.com/medikoo/event-emitter#usage\n    // The below works...but only because event-emitter allows it. Should probably stick with advertised features\n    var plotEmitter = ee({\n        handleActions: function(action) {\n            if (action.emit == 'plotEmitter') {\n                myDispatcher.waitFor([checkboxEmitter.dispatchToken]);\n\n                if (action.location !== undefined) {\n                    this.div = action.location;\n                }\n\n                if (action.plotsInfo !== undefined) {\n                    this.plotsInfo = action.plotsInfo;\n                    this.plotOrder = this.plotsInfo.defaultPlots;\n                }\n                if (action.plotOrder !== undefined) {\n                    this.plotOrder = action.plotOrder;\n                }\n\n                if (action.status == 'get_since_now') {\n                    this.emit(\n                        action.status,\n                        action.time,\n                        this.plotsInfo,\n                        this.div);\n                }else if (action.status == 'update_table') {\n                    this.emit(\n                        action.status,\n                        action.time,\n                        this.plotsInfo,\n                        this.div);\n                } else if (action.status == 'get_between_dates') {\n                    this.emit(\n                        action.status,\n                        action.start,\n                        action.end,\n                        action.interval,\n                        this.plotsInfo,\n                        this.div);\n                } else if (action.status == 'initPlot') {\n                    this.emit(\n                        action.status,\n                        action.location,\n                        action.plotOrder ? action.plotOrder : this.plotOrder,\n                        this.plotsInfo);\n                } else if (action.status == 'initTable') {\n                    this.emit(\n                        action.status,\n                        action.location,\n                        action.plotOrder ? action.plotOrder : this.plotOrder,\n                        this.plotsInfo);\n                } else if (action.status == 'update') {\n                    this.emit(action.status, this.div, this.plotsInfo, action.startTime);\n                } else {\n                    //adds parameter for user information in custom plot\n                    console.debug(\"Emitting user information message: {action.status} : {action.userInfo}\");\n                    this.emit(action.status, action.userInfo);\n                }\n            }    \n        }\n    });\n\n\n    function stopUpdate(plotsInfo) {\n        if(!plotsInfo.progress)\n            plotsInfo.progress = new Object();\n        if(plotsInfo.progress.validID){\n            var id = plotsInfo.progress.id[0];\n            clearInterval(id);\n            plotsInfo.progress.validID = false;\n\n        }\n    }\n\n    // update every N/2 milliseconds\n    const updateInterval = {\n        '1m': 30 * 1000,\n        '5m': 2.5 * 60 * 1000,\n        '30m': 15 * 60 * 1000,\n        '1h': 30 * 60 * 1000,\n        '3h': 1.5 * 60 * 60 * 1000,\n        '6h': 3 * 60 * 60 * 1000,\n        '12h': 6 * 60 * 60 * 1000,\n    };\n\n\n    function startUpdate(startTime, interval,plotsInfo) {\n        // stop any previous updates\n        if(!plotsInfo.progress)\n            plotsInfo.progress = new Object();\n        stopUpdate(plotsInfo);\n\n        // resume update operations\n        if (startTime === undefined) {\n            startTime = plotsInfo.progress.id[1];\n        }\n        if (interval === undefined) {\n            interval = plotsInfo.progress.id[2];\n        }\n\n        // every 30 seconds, rings update alarm\n        var intervalID = setInterval(dispatchUpdate(startTime), updateInterval[interval]);\n        // save alarm id\n        plotsInfo.progress.id = [intervalID, startTime, interval];\n        plotsInfo.progress.validID = true;\n    }\n\n    plotEmitter.on('initTable', function(div, plotOrder, plotsInfo) {\n        //initialize checkbox store\n        checkboxEmitter.setPlots(plotsInfo);\n        Table.initTable(div, plotOrder, plotsInfo);\n    });\n\n    plotEmitter.on('update_table',function(time, plotsInfo, div){\n        Table.requestTableUpdate(div,plotsInfo);\n        setInterval(function(){Table.requestTableUpdate(div,plotsInfo)},updateInterval['1m']);\n    });\n\n    plotEmitter.on('initPlot', function(div, plotOrder, plotsInfo) {\n        //initialize checkbox store\n        checkboxEmitter.setPlots(plotsInfo);\n        Plot.initPlot(div, plotOrder, plotsInfo);\n    });\n\n    plotEmitter.on(\"get_since_now\",function(time, plotsInfo, div){\n        var interval = dataAccess.requestPlotUpdate(div, plotsInfo, time, undefined, undefined);\n        startUpdate(time, interval,plotsInfo);\n    });\n\n    plotEmitter.on(\"get_between_dates\",function(start,end,interval, plotsInfo, div){\n        stopUpdate(plotsInfo);\n        dataAccess.requestPlotUpdate(div, plotsInfo, start, end, interval);\n    });\n\n    //when store recieves signal, update component\n    plotEmitter.on('update', function(div, plotsInfo, startTime) {\n        dataAccess.requestPlotUpdate(div, plotsInfo, startTime, undefined, undefined, true);\n    });\n\n    // plotEmitter.on(\"plot_custom\", function(userInfo)\n    // {\n    //      staticPlots.customPlot(userInfo,['air_temp','dewpoint','rel_hum','pressure',\n    //         'wind_speed','wind_direction','accum_precip','solar_flux']);\n    // });\n\n    plotEmitter.on(\"checking_custom\", function()\n    {\n        //before components were plots. Here, it's the user prompt paragraph\n        loading.checkInterval();\n    });\n\n    //register plotStore with dispatcher\n    plotEmitter.dispatchToken = myDispatcher.register(plotEmitter.handleActions.bind(plotEmitter));\n\n    return myDispatcher;\n}\n//exports dispatchers and stores\nmodule.exports.getDispatcher = getDispatcher;\n\n\n\n// WEBPACK FOOTER //\n// ./dispatcher.js","'use strict';\n\nvar d        = require('d')\n  , callable = require('es5-ext/object/valid-callable')\n\n  , apply = Function.prototype.apply, call = Function.prototype.call\n  , create = Object.create, defineProperty = Object.defineProperty\n  , defineProperties = Object.defineProperties\n  , hasOwnProperty = Object.prototype.hasOwnProperty\n  , descriptor = { configurable: true, enumerable: false, writable: true }\n\n  , on, once, off, emit, methods, descriptors, base;\n\non = function (type, listener) {\n\tvar data;\n\n\tcallable(listener);\n\n\tif (!hasOwnProperty.call(this, '__ee__')) {\n\t\tdata = descriptor.value = create(null);\n\t\tdefineProperty(this, '__ee__', descriptor);\n\t\tdescriptor.value = null;\n\t} else {\n\t\tdata = this.__ee__;\n\t}\n\tif (!data[type]) data[type] = listener;\n\telse if (typeof data[type] === 'object') data[type].push(listener);\n\telse data[type] = [data[type], listener];\n\n\treturn this;\n};\n\nonce = function (type, listener) {\n\tvar once, self;\n\n\tcallable(listener);\n\tself = this;\n\ton.call(this, type, once = function () {\n\t\toff.call(self, type, once);\n\t\tapply.call(listener, this, arguments);\n\t});\n\n\tonce.__eeOnceListener__ = listener;\n\treturn this;\n};\n\noff = function (type, listener) {\n\tvar data, listeners, candidate, i;\n\n\tcallable(listener);\n\n\tif (!hasOwnProperty.call(this, '__ee__')) return this;\n\tdata = this.__ee__;\n\tif (!data[type]) return this;\n\tlisteners = data[type];\n\n\tif (typeof listeners === 'object') {\n\t\tfor (i = 0; (candidate = listeners[i]); ++i) {\n\t\t\tif ((candidate === listener) ||\n\t\t\t\t\t(candidate.__eeOnceListener__ === listener)) {\n\t\t\t\tif (listeners.length === 2) data[type] = listeners[i ? 0 : 1];\n\t\t\t\telse listeners.splice(i, 1);\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif ((listeners === listener) ||\n\t\t\t\t(listeners.__eeOnceListener__ === listener)) {\n\t\t\tdelete data[type];\n\t\t}\n\t}\n\n\treturn this;\n};\n\nemit = function (type) {\n\tvar i, l, listener, listeners, args;\n\n\tif (!hasOwnProperty.call(this, '__ee__')) return;\n\tlisteners = this.__ee__[type];\n\tif (!listeners) return;\n\n\tif (typeof listeners === 'object') {\n\t\tl = arguments.length;\n\t\targs = new Array(l - 1);\n\t\tfor (i = 1; i < l; ++i) args[i - 1] = arguments[i];\n\n\t\tlisteners = listeners.slice();\n\t\tfor (i = 0; (listener = listeners[i]); ++i) {\n\t\t\tapply.call(listener, this, args);\n\t\t}\n\t} else {\n\t\tswitch (arguments.length) {\n\t\tcase 1:\n\t\t\tcall.call(listeners, this);\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\tcall.call(listeners, this, arguments[1]);\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\tcall.call(listeners, this, arguments[1], arguments[2]);\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tl = arguments.length;\n\t\t\targs = new Array(l - 1);\n\t\t\tfor (i = 1; i < l; ++i) {\n\t\t\t\targs[i - 1] = arguments[i];\n\t\t\t}\n\t\t\tapply.call(listeners, this, args);\n\t\t}\n\t}\n};\n\nmethods = {\n\ton: on,\n\tonce: once,\n\toff: off,\n\temit: emit\n};\n\ndescriptors = {\n\ton: d(on),\n\tonce: d(once),\n\toff: d(off),\n\temit: d(emit)\n};\n\nbase = defineProperties({}, descriptors);\n\nmodule.exports = exports = function (o) {\n\treturn (o == null) ? create(base) : defineProperties(Object(o), descriptors);\n};\nexports.methods = methods;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/event-emitter/index.js\n// module id = 10\n// module chunks = 0","'use strict';\n\nvar assign        = require('es5-ext/object/assign')\n  , normalizeOpts = require('es5-ext/object/normalize-options')\n  , isCallable    = require('es5-ext/object/is-callable')\n  , contains      = require('es5-ext/string/#/contains')\n\n  , d;\n\nd = module.exports = function (dscr, value/*, options*/) {\n\tvar c, e, w, options, desc;\n\tif ((arguments.length < 2) || (typeof dscr !== 'string')) {\n\t\toptions = value;\n\t\tvalue = dscr;\n\t\tdscr = null;\n\t} else {\n\t\toptions = arguments[2];\n\t}\n\tif (dscr == null) {\n\t\tc = w = true;\n\t\te = false;\n\t} else {\n\t\tc = contains.call(dscr, 'c');\n\t\te = contains.call(dscr, 'e');\n\t\tw = contains.call(dscr, 'w');\n\t}\n\n\tdesc = { value: value, configurable: c, enumerable: e, writable: w };\n\treturn !options ? desc : assign(normalizeOpts(options), desc);\n};\n\nd.gs = function (dscr, get, set/*, options*/) {\n\tvar c, e, options, desc;\n\tif (typeof dscr !== 'string') {\n\t\toptions = set;\n\t\tset = get;\n\t\tget = dscr;\n\t\tdscr = null;\n\t} else {\n\t\toptions = arguments[3];\n\t}\n\tif (get == null) {\n\t\tget = undefined;\n\t} else if (!isCallable(get)) {\n\t\toptions = get;\n\t\tget = set = undefined;\n\t} else if (set == null) {\n\t\tset = undefined;\n\t} else if (!isCallable(set)) {\n\t\toptions = set;\n\t\tset = undefined;\n\t}\n\tif (dscr == null) {\n\t\tc = true;\n\t\te = false;\n\t} else {\n\t\tc = contains.call(dscr, 'c');\n\t\te = contains.call(dscr, 'e');\n\t}\n\n\tdesc = { get: get, set: set, configurable: c, enumerable: e };\n\treturn !options ? desc : assign(normalizeOpts(options), desc);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/d/index.js\n// module id = 11\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? Object.assign\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/index.js\n// module id = 12\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function () {\n\tvar assign = Object.assign, obj;\n\tif (typeof assign !== \"function\") return false;\n\tobj = { foo: \"raz\" };\n\tassign(obj, { bar: \"dwa\" }, { trzy: \"trzy\" });\n\treturn (obj.foo + obj.bar + obj.trzy) === \"razdwatrzy\";\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/is-implemented.js\n// module id = 13\n// module chunks = 0","\"use strict\";\n\nvar keys  = require(\"../keys\")\n  , value = require(\"../valid-value\")\n  , max   = Math.max;\n\nmodule.exports = function (dest, src /*, …srcn*/) {\n\tvar error, i, length = max(arguments.length, 2), assign;\n\tdest = Object(value(dest));\n\tassign = function (key) {\n\t\ttry {\n\t\t\tdest[key] = src[key];\n\t\t} catch (e) {\n\t\t\tif (!error) error = e;\n\t\t}\n\t};\n\tfor (i = 1; i < length; ++i) {\n\t\tsrc = arguments[i];\n\t\tkeys(src).forEach(assign);\n\t}\n\tif (error !== undefined) throw error;\n\treturn dest;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/shim.js\n// module id = 14\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? Object.keys\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/index.js\n// module id = 15\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function () {\n\ttry {\n\t\tObject.keys(\"primitive\");\n\t\treturn true;\n\t} catch (e) {\n return false;\n}\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/is-implemented.js\n// module id = 16\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"../is-value\");\n\nvar keys = Object.keys;\n\nmodule.exports = function (object) {\n\treturn keys(isValue(object) ? Object(object) : object);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/shim.js\n// module id = 17\n// module chunks = 0","\"use strict\";\n\n// eslint-disable-next-line no-empty-function\nmodule.exports = function () {};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/function/noop.js\n// module id = 18\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"./is-value\");\n\nmodule.exports = function (value) {\n\tif (!isValue(value)) throw new TypeError(\"Cannot use null or undefined\");\n\treturn value;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/valid-value.js\n// module id = 19\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"./is-value\");\n\nvar forEach = Array.prototype.forEach, create = Object.create;\n\nvar process = function (src, obj) {\n\tvar key;\n\tfor (key in src) obj[key] = src[key];\n};\n\n// eslint-disable-next-line no-unused-vars\nmodule.exports = function (opts1 /*, …options*/) {\n\tvar result = create(null);\n\tforEach.call(arguments, function (options) {\n\t\tif (!isValue(options)) return;\n\t\tprocess(Object(options), result);\n\t});\n\treturn result;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/normalize-options.js\n// module id = 20\n// module chunks = 0","// Deprecated\n\n\"use strict\";\n\nmodule.exports = function (obj) {\n return typeof obj === \"function\";\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/is-callable.js\n// module id = 21\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? String.prototype.contains\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/index.js\n// module id = 22\n// module chunks = 0","\"use strict\";\n\nvar str = \"razdwatrzy\";\n\nmodule.exports = function () {\n\tif (typeof str.contains !== \"function\") return false;\n\treturn (str.contains(\"dwa\") === true) && (str.contains(\"foo\") === false);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/is-implemented.js\n// module id = 23\n// module chunks = 0","\"use strict\";\n\nvar indexOf = String.prototype.indexOf;\n\nmodule.exports = function (searchString/*, position*/) {\n\treturn indexOf.call(this, searchString, arguments[1]) > -1;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/shim.js\n// module id = 24\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function (fn) {\n\tif (typeof fn !== \"function\") throw new TypeError(fn + \" is not a function\");\n\treturn fn;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/valid-callable.js\n// module id = 25\n// module chunks = 0","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\nmodule.exports.Dispatcher = require('./lib/Dispatcher');\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/flux/index.js\n// module id = 26\n// module chunks = 0","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * @providesModule Dispatcher\n * \n * @preventMunge\n */\n\n'use strict';\n\nexports.__esModule = true;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar _prefix = 'ID_';\n\n/**\n * Dispatcher is used to broadcast payloads to registered callbacks. This is\n * different from generic pub-sub systems in two ways:\n *\n *   1) Callbacks are not subscribed to particular events. Every payload is\n *      dispatched to every registered callback.\n *   2) Callbacks can be deferred in whole or part until other callbacks have\n *      been executed.\n *\n * For example, consider this hypothetical flight destination form, which\n * selects a default city when a country is selected:\n *\n *   var flightDispatcher = new Dispatcher();\n *\n *   // Keeps track of which country is selected\n *   var CountryStore = {country: null};\n *\n *   // Keeps track of which city is selected\n *   var CityStore = {city: null};\n *\n *   // Keeps track of the base flight price of the selected city\n *   var FlightPriceStore = {price: null}\n *\n * When a user changes the selected city, we dispatch the payload:\n *\n *   flightDispatcher.dispatch({\n *     actionType: 'city-update',\n *     selectedCity: 'paris'\n *   });\n *\n * This payload is digested by `CityStore`:\n *\n *   flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'city-update') {\n *       CityStore.city = payload.selectedCity;\n *     }\n *   });\n *\n * When the user selects a country, we dispatch the payload:\n *\n *   flightDispatcher.dispatch({\n *     actionType: 'country-update',\n *     selectedCountry: 'australia'\n *   });\n *\n * This payload is digested by both stores:\n *\n *   CountryStore.dispatchToken = flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'country-update') {\n *       CountryStore.country = payload.selectedCountry;\n *     }\n *   });\n *\n * When the callback to update `CountryStore` is registered, we save a reference\n * to the returned token. Using this token with `waitFor()`, we can guarantee\n * that `CountryStore` is updated before the callback that updates `CityStore`\n * needs to query its data.\n *\n *   CityStore.dispatchToken = flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'country-update') {\n *       // `CountryStore.country` may not be updated.\n *       flightDispatcher.waitFor([CountryStore.dispatchToken]);\n *       // `CountryStore.country` is now guaranteed to be updated.\n *\n *       // Select the default city for the new country\n *       CityStore.city = getDefaultCityForCountry(CountryStore.country);\n *     }\n *   });\n *\n * The usage of `waitFor()` can be chained, for example:\n *\n *   FlightPriceStore.dispatchToken =\n *     flightDispatcher.register(function(payload) {\n *       switch (payload.actionType) {\n *         case 'country-update':\n *         case 'city-update':\n *           flightDispatcher.waitFor([CityStore.dispatchToken]);\n *           FlightPriceStore.price =\n *             getFlightPriceStore(CountryStore.country, CityStore.city);\n *           break;\n *     }\n *   });\n *\n * The `country-update` payload will be guaranteed to invoke the stores'\n * registered callbacks in order: `CountryStore`, `CityStore`, then\n * `FlightPriceStore`.\n */\n\nvar Dispatcher = (function () {\n  function Dispatcher() {\n    _classCallCheck(this, Dispatcher);\n\n    this._callbacks = {};\n    this._isDispatching = false;\n    this._isHandled = {};\n    this._isPending = {};\n    this._lastID = 1;\n  }\n\n  /**\n   * Registers a callback to be invoked with every dispatched payload. Returns\n   * a token that can be used with `waitFor()`.\n   */\n\n  Dispatcher.prototype.register = function register(callback) {\n    var id = _prefix + this._lastID++;\n    this._callbacks[id] = callback;\n    return id;\n  };\n\n  /**\n   * Removes a callback based on its token.\n   */\n\n  Dispatcher.prototype.unregister = function unregister(id) {\n    !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.unregister(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;\n    delete this._callbacks[id];\n  };\n\n  /**\n   * Waits for the callbacks specified to be invoked before continuing execution\n   * of the current callback. This method should only be used by a callback in\n   * response to a dispatched payload.\n   */\n\n  Dispatcher.prototype.waitFor = function waitFor(ids) {\n    !this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Must be invoked while dispatching.') : invariant(false) : undefined;\n    for (var ii = 0; ii < ids.length; ii++) {\n      var id = ids[ii];\n      if (this._isPending[id]) {\n        !this._isHandled[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Circular dependency detected while ' + 'waiting for `%s`.', id) : invariant(false) : undefined;\n        continue;\n      }\n      !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;\n      this._invokeCallback(id);\n    }\n  };\n\n  /**\n   * Dispatches a payload to all registered callbacks.\n   */\n\n  Dispatcher.prototype.dispatch = function dispatch(payload) {\n    !!this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatch.dispatch(...): Cannot dispatch in the middle of a dispatch.') : invariant(false) : undefined;\n    this._startDispatching(payload);\n    try {\n      for (var id in this._callbacks) {\n        if (this._isPending[id]) {\n          continue;\n        }\n        this._invokeCallback(id);\n      }\n    } finally {\n      this._stopDispatching();\n    }\n  };\n\n  /**\n   * Is this Dispatcher currently dispatching.\n   */\n\n  Dispatcher.prototype.isDispatching = function isDispatching() {\n    return this._isDispatching;\n  };\n\n  /**\n   * Call the callback stored with the given id. Also do some internal\n   * bookkeeping.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._invokeCallback = function _invokeCallback(id) {\n    this._isPending[id] = true;\n    this._callbacks[id](this._pendingPayload);\n    this._isHandled[id] = true;\n  };\n\n  /**\n   * Set up bookkeeping needed when dispatching.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._startDispatching = function _startDispatching(payload) {\n    for (var id in this._callbacks) {\n      this._isPending[id] = false;\n      this._isHandled[id] = false;\n    }\n    this._pendingPayload = payload;\n    this._isDispatching = true;\n  };\n\n  /**\n   * Clear bookkeeping used for dispatching.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._stopDispatching = function _stopDispatching() {\n    delete this._pendingPayload;\n    this._isDispatching = false;\n  };\n\n  return Dispatcher;\n})();\n\nmodule.exports = Dispatcher;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/flux/lib/Dispatcher.js\n// module id = 27\n// module chunks = 0","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\n/**\n * Use invariant() to assert state which your program assumes to be true.\n *\n * Provide sprintf-style format (only %s is supported) and arguments\n * to provide information about what broke and what you were\n * expecting.\n *\n * The invariant message will be stripped in production, but the invariant\n * will remain to ensure logic does not differ in production.\n */\n\nvar validateFormat = function validateFormat(format) {};\n\nif (process.env.NODE_ENV !== 'production') {\n  validateFormat = function validateFormat(format) {\n    if (format === undefined) {\n      throw new Error('invariant requires an error message argument');\n    }\n  };\n}\n\nfunction invariant(condition, format, a, b, c, d, e, f) {\n  validateFormat(format);\n\n  if (!condition) {\n    var error;\n    if (format === undefined) {\n      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n    } else {\n      var args = [a, b, c, d, e, f];\n      var argIndex = 0;\n      error = new Error(format.replace(/%s/g, function () {\n        return args[argIndex++];\n      }));\n      error.name = 'Invariant Violation';\n    }\n\n    error.framesToPop = 1; // we don't care about invariant's own frame\n    throw error;\n  }\n}\n\nmodule.exports = invariant;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/fbjs/lib/invariant.js\n// module id = 28\n// module chunks = 0","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar loading = require('../ui/loading.js');\n\n\nfunction initPlot(div_id, plotOrder, plotsInfo) {\n    var DEFAULT_PLOT_HEIGHT = 170;\n    var nshowing = plotOrder.length;\n    var layout = {\n        title: plotsInfo.title,\n        showlegend: false,\n        height: DEFAULT_PLOT_HEIGHT * nshowing + 180,\n    };\n\n    layout['xaxis'] = {\n        //domain affects size of x axis\n        //this made room for the legend\n        //1 is the far right of the plot, 0 is the far left\n        domain: [0, 1],\n\n        //xaxis doesn't show its lines\n        showline: false,\n        zeroline: false,\n\n        //values of the tick labels show up\n        //show right away if we have any starting streams\n        showticklabels: nshowing > 0,\n\n        //its grid is a little darker than default\n        gridcolor : \"#777777\",\n\n        //hide grid\n        showgrid: false,\n        tickformat: '%Y-%m-%d %H:%MZ'\n    };\n\n    var data = [];\n    var axis_number = 0;\n    var axis_info;\n    var plot_info;\n    var trace_info;\n    var trace_config;\n    var axis_config;\n    var plot_key;\n    var key;\n    var step = 1 / nshowing;\n    var domain;\n    var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y',\n        'contours', 'line', 'colorscale', 'showscale', 'colorbar'];\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        axis_number += 1;\n        axis_info = plot_info.yaxis;\n        domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03,\n            1 - plot_idx * step * 1.05];\n\n        // Create the necessary traces (lines)\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            trace_info = plot_info.traces[trace_info_idx];\n            trace_config = {\n                name: trace_info['name'],\n                x: [],\n                y: [],\n                type: trace_info.type ? trace_info.type : 'scatter',\n                xaxis: 'x1',\n                yaxis: 'y' + axis_number,\n                hoverinfo: 'x+text',\n                hovermode: 'closest',\n                // meteorogram custom data flags\n                var_names: trace_info['var_names'],\n                anc_variables: trace_info['anc_variables'],\n                anc_data: [],\n                plot_name: plot_key,\n                trace_index: trace_info_idx,\n            };\n\n            for (var idx=0; idx <  trace_kwargs.length; idx++) {\n                key = trace_kwargs[idx];\n                if (key in trace_info) {\n                    trace_config[key] = trace_info[key];\n                }\n            }\n            if ('colorbar' in trace_config) {\n                trace_config.colorbar.len = domain[1] - domain[0];\n                trace_config.colorbar.y = (domain[1] - domain[0]) / 2 + domain[0];\n                trace_config.z = [[]];\n            }\n            data.push(trace_config);\n        }\n\n        // Create Y-axis configuration object\n        axis_config = {\n            gridcolor: '#777777',\n            titlefont: {'size' : 12},\n            title: axis_info['title'],\n            zeroline: false,\n            // where on the canvas does this axis belong\n            domain: [\n                (plotOrder.length - 1 - plot_idx) * step * 1.03,\n                1 - plot_idx * step * 1.05\n            ],\n        };\n        if ('zeroline' in axis_info) {\n            axis_config['zeroline'] = axis_info.zeroline;\n        }\n\n        if ('range' in axis_info) {\n            axis_config['range'] = axis_info['range'];\n        }\n        if ('autorange' in axis_info) {\n            axis_config['autorange'] = axis_info['autorange'];\n        }\n\n        if ('tickmode' in axis_info) {\n            axis_config['tickmode'] = axis_info['tickmode'];\n        } else {\n            if ('tickvals' in axis_info) {\n                axis_config['tickvals'] = axis_info['tickvals'];\n            } else {\n                axis_config['tickvals'] = ticktext.getTickVals(0, 1, axis_info.step);\n            }\n            if ('ticktext' in axis_info) {\n                axis_config['ticktext'] = axis_info['ticktext'];\n            } else {\n                axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);\n            }\n        }\n        layout['yaxis' + axis_number] = axis_config;\n\n        if ('yaxis2' in plot_info) {\n            axis_number += 1;\n            axis_info = plot_info.yaxis2;\n            axis_config = {\n                gridcolor: '#777777',\n                titlefont: {'size' : 12},\n                title: axis_info['title'],\n                zeroline: false,\n                overlaying: 'y' + (axis_number - 1).toString(),\n                side: 'right',\n                anchor: 'x',\n            };\n\n            if ('range' in layout['yaxis' + (axis_number - 1)]) {\n                axis_config['range'] = layout['yaxis' + (axis_number - 1)]['range'];\n            }\n\n            if ('tickmode' in axis_info) {\n                axis_config['tickmode'] = axis_info['tickmode'];\n            } else {\n                if ('tickvals' in axis_info) {\n                    axis_config['tickvals'] = axis_info['tickvals'];\n                } else {\n                    // use the other axis tick locations\n                    axis_config['tickvals'] = layout['yaxis' + (axis_number - 1)]['tickvals'];\n                }\n                if ('ticktext' in axis_info) {\n                    axis_config['ticktext'] = axis_info['ticktext'];\n                } else {\n                    axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);\n                }\n            }\n\n            layout['yaxis' + axis_number] = axis_config;\n        }\n    }\n    // xaxis only shows on the bottom most plot\n    layout['xaxis']['anchor'] = 'y' + axis_number;\n\n    // Toolbar configuration\n    var toolbar = {\n        // Disable link to plotly\n        'showLink': false,\n        // Don't show plotly logo\n        'displaylogo': false,\n        'displayModeBar': true\n    };\n\n    //creates new graph\n    Plotly.newPlot(div_id, data, layout, toolbar);\n    loading.loading();\n}\n\nmodule.exports.initPlot = initPlot;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/init.js","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar loading = require('../ui/loading.js');\nvar updateData = require('./data.js');\n\n/* \n * Build a table in the specified div with a row for each trace in plotsInfo\n * Stores metadata for each trace using $.data, which is retrieved\n * and used by requestTableUpdate\n */\nfunction initTable(div_id, plotOrder, plotsInfo) {\n    var div = $('#'+div_id);\n    var table = $('<table class=\"met_table\"><tbody></tbody></table>');\n    var tbody = table.children('tbody');\n\n    var plot_info;\n    var plot_key;\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        //extract the necessary variables\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            var trace_info = plot_info.traces[trace_info_idx];\n            if(trace_info.type=='contour'){\n                add_contour_rows(tbody,plot_key,trace_info_idx,trace_info,plot_info);\n            }else{\n                var info_td = $('<td>N/A</td>');\n                info_td.addClass('met_data');\n                info_td.data('info', {key:plot_key,idx:trace_info_idx});\n                var row = $('<tr></tr>');\n                var name = trace_info.short_name || trace_info.name;\n                row.append('<td>'+name+'</td>');\n                row.append(info_td);\n                row.append('<td class=\"convert\"></td>');\n                tbody.append(row);\n                //add rows for our ancillary variables that normally only show up in tags\n                if(trace_info.anc_variables)\n                    add_anc_rows(tbody,plot_key,trace_info_idx,trace_info);\n            }\n        };\n    }\n    div.append('<h3>'+plotsInfo.title+'</h3>');\n    div.append(table);\n    div.append('<span id=\"timestamp\"></span>');\n};\n\nfunction add_anc_rows(tbody,plot_key,idx,trace_info){\n    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){\n        var anc_info = trace_info.anc_info[trace_info.anc_variables[anc_info_idx]];\n        var info_td = $('<td>N/A</td>');\n        info_td.addClass('met_data');\n        info_td.data('info', {key:plot_key,idx:idx,anc_idx:anc_info_idx});\n        var row = $('<tr></tr>');\n        var name = anc_info.short_name || anc_info.name;\n        row.append('<td>'+name+'</td>');\n        row.append(info_td);\n        row.append('<td class=\"convert\"></td>');\n        tbody.append(row);\n    }\n\n}\n\nfunction add_contour_rows(tbody,plot_key,idx,trace_info,plot_info){\n    var name = trace_info.short_name||trace_info.name;\n    var title_row=('<tr><td colspan=\"2\">'+name+'</td><td></td>');\n    tbody.append(title_row);\n    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){\n        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];\n        var row = $('<tr></tr>');\n        var name = trace_info.y[hightlight_idx_idx] + plot_info.yaxis.units;\n        row.append('<td class=\"subtitle text-center\">'+name+'</td>');\n        var info_td = $('<td>N/A</td>');\n        info_td.addClass('met_data');\n        info_td.data('info', {key:plot_key,idx:idx,hl_idx:hightlight_idx_idx});\n        row.append(info_td);\n        row.append('<td class=\"convert\"></td>');\n        tbody.append(row);\n    }\n\n}\n\n/* \n * Build a datastream request from the data tags in div_id's existing meteorogram table,\n * then add labels and alternate units based on the axes objects in plotsInfo\n */\nfunction requestTableUpdate(div_id,plotsInfo){\n    var div = $('#'+div_id);\n    var varNames = [];\n    var plotOrder = [];\n    var data_cells = $('#'+div_id+' .met_data');\n    var convert_cells = $('#'+div_id+' .convert');\n    data_cells.each(function(){\n            var key = $(this).data('info').key;\n            var trace_idx = $(this).data('info').idx;\n            var anc_idx = $(this).data('info').anc_idx;\n            var hl_idx = $(this).data('info').hl_idx;\n            var trace = plotsInfo.plots[key].traces[trace_idx];\n            if(plotOrder.indexOf(key)==-1)\n                plotOrder.push(key);\n            if(anc_idx !== undefined)\n                varNames.push(trace.anc_variables[0]);\n            else if(hl_idx !== undefined)\n                varNames.push(trace.var_names[hl_idx]);\n            else\n                varNames.push(trace.var_names[0]);\n    });\n    var stream_string = varNames.join(':'); \n    console.log(stream_string);\n    //Use a set time that has both buoy and tower records for testing\n    const test_time= \"&begin=2017-10-17T00:00:00&end=2017-10-17T00:02:00\";\n    var url = updateData.buildRequestUrl('json', '1m', '', '', 'column', '&begin=-00:02:00', stream_string);\n    $.ajax({\n            type: 'GET',\n            url: url,\n            jsonp: \"callback\",\n            dataType: \"jsonp\",\n            success: function(dataObj){\n                dataObj.div_id = div_id;\n                dataObj.plotOrder = plotOrder;\n                dataObj.data_cells = data_cells;\n                dataObj.convert_cells = convert_cells;\n                updateTable(dataObj,plotsInfo);\n            }\n    });\n\n};\n\nfunction updateTable(dataObj,plotsInfo) {\n    var data = dataObj.results.data;\n    console.log(data);\n    var plot_info;\n    var plot_key;\n    var td_idx = 0;\n    var div_id = dataObj.div_id;\n    var plotOrder = dataObj.plotOrder;\n    var data_cells = dataObj.data_cells;\n    var convert_cells = dataObj.convert_cells;\n    if(dataObj.num_results==0){\n        $('#'+div_id+' #timestamp').html('No recent data');\n        return ;\n    }\n    $('#'+div_id+' #timestamp').html('Last updated: '+ dataObj.results.timestamps[0]);\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        //Fill in a row for each trace in the plot\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            var trace_info = plot_info.traces[trace_info_idx];\n            if(trace_info.type=='contour'){\n                td_idx=update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx);\n            }else{\n                var update_val = data[trace_info['var_names'][0]][0]; \n                if(update_val || update_val==0){\n                    var units = plot_info.yaxis.units;\n                    var convert = '';\n                    var old_precision = plot_info.yaxis.precision;\n                    plot_info.yaxis.precision=Math.min(old_precision,1);\n                    var orig_val = ticktext.getTickText([update_val],plot_info.yaxis);\n                    plot_info.yaxis.precision = old_precision;\n                    if(plot_info.yaxis2 && plot_info.yaxis2.convert_value){\n                        var convert_units = plot_info.yaxis2.units;\n                        var old_precision = plot_info.yaxis2.precision;\n                        plot_info.yaxis2.precision= Math.min(old_precision,1);\n                        var convert_val = ticktext.getTickText([update_val],plot_info.yaxis2);\n                        plot_info.yaxis2.precision = old_precision;\n                        convert = convert_val+convert_units;\n                    }\n                    console.log(update_val);\n                    data_cells[td_idx].innerHTML=orig_val+units;\n                    convert_cells[td_idx].innerHTML=convert;\n                }else{\n                    data_cells[td_idx].innerHTML='N/A';\n                    convert_cells[td_idx].innerHTML='';\n                }\n                td_idx+=1;\n                //Fill in a row for each anc_var in the plot\n                if(trace_info.anc_variables){\n                    td_idx=update_anc_cells(data,data_cells,trace_info,td_idx);\n                }\n            }\n        };\n    }\n}\n\n\nfunction update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx){\n    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){\n        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];\n        console.log(trace_info['var_names'][hightlight_idx_idx]);\n        var update_val = data[trace_info['var_names'][hightlight_idx_idx]][0]; \n        var units = trace_info.zprobe.units;\n        var orig_val = ticktext.getTickText([update_val],trace_info.zprobe);\n        var convert = '';\n        if(trace_info.zprobe2 && trace_info.zprobe2.convert_value){\n            var convert_units = trace_info.zprobe2.units;\n            var convert_val = ticktext.getTickText([update_val],trace_info.zprobe2);\n            convert = convert_val+convert_units;\n        }\n        data_cells[td_idx].innerHTML=orig_val+units;\n        convert_cells[td_idx].innerHTML=convert;\n        td_idx+=1;\n    }\n    return td_idx;\n}\n\nfunction update_anc_cells(data,data_cells,trace_info,td_idx){\n    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){\n        var anc_key = trace_info.anc_variables[anc_info_idx];\n        var anc_info = trace_info.anc_info[anc_key];\n        var update_val = data[anc_key][0];\n        var orig_val = ticktext.getTickText([update_val],anc_info);\n        if(update_val || update_val==0)\n            data_cells[td_idx].innerHTML=orig_val+anc_info.units;\n        else\n            data_cells[td_idx].innerHTML='N/A';\n        td_idx+=1;\n    }\n    return td_idx;\n}\nmodule.exports.initTable = initTable; \nmodule.exports.requestTableUpdate = requestTableUpdate; \n\n\n\n// WEBPACK FOOTER //\n// ./plot/table.js","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar _ = require('underscore');\n\n\nfunction plotsInDiv(graphDiv) {\n    var plotNames = [];\n    _.each(graphDiv.data, function(elem) {\n        // assume the plot's traces are sequential\n        // so only check the last element\n        if (plotNames[plotNames.length - 1] != elem.plot_name) {\n            plotNames.push(elem.plot_name);\n        }\n    });\n    return plotNames;\n}\n\n\nfunction replaceData(graphDiv, plotsInfo, dataObj, update) {\n    var dates = dataObj['dates'];\n    var plotName;\n    var plotInfo;\n    var trace_anc_data;\n    var ancHandled = [];\n    var plotHandled =[];\n    var updateChanges = {\n        x: [],\n        y: [],\n        z: [],\n        text: [],\n    };\n\n    // get full array so we can properly make probe text later\n    var traceIndex = 0;\n    if (update) {\n        for (var i = 0; i < graphDiv.data.length; i++) {\n            plotName = graphDiv.data[i].plot_name;\n            if (plotHandled[plotHandled.length - 1] == plotName) {\n                continue;\n            }\n            plotInfo = plotsInfo.plots[plotName];\n            _.each(plotInfo.traces, function(elem, index) {\n                _.each(elem.var_names, function(var_name) {\n                    _.each(dataObj[var_name], function(data_elem) {\n                        graphDiv.data[traceIndex + index]['y'].shift();\n                        graphDiv.data[traceIndex + index]['y'].push(data_elem);\n                    });\n                    // hold on to the array to create probe text\n                    dataObj[var_name] = graphDiv.data[traceIndex + index]['y'];\n                });\n\n                trace_anc_data = graphDiv.data[traceIndex + index]['anc_data'];\n                _.each(elem.anc_variables, function(anc_name, anc_index) {\n                    if (ancHandled.includes(anc_name)) {\n                        trace_anc_data[anc_index] = dataObj[anc_name];\n                        return;\n                    }\n                    _.each(dataObj[anc_name], function(data_elem) {\n                        trace_anc_data[anc_index].shift();\n                        trace_anc_data[anc_index].push(data_elem);\n                    });\n                    dataObj[anc_name] = graphDiv.data[traceIndex + index]['anc_data'][anc_index];\n                    ancHandled.push(anc_name);\n                });\n            });\n            traceIndex += plotInfo.traces.length;\n            plotHandled.push(plotName);\n        }\n        // the X arrays are shared between all of the plots with how we've done it during init\n        // we only have to update the array once\n        _.each(dates, function(data_elem, data_index) {\n            graphDiv.data[0]['x'].shift();\n            graphDiv.data[0]['x'].push(dates[data_index]);\n        });\n        dates = graphDiv.data[0]['x'];\n\n        // assume extendTraces is faster than replacing the whole thing\n        // Note: we are already rebuilding the arrays above, so don't use extendTraces\n        // Plotly.extendTraces(graphDiv, update);\n    }\n\n\n    traceIndex = 0;\n    plotHandled = [];\n    for (var i = 0; i < graphDiv.data.length; i++) {\n        plotName = graphDiv.data[i].plot_name;\n        // assume all traces are sequential\n        if (plotHandled[plotHandled.length - 1] == plotName) {\n            continue;\n        }\n        plotInfo = plotsInfo.plots[plotName];\n        _.each(plotInfo.traces, function(elem, index, traces) {\n            var probeText;\n            var trace_info = elem;\n            updateChanges.x.push(dates);\n            if (!('anc_variables' in elem)) {\n                graphDiv.data[traceIndex + index]['anc_data'] = undefined;\n            } else {\n                var new_anc_data = [];\n                _.each(elem.anc_variables, function(anc_name, anc_index) {\n                    new_anc_data.push(dataObj[anc_name]);\n                });\n                graphDiv.data[traceIndex + index]['anc_data'] = new_anc_data;\n            }\n\n            if (graphDiv.data[traceIndex + index].type == 'scatter') {\n                _.each(elem.var_names, function(var_name) {\n                    updateChanges.y.push(dataObj[var_name]);\n\n                    // Get probe text shown when hovering over the traces\n                    if ('probe_text' in trace_info && trace_info['probe_text'] === null) {\n                        // we don't want probe text for this trace\n                        probeText = undefined;\n                    } else {\n                        probeText = ticktext.getProbeText(dataObj[var_name], plotInfo, trace_info, dataObj);\n                    }\n                    updateChanges.text.push(probeText);\n                    updateChanges.z.push(undefined);\n                });\n            } else if (graphDiv.data[traceIndex + index].type == 'contour') {\n                var thisData = _.map(elem.var_names, function(var_name) {return dataObj[var_name];});\n                updateChanges.y.push(undefined);\n                updateChanges.text.push(\n                    ticktext.getProbeText(thisData, plotInfo, trace_info, dataObj)\n                );\n                updateChanges.z.push(_.map(elem.var_names, function(var_name) {\n                    return dataObj[var_name];\n                }));\n            } else {\n                updateChanges.y.push(undefined);\n                updateChanges.z.push(undefined);\n                updateChanges.text.push(undefined);\n            }\n        });\n        traceIndex += plotInfo.traces.length;\n        plotHandled.push(plotName);\n    }\n    // Restyle/update all plots\n    Plotly.restyle(graphDiv, updateChanges);\n}\n\n\nfunction updateAxes(graphDiv, plots_info) {\n    var plotNames = plotsInDiv(graphDiv);\n    var plot_info;\n    var traceIdx = 0;\n    var minmax, min, max;\n    var yaxis_number = 0;\n    var yaxis_name, yaxis_name_1;\n    var layout = {};\n    var tickVals;\n    var extra;\n    for (var i=0; i < plotNames.length; i++) {\n        plot_info = plots_info.plots[plotNames[i]];\n        minmax = _.unzip(_.map(plot_info.traces, function(e, i, l) {\n            // return the minimum for this traces data\n            var this_min = _.min(graphDiv.data[traceIdx + i]['y']);\n            var this_max = _.max(graphDiv.data[traceIdx + i]['y']);\n            return [this_min, this_max];\n        }));\n        min = _.min(minmax[0]);\n        max = _.max(minmax[1]);\n\n        traceIdx += plot_info.traces.length;\n\n        // Custom data we added to the trace information\n        var axis_info = plot_info.yaxis;\n        yaxis_number += 1;\n        yaxis_name = yaxis_name_1 = \"yaxis\" + yaxis_number;\n        if (yaxis_number == 1) {\n            yaxis_name = yaxis_name_1 = \"yaxis\";\n        }\n        if ('tickvals' in axis_info && 'ticktext' in axis_info) {\n            // everything specified in config\n            layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];\n            layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];\n            layout[yaxis_name + '.range'] = axis_info['range'];\n        } else {\n            // figure the axis ticks\n            if (min == max) {\n                min -= 0.02;\n                max += 1.02;\n            }\n            layout[yaxis_name + '.tickvals'] = tickVals = ticktext.getTickVals(min, max, axis_info.step);\n            layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);\n            // Add a limit extra space on the top and bottom of each plot for a better look\n            extra = (tickVals[tickVals.length - 1] - tickVals[0]) * 0.05;\n            layout[yaxis_name + '.range'] = [tickVals[0] - extra, tickVals[tickVals.length - 1] + extra];\n        }\n\n\n        if ('yaxis2' in plot_info) {\n            axis_info = plot_info.yaxis2;\n            yaxis_number += 1;\n            yaxis_name = \"yaxis\" + yaxis_number;\n\n            if ('tickvals' in axis_info && 'ticktext' in axis_info) {\n                // everything specified in config\n                layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];\n                layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];\n                layout[yaxis_name + '.range'] = axis_info['range'];\n            } else {\n                // We want to match the 'main' axis ticks\n                layout[yaxis_name + '.tickvals'] = layout[yaxis_name_1 + '.tickvals'];\n                layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);\n                layout[yaxis_name + '.range'] = layout[yaxis_name_1 + '.range'];\n            }\n        }\n    }\n\n    Plotly.relayout(graphDiv, layout);\n}\n\nfunction updatePlot(graphDiv, plotsInfo, dataObj, update) {\n    replaceData(graphDiv, plotsInfo, dataObj, update);\n    updateAxes(graphDiv, plotsInfo);\n}\n\nmodule.exports.updatePlot = updatePlot;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/update.js"],"sourceRoot":""}
\ No newline at end of file
+{"version":3,"sources":["webpack:///webpack/bootstrap 811bca047881306ca120","webpack:///./ui/loading.js","webpack:///./node_modules/underscore/underscore.js","webpack:///./node_modules/es5-ext/object/is-value.js","webpack:///./plot/ticks.js","webpack:///./node_modules/process/browser.js","webpack:///./plot/data.js","webpack:///./controller.js","webpack:///./ui/buttons.js","webpack:///./ui/button_template.js","webpack:///./dispatcher.js","webpack:///./node_modules/event-emitter/index.js","webpack:///./node_modules/d/index.js","webpack:///./node_modules/es5-ext/object/assign/index.js","webpack:///./node_modules/es5-ext/object/assign/is-implemented.js","webpack:///./node_modules/es5-ext/object/assign/shim.js","webpack:///./node_modules/es5-ext/object/keys/index.js","webpack:///./node_modules/es5-ext/object/keys/is-implemented.js","webpack:///./node_modules/es5-ext/object/keys/shim.js","webpack:///./node_modules/es5-ext/function/noop.js","webpack:///./node_modules/es5-ext/object/valid-value.js","webpack:///./node_modules/es5-ext/object/normalize-options.js","webpack:///./node_modules/es5-ext/object/is-callable.js","webpack:///./node_modules/es5-ext/string/#/contains/index.js","webpack:///./node_modules/es5-ext/string/#/contains/is-implemented.js","webpack:///./node_modules/es5-ext/string/#/contains/shim.js","webpack:///./node_modules/es5-ext/object/valid-callable.js","webpack:///./node_modules/flux/index.js","webpack:///./node_modules/flux/lib/Dispatcher.js","webpack:///./node_modules/fbjs/lib/invariant.js","webpack:///./plot/init.js","webpack:///./plot/table.js","webpack:///./plot/update.js"],"names":["loading","disable","$","prop","enable","getDate","dateString","timeString","year","parseInt","substring","month","day","hour","minute","seconds","date","Date","enablePlot","disablePlot","checkFields","startDate","endDate","startTime","endTime","interval","selected","text","start","end","diff","intervalVal","data","Math","floor","points","html","toString","attr","checkInterval","val","module","exports","_","require","String","prototype","format","args","arguments","replace","match","number","getWaterTempProbe","plotInfo","traceInfo","allData","allProbeText","probeText","row","col","rowText","depth","j","length","y","i","toFixed","name","getF","push","getSpeedMPH","getSpeedKTS","getPresInHg","getAccumMillimeter","cardinalWDir","degrees","getVal","CONVERSION_FUNCTIONS","null","undefined","formatValue","val2","yaxis2","convert_value","precision","yaxis","units","getDewpointProbe","relHum","anc_variables","rh_info","anc_info","defaultProbeText","PROBE_TEXT_FUNCTIONS","dewpoint","water_temp","getProbeText","probe_text","getTickText","values","axis_info","tickText","getTickVals","min","max","bump","extra","step","range","updatePlot","processData","dataObj","dates","map","timestamps","extend","plotting","url","var_names","plotsInfo","div","update","ajax","type","jsonp","dataType","success","graphDiv","document","getElementById","existingDates","console","warn","startIndex","info","slice","buildRequestUrl","epoch","sep","order","time","streams","request_url","METOBS_API_URL","intervalLookUp","varNamesForDiv","varNames","each","trace_data","Array","apply","requestPlotUpdate","stream_string","time_parts","split","Number","dt_in_ms","customPlot","userInfo","startParts","endParts","setTimeout","buildFormInDiv","Dispatcher","API","controlDiv","myDispatcher","getDispatcher","plotDiv","initMeteorogram","plot_div","plotOrder","hasGraph","dispatch","initMeteorogramTable","table_div","hasTable","tableDiv","initMeteorogramControls","displayRealTime","showPlot","varName","status","hidePlot","displayRecent","start_time","displayTimeRange","stop_time","window","MeteorogramController","controlPanelTemplate","dispatchCustom","dispatcher","join","getUserInfo","dispatchUpdate","dropDown","selectedText","log","timeDelta","bind_daterange_actions","jQ_div","click","change","set_active_form","which_block","set_form_datepickers","datetimepicker","changeMonth","changeYear","dateFormat","timeFormat","showSecond","showMillisec","showMicrosec","trigger","setup_all_forms","append","ready","checkboxTemplates","ee","Flux","Plot","Table","dataAccess","GRAPH_HEIGHT","checkboxEmitter","visible","setPlots","plot_key","setShowing","plotName","showing","getShowing","handleActions","action","emit","location","dispatchToken","register","bind","plotEmitter","waitFor","defaultPlots","debug","stopUpdate","progress","Object","validID","id","clearInterval","updateInterval","startUpdate","intervalID","setInterval","on","initTable","requestTableUpdate","initPlot","ticktext","div_id","DEFAULT_PLOT_HEIGHT","nshowing","layout","title","showlegend","height","domain","showline","zeroline","showticklabels","gridcolor","showgrid","tickformat","axis_number","plot_info","trace_info","trace_config","axis_config","key","x_anchor","trace_kwargs","plot_idx","plots","trace_info_idx","traces","x","xaxis","hoverinfo","hovermode","anc_data","plot_name","trace_index","idx","colorbar","len","z","titlefont","overlaying","side","anchor","toolbar","Plotly","newPlot","updateData","table","tbody","children","add_contour_rows","info_td","addClass","short_name","add_anc_rows","anc_info_idx","anc_idx","title_row","hightlight_idx","y_highlight","hightlight_idx_idx","hl_idx","data_cells","convert_cells","trace_idx","trace","indexOf","test_time","updateTable","results","td_idx","num_results","update_contour_cells","update_val","convert","old_precision","orig_val","convert_units","convert_val","innerHTML","update_anc_cells","zprobe","zprobe2","anc_key","plotsInDiv","plotNames","elem","replaceData","trace_anc_data","ancHandled","plotHandled","updateChanges","traceIndex","index","var_name","data_elem","shift","anc_name","anc_index","includes","data_index","new_anc_data","thisData","restyle","updateAxes","plots_info","traceIdx","minmax","yaxis_number","yaxis_name","yaxis_name_1","tickVals","unzip","e","l","this_min","this_max","relayout"],"mappings":"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CA;;AAEE;AACHlB,aAAYC,SAAZ,EAAuBC,OAAvB,EAAgCC,SAAhC,EAA2CC,OAA3C,EAAoDC,QAApD;AACA;;AAEDgB,OAAOC,OAAP,CAAe1C,OAAf,GAAyBA,OAAzB;AACAyC,OAAOC,OAAP,CAAezC,OAAf,GAAyBA,OAAzB;AACAwC,OAAOC,OAAP,CAAetC,MAAf,GAAwBA,MAAxB;AACAqC,OAAOC,OAAP,CAAeH,aAAf,GAA+BA,aAA/B,C;;;;;;AC5MA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yBAAyB,gBAAgB;AACzC;AACA;AACA;AACA,uBAAuB,OAAO;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,YAAY;AAClD;AACA;AACA,KAAK;AACL;AACA,uCAAuC,YAAY;AACnD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAY,8BAA8B;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,gBAAgB;AAC7C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA,oDAAoD;AACpD,GAAG;;AAEH;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,0CAA0C;AAC1C,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,4DAA4D,YAAY;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C,YAAY;AAC1D;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,8CAA8C,YAAY;AAC1D;AACA;AACA,qBAAqB,gBAAgB;AACrC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,6CAA6C,YAAY;AACzD;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,8BAA8B;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sDAAsD;AACtD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,0BAA0B;AACpE;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,qBAAqB,cAAc;AACnC;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,YAAY;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,YAAY;AAC3B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO,eAAe;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,qBAAqB,eAAe;AACpC;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,yBAAyB,gBAAgB;AACzC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,4CAA4C,mBAAmB;AAC/D;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,qDAAqD;AACrD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6EAA6E;AAC7E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;;AAEA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,mBAAmB,OAAO;AAC1B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,eAAe;AACf,cAAc;AACd,cAAc;AACd,gBAAgB;AAChB,gBAAgB;AAChB,gBAAgB;AAChB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP,qBAAqB;AACrB;;AAEA;AACA;AACA,KAAK;AACL,iBAAiB;;AAEjB;AACA,kDAAkD,EAAE,iBAAiB;;AAErE;AACA,wBAAwB,8BAA8B;AACtD,2BAA2B;;AAE3B;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,kDAAkD,iBAAiB;;AAEnE;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AAAA;AACL;AACA,CAAC;;;;;;;;AC3gDD;;AAEA,2CAA+C;;AAE/C;AACA;AACA;;;;;;;;ACNA;;AACA,IAAII,IAAI,mBAAAC,CAAQ,CAAR,CAAR;;AAEA;AACA,IAAI,CAACC,OAAOC,SAAP,CAAiBC,MAAtB,EAA8B;AAC5BF,WAAOC,SAAP,CAAiBC,MAAjB,GAA0B,YAAW;AACnC,YAAIC,OAAOC,SAAX;AACA,eAAO,KAAKC,OAAL,CAAa,UAAb,EAAyB,UAASC,KAA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IAAzB,CAAP;AACH;;AAGDnE,OAAOC,OAAP,CAAe6D,WAAf,GAA6BA,WAA7B;AACA9D,OAAOC,OAAP,CAAeuD,YAAf,GAA8BA,YAA9B;AACAxD,OAAOC,OAAP,CAAeyD,WAAf,GAA6BA,WAA7B,C;;;;;;AC1MA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;;;;AAIA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qCAAqC;;AAErC;AACA;AACA;;AAEA,2BAA2B;AAC3B;AACA;AACA;AACA,4BAA4B,UAAU;;;;;;;;ACvLtC;;AACA,IAAIW,aAAa,mBAAAlE,CAAQ,EAAR,CAAjB;AACA,IAAI5C,UAAU,mBAAA4C,CAAQ,CAAR,CAAd;AA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AEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,OAAO;;AAEpB;AACA,aAAa,2BAA2B;AACxC;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc,OAAO;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,0BAA0B;;AAE1B;AACA;AACA;AACA;;;;;;;;ACnIA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA,EAAE;AACF;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;;AAEA,SAAS;AACT;AACA;;;;;;;;AC9DA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;AACA;AACA;AACA,QAAQ;AACR,cAAc,aAAa,GAAG,eAAe;AAC7C;AACA;;;;;;;;ACRA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,YAAY,YAAY;AACxB;AACA;AACA;AACA;AACA;AACA;;;;;;;;ACtBA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;;;;;;;;ACTA;;AAEA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACRA;;AAEA;AACA;;;;;;;;ACHA;;AAEA;;AAEA;AACA;AACA;AACA;;;;;;;;ACPA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;;;;;;;;ACnBA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACNA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;;AAEA;AACA;AACA;AACA;;;;;;;;ACPA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACNA;;AAEA;AACA;AACA;AACA;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA,iDAAiD,0CAA0C,0DAA0D,EAAE;;AAEvJ;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,oBAAoB,iBAAiB;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;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","file":"meteorogram.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 6);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 811bca047881306ca120","\"use strict\";\n//var $ = require('jquery');\n\n/**\n* The purpose of this function is to either hide the graph and show the loading\n* spinner or to hide the loading spinner and show the graph\n* no parameters or returns\n*/\n\nfunction loading()\n{\n    return;\n    //$(\"#progress\").toggle();\n    //$(\"#graph\").toggle();\n}\n\n/**\n* The point of this method is to disable the custom area of the meteorogram\n* header\n*\n* no params\n* no returns\n*/\n\nfunction disable()\n{\n\t//disable custom rows\n\t$('#Start-date-picker').prop(\"disabled\", true);\n\t$('#Start-time-picker').prop(\"disabled\", true);\n\t$('#End-date-picker').prop(\"disabled\", true);\n\t$('#End-time-picker').prop(\"disabled\", true);\n\t$('#interval').prop(\"disabled\", true);\n\t$('#Plot').prop(\"disabled\", true);\n}\n\n/**\n* The purpose of this method is to enable the custom area of the meteorogram\n* header\n*\n* no params\n* no returns\n*/\n\nfunction enable()\n{\n\t//enable custom rows\n\t$('#Start-date-picker').prop(\"disabled\", false);\n\t$('#Start-time-picker').prop(\"disabled\", false);\n\t$('#End-date-picker').prop(\"disabled\", false);\n\t$('#End-time-picker').prop(\"disabled\", false);\n\t$('#interval').prop(\"disabled\", false);\n}\n\n/**\n* The purpose of this function is to take a date string and a time string and turn that\n* into a date JS object\n*\n* @param dateString - \"MM/DD/YYYY\"\n* @param timeString - \"HH-MM-SS\"\n* @return date object\n*/\n\nfunction getDate(dateString, timeString)\n{\n\t//get date string\n\tvar year = parseInt(dateString.substring(6,10));\n\tvar month = parseInt(dateString.substring(0,3));\n\tvar day = parseInt(dateString.substring(3,5));\n\tvar hour = parseInt(timeString.substring(0,2));\n\tvar minute = parseInt(timeString.substring(3,5));\n\tvar seconds = parseInt(timeString.substring(6,8));\n\n    //return date variable\n    var date = new Date(year, month, day, hour, minute, seconds);\n\n    return date;\n}\n\n/**\n* The purpose of this method is to make sure each field is valid and does\n* not result in too much or too less data points being plotted\n* @param start date - the date the user wants to start at\n* @param time user wants to start at\n* @param end Date - the date user wants to stop at\n* @param end Time - the time the user wants to stop at\n* @param interval - how many seconds averaged does the user want\n* no returns\n*/\n\n/**\n* The purpsoe of this method is to enable the plot button\n*\n* no params\n* no returns\n*/\n\nfunction enablePlot()\n{\n\t//enable plot button\n\t$('#Plot').prop(\"disabled\", false);\n}\n\n/**\n* The purpose of this method is to disable the plot button\n*\n* no params\n* no returns\n*/\n\nfunction disablePlot()\n{\n\t//disable plot button\n\t$('#Plot').prop(\"disabled\", true);\n}\n\nfunction checkFields(startDate, endDate, startTime, endTime, interval)\n{\n\t//get user information from selected drop down\n\tvar selected = $('#interval option:selected');\n\n    //give user time to fill out other fields\n\tif(selected.text() == '--');\n\n\telse\n\t{\n\t\t//get information to create a message to the user saying approx how many pts\n\t\t//they are plotting\n        var start = getDate(startDate, startTime);\n        var end = getDate(endDate, endTime);\n        var selected = $('#interval option:selected');\n        var diff = (end - start)/1000;\n        var intervalVal = selected.data(\"seconds\");\n        diff = Math.floor(diff/intervalVal);\n        var points = diff/interval;\n\n        //if too few points, tell user\n        if(diff >= 0 && diff < 60)\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() \n        \t\t + ' data points; that\\'s too few - please try again');\n\t\t\t$('#default').attr('selected', 'selected');\n\t\t\tdisablePlot();\n        }\n\n        //if the user accidentally mixed up start and end dates, politely tell them\n        else if(diff < 0)\n        {\n        \t$('#prompt_user').html('The end date is before the start date. Please choose a later end date.');\n\t\t\t$('#default').attr('selected', 'selected');\n        }\n\n        //if too many points, tell user\n        else if(diff > 1000)\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '\n        \t\t+ diff.toString() + ' data points; that\\'s too many - please try again');\n\t\t\t$('#default').attr('selected', 'selected');\n\t\t\tdisablePlot();\n        }\n\n        //else we enable the plot button and tell user how many points they're plotting\n        else\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '\n        \t\t+ diff.toString() + ' data points.');\n\n\t\t\tenablePlot();\n        }\n\n\t}\n}\n\n/**\n* The purpose of this method is to make sure all the fields and intervals selected are valid\n*\n* No parameters\n* No returns\n*/\n\nfunction checkInterval()\n{\n\tvar startDate = $('#Start-date-picker').val();\n\tvar endDate = $('#End-date-picker').val();\n\tvar startTime = $('#Start-time-picker').val();\n\tvar endTime = $('#End-time-picker').val();\n\tvar interval = $('#interval');\n\n\t//get user information from selected drop down\n\tvar selected = $('#interval option:selected');\n\n    //check if any fields are not filled out\n\tif((!startDate || !endDate || !startTime || !endTime) && selected.text() != '--')\n\t{\n\t\t$('#prompt_user').html('Please fill out all other fields before filling out the interval field');\n\t\t$('#default').attr('selected', 'selected');\n\t}\n\n    //check to see if fields are ok\n\tcheckFields(startDate, endDate, startTime, endTime, interval);\n}\n\nmodule.exports.loading = loading;\nmodule.exports.disable = disable;\nmodule.exports.enable = enable;\nmodule.exports.checkInterval = checkInterval;\n\n\n\n// WEBPACK FOOTER //\n// ./ui/loading.js","//     Underscore.js 1.8.3\n//     http://underscorejs.org\n//     (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n//     Underscore may be freely distributed under the MIT license.\n\n(function() {\n\n  // Baseline setup\n  // --------------\n\n  // Establish the root object, `window` in the browser, or `exports` on the server.\n  var root = this;\n\n  // Save the previous value of the `_` variable.\n  var previousUnderscore = root._;\n\n  // Save bytes in the minified (but not gzipped) version:\n  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;\n\n  // Create quick reference variables for speed access to core prototypes.\n  var\n    push             = ArrayProto.push,\n    slice            = ArrayProto.slice,\n    toString         = ObjProto.toString,\n    hasOwnProperty   = ObjProto.hasOwnProperty;\n\n  // All **ECMAScript 5** native function implementations that we hope to use\n  // are declared here.\n  var\n    nativeIsArray      = Array.isArray,\n    nativeKeys         = Object.keys,\n    nativeBind         = FuncProto.bind,\n    nativeCreate       = Object.create;\n\n  // Naked function reference for surrogate-prototype-swapping.\n  var Ctor = function(){};\n\n  // Create a safe reference to the Underscore object for use below.\n  var _ = function(obj) {\n    if (obj instanceof _) return obj;\n    if (!(this instanceof _)) return new _(obj);\n    this._wrapped = obj;\n  };\n\n  // Export the Underscore object for **Node.js**, with\n  // backwards-compatibility for the old `require()` API. If we're in\n  // the browser, add `_` as a global object.\n  if (typeof exports !== 'undefined') {\n    if (typeof module !== 'undefined' && module.exports) {\n      exports = module.exports = _;\n    }\n    exports._ = _;\n  } else {\n    root._ = _;\n  }\n\n  // Current version.\n  _.VERSION = '1.8.3';\n\n  // Internal function that returns an efficient (for current engines) version\n  // of the passed-in callback, to be repeatedly applied in other Underscore\n  // functions.\n  var optimizeCb = function(func, context, argCount) {\n    if (context === void 0) return func;\n    switch (argCount == null ? 3 : argCount) {\n      case 1: return function(value) {\n        return func.call(context, value);\n      };\n      case 2: return function(value, other) {\n        return func.call(context, value, other);\n      };\n      case 3: return function(value, index, collection) {\n        return func.call(context, value, index, collection);\n      };\n      case 4: return function(accumulator, value, index, collection) {\n        return func.call(context, accumulator, value, index, collection);\n      };\n    }\n    return function() {\n      return func.apply(context, arguments);\n    };\n  };\n\n  // A mostly-internal function to generate callbacks that can be applied\n  // to each element in a collection, returning the desired result — either\n  // identity, an arbitrary callback, a property matcher, or a property accessor.\n  var cb = function(value, context, argCount) {\n    if (value == null) return _.identity;\n    if (_.isFunction(value)) return optimizeCb(value, context, argCount);\n    if (_.isObject(value)) return _.matcher(value);\n    return _.property(value);\n  };\n  _.iteratee = function(value, context) {\n    return cb(value, context, Infinity);\n  };\n\n  // An internal function for creating assigner functions.\n  var createAssigner = function(keysFunc, undefinedOnly) {\n    return function(obj) {\n      var length = arguments.length;\n      if (length < 2 || obj == null) return obj;\n      for (var index = 1; index < length; index++) {\n        var source = arguments[index],\n            keys = keysFunc(source),\n            l = keys.length;\n        for (var i = 0; i < l; i++) {\n          var key = keys[i];\n          if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key];\n        }\n      }\n      return obj;\n    };\n  };\n\n  // An internal function for creating a new object that inherits from another.\n  var baseCreate = function(prototype) {\n    if (!_.isObject(prototype)) return {};\n    if (nativeCreate) return nativeCreate(prototype);\n    Ctor.prototype = prototype;\n    var result = new Ctor;\n    Ctor.prototype = null;\n    return result;\n  };\n\n  var property = function(key) {\n    return function(obj) {\n      return obj == null ? void 0 : obj[key];\n    };\n  };\n\n  // Helper for collection methods to determine whether a collection\n  // should be iterated as an array or as an object\n  // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n  // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\n  var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n  var getLength = property('length');\n  var isArrayLike = function(collection) {\n    var length = getLength(collection);\n    return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;\n  };\n\n  // Collection Functions\n  // --------------------\n\n  // The cornerstone, an `each` implementation, aka `forEach`.\n  // Handles raw objects in addition to array-likes. Treats all\n  // sparse array-likes as if they were dense.\n  _.each = _.forEach = function(obj, iteratee, context) {\n    iteratee = optimizeCb(iteratee, context);\n    var i, length;\n    if (isArrayLike(obj)) {\n      for (i = 0, length = obj.length; i < length; i++) {\n        iteratee(obj[i], i, obj);\n      }\n    } else {\n      var keys = _.keys(obj);\n      for (i = 0, length = keys.length; i < length; i++) {\n        iteratee(obj[keys[i]], keys[i], obj);\n      }\n    }\n    return obj;\n  };\n\n  // Return the results of applying the iteratee to each element.\n  _.map = _.collect = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length,\n        results = Array(length);\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      results[index] = iteratee(obj[currentKey], currentKey, obj);\n    }\n    return results;\n  };\n\n  // Create a reducing function iterating left or right.\n  function createReduce(dir) {\n    // Optimized iterator function as using arguments.length\n    // in the main function will deoptimize the, see #1991.\n    function iterator(obj, iteratee, memo, keys, index, length) {\n      for (; index >= 0 && index < length; index += dir) {\n        var currentKey = keys ? keys[index] : index;\n        memo = iteratee(memo, obj[currentKey], currentKey, obj);\n      }\n      return memo;\n    }\n\n    return function(obj, iteratee, memo, context) {\n      iteratee = optimizeCb(iteratee, context, 4);\n      var keys = !isArrayLike(obj) && _.keys(obj),\n          length = (keys || obj).length,\n          index = dir > 0 ? 0 : length - 1;\n      // Determine the initial value if none is provided.\n      if (arguments.length < 3) {\n        memo = obj[keys ? keys[index] : index];\n        index += dir;\n      }\n      return iterator(obj, iteratee, memo, keys, index, length);\n    };\n  }\n\n  // **Reduce** builds up a single result from a list of values, aka `inject`,\n  // or `foldl`.\n  _.reduce = _.foldl = _.inject = createReduce(1);\n\n  // The right-associative version of reduce, also known as `foldr`.\n  _.reduceRight = _.foldr = createReduce(-1);\n\n  // Return the first value which passes a truth test. Aliased as `detect`.\n  _.find = _.detect = function(obj, predicate, context) {\n    var key;\n    if (isArrayLike(obj)) {\n      key = _.findIndex(obj, predicate, context);\n    } else {\n      key = _.findKey(obj, predicate, context);\n    }\n    if (key !== void 0 && key !== -1) return obj[key];\n  };\n\n  // Return all the elements that pass a truth test.\n  // Aliased as `select`.\n  _.filter = _.select = function(obj, predicate, context) {\n    var results = [];\n    predicate = cb(predicate, context);\n    _.each(obj, function(value, index, list) {\n      if (predicate(value, index, list)) results.push(value);\n    });\n    return results;\n  };\n\n  // Return all the elements for which a truth test fails.\n  _.reject = function(obj, predicate, context) {\n    return _.filter(obj, _.negate(cb(predicate)), context);\n  };\n\n  // Determine whether all of the elements match a truth test.\n  // Aliased as `all`.\n  _.every = _.all = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length;\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      if (!predicate(obj[currentKey], currentKey, obj)) return false;\n    }\n    return true;\n  };\n\n  // Determine if at least one element in the object matches a truth test.\n  // Aliased as `any`.\n  _.some = _.any = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length;\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      if (predicate(obj[currentKey], currentKey, obj)) return true;\n    }\n    return false;\n  };\n\n  // Determine if the array or object contains a given item (using `===`).\n  // Aliased as `includes` and `include`.\n  _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) {\n    if (!isArrayLike(obj)) obj = _.values(obj);\n    if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n    return _.indexOf(obj, item, fromIndex) >= 0;\n  };\n\n  // Invoke a method (with arguments) on every item in a collection.\n  _.invoke = function(obj, method) {\n    var args = slice.call(arguments, 2);\n    var isFunc = _.isFunction(method);\n    return _.map(obj, function(value) {\n      var func = isFunc ? method : value[method];\n      return func == null ? func : func.apply(value, args);\n    });\n  };\n\n  // Convenience version of a common use case of `map`: fetching a property.\n  _.pluck = function(obj, key) {\n    return _.map(obj, _.property(key));\n  };\n\n  // Convenience version of a common use case of `filter`: selecting only objects\n  // containing specific `key:value` pairs.\n  _.where = function(obj, attrs) {\n    return _.filter(obj, _.matcher(attrs));\n  };\n\n  // Convenience version of a common use case of `find`: getting the first object\n  // containing specific `key:value` pairs.\n  _.findWhere = function(obj, attrs) {\n    return _.find(obj, _.matcher(attrs));\n  };\n\n  // Return the maximum element (or element-based computation).\n  _.max = function(obj, iteratee, context) {\n    var result = -Infinity, lastComputed = -Infinity,\n        value, computed;\n    if (iteratee == null && obj != null) {\n      obj = isArrayLike(obj) ? obj : _.values(obj);\n      for (var i = 0, length = obj.length; i < length; i++) {\n        value = obj[i];\n        if (value > result) {\n          result = value;\n        }\n      }\n    } else {\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index, list) {\n        computed = iteratee(value, index, list);\n        if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n          result = value;\n          lastComputed = computed;\n        }\n      });\n    }\n    return result;\n  };\n\n  // Return the minimum element (or element-based computation).\n  _.min = function(obj, iteratee, context) {\n    var result = Infinity, lastComputed = Infinity,\n        value, computed;\n    if (iteratee == null && obj != null) {\n      obj = isArrayLike(obj) ? obj : _.values(obj);\n      for (var i = 0, length = obj.length; i < length; i++) {\n        value = obj[i];\n        if (value < result) {\n          result = value;\n        }\n      }\n    } else {\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index, list) {\n        computed = iteratee(value, index, list);\n        if (computed < lastComputed || computed === Infinity && result === Infinity) {\n          result = value;\n          lastComputed = computed;\n        }\n      });\n    }\n    return result;\n  };\n\n  // Shuffle a collection, using the modern version of the\n  // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n  _.shuffle = function(obj) {\n    var set = isArrayLike(obj) ? obj : _.values(obj);\n    var length = set.length;\n    var shuffled = Array(length);\n    for (var index = 0, rand; index < length; index++) {\n      rand = _.random(0, index);\n      if (rand !== index) shuffled[index] = shuffled[rand];\n      shuffled[rand] = set[index];\n    }\n    return shuffled;\n  };\n\n  // Sample **n** random values from a collection.\n  // If **n** is not specified, returns a single random element.\n  // The internal `guard` argument allows it to work with `map`.\n  _.sample = function(obj, n, guard) {\n    if (n == null || guard) {\n      if (!isArrayLike(obj)) obj = _.values(obj);\n      return obj[_.random(obj.length - 1)];\n    }\n    return _.shuffle(obj).slice(0, Math.max(0, n));\n  };\n\n  // Sort the object's values by a criterion produced by an iteratee.\n  _.sortBy = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    return _.pluck(_.map(obj, function(value, index, list) {\n      return {\n        value: value,\n        index: index,\n        criteria: iteratee(value, index, list)\n      };\n    }).sort(function(left, right) {\n      var a = left.criteria;\n      var b = right.criteria;\n      if (a !== b) {\n        if (a > b || a === void 0) return 1;\n        if (a < b || b === void 0) return -1;\n      }\n      return left.index - right.index;\n    }), 'value');\n  };\n\n  // An internal function used for aggregate \"group by\" operations.\n  var group = function(behavior) {\n    return function(obj, iteratee, context) {\n      var result = {};\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index) {\n        var key = iteratee(value, index, obj);\n        behavior(result, value, key);\n      });\n      return result;\n    };\n  };\n\n  // Groups the object's values by a criterion. Pass either a string attribute\n  // to group by, or a function that returns the criterion.\n  _.groupBy = group(function(result, value, key) {\n    if (_.has(result, key)) result[key].push(value); else result[key] = [value];\n  });\n\n  // Indexes the object's values by a criterion, similar to `groupBy`, but for\n  // when you know that your index values will be unique.\n  _.indexBy = group(function(result, value, key) {\n    result[key] = value;\n  });\n\n  // Counts instances of an object that group by a certain criterion. Pass\n  // either a string attribute to count by, or a function that returns the\n  // criterion.\n  _.countBy = group(function(result, value, key) {\n    if (_.has(result, key)) result[key]++; else result[key] = 1;\n  });\n\n  // Safely create a real, live array from anything iterable.\n  _.toArray = function(obj) {\n    if (!obj) return [];\n    if (_.isArray(obj)) return slice.call(obj);\n    if (isArrayLike(obj)) return _.map(obj, _.identity);\n    return _.values(obj);\n  };\n\n  // Return the number of elements in an object.\n  _.size = function(obj) {\n    if (obj == null) return 0;\n    return isArrayLike(obj) ? obj.length : _.keys(obj).length;\n  };\n\n  // Split a collection into two arrays: one whose elements all satisfy the given\n  // predicate, and one whose elements all do not satisfy the predicate.\n  _.partition = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var pass = [], fail = [];\n    _.each(obj, function(value, key, obj) {\n      (predicate(value, key, obj) ? pass : fail).push(value);\n    });\n    return [pass, fail];\n  };\n\n  // Array Functions\n  // ---------------\n\n  // Get the first element of an array. Passing **n** will return the first N\n  // values in the array. Aliased as `head` and `take`. The **guard** check\n  // allows it to work with `_.map`.\n  _.first = _.head = _.take = function(array, n, guard) {\n    if (array == null) return void 0;\n    if (n == null || guard) return array[0];\n    return _.initial(array, array.length - n);\n  };\n\n  // Returns everything but the last entry of the array. Especially useful on\n  // the arguments object. Passing **n** will return all the values in\n  // the array, excluding the last N.\n  _.initial = function(array, n, guard) {\n    return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n  };\n\n  // Get the last element of an array. Passing **n** will return the last N\n  // values in the array.\n  _.last = function(array, n, guard) {\n    if (array == null) return void 0;\n    if (n == null || guard) return array[array.length - 1];\n    return _.rest(array, Math.max(0, array.length - n));\n  };\n\n  // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.\n  // Especially useful on the arguments object. Passing an **n** will return\n  // the rest N values in the array.\n  _.rest = _.tail = _.drop = function(array, n, guard) {\n    return slice.call(array, n == null || guard ? 1 : n);\n  };\n\n  // Trim out all falsy values from an array.\n  _.compact = function(array) {\n    return _.filter(array, _.identity);\n  };\n\n  // Internal implementation of a recursive `flatten` function.\n  var flatten = function(input, shallow, strict, startIndex) {\n    var output = [], idx = 0;\n    for (var i = startIndex || 0, length = getLength(input); i < length; i++) {\n      var value = input[i];\n      if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) {\n        //flatten current level of array or arguments object\n        if (!shallow) value = flatten(value, shallow, strict);\n        var j = 0, len = value.length;\n        output.length += len;\n        while (j < len) {\n          output[idx++] = value[j++];\n        }\n      } else if (!strict) {\n        output[idx++] = value;\n      }\n    }\n    return output;\n  };\n\n  // Flatten out an array, either recursively (by default), or just one level.\n  _.flatten = function(array, shallow) {\n    return flatten(array, shallow, false);\n  };\n\n  // Return a version of the array that does not contain the specified value(s).\n  _.without = function(array) {\n    return _.difference(array, slice.call(arguments, 1));\n  };\n\n  // Produce a duplicate-free version of the array. If the array has already\n  // been sorted, you have the option of using a faster algorithm.\n  // Aliased as `unique`.\n  _.uniq = _.unique = function(array, isSorted, iteratee, context) {\n    if (!_.isBoolean(isSorted)) {\n      context = iteratee;\n      iteratee = isSorted;\n      isSorted = false;\n    }\n    if (iteratee != null) iteratee = cb(iteratee, context);\n    var result = [];\n    var seen = [];\n    for (var i = 0, length = getLength(array); i < length; i++) {\n      var value = array[i],\n          computed = iteratee ? iteratee(value, i, array) : value;\n      if (isSorted) {\n        if (!i || seen !== computed) result.push(value);\n        seen = computed;\n      } else if (iteratee) {\n        if (!_.contains(seen, computed)) {\n          seen.push(computed);\n          result.push(value);\n        }\n      } else if (!_.contains(result, value)) {\n        result.push(value);\n      }\n    }\n    return result;\n  };\n\n  // Produce an array that contains the union: each distinct element from all of\n  // the passed-in arrays.\n  _.union = function() {\n    return _.uniq(flatten(arguments, true, true));\n  };\n\n  // Produce an array that contains every item shared between all the\n  // passed-in arrays.\n  _.intersection = function(array) {\n    var result = [];\n    var argsLength = arguments.length;\n    for (var i = 0, length = getLength(array); i < length; i++) {\n      var item = array[i];\n      if (_.contains(result, item)) continue;\n      for (var j = 1; j < argsLength; j++) {\n        if (!_.contains(arguments[j], item)) break;\n      }\n      if (j === argsLength) result.push(item);\n    }\n    return result;\n  };\n\n  // Take the difference between one array and a number of other arrays.\n  // Only the elements present in just the first array will remain.\n  _.difference = function(array) {\n    var rest = flatten(arguments, true, true, 1);\n    return _.filter(array, function(value){\n      return !_.contains(rest, value);\n    });\n  };\n\n  // Zip together multiple lists into a single array -- elements that share\n  // an index go together.\n  _.zip = function() {\n    return _.unzip(arguments);\n  };\n\n  // Complement of _.zip. Unzip accepts an array of arrays and groups\n  // each array's elements on shared indices\n  _.unzip = function(array) {\n    var length = array && _.max(array, getLength).length || 0;\n    var result = Array(length);\n\n    for (var index = 0; index < length; index++) {\n      result[index] = _.pluck(array, index);\n    }\n    return result;\n  };\n\n  // Converts lists into objects. Pass either a single array of `[key, value]`\n  // pairs, or two parallel arrays of the same length -- one of keys, and one of\n  // the corresponding values.\n  _.object = function(list, values) {\n    var result = {};\n    for (var i = 0, length = getLength(list); i < length; i++) {\n      if (values) {\n        result[list[i]] = values[i];\n      } else {\n        result[list[i][0]] = list[i][1];\n      }\n    }\n    return result;\n  };\n\n  // Generator function to create the findIndex and findLastIndex functions\n  function createPredicateIndexFinder(dir) {\n    return function(array, predicate, context) {\n      predicate = cb(predicate, context);\n      var length = getLength(array);\n      var index = dir > 0 ? 0 : length - 1;\n      for (; index >= 0 && index < length; index += dir) {\n        if (predicate(array[index], index, array)) return index;\n      }\n      return -1;\n    };\n  }\n\n  // Returns the first index on an array-like that passes a predicate test\n  _.findIndex = createPredicateIndexFinder(1);\n  _.findLastIndex = createPredicateIndexFinder(-1);\n\n  // Use a comparator function to figure out the smallest index at which\n  // an object should be inserted so as to maintain order. Uses binary search.\n  _.sortedIndex = function(array, obj, iteratee, context) {\n    iteratee = cb(iteratee, context, 1);\n    var value = iteratee(obj);\n    var low = 0, high = getLength(array);\n    while (low < high) {\n      var mid = Math.floor((low + high) / 2);\n      if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n    }\n    return low;\n  };\n\n  // Generator function to create the indexOf and lastIndexOf functions\n  function createIndexFinder(dir, predicateFind, sortedIndex) {\n    return function(array, item, idx) {\n      var i = 0, length = getLength(array);\n      if (typeof idx == 'number') {\n        if (dir > 0) {\n            i = idx >= 0 ? idx : Math.max(idx + length, i);\n        } else {\n            length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n        }\n      } else if (sortedIndex && idx && length) {\n        idx = sortedIndex(array, item);\n        return array[idx] === item ? idx : -1;\n      }\n      if (item !== item) {\n        idx = predicateFind(slice.call(array, i, length), _.isNaN);\n        return idx >= 0 ? idx + i : -1;\n      }\n      for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n        if (array[idx] === item) return idx;\n      }\n      return -1;\n    };\n  }\n\n  // Return the position of the first occurrence of an item in an array,\n  // or -1 if the item is not included in the array.\n  // If the array is large and already in sort order, pass `true`\n  // for **isSorted** to use binary search.\n  _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex);\n  _.lastIndexOf = createIndexFinder(-1, _.findLastIndex);\n\n  // Generate an integer Array containing an arithmetic progression. A port of\n  // the native Python `range()` function. See\n  // [the Python documentation](http://docs.python.org/library/functions.html#range).\n  _.range = function(start, stop, step) {\n    if (stop == null) {\n      stop = start || 0;\n      start = 0;\n    }\n    step = step || 1;\n\n    var length = Math.max(Math.ceil((stop - start) / step), 0);\n    var range = Array(length);\n\n    for (var idx = 0; idx < length; idx++, start += step) {\n      range[idx] = start;\n    }\n\n    return range;\n  };\n\n  // Function (ahem) Functions\n  // ------------------\n\n  // Determines whether to execute a function as a constructor\n  // or a normal function with the provided arguments\n  var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) {\n    if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n    var self = baseCreate(sourceFunc.prototype);\n    var result = sourceFunc.apply(self, args);\n    if (_.isObject(result)) return result;\n    return self;\n  };\n\n  // Create a function bound to a given object (assigning `this`, and arguments,\n  // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if\n  // available.\n  _.bind = function(func, context) {\n    if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));\n    if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');\n    var args = slice.call(arguments, 2);\n    var bound = function() {\n      return executeBound(func, bound, context, this, args.concat(slice.call(arguments)));\n    };\n    return bound;\n  };\n\n  // Partially apply a function by creating a version that has had some of its\n  // arguments pre-filled, without changing its dynamic `this` context. _ acts\n  // as a placeholder, allowing any combination of arguments to be pre-filled.\n  _.partial = function(func) {\n    var boundArgs = slice.call(arguments, 1);\n    var bound = function() {\n      var position = 0, length = boundArgs.length;\n      var args = Array(length);\n      for (var i = 0; i < length; i++) {\n        args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i];\n      }\n      while (position < arguments.length) args.push(arguments[position++]);\n      return executeBound(func, bound, this, this, args);\n    };\n    return bound;\n  };\n\n  // Bind a number of an object's methods to that object. Remaining arguments\n  // are the method names to be bound. Useful for ensuring that all callbacks\n  // defined on an object belong to it.\n  _.bindAll = function(obj) {\n    var i, length = arguments.length, key;\n    if (length <= 1) throw new Error('bindAll must be passed function names');\n    for (i = 1; i < length; i++) {\n      key = arguments[i];\n      obj[key] = _.bind(obj[key], obj);\n    }\n    return obj;\n  };\n\n  // Memoize an expensive function by storing its results.\n  _.memoize = function(func, hasher) {\n    var memoize = function(key) {\n      var cache = memoize.cache;\n      var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n      if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);\n      return cache[address];\n    };\n    memoize.cache = {};\n    return memoize;\n  };\n\n  // Delays a function for the given number of milliseconds, and then calls\n  // it with the arguments supplied.\n  _.delay = function(func, wait) {\n    var args = slice.call(arguments, 2);\n    return setTimeout(function(){\n      return func.apply(null, args);\n    }, wait);\n  };\n\n  // Defers a function, scheduling it to run after the current call stack has\n  // cleared.\n  _.defer = _.partial(_.delay, _, 1);\n\n  // Returns a function, that, when invoked, will only be triggered at most once\n  // during a given window of time. Normally, the throttled function will run\n  // as much as it can, without ever going more than once per `wait` duration;\n  // but if you'd like to disable the execution on the leading edge, pass\n  // `{leading: false}`. To disable execution on the trailing edge, ditto.\n  _.throttle = function(func, wait, options) {\n    var context, args, result;\n    var timeout = null;\n    var previous = 0;\n    if (!options) options = {};\n    var later = function() {\n      previous = options.leading === false ? 0 : _.now();\n      timeout = null;\n      result = func.apply(context, args);\n      if (!timeout) context = args = null;\n    };\n    return function() {\n      var now = _.now();\n      if (!previous && options.leading === false) previous = now;\n      var remaining = wait - (now - previous);\n      context = this;\n      args = arguments;\n      if (remaining <= 0 || remaining > wait) {\n        if (timeout) {\n          clearTimeout(timeout);\n          timeout = null;\n        }\n        previous = now;\n        result = func.apply(context, args);\n        if (!timeout) context = args = null;\n      } else if (!timeout && options.trailing !== false) {\n        timeout = setTimeout(later, remaining);\n      }\n      return result;\n    };\n  };\n\n  // Returns a function, that, as long as it continues to be invoked, will not\n  // be triggered. The function will be called after it stops being called for\n  // N milliseconds. If `immediate` is passed, trigger the function on the\n  // leading edge, instead of the trailing.\n  _.debounce = function(func, wait, immediate) {\n    var timeout, args, context, timestamp, result;\n\n    var later = function() {\n      var last = _.now() - timestamp;\n\n      if (last < wait && last >= 0) {\n        timeout = setTimeout(later, wait - last);\n      } else {\n        timeout = null;\n        if (!immediate) {\n          result = func.apply(context, args);\n          if (!timeout) context = args = null;\n        }\n      }\n    };\n\n    return function() {\n      context = this;\n      args = arguments;\n      timestamp = _.now();\n      var callNow = immediate && !timeout;\n      if (!timeout) timeout = setTimeout(later, wait);\n      if (callNow) {\n        result = func.apply(context, args);\n        context = args = null;\n      }\n\n      return result;\n    };\n  };\n\n  // Returns the first function passed as an argument to the second,\n  // allowing you to adjust arguments, run code before and after, and\n  // conditionally execute the original function.\n  _.wrap = function(func, wrapper) {\n    return _.partial(wrapper, func);\n  };\n\n  // Returns a negated version of the passed-in predicate.\n  _.negate = function(predicate) {\n    return function() {\n      return !predicate.apply(this, arguments);\n    };\n  };\n\n  // Returns a function that is the composition of a list of functions, each\n  // consuming the return value of the function that follows.\n  _.compose = function() {\n    var args = arguments;\n    var start = args.length - 1;\n    return function() {\n      var i = start;\n      var result = args[start].apply(this, arguments);\n      while (i--) result = args[i].call(this, result);\n      return result;\n    };\n  };\n\n  // Returns a function that will only be executed on and after the Nth call.\n  _.after = function(times, func) {\n    return function() {\n      if (--times < 1) {\n        return func.apply(this, arguments);\n      }\n    };\n  };\n\n  // Returns a function that will only be executed up to (but not including) the Nth call.\n  _.before = function(times, func) {\n    var memo;\n    return function() {\n      if (--times > 0) {\n        memo = func.apply(this, arguments);\n      }\n      if (times <= 1) func = null;\n      return memo;\n    };\n  };\n\n  // Returns a function that will be executed at most one time, no matter how\n  // often you call it. Useful for lazy initialization.\n  _.once = _.partial(_.before, 2);\n\n  // Object Functions\n  // ----------------\n\n  // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\n  var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\n  var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n                      'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n  function collectNonEnumProps(obj, keys) {\n    var nonEnumIdx = nonEnumerableProps.length;\n    var constructor = obj.constructor;\n    var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto;\n\n    // Constructor is a special case.\n    var prop = 'constructor';\n    if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);\n\n    while (nonEnumIdx--) {\n      prop = nonEnumerableProps[nonEnumIdx];\n      if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {\n        keys.push(prop);\n      }\n    }\n  }\n\n  // Retrieve the names of an object's own properties.\n  // Delegates to **ECMAScript 5**'s native `Object.keys`\n  _.keys = function(obj) {\n    if (!_.isObject(obj)) return [];\n    if (nativeKeys) return nativeKeys(obj);\n    var keys = [];\n    for (var key in obj) if (_.has(obj, key)) keys.push(key);\n    // Ahem, IE < 9.\n    if (hasEnumBug) collectNonEnumProps(obj, keys);\n    return keys;\n  };\n\n  // Retrieve all the property names of an object.\n  _.allKeys = function(obj) {\n    if (!_.isObject(obj)) return [];\n    var keys = [];\n    for (var key in obj) keys.push(key);\n    // Ahem, IE < 9.\n    if (hasEnumBug) collectNonEnumProps(obj, keys);\n    return keys;\n  };\n\n  // Retrieve the values of an object's properties.\n  _.values = function(obj) {\n    var keys = _.keys(obj);\n    var length = keys.length;\n    var values = Array(length);\n    for (var i = 0; i < length; i++) {\n      values[i] = obj[keys[i]];\n    }\n    return values;\n  };\n\n  // Returns the results of applying the iteratee to each element of the object\n  // In contrast to _.map it returns an object\n  _.mapObject = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    var keys =  _.keys(obj),\n          length = keys.length,\n          results = {},\n          currentKey;\n      for (var index = 0; index < length; index++) {\n        currentKey = keys[index];\n        results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n      }\n      return results;\n  };\n\n  // Convert an object into a list of `[key, value]` pairs.\n  _.pairs = function(obj) {\n    var keys = _.keys(obj);\n    var length = keys.length;\n    var pairs = Array(length);\n    for (var i = 0; i < length; i++) {\n      pairs[i] = [keys[i], obj[keys[i]]];\n    }\n    return pairs;\n  };\n\n  // Invert the keys and values of an object. The values must be serializable.\n  _.invert = function(obj) {\n    var result = {};\n    var keys = _.keys(obj);\n    for (var i = 0, length = keys.length; i < length; i++) {\n      result[obj[keys[i]]] = keys[i];\n    }\n    return result;\n  };\n\n  // Return a sorted list of the function names available on the object.\n  // Aliased as `methods`\n  _.functions = _.methods = function(obj) {\n    var names = [];\n    for (var key in obj) {\n      if (_.isFunction(obj[key])) names.push(key);\n    }\n    return names.sort();\n  };\n\n  // Extend a given object with all the properties in passed-in object(s).\n  _.extend = createAssigner(_.allKeys);\n\n  // Assigns a given object with all the own properties in the passed-in object(s)\n  // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\n  _.extendOwn = _.assign = createAssigner(_.keys);\n\n  // Returns the first key on an object that passes a predicate test\n  _.findKey = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = _.keys(obj), key;\n    for (var i = 0, length = keys.length; i < length; i++) {\n      key = keys[i];\n      if (predicate(obj[key], key, obj)) return key;\n    }\n  };\n\n  // Return a copy of the object only containing the whitelisted properties.\n  _.pick = function(object, oiteratee, context) {\n    var result = {}, obj = object, iteratee, keys;\n    if (obj == null) return result;\n    if (_.isFunction(oiteratee)) {\n      keys = _.allKeys(obj);\n      iteratee = optimizeCb(oiteratee, context);\n    } else {\n      keys = flatten(arguments, false, false, 1);\n      iteratee = function(value, key, obj) { return key in obj; };\n      obj = Object(obj);\n    }\n    for (var i = 0, length = keys.length; i < length; i++) {\n      var key = keys[i];\n      var value = obj[key];\n      if (iteratee(value, key, obj)) result[key] = value;\n    }\n    return result;\n  };\n\n   // Return a copy of the object without the blacklisted properties.\n  _.omit = function(obj, iteratee, context) {\n    if (_.isFunction(iteratee)) {\n      iteratee = _.negate(iteratee);\n    } else {\n      var keys = _.map(flatten(arguments, false, false, 1), String);\n      iteratee = function(value, key) {\n        return !_.contains(keys, key);\n      };\n    }\n    return _.pick(obj, iteratee, context);\n  };\n\n  // Fill in a given object with default properties.\n  _.defaults = createAssigner(_.allKeys, true);\n\n  // Creates an object that inherits from the given prototype object.\n  // If additional properties are provided then they will be added to the\n  // created object.\n  _.create = function(prototype, props) {\n    var result = baseCreate(prototype);\n    if (props) _.extendOwn(result, props);\n    return result;\n  };\n\n  // Create a (shallow-cloned) duplicate of an object.\n  _.clone = function(obj) {\n    if (!_.isObject(obj)) return obj;\n    return _.isArray(obj) ? obj.slice() : _.extend({}, obj);\n  };\n\n  // Invokes interceptor with the obj, and then returns obj.\n  // The primary purpose of this method is to \"tap into\" a method chain, in\n  // order to perform operations on intermediate results within the chain.\n  _.tap = function(obj, interceptor) {\n    interceptor(obj);\n    return obj;\n  };\n\n  // Returns whether an object has a given set of `key:value` pairs.\n  _.isMatch = function(object, attrs) {\n    var keys = _.keys(attrs), length = keys.length;\n    if (object == null) return !length;\n    var obj = Object(object);\n    for (var i = 0; i < length; i++) {\n      var key = keys[i];\n      if (attrs[key] !== obj[key] || !(key in obj)) return false;\n    }\n    return true;\n  };\n\n\n  // Internal recursive comparison function for `isEqual`.\n  var eq = function(a, b, aStack, bStack) {\n    // Identical objects are equal. `0 === -0`, but they aren't identical.\n    // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).\n    if (a === b) return a !== 0 || 1 / a === 1 / b;\n    // A strict comparison is necessary because `null == undefined`.\n    if (a == null || b == null) return a === b;\n    // Unwrap any wrapped objects.\n    if (a instanceof _) a = a._wrapped;\n    if (b instanceof _) b = b._wrapped;\n    // Compare `[[Class]]` names.\n    var className = toString.call(a);\n    if (className !== toString.call(b)) return false;\n    switch (className) {\n      // Strings, numbers, regular expressions, dates, and booleans are compared by value.\n      case '[object RegExp]':\n      // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n      case '[object String]':\n        // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n        // equivalent to `new String(\"5\")`.\n        return '' + a === '' + b;\n      case '[object Number]':\n        // `NaN`s are equivalent, but non-reflexive.\n        // Object(NaN) is equivalent to NaN\n        if (+a !== +a) return +b !== +b;\n        // An `egal` comparison is performed for other numeric values.\n        return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n      case '[object Date]':\n      case '[object Boolean]':\n        // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n        // millisecond representations. Note that invalid dates with millisecond representations\n        // of `NaN` are not equivalent.\n        return +a === +b;\n    }\n\n    var areArrays = className === '[object Array]';\n    if (!areArrays) {\n      if (typeof a != 'object' || typeof b != 'object') return false;\n\n      // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n      // from different frames are.\n      var aCtor = a.constructor, bCtor = b.constructor;\n      if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor &&\n                               _.isFunction(bCtor) && bCtor instanceof bCtor)\n                          && ('constructor' in a && 'constructor' in b)) {\n        return false;\n      }\n    }\n    // Assume equality for cyclic structures. The algorithm for detecting cyclic\n    // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n    // Initializing stack of traversed objects.\n    // It's done here since we only need them for objects and arrays comparison.\n    aStack = aStack || [];\n    bStack = bStack || [];\n    var length = aStack.length;\n    while (length--) {\n      // Linear search. Performance is inversely proportional to the number of\n      // unique nested structures.\n      if (aStack[length] === a) return bStack[length] === b;\n    }\n\n    // Add the first object to the stack of traversed objects.\n    aStack.push(a);\n    bStack.push(b);\n\n    // Recursively compare objects and arrays.\n    if (areArrays) {\n      // Compare array lengths to determine if a deep comparison is necessary.\n      length = a.length;\n      if (length !== b.length) return false;\n      // Deep compare the contents, ignoring non-numeric properties.\n      while (length--) {\n        if (!eq(a[length], b[length], aStack, bStack)) return false;\n      }\n    } else {\n      // Deep compare objects.\n      var keys = _.keys(a), key;\n      length = keys.length;\n      // Ensure that both objects contain the same number of properties before comparing deep equality.\n      if (_.keys(b).length !== length) return false;\n      while (length--) {\n        // Deep compare each member\n        key = keys[length];\n        if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n      }\n    }\n    // Remove the first object from the stack of traversed objects.\n    aStack.pop();\n    bStack.pop();\n    return true;\n  };\n\n  // Perform a deep comparison to check if two objects are equal.\n  _.isEqual = function(a, b) {\n    return eq(a, b);\n  };\n\n  // Is a given array, string, or object empty?\n  // An \"empty\" object has no enumerable own-properties.\n  _.isEmpty = function(obj) {\n    if (obj == null) return true;\n    if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0;\n    return _.keys(obj).length === 0;\n  };\n\n  // Is a given value a DOM element?\n  _.isElement = function(obj) {\n    return !!(obj && obj.nodeType === 1);\n  };\n\n  // Is a given value an array?\n  // Delegates to ECMA5's native Array.isArray\n  _.isArray = nativeIsArray || function(obj) {\n    return toString.call(obj) === '[object Array]';\n  };\n\n  // Is a given variable an object?\n  _.isObject = function(obj) {\n    var type = typeof obj;\n    return type === 'function' || type === 'object' && !!obj;\n  };\n\n  // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError.\n  _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) {\n    _['is' + name] = function(obj) {\n      return toString.call(obj) === '[object ' + name + ']';\n    };\n  });\n\n  // Define a fallback version of the method in browsers (ahem, IE < 9), where\n  // there isn't any inspectable \"Arguments\" type.\n  if (!_.isArguments(arguments)) {\n    _.isArguments = function(obj) {\n      return _.has(obj, 'callee');\n    };\n  }\n\n  // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8,\n  // IE 11 (#1621), and in Safari 8 (#1929).\n  if (typeof /./ != 'function' && typeof Int8Array != 'object') {\n    _.isFunction = function(obj) {\n      return typeof obj == 'function' || false;\n    };\n  }\n\n  // Is a given object a finite number?\n  _.isFinite = function(obj) {\n    return isFinite(obj) && !isNaN(parseFloat(obj));\n  };\n\n  // Is the given value `NaN`? (NaN is the only number which does not equal itself).\n  _.isNaN = function(obj) {\n    return _.isNumber(obj) && obj !== +obj;\n  };\n\n  // Is a given value a boolean?\n  _.isBoolean = function(obj) {\n    return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n  };\n\n  // Is a given value equal to null?\n  _.isNull = function(obj) {\n    return obj === null;\n  };\n\n  // Is a given variable undefined?\n  _.isUndefined = function(obj) {\n    return obj === void 0;\n  };\n\n  // Shortcut function for checking if an object has a given property directly\n  // on itself (in other words, not on a prototype).\n  _.has = function(obj, key) {\n    return obj != null && hasOwnProperty.call(obj, key);\n  };\n\n  // Utility Functions\n  // -----------------\n\n  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its\n  // previous owner. Returns a reference to the Underscore object.\n  _.noConflict = function() {\n    root._ = previousUnderscore;\n    return this;\n  };\n\n  // Keep the identity function around for default iteratees.\n  _.identity = function(value) {\n    return value;\n  };\n\n  // Predicate-generating functions. Often useful outside of Underscore.\n  _.constant = function(value) {\n    return function() {\n      return value;\n    };\n  };\n\n  _.noop = function(){};\n\n  _.property = property;\n\n  // Generates a function for a given object that returns a given property.\n  _.propertyOf = function(obj) {\n    return obj == null ? function(){} : function(key) {\n      return obj[key];\n    };\n  };\n\n  // Returns a predicate for checking whether an object has a given set of\n  // `key:value` pairs.\n  _.matcher = _.matches = function(attrs) {\n    attrs = _.extendOwn({}, attrs);\n    return function(obj) {\n      return _.isMatch(obj, attrs);\n    };\n  };\n\n  // Run a function **n** times.\n  _.times = function(n, iteratee, context) {\n    var accum = Array(Math.max(0, n));\n    iteratee = optimizeCb(iteratee, context, 1);\n    for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n    return accum;\n  };\n\n  // Return a random integer between min and max (inclusive).\n  _.random = function(min, max) {\n    if (max == null) {\n      max = min;\n      min = 0;\n    }\n    return min + Math.floor(Math.random() * (max - min + 1));\n  };\n\n  // A (possibly faster) way to get the current timestamp as an integer.\n  _.now = Date.now || function() {\n    return new Date().getTime();\n  };\n\n   // List of HTML entities for escaping.\n  var escapeMap = {\n    '&': '&amp;',\n    '<': '&lt;',\n    '>': '&gt;',\n    '\"': '&quot;',\n    \"'\": '&#x27;',\n    '`': '&#x60;'\n  };\n  var unescapeMap = _.invert(escapeMap);\n\n  // Functions for escaping and unescaping strings to/from HTML interpolation.\n  var createEscaper = function(map) {\n    var escaper = function(match) {\n      return map[match];\n    };\n    // Regexes for identifying a key that needs to be escaped\n    var source = '(?:' + _.keys(map).join('|') + ')';\n    var testRegexp = RegExp(source);\n    var replaceRegexp = RegExp(source, 'g');\n    return function(string) {\n      string = string == null ? '' : '' + string;\n      return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n    };\n  };\n  _.escape = createEscaper(escapeMap);\n  _.unescape = createEscaper(unescapeMap);\n\n  // If the value of the named `property` is a function then invoke it with the\n  // `object` as context; otherwise, return it.\n  _.result = function(object, property, fallback) {\n    var value = object == null ? void 0 : object[property];\n    if (value === void 0) {\n      value = fallback;\n    }\n    return _.isFunction(value) ? value.call(object) : value;\n  };\n\n  // Generate a unique integer id (unique within the entire client session).\n  // Useful for temporary DOM ids.\n  var idCounter = 0;\n  _.uniqueId = function(prefix) {\n    var id = ++idCounter + '';\n    return prefix ? prefix + id : id;\n  };\n\n  // By default, Underscore uses ERB-style template delimiters, change the\n  // following template settings to use alternative delimiters.\n  _.templateSettings = {\n    evaluate    : /<%([\\s\\S]+?)%>/g,\n    interpolate : /<%=([\\s\\S]+?)%>/g,\n    escape      : /<%-([\\s\\S]+?)%>/g\n  };\n\n  // When customizing `templateSettings`, if you don't want to define an\n  // interpolation, evaluation or escaping regex, we need one that is\n  // guaranteed not to match.\n  var noMatch = /(.)^/;\n\n  // Certain characters need to be escaped so that they can be put into a\n  // string literal.\n  var escapes = {\n    \"'\":      \"'\",\n    '\\\\':     '\\\\',\n    '\\r':     'r',\n    '\\n':     'n',\n    '\\u2028': 'u2028',\n    '\\u2029': 'u2029'\n  };\n\n  var escaper = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\n  var escapeChar = function(match) {\n    return '\\\\' + escapes[match];\n  };\n\n  // JavaScript micro-templating, similar to John Resig's implementation.\n  // Underscore templating handles arbitrary delimiters, preserves whitespace,\n  // and correctly escapes quotes within interpolated code.\n  // NB: `oldSettings` only exists for backwards compatibility.\n  _.template = function(text, settings, oldSettings) {\n    if (!settings && oldSettings) settings = oldSettings;\n    settings = _.defaults({}, settings, _.templateSettings);\n\n    // Combine delimiters into one regular expression via alternation.\n    var matcher = RegExp([\n      (settings.escape || noMatch).source,\n      (settings.interpolate || noMatch).source,\n      (settings.evaluate || noMatch).source\n    ].join('|') + '|$', 'g');\n\n    // Compile the template source, escaping string literals appropriately.\n    var index = 0;\n    var source = \"__p+='\";\n    text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n      source += text.slice(index, offset).replace(escaper, escapeChar);\n      index = offset + match.length;\n\n      if (escape) {\n        source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n      } else if (interpolate) {\n        source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n      } else if (evaluate) {\n        source += \"';\\n\" + evaluate + \"\\n__p+='\";\n      }\n\n      // Adobe VMs need the match returned to produce the correct offest.\n      return match;\n    });\n    source += \"';\\n\";\n\n    // If a variable is not specified, place data values in local scope.\n    if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n    source = \"var __t,__p='',__j=Array.prototype.join,\" +\n      \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n      source + 'return __p;\\n';\n\n    try {\n      var render = new Function(settings.variable || 'obj', '_', source);\n    } catch (e) {\n      e.source = source;\n      throw e;\n    }\n\n    var template = function(data) {\n      return render.call(this, data, _);\n    };\n\n    // Provide the compiled source as a convenience for precompilation.\n    var argument = settings.variable || 'obj';\n    template.source = 'function(' + argument + '){\\n' + source + '}';\n\n    return template;\n  };\n\n  // Add a \"chain\" function. Start chaining a wrapped Underscore object.\n  _.chain = function(obj) {\n    var instance = _(obj);\n    instance._chain = true;\n    return instance;\n  };\n\n  // OOP\n  // ---------------\n  // If Underscore is called as a function, it returns a wrapped object that\n  // can be used OO-style. This wrapper holds altered versions of all the\n  // underscore functions. Wrapped objects may be chained.\n\n  // Helper function to continue chaining intermediate results.\n  var result = function(instance, obj) {\n    return instance._chain ? _(obj).chain() : obj;\n  };\n\n  // Add your own custom functions to the Underscore object.\n  _.mixin = function(obj) {\n    _.each(_.functions(obj), function(name) {\n      var func = _[name] = obj[name];\n      _.prototype[name] = function() {\n        var args = [this._wrapped];\n        push.apply(args, arguments);\n        return result(this, func.apply(_, args));\n      };\n    });\n  };\n\n  // Add all of the Underscore functions to the wrapper object.\n  _.mixin(_);\n\n  // Add all mutator Array functions to the wrapper.\n  _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n    var method = ArrayProto[name];\n    _.prototype[name] = function() {\n      var obj = this._wrapped;\n      method.apply(obj, arguments);\n      if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];\n      return result(this, obj);\n    };\n  });\n\n  // Add all accessor Array functions to the wrapper.\n  _.each(['concat', 'join', 'slice'], function(name) {\n    var method = ArrayProto[name];\n    _.prototype[name] = function() {\n      return result(this, method.apply(this._wrapped, arguments));\n    };\n  });\n\n  // Extracts the result from a wrapped and chained object.\n  _.prototype.value = function() {\n    return this._wrapped;\n  };\n\n  // Provide unwrapping proxy for some methods used in engine operations\n  // such as arithmetic and JSON stringification.\n  _.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n  _.prototype.toString = function() {\n    return '' + this._wrapped;\n  };\n\n  // AMD registration happens at the end for compatibility with AMD loaders\n  // that may not enforce next-turn semantics on modules. Even though general\n  // practice for AMD registration is to be anonymous, underscore registers\n  // as a named module because, like jQuery, it is a base library that is\n  // popular enough to be bundled in a third party lib, but not be part of\n  // an AMD load request. Those cases could generate an error when an\n  // anonymous define() is called outside of a loader request.\n  if (typeof define === 'function' && define.amd) {\n    define('underscore', [], function() {\n      return _;\n    });\n  }\n}.call(this));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/underscore/underscore.js\n// module id = 1\n// module chunks = 0","\"use strict\";\n\nvar _undefined = require(\"../function/noop\")(); // Support ES3 engines\n\nmodule.exports = function (val) {\n return (val !== _undefined) && (val !== null);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/is-value.js\n// module id = 2\n// module chunks = 0","\"use strict\";\nvar _ = require('underscore');\n\n// Add string formatting if it doesn't exist\nif (!String.prototype.format) {\n  String.prototype.format = function() {\n    var args = arguments;\n    return this.replace(/{(\\d+)}/g, function(match, number) {\n      return typeof args[number] != 'undefined'\n        ? args[number]\n        : match\n      ;\n    });\n  };\n}\n\nfunction getWaterTempProbe(data, plotInfo, traceInfo, allData) {\n    var allProbeText = [];\n    var probeText;\n    var row, col;\n    var rowText;\n    var depth;\n    for (var j=0; j < data.length; j++) {\n        row = data[j];\n        rowText = [];\n        depth = traceInfo.y[j];\n        for (var i=0; i < row.length; i++) {\n            col = row[i];\n\n            probeText = \"Depth: {0}m<br>{1}: {2} °C ({3} °F)\".format(\n                depth.toFixed(1),\n                traceInfo.name,\n                col !== null ? col.toFixed(3) : \"N/A\",\n                col !== null ? getF(col).toFixed(3) : \"N/A\");\n            rowText.push(probeText);\n        }\n        allProbeText.push(rowText);\n    }\n    return allProbeText;\n}\n\nfunction getSpeedMPH(val) {\n    // convert m/s to mph\n    return val * 3600 / 1608;\n}\nfunction getSpeedKTS(val) {\n    //m/s to knots\n    return val * 1.94384;\n}\n\n\nfunction getPresInHg(val) {\n    // hPa to InHg\n    return val * 0.02952998751;\n}\n\n\nfunction getAccumMillimeter(val) {\n    // convert inches to millimeters\n    return val * 25.4;\n}\n\n\nfunction cardinalWDir(degrees){\n    \n    return ['N','NNE','NE','ENE',\n            'E','ESE','SE','SSE',\n            'S','SSW','SW','WSW',\n            'W','WNW','NW','NNW'][Math.floor(((degrees+11.25)%360)/22.5)];\n}\n// Convert C to F degrees\nfunction getF(val) {\n    return val * 1.8 + 32;\n}\n\nfunction getVal(val) {\n    return val;\n}\n\n\nvar CONVERSION_FUNCTIONS = {\n    null: getVal,\n    undefined: getVal,\n    getF: getF,\n    getPresInHg: getPresInHg,\n    getSpeedMPH: getSpeedMPH,\n    getAccumMillimeter: getAccumMillimeter,\n    cardinalWDir: cardinalWDir,\n    getSpeedKTS:getSpeedKTS\n};\n\n\n\nfunction formatValue(val, plotInfo, traceInfo) {\n    var val2;\n    if (val === null) {\n        val = \"\";\n        val2 = \"\";\n    } else {\n        if ('yaxis2' in plotInfo && 'convert_value' in plotInfo.yaxis2) {\n            val2 = CONVERSION_FUNCTIONS[plotInfo.yaxis2.convert_value](val);\n            val2 = (val2.toFixed)?val2.toFixed(plotInfo.yaxis2.precision):val2;\n        } else {\n            val2 = undefined;\n        }\n        val = CONVERSION_FUNCTIONS[plotInfo.yaxis.convert_value](val);\n        val=(val.toFixed)?val.toFixed(plotInfo.yaxis.precision):val;\n    }\n\n    if ('yaxis2' in plotInfo && val2 !== undefined) {\n        return \"{0}: {1}{2} ({3}{4})\".format(\n            traceInfo.name,\n            val, plotInfo.yaxis.units,\n            val2, plotInfo.yaxis2.units);\n    } else {\n        return \"{0}: {1}{2}\".format(\n            traceInfo.name,\n            val, plotInfo.yaxis.units);\n    }\n}\n\nfunction getDewpointProbe(data, plotInfo, traceInfo, allData) {\n    var allProbeText = [];\n    var probeText;\n    var relHum = undefined;\n    if ('anc_variables' in traceInfo && traceInfo.anc_variables.length == 1) {\n        relHum = allData[traceInfo.anc_variables[0]];\n    }\n    var rh_info = traceInfo.anc_info[traceInfo.anc_variables[0]];\n    if(!rh_info)\n        rh_info={ name: traceInfo.anc_variables[0], units: '', precision: 2};\n\n    for (var i=0; i < data.length; i++) {\n        probeText = formatValue(data[i], plotInfo, traceInfo);\n        if (relHum !== undefined) {\n            probeText += \"<br>{0}: {1}{2}\".format(rh_info.name,\n                    relHum[i] ? relHum[i].toFixed(rh_info.precision) : \"\",\n                    rh_info.units);\n        }\n        allProbeText.push(probeText);\n    }\n    return allProbeText;\n}\n\n\nfunction defaultProbeText(data, plotInfo, traceInfo, allData) {\n    // assume traces share the same 'x'\n    var allProbeText = [];\n    for (var i=0; i < data.length; i++) {\n        allProbeText.push(formatValue(data[i], plotInfo, traceInfo));\n    }\n    return allProbeText;\n}\n\n\nvar PROBE_TEXT_FUNCTIONS = {\n    undefined: defaultProbeText,\n    null: defaultProbeText,\n    dewpoint: getDewpointProbe,\n    water_temp: getWaterTempProbe,\n};\n\n\nfunction getProbeText(data, plotInfo, traceInfo, allData) {\n    if ('probe_text' in traceInfo) {\n        return PROBE_TEXT_FUNCTIONS[traceInfo.probe_text](data, plotInfo, traceInfo, allData);\n    }\n    return defaultProbeText(data, plotInfo, traceInfo, allData);\n}\n\n\nfunction getTickText(values, axis_info) {\n    var tickText = [];\n    for (var i=0; i < values.length; i++) {\n        var val = CONVERSION_FUNCTIONS[axis_info.convert_value](values[i]);\n        val = (val.toFixed)?val.toFixed(axis_info.precision):val;\n        tickText.push(val);\n    }\n    return tickText;\n}\n\n\n/**\n* the purpose of this method is to get the spacing for the y axis\n* For deg F and deg C\n* @param min - minimum of the temp or dew point array\n* @param max - maximum of the temp or dew point array\n* @return array of 4 tick values for the y axis\n*/\n\nfunction getTickVals(min, max, bump) {\n    var extra = (max - min) * 0.02;\n    min = min - extra;\n    max = max + extra;\n    var step = (max - min) / 4.;\n    //create 4 tick values for the y axis\n    return _.range(min, max + step, step);\n}\n\n\nmodule.exports.getTickVals = getTickVals;\nmodule.exports.getProbeText = getProbeText;\nmodule.exports.getTickText = getTickText;\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// ./plot/ticks.js","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things.  But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals.  It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n    throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n    throw new Error('clearTimeout has not been defined');\n}\n(function () {\n    try {\n        if (typeof setTimeout === 'function') {\n            cachedSetTimeout = setTimeout;\n        } else {\n            cachedSetTimeout = defaultSetTimout;\n        }\n    } catch (e) {\n        cachedSetTimeout = defaultSetTimout;\n    }\n    try {\n        if (typeof clearTimeout === 'function') {\n            cachedClearTimeout = clearTimeout;\n        } else {\n            cachedClearTimeout = defaultClearTimeout;\n        }\n    } catch (e) {\n        cachedClearTimeout = defaultClearTimeout;\n    }\n} ())\nfunction runTimeout(fun) {\n    if (cachedSetTimeout === setTimeout) {\n        //normal enviroments in sane situations\n        return setTimeout(fun, 0);\n    }\n    // if setTimeout wasn't available but was latter defined\n    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n        cachedSetTimeout = setTimeout;\n        return setTimeout(fun, 0);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedSetTimeout(fun, 0);\n    } catch(e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n            return cachedSetTimeout.call(null, fun, 0);\n        } catch(e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n            return cachedSetTimeout.call(this, fun, 0);\n        }\n    }\n\n\n}\nfunction runClearTimeout(marker) {\n    if (cachedClearTimeout === clearTimeout) {\n        //normal enviroments in sane situations\n        return clearTimeout(marker);\n    }\n    // if clearTimeout wasn't available but was latter defined\n    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n        cachedClearTimeout = clearTimeout;\n        return clearTimeout(marker);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedClearTimeout(marker);\n    } catch (e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n            return cachedClearTimeout.call(null, marker);\n        } catch (e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n            return cachedClearTimeout.call(this, marker);\n        }\n    }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n    if (!draining || !currentQueue) {\n        return;\n    }\n    draining = false;\n    if (currentQueue.length) {\n        queue = currentQueue.concat(queue);\n    } else {\n        queueIndex = -1;\n    }\n    if (queue.length) {\n        drainQueue();\n    }\n}\n\nfunction drainQueue() {\n    if (draining) {\n        return;\n    }\n    var timeout = runTimeout(cleanUpNextTick);\n    draining = true;\n\n    var len = queue.length;\n    while(len) {\n        currentQueue = queue;\n        queue = [];\n        while (++queueIndex < len) {\n            if (currentQueue) {\n                currentQueue[queueIndex].run();\n            }\n        }\n        queueIndex = -1;\n        len = queue.length;\n    }\n    currentQueue = null;\n    draining = false;\n    runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n    var args = new Array(arguments.length - 1);\n    if (arguments.length > 1) {\n        for (var i = 1; i < arguments.length; i++) {\n            args[i - 1] = arguments[i];\n        }\n    }\n    queue.push(new Item(fun, args));\n    if (queue.length === 1 && !draining) {\n        runTimeout(drainQueue);\n    }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n    this.fun = fun;\n    this.array = array;\n}\nItem.prototype.run = function () {\n    this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n    throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n    throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/process/browser.js\n// module id = 4\n// module chunks = 0","\"use strict\";\nvar updatePlot = require('./update.js');\nvar loading = require('../ui/loading.js');\nvar _ = require('underscore');\n\n\nfunction processData(dataObj) {\n    // plotly doesn't support the 'T' date/time separator or the 'Z' at the end\n    // https://help.plot.ly/date-format-and-time-series/#step-2-entering-dates-and-times-in-plotly-s-grid\n    var dates = _.map(dataObj.timestamps, function(date){return date.replace(\"T\",' ').substring(0, date.length-1)});\n    var allData = {\n        dates: dates,\n    };\n    _.extend(allData, dataObj.data);\n    return allData;\n}\n\n\nfunction plotting(url, var_names, plotsInfo, div, update) {\n    //gets information and updates component\n    $.ajax({\n            type: 'GET',\n            url: url,\n            jsonp: \"callback\",\n            dataType: \"jsonp\",\n            success: function(dataObj) {\n                var graphDiv = document.getElementById(div);\n                var allData = processData(dataObj['results']);\n                var existingDates = graphDiv.data[0]['x'];\n                var dates = allData['dates'];\n                dataObj = {\n                    dates: dates\n                };\n\n                if (dataObj.dates.length == 0) {\n                    console.warn(\"No data available from API\");\n                    return;\n                }\n\n                if (update) {\n                    // first index in the new data that is actually new\n                    var startIndex = 0;\n                    // update only dates that aren't already included\n                    // assume that we don't have any missing dates in the middle\n                    while (startIndex < dates.length && dates[startIndex] <= existingDates[existingDates.length - 1]) {\n                        startIndex++;\n                    }\n\n                    // subset the data if needed\n                    if (startIndex == dates.length) {\n                        console.info(\"No new data downloaded\");\n                        return;\n                    } else {\n                        dates = dates.slice(startIndex);\n                        for (var i = 0; i < var_names.length; i++) {\n                            dataObj[var_names[i]] = allData[var_names[i]].slice(startIndex);\n                        }\n                    }\n                } else {\n                    // replace the entire data array\n                    for (var i = 0; i < var_names.length; i++) {\n                        dataObj[var_names[i]] = allData[var_names[i]];\n                    }\n                }\n\n                updatePlot.updatePlot(graphDiv, plotsInfo, dataObj, update);\n            }\n    });\n}\n\n\nfunction buildRequestUrl(format, interval, epoch, sep, order, time, streams) {\n    var request_url = METOBS_API_URL+'/api/data.'+format+'?';\n    request_url += 'interval='+interval;\n    request_url += '&epoch='+epoch;\n    request_url +='&sep='+sep || ','; \n    request_url += '&order='+order;\n    request_url+=time;\n    request_url+='&symbols='+streams;\n    return request_url;\n}\n\n//the minimum time period (in milliseconds) that a request must cover in order to use\nvar intervalLookUp = [\n    //1 day for 5 minutes\n    [1000*60*60*24, '5m', '-00:10:00'],\n    //6 days for 30 minutes\n    [1000*60*60*24*6, '30m', '-01:00:00'],\n    //1 month for 1 hour\n    [1000*60*60*24*30*1, '1h', '-02:00:00'],\n    //3 months for 3 hours\n    [1000*60*60*24*30*3, '3h', '-06:00:00'],\n    //6 months for 6 hours\n    [1000*60*60*24*30*6, '6h', '-12:00:00'],\n    //1 year for 12 hours\n    [1000*60*60*24*365, '12h', '-24:00:00'],\n    //anything else is 1 minute\n];\n\n\nfunction varNamesForDiv(div) {\n    var varNames = [];\n    var graphDiv = document.getElementById(div);\n    _.each(graphDiv.data, function(trace_data) {\n        Array.prototype.push.apply(varNames, trace_data.var_names);\n        if ('anc_variables' in trace_data) {\n            Array.prototype.push.apply(varNames, trace_data.anc_variables);\n        }\n    });\n    return varNames;\n}\n\n\n//poorly ordered function parameters\nfunction requestPlotUpdate(div, plotsInfo, startTime, endTime, interval, update) {\n    var varNames = varNamesForDiv(div);\n    var stream_string = '';\n    for (var i in varNames) {\n        stream_string += varNames[i];\n        if (i < varNames.length - 1) stream_string += ':';\n    }\n\n    var time;\n    if (!endTime) {\n        interval = '1m';\n        // hours, minutes, seconds\n        var time_parts = _.map(startTime.split(':'), Number);\n        var dt_in_ms = -1000 * 60 * 60 * time_parts[0] + 1000 * 60 * time_parts[1] + 1000 * time_parts[2];\n        for (var i in intervalLookUp) {\n            if (dt_in_ms >= intervalLookUp[i][0]) {\n                interval = intervalLookUp[i][1];\n\n                if (update) {\n                    // we only want new data, the passed startTime was only\n                    // used to determine the interval\n                    startTime = intervalLookUp[i][2];\n                }\n            }\n        }\n        time = '&begin='+startTime;\n    } else {\n        time='&begin='+startTime+'&end='+endTime;\n        if(interval == 'auto'){\n            interval = '1m';\n            var dt_in_ms = (new Date(endTime)) - (new Date(startTime));\n            for(var i in intervalLookUp){\n                if (dt_in_ms >= intervalLookUp[i][0])\n                    interval = intervalLookUp[i][1];\n            }\n        }\n    }\n\n    var url = buildRequestUrl('json', interval, '', '', 'column', time, stream_string);\n    plotting(url, varNames, plotsInfo, div, update);\n    return interval;\n}\n\n/**\n* The purpose of this method is to create a url based on user info\n*\n* @param userInfo - jsn with startdate, start time, end date, end time, and interval\n* no returns\n*/\n\nfunction customPlot(userInfo,streams)\n{\n    //get dates\n    var startDate = userInfo.startDate;\n    var startParts = startDate.split('/');\n    startDate = startParts[2] + '-' + startParts[0] + '-' + startParts[1];\n\n    var endDate = userInfo.endDate;\n    var endParts = endDate.split('/');\n    endDate = endParts[2] + '-' + endParts[0] + '-' + endParts[1];\n\n    //get times\n    var startTime = userInfo.startTime;\n    var endTime = userInfo.endTime;\n\n    //get interval\n    var interval = userInfo.interval;\n\n    //create url\n    var url = 'http://metobs.ssec.wisc.edu/api/data.json?site=aoss&inst=tower&symbols=air_temp:dewpoint:rel_hum:pressure:wind_speed:wind_direction:accum_precip:solar_flux&begin=';\n    url += (startDate + 'T' + startTime + '&end=' + endDate + 'T' + endTime + '&interval=');\n    url += (interval);\n\n    //plot data\n    plotting(url);\n\n    //hide gif\n    setTimeout(loading.loading, 2000);\n}\n\n//export functions\nmodule.exports.requestPlotUpdate = requestPlotUpdate;\nmodule.exports.buildRequestUrl = buildRequestUrl;\nmodule.exports.customPlot = customPlot;\nmodule.exports.plotting = plotting;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/data.js","var buildFormInDiv = require('./ui/buttons.js');\nvar Dispatcher = require('./dispatcher.js');\nvar _ = require('underscore');\n\nfunction API(div, controlDiv, plotsInfo) {\n    var myDispatcher = Dispatcher.getDispatcher();\n    return {\n        plotDiv: div,\n        controlDiv: controlDiv,\n\n        initMeteorogram: function(plot_div,plotOrder) {\n            this.hasGraph = true;\n            this.plotDiv = plot_div || this.plotDiv;\n            //start with only the selected plots showing, reveal others only if their data is requested\n            myDispatcher.dispatch({\n                'status': 'initPlot',\n                'emit': 'plotEmitter',\n                'location': this.plotDiv,\n                'plotsInfo': plotsInfo,\n                'plotOrder': plotOrder\n            });\n        },\n        initMeteorogramTable: function(table_div,plotOrder) {\n            this.hasTable = true;\n            this.tableDiv = table_div || this.plotDiv;\n            //start with only the selected plots showing, reveal others only if their data is requested\n            myDispatcher.dispatch({\n                'status': 'initTable',\n                'emit': 'plotEmitter',\n                'location': this.tableDiv,\n                'plotsInfo': plotsInfo,\n                'plotOrder': plotOrder,\n            });\n        },\n\n        initMeteorogramControls:function(plotOrder){\n            buildFormInDiv(this.controlDiv, this.plotDiv,myDispatcher);\n        },\n\n        displayRealTime:function(){\n            if(this.hasTable){\n                myDispatcher.dispatch({\n                    'status':'update_table',\n                    'emit':'plotEmitter',\n                    'time':'-3:00:00',\n                    'location':this.tableDiv\n                });\n            }\n            if(this.hasGraph){\n                myDispatcher.dispatch({\n                    'status':'get_since_now',\n                    'emit':'plotEmitter',\n                    'time':'-3:00:00',\n                    'location':this.plotDiv\n                });\n\n            }\n        },\n\n        showPlot:function(varName){\n            myDispatcher.dispatch({status: ('show' + varName), 'emit': 'checkboxEmitter','location':this.div});\n        },\n\n        hidePlot:function(varName){\n            myDispatcher.dispatch({status: ('hide' + varName), 'emit': 'checkboxEmitter','location':this.div});\n        },\n\n        displayRecent:function(start_time){\n            myDispatcher.dispatch({\n                'status':'get_since_now',\n                'emit':'plotEmitter',\n                'time':start_time,\n            });\n        },\n\n        displayTimeRange:function(start_time,stop_time,interval){\n            myDispatcher.dispatch({\n                'status':'get_between_dates',\n                'emit':'plotEmitter',\n                'start':start_time,\n                'end':stop_time,\n                'interval':interval||'auto',\n            });\n\n        },\n    }\n}\n\n//expose the API to other scripts\nwindow.MeteorogramController = API;\n\n\n\n// WEBPACK FOOTER //\n// ./controller.js","\"use strict\";\n\n//var $ = require('jquery');\n//var jQuery = require('jquery');\n\nvar loading = require('./loading.js');\nconst controlPanelTemplate = require('./button_template.js');\n\n/**\n* The purpose of this method is to tell dispatcher\n* Oh, please check if user's entering stuff correctly\n*\n* no params\n* no returns\n*/\n\nfunction dispatchCustom(dispatcher)\n{\n    dispatcher.dispatch({\n        status:'get_between_dates',\n        'emit':'plotEmitter',\n        'start':$('#Start-date-picker').val().split(' ').join('T')+':00',\n        'end':$('#End-date-picker').val().split(' ').join('T')+':00',\n        'interval':'auto',\n    });\n}\n\n\n/**\n* The purpose of this method is to send dispatcher user information\n*\n* no params\n* no returns\n*/\n\nfunction getUserInfo(dispatcher)\n{\n    //show gif\n    loading.loading();\n\n    //get the information from the text boxes\n    var startDate = $('#Start-date-picker').val();\n    var endDate = $('#End-date-picker').val();\n    var startTime = $('#Start-time-picker').val();\n    var endTime = $('#End-time-picker').val();\n    var interval = $('#interval option:selected');\n    var intervalVal = interval.data(\"name\");\n\n    //store in user info\n    var userInfo = {'startDate' : startDate,\n                    'startTime' : startTime,\n                    'endDate': endDate,\n                    'endTime': endTime,\n                    'interval': intervalVal};\n\n    //send to dispatcher\n    setTimeout(function() {dispatch.dispatch({status: 'plot_custom', 'emit': 'plotEmitter', 'userInfo': userInfo});}, 200);                 \n}\n\n\n/**\n* The purpose of this method is to tell dispatcher, time to check if we need to update\n*\n* no params\n* no returns\n*/\n\nfunction dispatchUpdate(dispatcher)\n{\n    dispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter'});\n}\n\n/**\n* The purpose of this method is to figure out what the user wants to do based upon\n* what the user selects on the task dropdown\n*\n* no params\n* no returns\n*/\n\nfunction dropDown(selectedText, dispatcher)\n{\n    console.log(dispatcher);\n    if (selectedText == 'realtime') {\n        dispatcher.dispatch({\n            status:'get_since_now',\n            'emit':'plotEmitter',\n            'time':'-3:00:00'\n        });\n\n    } else {\n        var timeDelta = selectedText;\n        dispatcher.dispatch({\n            status:'get_since_now',\n            'emit':'plotEmitter',\n            'time':selectedText\n        });\n    }\n}\n\nvar bind_daterange_actions = function(jQ_div,dispatcher){\n    //bind to custom buttons and dropdowns\n    $(jQ_div+' #plot-btn').click(function(){dispatchCustom(dispatcher)});\n    $(jQ_div+' #dropDownId').change(function(){dropDown($(this).val(),dispatcher)});\n}\nvar set_active_form = function(which_block,jQ_div){\n    $(jQ_div+\" #dropDownId\").prop(\"disabled\",which_block!=\"recent\");\n\n    $(jQ_div+\" #interval\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #Start-date-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #End-date-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #Start-time-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #End-time-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #plot-btn\").prop(\"disabled\",which_block!=\"range\");\n}\n\nvar set_form_datepickers = function(jQ_div){\n    $(jQ_div+' #Start-date-picker').datetimepicker({\n        changeMonth: true, \n        changeYear: true,\n        dateFormat:'yy-mm-dd',\n        timeFormat:'HH:mm',\n        showSecond:false,\n        showMillisec:false,\n        showMicrosec:false\n    });\n\n    $(jQ_div+' #End-date-picker').datetimepicker({\n        changeMonth: true, \n        changeYear: true,\n        dateFormat:'yy-mm-dd',\n        timeFormat:'HH:mm',\n        showSecond:false,\n        showMillisec:false,\n        showMicrosec:false\n    });\n\n    //bind the enabling/disabling of forms to radio buttons\n    $(jQ_div+' [type=text]').prop(\"disabled\",true);\n    $(jQ_div+' select').prop(\"disabled\",true);\n    $(jQ_div+\" #last_x_days\").click(function(){\n        set_active_form(\"recent\",jQ_div);\n    });\n    $(jQ_div+\" #date_range\").click(function(){\n        set_active_form(\"range\",jQ_div);\n    });\n    //$('#Start-time-picker').editableSelect();\n    //$('#End-time-picker').editableSelect();\n    //add placeholder values for the order forms    \n    //$('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));\n    //$('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));\n    //Firefox (+others maybe) keep buttons selected on page reload\n    //enable the currrently selected one's field\n    $(jQ_div+\" #last_x_days\").trigger('click');\n\n};\n\nvar setup_all_forms = function(div,plot_div,dispatcher){\n    var jQ_div = '#'+div;\n    set_form_datepickers(jQ_div,plot_div);\n    bind_daterange_actions(jQ_div,dispatcher);\n}\n\nfunction buildFormInDiv(div, plot_div,dispatcher) {\n    $('#'+div).append(controlPanelTemplate.controlPanelTemplate);\n    //$('#'+div+ \" #show-hide-boxes\").append(controlPanelTemplate.checkboxTemplates[site]);\n    setup_all_forms(div,plot_div,dispatcher);\n}\n$(document).ready(function(){\n    //Hide all form errors initially\n    //Set up the date range inputs as datepicker objects\n});\n\nmodule.exports = buildFormInDiv;\n\n\n\n// WEBPACK FOOTER //\n// ./ui/buttons.js","const checkboxTemplates = {\n    'aoss.tower': '<div class=\"form-group\">'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"temp\">Temperature + Dewpoint'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"pres\">Pressure'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wS\">Wind Speed'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wD\">Wind Direction'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"aP\">Precipitation'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"sF\">Solar Flux'+\n        '</label>'+\n        '</div>',\n    'mendota.buoy': '<div class=\"form-group\">'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"temp\">Temperature + Dewpoint'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"rh\">Relative Humidity'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wS\">Wind Speed'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wD\">Wind Direction'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"chlor\">Chlorophyll'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"phyco\">Phycocyanin'+\n        '</label>'+\n        '</div>'\n};\n\nconst controlPanelTemplate = '<div class=\"row\" id=\"control-panel-row\">'+\n'<div id=\"show-hide-boxes\" class=\"col-md-12\">'+\n'</div>'+\n'<div class = \"col-md-9\">'+\n'<div class=\"row\" style=\"padding: 0 1em;\">'+\n'<div class=\"form-group\">'+\n'<table style=\"width:100%\">'+\n'<tr>'+\n'<td>'+\n'<div class=\"radio\">'+\n'<label><input type=\"radio\" id=\"last_x_days\" name=\"time_select\">'+\n'Recent Data:'+\n'</label>'+\n'</div>'+\n'</td>'+\n'<td>'+\n'<select class=\"form-control\" id=\"dropDownId\">'+\n'<option selected value=\"realtime\">Realtime Update</option>'+\n'<option value=\"-1:00:00\">Past 1 Hour</option>'+\n'<option value=\"-2:00:00\">Past 2 Hours</option>'+\n'<option value=\"-3:00:00\">Past 3 Hours</option>'+\n'<option value=\"-6:00:00\">Past 6 Hours</option>'+\n'<option value=\"-12:00:00\">Past 12 Hours</option>'+\n'<option value=\"-18:00:00\">Past 18 Hours</option>'+\n'<option value=\"-24:00:00\">Past 24 Hours</option>'+\n'<option value=\"-96:00:00\">Past 4 Days</option>'+\n'</select>'+\n'</td>'+\n'<td style=\"padding-left:.5em\">'+\n'<div class=\"radio\">'+\n'<label><input type=\"radio\" id=\"date_range\" name=\"time_select\">'+\n'Date Range:'+\n'</label>'+\n'</div>'+\n'</td>'+\n'<td>'+\n'<input class=\"form-control\" style=\"padding 0.5em 0;\" id=\"Start-date-picker\" type=\"text\" placeholder=\"YYYY-MM-DD\"/>'+\n'</td>'+\n'<td>to </td>'+\n'<td>'+\n'<input class=\"form-control\" style=\"padding 0.5em 0;\" id=\"End-date-picker\" type=\"text\" placeholder=\"YYYY-MM-DD\"/>'+\n'</td>'+\n'<td>'+\n'<button class=\"btn btn-primary btn-block\" id=\"plot-btn\">Plot</button>'+\n'</td>'+\n'</tr>'+\n'</table>'+\n'</div>'+\n'</div>'+\n'</div>'+\n'</div>'\n;\nmodule.exports = {\n    controlPanelTemplate:controlPanelTemplate,\n    checkboxTemplates:checkboxTemplates\n}\n\n\n\n// WEBPACK FOOTER //\n// ./ui/button_template.js","\"use strict\";\n\n//var $ = require('jquery');\nvar ee = require('event-emitter');\nvar Flux = require('flux');\nvar Plot = require('./plot/init.js');\nvar Table = require('./plot/table.js');\nvar dataAccess = require('./plot/data.js');\nvar loading = require('./ui/loading.js');\nvar getDispatcher = function(){\n    var myDispatcher = new Flux.Dispatcher();\n    //not sure where else to stick globals\n    myDispatcher.GRAPH_HEIGHT = 170;\n    /**\n    * The purpose of this method is to dispatch an update message to plotStore\n    *\n    * no parameters\n    * no returns\n    */\n\n    function dispatchUpdate(startTime) {\n        return function() {\n            //dispatch update message to plotStore\n            myDispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter', 'startTime': startTime});\n        }\n    }\n\n    //creates checkbox store\n    var checkboxEmitter = ee({\n        visible: {},\n        setPlots: function (plotsInfo) {\n            for (var plot_key in plotsInfo) {\n                this.visible[plot_key] = true;\n            }\n        },\n        setShowing: function(plotName, visible) {\n            if (visible === undefined) {\n                this.showing[plotName] = !this.showing[plotName];\n            } else {\n                this.showing[plotName] = visible;\n            }\n        },\n        getShowing: function(plotName) {\n            return this.showing[plotName];\n        },\n        handleActions: function(action) {\n            //only handels if action is for checkbox emitter\n            if(action.emit == 'checkboxEmitter')\n            {\n                this.emit(action.status, action.location);\n            }    \n        }\n    });\n\n    //register store with dispatcher\n    checkboxEmitter.dispatchToken = myDispatcher.register(checkboxEmitter.handleActions.bind(checkboxEmitter));\n\n    //create plotStore\n    // FIXME: Event emitter should be added to a class prototype, not the other way around\n    // See https://github.com/medikoo/event-emitter#usage\n    // The below works...but only because event-emitter allows it. Should probably stick with advertised features\n    var plotEmitter = ee({\n        handleActions: function(action) {\n            if (action.emit == 'plotEmitter') {\n                myDispatcher.waitFor([checkboxEmitter.dispatchToken]);\n\n                if (action.location !== undefined) {\n                    this.div = action.location;\n                }\n\n                if (action.plotsInfo !== undefined) {\n                    this.plotsInfo = action.plotsInfo;\n                    this.plotOrder = this.plotsInfo.defaultPlots;\n                }\n                if (action.plotOrder !== undefined) {\n                    this.plotOrder = action.plotOrder;\n                }\n\n                if (action.status == 'get_since_now') {\n                    this.emit(\n                        action.status,\n                        action.time,\n                        this.plotsInfo,\n                        this.div);\n                }else if (action.status == 'update_table') {\n                    this.emit(\n                        action.status,\n                        action.time,\n                        this.plotsInfo,\n                        this.div);\n                } else if (action.status == 'get_between_dates') {\n                    this.emit(\n                        action.status,\n                        action.start,\n                        action.end,\n                        action.interval,\n                        this.plotsInfo,\n                        this.div);\n                } else if (action.status == 'initPlot') {\n                    this.emit(\n                        action.status,\n                        action.location,\n                        action.plotOrder ? action.plotOrder : this.plotOrder,\n                        this.plotsInfo);\n                } else if (action.status == 'initTable') {\n                    this.emit(\n                        action.status,\n                        action.location,\n                        action.plotOrder ? action.plotOrder : this.plotOrder,\n                        this.plotsInfo);\n                } else if (action.status == 'update') {\n                    this.emit(action.status, this.div, this.plotsInfo, action.startTime);\n                } else {\n                    //adds parameter for user information in custom plot\n                    console.debug(\"Emitting user information message: {action.status} : {action.userInfo}\");\n                    this.emit(action.status, action.userInfo);\n                }\n            }    \n        }\n    });\n\n\n    function stopUpdate(plotsInfo) {\n        if(!plotsInfo.progress)\n            plotsInfo.progress = new Object();\n        if(plotsInfo.progress.validID){\n            var id = plotsInfo.progress.id[0];\n            clearInterval(id);\n            plotsInfo.progress.validID = false;\n\n        }\n    }\n\n    // update every N/2 milliseconds\n    const updateInterval = {\n        '1m': 30 * 1000,\n        '5m': 2.5 * 60 * 1000,\n        '30m': 15 * 60 * 1000,\n        '1h': 30 * 60 * 1000,\n        '3h': 1.5 * 60 * 60 * 1000,\n        '6h': 3 * 60 * 60 * 1000,\n        '12h': 6 * 60 * 60 * 1000,\n    };\n\n\n    function startUpdate(startTime, interval,plotsInfo) {\n        // stop any previous updates\n        if(!plotsInfo.progress)\n            plotsInfo.progress = new Object();\n        stopUpdate(plotsInfo);\n\n        // resume update operations\n        if (startTime === undefined) {\n            startTime = plotsInfo.progress.id[1];\n        }\n        if (interval === undefined) {\n            interval = plotsInfo.progress.id[2];\n        }\n\n        // every 30 seconds, rings update alarm\n        var intervalID = setInterval(dispatchUpdate(startTime), updateInterval[interval]);\n        // save alarm id\n        plotsInfo.progress.id = [intervalID, startTime, interval];\n        plotsInfo.progress.validID = true;\n    }\n\n    plotEmitter.on('initTable', function(div, plotOrder, plotsInfo) {\n        //initialize checkbox store\n        checkboxEmitter.setPlots(plotsInfo);\n        Table.initTable(div, plotOrder, plotsInfo);\n    });\n\n    plotEmitter.on('update_table',function(time, plotsInfo, div){\n        Table.requestTableUpdate(div,plotsInfo);\n        setInterval(function(){Table.requestTableUpdate(div,plotsInfo)},updateInterval['1m']);\n    });\n\n    plotEmitter.on('initPlot', function(div, plotOrder, plotsInfo) {\n        //initialize checkbox store\n        checkboxEmitter.setPlots(plotsInfo);\n        Plot.initPlot(div, plotOrder, plotsInfo);\n    });\n\n    plotEmitter.on(\"get_since_now\",function(time, plotsInfo, div){\n        var interval = dataAccess.requestPlotUpdate(div, plotsInfo, time, undefined, undefined);\n        startUpdate(time, interval,plotsInfo);\n    });\n\n    plotEmitter.on(\"get_between_dates\",function(start,end,interval, plotsInfo, div){\n        stopUpdate(plotsInfo);\n        dataAccess.requestPlotUpdate(div, plotsInfo, start, end, interval);\n    });\n\n    //when store recieves signal, update component\n    plotEmitter.on('update', function(div, plotsInfo, startTime) {\n        dataAccess.requestPlotUpdate(div, plotsInfo, startTime, undefined, undefined, true);\n    });\n\n    // plotEmitter.on(\"plot_custom\", function(userInfo)\n    // {\n    //      staticPlots.customPlot(userInfo,['air_temp','dewpoint','rel_hum','pressure',\n    //         'wind_speed','wind_direction','accum_precip','solar_flux']);\n    // });\n\n    plotEmitter.on(\"checking_custom\", function()\n    {\n        //before components were plots. Here, it's the user prompt paragraph\n        loading.checkInterval();\n    });\n\n    //register plotStore with dispatcher\n    plotEmitter.dispatchToken = myDispatcher.register(plotEmitter.handleActions.bind(plotEmitter));\n\n    return myDispatcher;\n}\n//exports dispatchers and stores\nmodule.exports.getDispatcher = getDispatcher;\n\n\n\n// WEBPACK FOOTER //\n// ./dispatcher.js","'use strict';\n\nvar d        = require('d')\n  , callable = require('es5-ext/object/valid-callable')\n\n  , apply = Function.prototype.apply, call = Function.prototype.call\n  , create = Object.create, defineProperty = Object.defineProperty\n  , defineProperties = Object.defineProperties\n  , hasOwnProperty = Object.prototype.hasOwnProperty\n  , descriptor = { configurable: true, enumerable: false, writable: true }\n\n  , on, once, off, emit, methods, descriptors, base;\n\non = function (type, listener) {\n\tvar data;\n\n\tcallable(listener);\n\n\tif (!hasOwnProperty.call(this, '__ee__')) {\n\t\tdata = descriptor.value = create(null);\n\t\tdefineProperty(this, '__ee__', descriptor);\n\t\tdescriptor.value = null;\n\t} else {\n\t\tdata = this.__ee__;\n\t}\n\tif (!data[type]) data[type] = listener;\n\telse if (typeof data[type] === 'object') data[type].push(listener);\n\telse data[type] = [data[type], listener];\n\n\treturn this;\n};\n\nonce = function (type, listener) {\n\tvar once, self;\n\n\tcallable(listener);\n\tself = this;\n\ton.call(this, type, once = function () {\n\t\toff.call(self, type, once);\n\t\tapply.call(listener, this, arguments);\n\t});\n\n\tonce.__eeOnceListener__ = listener;\n\treturn this;\n};\n\noff = function (type, listener) {\n\tvar data, listeners, candidate, i;\n\n\tcallable(listener);\n\n\tif (!hasOwnProperty.call(this, '__ee__')) return this;\n\tdata = this.__ee__;\n\tif (!data[type]) return this;\n\tlisteners = data[type];\n\n\tif (typeof listeners === 'object') {\n\t\tfor (i = 0; (candidate = listeners[i]); ++i) {\n\t\t\tif ((candidate === listener) ||\n\t\t\t\t\t(candidate.__eeOnceListener__ === listener)) {\n\t\t\t\tif (listeners.length === 2) data[type] = listeners[i ? 0 : 1];\n\t\t\t\telse listeners.splice(i, 1);\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif ((listeners === listener) ||\n\t\t\t\t(listeners.__eeOnceListener__ === listener)) {\n\t\t\tdelete data[type];\n\t\t}\n\t}\n\n\treturn this;\n};\n\nemit = function (type) {\n\tvar i, l, listener, listeners, args;\n\n\tif (!hasOwnProperty.call(this, '__ee__')) return;\n\tlisteners = this.__ee__[type];\n\tif (!listeners) return;\n\n\tif (typeof listeners === 'object') {\n\t\tl = arguments.length;\n\t\targs = new Array(l - 1);\n\t\tfor (i = 1; i < l; ++i) args[i - 1] = arguments[i];\n\n\t\tlisteners = listeners.slice();\n\t\tfor (i = 0; (listener = listeners[i]); ++i) {\n\t\t\tapply.call(listener, this, args);\n\t\t}\n\t} else {\n\t\tswitch (arguments.length) {\n\t\tcase 1:\n\t\t\tcall.call(listeners, this);\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\tcall.call(listeners, this, arguments[1]);\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\tcall.call(listeners, this, arguments[1], arguments[2]);\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tl = arguments.length;\n\t\t\targs = new Array(l - 1);\n\t\t\tfor (i = 1; i < l; ++i) {\n\t\t\t\targs[i - 1] = arguments[i];\n\t\t\t}\n\t\t\tapply.call(listeners, this, args);\n\t\t}\n\t}\n};\n\nmethods = {\n\ton: on,\n\tonce: once,\n\toff: off,\n\temit: emit\n};\n\ndescriptors = {\n\ton: d(on),\n\tonce: d(once),\n\toff: d(off),\n\temit: d(emit)\n};\n\nbase = defineProperties({}, descriptors);\n\nmodule.exports = exports = function (o) {\n\treturn (o == null) ? create(base) : defineProperties(Object(o), descriptors);\n};\nexports.methods = methods;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/event-emitter/index.js\n// module id = 10\n// module chunks = 0","'use strict';\n\nvar assign        = require('es5-ext/object/assign')\n  , normalizeOpts = require('es5-ext/object/normalize-options')\n  , isCallable    = require('es5-ext/object/is-callable')\n  , contains      = require('es5-ext/string/#/contains')\n\n  , d;\n\nd = module.exports = function (dscr, value/*, options*/) {\n\tvar c, e, w, options, desc;\n\tif ((arguments.length < 2) || (typeof dscr !== 'string')) {\n\t\toptions = value;\n\t\tvalue = dscr;\n\t\tdscr = null;\n\t} else {\n\t\toptions = arguments[2];\n\t}\n\tif (dscr == null) {\n\t\tc = w = true;\n\t\te = false;\n\t} else {\n\t\tc = contains.call(dscr, 'c');\n\t\te = contains.call(dscr, 'e');\n\t\tw = contains.call(dscr, 'w');\n\t}\n\n\tdesc = { value: value, configurable: c, enumerable: e, writable: w };\n\treturn !options ? desc : assign(normalizeOpts(options), desc);\n};\n\nd.gs = function (dscr, get, set/*, options*/) {\n\tvar c, e, options, desc;\n\tif (typeof dscr !== 'string') {\n\t\toptions = set;\n\t\tset = get;\n\t\tget = dscr;\n\t\tdscr = null;\n\t} else {\n\t\toptions = arguments[3];\n\t}\n\tif (get == null) {\n\t\tget = undefined;\n\t} else if (!isCallable(get)) {\n\t\toptions = get;\n\t\tget = set = undefined;\n\t} else if (set == null) {\n\t\tset = undefined;\n\t} else if (!isCallable(set)) {\n\t\toptions = set;\n\t\tset = undefined;\n\t}\n\tif (dscr == null) {\n\t\tc = true;\n\t\te = false;\n\t} else {\n\t\tc = contains.call(dscr, 'c');\n\t\te = contains.call(dscr, 'e');\n\t}\n\n\tdesc = { get: get, set: set, configurable: c, enumerable: e };\n\treturn !options ? desc : assign(normalizeOpts(options), desc);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/d/index.js\n// module id = 11\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? Object.assign\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/index.js\n// module id = 12\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function () {\n\tvar assign = Object.assign, obj;\n\tif (typeof assign !== \"function\") return false;\n\tobj = { foo: \"raz\" };\n\tassign(obj, { bar: \"dwa\" }, { trzy: \"trzy\" });\n\treturn (obj.foo + obj.bar + obj.trzy) === \"razdwatrzy\";\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/is-implemented.js\n// module id = 13\n// module chunks = 0","\"use strict\";\n\nvar keys  = require(\"../keys\")\n  , value = require(\"../valid-value\")\n  , max   = Math.max;\n\nmodule.exports = function (dest, src /*, …srcn*/) {\n\tvar error, i, length = max(arguments.length, 2), assign;\n\tdest = Object(value(dest));\n\tassign = function (key) {\n\t\ttry {\n\t\t\tdest[key] = src[key];\n\t\t} catch (e) {\n\t\t\tif (!error) error = e;\n\t\t}\n\t};\n\tfor (i = 1; i < length; ++i) {\n\t\tsrc = arguments[i];\n\t\tkeys(src).forEach(assign);\n\t}\n\tif (error !== undefined) throw error;\n\treturn dest;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/shim.js\n// module id = 14\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? Object.keys\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/index.js\n// module id = 15\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function () {\n\ttry {\n\t\tObject.keys(\"primitive\");\n\t\treturn true;\n\t} catch (e) {\n return false;\n}\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/is-implemented.js\n// module id = 16\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"../is-value\");\n\nvar keys = Object.keys;\n\nmodule.exports = function (object) {\n\treturn keys(isValue(object) ? Object(object) : object);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/shim.js\n// module id = 17\n// module chunks = 0","\"use strict\";\n\n// eslint-disable-next-line no-empty-function\nmodule.exports = function () {};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/function/noop.js\n// module id = 18\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"./is-value\");\n\nmodule.exports = function (value) {\n\tif (!isValue(value)) throw new TypeError(\"Cannot use null or undefined\");\n\treturn value;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/valid-value.js\n// module id = 19\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"./is-value\");\n\nvar forEach = Array.prototype.forEach, create = Object.create;\n\nvar process = function (src, obj) {\n\tvar key;\n\tfor (key in src) obj[key] = src[key];\n};\n\n// eslint-disable-next-line no-unused-vars\nmodule.exports = function (opts1 /*, …options*/) {\n\tvar result = create(null);\n\tforEach.call(arguments, function (options) {\n\t\tif (!isValue(options)) return;\n\t\tprocess(Object(options), result);\n\t});\n\treturn result;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/normalize-options.js\n// module id = 20\n// module chunks = 0","// Deprecated\n\n\"use strict\";\n\nmodule.exports = function (obj) {\n return typeof obj === \"function\";\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/is-callable.js\n// module id = 21\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? String.prototype.contains\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/index.js\n// module id = 22\n// module chunks = 0","\"use strict\";\n\nvar str = \"razdwatrzy\";\n\nmodule.exports = function () {\n\tif (typeof str.contains !== \"function\") return false;\n\treturn (str.contains(\"dwa\") === true) && (str.contains(\"foo\") === false);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/is-implemented.js\n// module id = 23\n// module chunks = 0","\"use strict\";\n\nvar indexOf = String.prototype.indexOf;\n\nmodule.exports = function (searchString/*, position*/) {\n\treturn indexOf.call(this, searchString, arguments[1]) > -1;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/shim.js\n// module id = 24\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function (fn) {\n\tif (typeof fn !== \"function\") throw new TypeError(fn + \" is not a function\");\n\treturn fn;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/valid-callable.js\n// module id = 25\n// module chunks = 0","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\nmodule.exports.Dispatcher = require('./lib/Dispatcher');\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/flux/index.js\n// module id = 26\n// module chunks = 0","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * @providesModule Dispatcher\n * \n * @preventMunge\n */\n\n'use strict';\n\nexports.__esModule = true;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar _prefix = 'ID_';\n\n/**\n * Dispatcher is used to broadcast payloads to registered callbacks. This is\n * different from generic pub-sub systems in two ways:\n *\n *   1) Callbacks are not subscribed to particular events. Every payload is\n *      dispatched to every registered callback.\n *   2) Callbacks can be deferred in whole or part until other callbacks have\n *      been executed.\n *\n * For example, consider this hypothetical flight destination form, which\n * selects a default city when a country is selected:\n *\n *   var flightDispatcher = new Dispatcher();\n *\n *   // Keeps track of which country is selected\n *   var CountryStore = {country: null};\n *\n *   // Keeps track of which city is selected\n *   var CityStore = {city: null};\n *\n *   // Keeps track of the base flight price of the selected city\n *   var FlightPriceStore = {price: null}\n *\n * When a user changes the selected city, we dispatch the payload:\n *\n *   flightDispatcher.dispatch({\n *     actionType: 'city-update',\n *     selectedCity: 'paris'\n *   });\n *\n * This payload is digested by `CityStore`:\n *\n *   flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'city-update') {\n *       CityStore.city = payload.selectedCity;\n *     }\n *   });\n *\n * When the user selects a country, we dispatch the payload:\n *\n *   flightDispatcher.dispatch({\n *     actionType: 'country-update',\n *     selectedCountry: 'australia'\n *   });\n *\n * This payload is digested by both stores:\n *\n *   CountryStore.dispatchToken = flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'country-update') {\n *       CountryStore.country = payload.selectedCountry;\n *     }\n *   });\n *\n * When the callback to update `CountryStore` is registered, we save a reference\n * to the returned token. Using this token with `waitFor()`, we can guarantee\n * that `CountryStore` is updated before the callback that updates `CityStore`\n * needs to query its data.\n *\n *   CityStore.dispatchToken = flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'country-update') {\n *       // `CountryStore.country` may not be updated.\n *       flightDispatcher.waitFor([CountryStore.dispatchToken]);\n *       // `CountryStore.country` is now guaranteed to be updated.\n *\n *       // Select the default city for the new country\n *       CityStore.city = getDefaultCityForCountry(CountryStore.country);\n *     }\n *   });\n *\n * The usage of `waitFor()` can be chained, for example:\n *\n *   FlightPriceStore.dispatchToken =\n *     flightDispatcher.register(function(payload) {\n *       switch (payload.actionType) {\n *         case 'country-update':\n *         case 'city-update':\n *           flightDispatcher.waitFor([CityStore.dispatchToken]);\n *           FlightPriceStore.price =\n *             getFlightPriceStore(CountryStore.country, CityStore.city);\n *           break;\n *     }\n *   });\n *\n * The `country-update` payload will be guaranteed to invoke the stores'\n * registered callbacks in order: `CountryStore`, `CityStore`, then\n * `FlightPriceStore`.\n */\n\nvar Dispatcher = (function () {\n  function Dispatcher() {\n    _classCallCheck(this, Dispatcher);\n\n    this._callbacks = {};\n    this._isDispatching = false;\n    this._isHandled = {};\n    this._isPending = {};\n    this._lastID = 1;\n  }\n\n  /**\n   * Registers a callback to be invoked with every dispatched payload. Returns\n   * a token that can be used with `waitFor()`.\n   */\n\n  Dispatcher.prototype.register = function register(callback) {\n    var id = _prefix + this._lastID++;\n    this._callbacks[id] = callback;\n    return id;\n  };\n\n  /**\n   * Removes a callback based on its token.\n   */\n\n  Dispatcher.prototype.unregister = function unregister(id) {\n    !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.unregister(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;\n    delete this._callbacks[id];\n  };\n\n  /**\n   * Waits for the callbacks specified to be invoked before continuing execution\n   * of the current callback. This method should only be used by a callback in\n   * response to a dispatched payload.\n   */\n\n  Dispatcher.prototype.waitFor = function waitFor(ids) {\n    !this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Must be invoked while dispatching.') : invariant(false) : undefined;\n    for (var ii = 0; ii < ids.length; ii++) {\n      var id = ids[ii];\n      if (this._isPending[id]) {\n        !this._isHandled[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Circular dependency detected while ' + 'waiting for `%s`.', id) : invariant(false) : undefined;\n        continue;\n      }\n      !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;\n      this._invokeCallback(id);\n    }\n  };\n\n  /**\n   * Dispatches a payload to all registered callbacks.\n   */\n\n  Dispatcher.prototype.dispatch = function dispatch(payload) {\n    !!this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatch.dispatch(...): Cannot dispatch in the middle of a dispatch.') : invariant(false) : undefined;\n    this._startDispatching(payload);\n    try {\n      for (var id in this._callbacks) {\n        if (this._isPending[id]) {\n          continue;\n        }\n        this._invokeCallback(id);\n      }\n    } finally {\n      this._stopDispatching();\n    }\n  };\n\n  /**\n   * Is this Dispatcher currently dispatching.\n   */\n\n  Dispatcher.prototype.isDispatching = function isDispatching() {\n    return this._isDispatching;\n  };\n\n  /**\n   * Call the callback stored with the given id. Also do some internal\n   * bookkeeping.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._invokeCallback = function _invokeCallback(id) {\n    this._isPending[id] = true;\n    this._callbacks[id](this._pendingPayload);\n    this._isHandled[id] = true;\n  };\n\n  /**\n   * Set up bookkeeping needed when dispatching.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._startDispatching = function _startDispatching(payload) {\n    for (var id in this._callbacks) {\n      this._isPending[id] = false;\n      this._isHandled[id] = false;\n    }\n    this._pendingPayload = payload;\n    this._isDispatching = true;\n  };\n\n  /**\n   * Clear bookkeeping used for dispatching.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._stopDispatching = function _stopDispatching() {\n    delete this._pendingPayload;\n    this._isDispatching = false;\n  };\n\n  return Dispatcher;\n})();\n\nmodule.exports = Dispatcher;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/flux/lib/Dispatcher.js\n// module id = 27\n// module chunks = 0","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\n/**\n * Use invariant() to assert state which your program assumes to be true.\n *\n * Provide sprintf-style format (only %s is supported) and arguments\n * to provide information about what broke and what you were\n * expecting.\n *\n * The invariant message will be stripped in production, but the invariant\n * will remain to ensure logic does not differ in production.\n */\n\nvar validateFormat = function validateFormat(format) {};\n\nif (process.env.NODE_ENV !== 'production') {\n  validateFormat = function validateFormat(format) {\n    if (format === undefined) {\n      throw new Error('invariant requires an error message argument');\n    }\n  };\n}\n\nfunction invariant(condition, format, a, b, c, d, e, f) {\n  validateFormat(format);\n\n  if (!condition) {\n    var error;\n    if (format === undefined) {\n      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n    } else {\n      var args = [a, b, c, d, e, f];\n      var argIndex = 0;\n      error = new Error(format.replace(/%s/g, function () {\n        return args[argIndex++];\n      }));\n      error.name = 'Invariant Violation';\n    }\n\n    error.framesToPop = 1; // we don't care about invariant's own frame\n    throw error;\n  }\n}\n\nmodule.exports = invariant;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/fbjs/lib/invariant.js\n// module id = 28\n// module chunks = 0","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar loading = require('../ui/loading.js');\n\n\nfunction initPlot(div_id, plotOrder, plotsInfo) {\n    var DEFAULT_PLOT_HEIGHT = 170;\n    var nshowing = plotOrder.length;\n    var layout = {\n        title: plotsInfo.title,\n        showlegend: false,\n        height: DEFAULT_PLOT_HEIGHT * nshowing + 180,\n    };\n\n    layout['xaxis'] = {\n        //domain affects size of x axis\n        //this made room for the legend\n        //1 is the far right of the plot, 0 is the far left\n        domain: [0, 1],\n\n        //xaxis doesn't show its lines\n        showline: false,\n        zeroline: false,\n\n        //values of the tick labels show up\n        //show right away if we have any starting streams\n        showticklabels: nshowing > 0,\n\n        //its grid is a little darker than default\n        gridcolor : \"#777777\",\n\n        //hide grid\n        showgrid: false,\n        tickformat: '%Y-%m-%d %H:%MZ'\n    };\n\n    var data = [];\n    var axis_number = 0;\n    var axis_info;\n    var plot_info;\n    var trace_info;\n    var trace_config;\n    var axis_config;\n    var plot_key;\n    var key;\n    var step = 1 / nshowing;\n    var domain;\n    var x_anchor = axis_number;\n    var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y',\n        'contours', 'line', 'colorscale', 'showscale', 'colorbar'];\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        axis_number += 1;\n        x_anchor = axis_number;\n        axis_info = plot_info.yaxis;\n        domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03,\n            1 - plot_idx * step * 1.05];\n\n        // Create the necessary traces (lines)\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            trace_info = plot_info.traces[trace_info_idx];\n            trace_config = {\n                name: trace_info['name'],\n                x: [],\n                y: [],\n                type: trace_info.type ? trace_info.type : 'scatter',\n                xaxis: 'x1',\n                yaxis: 'y' + axis_number,\n                hoverinfo: 'x+text',\n                hovermode: 'closest',\n                // meteorogram custom data flags\n                var_names: trace_info['var_names'],\n                anc_variables: trace_info['anc_variables'],\n                anc_data: [],\n                plot_name: plot_key,\n                trace_index: trace_info_idx,\n            };\n\n            for (var idx=0; idx <  trace_kwargs.length; idx++) {\n                key = trace_kwargs[idx];\n                if (key in trace_info) {\n                    trace_config[key] = trace_info[key];\n                }\n            }\n            if ('colorbar' in trace_config) {\n                trace_config.colorbar.len = domain[1] - domain[0];\n                trace_config.colorbar.y = (domain[1] - domain[0]) / 2 + domain[0];\n                trace_config.z = [[]];\n            }\n            data.push(trace_config);\n        }\n\n        // Create Y-axis configuration object\n        axis_config = {\n            gridcolor: '#777777',\n            titlefont: {'size' : 12},\n            title: axis_info['title'],\n            zeroline: false,\n            // where on the canvas does this axis belong\n            domain: [\n                (plotOrder.length - 1 - plot_idx) * step * 1.03,\n                1 - plot_idx * step * 1.05\n            ],\n        };\n        if ('zeroline' in axis_info) {\n            axis_config['zeroline'] = axis_info.zeroline;\n        }\n\n        if ('range' in axis_info) {\n            axis_config['range'] = axis_info['range'];\n        }\n        if ('autorange' in axis_info) {\n            axis_config['autorange'] = axis_info['autorange'];\n        }\n\n        if ('tickmode' in axis_info) {\n            axis_config['tickmode'] = axis_info['tickmode'];\n        } else {\n            if ('tickvals' in axis_info) {\n                axis_config['tickvals'] = axis_info['tickvals'];\n            } else {\n                axis_config['tickvals'] = ticktext.getTickVals(0, 1, axis_info.step);\n            }\n            if ('ticktext' in axis_info) {\n                axis_config['ticktext'] = axis_info['ticktext'];\n            } else {\n                axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);\n            }\n        }\n        layout['yaxis' + axis_number] = axis_config;\n\n        if ('yaxis2' in plot_info) {\n            axis_number += 1;\n            axis_info = plot_info.yaxis2;\n            axis_config = {\n                gridcolor: '#777777',\n                titlefont: {'size' : 12},\n                title: axis_info['title'],\n                zeroline: false,\n                overlaying: 'y' + (axis_number - 1).toString(),\n                side: 'right',\n                anchor: 'x',\n            };\n\n            if ('range' in layout['yaxis' + (axis_number - 1)]) {\n                axis_config['range'] = layout['yaxis' + (axis_number - 1)]['range'];\n            }\n\n            if ('tickmode' in axis_info) {\n                axis_config['tickmode'] = axis_info['tickmode'];\n            } else {\n                if ('tickvals' in axis_info) {\n                    axis_config['tickvals'] = axis_info['tickvals'];\n                } else {\n                    // use the other axis tick locations\n                    axis_config['tickvals'] = layout['yaxis' + (axis_number - 1)]['tickvals'];\n                }\n                if ('ticktext' in axis_info) {\n                    axis_config['ticktext'] = axis_info['ticktext'];\n                } else {\n                    axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);\n                }\n            }\n\n            layout['yaxis' + axis_number] = axis_config;\n        }\n    }\n    // xaxis only shows on the bottom most plot\n    layout['xaxis']['anchor'] = 'y' + x_anchor;\n    console.log(\"init sets xaxis # as \", layout['xaxis']['anchor']);\n\n    // Toolbar configuration\n    var toolbar = {\n        // Disable link to plotly\n        'showLink': false,\n        // Don't show plotly logo\n        'displaylogo': false,\n        'displayModeBar': true\n    };\n\n    //creates new graph\n    Plotly.newPlot(div_id, data, layout, toolbar);\n    loading.loading();\n}\n\nmodule.exports.initPlot = initPlot;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/init.js","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar loading = require('../ui/loading.js');\nvar updateData = require('./data.js');\n\n/* \n * Build a table in the specified div with a row for each trace in plotsInfo\n * Stores metadata for each trace using $.data, which is retrieved\n * and used by requestTableUpdate\n */\nfunction initTable(div_id, plotOrder, plotsInfo) {\n    var div = $('#'+div_id);\n    var table = $('<table class=\"met_table\"><tbody></tbody></table>');\n    var tbody = table.children('tbody');\n\n    var plot_info;\n    var plot_key;\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        //extract the necessary variables\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            var trace_info = plot_info.traces[trace_info_idx];\n            if(trace_info.type=='contour'){\n                add_contour_rows(tbody,plot_key,trace_info_idx,trace_info,plot_info);\n            }else{\n                var info_td = $('<td>N/A</td>');\n                info_td.addClass('met_data');\n                info_td.data('info', {key:plot_key,idx:trace_info_idx});\n                var row = $('<tr></tr>');\n                var name = trace_info.short_name || trace_info.name;\n                row.append('<td>'+name+'</td>');\n                row.append(info_td);\n                row.append('<td class=\"convert\"></td>');\n                tbody.append(row);\n                //add rows for our ancillary variables that normally only show up in tags\n                if(trace_info.anc_variables)\n                    add_anc_rows(tbody,plot_key,trace_info_idx,trace_info);\n            }\n        };\n    }\n    div.append('<h3>'+plotsInfo.title+'</h3>');\n    div.append(table);\n    div.append('<span id=\"timestamp\"></span>');\n};\n\nfunction add_anc_rows(tbody,plot_key,idx,trace_info){\n    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){\n        var anc_info = trace_info.anc_info[trace_info.anc_variables[anc_info_idx]];\n        var info_td = $('<td>N/A</td>');\n        info_td.addClass('met_data');\n        info_td.data('info', {key:plot_key,idx:idx,anc_idx:anc_info_idx});\n        var row = $('<tr></tr>');\n        var name = anc_info.short_name || anc_info.name;\n        row.append('<td>'+name+'</td>');\n        row.append(info_td);\n        row.append('<td class=\"convert\"></td>');\n        tbody.append(row);\n    }\n\n}\n\nfunction add_contour_rows(tbody,plot_key,idx,trace_info,plot_info){\n    var name = trace_info.short_name||trace_info.name;\n    var title_row=('<tr><td colspan=\"2\">'+name+'</td><td></td>');\n    tbody.append(title_row);\n    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){\n        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];\n        var row = $('<tr></tr>');\n        var name = trace_info.y[hightlight_idx_idx] + plot_info.yaxis.units;\n        row.append('<td class=\"subtitle text-center\">'+name+'</td>');\n        var info_td = $('<td>N/A</td>');\n        info_td.addClass('met_data');\n        info_td.data('info', {key:plot_key,idx:idx,hl_idx:hightlight_idx_idx});\n        row.append(info_td);\n        row.append('<td class=\"convert\"></td>');\n        tbody.append(row);\n    }\n\n}\n\n/* \n * Build a datastream request from the data tags in div_id's existing meteorogram table,\n * then add labels and alternate units based on the axes objects in plotsInfo\n */\nfunction requestTableUpdate(div_id,plotsInfo){\n    var div = $('#'+div_id);\n    var varNames = [];\n    var plotOrder = [];\n    var data_cells = $('#'+div_id+' .met_data');\n    var convert_cells = $('#'+div_id+' .convert');\n    data_cells.each(function(){\n            var key = $(this).data('info').key;\n            var trace_idx = $(this).data('info').idx;\n            var anc_idx = $(this).data('info').anc_idx;\n            var hl_idx = $(this).data('info').hl_idx;\n            var trace = plotsInfo.plots[key].traces[trace_idx];\n            if(plotOrder.indexOf(key)==-1)\n                plotOrder.push(key);\n            if(anc_idx !== undefined)\n                varNames.push(trace.anc_variables[0]);\n            else if(hl_idx !== undefined)\n                varNames.push(trace.var_names[hl_idx]);\n            else\n                varNames.push(trace.var_names[0]);\n    });\n    var stream_string = varNames.join(':'); \n    console.log(stream_string);\n    //Use a set time that has both buoy and tower records for testing\n    const test_time= \"&begin=2017-10-17T00:00:00&end=2017-10-17T00:02:00\";\n    var url = updateData.buildRequestUrl('json', '1m', '', '', 'column', '&begin=-00:02:00', stream_string);\n    $.ajax({\n            type: 'GET',\n            url: url,\n            jsonp: \"callback\",\n            dataType: \"jsonp\",\n            success: function(dataObj){\n                dataObj.div_id = div_id;\n                dataObj.plotOrder = plotOrder;\n                dataObj.data_cells = data_cells;\n                dataObj.convert_cells = convert_cells;\n                updateTable(dataObj,plotsInfo);\n            }\n    });\n\n};\n\nfunction updateTable(dataObj,plotsInfo) {\n    var data = dataObj.results.data;\n    console.log(data);\n    var plot_info;\n    var plot_key;\n    var td_idx = 0;\n    var div_id = dataObj.div_id;\n    var plotOrder = dataObj.plotOrder;\n    var data_cells = dataObj.data_cells;\n    var convert_cells = dataObj.convert_cells;\n    if(dataObj.num_results==0){\n        $('#'+div_id+' #timestamp').html('No recent data');\n        return ;\n    }\n    $('#'+div_id+' #timestamp').html('Last updated: '+ dataObj.results.timestamps[0]);\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        //Fill in a row for each trace in the plot\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            var trace_info = plot_info.traces[trace_info_idx];\n            if(trace_info.type=='contour'){\n                td_idx=update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx);\n            }else{\n                var update_val = data[trace_info['var_names'][0]][0]; \n                if(update_val || update_val==0){\n                    var units = plot_info.yaxis.units;\n                    var convert = '';\n                    var old_precision = plot_info.yaxis.precision;\n                    plot_info.yaxis.precision=Math.min(old_precision,1);\n                    var orig_val = ticktext.getTickText([update_val],plot_info.yaxis);\n                    plot_info.yaxis.precision = old_precision;\n                    if(plot_info.yaxis2 && plot_info.yaxis2.convert_value){\n                        var convert_units = plot_info.yaxis2.units;\n                        var old_precision = plot_info.yaxis2.precision;\n                        plot_info.yaxis2.precision= Math.min(old_precision,1);\n                        var convert_val = ticktext.getTickText([update_val],plot_info.yaxis2);\n                        plot_info.yaxis2.precision = old_precision;\n                        convert = convert_val+convert_units;\n                    }\n                    console.log(update_val);\n                    data_cells[td_idx].innerHTML=orig_val+units;\n                    convert_cells[td_idx].innerHTML=convert;\n                }else{\n                    data_cells[td_idx].innerHTML='N/A';\n                    convert_cells[td_idx].innerHTML='';\n                }\n                td_idx+=1;\n                //Fill in a row for each anc_var in the plot\n                if(trace_info.anc_variables){\n                    td_idx=update_anc_cells(data,data_cells,trace_info,td_idx);\n                }\n            }\n        };\n    }\n}\n\n\nfunction update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx){\n    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){\n        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];\n        console.log(trace_info['var_names'][hightlight_idx_idx]);\n        var update_val = data[trace_info['var_names'][hightlight_idx_idx]][0]; \n        var units = trace_info.zprobe.units;\n        var orig_val = ticktext.getTickText([update_val],trace_info.zprobe);\n        var convert = '';\n        if(trace_info.zprobe2 && trace_info.zprobe2.convert_value){\n            var convert_units = trace_info.zprobe2.units;\n            var convert_val = ticktext.getTickText([update_val],trace_info.zprobe2);\n            convert = convert_val+convert_units;\n        }\n        data_cells[td_idx].innerHTML=orig_val+units;\n        convert_cells[td_idx].innerHTML=convert;\n        td_idx+=1;\n    }\n    return td_idx;\n}\n\nfunction update_anc_cells(data,data_cells,trace_info,td_idx){\n    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){\n        var anc_key = trace_info.anc_variables[anc_info_idx];\n        var anc_info = trace_info.anc_info[anc_key];\n        var update_val = data[anc_key][0];\n        var orig_val = ticktext.getTickText([update_val],anc_info);\n        if(update_val || update_val==0)\n            data_cells[td_idx].innerHTML=orig_val+anc_info.units;\n        else\n            data_cells[td_idx].innerHTML='N/A';\n        td_idx+=1;\n    }\n    return td_idx;\n}\nmodule.exports.initTable = initTable; \nmodule.exports.requestTableUpdate = requestTableUpdate; \n\n\n\n// WEBPACK FOOTER //\n// ./plot/table.js","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar _ = require('underscore');\n\n\nfunction plotsInDiv(graphDiv) {\n    var plotNames = [];\n    _.each(graphDiv.data, function(elem) {\n        // assume the plot's traces are sequential\n        // so only check the last element\n        if (plotNames[plotNames.length - 1] != elem.plot_name) {\n            plotNames.push(elem.plot_name);\n        }\n    });\n    return plotNames;\n}\n\n\nfunction replaceData(graphDiv, plotsInfo, dataObj, update) {\n    var dates = dataObj['dates'];\n    var plotName;\n    var plotInfo;\n    var trace_anc_data;\n    var ancHandled = [];\n    var plotHandled =[];\n    var updateChanges = {\n        x: [],\n        y: [],\n        z: [],\n        text: [],\n    };\n\n    // get full array so we can properly make probe text later\n    var traceIndex = 0;\n    if (update) {\n        for (var i = 0; i < graphDiv.data.length; i++) {\n            plotName = graphDiv.data[i].plot_name;\n            if (plotHandled[plotHandled.length - 1] == plotName) {\n                continue;\n            }\n            plotInfo = plotsInfo.plots[plotName];\n            _.each(plotInfo.traces, function(elem, index) {\n                _.each(elem.var_names, function(var_name) {\n                    _.each(dataObj[var_name], function(data_elem) {\n                        graphDiv.data[traceIndex + index]['y'].shift();\n                        graphDiv.data[traceIndex + index]['y'].push(data_elem);\n                    });\n                    // hold on to the array to create probe text\n                    dataObj[var_name] = graphDiv.data[traceIndex + index]['y'];\n                });\n\n                trace_anc_data = graphDiv.data[traceIndex + index]['anc_data'];\n                _.each(elem.anc_variables, function(anc_name, anc_index) {\n                    if (ancHandled.includes(anc_name)) {\n                        trace_anc_data[anc_index] = dataObj[anc_name];\n                        return;\n                    }\n                    _.each(dataObj[anc_name], function(data_elem) {\n                        trace_anc_data[anc_index].shift();\n                        trace_anc_data[anc_index].push(data_elem);\n                    });\n                    dataObj[anc_name] = graphDiv.data[traceIndex + index]['anc_data'][anc_index];\n                    ancHandled.push(anc_name);\n                });\n            });\n            traceIndex += plotInfo.traces.length;\n            plotHandled.push(plotName);\n        }\n        // the X arrays are shared between all of the plots with how we've done it during init\n        // we only have to update the array once\n        _.each(dates, function(data_elem, data_index) {\n            graphDiv.data[0]['x'].shift();\n            graphDiv.data[0]['x'].push(dates[data_index]);\n        });\n        dates = graphDiv.data[0]['x'];\n\n        // assume extendTraces is faster than replacing the whole thing\n        // Note: we are already rebuilding the arrays above, so don't use extendTraces\n        // Plotly.extendTraces(graphDiv, update);\n    }\n\n\n    traceIndex = 0;\n    plotHandled = [];\n    for (var i = 0; i < graphDiv.data.length; i++) {\n        plotName = graphDiv.data[i].plot_name;\n        // assume all traces are sequential\n        if (plotHandled[plotHandled.length - 1] == plotName) {\n            continue;\n        }\n        plotInfo = plotsInfo.plots[plotName];\n        _.each(plotInfo.traces, function(elem, index, traces) {\n            var probeText;\n            var trace_info = elem;\n            updateChanges.x.push(dates);\n            if (!('anc_variables' in elem)) {\n                graphDiv.data[traceIndex + index]['anc_data'] = undefined;\n            } else {\n                var new_anc_data = [];\n                _.each(elem.anc_variables, function(anc_name, anc_index) {\n                    new_anc_data.push(dataObj[anc_name]);\n                });\n                graphDiv.data[traceIndex + index]['anc_data'] = new_anc_data;\n            }\n\n            if (graphDiv.data[traceIndex + index].type == 'scatter') {\n                _.each(elem.var_names, function(var_name) {\n                    updateChanges.y.push(dataObj[var_name]);\n\n                    // Get probe text shown when hovering over the traces\n                    if ('probe_text' in trace_info && trace_info['probe_text'] === null) {\n                        // we don't want probe text for this trace\n                        probeText = undefined;\n                    } else {\n                        probeText = ticktext.getProbeText(dataObj[var_name], plotInfo, trace_info, dataObj);\n                    }\n                    updateChanges.text.push(probeText);\n                    updateChanges.z.push(undefined);\n                });\n            } else if (graphDiv.data[traceIndex + index].type == 'contour') {\n                var thisData = _.map(elem.var_names, function(var_name) {return dataObj[var_name];});\n                updateChanges.y.push(undefined);\n                updateChanges.text.push(\n                    ticktext.getProbeText(thisData, plotInfo, trace_info, dataObj)\n                );\n                updateChanges.z.push(_.map(elem.var_names, function(var_name) {\n                    return dataObj[var_name];\n                }));\n            } else {\n                updateChanges.y.push(undefined);\n                updateChanges.z.push(undefined);\n                updateChanges.text.push(undefined);\n            }\n        });\n        traceIndex += plotInfo.traces.length;\n        plotHandled.push(plotName);\n    }\n    // Restyle/update all plots\n    Plotly.restyle(graphDiv, updateChanges);\n}\n\n\nfunction updateAxes(graphDiv, plots_info) {\n    var plotNames = plotsInDiv(graphDiv);\n    var plot_info;\n    var traceIdx = 0;\n    var minmax, min, max;\n    var yaxis_number = 0;\n    var yaxis_name, yaxis_name_1;\n    var layout = {};\n    var tickVals;\n    var extra;\n    for (var i=0; i < plotNames.length; i++) {\n        plot_info = plots_info.plots[plotNames[i]];\n        minmax = _.unzip(_.map(plot_info.traces, function(e, i, l) {\n            // return the minimum for this traces data\n            var this_min = _.min(graphDiv.data[traceIdx + i]['y']);\n            var this_max = _.max(graphDiv.data[traceIdx + i]['y']);\n            return [this_min, this_max];\n        }));\n        min = _.min(minmax[0]);\n        max = _.max(minmax[1]);\n\n        traceIdx += plot_info.traces.length;\n\n        // Custom data we added to the trace information\n        var axis_info = plot_info.yaxis;\n        yaxis_number += 1;\n        yaxis_name = yaxis_name_1 = \"yaxis\" + yaxis_number;\n        if (yaxis_number == 1) {\n            yaxis_name = yaxis_name_1 = \"yaxis\";\n        }\n        if ('tickvals' in axis_info && 'ticktext' in axis_info) {\n            // everything specified in config\n            layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];\n            layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];\n            layout[yaxis_name + '.range'] = axis_info['range'];\n        } else {\n            // figure the axis ticks\n            if (min == max) {\n                min -= 0.02;\n                max += 1.02;\n            }\n            layout[yaxis_name + '.tickvals'] = tickVals = ticktext.getTickVals(min, max, axis_info.step);\n            layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);\n            // Add a limit extra space on the top and bottom of each plot for a better look\n            extra = (tickVals[tickVals.length - 1] - tickVals[0]) * 0.05;\n            layout[yaxis_name + '.range'] = [tickVals[0] - extra, tickVals[tickVals.length - 1] + extra];\n        }\n\n\n        if ('yaxis2' in plot_info) {\n            axis_info = plot_info.yaxis2;\n            yaxis_number += 1;\n            yaxis_name = \"yaxis\" + yaxis_number;\n\n            if ('tickvals' in axis_info && 'ticktext' in axis_info) {\n                // everything specified in config\n                layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];\n                layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];\n                layout[yaxis_name + '.range'] = axis_info['range'];\n            } else {\n                // We want to match the 'main' axis ticks\n                layout[yaxis_name + '.tickvals'] = layout[yaxis_name_1 + '.tickvals'];\n                layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);\n                layout[yaxis_name + '.range'] = layout[yaxis_name_1 + '.range'];\n            }\n        }\n    }\n\n    Plotly.relayout(graphDiv, layout);\n}\n\nfunction updatePlot(graphDiv, plotsInfo, dataObj, update) {\n    replaceData(graphDiv, plotsInfo, dataObj, update);\n    updateAxes(graphDiv, plotsInfo);\n}\n\nmodule.exports.updatePlot = updatePlot;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/update.js"],"sourceRoot":""}
\ No newline at end of file
diff --git a/content/js/meteorogram/plot/init.js b/content/js/meteorogram/plot/init.js
index 11cbebc5dbe958f90c869b9c7cd198cba8accb9f..662086c9aa58d73585d605e5989cf1135d971b6e 100644
--- a/content/js/meteorogram/plot/init.js
+++ b/content/js/meteorogram/plot/init.js
@@ -45,12 +45,14 @@ function initPlot(div_id, plotOrder, plotsInfo) {
     var key;
     var step = 1 / nshowing;
     var domain;
+    var x_anchor = axis_number;
     var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y',
         'contours', 'line', 'colorscale', 'showscale', 'colorbar'];
     for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {
         plot_key = plotOrder[plot_idx];
         plot_info = plotsInfo.plots[plot_key];
         axis_number += 1;
+        x_anchor = axis_number;
         axis_info = plot_info.yaxis;
         domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03,
             1 - plot_idx * step * 1.05];
@@ -165,7 +167,8 @@ function initPlot(div_id, plotOrder, plotsInfo) {
         }
     }
     // xaxis only shows on the bottom most plot
-    layout['xaxis']['anchor'] = 'y' + axis_number;
+    layout['xaxis']['anchor'] = 'y' + x_anchor;
+    console.log("init sets xaxis # as ", layout['xaxis']['anchor']);
 
     // Toolbar configuration
     var toolbar = {
diff --git a/content/js/streamdownload.js b/content/js/streamdownload.js
index cb5a359f977d2132af39b94d2d5a0d0608dd9a32..77fff7f098ca1dbc1644891f2b8e7700d587cc27 100644
--- a/content/js/streamdownload.js
+++ b/content/js/streamdownload.js
@@ -4,7 +4,7 @@
 var towerMet;
 var buoyMet;
 var multilevel_streams = new Object();
-var MAX_DATA = 15000;
+var MAX_DATA = 3.6e6;//40 streams * 90,000 records
 
 var show_multistream_panel = function(streams){
     var curr_selected = $('#multi_streams').val();
@@ -183,6 +183,7 @@ var buildRequestUrl = function(format,interval,epoch,sep,order,time,streams){
     request_url+='&symbols='+streams;
     return request_url;
 }
+
 function findFormErrors(checkNPoints){
     $(".err_msg").hide();
     $("select").removeClass("alert-danger");
@@ -214,6 +215,8 @@ function findFormErrors(checkNPoints){
         errors.push(timeRangeInfo.error);
     else if(checkNPoints){
         var span = timeRangeInfo.time_span;
+        //server doesn't currently care about number of requested streams
+        //might be useful later though
         var nStreams = getSelectedStreams().split(':').length;
         var interval = $('#interval').val();
         interval = {'m':60,'h':60*60,'d':60*60*24}[_.last(interval)]*
@@ -239,6 +242,7 @@ function findFormErrors(checkNPoints){
     return errors.length > 0;
 
 }
+
 /*
  * Read the values of the various inputs on the page and formulate an API request
  */
@@ -249,12 +253,25 @@ var submitForm = function(){
         var streams=getSelectedStreams();
         //create a query string and open it in a new window
         var request_url = buildRequestUrl(format,$('#interval').val(),
-                $('#epoch').val(), $('#sep').val(), $('#order').val(),
+                $('#epoch').val(), val_or_place($('#sep')), $('#order').val(),
                 time_query,streams
         );
-        window.open(request_url);
+        //check that the query is good before giving it to the user
+        /*
+        $.ajax({
+            type:"GET",
+            url:request_url,
+            dataType:'json',
+            success:function(data){
+                console.log(data);
+                var win = window.open("data:text/json,"+encodeURIComponent(JSON.stringify(data)),'_blank');
+            }
+        });*/
+        var result = window.open(request_url);
+        console.log(result);
     }
 };
+
 var update_previews = function(){
     if(findFormErrors())return;
     var streams = get_selected_streams();
diff --git a/content/pages/datadownload.html b/content/pages/datadownload.html
index b5e371213cb01e6786fbd49ed9764f3f78ca06e1..4014abeeb2a1cf291824525098c9e7e0465bbf88 100644
--- a/content/pages/datadownload.html
+++ b/content/pages/datadownload.html
@@ -21,16 +21,23 @@
     <div class="row">
     <div class = "col-sm-12">
         <div class="row">
-            <div class="col-xs-6">
+            <div class="col-xs-4">
                 <h4>Timeframe</h4>
             </div>
-            <div id="time_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
+            <div id="time_err" class="col-xs-8 text-right err_msg" style="margin-top:10px;display:none">
                 <span class="alert alert-danger" style="padding: 0 1em">&#9888; Invalid timeframe selected</span>
             </div>
+            <div class="col-xs-8">
+                <div id="interval_err" class="text-right err_msg" style="margin-top:10px;display: none;">
+                    <span class="alert alert-danger" style="padding:0 1em">&#9888; Too many days of data requested. 
+                        (Max:<span id='max_points'></span>, Requested: <span id='too_many_points'></span>)
+                    </span>
+                </div>
+            </div>
         </div>
         <div class="row" style='padding: 0 1em;'>
             <div class="col-xs-12">
-                <div class="form-group">
+                <div class="form-group" id="time_forms">
                   <table>
                     <tr>
                         <td style="padding-right:.5em">
diff --git a/content/pages/streamdownload.html b/content/pages/streamdownload.html
index ff4ff66508bbff460df70cccd2567803e6fea6e1..3e7860b2a9b95b0ad769f83227315aab92a75754 100644
--- a/content/pages/streamdownload.html
+++ b/content/pages/streamdownload.html
@@ -71,8 +71,8 @@
             <div class="col-xs-12">
                 <div class="form-group">
                     <select class="form-control" id="interval">
-                        <option selected value='1m'>1 minute</option>
-                        <option value='5m'> 5 minutes</option>
+                        <option value='1m'>1 minute</option>
+                        <option selected value='5m'> 5 minutes</option>
                         <option value='30m'> 30 minutes</option>
                         <option value='1h'> 1 hour</option>
                         <option value='3h'> 3 hours</option>
diff --git a/htdocs/aoss/cameras/index.html b/htdocs/aoss/cameras/index.html
deleted file mode 100644
index 263faf5428b35e48e0df7577e7f96a4c2b43e861..0000000000000000000000000000000000000000
--- a/htdocs/aoss/cameras/index.html
+++ /dev/null
@@ -1,354 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>AOSS Cameras - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-    <script language="javascript" type="text/javascript">
-
-    var updateFreq = (60*2 + 15) * 1000
-
-    setInterval(function() {
-    
-        var westImageElement = document.getElementById("westImage");
-        westImageElement.src = "http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/west/latest_small.jpg?" + new Date().getTime;
-    
-        var northwestImageElement = document.getElementById("northwestImage");
-        northwestImageElement.src = "http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/northwest/latest_small.jpg?" + new Date().getTime;
-    
-        var northImageElement = document.getElementById("northImage");
-        northImageElement.src = "http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/north/latest_small.jpg?" + new Date().getTime;
-    
-        var eastImageElement = document.getElementById("eastImage");
-        eastImageElement.src = "http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/east/latest_small.jpg?" + new Date().getTime;
-    
-        var southImageElement = document.getElementById("southImage");
-        southImageElement.src = "http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/south/latest_small.jpg?" + new Date().getTime;
-    
-    }, updateFreq);
-
-    </script>
-    
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-<div class="instrument">
-    <div class="container">
-    <div class="row">
-    <div class="col-md-8">
-    <h1>Cameras</h1>
-    The <a href="http://www.ssec.wisc.edu/">Space Science &amp; Engineering Center</a> in collaboration with the <a href="http://www.aos.wisc.edu/">Department of Atmospheric Science</a> maintains several high resolution cameras atop of our building (AO&amp;SS) located on the University of Wisconsin-Madison campus. These cameras take pictures every 10 seconds. The pictures shown below from our rooftop cameras are automatically updated about every two minutes.
-    <br><br>
-    A <a href="https://www.youtube.com/user/AOSSRooftopCameras">gallery / archive of interesting and notable movies</a> captured by the cameras is available.
-    <br><br>
-    If you would like to use any of these movies or images please refer to our <a href="/disclaimer/" style="white-space: nowrap;">Disclaimer / Usage Information</a> page.
-
-      <div id="webcams">
-
-               <h3>Movies</h3>
-               <ul>
-                  <li>Sunrise to Sunset (Quicktime):
-                     <ul>
-                        <li>Latest
-                           <ul>
-                              <li>West: 
-      				<a href="http://metobs.ssec.wisc.edu/pub/cameras/west/latest_sunrise_to_sunset_west_1024x768.mov">Large size (1024 x 768)</a> | <a href="http://metobs.ssec.wisc.edu/pub/cameras/west/latest_sunrise_to_sunset_west_640x480.mov">Medium size (640 x 480)</a> </li>
-                              <li>North: 
-      				<a href="http://metobs.ssec.wisc.edu/pub/cameras/north/latest_sunrise_to_sunset_north_1024x768.mov">Large size (1024 x 768)</a> | <a href="http://metobs.ssec.wisc.edu/pub/cameras/north/latest_sunrise_to_sunset_north_640x480.mov">Medium size (640 x 480)</a> </li>
-                              <li>Northwest: 
-      				<a href="http://metobs.ssec.wisc.edu/pub/cameras/northwest/latest_sunrise_to_sunset_northwest_1024x768.mov">Large size (1024 x 768)</a> | <a href="http://metobs.ssec.wisc.edu/pub/cameras/northwest/latest_sunrise_to_sunset_northwest_640x480.mov">Medium size (640 x 480)</a> </li>
-
-                           </ul>
-                        </li>
-                        <li>Archived
-                           <ul>
-                              <li><a href="http://metobs.ssec.wisc.edu/pub/cameras/west/mov/">West</a></li>
-                              <li><a href="http://metobs.ssec.wisc.edu/pub/cameras/northwest/mov/">Northwest</a></li>
-                              <li><a href="http://metobs.ssec.wisc.edu/pub/cameras/north/mov/">North</a></li>
-                              <li><a href="http://roofvid.ssec.wisc.edu/east">East</a></li>
-                              <li><a href="http://roofvid.ssec.wisc.edu/south">South</a></li>
-                              <li><a href="http://metobs.ssec.wisc.edu/aoss/cameras/hawkcam-archive.html">Hawk's Nest Camera</a>
-                           </ul>
-                        </li>
-                     </ul>
-                  </li>
-                  <li style="margin-top: 1em;">Various <a href="http://www.aos.wisc.edu/weather/wx_obs/WebCam.html">Quicktime
-                     movies</a>, hosted by the Department of Atmospheric Science.</li>
-               </ul>
-               <h3>Smartphone format</h3>
-               <p>You can also view these images via an auto-updating smartphone friendly
-                  format:</p>
-               <ul>
-                  <li><a href="http://metobs.ssec.wisc.edu/aoss/cameras/m-west.html">West</a></li>
-                  <li style="margin-top: 1em;"><a href="http://metobs.ssec.wisc.edu/aoss/cameras/m-northwest.html">Northwest</a></li>
-                  <li style="margin-top: 1em;"><a href="http://metobs.ssec.wisc.edu/aoss/cameras/m-north.html">North</a></li>
-                  <li style="margin-top: 1em;"><a href="http://metobs.ssec.wisc.edu/aoss/cameras/m-east.html">East</a></li>
-               </ul>
-               <h3>Live Video</h3>
-               <p>These streams provide a live video feed from the rooftop cameras and require the free <a href="http://www.videolan.org/vlc/">VLC Player</a> to play.</p>
-                <ul>
-                  <li> <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-north-web.php">North</a>
-                  <li> <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-south-web.php">South</a>
-                  <li> <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-east-web.php">East</a>
-                  <li> <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-west-web.php">West</a>
-                  <li> <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-northwest-web.php">Northwest</a>
-                  <li>Alternate multicast feeds:  <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-north.php">North</a> |  <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-south.php">South</a> |  <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-east.php">East</a> |  <a href="ssec-roof-west.php">West</a> | <a href="http://metobs.ssec.wisc.edu/aoss/cameras/ssec-roof-northwest.php">Northwest</a>
-      <ul>
-      <li>
-      Multicast streams require a wired connection to the campus network to play.
-      </ul>
-      </ul>
-      <p>A rolling 30-day archive of the full 10 frames per second (fps) video from the rooftop cameras is available at <a href="http://roofvid.ssec.wisc.edu">roofvid.ssec.wisc.edu</a>. Other movies available here and through AOS are generally composites of still images snapped every 10 seconds.</p>
-</div>
-</div>
-<div class="col-md-4 text-center" style="border: 1px solid #AAA">
-         <div id="westCamera" class="webcam">
-            <h3>West View</h3>
-            <a href="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/west/latest_orig.jpg"><img src="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/west/latest_small.jpg" alt="West" id="westImage" class="rooftop_image"><br>
-            <span class="caption">Larger size</span></a> </div>
-         <div id="northwestCamera" class="webcam">
-            <h3>Northwest View</h3>
-            <a href="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/northwest/latest_orig.jpg"><img src="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/northwest/latest_small.jpg" alt="Northwest" id="northwestImage" class="rooftop_image"><br>
-            <span class="caption">Larger size</span></a></div>
-         <div id="northCamera" class="webcam">
-            <h3>North View</h3>
-            <a href="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/north/latest_orig.jpg"><img src="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/north/latest_small.jpg" alt="North" id="northImage" class="rooftop_image"><br>
-            <span class="caption">Larger size</span></a></div>
-         <div id="eastCamera" class="webcam">
-            <h3>East View</h3>
-            <a href="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/east/latest_orig.jpg"><img src="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/east/latest_small.jpg" alt="East" id="eastImage" class="rooftop_image"><br>
-            <span class="caption">Larger size</span></a></div>
-         <div id="southCamera" class="webcam">
-            <h3>South View</h3>
-            <a href="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/south/latest_orig.jpg"><img src="http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/south/latest_small.jpg" alt="South" id="southImage" class="rooftop_image"><br>
-            <span class="caption">Larger size</span></a></div>
-      </div>
-  </div>
-  </div>
-</div>
-<script>
-    //sets the camera images to auto-update every 5 minutes by faking a new url
-    $(document).ready(function(){
-        $(".rooftop_image").each(function(){
-            setInterval(()=>{$(this).attr('src',$(this).attr('src').split('?')[0]+'?rand='+Math.random())},5000);
-        });
-    });
-</script>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/ceil/index.html b/htdocs/aoss/ceil/index.html
deleted file mode 100644
index 02fd7b7b040a2112fdd9bcb7d8d8ed58f48831e0..0000000000000000000000000000000000000000
--- a/htdocs/aoss/ceil/index.html
+++ /dev/null
@@ -1,263 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>AOSS Ceilometer - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-
-<div class="container">
-<div class="instrument">
-      <div class="row">
-        <div class="col-sm-8">
-            <h1>Ceilometer</h1>
-            <p>
-                One of the instruments operating on the roof of the AOSS building on the UW-Madison campus is a 
-                <a href="http://en.wikipedia.org/wiki/Ceilometer">ceilometer</a>, which is used to measure the 
-                height of any cloud base directly above the instrument.
-            </p>
-                <h3>View / Download Data</h3>
-                <ul>
-                    <li><a href="http://metobs.ssec.wisc.edu/pub/cache/aoss/ceilo/">Browse raw data in NetCDF and ASCII</a></li>
-                    <li><a href="http://metobs.ssec.wisc.edu/download/index.php?site=rig">Download data form</a></li>
-                    <li><a href="/quicklooks/">Quicklooks</a></li>
-                </ul>
-                <strong>More information:</strong>
-                <strong style="color: #333;">Model / manufacturer:</strong> <a href="http://www.esrl.noaa.gov/psd/psd3/cruises/CT25K.pdf">Vaisala CT25K Ceilometer</a>
-                <strong style="color: #333;">Approximate Location:</strong> the rooftop of the AO&amp;SS building on the UW-Madison campus in Madison, WI (43.071, -89.407), roughly 62m above the surface
-        </div>
-        <div class="col-sm-4 text-center">
-                <a href="/quicklooks">
-                    <img id="quicklooks-link" width="100%">
-                </a>
-                <h3 style="margin-top:10px">Quicklook Browser</h3>
-        </div>
-      </div>
-      <hr>
-    </div>
-</div>
-
-<script src="/js/quicklooks.js"></script>
-<script src="/js/moment.min.js"></script>
-<script>
-    $('#quicklooks-link').attr('src',get_quicklook_url('ceilo','aoss','',moment.utc())[0]);
-</script>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/doppler/index.html b/htdocs/aoss/doppler/index.html
deleted file mode 100644
index 8c1181e649d8a65d1061c190c6d47eb81aeaa229..0000000000000000000000000000000000000000
--- a/htdocs/aoss/doppler/index.html
+++ /dev/null
@@ -1,238 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Doppler LIDAR - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-
-<div class="container">
-    <div class="instrument">
-        <div class="row">
-            <div class="col-sm-8">
-        <h1>Doppler LIDAR</h1>
-        <p>The Doppler Lidar (DL) is an active remote sensing instrument that provides range- and time-resolved measurements of radial velocity and attenuated backscatter. The principle of operation is similar to radar in that pulses of energy are transmitted into the atmosphere; the energy scattered back to the transceiver is collected and measured as a time-resolved signal. From the time delay between each outgoing transmitted pulse and the backscattered signal, the distance to the scatterer is inferred. The radial or line-of-sight velocity of the scatterers is determined from the Doppler frequency shift of the backscattered radiation. The DL uses a heterodyne detection technique in which the return signal is mixed with a reference laser beam (i.e. local ocsillator) of known frequency. An on-board signal processing computer then determines the Doppler frequency shift from the spectra of the heterodyne signal. The energy content of the Doppler spectra can also be used to determine attenuated backscatter.
-        The DL operates in the near-IR (1.5 microns) and is sensitive to backscatter from micron-sized aerosols. Aerosols are ubiquitous in the low troposphere and are ideal tracers of atmospheric winds. Thus, in contrast to radar, the DL is capable of measuring wind velocities under clear-sky conditions with very good precision (typically ~10 cm/sec). The DL also has full upper-hemispheric scanning capability, enabling the three-dimensional mapping of turbulent flows in the atmospheric boundary layer. When the scanner is pointed vertically, the DL provides height- and time-resolved measurements of vertical velocity.</p>
-</div>
-</div>
-</div>
-</div>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/gps/index.html b/htdocs/aoss/gps/index.html
deleted file mode 100644
index 301c673ce9f4f67cd1032c01684245de5a12c169..0000000000000000000000000000000000000000
--- a/htdocs/aoss/gps/index.html
+++ /dev/null
@@ -1,241 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>GPS - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-
-<div class="container">
-    <div class="instrument">
-        <div class="row">
-            <div class="col-sm-8">
-                <h1>GPS</h1>
-            </div>
-            <div class="col-sm-4 text-center">
-                <a href="/quicklooks">
-                    <img src="/images/gpsexample.png" width="480px">
-                </a>
-                <h3 style="margin-top:10px">Quicklook Browser</h3>
-            </div>
-            
-    </div>
-</div>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/index.html b/htdocs/aoss/index.html
deleted file mode 100644
index a2d7f08ffbfa793ba394fda453f05e36fe35a6ef..0000000000000000000000000000000000000000
--- a/htdocs/aoss/index.html
+++ /dev/null
@@ -1,318 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>AOSS - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    <!-- The circle icons use Font Awesome's stacked icon classes. For more information, visit http://fontawesome.io/examples/ -->
-    <section id="instruments" class="services bg-primary" style="padding:5px 0">
-        <div class="container">
-            <div class="row text-center">
-                <div class="col-lg-10 col-lg-offset-1">
-                    <h2>AOSS Rooftop Instruments</h2>
-                    <hr class="small">
-                    <div class="row">
-                        <div class="col-md-2 col-sm-4">
-                            <a href='/aoss/tower' style='color:inherit'>
-                                <div class="service-item">
-                                    <span class="fa-stack fa-4x">
-                                        <i class="fa fa-circle fa-stack-2x"></i>
-                                        <i class="fa fa-sun-o fa-stack-1x text-primary"></i>
-                                    </span>
-                                    <h4>
-                                        <strong>AOSS Tower</strong>
-                                    </h4>
-                                </div>
-                            </a>
-                        </div>
-                        <div class="col-md-2 col-sm-4">
-                            <a href='/aoss/cameras' style='color:inherit'>
-                                <div class="service-item">
-                                    <span class="fa-stack fa-4x">
-                                    <i class="fa fa-circle fa-stack-2x"></i>
-                                    <i class="fa fa-video-camera fa-stack-1x text-primary"></i>
-                                </span>
-                                    <h4>
-                                        <strong>AOSS Cameras</strong>
-                                    </h4>
-                                </div>
-                            </a>
-                        </div>
-                        <div class="col-md-2 col-sm-4">
-                            <a href='/aoss/ceil' style='color:inherit'>
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-cloud fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS Ceilometer</strong>
-                                </h4>
-                            </div>
-                            </a>
-                        </div>
-                        <div class="col-md-2 col-sm-4">
-                            <a href='/aoss/gps' style='color:inherit'>
-                                <div class="service-item">
-                                    <span class="fa-stack fa-4x">
-                                    <i class="fa fa-circle fa-stack-2x"></i>
-                                    <i class="fa fa-globe fa-stack-1x text-primary"></i>
-                                </span>
-                                    <h4>
-                                        <strong>AOSS GPS</strong>
-                                    </h4>
-                                </div>
-                            </a>
-                        </div>
-                        <div class="col-md-2 col-sm-4">
-                            <a href='/aoss/lidar' style='color:inherit'>
-                                <div class="service-item">
-                                    <span class="fa-stack fa-4x">
-                                    <i class="fa fa-circle fa-stack-2x"></i>
-                                    <i class="fa fa-crosshairs fa-stack-1x text-primary"></i>
-                                </span>
-                                    <h4>
-                                        <strong>AOSS LIDAR/HSRL</strong>
-                                    </h4>
-                                </div>
-                            </a>
-                        </div>
-                        <div class="col-md-2 col-sm-4">
-                            <a href='/aoss/doppler' style='color:inherit'>
-                                <div class="service-item">
-                                    <span class="fa-stack fa-4x">
-                                    <i class="fa fa-circle fa-stack-2x"></i>
-                                    <i class="fa fa-rss fa-stack-1x text-primary"></i>
-                                </span>
-                                    <h4>
-                                        <strong>AOSS Doppler LIDAR</strong>
-                                    </h4>
-                                </div>
-                            </a>
-                        </div>
-                    </div>
-                    <!-- /.row (nested) -->
-                </div>
-                <!-- /.col-lg-10 -->
-            </div>
-            <!-- /.row -->
-        </div>
-        <!-- /.container -->
-    </section>    
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/lidar/index.html b/htdocs/aoss/lidar/index.html
deleted file mode 100644
index 02cc545635070d1fca170b18eea28729b5f94ff4..0000000000000000000000000000000000000000
--- a/htdocs/aoss/lidar/index.html
+++ /dev/null
@@ -1,244 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>LIDAR HSRL - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-
-<div class="container">
-    <div class="instrument">
-        <div class="row">
-            <div class="col-sm-8">
-            <h1>LIDAR/HSRL</h1>
-                Small scale atmospheric features that last only half an hour are hard to put into forecast models, but are necessary for model accuracy. At UW-Madison, instruments using LIght Detection And Ranging, or <a href="https://en.wikipedia.org/wiki/Lidar">Lidar</a>, are developed that make highly detailed atmospheric measurements that are used in numerical model development.
-                <br><br>The <a href="http://lidar.ssec.wisc.edu/syst/vil/vil.htm">Volume Imaging Lidar</a> (VIL) utilizes a pulsed laser beam to image the three-dimensional structure of the atmosphere over time. The VIL uses computer-controlled scanning which, with continuous pulses, images a huge volume of sky at one time, allowing averaged wind measurements to be precisely deduced. The <a href="http://lidar.ssec.wisc.edu/syst/hsrl/hsrl.htm">High Spectral Resolution Lidar</a> (HSRL), which makes calibrated measurements of backscatter, can "see" even more, since the beam of light returning to the observer can be split, and backscattering and attenuation components can be compared for an accurate view of individual objects within its view. In addition, the HSRL is being developed for use in the Arctic.
-            </div>
-            <div class="col-sm-4 text-center">
-                <a href="/quicklooks">
-                    <img src="/images/lidarexample.png" width="480px">
-                </a>
-                <h3 style="margin-top:10px">Quicklook Browser</h3>
-            </div>
-        </div>
-    </div>
-    <hr>
-</div>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/tower/index.html b/htdocs/aoss/tower/index.html
deleted file mode 100644
index 4c878ecb06755f16dd727c87953ad8755db8aebe..0000000000000000000000000000000000000000
--- a/htdocs/aoss/tower/index.html
+++ /dev/null
@@ -1,310 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>AOSS Tower - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-
-<div class="instrument">
-    <div class="container">
-        <div class="row">
-            <div class="col-sm-8">
-                <h1>AOSS Tower</h1>
-                <p>This instrument is located at the top of the Atmospheric, 
-                Oceanic and Space Science Building at the corner of Dayton and 
-                Orchard St in the University of Wisconsin - Madison. It measures,
-                <a href="meteorogram">in real-time:</a></p>
-                <ul>
-                    <li>Temperature</li> 
-                    <li>Dew Point Temperature</li> 
-                    <li>Wind Direction and Speed</li> 
-                    <li>Pressure</li>
-                    <li>Precipitation</li>
-                    <li><a href="https://en.wikipedia.org/wiki/Pyranometer">Solar Radiation</a></li>
-                </ul>.
-                <p>This instrument and the online tools for accessing the data were
-                developed by a collaboration of the following people/institutions:</p>
-                <ul>
-                    <li>George Weidner <a href="http://aos.wisc.edu/">Department of Atmospheric and Oceanic Sciences</a> (faculty contact - <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=Petty,%20Grant">Dr. Grant Petty</a>)</li>
-                    <li><a href="http://ssec.wisc.edu/">Space Science and Engineering Center</a></li>
-                    <li><a href="http://www.wisc.edu/">University of Wisconsin - Madison</a></li>
-                </ul>
-                <p>
-                    <a class="btn btn-default btn-lg" href="/datadownload">Order Files &raquo;</a>
-                    <a class="btn btn-default btn-lg" href="/streamdownload">Order Data &raquo;</a>
-                    <a class="btn btn-default btn-lg" href="meteorogram">View Realtime&raquo;</a>
-                </p>
-                <br>
-            </div>
-            <div class="col-sm-4 text-center">
-                <a href="/quicklooks">
-                    <img id="quicklooks-link" width="100%">
-                </a>
-                <h3 style="margin-top:10px">Quicklook Browser</h3>
-            </div>
-        </div>
-        <hr>
-        <div class="row">
-        </div>
-        <div class="row">
-            <div class="col-sm-4">
-                <a class="no-style" href="text_popup/">
-                <div class="text-left" id="graph">
-                </div>
-                </a>
-            </div>
-            <div class="col-sm-4 text-center">
-                <img src="/images/SSEC_from_ERB.png" width="100%">
-                <h3 style="margin-top:10px">Tower Location</h3>
-            </div>
-            <div class="col-sm-4 text-center">
-                <img width="100%" src="/images/Tower_Layout.png" alt="Tower Layout" align="center">
-                <h3 style="margin-top:10px">Tower Layout</h3>
-            </div>
-        </div>
-    </div>
-</div>
-<script src="/js/quicklooks.js"></script>
-<script src="/js/moment.min.js"></script>
-<script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-<script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-<script type="text/javascript">
-    $(document).ready(function(){
-        //initialize the meteorogram table
-        var myConfig = siteConfigs['aoss.tower'];
-        myConfig.title="Current Conditions";
-        myConfig.defaultPlots = ['air_temp', 'pressure', 'wind_speed', 'wind_direction', 'accum_precip', 'solar_flux'];
-        var met = MeteorogramController('graph', 'control-container', myConfig);
-        met.initMeteorogramTable();
-        met.displayRealTime();
-        //initialize the quicklooks link
-        $.ajax({
-            url: METOBS_API_URL + "/api/archive/info",
-            type: "GET"
-        }).then(function(data){
-            //create the form options from the recieved json
-            QuicklooksArchive.setStructure(data);
-            console.log(get_quicklook_url('tower','aoss','met',moment.utc()));
-            $('#quicklooks-link').attr('src',get_quicklook_url('tower','aoss','meteorogram-daily',moment.utc()));
-        });
-    });
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/tower/meteorogram/index.html b/htdocs/aoss/tower/meteorogram/index.html
deleted file mode 100644
index 6eeeb9d85972c544564116f5c8c5ce662b2e6453..0000000000000000000000000000000000000000
--- a/htdocs/aoss/tower/meteorogram/index.html
+++ /dev/null
@@ -1,262 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>AOSS Tower Meteorogram - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-    
-
-    <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">-->
-    <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" type="text/css">
-    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-timepicker/1.8.10/jquery.timepicker.min.css" type="text/css">
-    <link rel="stylesheet" href="/theme/css/meteorogram_style.css">
-    <!--<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>-->
-    <script src="https://cdn.plot.ly/plotly-latest.js"></script>
-    <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
-    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-timepicker-addon/1.6.3/jquery-ui-timepicker-addon.min.js"></script>
-    <!--<script src="https://code.jquery.com/jquery-3.2.0.min.js"></script>-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-<div id="content">
-    <div class="container">
-        <h2 class="row">Meteorogram</h2>
-        <div class="row" style="padding:0 1em">
-            <h4 class="col-sm-12">Timeframe</h4>
-            <div class="col-sm-12">
-                <div class="row" style="padding:0 1em">
-                    <div class="col-sm-12">
-                        <div class="form-group" id="control-container"></div>
-                    </div>
-                </div>
-            </div>
-        </div>
-        <div class="row" id="row2">
-            <div id="graph" style="width: 100%;"></div>
-        </div>
-    </div>
-</div>
-<script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-<script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-<script type="text/javascript">
-    var myConfig = siteConfigs['aoss.tower'];
-    var met = MeteorogramController('graph', 'control-container', siteConfigs['aoss.tower']);
-    met.initMeteorogram();
-    met.initMeteorogramControls();
-    met.displayRealTime();
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/aoss/tower/text_popup/index.html b/htdocs/aoss/tower/text_popup/index.html
deleted file mode 100644
index 8e710ede2ac86e8266d6f7e1e94f36b409a7ba52..0000000000000000000000000000000000000000
--- a/htdocs/aoss/tower/text_popup/index.html
+++ /dev/null
@@ -1,241 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>AOSS Tower - Current Conditions - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-<div class="instrument" style="text-align:center">
-    <div id="graph" style="display:inline-block;text-align:left"></div>
-</div>
-<script src="/js/moment.min.js"></script>
-<script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-<script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-<script type="text/javascript">
-    $(document).ready(function(){
-        //initialize the meteorogram table
-        var myConfig = siteConfigs['aoss.tower'];
-        myConfig.title="Current Conditions";
-        myConfig.defaultPlots = ['air_temp', 'pressure', 'wind_speed', 'wind_direction', 'accum_precip', 'solar_flux'];
-        var met = MeteorogramController('graph', 'control-container', myConfig);
-        met.initMeteorogramTable();
-        met.displayRealTime();
-    });
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/archives.html b/htdocs/archives.html
deleted file mode 100644
index dfd7797812f8c13a5790c18ff8110ea7cdaab313..0000000000000000000000000000000000000000
--- a/htdocs/archives.html
+++ /dev/null
@@ -1,226 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title> - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-<h1>Archives for RAIN | SSEC @ UW-Madison</h1>
-
-<dl>
-</dl>
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/authors.html b/htdocs/authors.html
deleted file mode 100644
index 7a7bb72d7ce7ff7b2b6cdb1de1956b04a10304a6..0000000000000000000000000000000000000000
--- a/htdocs/authors.html
+++ /dev/null
@@ -1,225 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>RAIN | SSEC @ UW-Madison - Authors - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    <h1>Authors on RAIN | SSEC @ UW-Madison</h1>
-
-    <ul>    </ul>
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/categories.html b/htdocs/categories.html
deleted file mode 100644
index b797d3da8344c1fa57927753e9664389b0817430..0000000000000000000000000000000000000000
--- a/htdocs/categories.html
+++ /dev/null
@@ -1,224 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title> - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-<ul>
-</ul>
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/datadownload/index.html b/htdocs/datadownload/index.html
deleted file mode 100644
index e0880369156a680616e92032b3c0bde95011de35..0000000000000000000000000000000000000000
--- a/htdocs/datadownload/index.html
+++ /dev/null
@@ -1,390 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>File Download - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-    <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
-    <!--<script src="https://code.jquery.com/jquery-1.12.4.js"></script>-->
-    <script
-      src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
-      integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
-      crossorigin="anonymous"></script>
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-
-    
-
-<div class="container">
-  <div class="row">
-  <div class="col-sm-1 col-lg-2 "></div>
-  <div class="col-sm-10  col-lg-8">
-    <h2 class="row">Order Files:</h2>
-    <div class="row">
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Timeframe</h4>
-            </div>
-            <div id="time_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
-                <span class="alert alert-danger" style="padding: 0 1em">&#9888; Invalid timeframe selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-            <div class="col-xs-12">
-                <div class="form-group">
-                  <table>
-                    <tr>
-                        <td style="padding-right:.5em">
-                          <div class="radio">
-                            <label><input type="radio" id="last_x_days" name="time_select"> Most Recent Days: </label>
-                          </div>
-                        </td>
-                        <td><input style="width:5em" class="form-control" type="text" style="padding 0.5em 0;" id="x_days" /></td></td>
-                        <td style="padding-left:.5em;padding-right:.5em">
-                          <div class="radio">
-                            <label><input type="radio" id="date_range" name="time_select"> Date Range: </label>
-                          </div>
-                        </td>
-                        <td>
-                            <input class="form-control" style="padding 0.5em 0;" id="Start-date-picker" type="text" placeholder="YYYY-MM-DD" />
-                        </td>
-                        <td> to </td>
-                        <td>
-                            <input class="form-control" style="padding 0.5em 0;" id="End-date-picker" type="text" placeholder="YYYY-MM-DD" />
-                        </td>
-                    </tr>
-                  </table>
-                </div>
-            </div>
-        </div>
-    </div>
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Instruments</h4>
-            </div>
-            <div id="instruments_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No instruments selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 2em;">
-              <p>Shift-click to select a range of values</p>
-                <form id="instruments">
-                </form>
-        </div>
-    </div>
-    </div>
-    <div class="row">
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Levels</h4>
-            </div>
-            <div id="levels_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No levels selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 2em;">
-          <p>Select an instrument to select all of its levels</p>
-          <p>Shift-click to select a range of values</p>
-          <select multiple class="form-control" id="levels" style="height:7em;width:100%">
-              <!--<option>s added by datadownload.js -->     
-          </select>
-        </div>
-    </div>
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Products</h4>
-            </div>
-            <div id="products_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No products selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 2em;">
-          <p>Select an instrument to select all of its products</p>
-          <p>Shift-click to select a range of values</p>
-          <select multiple class="form-control" id="products" style="height:7em;width:100%">
-              <!--<option>s added by datadownload.js -->     
-          </select>
-        </div>
-    </div>
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Submit Order</h4>
-            </div>
-            <div id="submit_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No format selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-            <div class="col-xs-6 col-sm-3 form-group">
-                <label>Format</label>
-                <select class="form-control" id="format">
-                    <option selected> CSV </option>
-                    <option> JSON </option>
-                    <option> SH </option>
-                    <option> BAT </option>
-                </select>
-            </div>
-            <div class="col-xs-6 col-sm-3 form-group">
-                <label>Version</label>
-                <select class="form-control" id="version">
-                    <option selected>Most Recent</option>
-                </select>
-            </div>
-            <div class="col-xs-12 form-group">
-                <button class="btn" id="submit">Submit</button>
-            </div>
-        </div>
-    </div>
-    <div class="col-xs-12">
-        <div class="row" style="padding-left: 1em;"><h4>Preview</h4></div>
-        <div class="row" id="no_preview" style="padding: 0 2em;">
-            <p>Previews are generated for data selections 1 month or less in length.
-            Scroll horizontally to see full preview.</p>
-        </div>
-        <div class="row" id="preview" style="hyphens:manual;padding: 0 1em;display:none">
-            <div id="ql-labels" class="col-xs-2">
-                
-            </div>
-            <div class="col-xs-10" style="overflow-x:scroll;">
-              <table id="qltable" align="center" cellpadding="0" cellspacing="0" class="imageStripsContainer">
-                  <tbody></tbody>
-              </table>
-            </div>
-        </div>
-    </div>
-    </div>
-  </div>
-  </div>
-  <div class="row">
-      <!--Preview table goes here-->
-  </div>
-    <script src="/js/underscore-min.js"></script>
-    <script src="/js/moment.min.js"></script>
-    <script src="/js/quicklooks.js"></script>
-    <script src="/js/quicklooks-util.js"></script>
-    <script src="/js/form_util.js"></script>
-    <script src="/js/datadownload.js"></script>
-  </div>
-</div>
-
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/disclaimer/index.html b/htdocs/disclaimer/index.html
deleted file mode 100644
index c25387f68ab085e48824f365cffbbeccd94e674c..0000000000000000000000000000000000000000
--- a/htdocs/disclaimer/index.html
+++ /dev/null
@@ -1,249 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Disclaimer - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-<p>
-<strong>Acknowledgements and Disclaimer</strong>
-<br><br>
-Images and data on this website are provided courtesy of the <a href="http://www.ssec.wisc.edu/">Space Science and Engineering Center</a> (SSEC) <a href="http://www.wisc.edu/">UW-Madison</a>. The <a href="/aoss/cameras/">AO&amp;SS Rooftop Camera</a> images are a joint project between SSEC and the <a href="http://www.aos.wisc.edu/">Department of Atmospheric and Oceanic Sciences</a> (AOS).
-<br><br>
-<strong>Disclaimer</strong>
-<br><br>
-All content and views on our websites are those of the author(s) of those pages and do not necessarily reflect the views of SSEC, AOS, the University of Wisconsin-Madison or any affiliated organizations, including organizations whose logo we may display.
-<br><br>
-<strong>No Guarantee</strong>
-<br><br>
-The images and data provided on our website are provided as a public service and are not intended for operational or mission critical purposes. Every attempt has been made to provide these products in as near to real time as possible. However, there is no expressed or implied guarantee that the information will be either accurate or timely or fit for any particular purpose.
-<br><br>
-<strong>Usage</strong>
-<br><br>
-These images and data are freely available for noncommercial use - we only ask that proper attribution is given. The following attribution for the AO&amp;SS Rooftop Camera images should be used:
-<br><br>
-<span class="ack">UW-Madison SSEC/AOS</span> ( or <span class="ack">UW-SSEC/AOS</span> if you need a shorter attribution ).
-<br><br>
-For all other data and imagery on this website please acknowledge:
-<br><br>
-<span class="ack">Space Science &amp; Engineering Center UW-Madison</span> ( or <span class="ack">UW-Madison SSEC</span> ).
-</p>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/images/SSEC_from_ERB.png b/htdocs/images/SSEC_from_ERB.png
deleted file mode 100644
index 442638cfa38a9eeea3d93da6bb938b0fee5d990d..0000000000000000000000000000000000000000
Binary files a/htdocs/images/SSEC_from_ERB.png and /dev/null differ
diff --git a/htdocs/images/Tower_Layout.png b/htdocs/images/Tower_Layout.png
deleted file mode 100644
index db824ff6dc902dfa4cfba17a54e5ac34ebf9c400..0000000000000000000000000000000000000000
Binary files a/htdocs/images/Tower_Layout.png and /dev/null differ
diff --git a/htdocs/images/aossinteractive.png b/htdocs/images/aossinteractive.png
deleted file mode 100644
index 620a93ddd21c84ac7fff65414198e50a9e8177da..0000000000000000000000000000000000000000
Binary files a/htdocs/images/aossinteractive.png and /dev/null differ
diff --git a/htdocs/images/bg(original).png b/htdocs/images/bg(original).png
deleted file mode 100644
index 7bf63d2a1818b38d87cd8c83bc401f7e8d61760f..0000000000000000000000000000000000000000
Binary files a/htdocs/images/bg(original).png and /dev/null differ
diff --git a/htdocs/images/bg(rain).png b/htdocs/images/bg(rain).png
deleted file mode 100644
index 2c10d3f2fa2a4c7fc9ee61a16b8fd94c270984aa..0000000000000000000000000000000000000000
Binary files a/htdocs/images/bg(rain).png and /dev/null differ
diff --git a/htdocs/images/bg.png b/htdocs/images/bg.png
deleted file mode 100644
index 3243101e60526772cbcf78273603c24e6b763c6c..0000000000000000000000000000000000000000
Binary files a/htdocs/images/bg.png and /dev/null differ
diff --git a/htdocs/images/buoy.png b/htdocs/images/buoy.png
deleted file mode 100644
index ebbff2518e826ccec619b9baa28b9bc14e91e87e..0000000000000000000000000000000000000000
Binary files a/htdocs/images/buoy.png and /dev/null differ
diff --git a/htdocs/images/buoy_location_line_drawing.png b/htdocs/images/buoy_location_line_drawing.png
deleted file mode 100644
index 6e6fa1de809375571f526ee02145e124c4d95367..0000000000000000000000000000000000000000
Binary files a/htdocs/images/buoy_location_line_drawing.png and /dev/null differ
diff --git a/htdocs/images/buoy_small.png b/htdocs/images/buoy_small.png
deleted file mode 100644
index 95c4b754a394166feaba90376520e71d9edb8a85..0000000000000000000000000000000000000000
Binary files a/htdocs/images/buoy_small.png and /dev/null differ
diff --git a/htdocs/images/buoyexample.png b/htdocs/images/buoyexample.png
deleted file mode 100644
index 0c262ce8279f2f8174f3f32e269e5fc21d756e82..0000000000000000000000000000000000000000
Binary files a/htdocs/images/buoyexample.png and /dev/null differ
diff --git a/htdocs/images/buoyinteractive.png b/htdocs/images/buoyinteractive.png
deleted file mode 100644
index 8050564e6dcd285dc315e7e1f8d60c14bcda8ab4..0000000000000000000000000000000000000000
Binary files a/htdocs/images/buoyinteractive.png and /dev/null differ
diff --git a/htdocs/images/buoywatertempexample.png b/htdocs/images/buoywatertempexample.png
deleted file mode 100644
index bc88b2ecbe5a83963020771d6bf6d30fc1f3ef59..0000000000000000000000000000000000000000
Binary files a/htdocs/images/buoywatertempexample.png and /dev/null differ
diff --git a/htdocs/images/callout.png b/htdocs/images/callout.png
deleted file mode 100644
index 16f274f6df9eb08a605ca57f878655d6a1e6ed14..0000000000000000000000000000000000000000
Binary files a/htdocs/images/callout.png and /dev/null differ
diff --git a/htdocs/images/ceilometer.png b/htdocs/images/ceilometer.png
deleted file mode 100644
index 164b923a080c7c571dc0977cd249d59cc163856b..0000000000000000000000000000000000000000
Binary files a/htdocs/images/ceilometer.png and /dev/null differ
diff --git a/htdocs/images/ceilometerexample.png b/htdocs/images/ceilometerexample.png
deleted file mode 100644
index 4465c468b62c32ecf957690f5aec24e1adc48e52..0000000000000000000000000000000000000000
Binary files a/htdocs/images/ceilometerexample.png and /dev/null differ
diff --git a/htdocs/images/gpsexample.png b/htdocs/images/gpsexample.png
deleted file mode 100644
index 905465aeb551e80746bb87a01602d5c575d7629e..0000000000000000000000000000000000000000
Binary files a/htdocs/images/gpsexample.png and /dev/null differ
diff --git a/htdocs/images/lidarexample.png b/htdocs/images/lidarexample.png
deleted file mode 100644
index 67577a5d39458a01d063b4ba75d04cd72170074d..0000000000000000000000000000000000000000
Binary files a/htdocs/images/lidarexample.png and /dev/null differ
diff --git a/htdocs/images/load.gif b/htdocs/images/load.gif
deleted file mode 100644
index 5b33f7e54f4e55b6b8774d86d96895db9af044b4..0000000000000000000000000000000000000000
Binary files a/htdocs/images/load.gif and /dev/null differ
diff --git a/htdocs/images/logo-ssec.png b/htdocs/images/logo-ssec.png
deleted file mode 100644
index 0167beb725cc6a0184703a1ddea094ed8cb2427b..0000000000000000000000000000000000000000
Binary files a/htdocs/images/logo-ssec.png and /dev/null differ
diff --git a/htdocs/images/logo.png b/htdocs/images/logo.png
deleted file mode 100644
index 15d67df22fca1d05033eaa4965b187ebc766d1da..0000000000000000000000000000000000000000
Binary files a/htdocs/images/logo.png and /dev/null differ
diff --git a/htdocs/images/portfolio-1.png b/htdocs/images/portfolio-1.png
deleted file mode 100644
index b470c638cebb956cb82259552f2777519e2c3f34..0000000000000000000000000000000000000000
Binary files a/htdocs/images/portfolio-1.png and /dev/null differ
diff --git a/htdocs/images/portfolio-2.png b/htdocs/images/portfolio-2.png
deleted file mode 100644
index 68cf782fabe9c4ca4cb1680f7f04cbc2b26202cd..0000000000000000000000000000000000000000
Binary files a/htdocs/images/portfolio-2.png and /dev/null differ
diff --git a/htdocs/images/portfolio-3.png b/htdocs/images/portfolio-3.png
deleted file mode 100644
index 9faf5e0877d448bcfa4bf66cb3d14ca0358d99f9..0000000000000000000000000000000000000000
Binary files a/htdocs/images/portfolio-3.png and /dev/null differ
diff --git a/htdocs/images/portfolio-4.png b/htdocs/images/portfolio-4.png
deleted file mode 100644
index c91f372d5a5f0ea136bd0583a963b17b1ca4bec4..0000000000000000000000000000000000000000
Binary files a/htdocs/images/portfolio-4.png and /dev/null differ
diff --git a/htdocs/images/raintitle.png b/htdocs/images/raintitle.png
deleted file mode 100644
index a15fd166e66966f4c57fe7e1c73ecf4eb2cf7508..0000000000000000000000000000000000000000
Binary files a/htdocs/images/raintitle.png and /dev/null differ
diff --git a/htdocs/images/rigexample.png b/htdocs/images/rigexample.png
deleted file mode 100644
index b787eedaf6926c644a6a055ad3f33775d467bd9b..0000000000000000000000000000000000000000
Binary files a/htdocs/images/rigexample.png and /dev/null differ
diff --git a/htdocs/images/ssec.png b/htdocs/images/ssec.png
deleted file mode 100644
index 5442025002528dacc7a55d05a6efcb01ba9defc3..0000000000000000000000000000000000000000
Binary files a/htdocs/images/ssec.png and /dev/null differ
diff --git a/htdocs/index.html b/htdocs/index.html
deleted file mode 100644
index c059b6750cdf06b952224993021847a7b8557e2c..0000000000000000000000000000000000000000
--- a/htdocs/index.html
+++ /dev/null
@@ -1,498 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>RAIN | SSEC @ UW-Madison - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-    <script language="javascript" type="text/javascript">
-
-    var updateFreq = (60*2 + 15) * 1000
-
-    setInterval(function() {
-    
-        var cameraElement = document.getElementById("cameraImage");
-        cameraElement.src = "http://metobs.ssec.wisc.edu/aoss/cameras/images/west/small/latest.jpg?" + new Date().getTime;
-    
-        var aossMeteorogramElement = document.getElementById("aossMeteorogram");
-        aossMeteorogramElement.src = "http://metobs.ssec.wisc.edu/pub/cache/aoss/tower/latest_quicklook_met.png?" + new Date().getTime;
-    
-        var buoyMeteorogramElement = document.getElementById("buoyMeteorogram");
-        buoyMeteorogramElement.src = "http://metobs.ssec.wisc.edu/pub/cache/mendota/buoy/latest_quicklook_met.png?" + new Date().getTime;
-    
-    }, updateFreq);
-
-    </script>
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-
-    <!-- Header -->
-    <header id="top" class="header">
-        <div class="text-vertical-center">
-            <a href="#about" class="btn btn-dark btn-lg"><h1>RAIN</h1></a>
-            <h3 style="color: #FFFFFF;">Reliable Automated Instrumentation Network</h3>
-        </div>
-    </header>
-
-    <!-- About -->
-    <section id="about" class="about">
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-12 text-center">
-                    <h2>About RAIN</h2>
-                    <p class="lead">The <a href="http://www.ssec.wisc.edu/">Space Science and Engineering Center</a> at the <a href="http://www.wisc.edu">University of Wisconsin-Madison</a>, in collaboration with other departments including <a href="http://www.aos.wisc.edu">Atmospheric and Oceanic Sciences Department</a>, <a href="http://www.limnology.wisc.edu">Department of Limnology</a>, and <a href="https://www.engr.wisc.edu/department/civil-environmental-engineering/">Environmental Engineering</a>, maintain several environmental instruments for research purposes, collectively called "<strong>RAIN</strong>" or "<strong>Reliable Automated Instrumentation Network</strong>." On this website you can find more information about these instruments as well as view and download the data measurements collected by these instruments.</p>
-                </div>
-            </div>
-            <!-- /.row -->
-        </div>
-        <!-- /.container -->
-    </section>
-
-    <!-- Services -->
-    <!-- The circle icons use Font Awesome's stacked icon classes. For more information, visit http://fontawesome.io/examples/ -->
-    <section id="instruments" class="services bg-primary">
-        <div class="container">
-            <div class="row text-center">
-                <div class="col-lg-10 col-lg-offset-1">
-                    <h2>Instruments</h2>
-                    <hr class="small">
-                    <div class="row">
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-sun-o fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS Tower</strong>
-                                </h4>
-                                <p>Rooftop Instrument Group (RIG) Tower Atop the AOSS Building</p>
-                                <a href="/aoss/tower/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-life-ring fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>Lake Mendota Buoy</strong>
-                                </h4>
-                                <p>Located Approximately 1.5 km North East of Picnic Point</p>
-                                <a href="/mendota/buoy/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-video-camera fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS Cameras</strong>
-                                </h4>
-                                <p>5 High-Resolution Cameras Atop the AOSS Building</p>
-                                <a href="/aoss/cameras/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-cloud fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS Ceilometer</strong>
-                                </h4>
-                                <p>Measures the height of any cloud base directly above the instrument</p>
-                                <a href="/aoss/ceil/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-globe fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS GPS</strong>
-                                </h4>
-                                <p>GPS-Based Meteorological System Atop the AOSS Building</p>
-                                <a href="/aoss/gps/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-crosshairs fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS LIDAR/HSRL</strong>
-                                </h4>
-                                <p>High Spectral Resolution Lidar (LIght Detection And Ranging)</p>
-                                <a href="/aoss/lidar/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-rss fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS Doppler LIDAR</strong>
-                                </h4>
-                                <p>An Active Remote Sensing Instrument Atop the AOSS Building</p>
-                                <a href="/aoss/doppler/" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                        <div class="col-md-3 col-sm-6">
-                            <div class="service-item">
-                                <span class="fa-stack fa-4x">
-                                <i class="fa fa-circle fa-stack-2x"></i>
-                                <i class="fa fa-bar-chart fa-stack-1x text-primary"></i>
-                            </span>
-                                <h4>
-                                    <strong>AOSS AERI</strong>
-                                </h4>
-                                <p>Atmospheric Emitted Radiance Interferometer @ AOSS Building</p>
-                                <a href="" class="btn btn-light">Learn More</a>
-                            </div>
-                        </div>
-                    </div>
-                    <!-- /.row (nested) -->
-                </div>
-                <!-- /.col-lg-10 -->
-            </div>
-            <!-- /.row -->
-        </div>
-        <!-- /.container -->
-    </section>
-
-    <!-- Callout -->
-    <!--<aside class="callout">
-        <div class="text-vertical-center">
-            <h1>Vertically Centered Text</h1>
-        </div>
-    </aside>-->
-
-    <!-- Portfolio -->
-    <section id="resources" class="portfolio">
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h2>Resources</h2>
-                    <hr class="small">
-                    <div class="row">
-                        <div class="col-md-6">
-                            <div class="portfolio-item">
-                                <a href="/aoss/tower/meteorogram">
-                                    <img class="img-portfolio img-responsive" src="/images/aossinteractive.png">
-                                    Realtime Tower Data
-                                </a>
-                            </div>
-                        </div>
-                        <div class="col-md-6">
-                            <div class="portfolio-item">
-                                <a href="/mendota/buoy/meteorogram">
-                                    <img class="img-portfolio img-responsive" src="/images/buoyinteractive.png">
-                                    Realtime Buoy Data
-                                </a>
-                            </div>
-                        </div>
-                        <div class="col-md-6">
-                            <div class="portfolio-item">
-                                <a href="./quicklooks/">
-                                    <img class="img-portfolio img-responsive" src="/images/rigexample.png">
-                                    Quicklook Browser
-                                </a>
-                            </div>
-                        </div>
-                        <div class="col-md-6">
-                            <div class="portfolio-item">
-                                <a href="./datadownload/">
-                                    <img class="img-portfolio img-responsive" src="/images/portfolio-4.png">
-                                    Data Download Form
-                                </a>
-                            </div>
-                        </div>
-                    </div>
-                    <!-- /.row (nested) -->
-                    <!-- <a href="#" class="btn btn-dark">View More Items</a> -->
-                </div>
-                <!-- /.col-lg-10 -->
-            </div>
-            <!-- /.row -->
-        </div>
-        <!-- /.container -->
-    </section>
-
-    <!-- Call to Action -->
-    <section id="disclaimer">
-    <aside class="call-to-action bg-primary">
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-12 text-center">
-                    <h3>Disclaimer</h3>
-                    All content and views on our websites are those of the author(s) of those pages and do not necessarily reflect the views of SSEC, AOS, the University of Wisconsin-Madison or any affiliated organizations, including organizations whose logo we may display.
-                    <br><br>
-                    <strong>No Guarantee</strong>
-                    <br><br>
-                    The images and data provided on our website are provided as a public service and are not intended for operational or mission critical purposes. Every attempt has been made to provide these products in as near to real time as possible. However, there is no expressed or implied guarantee that the information will be either accurate or timely or fit for any particular purpose.
-                </div>
-            </div>
-        </div>
-    </aside>
-    </section>
-    
-    <section id="attribution">
-    <aside class="call-to-action bg-light">
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-12 text-center">
-                    <h3>Attribution</h3>
-                    Images and data on this website are provided courtesy of the <a href="http://www.ssec.wisc.edu/">Space Science and Engineering Center</a> (SSEC) <a href="http://www.wisc.edu/">UW-Madison</a>. The <a href="/aoss/cameras/">AO&amp;SS Rooftop Camera</a> images are a joint project between SSEC and the <a href="http://www.aos.wisc.edu/">Department of Atmospheric and Oceanic Sciences</a> (AOS).
-                    <br><br>
-                    These images and data are freely available for noncommercial use - we only ask that proper attribution is given. The following attribution for the AO&amp;SS Rooftop Camera images should be used:
-                    <br><br>
-                    <strong>UW-Madison SSEC/AOS</strong> ( or <strong>UW-SSEC/AOS</strong> if you need a shorter attribution ).
-                    <br><br>
-                    For all other data and imagery on this website please acknowledge:
-                    <br><br>
-                    <strong>Space Science &amp; Engineering Center UW-Madison</strong> ( or <strong>UW-Madison SSEC</strong> ).
-                </div>
-            </div>
-        </div>
-    </aside>
-    </section>
-
-    <!-- Map -->
-    <section id="map" class="map">
-        <iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Atmospheric,+Oceanic+and+Space+Sciences+Building,+1225+W+Dayton+St,+Madison,+WI+53706&amp;aq=0&amp;oq=twitter&amp;sll=43.0707346,-89.4090895&amp;sspn=0.128789,0.264187&amp;ie=UTF8&amp;hq=Atmospheric,+Oceanic+and+Space+Sciences+Building,+1225+W+Dayton+St,+Madison,+WI+53706&amp;t=m&amp;z=15&amp;iwloc=A&amp;output=embed"></iframe>
-        <br />
-        <small>
-            <a href="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Atmospheric,+Oceanic+and+Space+Sciences+Building,+1225+W+Dayton+St,+Madison,+WI+53706&amp;aq=0&amp;oq=twitter&amp;sll=43.0707346,-89.4090895&amp;sspn=0.128789,0.264187&amp;ie=UTF8&amp;hq=Atmospheric,+Oceanic+and+Space+Sciences+Building,+1225+W+Dayton+St,+Madison,+WI+53706&amp;t=m&amp;z=15&amp;iwloc=A"></a>
-        </small>
-        </iframe>
-    </section>
-
-
-
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/instruments/index.html b/htdocs/instruments/index.html
deleted file mode 100644
index 86b5aae43f8b554131eae42344c06f6c90ed8dec..0000000000000000000000000000000000000000
--- a/htdocs/instruments/index.html
+++ /dev/null
@@ -1,241 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Instruments - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    
-<div>
-    <center>
-        <h1>Instrument Sites</h1>
-    <table>
-        <tr>
-            <td class="instruments">
-                <a href="/aoss/"><img src="/images/SSEC_from_ERB.png" alt="AOSS Bldg" height="224px"><br>Atmospheric, Oceanic, and Space Sciences Building (AOSS)</a><br>UW-Madison: RIG Tower, HSRL, Ceilometer, GPS
-            </td>
-            <td class="instruments">
-                <a href="/mendota/"><img src="/images/buoy_small.png" alt="Buoy"><br>Lake Mendota</a><br>Madison, WI
-            </td>
-        </tr>
-    </table>
-    </center>
-</div>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/js/camera-update.js b/htdocs/js/camera-update.js
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/htdocs/js/data_api_info.js b/htdocs/js/data_api_info.js
deleted file mode 100644
index 2555f49f3b6f624a374ef93b3df1b808d808c358..0000000000000000000000000000000000000000
--- a/htdocs/js/data_api_info.js
+++ /dev/null
@@ -1,49 +0,0 @@
-var DATA_API_INFO= {
-    "code":200,
-    "sites":{
-        "aoss":{
-            "display_name":"AOSS",
-            "instruments":{
-                "tower":{
-                    "display_name":"Tower",
-                    "streams":{
-                        "air_temp":{"display_name":"Air Temperature"},
-                        "rel_hum":{"display_name":"Relative Humidity"},
-                        "dewpoint":{"display_name":"Dewpoint"},
-                        "wind_speed":{"display_name":"Wind Speed"},
-                        "wind_direction":{"display_name":"Wind Direction"},
-                        "accum_precip":{"display_name":"Accumulated Precipitation"},
-                        "pressure":{"display_name":"Pressure"},
-                        "altimeter":{"display_name":"Altimeter"},
-                        "solar_flux":{"display_name":"Solar Flux"},
-                    }
-                }
-            }
-        },
-        "mendota":{
-            "display_name":"Mendota",
-            "instruments":{
-                "buoy":{
-                    "display_name":"Buoy",
-                    "streams":{
-                        "air_temp":{"display_name":"Air Temperature"},
-                        "rel_hum":{"display_name":"Relative Humidity"},
-                        "dewpoint":{"display_name":"Dewpoint"},
-                        "wind_speed":{"display_name":"Wind Speed"},
-                        "wind_direction":{"display_name":"Wind Direction"},
-                        "water_temp":{
-                            "display_name":"Water Temperature",
-                            "levels":['0.5m','1.0m','1.5m','2.0m','3.0m','4.0m','5.0m','6.0m','7.0m',
-                                      '8.0m','9.0m','10.0m','11.0m','12.0m','13.0m','14.0m','15.0m',
-                                      '16.0m','17.0m','18.0m','19.0m','20.0m']
-                        },
-                        "doptoppm":{"display_name":"Dissolved Oxygen Concentration"},
-                        "doptosat":{"display_name":"Dissolved Oxygen Saturation"},
-                        "chlorophyll":{"display_name":"Chlorophyll"},
-                        "phycocyanin":{"display_name":"Phycocyanin"}
-                    }
-                }
-            }
-        }
-    }
-}
diff --git a/htdocs/js/datadownload.js b/htdocs/js/datadownload.js
deleted file mode 100644
index 2ce2ee766520e77b573afa8c84171e745e033ac9..0000000000000000000000000000000000000000
--- a/htdocs/js/datadownload.js
+++ /dev/null
@@ -1,241 +0,0 @@
-/* add a list of product objects to the #producs select
- * and tie the level they come from to their value
- */
-var addProducts = function(products,prefix,opt_name){
-    _.each(products,function(product,name){
-        var product_val = prefix.replace('product',name);
-        $('#products').append(makeOption(product_val+' '+opt_name,head_string + (product.display_name || name),opt_name));
-    });
-    //(re)bind #products's change event to adding all headers
-
-    $('#products').change(function(){
-        select_options_by_header('#products',ql_update_func);
-    });
-
-    //rebind the onClick for all options to deselect its header
-    $('#products>option').click(option_toggle_header_on_click);
-    bind_deselect_options_by_header('#products');
-};
-/* add a list of level objects to the #levels select
- * and bind clicking them to updating the #products select 
- */
-
-var product_dict = new Object();
-var addLevels = function(levels,header,prefix){
-    //keep track of all the products associated with a level's name
-    //keep track of all the versions available to the levels
-    var versions = new Set(); 
-    var head_option = $(makeOption(header+ ' header',header,'header'));
-    $('#levels').append(head_option);
-
-    _.each(levels, function(level,name){
-        var level_num = name.split('_')[1];
-        var level_key = prefix + '.product.l' + level_num;
-        var level_name = level.display_name;
-        if(level.display_name == undefined)
-            level_name = name.replace('l','L').replace('_',' ');
-        
-        $('#levels').append(makeOption(level_key+' '+header,head_string+level_name,header));
-        _.each(level.versions,function(version){versions.add(version);});
-        product_dict[level_key] = level.products;
-    });
-    //update the list of availble versions
-    $('#version').empty(); 
-    $('#version').append(MOST_RECENT_VERSION);
-
-    _.each(Array.from(versions),function(version){
-        $('#version').append(makeOption(version,version));
-    });
-    //(re)bind #levels's change event to toggling displayed products
-    //$('#levels').unbind('change');
-    
-    $('#levels').change(function(){
-        $('#products').empty();
-        //now add all selected options to products
-        select_options_by_header('#levels');
-        var product_headers = new Set();
-        _.each($(this).val(),function(level){
-            var header_string = level.split(' ')[1];
-            var level_string = level.split(' ')[0];
-            if(header_string !="header" && !product_headers.has(header_string)){
-                product_headers.add(header_string);
-                $('#products').append(makeOption(header_string+' header',header_string,'header'));
-            }
-            if(header_string !="header"){
-                addProducts(product_dict[level_string],level_string,header_string);
-            }
-        });
-    });
-    $('#levels>option').click(option_toggle_header_on_click);
-    bind_deselect_options_by_header('#levels');
-};
-
-function createForm(data) {
-    if(data.code != 200)return;
-    var sites = data.sites;
-    _.each(sites, function(site,name){
-        var site_form = $('#instruments').append(site_template.replace('{site}',site.display_name || name));
-        if(Object.keys(site.instruments).length > 0){
-            //create a select element
-            var site_select = site_form.children('div').last().append(inst_select_template.replace('{site}',name));
-            var level_dict = new Object();
-            var site_name = name;
-            //add each instrument to the select
-            _.each(site.instruments,function(inst,name){
-                //eg "aoss.aeri", used in final api request
-                var inst_key = site_name + '.' + name;
-                site_select.children('select').append(makeOption(inst_key,inst.display_name || name));
-                level_dict[inst_key] = {levels: inst.levels, name: inst.display_name || name};
-            });
-            //bind the selection event to clearing out the next two forms and repopulating them
-            site_select.children('select').change(function(){
-                //remove the results of any previous selections
-                $('#levels').empty();
-                $('#products').empty();
-                site_select.children('select').each(function(){$(this).removeClass('alert-danger')});
-                $('#instruments_err').hide();
-                //set the current site to the site that the selected instrument belongs to,
-                //then populate the #levels select with its levels
-                SITE = name;
-                _.each($(this).val(),function(val){
-                    addLevels(level_dict[val].levels,level_dict[val].name,val);
-                });
-            });
-            
-        }else{
-            site_form.children('div').last().append('<div>No instruments currently available for this site</div>');
-        }
-        
-    });
-    $('select').change(function(){
-        $(this).removeClass('alert-danger');
-        $('#'+$(this).attr('id')+'_err').hide();
-    });
-};
-
-/*
- * Read the values of the various inputs on the page and formulate an API request
- */
-var submitForm=function(){
-    $(".err_msg").hide();
-    $("select").removeClass("alert-danger");
-    var errors = [];
-    var highlights = [];
-    var format = $('#format').val().toLowerCase();
-    var version = ($('#version').val()=='*')?'*':'v'+$('#version').val().split('_')[1];
-    
-
-    //check that each form has a valid value
-    if($('#levels').val().length === 0){ 
-        errors.push('#levels_err');
-        highlights.push('#levels');
-    }
-    if($('#products').val().length === 0){
-        errors.push('#products_err');
-        highlights.push('#products');
-    }
-    if($('#format').val() == '--') errors.push('#submit_err');
-    console.log($('#levels').val(),$('#products').val(),$('#format').val());
-
-    
-    //Check across multiple forms for a selected instrument 
-    var is_valid_inst = false;
-    $('#instruments').children('div').children('select').each(function(){
-        is_valid_inst |= ($(this).val().length !== 0);
-    });
-    if(!is_valid_inst){
-        errors.push("#instruments_err");
-        highlights.push("#instruments select");
-    }
-    //Check that both a time is selected and that it matches a valid date
-    var time_query = false;
-    if($("#last_x_days").is(":checked")){
-        if(/^[0-9]+$/.test(val_or_place('#x_days')));
-            time_query = '&begin=-'+val_or_place('#x_days');
-    }else if ($("#date_range").is(":checked")){
-        if(date_re.test(val_or_place('#Start-date-picker')) && 
-           date_re.test(val_or_place('#End-date-picker')))
-            time_query = '&begin='+val_or_place('#Start-date-picker')+
-                         '&end='+val_or_place('#End-date-picker'); 
-        
-    } 
-    if(!time_query)
-        errors.push("#time_err");
-
-    if(errors.length == 0){
-        //make a list of streams from the vals of all selected products
-        var streams = _.map(_.reject($('#products').val(),function(val){
-            return val.indexOf('header') != -1;
-        }),function(val){
-            return val.split(' ')[0]+'.'+version;
-        }).join(':');
-        
-        //create a query string and open it in a new window
-        request_url = METOBS_API_URL+'/api/files.'+format+'?streams='+streams+time_query;
-        window.open(request_url);
-    } else {
-        _.each(errors,function(error){
-            $(error).show();
-        });
-        _.each(highlights,function(elem){
-            $(elem).addClass("alert-danger");
-        });
-    }
-};
-
-$(document).ready(function(){
-    //Hide all form errors initially
-    $('.err_msg').hide();
-    //Set up the date range inputs as datepicker objects
-    $('#Start-date-picker').datepicker({
-        changeMonth: true, 
-        changeYear: true,
-    });
-
-    $('#Start-date-picker').datepicker('option','dateFormat','yy-mm-dd');
-    $('#End-date-picker').datepicker({
-        changeMonth: true, 
-        changeYear: true,
-    });
-
-    $('#End-date-picker').datepicker('option','dateFormat','yy-mm-dd');
-
-    //bind the enabling/disabling of forms to radio buttons
-    $('[type=text]').prop("disabled",true);
-    $("#last_x_days").click(function(){
-        $("#x_days").prop("disabled",false);
-        $("#Start-date-picker").prop("disabled",true);
-        $("#Start-date-picker").val("");
-        $("#End-date-picker").prop("disabled",true);
-        $("#End-date-picker").val("");
-    });
-    $("#date_range").click(function(){
-        $("#x_days").prop("disabled",true);
-        $("#x_days").val("");
-        $("#Start-date-picker").prop("disabled",false);
-        $("#End-date-picker").prop("disabled",false);
-    });
-    //add placeholder values for the order forms    
-    $('#x_days').attr('placeholder','5');
-    $('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));
-    $('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));
-    
-    
-    //get the configuration json from the metobs api, then build the form off of that
-    $.ajax({
-        url: METOBS_API_URL + "/api/archive/info",
-        type: "GET"
-    }).then(function(data){
-        //create the form options from the recieved json
-        QuicklooksArchive.setStructure(data);
-        createForm(data);
-        bindQuicklookUpdatesToForms();
-        //bind form submission to #submit
-        $("#submit").click(function(){submitForm();});
-        
-        //Firefox (+others maybe) keep buttons selected on page reload
-        //enable the currrently selected one's field
-        if($("#date_range").is(":checked")) $("#date_range").trigger('click');
-        else if($("#last_x_days").is(":checked")) $("#last_x_days").trigger('click');
-    });
-});
diff --git a/htdocs/js/form_util.js b/htdocs/js/form_util.js
deleted file mode 100644
index 7f1f69cacf09038294a47023475d99e12baf6406..0000000000000000000000000000000000000000
--- a/htdocs/js/form_util.js
+++ /dev/null
@@ -1,232 +0,0 @@
-const site_template = '<div class="form-group"><label>{site}</label></div>'
-const inst_select_template = '<select multiple id="{site}_select" style="height:4em;" class="inst_select form-control"></select>'
-const MOST_RECENT_VERSION = '<option value="*" selected>Most Recent</option>';
-const head_string = '&nbsp;&nbsp;&nbsp;&nbsp;';
-const date_re = /^(19[7-9][0-9]|2[0-9]{3})-(0[0-9]|1[0-2])-([012][0-9]|3[01])$/;
-const time_re = /^([01][0-9]|2[0-3])(:[0-5][0-9]){0,2}$/;
-//site is determined by clicking an instrument, keep track of it
-var SITE;
-
-
-/* Creates a string for an option html element with value key and innerHTML object.display_name
- * if level is specified, append level to the value string
- */
-var makeOption = function(value,innerHTML,name){
-    return '<option value="'+value+'" name="'+name+'">'+innerHTML+'</option>';
-}
-
-/* Function to be bound to <options> so that 
- * clicking or ctrl-cliking on it will deselect its "parent" option
- * eg:
- * * AERI               AERI
- *   *level_00   ctrl   *level_00
- *   *level_01   --->    level_01
- *   *level_02          *level_02
- */
-var option_toggle_header_on_click = function(){
-    var level = $(this).val();
-    var header_string = level.split(' ')[1];
-    var level_string = level.split(' ')[0];
-    if(header_string !='header'){
-        var parent_form = $(this).closest('select');
-        var curr_options = new Set(parent_form.val());
-        if(curr_options.has(header_string + ' header')){
-            curr_options.delete(header_string + ' header');
-            curr_options.delete(level);
-        }
-        parent_form.val(Array.from(curr_options));
-    }
-
-};
-
-/* Function to be bound to a form so that
- * clicking on a header will select all its sub-options
- * eg:
- * AERI        --->  *AERI
- *  level_00          *level_00
- *  leve1_01          *level_01 
- *  level_02          *level_02
- */
-var select_options_by_header = function(form,then_do){
-        var curr_options = new Set();
-        _.each($(form).val(),function(level){
-            var header_string = level.split(' ')[1];
-            var level_string = level.split(' ')[0];
-            if(header_string == 'header'){
-                //if a header is clicked, add it and all its children to the list
-                curr_options.add(level);
-                $(form).children('[name='+level_string+']').each(function(){
-                    curr_options.add($(this).val());
-                });
-            }else{
-                //otherwise, add just the selected option
-                curr_options.add(level);
-            }
-        });
-        $(form).val(Array.from(curr_options));
-        if(then_do) then_do();
-        return $(form).val();
-};
-/* Function to be bound to a form so that
- * de-clicking on a header will deselect all its sub-options
- * eg:
- *  *AERI        --->  AERI
- *   *level_00          level_00
- *   *leve1_01          level_01 
- *   *level_02          level_02
- */
-var bind_deselect_options_by_header = function(form){
-    $(form+'>[name=header]').click(function(){
-        var header = $(this);
-        if($(form).val() == undefined) return;
-        if($(form).val().indexOf(header.val()) == -1){
-            var curr_options = $(form).val();
-            curr_options = _.reject(curr_options,function(option){
-                return option.indexOf(header.val().split(' ')[0]) != -1;
-            });
-            console.log(curr_options);
-            $(form).val(curr_options);
-            $(form).trigger('change');
-        }
-    });
-};
-/*
- * Returns the value of a jquery object if it has one, or its placeholder if it doesn't
- */
-var val_or_place = function(jquery_str){
-    return ($(jquery_str).val() != '')? $(jquery_str).val() : $(jquery_str).attr('placeholder');
-};
-
-/*
- * Returns a string in the form &begin=YYYY-MM-DDTHH:MM:SS&end=YYYY-MM-DDTHH:MM:SS
- * based on the values in the date range form if possible, otherwise returns false
- */
-var make_date_range_query= function(){
-    //append zeros to the end of partial time strings
-    //eg '23' -> 23:00:00
-    var add_zeros = function(time_str){
-        while(time_str.length < 8) time_str += ':00'; 
-        return time_str
-    };
-    if(('#Start-date-picker').val() && ('#End-date-picker').val()){
-        var start = $('#Start-date-picker').val().split(' ').join('T')+':00';
-        var end = $('#End-date-picker').val().split(' ').join('T')+':00';
-      
-        var query_str = '&begin='+start + '&end='+end;
-        return query_str;
-    } else {
-        return false;
-    }
-};
-
-function get_selected_streams() {
-    //parse the requested instruments and datastreams from subsequent forms
-    //check if a streams select exists and has values
-    var selected_streams = $('#streams,#products').val()
-    if(selected_streams && selected_streams.length){
-        selected_streams = $('#streams,#products').val();
-        //only show meteorograms for selected headers
-        selected_streams = _.reject(selected_streams,function(stream){
-            return stream.indexOf('header') != -1;
-        });
-        //air temp and dewpoint map to the same thing, we only need one of them
-        var air_temps = _.filter(selected_streams,function(stream){
-            return stream.indexOf('air_temp') != -1;
-        });
-        /*
-        _.each(air_temps,function(t_stream){
-            selected_streams = _.reject(selected_streams,function(stream){
-                return stream == t_stream.replace('air_temp','dewpoint');
-            });
-        });
-        */
-    } else {
-        selected_streams = [];
-        $('#instruments select').each(function(){
-            selected_streams = selected_streams.concat($(this).val());
-        });
-    }
-
-    return selected_streams;
-}
-
-function ql_update_func() {
-    console.log("ql_update_func called");
-    //TODO: Split this function up
-    var start_date;
-    var end_date;
-    var ndays;
-    if(!$('#last_x_days, #date_range').is(':checked')){
-        $('#preview').hide();
-        return;
-    }
-    //parse the requested date range from the Timeframe form
-    if($("#last_x_days").is(":checked")){
-        ndays = Number(val_or_place('#x_days'));
-        if((ndays < 32) && (ndays > 0)){
-            start_date= moment.utc();
-            end_date = ndays;
-        }else{
-            $('#preview').hide();
-            return;//return if too many days are being requested
-        }
-    }else if($("#date_range").is(":checked")){
-        var date1 = moment.utc(val_or_place('#Start-date-picker'));
-        var date2 = moment.utc(val_or_place('#End-date-picker'));
-        ndays = dayRange(date1,date2).length;
-        if((ndays < 32) && (ndays > 0)){
-            start_date = date1;
-            end_date = date2;
-        }else{
-            $('#preview').hide();
-            return;//return if too many days are being requested
-        }
-
-    }
-
-    var selected_streams = get_selected_streams();
-    console.log(selected_streams);
-    if (_.some(selected_streams)) {
-        $('#qltable>tbody').empty();
-        $('#qltable').append('<tr class="ql_date_row" inst="tower" site="aoss"></tr>');
-        $('#ql-labels').empty();
-        $('#ql-labels').append('<b>Date</b>');
-        var used_products = [];
-
-        _.each(selected_streams,function(instr){
-            if(!instr) return;
-            console.log(instr);
-            instr = instr.split(' ')[0];
-            var site = instr.split('.')[0];
-            var inst = instr.split('.')[1];
-            if(!inst) return;
-            var product = instr.split('.')[2] || 'meteorogram-daily';
-            if(!product || used_products.indexOf(product) != -1) return;
-            used_products.push(product);
-            //some parameters don't have an associated thumbnail, ignore them
-            var image_fmt = QuicklooksArchive.getProductUrlsAtLevel(site,inst,'level_b1',product);
-            console.log(image_fmt);
-            if(!image_fmt.path) return;
-            var label = QuicklooksArchive.getFancyProductName(site,inst,'level_b1',product);
-            $('#qltable').append( 
-                '<tr class="ql_row" inst="'+inst+'" site="'+site+ '" product="'+product+'"></tr>'
-            );
-            $('#ql-labels').append(
-                '<div class="ql-label"><b>'+label+'</b></div>'
-            );
-        });
-        $('#preview').show();
-        $('#qltable').css('width', 120 * ndays);
-        updateQuickLooks(start_date, end_date);
-    }
-}
-
-var bindQuicklookUpdatesToForms = function(){
-    $('#instruments select').change(ql_update_func);
-    $('#x_days').change(ql_update_func);
-    $('#last_x_days').click(ql_update_func);
-};
-
-$(document).ready(function(){
-//    $('#preview').resizable();
-});
diff --git a/htdocs/js/meteorogram/README b/htdocs/js/meteorogram/README
deleted file mode 100644
index c0f549388f3966f18b25e500bc3ebb2521050015..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/README
+++ /dev/null
@@ -1,15 +0,0 @@
-The following instructions describe how to build the 'main.js' used by the
-tower and buoy meteorogram web applications.
-
-1. Install NPM and Node.js to be able to download/install dependencies
-2. Change to the same directory as this README file.
-3. Run `npm install`
-5. Run webpack to combine all javascript files in one file (for development):
-
-    npm run weback
-
-For production (final) version:
-
-    NODE_ENV=production npm run webpack
-
-Which will minify the final javascript file.
diff --git a/htdocs/js/meteorogram/controller.js b/htdocs/js/meteorogram/controller.js
deleted file mode 100644
index aa5813665f3f7406a406a3b1f5ac65ebc31dd7ca..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/controller.js
+++ /dev/null
@@ -1,90 +0,0 @@
-var buildFormInDiv = require('./ui/buttons.js');
-var Dispatcher = require('./dispatcher.js');
-var _ = require('underscore');
-
-function API(div, controlDiv, plotsInfo) {
-    var myDispatcher = Dispatcher.getDispatcher();
-    return {
-        plotDiv: div,
-        controlDiv: controlDiv,
-
-        initMeteorogram: function(plot_div,plotOrder) {
-            this.hasGraph = true;
-            this.plotDiv = plot_div || this.plotDiv;
-            //start with only the selected plots showing, reveal others only if their data is requested
-            myDispatcher.dispatch({
-                'status': 'initPlot',
-                'emit': 'plotEmitter',
-                'location': this.plotDiv,
-                'plotsInfo': plotsInfo,
-                'plotOrder': plotOrder
-            });
-        },
-        initMeteorogramTable: function(table_div,plotOrder) {
-            this.hasTable = true;
-            this.tableDiv = table_div || this.plotDiv;
-            //start with only the selected plots showing, reveal others only if their data is requested
-            myDispatcher.dispatch({
-                'status': 'initTable',
-                'emit': 'plotEmitter',
-                'location': this.tableDiv,
-                'plotsInfo': plotsInfo,
-                'plotOrder': plotOrder,
-            });
-        },
-
-        initMeteorogramControls:function(plotOrder){
-            buildFormInDiv(this.controlDiv, this.plotDiv,myDispatcher);
-        },
-
-        displayRealTime:function(){
-            if(this.hasTable){
-                myDispatcher.dispatch({
-                    'status':'update_table',
-                    'emit':'plotEmitter',
-                    'time':'-3:00:00',
-                    'location':this.tableDiv
-                });
-            }
-            if(this.hasGraph){
-                myDispatcher.dispatch({
-                    'status':'get_since_now',
-                    'emit':'plotEmitter',
-                    'time':'-3:00:00',
-                    'location':this.plotDiv
-                });
-
-            }
-        },
-
-        showPlot:function(varName){
-            myDispatcher.dispatch({status: ('show' + varName), 'emit': 'checkboxEmitter','location':this.div});
-        },
-
-        hidePlot:function(varName){
-            myDispatcher.dispatch({status: ('hide' + varName), 'emit': 'checkboxEmitter','location':this.div});
-        },
-
-        displayRecent:function(start_time){
-            myDispatcher.dispatch({
-                'status':'get_since_now',
-                'emit':'plotEmitter',
-                'time':start_time,
-            });
-        },
-
-        displayTimeRange:function(start_time,stop_time,interval){
-            myDispatcher.dispatch({
-                'status':'get_between_dates',
-                'emit':'plotEmitter',
-                'start':start_time,
-                'end':stop_time,
-                'interval':interval||'auto',
-            });
-
-        },
-    }
-}
-
-//expose the API to other scripts
-window.MeteorogramController = API;
diff --git a/htdocs/js/meteorogram/dispatcher.js b/htdocs/js/meteorogram/dispatcher.js
deleted file mode 100644
index 65dabd65f12cca885122a769e3762f1b2a9748ac..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/dispatcher.js
+++ /dev/null
@@ -1,217 +0,0 @@
-"use strict";
-
-//var $ = require('jquery');
-var ee = require('event-emitter');
-var Flux = require('flux');
-var Plot = require('./plot/init.js');
-var Table = require('./plot/table.js');
-var dataAccess = require('./plot/data.js');
-var loading = require('./ui/loading.js');
-var getDispatcher = function(){
-    var myDispatcher = new Flux.Dispatcher();
-    //not sure where else to stick globals
-    myDispatcher.GRAPH_HEIGHT = 170;
-    /**
-    * The purpose of this method is to dispatch an update message to plotStore
-    *
-    * no parameters
-    * no returns
-    */
-
-    function dispatchUpdate(startTime) {
-        return function() {
-            //dispatch update message to plotStore
-            myDispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter', 'startTime': startTime});
-        }
-    }
-
-    //creates checkbox store
-    var checkboxEmitter = ee({
-        visible: {},
-        setPlots: function (plotsInfo) {
-            for (var plot_key in plotsInfo) {
-                this.visible[plot_key] = true;
-            }
-        },
-        setShowing: function(plotName, visible) {
-            if (visible === undefined) {
-                this.showing[plotName] = !this.showing[plotName];
-            } else {
-                this.showing[plotName] = visible;
-            }
-        },
-        getShowing: function(plotName) {
-            return this.showing[plotName];
-        },
-        handleActions: function(action) {
-            //only handels if action is for checkbox emitter
-            if(action.emit == 'checkboxEmitter')
-            {
-                this.emit(action.status, action.location);
-            }    
-        }
-    });
-
-    //register store with dispatcher
-    checkboxEmitter.dispatchToken = myDispatcher.register(checkboxEmitter.handleActions.bind(checkboxEmitter));
-
-    //create plotStore
-    // FIXME: Event emitter should be added to a class prototype, not the other way around
-    // See https://github.com/medikoo/event-emitter#usage
-    // The below works...but only because event-emitter allows it. Should probably stick with advertised features
-    var plotEmitter = ee({
-        handleActions: function(action) {
-            if (action.emit == 'plotEmitter') {
-                myDispatcher.waitFor([checkboxEmitter.dispatchToken]);
-
-                if (action.location !== undefined) {
-                    this.div = action.location;
-                }
-
-                if (action.plotsInfo !== undefined) {
-                    this.plotsInfo = action.plotsInfo;
-                    this.plotOrder = this.plotsInfo.defaultPlots;
-                }
-                if (action.plotOrder !== undefined) {
-                    this.plotOrder = action.plotOrder;
-                }
-
-                if (action.status == 'get_since_now') {
-                    this.emit(
-                        action.status,
-                        action.time,
-                        this.plotsInfo,
-                        this.div);
-                }else if (action.status == 'update_table') {
-                    this.emit(
-                        action.status,
-                        action.time,
-                        this.plotsInfo,
-                        this.div);
-                } else if (action.status == 'get_between_dates') {
-                    this.emit(
-                        action.status,
-                        action.start,
-                        action.end,
-                        action.interval,
-                        this.plotsInfo,
-                        this.div);
-                } else if (action.status == 'initPlot') {
-                    this.emit(
-                        action.status,
-                        action.location,
-                        action.plotOrder ? action.plotOrder : this.plotOrder,
-                        this.plotsInfo);
-                } else if (action.status == 'initTable') {
-                    this.emit(
-                        action.status,
-                        action.location,
-                        action.plotOrder ? action.plotOrder : this.plotOrder,
-                        this.plotsInfo);
-                } else if (action.status == 'update') {
-                    this.emit(action.status, this.div, this.plotsInfo, action.startTime);
-                } else {
-                    //adds parameter for user information in custom plot
-                    console.debug("Emitting user information message: {action.status} : {action.userInfo}");
-                    this.emit(action.status, action.userInfo);
-                }
-            }    
-        }
-    });
-
-
-    function stopUpdate(plotsInfo) {
-        if(!plotsInfo.progress)
-            plotsInfo.progress = new Object();
-        if(plotsInfo.progress.validID){
-            var id = plotsInfo.progress.id[0];
-            clearInterval(id);
-            plotsInfo.progress.validID = false;
-
-        }
-    }
-
-    // update every N/2 milliseconds
-    const updateInterval = {
-        '1m': 30 * 1000,
-        '5m': 2.5 * 60 * 1000,
-        '30m': 15 * 60 * 1000,
-        '1h': 30 * 60 * 1000,
-        '3h': 1.5 * 60 * 60 * 1000,
-        '6h': 3 * 60 * 60 * 1000,
-        '12h': 6 * 60 * 60 * 1000,
-    };
-
-
-    function startUpdate(startTime, interval,plotsInfo) {
-        // stop any previous updates
-        if(!plotsInfo.progress)
-            plotsInfo.progress = new Object();
-        stopUpdate(plotsInfo);
-
-        // resume update operations
-        if (startTime === undefined) {
-            startTime = plotsInfo.progress.id[1];
-        }
-        if (interval === undefined) {
-            interval = plotsInfo.progress.id[2];
-        }
-
-        // every 30 seconds, rings update alarm
-        var intervalID = setInterval(dispatchUpdate(startTime), updateInterval[interval]);
-        // save alarm id
-        plotsInfo.progress.id = [intervalID, startTime, interval];
-        plotsInfo.progress.validID = true;
-    }
-
-    plotEmitter.on('initTable', function(div, plotOrder, plotsInfo) {
-        //initialize checkbox store
-        checkboxEmitter.setPlots(plotsInfo);
-        Table.initTable(div, plotOrder, plotsInfo);
-    });
-
-    plotEmitter.on('update_table',function(time, plotsInfo, div){
-        Table.requestTableUpdate(div,plotsInfo);
-        setInterval(function(){Table.requestTableUpdate(div,plotsInfo)},updateInterval['1m']);
-    });
-
-    plotEmitter.on('initPlot', function(div, plotOrder, plotsInfo) {
-        //initialize checkbox store
-        checkboxEmitter.setPlots(plotsInfo);
-        Plot.initPlot(div, plotOrder, plotsInfo);
-    });
-
-    plotEmitter.on("get_since_now",function(time, plotsInfo, div){
-        var interval = dataAccess.requestPlotUpdate(div, plotsInfo, time, undefined, undefined);
-        startUpdate(time, interval,plotsInfo);
-    });
-
-    plotEmitter.on("get_between_dates",function(start,end,interval, plotsInfo, div){
-        stopUpdate(plotsInfo);
-        dataAccess.requestPlotUpdate(div, plotsInfo, start, end, interval);
-    });
-
-    //when store recieves signal, update component
-    plotEmitter.on('update', function(div, plotsInfo, startTime) {
-        dataAccess.requestPlotUpdate(div, plotsInfo, startTime, undefined, undefined, true);
-    });
-
-    // plotEmitter.on("plot_custom", function(userInfo)
-    // {
-    //      staticPlots.customPlot(userInfo,['air_temp','dewpoint','rel_hum','pressure',
-    //         'wind_speed','wind_direction','accum_precip','solar_flux']);
-    // });
-
-    plotEmitter.on("checking_custom", function()
-    {
-        //before components were plots. Here, it's the user prompt paragraph
-        loading.checkInterval();
-    });
-
-    //register plotStore with dispatcher
-    plotEmitter.dispatchToken = myDispatcher.register(plotEmitter.handleActions.bind(plotEmitter));
-
-    return myDispatcher;
-}
-//exports dispatchers and stores
-module.exports.getDispatcher = getDispatcher;
diff --git a/htdocs/js/meteorogram/meteorogram.js b/htdocs/js/meteorogram/meteorogram.js
deleted file mode 100644
index e3f011746a75069af5ab78403d88bac8042f471f..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/meteorogram.js
+++ /dev/null
@@ -1,4253 +0,0 @@
-/******/ (function(modules) { // webpackBootstrap
-/******/ 	// The module cache
-/******/ 	var installedModules = {};
-/******/
-/******/ 	// The require function
-/******/ 	function __webpack_require__(moduleId) {
-/******/
-/******/ 		// Check if module is in cache
-/******/ 		if(installedModules[moduleId]) {
-/******/ 			return installedModules[moduleId].exports;
-/******/ 		}
-/******/ 		// Create a new module (and put it into the cache)
-/******/ 		var module = installedModules[moduleId] = {
-/******/ 			i: moduleId,
-/******/ 			l: false,
-/******/ 			exports: {}
-/******/ 		};
-/******/
-/******/ 		// Execute the module function
-/******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
-/******/
-/******/ 		// Flag the module as loaded
-/******/ 		module.l = true;
-/******/
-/******/ 		// Return the exports of the module
-/******/ 		return module.exports;
-/******/ 	}
-/******/
-/******/
-/******/ 	// expose the modules object (__webpack_modules__)
-/******/ 	__webpack_require__.m = modules;
-/******/
-/******/ 	// expose the module cache
-/******/ 	__webpack_require__.c = installedModules;
-/******/
-/******/ 	// define getter function for harmony exports
-/******/ 	__webpack_require__.d = function(exports, name, getter) {
-/******/ 		if(!__webpack_require__.o(exports, name)) {
-/******/ 			Object.defineProperty(exports, name, {
-/******/ 				configurable: false,
-/******/ 				enumerable: true,
-/******/ 				get: getter
-/******/ 			});
-/******/ 		}
-/******/ 	};
-/******/
-/******/ 	// getDefaultExport function for compatibility with non-harmony modules
-/******/ 	__webpack_require__.n = function(module) {
-/******/ 		var getter = module && module.__esModule ?
-/******/ 			function getDefault() { return module['default']; } :
-/******/ 			function getModuleExports() { return module; };
-/******/ 		__webpack_require__.d(getter, 'a', getter);
-/******/ 		return getter;
-/******/ 	};
-/******/
-/******/ 	// Object.prototype.hasOwnProperty.call
-/******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
-/******/
-/******/ 	// __webpack_public_path__
-/******/ 	__webpack_require__.p = "";
-/******/
-/******/ 	// Load entry module and return exports
-/******/ 	return __webpack_require__(__webpack_require__.s = 6);
-/******/ })
-/************************************************************************/
-/******/ ([
-/* 0 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-//var $ = require('jquery');
-
-/**
-* The purpose of this function is to either hide the graph and show the loading
-* spinner or to hide the loading spinner and show the graph
-* no parameters or returns
-*/
-
-function loading() {
-	return;
-	//$("#progress").toggle();
-	//$("#graph").toggle();
-}
-
-/**
-* The point of this method is to disable the custom area of the meteorogram
-* header
-*
-* no params
-* no returns
-*/
-
-function disable() {
-	//disable custom rows
-	$('#Start-date-picker').prop("disabled", true);
-	$('#Start-time-picker').prop("disabled", true);
-	$('#End-date-picker').prop("disabled", true);
-	$('#End-time-picker').prop("disabled", true);
-	$('#interval').prop("disabled", true);
-	$('#Plot').prop("disabled", true);
-}
-
-/**
-* The purpose of this method is to enable the custom area of the meteorogram
-* header
-*
-* no params
-* no returns
-*/
-
-function enable() {
-	//enable custom rows
-	$('#Start-date-picker').prop("disabled", false);
-	$('#Start-time-picker').prop("disabled", false);
-	$('#End-date-picker').prop("disabled", false);
-	$('#End-time-picker').prop("disabled", false);
-	$('#interval').prop("disabled", false);
-}
-
-/**
-* The purpose of this function is to take a date string and a time string and turn that
-* into a date JS object
-*
-* @param dateString - "MM/DD/YYYY"
-* @param timeString - "HH-MM-SS"
-* @return date object
-*/
-
-function getDate(dateString, timeString) {
-	//get date string
-	var year = parseInt(dateString.substring(6, 10));
-	var month = parseInt(dateString.substring(0, 3));
-	var day = parseInt(dateString.substring(3, 5));
-	var hour = parseInt(timeString.substring(0, 2));
-	var minute = parseInt(timeString.substring(3, 5));
-	var seconds = parseInt(timeString.substring(6, 8));
-
-	//return date variable
-	var date = new Date(year, month, day, hour, minute, seconds);
-
-	return date;
-}
-
-/**
-* The purpose of this method is to make sure each field is valid and does
-* not result in too much or too less data points being plotted
-* @param start date - the date the user wants to start at
-* @param time user wants to start at
-* @param end Date - the date user wants to stop at
-* @param end Time - the time the user wants to stop at
-* @param interval - how many seconds averaged does the user want
-* no returns
-*/
-
-/**
-* The purpsoe of this method is to enable the plot button
-*
-* no params
-* no returns
-*/
-
-function enablePlot() {
-	//enable plot button
-	$('#Plot').prop("disabled", false);
-}
-
-/**
-* The purpose of this method is to disable the plot button
-*
-* no params
-* no returns
-*/
-
-function disablePlot() {
-	//disable plot button
-	$('#Plot').prop("disabled", true);
-}
-
-function checkFields(startDate, endDate, startTime, endTime, interval) {
-	//get user information from selected drop down
-	var selected = $('#interval option:selected');
-
-	//give user time to fill out other fields
-	if (selected.text() == '--') ;else {
-		//get information to create a message to the user saying approx how many pts
-		//they are plotting
-		var start = getDate(startDate, startTime);
-		var end = getDate(endDate, endTime);
-		var selected = $('#interval option:selected');
-		var diff = (end - start) / 1000;
-		var intervalVal = selected.data("seconds");
-		diff = Math.floor(diff / intervalVal);
-		var points = diff / interval;
-
-		//if too few points, tell user
-		if (diff >= 0 && diff < 60) {
-			$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() + ' data points; that\'s too few - please try again');
-			$('#default').attr('selected', 'selected');
-			disablePlot();
-		}
-
-		//if the user accidentally mixed up start and end dates, politely tell them
-		else if (diff < 0) {
-				$('#prompt_user').html('The end date is before the start date. Please choose a later end date.');
-				$('#default').attr('selected', 'selected');
-			}
-
-			//if too many points, tell user
-			else if (diff > 1000) {
-					$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() + ' data points; that\'s too many - please try again');
-					$('#default').attr('selected', 'selected');
-					disablePlot();
-				}
-
-				//else we enable the plot button and tell user how many points they're plotting
-				else {
-						$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() + ' data points.');
-
-						enablePlot();
-					}
-	}
-}
-
-/**
-* The purpose of this method is to make sure all the fields and intervals selected are valid
-*
-* No parameters
-* No returns
-*/
-
-function checkInterval() {
-	var startDate = $('#Start-date-picker').val();
-	var endDate = $('#End-date-picker').val();
-	var startTime = $('#Start-time-picker').val();
-	var endTime = $('#End-time-picker').val();
-	var interval = $('#interval');
-
-	//get user information from selected drop down
-	var selected = $('#interval option:selected');
-
-	//check if any fields are not filled out
-	if ((!startDate || !endDate || !startTime || !endTime) && selected.text() != '--') {
-		$('#prompt_user').html('Please fill out all other fields before filling out the interval field');
-		$('#default').attr('selected', 'selected');
-	}
-
-	//check to see if fields are ok
-	checkFields(startDate, endDate, startTime, endTime, interval);
-}
-
-module.exports.loading = loading;
-module.exports.disable = disable;
-module.exports.enable = enable;
-module.exports.checkInterval = checkInterval;
-
-/***/ }),
-/* 1 */
-/***/ (function(module, exports, __webpack_require__) {
-
-var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;//     Underscore.js 1.8.3
-//     http://underscorejs.org
-//     (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
-//     Underscore may be freely distributed under the MIT license.
-
-(function() {
-
-  // Baseline setup
-  // --------------
-
-  // Establish the root object, `window` in the browser, or `exports` on the server.
-  var root = this;
-
-  // Save the previous value of the `_` variable.
-  var previousUnderscore = root._;
-
-  // Save bytes in the minified (but not gzipped) version:
-  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
-
-  // Create quick reference variables for speed access to core prototypes.
-  var
-    push             = ArrayProto.push,
-    slice            = ArrayProto.slice,
-    toString         = ObjProto.toString,
-    hasOwnProperty   = ObjProto.hasOwnProperty;
-
-  // All **ECMAScript 5** native function implementations that we hope to use
-  // are declared here.
-  var
-    nativeIsArray      = Array.isArray,
-    nativeKeys         = Object.keys,
-    nativeBind         = FuncProto.bind,
-    nativeCreate       = Object.create;
-
-  // Naked function reference for surrogate-prototype-swapping.
-  var Ctor = function(){};
-
-  // Create a safe reference to the Underscore object for use below.
-  var _ = function(obj) {
-    if (obj instanceof _) return obj;
-    if (!(this instanceof _)) return new _(obj);
-    this._wrapped = obj;
-  };
-
-  // Export the Underscore object for **Node.js**, with
-  // backwards-compatibility for the old `require()` API. If we're in
-  // the browser, add `_` as a global object.
-  if (true) {
-    if (typeof module !== 'undefined' && module.exports) {
-      exports = module.exports = _;
-    }
-    exports._ = _;
-  } else {
-    root._ = _;
-  }
-
-  // Current version.
-  _.VERSION = '1.8.3';
-
-  // Internal function that returns an efficient (for current engines) version
-  // of the passed-in callback, to be repeatedly applied in other Underscore
-  // functions.
-  var optimizeCb = function(func, context, argCount) {
-    if (context === void 0) return func;
-    switch (argCount == null ? 3 : argCount) {
-      case 1: return function(value) {
-        return func.call(context, value);
-      };
-      case 2: return function(value, other) {
-        return func.call(context, value, other);
-      };
-      case 3: return function(value, index, collection) {
-        return func.call(context, value, index, collection);
-      };
-      case 4: return function(accumulator, value, index, collection) {
-        return func.call(context, accumulator, value, index, collection);
-      };
-    }
-    return function() {
-      return func.apply(context, arguments);
-    };
-  };
-
-  // A mostly-internal function to generate callbacks that can be applied
-  // to each element in a collection, returning the desired result — either
-  // identity, an arbitrary callback, a property matcher, or a property accessor.
-  var cb = function(value, context, argCount) {
-    if (value == null) return _.identity;
-    if (_.isFunction(value)) return optimizeCb(value, context, argCount);
-    if (_.isObject(value)) return _.matcher(value);
-    return _.property(value);
-  };
-  _.iteratee = function(value, context) {
-    return cb(value, context, Infinity);
-  };
-
-  // An internal function for creating assigner functions.
-  var createAssigner = function(keysFunc, undefinedOnly) {
-    return function(obj) {
-      var length = arguments.length;
-      if (length < 2 || obj == null) return obj;
-      for (var index = 1; index < length; index++) {
-        var source = arguments[index],
-            keys = keysFunc(source),
-            l = keys.length;
-        for (var i = 0; i < l; i++) {
-          var key = keys[i];
-          if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key];
-        }
-      }
-      return obj;
-    };
-  };
-
-  // An internal function for creating a new object that inherits from another.
-  var baseCreate = function(prototype) {
-    if (!_.isObject(prototype)) return {};
-    if (nativeCreate) return nativeCreate(prototype);
-    Ctor.prototype = prototype;
-    var result = new Ctor;
-    Ctor.prototype = null;
-    return result;
-  };
-
-  var property = function(key) {
-    return function(obj) {
-      return obj == null ? void 0 : obj[key];
-    };
-  };
-
-  // Helper for collection methods to determine whether a collection
-  // should be iterated as an array or as an object
-  // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength
-  // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094
-  var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
-  var getLength = property('length');
-  var isArrayLike = function(collection) {
-    var length = getLength(collection);
-    return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;
-  };
-
-  // Collection Functions
-  // --------------------
-
-  // The cornerstone, an `each` implementation, aka `forEach`.
-  // Handles raw objects in addition to array-likes. Treats all
-  // sparse array-likes as if they were dense.
-  _.each = _.forEach = function(obj, iteratee, context) {
-    iteratee = optimizeCb(iteratee, context);
-    var i, length;
-    if (isArrayLike(obj)) {
-      for (i = 0, length = obj.length; i < length; i++) {
-        iteratee(obj[i], i, obj);
-      }
-    } else {
-      var keys = _.keys(obj);
-      for (i = 0, length = keys.length; i < length; i++) {
-        iteratee(obj[keys[i]], keys[i], obj);
-      }
-    }
-    return obj;
-  };
-
-  // Return the results of applying the iteratee to each element.
-  _.map = _.collect = function(obj, iteratee, context) {
-    iteratee = cb(iteratee, context);
-    var keys = !isArrayLike(obj) && _.keys(obj),
-        length = (keys || obj).length,
-        results = Array(length);
-    for (var index = 0; index < length; index++) {
-      var currentKey = keys ? keys[index] : index;
-      results[index] = iteratee(obj[currentKey], currentKey, obj);
-    }
-    return results;
-  };
-
-  // Create a reducing function iterating left or right.
-  function createReduce(dir) {
-    // Optimized iterator function as using arguments.length
-    // in the main function will deoptimize the, see #1991.
-    function iterator(obj, iteratee, memo, keys, index, length) {
-      for (; index >= 0 && index < length; index += dir) {
-        var currentKey = keys ? keys[index] : index;
-        memo = iteratee(memo, obj[currentKey], currentKey, obj);
-      }
-      return memo;
-    }
-
-    return function(obj, iteratee, memo, context) {
-      iteratee = optimizeCb(iteratee, context, 4);
-      var keys = !isArrayLike(obj) && _.keys(obj),
-          length = (keys || obj).length,
-          index = dir > 0 ? 0 : length - 1;
-      // Determine the initial value if none is provided.
-      if (arguments.length < 3) {
-        memo = obj[keys ? keys[index] : index];
-        index += dir;
-      }
-      return iterator(obj, iteratee, memo, keys, index, length);
-    };
-  }
-
-  // **Reduce** builds up a single result from a list of values, aka `inject`,
-  // or `foldl`.
-  _.reduce = _.foldl = _.inject = createReduce(1);
-
-  // The right-associative version of reduce, also known as `foldr`.
-  _.reduceRight = _.foldr = createReduce(-1);
-
-  // Return the first value which passes a truth test. Aliased as `detect`.
-  _.find = _.detect = function(obj, predicate, context) {
-    var key;
-    if (isArrayLike(obj)) {
-      key = _.findIndex(obj, predicate, context);
-    } else {
-      key = _.findKey(obj, predicate, context);
-    }
-    if (key !== void 0 && key !== -1) return obj[key];
-  };
-
-  // Return all the elements that pass a truth test.
-  // Aliased as `select`.
-  _.filter = _.select = function(obj, predicate, context) {
-    var results = [];
-    predicate = cb(predicate, context);
-    _.each(obj, function(value, index, list) {
-      if (predicate(value, index, list)) results.push(value);
-    });
-    return results;
-  };
-
-  // Return all the elements for which a truth test fails.
-  _.reject = function(obj, predicate, context) {
-    return _.filter(obj, _.negate(cb(predicate)), context);
-  };
-
-  // Determine whether all of the elements match a truth test.
-  // Aliased as `all`.
-  _.every = _.all = function(obj, predicate, context) {
-    predicate = cb(predicate, context);
-    var keys = !isArrayLike(obj) && _.keys(obj),
-        length = (keys || obj).length;
-    for (var index = 0; index < length; index++) {
-      var currentKey = keys ? keys[index] : index;
-      if (!predicate(obj[currentKey], currentKey, obj)) return false;
-    }
-    return true;
-  };
-
-  // Determine if at least one element in the object matches a truth test.
-  // Aliased as `any`.
-  _.some = _.any = function(obj, predicate, context) {
-    predicate = cb(predicate, context);
-    var keys = !isArrayLike(obj) && _.keys(obj),
-        length = (keys || obj).length;
-    for (var index = 0; index < length; index++) {
-      var currentKey = keys ? keys[index] : index;
-      if (predicate(obj[currentKey], currentKey, obj)) return true;
-    }
-    return false;
-  };
-
-  // Determine if the array or object contains a given item (using `===`).
-  // Aliased as `includes` and `include`.
-  _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) {
-    if (!isArrayLike(obj)) obj = _.values(obj);
-    if (typeof fromIndex != 'number' || guard) fromIndex = 0;
-    return _.indexOf(obj, item, fromIndex) >= 0;
-  };
-
-  // Invoke a method (with arguments) on every item in a collection.
-  _.invoke = function(obj, method) {
-    var args = slice.call(arguments, 2);
-    var isFunc = _.isFunction(method);
-    return _.map(obj, function(value) {
-      var func = isFunc ? method : value[method];
-      return func == null ? func : func.apply(value, args);
-    });
-  };
-
-  // Convenience version of a common use case of `map`: fetching a property.
-  _.pluck = function(obj, key) {
-    return _.map(obj, _.property(key));
-  };
-
-  // Convenience version of a common use case of `filter`: selecting only objects
-  // containing specific `key:value` pairs.
-  _.where = function(obj, attrs) {
-    return _.filter(obj, _.matcher(attrs));
-  };
-
-  // Convenience version of a common use case of `find`: getting the first object
-  // containing specific `key:value` pairs.
-  _.findWhere = function(obj, attrs) {
-    return _.find(obj, _.matcher(attrs));
-  };
-
-  // Return the maximum element (or element-based computation).
-  _.max = function(obj, iteratee, context) {
-    var result = -Infinity, lastComputed = -Infinity,
-        value, computed;
-    if (iteratee == null && obj != null) {
-      obj = isArrayLike(obj) ? obj : _.values(obj);
-      for (var i = 0, length = obj.length; i < length; i++) {
-        value = obj[i];
-        if (value > result) {
-          result = value;
-        }
-      }
-    } else {
-      iteratee = cb(iteratee, context);
-      _.each(obj, function(value, index, list) {
-        computed = iteratee(value, index, list);
-        if (computed > lastComputed || computed === -Infinity && result === -Infinity) {
-          result = value;
-          lastComputed = computed;
-        }
-      });
-    }
-    return result;
-  };
-
-  // Return the minimum element (or element-based computation).
-  _.min = function(obj, iteratee, context) {
-    var result = Infinity, lastComputed = Infinity,
-        value, computed;
-    if (iteratee == null && obj != null) {
-      obj = isArrayLike(obj) ? obj : _.values(obj);
-      for (var i = 0, length = obj.length; i < length; i++) {
-        value = obj[i];
-        if (value < result) {
-          result = value;
-        }
-      }
-    } else {
-      iteratee = cb(iteratee, context);
-      _.each(obj, function(value, index, list) {
-        computed = iteratee(value, index, list);
-        if (computed < lastComputed || computed === Infinity && result === Infinity) {
-          result = value;
-          lastComputed = computed;
-        }
-      });
-    }
-    return result;
-  };
-
-  // Shuffle a collection, using the modern version of the
-  // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).
-  _.shuffle = function(obj) {
-    var set = isArrayLike(obj) ? obj : _.values(obj);
-    var length = set.length;
-    var shuffled = Array(length);
-    for (var index = 0, rand; index < length; index++) {
-      rand = _.random(0, index);
-      if (rand !== index) shuffled[index] = shuffled[rand];
-      shuffled[rand] = set[index];
-    }
-    return shuffled;
-  };
-
-  // Sample **n** random values from a collection.
-  // If **n** is not specified, returns a single random element.
-  // The internal `guard` argument allows it to work with `map`.
-  _.sample = function(obj, n, guard) {
-    if (n == null || guard) {
-      if (!isArrayLike(obj)) obj = _.values(obj);
-      return obj[_.random(obj.length - 1)];
-    }
-    return _.shuffle(obj).slice(0, Math.max(0, n));
-  };
-
-  // Sort the object's values by a criterion produced by an iteratee.
-  _.sortBy = function(obj, iteratee, context) {
-    iteratee = cb(iteratee, context);
-    return _.pluck(_.map(obj, function(value, index, list) {
-      return {
-        value: value,
-        index: index,
-        criteria: iteratee(value, index, list)
-      };
-    }).sort(function(left, right) {
-      var a = left.criteria;
-      var b = right.criteria;
-      if (a !== b) {
-        if (a > b || a === void 0) return 1;
-        if (a < b || b === void 0) return -1;
-      }
-      return left.index - right.index;
-    }), 'value');
-  };
-
-  // An internal function used for aggregate "group by" operations.
-  var group = function(behavior) {
-    return function(obj, iteratee, context) {
-      var result = {};
-      iteratee = cb(iteratee, context);
-      _.each(obj, function(value, index) {
-        var key = iteratee(value, index, obj);
-        behavior(result, value, key);
-      });
-      return result;
-    };
-  };
-
-  // Groups the object's values by a criterion. Pass either a string attribute
-  // to group by, or a function that returns the criterion.
-  _.groupBy = group(function(result, value, key) {
-    if (_.has(result, key)) result[key].push(value); else result[key] = [value];
-  });
-
-  // Indexes the object's values by a criterion, similar to `groupBy`, but for
-  // when you know that your index values will be unique.
-  _.indexBy = group(function(result, value, key) {
-    result[key] = value;
-  });
-
-  // Counts instances of an object that group by a certain criterion. Pass
-  // either a string attribute to count by, or a function that returns the
-  // criterion.
-  _.countBy = group(function(result, value, key) {
-    if (_.has(result, key)) result[key]++; else result[key] = 1;
-  });
-
-  // Safely create a real, live array from anything iterable.
-  _.toArray = function(obj) {
-    if (!obj) return [];
-    if (_.isArray(obj)) return slice.call(obj);
-    if (isArrayLike(obj)) return _.map(obj, _.identity);
-    return _.values(obj);
-  };
-
-  // Return the number of elements in an object.
-  _.size = function(obj) {
-    if (obj == null) return 0;
-    return isArrayLike(obj) ? obj.length : _.keys(obj).length;
-  };
-
-  // Split a collection into two arrays: one whose elements all satisfy the given
-  // predicate, and one whose elements all do not satisfy the predicate.
-  _.partition = function(obj, predicate, context) {
-    predicate = cb(predicate, context);
-    var pass = [], fail = [];
-    _.each(obj, function(value, key, obj) {
-      (predicate(value, key, obj) ? pass : fail).push(value);
-    });
-    return [pass, fail];
-  };
-
-  // Array Functions
-  // ---------------
-
-  // Get the first element of an array. Passing **n** will return the first N
-  // values in the array. Aliased as `head` and `take`. The **guard** check
-  // allows it to work with `_.map`.
-  _.first = _.head = _.take = function(array, n, guard) {
-    if (array == null) return void 0;
-    if (n == null || guard) return array[0];
-    return _.initial(array, array.length - n);
-  };
-
-  // Returns everything but the last entry of the array. Especially useful on
-  // the arguments object. Passing **n** will return all the values in
-  // the array, excluding the last N.
-  _.initial = function(array, n, guard) {
-    return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));
-  };
-
-  // Get the last element of an array. Passing **n** will return the last N
-  // values in the array.
-  _.last = function(array, n, guard) {
-    if (array == null) return void 0;
-    if (n == null || guard) return array[array.length - 1];
-    return _.rest(array, Math.max(0, array.length - n));
-  };
-
-  // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.
-  // Especially useful on the arguments object. Passing an **n** will return
-  // the rest N values in the array.
-  _.rest = _.tail = _.drop = function(array, n, guard) {
-    return slice.call(array, n == null || guard ? 1 : n);
-  };
-
-  // Trim out all falsy values from an array.
-  _.compact = function(array) {
-    return _.filter(array, _.identity);
-  };
-
-  // Internal implementation of a recursive `flatten` function.
-  var flatten = function(input, shallow, strict, startIndex) {
-    var output = [], idx = 0;
-    for (var i = startIndex || 0, length = getLength(input); i < length; i++) {
-      var value = input[i];
-      if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) {
-        //flatten current level of array or arguments object
-        if (!shallow) value = flatten(value, shallow, strict);
-        var j = 0, len = value.length;
-        output.length += len;
-        while (j < len) {
-          output[idx++] = value[j++];
-        }
-      } else if (!strict) {
-        output[idx++] = value;
-      }
-    }
-    return output;
-  };
-
-  // Flatten out an array, either recursively (by default), or just one level.
-  _.flatten = function(array, shallow) {
-    return flatten(array, shallow, false);
-  };
-
-  // Return a version of the array that does not contain the specified value(s).
-  _.without = function(array) {
-    return _.difference(array, slice.call(arguments, 1));
-  };
-
-  // Produce a duplicate-free version of the array. If the array has already
-  // been sorted, you have the option of using a faster algorithm.
-  // Aliased as `unique`.
-  _.uniq = _.unique = function(array, isSorted, iteratee, context) {
-    if (!_.isBoolean(isSorted)) {
-      context = iteratee;
-      iteratee = isSorted;
-      isSorted = false;
-    }
-    if (iteratee != null) iteratee = cb(iteratee, context);
-    var result = [];
-    var seen = [];
-    for (var i = 0, length = getLength(array); i < length; i++) {
-      var value = array[i],
-          computed = iteratee ? iteratee(value, i, array) : value;
-      if (isSorted) {
-        if (!i || seen !== computed) result.push(value);
-        seen = computed;
-      } else if (iteratee) {
-        if (!_.contains(seen, computed)) {
-          seen.push(computed);
-          result.push(value);
-        }
-      } else if (!_.contains(result, value)) {
-        result.push(value);
-      }
-    }
-    return result;
-  };
-
-  // Produce an array that contains the union: each distinct element from all of
-  // the passed-in arrays.
-  _.union = function() {
-    return _.uniq(flatten(arguments, true, true));
-  };
-
-  // Produce an array that contains every item shared between all the
-  // passed-in arrays.
-  _.intersection = function(array) {
-    var result = [];
-    var argsLength = arguments.length;
-    for (var i = 0, length = getLength(array); i < length; i++) {
-      var item = array[i];
-      if (_.contains(result, item)) continue;
-      for (var j = 1; j < argsLength; j++) {
-        if (!_.contains(arguments[j], item)) break;
-      }
-      if (j === argsLength) result.push(item);
-    }
-    return result;
-  };
-
-  // Take the difference between one array and a number of other arrays.
-  // Only the elements present in just the first array will remain.
-  _.difference = function(array) {
-    var rest = flatten(arguments, true, true, 1);
-    return _.filter(array, function(value){
-      return !_.contains(rest, value);
-    });
-  };
-
-  // Zip together multiple lists into a single array -- elements that share
-  // an index go together.
-  _.zip = function() {
-    return _.unzip(arguments);
-  };
-
-  // Complement of _.zip. Unzip accepts an array of arrays and groups
-  // each array's elements on shared indices
-  _.unzip = function(array) {
-    var length = array && _.max(array, getLength).length || 0;
-    var result = Array(length);
-
-    for (var index = 0; index < length; index++) {
-      result[index] = _.pluck(array, index);
-    }
-    return result;
-  };
-
-  // Converts lists into objects. Pass either a single array of `[key, value]`
-  // pairs, or two parallel arrays of the same length -- one of keys, and one of
-  // the corresponding values.
-  _.object = function(list, values) {
-    var result = {};
-    for (var i = 0, length = getLength(list); i < length; i++) {
-      if (values) {
-        result[list[i]] = values[i];
-      } else {
-        result[list[i][0]] = list[i][1];
-      }
-    }
-    return result;
-  };
-
-  // Generator function to create the findIndex and findLastIndex functions
-  function createPredicateIndexFinder(dir) {
-    return function(array, predicate, context) {
-      predicate = cb(predicate, context);
-      var length = getLength(array);
-      var index = dir > 0 ? 0 : length - 1;
-      for (; index >= 0 && index < length; index += dir) {
-        if (predicate(array[index], index, array)) return index;
-      }
-      return -1;
-    };
-  }
-
-  // Returns the first index on an array-like that passes a predicate test
-  _.findIndex = createPredicateIndexFinder(1);
-  _.findLastIndex = createPredicateIndexFinder(-1);
-
-  // Use a comparator function to figure out the smallest index at which
-  // an object should be inserted so as to maintain order. Uses binary search.
-  _.sortedIndex = function(array, obj, iteratee, context) {
-    iteratee = cb(iteratee, context, 1);
-    var value = iteratee(obj);
-    var low = 0, high = getLength(array);
-    while (low < high) {
-      var mid = Math.floor((low + high) / 2);
-      if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;
-    }
-    return low;
-  };
-
-  // Generator function to create the indexOf and lastIndexOf functions
-  function createIndexFinder(dir, predicateFind, sortedIndex) {
-    return function(array, item, idx) {
-      var i = 0, length = getLength(array);
-      if (typeof idx == 'number') {
-        if (dir > 0) {
-            i = idx >= 0 ? idx : Math.max(idx + length, i);
-        } else {
-            length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;
-        }
-      } else if (sortedIndex && idx && length) {
-        idx = sortedIndex(array, item);
-        return array[idx] === item ? idx : -1;
-      }
-      if (item !== item) {
-        idx = predicateFind(slice.call(array, i, length), _.isNaN);
-        return idx >= 0 ? idx + i : -1;
-      }
-      for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {
-        if (array[idx] === item) return idx;
-      }
-      return -1;
-    };
-  }
-
-  // Return the position of the first occurrence of an item in an array,
-  // or -1 if the item is not included in the array.
-  // If the array is large and already in sort order, pass `true`
-  // for **isSorted** to use binary search.
-  _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex);
-  _.lastIndexOf = createIndexFinder(-1, _.findLastIndex);
-
-  // Generate an integer Array containing an arithmetic progression. A port of
-  // the native Python `range()` function. See
-  // [the Python documentation](http://docs.python.org/library/functions.html#range).
-  _.range = function(start, stop, step) {
-    if (stop == null) {
-      stop = start || 0;
-      start = 0;
-    }
-    step = step || 1;
-
-    var length = Math.max(Math.ceil((stop - start) / step), 0);
-    var range = Array(length);
-
-    for (var idx = 0; idx < length; idx++, start += step) {
-      range[idx] = start;
-    }
-
-    return range;
-  };
-
-  // Function (ahem) Functions
-  // ------------------
-
-  // Determines whether to execute a function as a constructor
-  // or a normal function with the provided arguments
-  var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) {
-    if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);
-    var self = baseCreate(sourceFunc.prototype);
-    var result = sourceFunc.apply(self, args);
-    if (_.isObject(result)) return result;
-    return self;
-  };
-
-  // Create a function bound to a given object (assigning `this`, and arguments,
-  // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if
-  // available.
-  _.bind = function(func, context) {
-    if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
-    if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');
-    var args = slice.call(arguments, 2);
-    var bound = function() {
-      return executeBound(func, bound, context, this, args.concat(slice.call(arguments)));
-    };
-    return bound;
-  };
-
-  // Partially apply a function by creating a version that has had some of its
-  // arguments pre-filled, without changing its dynamic `this` context. _ acts
-  // as a placeholder, allowing any combination of arguments to be pre-filled.
-  _.partial = function(func) {
-    var boundArgs = slice.call(arguments, 1);
-    var bound = function() {
-      var position = 0, length = boundArgs.length;
-      var args = Array(length);
-      for (var i = 0; i < length; i++) {
-        args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i];
-      }
-      while (position < arguments.length) args.push(arguments[position++]);
-      return executeBound(func, bound, this, this, args);
-    };
-    return bound;
-  };
-
-  // Bind a number of an object's methods to that object. Remaining arguments
-  // are the method names to be bound. Useful for ensuring that all callbacks
-  // defined on an object belong to it.
-  _.bindAll = function(obj) {
-    var i, length = arguments.length, key;
-    if (length <= 1) throw new Error('bindAll must be passed function names');
-    for (i = 1; i < length; i++) {
-      key = arguments[i];
-      obj[key] = _.bind(obj[key], obj);
-    }
-    return obj;
-  };
-
-  // Memoize an expensive function by storing its results.
-  _.memoize = function(func, hasher) {
-    var memoize = function(key) {
-      var cache = memoize.cache;
-      var address = '' + (hasher ? hasher.apply(this, arguments) : key);
-      if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);
-      return cache[address];
-    };
-    memoize.cache = {};
-    return memoize;
-  };
-
-  // Delays a function for the given number of milliseconds, and then calls
-  // it with the arguments supplied.
-  _.delay = function(func, wait) {
-    var args = slice.call(arguments, 2);
-    return setTimeout(function(){
-      return func.apply(null, args);
-    }, wait);
-  };
-
-  // Defers a function, scheduling it to run after the current call stack has
-  // cleared.
-  _.defer = _.partial(_.delay, _, 1);
-
-  // Returns a function, that, when invoked, will only be triggered at most once
-  // during a given window of time. Normally, the throttled function will run
-  // as much as it can, without ever going more than once per `wait` duration;
-  // but if you'd like to disable the execution on the leading edge, pass
-  // `{leading: false}`. To disable execution on the trailing edge, ditto.
-  _.throttle = function(func, wait, options) {
-    var context, args, result;
-    var timeout = null;
-    var previous = 0;
-    if (!options) options = {};
-    var later = function() {
-      previous = options.leading === false ? 0 : _.now();
-      timeout = null;
-      result = func.apply(context, args);
-      if (!timeout) context = args = null;
-    };
-    return function() {
-      var now = _.now();
-      if (!previous && options.leading === false) previous = now;
-      var remaining = wait - (now - previous);
-      context = this;
-      args = arguments;
-      if (remaining <= 0 || remaining > wait) {
-        if (timeout) {
-          clearTimeout(timeout);
-          timeout = null;
-        }
-        previous = now;
-        result = func.apply(context, args);
-        if (!timeout) context = args = null;
-      } else if (!timeout && options.trailing !== false) {
-        timeout = setTimeout(later, remaining);
-      }
-      return result;
-    };
-  };
-
-  // Returns a function, that, as long as it continues to be invoked, will not
-  // be triggered. The function will be called after it stops being called for
-  // N milliseconds. If `immediate` is passed, trigger the function on the
-  // leading edge, instead of the trailing.
-  _.debounce = function(func, wait, immediate) {
-    var timeout, args, context, timestamp, result;
-
-    var later = function() {
-      var last = _.now() - timestamp;
-
-      if (last < wait && last >= 0) {
-        timeout = setTimeout(later, wait - last);
-      } else {
-        timeout = null;
-        if (!immediate) {
-          result = func.apply(context, args);
-          if (!timeout) context = args = null;
-        }
-      }
-    };
-
-    return function() {
-      context = this;
-      args = arguments;
-      timestamp = _.now();
-      var callNow = immediate && !timeout;
-      if (!timeout) timeout = setTimeout(later, wait);
-      if (callNow) {
-        result = func.apply(context, args);
-        context = args = null;
-      }
-
-      return result;
-    };
-  };
-
-  // Returns the first function passed as an argument to the second,
-  // allowing you to adjust arguments, run code before and after, and
-  // conditionally execute the original function.
-  _.wrap = function(func, wrapper) {
-    return _.partial(wrapper, func);
-  };
-
-  // Returns a negated version of the passed-in predicate.
-  _.negate = function(predicate) {
-    return function() {
-      return !predicate.apply(this, arguments);
-    };
-  };
-
-  // Returns a function that is the composition of a list of functions, each
-  // consuming the return value of the function that follows.
-  _.compose = function() {
-    var args = arguments;
-    var start = args.length - 1;
-    return function() {
-      var i = start;
-      var result = args[start].apply(this, arguments);
-      while (i--) result = args[i].call(this, result);
-      return result;
-    };
-  };
-
-  // Returns a function that will only be executed on and after the Nth call.
-  _.after = function(times, func) {
-    return function() {
-      if (--times < 1) {
-        return func.apply(this, arguments);
-      }
-    };
-  };
-
-  // Returns a function that will only be executed up to (but not including) the Nth call.
-  _.before = function(times, func) {
-    var memo;
-    return function() {
-      if (--times > 0) {
-        memo = func.apply(this, arguments);
-      }
-      if (times <= 1) func = null;
-      return memo;
-    };
-  };
-
-  // Returns a function that will be executed at most one time, no matter how
-  // often you call it. Useful for lazy initialization.
-  _.once = _.partial(_.before, 2);
-
-  // Object Functions
-  // ----------------
-
-  // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.
-  var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');
-  var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',
-                      'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];
-
-  function collectNonEnumProps(obj, keys) {
-    var nonEnumIdx = nonEnumerableProps.length;
-    var constructor = obj.constructor;
-    var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto;
-
-    // Constructor is a special case.
-    var prop = 'constructor';
-    if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);
-
-    while (nonEnumIdx--) {
-      prop = nonEnumerableProps[nonEnumIdx];
-      if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {
-        keys.push(prop);
-      }
-    }
-  }
-
-  // Retrieve the names of an object's own properties.
-  // Delegates to **ECMAScript 5**'s native `Object.keys`
-  _.keys = function(obj) {
-    if (!_.isObject(obj)) return [];
-    if (nativeKeys) return nativeKeys(obj);
-    var keys = [];
-    for (var key in obj) if (_.has(obj, key)) keys.push(key);
-    // Ahem, IE < 9.
-    if (hasEnumBug) collectNonEnumProps(obj, keys);
-    return keys;
-  };
-
-  // Retrieve all the property names of an object.
-  _.allKeys = function(obj) {
-    if (!_.isObject(obj)) return [];
-    var keys = [];
-    for (var key in obj) keys.push(key);
-    // Ahem, IE < 9.
-    if (hasEnumBug) collectNonEnumProps(obj, keys);
-    return keys;
-  };
-
-  // Retrieve the values of an object's properties.
-  _.values = function(obj) {
-    var keys = _.keys(obj);
-    var length = keys.length;
-    var values = Array(length);
-    for (var i = 0; i < length; i++) {
-      values[i] = obj[keys[i]];
-    }
-    return values;
-  };
-
-  // Returns the results of applying the iteratee to each element of the object
-  // In contrast to _.map it returns an object
-  _.mapObject = function(obj, iteratee, context) {
-    iteratee = cb(iteratee, context);
-    var keys =  _.keys(obj),
-          length = keys.length,
-          results = {},
-          currentKey;
-      for (var index = 0; index < length; index++) {
-        currentKey = keys[index];
-        results[currentKey] = iteratee(obj[currentKey], currentKey, obj);
-      }
-      return results;
-  };
-
-  // Convert an object into a list of `[key, value]` pairs.
-  _.pairs = function(obj) {
-    var keys = _.keys(obj);
-    var length = keys.length;
-    var pairs = Array(length);
-    for (var i = 0; i < length; i++) {
-      pairs[i] = [keys[i], obj[keys[i]]];
-    }
-    return pairs;
-  };
-
-  // Invert the keys and values of an object. The values must be serializable.
-  _.invert = function(obj) {
-    var result = {};
-    var keys = _.keys(obj);
-    for (var i = 0, length = keys.length; i < length; i++) {
-      result[obj[keys[i]]] = keys[i];
-    }
-    return result;
-  };
-
-  // Return a sorted list of the function names available on the object.
-  // Aliased as `methods`
-  _.functions = _.methods = function(obj) {
-    var names = [];
-    for (var key in obj) {
-      if (_.isFunction(obj[key])) names.push(key);
-    }
-    return names.sort();
-  };
-
-  // Extend a given object with all the properties in passed-in object(s).
-  _.extend = createAssigner(_.allKeys);
-
-  // Assigns a given object with all the own properties in the passed-in object(s)
-  // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)
-  _.extendOwn = _.assign = createAssigner(_.keys);
-
-  // Returns the first key on an object that passes a predicate test
-  _.findKey = function(obj, predicate, context) {
-    predicate = cb(predicate, context);
-    var keys = _.keys(obj), key;
-    for (var i = 0, length = keys.length; i < length; i++) {
-      key = keys[i];
-      if (predicate(obj[key], key, obj)) return key;
-    }
-  };
-
-  // Return a copy of the object only containing the whitelisted properties.
-  _.pick = function(object, oiteratee, context) {
-    var result = {}, obj = object, iteratee, keys;
-    if (obj == null) return result;
-    if (_.isFunction(oiteratee)) {
-      keys = _.allKeys(obj);
-      iteratee = optimizeCb(oiteratee, context);
-    } else {
-      keys = flatten(arguments, false, false, 1);
-      iteratee = function(value, key, obj) { return key in obj; };
-      obj = Object(obj);
-    }
-    for (var i = 0, length = keys.length; i < length; i++) {
-      var key = keys[i];
-      var value = obj[key];
-      if (iteratee(value, key, obj)) result[key] = value;
-    }
-    return result;
-  };
-
-   // Return a copy of the object without the blacklisted properties.
-  _.omit = function(obj, iteratee, context) {
-    if (_.isFunction(iteratee)) {
-      iteratee = _.negate(iteratee);
-    } else {
-      var keys = _.map(flatten(arguments, false, false, 1), String);
-      iteratee = function(value, key) {
-        return !_.contains(keys, key);
-      };
-    }
-    return _.pick(obj, iteratee, context);
-  };
-
-  // Fill in a given object with default properties.
-  _.defaults = createAssigner(_.allKeys, true);
-
-  // Creates an object that inherits from the given prototype object.
-  // If additional properties are provided then they will be added to the
-  // created object.
-  _.create = function(prototype, props) {
-    var result = baseCreate(prototype);
-    if (props) _.extendOwn(result, props);
-    return result;
-  };
-
-  // Create a (shallow-cloned) duplicate of an object.
-  _.clone = function(obj) {
-    if (!_.isObject(obj)) return obj;
-    return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
-  };
-
-  // Invokes interceptor with the obj, and then returns obj.
-  // The primary purpose of this method is to "tap into" a method chain, in
-  // order to perform operations on intermediate results within the chain.
-  _.tap = function(obj, interceptor) {
-    interceptor(obj);
-    return obj;
-  };
-
-  // Returns whether an object has a given set of `key:value` pairs.
-  _.isMatch = function(object, attrs) {
-    var keys = _.keys(attrs), length = keys.length;
-    if (object == null) return !length;
-    var obj = Object(object);
-    for (var i = 0; i < length; i++) {
-      var key = keys[i];
-      if (attrs[key] !== obj[key] || !(key in obj)) return false;
-    }
-    return true;
-  };
-
-
-  // Internal recursive comparison function for `isEqual`.
-  var eq = function(a, b, aStack, bStack) {
-    // Identical objects are equal. `0 === -0`, but they aren't identical.
-    // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
-    if (a === b) return a !== 0 || 1 / a === 1 / b;
-    // A strict comparison is necessary because `null == undefined`.
-    if (a == null || b == null) return a === b;
-    // Unwrap any wrapped objects.
-    if (a instanceof _) a = a._wrapped;
-    if (b instanceof _) b = b._wrapped;
-    // Compare `[[Class]]` names.
-    var className = toString.call(a);
-    if (className !== toString.call(b)) return false;
-    switch (className) {
-      // Strings, numbers, regular expressions, dates, and booleans are compared by value.
-      case '[object RegExp]':
-      // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')
-      case '[object String]':
-        // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is
-        // equivalent to `new String("5")`.
-        return '' + a === '' + b;
-      case '[object Number]':
-        // `NaN`s are equivalent, but non-reflexive.
-        // Object(NaN) is equivalent to NaN
-        if (+a !== +a) return +b !== +b;
-        // An `egal` comparison is performed for other numeric values.
-        return +a === 0 ? 1 / +a === 1 / b : +a === +b;
-      case '[object Date]':
-      case '[object Boolean]':
-        // Coerce dates and booleans to numeric primitive values. Dates are compared by their
-        // millisecond representations. Note that invalid dates with millisecond representations
-        // of `NaN` are not equivalent.
-        return +a === +b;
-    }
-
-    var areArrays = className === '[object Array]';
-    if (!areArrays) {
-      if (typeof a != 'object' || typeof b != 'object') return false;
-
-      // Objects with different constructors are not equivalent, but `Object`s or `Array`s
-      // from different frames are.
-      var aCtor = a.constructor, bCtor = b.constructor;
-      if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor &&
-                               _.isFunction(bCtor) && bCtor instanceof bCtor)
-                          && ('constructor' in a && 'constructor' in b)) {
-        return false;
-      }
-    }
-    // Assume equality for cyclic structures. The algorithm for detecting cyclic
-    // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.
-
-    // Initializing stack of traversed objects.
-    // It's done here since we only need them for objects and arrays comparison.
-    aStack = aStack || [];
-    bStack = bStack || [];
-    var length = aStack.length;
-    while (length--) {
-      // Linear search. Performance is inversely proportional to the number of
-      // unique nested structures.
-      if (aStack[length] === a) return bStack[length] === b;
-    }
-
-    // Add the first object to the stack of traversed objects.
-    aStack.push(a);
-    bStack.push(b);
-
-    // Recursively compare objects and arrays.
-    if (areArrays) {
-      // Compare array lengths to determine if a deep comparison is necessary.
-      length = a.length;
-      if (length !== b.length) return false;
-      // Deep compare the contents, ignoring non-numeric properties.
-      while (length--) {
-        if (!eq(a[length], b[length], aStack, bStack)) return false;
-      }
-    } else {
-      // Deep compare objects.
-      var keys = _.keys(a), key;
-      length = keys.length;
-      // Ensure that both objects contain the same number of properties before comparing deep equality.
-      if (_.keys(b).length !== length) return false;
-      while (length--) {
-        // Deep compare each member
-        key = keys[length];
-        if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;
-      }
-    }
-    // Remove the first object from the stack of traversed objects.
-    aStack.pop();
-    bStack.pop();
-    return true;
-  };
-
-  // Perform a deep comparison to check if two objects are equal.
-  _.isEqual = function(a, b) {
-    return eq(a, b);
-  };
-
-  // Is a given array, string, or object empty?
-  // An "empty" object has no enumerable own-properties.
-  _.isEmpty = function(obj) {
-    if (obj == null) return true;
-    if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0;
-    return _.keys(obj).length === 0;
-  };
-
-  // Is a given value a DOM element?
-  _.isElement = function(obj) {
-    return !!(obj && obj.nodeType === 1);
-  };
-
-  // Is a given value an array?
-  // Delegates to ECMA5's native Array.isArray
-  _.isArray = nativeIsArray || function(obj) {
-    return toString.call(obj) === '[object Array]';
-  };
-
-  // Is a given variable an object?
-  _.isObject = function(obj) {
-    var type = typeof obj;
-    return type === 'function' || type === 'object' && !!obj;
-  };
-
-  // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError.
-  _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) {
-    _['is' + name] = function(obj) {
-      return toString.call(obj) === '[object ' + name + ']';
-    };
-  });
-
-  // Define a fallback version of the method in browsers (ahem, IE < 9), where
-  // there isn't any inspectable "Arguments" type.
-  if (!_.isArguments(arguments)) {
-    _.isArguments = function(obj) {
-      return _.has(obj, 'callee');
-    };
-  }
-
-  // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8,
-  // IE 11 (#1621), and in Safari 8 (#1929).
-  if (typeof /./ != 'function' && typeof Int8Array != 'object') {
-    _.isFunction = function(obj) {
-      return typeof obj == 'function' || false;
-    };
-  }
-
-  // Is a given object a finite number?
-  _.isFinite = function(obj) {
-    return isFinite(obj) && !isNaN(parseFloat(obj));
-  };
-
-  // Is the given value `NaN`? (NaN is the only number which does not equal itself).
-  _.isNaN = function(obj) {
-    return _.isNumber(obj) && obj !== +obj;
-  };
-
-  // Is a given value a boolean?
-  _.isBoolean = function(obj) {
-    return obj === true || obj === false || toString.call(obj) === '[object Boolean]';
-  };
-
-  // Is a given value equal to null?
-  _.isNull = function(obj) {
-    return obj === null;
-  };
-
-  // Is a given variable undefined?
-  _.isUndefined = function(obj) {
-    return obj === void 0;
-  };
-
-  // Shortcut function for checking if an object has a given property directly
-  // on itself (in other words, not on a prototype).
-  _.has = function(obj, key) {
-    return obj != null && hasOwnProperty.call(obj, key);
-  };
-
-  // Utility Functions
-  // -----------------
-
-  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
-  // previous owner. Returns a reference to the Underscore object.
-  _.noConflict = function() {
-    root._ = previousUnderscore;
-    return this;
-  };
-
-  // Keep the identity function around for default iteratees.
-  _.identity = function(value) {
-    return value;
-  };
-
-  // Predicate-generating functions. Often useful outside of Underscore.
-  _.constant = function(value) {
-    return function() {
-      return value;
-    };
-  };
-
-  _.noop = function(){};
-
-  _.property = property;
-
-  // Generates a function for a given object that returns a given property.
-  _.propertyOf = function(obj) {
-    return obj == null ? function(){} : function(key) {
-      return obj[key];
-    };
-  };
-
-  // Returns a predicate for checking whether an object has a given set of
-  // `key:value` pairs.
-  _.matcher = _.matches = function(attrs) {
-    attrs = _.extendOwn({}, attrs);
-    return function(obj) {
-      return _.isMatch(obj, attrs);
-    };
-  };
-
-  // Run a function **n** times.
-  _.times = function(n, iteratee, context) {
-    var accum = Array(Math.max(0, n));
-    iteratee = optimizeCb(iteratee, context, 1);
-    for (var i = 0; i < n; i++) accum[i] = iteratee(i);
-    return accum;
-  };
-
-  // Return a random integer between min and max (inclusive).
-  _.random = function(min, max) {
-    if (max == null) {
-      max = min;
-      min = 0;
-    }
-    return min + Math.floor(Math.random() * (max - min + 1));
-  };
-
-  // A (possibly faster) way to get the current timestamp as an integer.
-  _.now = Date.now || function() {
-    return new Date().getTime();
-  };
-
-   // List of HTML entities for escaping.
-  var escapeMap = {
-    '&': '&amp;',
-    '<': '&lt;',
-    '>': '&gt;',
-    '"': '&quot;',
-    "'": '&#x27;',
-    '`': '&#x60;'
-  };
-  var unescapeMap = _.invert(escapeMap);
-
-  // Functions for escaping and unescaping strings to/from HTML interpolation.
-  var createEscaper = function(map) {
-    var escaper = function(match) {
-      return map[match];
-    };
-    // Regexes for identifying a key that needs to be escaped
-    var source = '(?:' + _.keys(map).join('|') + ')';
-    var testRegexp = RegExp(source);
-    var replaceRegexp = RegExp(source, 'g');
-    return function(string) {
-      string = string == null ? '' : '' + string;
-      return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;
-    };
-  };
-  _.escape = createEscaper(escapeMap);
-  _.unescape = createEscaper(unescapeMap);
-
-  // If the value of the named `property` is a function then invoke it with the
-  // `object` as context; otherwise, return it.
-  _.result = function(object, property, fallback) {
-    var value = object == null ? void 0 : object[property];
-    if (value === void 0) {
-      value = fallback;
-    }
-    return _.isFunction(value) ? value.call(object) : value;
-  };
-
-  // Generate a unique integer id (unique within the entire client session).
-  // Useful for temporary DOM ids.
-  var idCounter = 0;
-  _.uniqueId = function(prefix) {
-    var id = ++idCounter + '';
-    return prefix ? prefix + id : id;
-  };
-
-  // By default, Underscore uses ERB-style template delimiters, change the
-  // following template settings to use alternative delimiters.
-  _.templateSettings = {
-    evaluate    : /<%([\s\S]+?)%>/g,
-    interpolate : /<%=([\s\S]+?)%>/g,
-    escape      : /<%-([\s\S]+?)%>/g
-  };
-
-  // When customizing `templateSettings`, if you don't want to define an
-  // interpolation, evaluation or escaping regex, we need one that is
-  // guaranteed not to match.
-  var noMatch = /(.)^/;
-
-  // Certain characters need to be escaped so that they can be put into a
-  // string literal.
-  var escapes = {
-    "'":      "'",
-    '\\':     '\\',
-    '\r':     'r',
-    '\n':     'n',
-    '\u2028': 'u2028',
-    '\u2029': 'u2029'
-  };
-
-  var escaper = /\\|'|\r|\n|\u2028|\u2029/g;
-
-  var escapeChar = function(match) {
-    return '\\' + escapes[match];
-  };
-
-  // JavaScript micro-templating, similar to John Resig's implementation.
-  // Underscore templating handles arbitrary delimiters, preserves whitespace,
-  // and correctly escapes quotes within interpolated code.
-  // NB: `oldSettings` only exists for backwards compatibility.
-  _.template = function(text, settings, oldSettings) {
-    if (!settings && oldSettings) settings = oldSettings;
-    settings = _.defaults({}, settings, _.templateSettings);
-
-    // Combine delimiters into one regular expression via alternation.
-    var matcher = RegExp([
-      (settings.escape || noMatch).source,
-      (settings.interpolate || noMatch).source,
-      (settings.evaluate || noMatch).source
-    ].join('|') + '|$', 'g');
-
-    // Compile the template source, escaping string literals appropriately.
-    var index = 0;
-    var source = "__p+='";
-    text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {
-      source += text.slice(index, offset).replace(escaper, escapeChar);
-      index = offset + match.length;
-
-      if (escape) {
-        source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'";
-      } else if (interpolate) {
-        source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'";
-      } else if (evaluate) {
-        source += "';\n" + evaluate + "\n__p+='";
-      }
-
-      // Adobe VMs need the match returned to produce the correct offest.
-      return match;
-    });
-    source += "';\n";
-
-    // If a variable is not specified, place data values in local scope.
-    if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n';
-
-    source = "var __t,__p='',__j=Array.prototype.join," +
-      "print=function(){__p+=__j.call(arguments,'');};\n" +
-      source + 'return __p;\n';
-
-    try {
-      var render = new Function(settings.variable || 'obj', '_', source);
-    } catch (e) {
-      e.source = source;
-      throw e;
-    }
-
-    var template = function(data) {
-      return render.call(this, data, _);
-    };
-
-    // Provide the compiled source as a convenience for precompilation.
-    var argument = settings.variable || 'obj';
-    template.source = 'function(' + argument + '){\n' + source + '}';
-
-    return template;
-  };
-
-  // Add a "chain" function. Start chaining a wrapped Underscore object.
-  _.chain = function(obj) {
-    var instance = _(obj);
-    instance._chain = true;
-    return instance;
-  };
-
-  // OOP
-  // ---------------
-  // If Underscore is called as a function, it returns a wrapped object that
-  // can be used OO-style. This wrapper holds altered versions of all the
-  // underscore functions. Wrapped objects may be chained.
-
-  // Helper function to continue chaining intermediate results.
-  var result = function(instance, obj) {
-    return instance._chain ? _(obj).chain() : obj;
-  };
-
-  // Add your own custom functions to the Underscore object.
-  _.mixin = function(obj) {
-    _.each(_.functions(obj), function(name) {
-      var func = _[name] = obj[name];
-      _.prototype[name] = function() {
-        var args = [this._wrapped];
-        push.apply(args, arguments);
-        return result(this, func.apply(_, args));
-      };
-    });
-  };
-
-  // Add all of the Underscore functions to the wrapper object.
-  _.mixin(_);
-
-  // Add all mutator Array functions to the wrapper.
-  _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
-    var method = ArrayProto[name];
-    _.prototype[name] = function() {
-      var obj = this._wrapped;
-      method.apply(obj, arguments);
-      if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];
-      return result(this, obj);
-    };
-  });
-
-  // Add all accessor Array functions to the wrapper.
-  _.each(['concat', 'join', 'slice'], function(name) {
-    var method = ArrayProto[name];
-    _.prototype[name] = function() {
-      return result(this, method.apply(this._wrapped, arguments));
-    };
-  });
-
-  // Extracts the result from a wrapped and chained object.
-  _.prototype.value = function() {
-    return this._wrapped;
-  };
-
-  // Provide unwrapping proxy for some methods used in engine operations
-  // such as arithmetic and JSON stringification.
-  _.prototype.valueOf = _.prototype.toJSON = _.prototype.value;
-
-  _.prototype.toString = function() {
-    return '' + this._wrapped;
-  };
-
-  // AMD registration happens at the end for compatibility with AMD loaders
-  // that may not enforce next-turn semantics on modules. Even though general
-  // practice for AMD registration is to be anonymous, underscore registers
-  // as a named module because, like jQuery, it is a base library that is
-  // popular enough to be bundled in a third party lib, but not be part of
-  // an AMD load request. Those cases could generate an error when an
-  // anonymous define() is called outside of a loader request.
-  if (true) {
-    !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function() {
-      return _;
-    }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
-				__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
-  }
-}.call(this));
-
-
-/***/ }),
-/* 2 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var _undefined = __webpack_require__(18)(); // Support ES3 engines
-
-module.exports = function (val) {
- return (val !== _undefined) && (val !== null);
-};
-
-
-/***/ }),
-/* 3 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var _ = __webpack_require__(1);
-
-// Add string formatting if it doesn't exist
-if (!String.prototype.format) {
-    String.prototype.format = function () {
-        var args = arguments;
-        return this.replace(/{(\d+)}/g, function (match, number) {
-            return typeof args[number] != 'undefined' ? args[number] : match;
-        });
-    };
-}
-
-function getWaterTempProbe(data, plotInfo, traceInfo, allData) {
-    var allProbeText = [];
-    var probeText;
-    var row, col;
-    var rowText;
-    var depth;
-    for (var j = 0; j < data.length; j++) {
-        row = data[j];
-        rowText = [];
-        depth = traceInfo.y[j];
-        for (var i = 0; i < row.length; i++) {
-            col = row[i];
-
-            probeText = "Depth: {0}m<br>{1}: {2} °C ({3} °F)".format(depth.toFixed(1), traceInfo.name, col !== null ? col.toFixed(3) : "N/A", col !== null ? getF(col).toFixed(3) : "N/A");
-            rowText.push(probeText);
-        }
-        allProbeText.push(rowText);
-    }
-    return allProbeText;
-}
-
-function getSpeedMPH(val) {
-    // convert m/s to mph
-    return val * 3600 / 1608;
-}
-function getSpeedKTS(val) {
-    //m/s to knots
-    return val * 1.94384;
-}
-
-function getPresInHg(val) {
-    // hPa to InHg
-    return val * 0.02952998751;
-}
-
-function getAccumMillimeter(val) {
-    // convert inches to millimeters
-    return val * 25.4;
-}
-
-function cardinalWDir(degrees) {
-
-    return ['N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW'][Math.floor((degrees + 11.25) % 360 / 22.5)];
-}
-// Convert C to F degrees
-function getF(val) {
-    return val * 1.8 + 32;
-}
-
-function getVal(val) {
-    return val;
-}
-
-var CONVERSION_FUNCTIONS = {
-    null: getVal,
-    undefined: getVal,
-    getF: getF,
-    getPresInHg: getPresInHg,
-    getSpeedMPH: getSpeedMPH,
-    getAccumMillimeter: getAccumMillimeter,
-    cardinalWDir: cardinalWDir,
-    getSpeedKTS: getSpeedKTS
-};
-
-function formatValue(val, plotInfo, traceInfo) {
-    var val2;
-    if (val === null) {
-        val = "";
-        val2 = "";
-    } else {
-        if ('yaxis2' in plotInfo && 'convert_value' in plotInfo.yaxis2) {
-            val2 = CONVERSION_FUNCTIONS[plotInfo.yaxis2.convert_value](val);
-            val2 = val2.toFixed ? val2.toFixed(plotInfo.yaxis2.precision) : val2;
-        } else {
-            val2 = undefined;
-        }
-        val = CONVERSION_FUNCTIONS[plotInfo.yaxis.convert_value](val);
-        val = val.toFixed ? val.toFixed(plotInfo.yaxis.precision) : val;
-    }
-
-    if ('yaxis2' in plotInfo && val2 !== undefined) {
-        return "{0}: {1}{2} ({3}{4})".format(traceInfo.name, val, plotInfo.yaxis.units, val2, plotInfo.yaxis2.units);
-    } else {
-        return "{0}: {1}{2}".format(traceInfo.name, val, plotInfo.yaxis.units);
-    }
-}
-
-function getDewpointProbe(data, plotInfo, traceInfo, allData) {
-    var allProbeText = [];
-    var probeText;
-    var relHum = undefined;
-    if ('anc_variables' in traceInfo && traceInfo.anc_variables.length == 1) {
-        relHum = allData[traceInfo.anc_variables[0]];
-    }
-    var rh_info = traceInfo.anc_info[traceInfo.anc_variables[0]];
-    if (!rh_info) rh_info = { name: traceInfo.anc_variables[0], units: '', precision: 2 };
-
-    for (var i = 0; i < data.length; i++) {
-        probeText = formatValue(data[i], plotInfo, traceInfo);
-        if (relHum !== undefined) {
-            probeText += "<br>{0}: {1}{2}".format(rh_info.name, relHum[i] ? relHum[i].toFixed(rh_info.precision) : "", rh_info.units);
-        }
-        allProbeText.push(probeText);
-    }
-    return allProbeText;
-}
-
-function defaultProbeText(data, plotInfo, traceInfo, allData) {
-    // assume traces share the same 'x'
-    var allProbeText = [];
-    for (var i = 0; i < data.length; i++) {
-        allProbeText.push(formatValue(data[i], plotInfo, traceInfo));
-    }
-    return allProbeText;
-}
-
-var PROBE_TEXT_FUNCTIONS = {
-    undefined: defaultProbeText,
-    null: defaultProbeText,
-    dewpoint: getDewpointProbe,
-    water_temp: getWaterTempProbe
-};
-
-function getProbeText(data, plotInfo, traceInfo, allData) {
-    if ('probe_text' in traceInfo) {
-        return PROBE_TEXT_FUNCTIONS[traceInfo.probe_text](data, plotInfo, traceInfo, allData);
-    }
-    return defaultProbeText(data, plotInfo, traceInfo, allData);
-}
-
-function getTickText(values, axis_info) {
-    var tickText = [];
-    for (var i = 0; i < values.length; i++) {
-        var val = CONVERSION_FUNCTIONS[axis_info.convert_value](values[i]);
-        val = val.toFixed ? val.toFixed(axis_info.precision) : val;
-        tickText.push(val);
-    }
-    return tickText;
-}
-
-/**
-* the purpose of this method is to get the spacing for the y axis
-* For deg F and deg C
-* @param min - minimum of the temp or dew point array
-* @param max - maximum of the temp or dew point array
-* @return array of 4 tick values for the y axis
-*/
-
-function getTickVals(min, max, bump) {
-    var extra = (max - min) * 0.02;
-    min = min - extra;
-    max = max + extra;
-    var step = (max - min) / 4.;
-    //create 4 tick values for the y axis
-    return _.range(min, max + step, step);
-}
-
-module.exports.getTickVals = getTickVals;
-module.exports.getProbeText = getProbeText;
-module.exports.getTickText = getTickText;
-
-/***/ }),
-/* 4 */
-/***/ (function(module, exports) {
-
-// shim for using process in browser
-var process = module.exports = {};
-
-// cached from whatever global is present so that test runners that stub it
-// don't break things.  But we need to wrap it in a try catch in case it is
-// wrapped in strict mode code which doesn't define any globals.  It's inside a
-// function because try/catches deoptimize in certain engines.
-
-var cachedSetTimeout;
-var cachedClearTimeout;
-
-function defaultSetTimout() {
-    throw new Error('setTimeout has not been defined');
-}
-function defaultClearTimeout () {
-    throw new Error('clearTimeout has not been defined');
-}
-(function () {
-    try {
-        if (typeof setTimeout === 'function') {
-            cachedSetTimeout = setTimeout;
-        } else {
-            cachedSetTimeout = defaultSetTimout;
-        }
-    } catch (e) {
-        cachedSetTimeout = defaultSetTimout;
-    }
-    try {
-        if (typeof clearTimeout === 'function') {
-            cachedClearTimeout = clearTimeout;
-        } else {
-            cachedClearTimeout = defaultClearTimeout;
-        }
-    } catch (e) {
-        cachedClearTimeout = defaultClearTimeout;
-    }
-} ())
-function runTimeout(fun) {
-    if (cachedSetTimeout === setTimeout) {
-        //normal enviroments in sane situations
-        return setTimeout(fun, 0);
-    }
-    // if setTimeout wasn't available but was latter defined
-    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {
-        cachedSetTimeout = setTimeout;
-        return setTimeout(fun, 0);
-    }
-    try {
-        // when when somebody has screwed with setTimeout but no I.E. maddness
-        return cachedSetTimeout(fun, 0);
-    } catch(e){
-        try {
-            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally
-            return cachedSetTimeout.call(null, fun, 0);
-        } catch(e){
-            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error
-            return cachedSetTimeout.call(this, fun, 0);
-        }
-    }
-
-
-}
-function runClearTimeout(marker) {
-    if (cachedClearTimeout === clearTimeout) {
-        //normal enviroments in sane situations
-        return clearTimeout(marker);
-    }
-    // if clearTimeout wasn't available but was latter defined
-    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {
-        cachedClearTimeout = clearTimeout;
-        return clearTimeout(marker);
-    }
-    try {
-        // when when somebody has screwed with setTimeout but no I.E. maddness
-        return cachedClearTimeout(marker);
-    } catch (e){
-        try {
-            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally
-            return cachedClearTimeout.call(null, marker);
-        } catch (e){
-            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.
-            // Some versions of I.E. have different rules for clearTimeout vs setTimeout
-            return cachedClearTimeout.call(this, marker);
-        }
-    }
-
-
-
-}
-var queue = [];
-var draining = false;
-var currentQueue;
-var queueIndex = -1;
-
-function cleanUpNextTick() {
-    if (!draining || !currentQueue) {
-        return;
-    }
-    draining = false;
-    if (currentQueue.length) {
-        queue = currentQueue.concat(queue);
-    } else {
-        queueIndex = -1;
-    }
-    if (queue.length) {
-        drainQueue();
-    }
-}
-
-function drainQueue() {
-    if (draining) {
-        return;
-    }
-    var timeout = runTimeout(cleanUpNextTick);
-    draining = true;
-
-    var len = queue.length;
-    while(len) {
-        currentQueue = queue;
-        queue = [];
-        while (++queueIndex < len) {
-            if (currentQueue) {
-                currentQueue[queueIndex].run();
-            }
-        }
-        queueIndex = -1;
-        len = queue.length;
-    }
-    currentQueue = null;
-    draining = false;
-    runClearTimeout(timeout);
-}
-
-process.nextTick = function (fun) {
-    var args = new Array(arguments.length - 1);
-    if (arguments.length > 1) {
-        for (var i = 1; i < arguments.length; i++) {
-            args[i - 1] = arguments[i];
-        }
-    }
-    queue.push(new Item(fun, args));
-    if (queue.length === 1 && !draining) {
-        runTimeout(drainQueue);
-    }
-};
-
-// v8 likes predictible objects
-function Item(fun, array) {
-    this.fun = fun;
-    this.array = array;
-}
-Item.prototype.run = function () {
-    this.fun.apply(null, this.array);
-};
-process.title = 'browser';
-process.browser = true;
-process.env = {};
-process.argv = [];
-process.version = ''; // empty string to avoid regexp issues
-process.versions = {};
-
-function noop() {}
-
-process.on = noop;
-process.addListener = noop;
-process.once = noop;
-process.off = noop;
-process.removeListener = noop;
-process.removeAllListeners = noop;
-process.emit = noop;
-process.prependListener = noop;
-process.prependOnceListener = noop;
-
-process.listeners = function (name) { return [] }
-
-process.binding = function (name) {
-    throw new Error('process.binding is not supported');
-};
-
-process.cwd = function () { return '/' };
-process.chdir = function (dir) {
-    throw new Error('process.chdir is not supported');
-};
-process.umask = function() { return 0; };
-
-
-/***/ }),
-/* 5 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var updatePlot = __webpack_require__(31);
-var loading = __webpack_require__(0);
-var _ = __webpack_require__(1);
-
-function processData(dataObj) {
-    // plotly doesn't support the 'T' date/time separator or the 'Z' at the end
-    // https://help.plot.ly/date-format-and-time-series/#step-2-entering-dates-and-times-in-plotly-s-grid
-    var dates = _.map(dataObj.timestamps, function (date) {
-        return date.replace("T", ' ').substring(0, date.length - 1);
-    });
-    var allData = {
-        dates: dates
-    };
-    _.extend(allData, dataObj.data);
-    return allData;
-}
-
-function plotting(url, var_names, plotsInfo, div, update) {
-    //gets information and updates component
-    $.ajax({
-        type: 'GET',
-        url: url,
-        jsonp: "callback",
-        dataType: "jsonp",
-        success: function success(dataObj) {
-            var graphDiv = document.getElementById(div);
-            var allData = processData(dataObj['results']);
-            var existingDates = graphDiv.data[0]['x'];
-            var dates = allData['dates'];
-            dataObj = {
-                dates: dates
-            };
-
-            if (dataObj.dates.length == 0) {
-                console.warn("No data available from API");
-                return;
-            }
-
-            if (update) {
-                // first index in the new data that is actually new
-                var startIndex = 0;
-                // update only dates that aren't already included
-                // assume that we don't have any missing dates in the middle
-                while (startIndex < dates.length && dates[startIndex] <= existingDates[existingDates.length - 1]) {
-                    startIndex++;
-                }
-
-                // subset the data if needed
-                if (startIndex == dates.length) {
-                    console.info("No new data downloaded");
-                    return;
-                } else {
-                    dates = dates.slice(startIndex);
-                    for (var i = 0; i < var_names.length; i++) {
-                        dataObj[var_names[i]] = allData[var_names[i]].slice(startIndex);
-                    }
-                }
-            } else {
-                // replace the entire data array
-                for (var i = 0; i < var_names.length; i++) {
-                    dataObj[var_names[i]] = allData[var_names[i]];
-                }
-            }
-
-            updatePlot.updatePlot(graphDiv, plotsInfo, dataObj, update);
-        }
-    });
-}
-
-function buildRequestUrl(format, interval, epoch, sep, order, time, streams) {
-    var request_url = METOBS_API_URL + '/api/data.' + format + '?';
-    request_url += 'interval=' + interval;
-    request_url += '&epoch=' + epoch;
-    request_url += '&sep=' + sep || ',';
-    request_url += '&order=' + order;
-    request_url += time;
-    request_url += '&symbols=' + streams;
-    return request_url;
-}
-
-//the minimum time period (in milliseconds) that a request must cover in order to use
-var intervalLookUp = [
-//1 day for 5 minutes
-[1000 * 60 * 60 * 24, '5m', '-00:10:00'],
-//6 days for 30 minutes
-[1000 * 60 * 60 * 24 * 6, '30m', '-01:00:00'],
-//1 month for 1 hour
-[1000 * 60 * 60 * 24 * 30 * 1, '1h', '-02:00:00'],
-//3 months for 3 hours
-[1000 * 60 * 60 * 24 * 30 * 3, '3h', '-06:00:00'],
-//6 months for 6 hours
-[1000 * 60 * 60 * 24 * 30 * 6, '6h', '-12:00:00'],
-//1 year for 12 hours
-[1000 * 60 * 60 * 24 * 365, '12h', '-24:00:00']];
-
-function varNamesForDiv(div) {
-    var varNames = [];
-    var graphDiv = document.getElementById(div);
-    _.each(graphDiv.data, function (trace_data) {
-        Array.prototype.push.apply(varNames, trace_data.var_names);
-        if ('anc_variables' in trace_data) {
-            Array.prototype.push.apply(varNames, trace_data.anc_variables);
-        }
-    });
-    return varNames;
-}
-
-//poorly ordered function parameters
-function requestPlotUpdate(div, plotsInfo, startTime, endTime, interval, update) {
-    var varNames = varNamesForDiv(div);
-    var stream_string = '';
-    for (var i in varNames) {
-        stream_string += varNames[i];
-        if (i < varNames.length - 1) stream_string += ':';
-    }
-
-    var time;
-    if (!endTime) {
-        interval = '1m';
-        // hours, minutes, seconds
-        var time_parts = _.map(startTime.split(':'), Number);
-        var dt_in_ms = -1000 * 60 * 60 * time_parts[0] + 1000 * 60 * time_parts[1] + 1000 * time_parts[2];
-        for (var i in intervalLookUp) {
-            if (dt_in_ms >= intervalLookUp[i][0]) {
-                interval = intervalLookUp[i][1];
-
-                if (update) {
-                    // we only want new data, the passed startTime was only
-                    // used to determine the interval
-                    startTime = intervalLookUp[i][2];
-                }
-            }
-        }
-        time = '&begin=' + startTime;
-    } else {
-        time = '&begin=' + startTime + '&end=' + endTime;
-        if (interval == 'auto') {
-            interval = '1m';
-            var dt_in_ms = new Date(endTime) - new Date(startTime);
-            for (var i in intervalLookUp) {
-                if (dt_in_ms >= intervalLookUp[i][0]) interval = intervalLookUp[i][1];
-            }
-        }
-    }
-
-    var url = buildRequestUrl('json', interval, '', '', 'column', time, stream_string);
-    plotting(url, varNames, plotsInfo, div, update);
-    return interval;
-}
-
-/**
-* The purpose of this method is to create a url based on user info
-*
-* @param userInfo - jsn with startdate, start time, end date, end time, and interval
-* no returns
-*/
-
-function customPlot(userInfo, streams) {
-    //get dates
-    var startDate = userInfo.startDate;
-    var startParts = startDate.split('/');
-    startDate = startParts[2] + '-' + startParts[0] + '-' + startParts[1];
-
-    var endDate = userInfo.endDate;
-    var endParts = endDate.split('/');
-    endDate = endParts[2] + '-' + endParts[0] + '-' + endParts[1];
-
-    //get times
-    var startTime = userInfo.startTime;
-    var endTime = userInfo.endTime;
-
-    //get interval
-    var interval = userInfo.interval;
-
-    //create url
-    var url = 'http://metobs.ssec.wisc.edu/api/data.json?site=aoss&inst=tower&symbols=air_temp:dewpoint:rel_hum:pressure:wind_speed:wind_direction:accum_precip:solar_flux&begin=';
-    url += startDate + 'T' + startTime + '&end=' + endDate + 'T' + endTime + '&interval=';
-    url += interval;
-
-    //plot data
-    plotting(url);
-
-    //hide gif
-    setTimeout(loading.loading, 2000);
-}
-
-//export functions
-module.exports.requestPlotUpdate = requestPlotUpdate;
-module.exports.buildRequestUrl = buildRequestUrl;
-module.exports.customPlot = customPlot;
-module.exports.plotting = plotting;
-
-/***/ }),
-/* 6 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var buildFormInDiv = __webpack_require__(7);
-var Dispatcher = __webpack_require__(9);
-var _ = __webpack_require__(1);
-
-function API(div, controlDiv, plotsInfo) {
-    var myDispatcher = Dispatcher.getDispatcher();
-    return {
-        plotDiv: div,
-        controlDiv: controlDiv,
-
-        initMeteorogram: function initMeteorogram(plot_div, plotOrder) {
-            this.hasGraph = true;
-            this.plotDiv = plot_div || this.plotDiv;
-            //start with only the selected plots showing, reveal others only if their data is requested
-            myDispatcher.dispatch({
-                'status': 'initPlot',
-                'emit': 'plotEmitter',
-                'location': this.plotDiv,
-                'plotsInfo': plotsInfo,
-                'plotOrder': plotOrder
-            });
-        },
-        initMeteorogramTable: function initMeteorogramTable(table_div, plotOrder) {
-            this.hasTable = true;
-            this.tableDiv = table_div || this.plotDiv;
-            //start with only the selected plots showing, reveal others only if their data is requested
-            myDispatcher.dispatch({
-                'status': 'initTable',
-                'emit': 'plotEmitter',
-                'location': this.tableDiv,
-                'plotsInfo': plotsInfo,
-                'plotOrder': plotOrder
-            });
-        },
-
-        initMeteorogramControls: function initMeteorogramControls(plotOrder) {
-            buildFormInDiv(this.controlDiv, this.plotDiv, myDispatcher);
-        },
-
-        displayRealTime: function displayRealTime() {
-            if (this.hasTable) {
-                myDispatcher.dispatch({
-                    'status': 'update_table',
-                    'emit': 'plotEmitter',
-                    'time': '-3:00:00',
-                    'location': this.tableDiv
-                });
-            }
-            if (this.hasGraph) {
-                myDispatcher.dispatch({
-                    'status': 'get_since_now',
-                    'emit': 'plotEmitter',
-                    'time': '-3:00:00',
-                    'location': this.plotDiv
-                });
-            }
-        },
-
-        showPlot: function showPlot(varName) {
-            myDispatcher.dispatch({ status: 'show' + varName, 'emit': 'checkboxEmitter', 'location': this.div });
-        },
-
-        hidePlot: function hidePlot(varName) {
-            myDispatcher.dispatch({ status: 'hide' + varName, 'emit': 'checkboxEmitter', 'location': this.div });
-        },
-
-        displayRecent: function displayRecent(start_time) {
-            myDispatcher.dispatch({
-                'status': 'get_since_now',
-                'emit': 'plotEmitter',
-                'time': start_time
-            });
-        },
-
-        displayTimeRange: function displayTimeRange(start_time, stop_time, interval) {
-            myDispatcher.dispatch({
-                'status': 'get_between_dates',
-                'emit': 'plotEmitter',
-                'start': start_time,
-                'end': stop_time,
-                'interval': interval || 'auto'
-            });
-        }
-    };
-}
-
-//expose the API to other scripts
-window.MeteorogramController = API;
-
-/***/ }),
-/* 7 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-//var $ = require('jquery');
-//var jQuery = require('jquery');
-
-var loading = __webpack_require__(0);
-var controlPanelTemplate = __webpack_require__(8);
-
-/**
-* The purpose of this method is to tell dispatcher
-* Oh, please check if user's entering stuff correctly
-*
-* no params
-* no returns
-*/
-
-function dispatchCustom(dispatcher) {
-    dispatcher.dispatch({
-        status: 'get_between_dates',
-        'emit': 'plotEmitter',
-        'start': $('#Start-date-picker').val().split(' ').join('T') + ':00',
-        'end': $('#End-date-picker').val().split(' ').join('T') + ':00',
-        'interval': 'auto'
-    });
-}
-
-/**
-* The purpose of this method is to send dispatcher user information
-*
-* no params
-* no returns
-*/
-
-function getUserInfo(dispatcher) {
-    //show gif
-    loading.loading();
-
-    //get the information from the text boxes
-    var startDate = $('#Start-date-picker').val();
-    var endDate = $('#End-date-picker').val();
-    var startTime = $('#Start-time-picker').val();
-    var endTime = $('#End-time-picker').val();
-    var interval = $('#interval option:selected');
-    var intervalVal = interval.data("name");
-
-    //store in user info
-    var userInfo = { 'startDate': startDate,
-        'startTime': startTime,
-        'endDate': endDate,
-        'endTime': endTime,
-        'interval': intervalVal };
-
-    //send to dispatcher
-    setTimeout(function () {
-        dispatch.dispatch({ status: 'plot_custom', 'emit': 'plotEmitter', 'userInfo': userInfo });
-    }, 200);
-}
-
-/**
-* The purpose of this method is to tell dispatcher, time to check if we need to update
-*
-* no params
-* no returns
-*/
-
-function dispatchUpdate(dispatcher) {
-    dispatcher.dispatch({ 'status': 'update', 'emit': 'plotEmitter' });
-}
-
-/**
-* The purpose of this method is to figure out what the user wants to do based upon
-* what the user selects on the task dropdown
-*
-* no params
-* no returns
-*/
-
-function dropDown(selectedText, dispatcher) {
-    console.log(dispatcher);
-    if (selectedText == 'realtime') {
-        dispatcher.dispatch({
-            status: 'get_since_now',
-            'emit': 'plotEmitter',
-            'time': '-3:00:00'
-        });
-    } else {
-        var timeDelta = selectedText;
-        dispatcher.dispatch({
-            status: 'get_since_now',
-            'emit': 'plotEmitter',
-            'time': selectedText
-        });
-    }
-}
-
-var bind_daterange_actions = function bind_daterange_actions(jQ_div, dispatcher) {
-    //bind to custom buttons and dropdowns
-    $(jQ_div + ' #plot-btn').click(function () {
-        dispatchCustom(dispatcher);
-    });
-    $(jQ_div + ' #dropDownId').change(function () {
-        dropDown($(this).val(), dispatcher);
-    });
-};
-var set_active_form = function set_active_form(which_block, jQ_div) {
-    $(jQ_div + " #dropDownId").prop("disabled", which_block != "recent");
-
-    $(jQ_div + " #interval").prop("disabled", which_block != "range");
-    $(jQ_div + " #Start-date-picker").prop("disabled", which_block != "range");
-    $(jQ_div + " #End-date-picker").prop("disabled", which_block != "range");
-    $(jQ_div + " #Start-time-picker").prop("disabled", which_block != "range");
-    $(jQ_div + " #End-time-picker").prop("disabled", which_block != "range");
-    $(jQ_div + " #plot-btn").prop("disabled", which_block != "range");
-};
-
-var set_form_datepickers = function set_form_datepickers(jQ_div) {
-    $(jQ_div + ' #Start-date-picker').datetimepicker({
-        changeMonth: true,
-        changeYear: true,
-        dateFormat: 'yy-mm-dd',
-        timeFormat: 'HH:mm',
-        showSecond: false,
-        showMillisec: false,
-        showMicrosec: false
-    });
-
-    $(jQ_div + ' #End-date-picker').datetimepicker({
-        changeMonth: true,
-        changeYear: true,
-        dateFormat: 'yy-mm-dd',
-        timeFormat: 'HH:mm',
-        showSecond: false,
-        showMillisec: false,
-        showMicrosec: false
-    });
-
-    //bind the enabling/disabling of forms to radio buttons
-    $(jQ_div + ' [type=text]').prop("disabled", true);
-    $(jQ_div + ' select').prop("disabled", true);
-    $(jQ_div + " #last_x_days").click(function () {
-        set_active_form("recent", jQ_div);
-    });
-    $(jQ_div + " #date_range").click(function () {
-        set_active_form("range", jQ_div);
-    });
-    //$('#Start-time-picker').editableSelect();
-    //$('#End-time-picker').editableSelect();
-    //add placeholder values for the order forms    
-    //$('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));
-    //$('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));
-    //Firefox (+others maybe) keep buttons selected on page reload
-    //enable the currrently selected one's field
-    $(jQ_div + " #last_x_days").trigger('click');
-};
-
-var setup_all_forms = function setup_all_forms(div, plot_div, dispatcher) {
-    var jQ_div = '#' + div;
-    set_form_datepickers(jQ_div, plot_div);
-    bind_daterange_actions(jQ_div, dispatcher);
-};
-
-function buildFormInDiv(div, plot_div, dispatcher) {
-    $('#' + div).append(controlPanelTemplate.controlPanelTemplate);
-    //$('#'+div+ " #show-hide-boxes").append(controlPanelTemplate.checkboxTemplates[site]);
-    setup_all_forms(div, plot_div, dispatcher);
-}
-$(document).ready(function () {
-    //Hide all form errors initially
-    //Set up the date range inputs as datepicker objects
-});
-
-module.exports = buildFormInDiv;
-
-/***/ }),
-/* 8 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var checkboxTemplates = {
-    'aoss.tower': '<div class="form-group">' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="temp">Temperature + Dewpoint' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="pres">Pressure' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="wS">Wind Speed' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="wD">Wind Direction' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="aP">Precipitation' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="sF">Solar Flux' + '</label>' + '</div>',
-    'mendota.buoy': '<div class="form-group">' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="temp">Temperature + Dewpoint' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="rh">Relative Humidity' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="wS">Wind Speed' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="wD">Wind Direction' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="chlor">Chlorophyll' + '</label>' + '<label class="form-check-label">' + '<input type="checkbox" class="form-check-input" checked id="phyco">Phycocyanin' + '</label>' + '</div>'
-};
-
-var controlPanelTemplate = '<div class="row" id="control-panel-row">' + '<div id="show-hide-boxes" class="col-md-12">' + '</div>' + '<div class = "col-md-9">' + '<div class="row" style="padding: 0 1em;">' + '<div class="form-group">' + '<table style="width:100%">' + '<tr>' + '<td>' + '<div class="radio">' + '<label><input type="radio" id="last_x_days" name="time_select">' + 'Recent Data:' + '</label>' + '</div>' + '</td>' + '<td>' + '<select class="form-control" id="dropDownId">' + '<option selected value="realtime">Realtime Update</option>' + '<option value="-1:00:00">Past 1 Hour</option>' + '<option value="-2:00:00">Past 2 Hours</option>' + '<option value="-3:00:00">Past 3 Hours</option>' + '<option value="-6:00:00">Past 6 Hours</option>' + '<option value="-12:00:00">Past 12 Hours</option>' + '<option value="-18:00:00">Past 18 Hours</option>' + '<option value="-24:00:00">Past 24 Hours</option>' + '<option value="-96:00:00">Past 4 Days</option>' + '</select>' + '</td>' + '<td style="padding-left:.5em">' + '<div class="radio">' + '<label><input type="radio" id="date_range" name="time_select">' + 'Date Range:' + '</label>' + '</div>' + '</td>' + '<td>' + '<input class="form-control" style="padding 0.5em 0;" id="Start-date-picker" type="text" placeholder="YYYY-MM-DD"/>' + '</td>' + '<td>to </td>' + '<td>' + '<input class="form-control" style="padding 0.5em 0;" id="End-date-picker" type="text" placeholder="YYYY-MM-DD"/>' + '</td>' + '<td>' + '<button class="btn btn-primary btn-block" id="plot-btn">Plot</button>' + '</td>' + '</tr>' + '</table>' + '</div>' + '</div>' + '</div>' + '</div>';
-module.exports = {
-    controlPanelTemplate: controlPanelTemplate,
-    checkboxTemplates: checkboxTemplates
-};
-
-/***/ }),
-/* 9 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-//var $ = require('jquery');
-
-var ee = __webpack_require__(10);
-var Flux = __webpack_require__(26);
-var Plot = __webpack_require__(29);
-var Table = __webpack_require__(30);
-var dataAccess = __webpack_require__(5);
-var loading = __webpack_require__(0);
-var getDispatcher = function getDispatcher() {
-    var myDispatcher = new Flux.Dispatcher();
-    //not sure where else to stick globals
-    myDispatcher.GRAPH_HEIGHT = 170;
-    /**
-    * The purpose of this method is to dispatch an update message to plotStore
-    *
-    * no parameters
-    * no returns
-    */
-
-    function dispatchUpdate(startTime) {
-        return function () {
-            //dispatch update message to plotStore
-            myDispatcher.dispatch({ 'status': 'update', 'emit': 'plotEmitter', 'startTime': startTime });
-        };
-    }
-
-    //creates checkbox store
-    var checkboxEmitter = ee({
-        visible: {},
-        setPlots: function setPlots(plotsInfo) {
-            for (var plot_key in plotsInfo) {
-                this.visible[plot_key] = true;
-            }
-        },
-        setShowing: function setShowing(plotName, visible) {
-            if (visible === undefined) {
-                this.showing[plotName] = !this.showing[plotName];
-            } else {
-                this.showing[plotName] = visible;
-            }
-        },
-        getShowing: function getShowing(plotName) {
-            return this.showing[plotName];
-        },
-        handleActions: function handleActions(action) {
-            //only handels if action is for checkbox emitter
-            if (action.emit == 'checkboxEmitter') {
-                this.emit(action.status, action.location);
-            }
-        }
-    });
-
-    //register store with dispatcher
-    checkboxEmitter.dispatchToken = myDispatcher.register(checkboxEmitter.handleActions.bind(checkboxEmitter));
-
-    //create plotStore
-    // FIXME: Event emitter should be added to a class prototype, not the other way around
-    // See https://github.com/medikoo/event-emitter#usage
-    // The below works...but only because event-emitter allows it. Should probably stick with advertised features
-    var plotEmitter = ee({
-        handleActions: function handleActions(action) {
-            if (action.emit == 'plotEmitter') {
-                myDispatcher.waitFor([checkboxEmitter.dispatchToken]);
-
-                if (action.location !== undefined) {
-                    this.div = action.location;
-                }
-
-                if (action.plotsInfo !== undefined) {
-                    this.plotsInfo = action.plotsInfo;
-                    this.plotOrder = this.plotsInfo.defaultPlots;
-                }
-                if (action.plotOrder !== undefined) {
-                    this.plotOrder = action.plotOrder;
-                }
-
-                if (action.status == 'get_since_now') {
-                    this.emit(action.status, action.time, this.plotsInfo, this.div);
-                } else if (action.status == 'update_table') {
-                    this.emit(action.status, action.time, this.plotsInfo, this.div);
-                } else if (action.status == 'get_between_dates') {
-                    this.emit(action.status, action.start, action.end, action.interval, this.plotsInfo, this.div);
-                } else if (action.status == 'initPlot') {
-                    this.emit(action.status, action.location, action.plotOrder ? action.plotOrder : this.plotOrder, this.plotsInfo);
-                } else if (action.status == 'initTable') {
-                    this.emit(action.status, action.location, action.plotOrder ? action.plotOrder : this.plotOrder, this.plotsInfo);
-                } else if (action.status == 'update') {
-                    this.emit(action.status, this.div, this.plotsInfo, action.startTime);
-                } else {
-                    //adds parameter for user information in custom plot
-                    console.debug("Emitting user information message: {action.status} : {action.userInfo}");
-                    this.emit(action.status, action.userInfo);
-                }
-            }
-        }
-    });
-
-    function stopUpdate(plotsInfo) {
-        if (!plotsInfo.progress) plotsInfo.progress = new Object();
-        if (plotsInfo.progress.validID) {
-            var id = plotsInfo.progress.id[0];
-            clearInterval(id);
-            plotsInfo.progress.validID = false;
-        }
-    }
-
-    // update every N/2 milliseconds
-    var updateInterval = {
-        '1m': 30 * 1000,
-        '5m': 2.5 * 60 * 1000,
-        '30m': 15 * 60 * 1000,
-        '1h': 30 * 60 * 1000,
-        '3h': 1.5 * 60 * 60 * 1000,
-        '6h': 3 * 60 * 60 * 1000,
-        '12h': 6 * 60 * 60 * 1000
-    };
-
-    function startUpdate(startTime, interval, plotsInfo) {
-        // stop any previous updates
-        if (!plotsInfo.progress) plotsInfo.progress = new Object();
-        stopUpdate(plotsInfo);
-
-        // resume update operations
-        if (startTime === undefined) {
-            startTime = plotsInfo.progress.id[1];
-        }
-        if (interval === undefined) {
-            interval = plotsInfo.progress.id[2];
-        }
-
-        // every 30 seconds, rings update alarm
-        var intervalID = setInterval(dispatchUpdate(startTime), updateInterval[interval]);
-        // save alarm id
-        plotsInfo.progress.id = [intervalID, startTime, interval];
-        plotsInfo.progress.validID = true;
-    }
-
-    plotEmitter.on('initTable', function (div, plotOrder, plotsInfo) {
-        //initialize checkbox store
-        checkboxEmitter.setPlots(plotsInfo);
-        Table.initTable(div, plotOrder, plotsInfo);
-    });
-
-    plotEmitter.on('update_table', function (time, plotsInfo, div) {
-        Table.requestTableUpdate(div, plotsInfo);
-        setInterval(function () {
-            Table.requestTableUpdate(div, plotsInfo);
-        }, updateInterval['1m']);
-    });
-
-    plotEmitter.on('initPlot', function (div, plotOrder, plotsInfo) {
-        //initialize checkbox store
-        checkboxEmitter.setPlots(plotsInfo);
-        Plot.initPlot(div, plotOrder, plotsInfo);
-    });
-
-    plotEmitter.on("get_since_now", function (time, plotsInfo, div) {
-        var interval = dataAccess.requestPlotUpdate(div, plotsInfo, time, undefined, undefined);
-        startUpdate(time, interval, plotsInfo);
-    });
-
-    plotEmitter.on("get_between_dates", function (start, end, interval, plotsInfo, div) {
-        stopUpdate(plotsInfo);
-        dataAccess.requestPlotUpdate(div, plotsInfo, start, end, interval);
-    });
-
-    //when store recieves signal, update component
-    plotEmitter.on('update', function (div, plotsInfo, startTime) {
-        dataAccess.requestPlotUpdate(div, plotsInfo, startTime, undefined, undefined, true);
-    });
-
-    // plotEmitter.on("plot_custom", function(userInfo)
-    // {
-    //      staticPlots.customPlot(userInfo,['air_temp','dewpoint','rel_hum','pressure',
-    //         'wind_speed','wind_direction','accum_precip','solar_flux']);
-    // });
-
-    plotEmitter.on("checking_custom", function () {
-        //before components were plots. Here, it's the user prompt paragraph
-        loading.checkInterval();
-    });
-
-    //register plotStore with dispatcher
-    plotEmitter.dispatchToken = myDispatcher.register(plotEmitter.handleActions.bind(plotEmitter));
-
-    return myDispatcher;
-};
-//exports dispatchers and stores
-module.exports.getDispatcher = getDispatcher;
-
-/***/ }),
-/* 10 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var d        = __webpack_require__(11)
-  , callable = __webpack_require__(25)
-
-  , apply = Function.prototype.apply, call = Function.prototype.call
-  , create = Object.create, defineProperty = Object.defineProperty
-  , defineProperties = Object.defineProperties
-  , hasOwnProperty = Object.prototype.hasOwnProperty
-  , descriptor = { configurable: true, enumerable: false, writable: true }
-
-  , on, once, off, emit, methods, descriptors, base;
-
-on = function (type, listener) {
-	var data;
-
-	callable(listener);
-
-	if (!hasOwnProperty.call(this, '__ee__')) {
-		data = descriptor.value = create(null);
-		defineProperty(this, '__ee__', descriptor);
-		descriptor.value = null;
-	} else {
-		data = this.__ee__;
-	}
-	if (!data[type]) data[type] = listener;
-	else if (typeof data[type] === 'object') data[type].push(listener);
-	else data[type] = [data[type], listener];
-
-	return this;
-};
-
-once = function (type, listener) {
-	var once, self;
-
-	callable(listener);
-	self = this;
-	on.call(this, type, once = function () {
-		off.call(self, type, once);
-		apply.call(listener, this, arguments);
-	});
-
-	once.__eeOnceListener__ = listener;
-	return this;
-};
-
-off = function (type, listener) {
-	var data, listeners, candidate, i;
-
-	callable(listener);
-
-	if (!hasOwnProperty.call(this, '__ee__')) return this;
-	data = this.__ee__;
-	if (!data[type]) return this;
-	listeners = data[type];
-
-	if (typeof listeners === 'object') {
-		for (i = 0; (candidate = listeners[i]); ++i) {
-			if ((candidate === listener) ||
-					(candidate.__eeOnceListener__ === listener)) {
-				if (listeners.length === 2) data[type] = listeners[i ? 0 : 1];
-				else listeners.splice(i, 1);
-			}
-		}
-	} else {
-		if ((listeners === listener) ||
-				(listeners.__eeOnceListener__ === listener)) {
-			delete data[type];
-		}
-	}
-
-	return this;
-};
-
-emit = function (type) {
-	var i, l, listener, listeners, args;
-
-	if (!hasOwnProperty.call(this, '__ee__')) return;
-	listeners = this.__ee__[type];
-	if (!listeners) return;
-
-	if (typeof listeners === 'object') {
-		l = arguments.length;
-		args = new Array(l - 1);
-		for (i = 1; i < l; ++i) args[i - 1] = arguments[i];
-
-		listeners = listeners.slice();
-		for (i = 0; (listener = listeners[i]); ++i) {
-			apply.call(listener, this, args);
-		}
-	} else {
-		switch (arguments.length) {
-		case 1:
-			call.call(listeners, this);
-			break;
-		case 2:
-			call.call(listeners, this, arguments[1]);
-			break;
-		case 3:
-			call.call(listeners, this, arguments[1], arguments[2]);
-			break;
-		default:
-			l = arguments.length;
-			args = new Array(l - 1);
-			for (i = 1; i < l; ++i) {
-				args[i - 1] = arguments[i];
-			}
-			apply.call(listeners, this, args);
-		}
-	}
-};
-
-methods = {
-	on: on,
-	once: once,
-	off: off,
-	emit: emit
-};
-
-descriptors = {
-	on: d(on),
-	once: d(once),
-	off: d(off),
-	emit: d(emit)
-};
-
-base = defineProperties({}, descriptors);
-
-module.exports = exports = function (o) {
-	return (o == null) ? create(base) : defineProperties(Object(o), descriptors);
-};
-exports.methods = methods;
-
-
-/***/ }),
-/* 11 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var assign        = __webpack_require__(12)
-  , normalizeOpts = __webpack_require__(20)
-  , isCallable    = __webpack_require__(21)
-  , contains      = __webpack_require__(22)
-
-  , d;
-
-d = module.exports = function (dscr, value/*, options*/) {
-	var c, e, w, options, desc;
-	if ((arguments.length < 2) || (typeof dscr !== 'string')) {
-		options = value;
-		value = dscr;
-		dscr = null;
-	} else {
-		options = arguments[2];
-	}
-	if (dscr == null) {
-		c = w = true;
-		e = false;
-	} else {
-		c = contains.call(dscr, 'c');
-		e = contains.call(dscr, 'e');
-		w = contains.call(dscr, 'w');
-	}
-
-	desc = { value: value, configurable: c, enumerable: e, writable: w };
-	return !options ? desc : assign(normalizeOpts(options), desc);
-};
-
-d.gs = function (dscr, get, set/*, options*/) {
-	var c, e, options, desc;
-	if (typeof dscr !== 'string') {
-		options = set;
-		set = get;
-		get = dscr;
-		dscr = null;
-	} else {
-		options = arguments[3];
-	}
-	if (get == null) {
-		get = undefined;
-	} else if (!isCallable(get)) {
-		options = get;
-		get = set = undefined;
-	} else if (set == null) {
-		set = undefined;
-	} else if (!isCallable(set)) {
-		options = set;
-		set = undefined;
-	}
-	if (dscr == null) {
-		c = true;
-		e = false;
-	} else {
-		c = contains.call(dscr, 'c');
-		e = contains.call(dscr, 'e');
-	}
-
-	desc = { get: get, set: set, configurable: c, enumerable: e };
-	return !options ? desc : assign(normalizeOpts(options), desc);
-};
-
-
-/***/ }),
-/* 12 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-module.exports = __webpack_require__(13)()
-	? Object.assign
-	: __webpack_require__(14);
-
-
-/***/ }),
-/* 13 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-module.exports = function () {
-	var assign = Object.assign, obj;
-	if (typeof assign !== "function") return false;
-	obj = { foo: "raz" };
-	assign(obj, { bar: "dwa" }, { trzy: "trzy" });
-	return (obj.foo + obj.bar + obj.trzy) === "razdwatrzy";
-};
-
-
-/***/ }),
-/* 14 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var keys  = __webpack_require__(15)
-  , value = __webpack_require__(19)
-  , max   = Math.max;
-
-module.exports = function (dest, src /*, …srcn*/) {
-	var error, i, length = max(arguments.length, 2), assign;
-	dest = Object(value(dest));
-	assign = function (key) {
-		try {
-			dest[key] = src[key];
-		} catch (e) {
-			if (!error) error = e;
-		}
-	};
-	for (i = 1; i < length; ++i) {
-		src = arguments[i];
-		keys(src).forEach(assign);
-	}
-	if (error !== undefined) throw error;
-	return dest;
-};
-
-
-/***/ }),
-/* 15 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-module.exports = __webpack_require__(16)()
-	? Object.keys
-	: __webpack_require__(17);
-
-
-/***/ }),
-/* 16 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-module.exports = function () {
-	try {
-		Object.keys("primitive");
-		return true;
-	} catch (e) {
- return false;
-}
-};
-
-
-/***/ }),
-/* 17 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var isValue = __webpack_require__(2);
-
-var keys = Object.keys;
-
-module.exports = function (object) {
-	return keys(isValue(object) ? Object(object) : object);
-};
-
-
-/***/ }),
-/* 18 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-// eslint-disable-next-line no-empty-function
-module.exports = function () {};
-
-
-/***/ }),
-/* 19 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var isValue = __webpack_require__(2);
-
-module.exports = function (value) {
-	if (!isValue(value)) throw new TypeError("Cannot use null or undefined");
-	return value;
-};
-
-
-/***/ }),
-/* 20 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var isValue = __webpack_require__(2);
-
-var forEach = Array.prototype.forEach, create = Object.create;
-
-var process = function (src, obj) {
-	var key;
-	for (key in src) obj[key] = src[key];
-};
-
-// eslint-disable-next-line no-unused-vars
-module.exports = function (opts1 /*, …options*/) {
-	var result = create(null);
-	forEach.call(arguments, function (options) {
-		if (!isValue(options)) return;
-		process(Object(options), result);
-	});
-	return result;
-};
-
-
-/***/ }),
-/* 21 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-// Deprecated
-
-
-
-module.exports = function (obj) {
- return typeof obj === "function";
-};
-
-
-/***/ }),
-/* 22 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-module.exports = __webpack_require__(23)()
-	? String.prototype.contains
-	: __webpack_require__(24);
-
-
-/***/ }),
-/* 23 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var str = "razdwatrzy";
-
-module.exports = function () {
-	if (typeof str.contains !== "function") return false;
-	return (str.contains("dwa") === true) && (str.contains("foo") === false);
-};
-
-
-/***/ }),
-/* 24 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var indexOf = String.prototype.indexOf;
-
-module.exports = function (searchString/*, position*/) {
-	return indexOf.call(this, searchString, arguments[1]) > -1;
-};
-
-
-/***/ }),
-/* 25 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-module.exports = function (fn) {
-	if (typeof fn !== "function") throw new TypeError(fn + " is not a function");
-	return fn;
-};
-
-
-/***/ }),
-/* 26 */
-/***/ (function(module, exports, __webpack_require__) {
-
-/**
- * Copyright (c) 2014-present, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- */
-
-module.exports.Dispatcher = __webpack_require__(27);
-
-
-/***/ }),
-/* 27 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-/* WEBPACK VAR INJECTION */(function(process) {/**
- * Copyright (c) 2014-present, Facebook, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- * @providesModule Dispatcher
- * 
- * @preventMunge
- */
-
-
-
-exports.__esModule = true;
-
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
-
-var invariant = __webpack_require__(28);
-
-var _prefix = 'ID_';
-
-/**
- * Dispatcher is used to broadcast payloads to registered callbacks. This is
- * different from generic pub-sub systems in two ways:
- *
- *   1) Callbacks are not subscribed to particular events. Every payload is
- *      dispatched to every registered callback.
- *   2) Callbacks can be deferred in whole or part until other callbacks have
- *      been executed.
- *
- * For example, consider this hypothetical flight destination form, which
- * selects a default city when a country is selected:
- *
- *   var flightDispatcher = new Dispatcher();
- *
- *   // Keeps track of which country is selected
- *   var CountryStore = {country: null};
- *
- *   // Keeps track of which city is selected
- *   var CityStore = {city: null};
- *
- *   // Keeps track of the base flight price of the selected city
- *   var FlightPriceStore = {price: null}
- *
- * When a user changes the selected city, we dispatch the payload:
- *
- *   flightDispatcher.dispatch({
- *     actionType: 'city-update',
- *     selectedCity: 'paris'
- *   });
- *
- * This payload is digested by `CityStore`:
- *
- *   flightDispatcher.register(function(payload) {
- *     if (payload.actionType === 'city-update') {
- *       CityStore.city = payload.selectedCity;
- *     }
- *   });
- *
- * When the user selects a country, we dispatch the payload:
- *
- *   flightDispatcher.dispatch({
- *     actionType: 'country-update',
- *     selectedCountry: 'australia'
- *   });
- *
- * This payload is digested by both stores:
- *
- *   CountryStore.dispatchToken = flightDispatcher.register(function(payload) {
- *     if (payload.actionType === 'country-update') {
- *       CountryStore.country = payload.selectedCountry;
- *     }
- *   });
- *
- * When the callback to update `CountryStore` is registered, we save a reference
- * to the returned token. Using this token with `waitFor()`, we can guarantee
- * that `CountryStore` is updated before the callback that updates `CityStore`
- * needs to query its data.
- *
- *   CityStore.dispatchToken = flightDispatcher.register(function(payload) {
- *     if (payload.actionType === 'country-update') {
- *       // `CountryStore.country` may not be updated.
- *       flightDispatcher.waitFor([CountryStore.dispatchToken]);
- *       // `CountryStore.country` is now guaranteed to be updated.
- *
- *       // Select the default city for the new country
- *       CityStore.city = getDefaultCityForCountry(CountryStore.country);
- *     }
- *   });
- *
- * The usage of `waitFor()` can be chained, for example:
- *
- *   FlightPriceStore.dispatchToken =
- *     flightDispatcher.register(function(payload) {
- *       switch (payload.actionType) {
- *         case 'country-update':
- *         case 'city-update':
- *           flightDispatcher.waitFor([CityStore.dispatchToken]);
- *           FlightPriceStore.price =
- *             getFlightPriceStore(CountryStore.country, CityStore.city);
- *           break;
- *     }
- *   });
- *
- * The `country-update` payload will be guaranteed to invoke the stores'
- * registered callbacks in order: `CountryStore`, `CityStore`, then
- * `FlightPriceStore`.
- */
-
-var Dispatcher = (function () {
-  function Dispatcher() {
-    _classCallCheck(this, Dispatcher);
-
-    this._callbacks = {};
-    this._isDispatching = false;
-    this._isHandled = {};
-    this._isPending = {};
-    this._lastID = 1;
-  }
-
-  /**
-   * Registers a callback to be invoked with every dispatched payload. Returns
-   * a token that can be used with `waitFor()`.
-   */
-
-  Dispatcher.prototype.register = function register(callback) {
-    var id = _prefix + this._lastID++;
-    this._callbacks[id] = callback;
-    return id;
-  };
-
-  /**
-   * Removes a callback based on its token.
-   */
-
-  Dispatcher.prototype.unregister = function unregister(id) {
-    !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.unregister(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;
-    delete this._callbacks[id];
-  };
-
-  /**
-   * Waits for the callbacks specified to be invoked before continuing execution
-   * of the current callback. This method should only be used by a callback in
-   * response to a dispatched payload.
-   */
-
-  Dispatcher.prototype.waitFor = function waitFor(ids) {
-    !this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Must be invoked while dispatching.') : invariant(false) : undefined;
-    for (var ii = 0; ii < ids.length; ii++) {
-      var id = ids[ii];
-      if (this._isPending[id]) {
-        !this._isHandled[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Circular dependency detected while ' + 'waiting for `%s`.', id) : invariant(false) : undefined;
-        continue;
-      }
-      !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;
-      this._invokeCallback(id);
-    }
-  };
-
-  /**
-   * Dispatches a payload to all registered callbacks.
-   */
-
-  Dispatcher.prototype.dispatch = function dispatch(payload) {
-    !!this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatch.dispatch(...): Cannot dispatch in the middle of a dispatch.') : invariant(false) : undefined;
-    this._startDispatching(payload);
-    try {
-      for (var id in this._callbacks) {
-        if (this._isPending[id]) {
-          continue;
-        }
-        this._invokeCallback(id);
-      }
-    } finally {
-      this._stopDispatching();
-    }
-  };
-
-  /**
-   * Is this Dispatcher currently dispatching.
-   */
-
-  Dispatcher.prototype.isDispatching = function isDispatching() {
-    return this._isDispatching;
-  };
-
-  /**
-   * Call the callback stored with the given id. Also do some internal
-   * bookkeeping.
-   *
-   * @internal
-   */
-
-  Dispatcher.prototype._invokeCallback = function _invokeCallback(id) {
-    this._isPending[id] = true;
-    this._callbacks[id](this._pendingPayload);
-    this._isHandled[id] = true;
-  };
-
-  /**
-   * Set up bookkeeping needed when dispatching.
-   *
-   * @internal
-   */
-
-  Dispatcher.prototype._startDispatching = function _startDispatching(payload) {
-    for (var id in this._callbacks) {
-      this._isPending[id] = false;
-      this._isHandled[id] = false;
-    }
-    this._pendingPayload = payload;
-    this._isDispatching = true;
-  };
-
-  /**
-   * Clear bookkeeping used for dispatching.
-   *
-   * @internal
-   */
-
-  Dispatcher.prototype._stopDispatching = function _stopDispatching() {
-    delete this._pendingPayload;
-    this._isDispatching = false;
-  };
-
-  return Dispatcher;
-})();
-
-module.exports = Dispatcher;
-/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
-
-/***/ }),
-/* 28 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-/* WEBPACK VAR INJECTION */(function(process) {/**
- * Copyright (c) 2013-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- */
-
-
-
-/**
- * Use invariant() to assert state which your program assumes to be true.
- *
- * Provide sprintf-style format (only %s is supported) and arguments
- * to provide information about what broke and what you were
- * expecting.
- *
- * The invariant message will be stripped in production, but the invariant
- * will remain to ensure logic does not differ in production.
- */
-
-var validateFormat = function validateFormat(format) {};
-
-if (process.env.NODE_ENV !== 'production') {
-  validateFormat = function validateFormat(format) {
-    if (format === undefined) {
-      throw new Error('invariant requires an error message argument');
-    }
-  };
-}
-
-function invariant(condition, format, a, b, c, d, e, f) {
-  validateFormat(format);
-
-  if (!condition) {
-    var error;
-    if (format === undefined) {
-      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');
-    } else {
-      var args = [a, b, c, d, e, f];
-      var argIndex = 0;
-      error = new Error(format.replace(/%s/g, function () {
-        return args[argIndex++];
-      }));
-      error.name = 'Invariant Violation';
-    }
-
-    error.framesToPop = 1; // we don't care about invariant's own frame
-    throw error;
-  }
-}
-
-module.exports = invariant;
-/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(4)))
-
-/***/ }),
-/* 29 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var ticktext = __webpack_require__(3);
-var loading = __webpack_require__(0);
-
-function initPlot(div_id, plotOrder, plotsInfo) {
-    var DEFAULT_PLOT_HEIGHT = 170;
-    var nshowing = plotOrder.length;
-    var layout = {
-        title: plotsInfo.title,
-        showlegend: false,
-        height: DEFAULT_PLOT_HEIGHT * nshowing + 180
-    };
-
-    layout['xaxis'] = {
-        //domain affects size of x axis
-        //this made room for the legend
-        //1 is the far right of the plot, 0 is the far left
-        domain: [0, 1],
-
-        //xaxis doesn't show its lines
-        showline: false,
-        zeroline: false,
-
-        //values of the tick labels show up
-        //show right away if we have any starting streams
-        showticklabels: nshowing > 0,
-
-        //its grid is a little darker than default
-        gridcolor: "#777777",
-
-        //hide grid
-        showgrid: false,
-        tickformat: '%Y-%m-%d %H:%MZ'
-    };
-
-    var data = [];
-    var axis_number = 0;
-    var axis_info;
-    var plot_info;
-    var trace_info;
-    var trace_config;
-    var axis_config;
-    var plot_key;
-    var key;
-    var step = 1 / nshowing;
-    var domain;
-    var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y', 'contours', 'line', 'colorscale', 'showscale', 'colorbar'];
-    for (var plot_idx = 0; plot_idx < plotOrder.length; plot_idx++) {
-        plot_key = plotOrder[plot_idx];
-        plot_info = plotsInfo.plots[plot_key];
-        axis_number += 1;
-        axis_info = plot_info.yaxis;
-        domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03, 1 - plot_idx * step * 1.05];
-
-        // Create the necessary traces (lines)
-        for (var trace_info_idx = 0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {
-            trace_info = plot_info.traces[trace_info_idx];
-            trace_config = {
-                name: trace_info['name'],
-                x: [],
-                y: [],
-                type: trace_info.type ? trace_info.type : 'scatter',
-                xaxis: 'x1',
-                yaxis: 'y' + axis_number,
-                hoverinfo: 'x+text',
-                hovermode: 'closest',
-                // meteorogram custom data flags
-                var_names: trace_info['var_names'],
-                anc_variables: trace_info['anc_variables'],
-                anc_data: [],
-                plot_name: plot_key,
-                trace_index: trace_info_idx
-            };
-
-            for (var idx = 0; idx < trace_kwargs.length; idx++) {
-                key = trace_kwargs[idx];
-                if (key in trace_info) {
-                    trace_config[key] = trace_info[key];
-                }
-            }
-            if ('colorbar' in trace_config) {
-                trace_config.colorbar.len = domain[1] - domain[0];
-                trace_config.colorbar.y = (domain[1] - domain[0]) / 2 + domain[0];
-                trace_config.z = [[]];
-            }
-            data.push(trace_config);
-        }
-
-        // Create Y-axis configuration object
-        axis_config = {
-            gridcolor: '#777777',
-            titlefont: { 'size': 12 },
-            title: axis_info['title'],
-            zeroline: false,
-            // where on the canvas does this axis belong
-            domain: [(plotOrder.length - 1 - plot_idx) * step * 1.03, 1 - plot_idx * step * 1.05]
-        };
-        if ('zeroline' in axis_info) {
-            axis_config['zeroline'] = axis_info.zeroline;
-        }
-
-        if ('range' in axis_info) {
-            axis_config['range'] = axis_info['range'];
-        }
-        if ('autorange' in axis_info) {
-            axis_config['autorange'] = axis_info['autorange'];
-        }
-
-        if ('tickmode' in axis_info) {
-            axis_config['tickmode'] = axis_info['tickmode'];
-        } else {
-            if ('tickvals' in axis_info) {
-                axis_config['tickvals'] = axis_info['tickvals'];
-            } else {
-                axis_config['tickvals'] = ticktext.getTickVals(0, 1, axis_info.step);
-            }
-            if ('ticktext' in axis_info) {
-                axis_config['ticktext'] = axis_info['ticktext'];
-            } else {
-                axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);
-            }
-        }
-        layout['yaxis' + axis_number] = axis_config;
-
-        if ('yaxis2' in plot_info) {
-            axis_number += 1;
-            axis_info = plot_info.yaxis2;
-            axis_config = {
-                gridcolor: '#777777',
-                titlefont: { 'size': 12 },
-                title: axis_info['title'],
-                zeroline: false,
-                overlaying: 'y' + (axis_number - 1).toString(),
-                side: 'right',
-                anchor: 'x'
-            };
-
-            if ('range' in layout['yaxis' + (axis_number - 1)]) {
-                axis_config['range'] = layout['yaxis' + (axis_number - 1)]['range'];
-            }
-
-            if ('tickmode' in axis_info) {
-                axis_config['tickmode'] = axis_info['tickmode'];
-            } else {
-                if ('tickvals' in axis_info) {
-                    axis_config['tickvals'] = axis_info['tickvals'];
-                } else {
-                    // use the other axis tick locations
-                    axis_config['tickvals'] = layout['yaxis' + (axis_number - 1)]['tickvals'];
-                }
-                if ('ticktext' in axis_info) {
-                    axis_config['ticktext'] = axis_info['ticktext'];
-                } else {
-                    axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);
-                }
-            }
-
-            layout['yaxis' + axis_number] = axis_config;
-        }
-    }
-    // xaxis only shows on the bottom most plot
-    layout['xaxis']['anchor'] = 'y' + axis_number;
-
-    // Toolbar configuration
-    var toolbar = {
-        // Disable link to plotly
-        'showLink': false,
-        // Don't show plotly logo
-        'displaylogo': false,
-        'displayModeBar': true
-    };
-
-    //creates new graph
-    Plotly.newPlot(div_id, data, layout, toolbar);
-    loading.loading();
-}
-
-module.exports.initPlot = initPlot;
-
-/***/ }),
-/* 30 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var ticktext = __webpack_require__(3);
-var loading = __webpack_require__(0);
-var updateData = __webpack_require__(5);
-
-/* 
- * Build a table in the specified div with a row for each trace in plotsInfo
- * Stores metadata for each trace using $.data, which is retrieved
- * and used by requestTableUpdate
- */
-function initTable(div_id, plotOrder, plotsInfo) {
-    var div = $('#' + div_id);
-    var table = $('<table class="met_table"><tbody></tbody></table>');
-    var tbody = table.children('tbody');
-
-    var plot_info;
-    var plot_key;
-    for (var plot_idx = 0; plot_idx < plotOrder.length; plot_idx++) {
-        plot_key = plotOrder[plot_idx];
-        plot_info = plotsInfo.plots[plot_key];
-        //extract the necessary variables
-        for (var trace_info_idx = 0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {
-            var trace_info = plot_info.traces[trace_info_idx];
-            if (trace_info.type == 'contour') {
-                add_contour_rows(tbody, plot_key, trace_info_idx, trace_info, plot_info);
-            } else {
-                var info_td = $('<td>N/A</td>');
-                info_td.addClass('met_data');
-                info_td.data('info', { key: plot_key, idx: trace_info_idx });
-                var row = $('<tr></tr>');
-                var name = trace_info.short_name || trace_info.name;
-                row.append('<td>' + name + '</td>');
-                row.append(info_td);
-                row.append('<td class="convert"></td>');
-                tbody.append(row);
-                //add rows for our ancillary variables that normally only show up in tags
-                if (trace_info.anc_variables) add_anc_rows(tbody, plot_key, trace_info_idx, trace_info);
-            }
-        };
-    }
-    div.append('<h3>' + plotsInfo.title + '</h3>');
-    div.append(table);
-    div.append('<span id="timestamp"></span>');
-};
-
-function add_anc_rows(tbody, plot_key, idx, trace_info) {
-    for (var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++) {
-        var anc_info = trace_info.anc_info[trace_info.anc_variables[anc_info_idx]];
-        var info_td = $('<td>N/A</td>');
-        info_td.addClass('met_data');
-        info_td.data('info', { key: plot_key, idx: idx, anc_idx: anc_info_idx });
-        var row = $('<tr></tr>');
-        var name = anc_info.short_name || anc_info.name;
-        row.append('<td>' + name + '</td>');
-        row.append(info_td);
-        row.append('<td class="convert"></td>');
-        tbody.append(row);
-    }
-}
-
-function add_contour_rows(tbody, plot_key, idx, trace_info, plot_info) {
-    var name = trace_info.short_name || trace_info.name;
-    var title_row = '<tr><td colspan="2">' + name + '</td><td></td>';
-    tbody.append(title_row);
-    for (var hightlight_idx = 0; hightlight_idx < trace_info.y_highlight.length; hightlight_idx++) {
-        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];
-        var row = $('<tr></tr>');
-        var name = trace_info.y[hightlight_idx_idx] + plot_info.yaxis.units;
-        row.append('<td class="subtitle text-center">' + name + '</td>');
-        var info_td = $('<td>N/A</td>');
-        info_td.addClass('met_data');
-        info_td.data('info', { key: plot_key, idx: idx, hl_idx: hightlight_idx_idx });
-        row.append(info_td);
-        row.append('<td class="convert"></td>');
-        tbody.append(row);
-    }
-}
-
-/* 
- * Build a datastream request from the data tags in div_id's existing meteorogram table,
- * then add labels and alternate units based on the axes objects in plotsInfo
- */
-function requestTableUpdate(div_id, plotsInfo) {
-    var div = $('#' + div_id);
-    var varNames = [];
-    var plotOrder = [];
-    var data_cells = $('#' + div_id + ' .met_data');
-    var convert_cells = $('#' + div_id + ' .convert');
-    data_cells.each(function () {
-        var key = $(this).data('info').key;
-        var trace_idx = $(this).data('info').idx;
-        var anc_idx = $(this).data('info').anc_idx;
-        var hl_idx = $(this).data('info').hl_idx;
-        var trace = plotsInfo.plots[key].traces[trace_idx];
-        if (plotOrder.indexOf(key) == -1) plotOrder.push(key);
-        if (anc_idx !== undefined) varNames.push(trace.anc_variables[0]);else if (hl_idx !== undefined) varNames.push(trace.var_names[hl_idx]);else varNames.push(trace.var_names[0]);
-    });
-    var stream_string = varNames.join(':');
-    console.log(stream_string);
-    //Use a set time that has both buoy and tower records for testing
-    var test_time = "&begin=2017-10-17T00:00:00&end=2017-10-17T00:02:00";
-    var url = updateData.buildRequestUrl('json', '1m', '', '', 'column', '&begin=-00:02:00', stream_string);
-    $.ajax({
-        type: 'GET',
-        url: url,
-        jsonp: "callback",
-        dataType: "jsonp",
-        success: function success(dataObj) {
-            dataObj.div_id = div_id;
-            dataObj.plotOrder = plotOrder;
-            dataObj.data_cells = data_cells;
-            dataObj.convert_cells = convert_cells;
-            updateTable(dataObj, plotsInfo);
-        }
-    });
-};
-
-function updateTable(dataObj, plotsInfo) {
-    var data = dataObj.results.data;
-    console.log(data);
-    var plot_info;
-    var plot_key;
-    var td_idx = 0;
-    var div_id = dataObj.div_id;
-    var plotOrder = dataObj.plotOrder;
-    var data_cells = dataObj.data_cells;
-    var convert_cells = dataObj.convert_cells;
-    if (dataObj.num_results == 0) {
-        $('#' + div_id + ' #timestamp').html('No recent data');
-        return;
-    }
-    $('#' + div_id + ' #timestamp').html('Last updated: ' + dataObj.results.timestamps[0]);
-    for (var plot_idx = 0; plot_idx < plotOrder.length; plot_idx++) {
-        plot_key = plotOrder[plot_idx];
-        plot_info = plotsInfo.plots[plot_key];
-        //Fill in a row for each trace in the plot
-        for (var trace_info_idx = 0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {
-            var trace_info = plot_info.traces[trace_info_idx];
-            if (trace_info.type == 'contour') {
-                td_idx = update_contour_cells(data, data_cells, convert_cells, trace_info, td_idx);
-            } else {
-                var update_val = data[trace_info['var_names'][0]][0];
-                if (update_val || update_val == 0) {
-                    var units = plot_info.yaxis.units;
-                    var convert = '';
-                    var old_precision = plot_info.yaxis.precision;
-                    plot_info.yaxis.precision = Math.min(old_precision, 1);
-                    var orig_val = ticktext.getTickText([update_val], plot_info.yaxis);
-                    plot_info.yaxis.precision = old_precision;
-                    if (plot_info.yaxis2 && plot_info.yaxis2.convert_value) {
-                        var convert_units = plot_info.yaxis2.units;
-                        var old_precision = plot_info.yaxis2.precision;
-                        plot_info.yaxis2.precision = Math.min(old_precision, 1);
-                        var convert_val = ticktext.getTickText([update_val], plot_info.yaxis2);
-                        plot_info.yaxis2.precision = old_precision;
-                        convert = convert_val + convert_units;
-                    }
-                    console.log(update_val);
-                    data_cells[td_idx].innerHTML = orig_val + units;
-                    convert_cells[td_idx].innerHTML = convert;
-                } else {
-                    data_cells[td_idx].innerHTML = 'N/A';
-                    convert_cells[td_idx].innerHTML = '';
-                }
-                td_idx += 1;
-                //Fill in a row for each anc_var in the plot
-                if (trace_info.anc_variables) {
-                    td_idx = update_anc_cells(data, data_cells, trace_info, td_idx);
-                }
-            }
-        };
-    }
-}
-
-function update_contour_cells(data, data_cells, convert_cells, trace_info, td_idx) {
-    for (var hightlight_idx = 0; hightlight_idx < trace_info.y_highlight.length; hightlight_idx++) {
-        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];
-        console.log(trace_info['var_names'][hightlight_idx_idx]);
-        var update_val = data[trace_info['var_names'][hightlight_idx_idx]][0];
-        var units = trace_info.zprobe.units;
-        var orig_val = ticktext.getTickText([update_val], trace_info.zprobe);
-        var convert = '';
-        if (trace_info.zprobe2 && trace_info.zprobe2.convert_value) {
-            var convert_units = trace_info.zprobe2.units;
-            var convert_val = ticktext.getTickText([update_val], trace_info.zprobe2);
-            convert = convert_val + convert_units;
-        }
-        data_cells[td_idx].innerHTML = orig_val + units;
-        convert_cells[td_idx].innerHTML = convert;
-        td_idx += 1;
-    }
-    return td_idx;
-}
-
-function update_anc_cells(data, data_cells, trace_info, td_idx) {
-    for (var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++) {
-        var anc_key = trace_info.anc_variables[anc_info_idx];
-        var anc_info = trace_info.anc_info[anc_key];
-        var update_val = data[anc_key][0];
-        var orig_val = ticktext.getTickText([update_val], anc_info);
-        if (update_val || update_val == 0) data_cells[td_idx].innerHTML = orig_val + anc_info.units;else data_cells[td_idx].innerHTML = 'N/A';
-        td_idx += 1;
-    }
-    return td_idx;
-}
-module.exports.initTable = initTable;
-module.exports.requestTableUpdate = requestTableUpdate;
-
-/***/ }),
-/* 31 */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-var ticktext = __webpack_require__(3);
-var _ = __webpack_require__(1);
-
-function plotsInDiv(graphDiv) {
-    var plotNames = [];
-    _.each(graphDiv.data, function (elem) {
-        // assume the plot's traces are sequential
-        // so only check the last element
-        if (plotNames[plotNames.length - 1] != elem.plot_name) {
-            plotNames.push(elem.plot_name);
-        }
-    });
-    return plotNames;
-}
-
-function replaceData(graphDiv, plotsInfo, dataObj, update) {
-    var dates = dataObj['dates'];
-    var plotName;
-    var plotInfo;
-    var trace_anc_data;
-    var ancHandled = [];
-    var plotHandled = [];
-    var updateChanges = {
-        x: [],
-        y: [],
-        z: [],
-        text: []
-    };
-
-    // get full array so we can properly make probe text later
-    var traceIndex = 0;
-    if (update) {
-        for (var i = 0; i < graphDiv.data.length; i++) {
-            plotName = graphDiv.data[i].plot_name;
-            if (plotHandled[plotHandled.length - 1] == plotName) {
-                continue;
-            }
-            plotInfo = plotsInfo.plots[plotName];
-            _.each(plotInfo.traces, function (elem, index) {
-                _.each(elem.var_names, function (var_name) {
-                    _.each(dataObj[var_name], function (data_elem) {
-                        graphDiv.data[traceIndex + index]['y'].shift();
-                        graphDiv.data[traceIndex + index]['y'].push(data_elem);
-                    });
-                    // hold on to the array to create probe text
-                    dataObj[var_name] = graphDiv.data[traceIndex + index]['y'];
-                });
-
-                trace_anc_data = graphDiv.data[traceIndex + index]['anc_data'];
-                _.each(elem.anc_variables, function (anc_name, anc_index) {
-                    if (ancHandled.includes(anc_name)) {
-                        trace_anc_data[anc_index] = dataObj[anc_name];
-                        return;
-                    }
-                    _.each(dataObj[anc_name], function (data_elem) {
-                        trace_anc_data[anc_index].shift();
-                        trace_anc_data[anc_index].push(data_elem);
-                    });
-                    dataObj[anc_name] = graphDiv.data[traceIndex + index]['anc_data'][anc_index];
-                    ancHandled.push(anc_name);
-                });
-            });
-            traceIndex += plotInfo.traces.length;
-            plotHandled.push(plotName);
-        }
-        // the X arrays are shared between all of the plots with how we've done it during init
-        // we only have to update the array once
-        _.each(dates, function (data_elem, data_index) {
-            graphDiv.data[0]['x'].shift();
-            graphDiv.data[0]['x'].push(dates[data_index]);
-        });
-        dates = graphDiv.data[0]['x'];
-
-        // assume extendTraces is faster than replacing the whole thing
-        // Note: we are already rebuilding the arrays above, so don't use extendTraces
-        // Plotly.extendTraces(graphDiv, update);
-    }
-
-    traceIndex = 0;
-    plotHandled = [];
-    for (var i = 0; i < graphDiv.data.length; i++) {
-        plotName = graphDiv.data[i].plot_name;
-        // assume all traces are sequential
-        if (plotHandled[plotHandled.length - 1] == plotName) {
-            continue;
-        }
-        plotInfo = plotsInfo.plots[plotName];
-        _.each(plotInfo.traces, function (elem, index, traces) {
-            var probeText;
-            var trace_info = elem;
-            updateChanges.x.push(dates);
-            if (!('anc_variables' in elem)) {
-                graphDiv.data[traceIndex + index]['anc_data'] = undefined;
-            } else {
-                var new_anc_data = [];
-                _.each(elem.anc_variables, function (anc_name, anc_index) {
-                    new_anc_data.push(dataObj[anc_name]);
-                });
-                graphDiv.data[traceIndex + index]['anc_data'] = new_anc_data;
-            }
-
-            if (graphDiv.data[traceIndex + index].type == 'scatter') {
-                _.each(elem.var_names, function (var_name) {
-                    updateChanges.y.push(dataObj[var_name]);
-
-                    // Get probe text shown when hovering over the traces
-                    if ('probe_text' in trace_info && trace_info['probe_text'] === null) {
-                        // we don't want probe text for this trace
-                        probeText = undefined;
-                    } else {
-                        probeText = ticktext.getProbeText(dataObj[var_name], plotInfo, trace_info, dataObj);
-                    }
-                    updateChanges.text.push(probeText);
-                    updateChanges.z.push(undefined);
-                });
-            } else if (graphDiv.data[traceIndex + index].type == 'contour') {
-                var thisData = _.map(elem.var_names, function (var_name) {
-                    return dataObj[var_name];
-                });
-                updateChanges.y.push(undefined);
-                updateChanges.text.push(ticktext.getProbeText(thisData, plotInfo, trace_info, dataObj));
-                updateChanges.z.push(_.map(elem.var_names, function (var_name) {
-                    return dataObj[var_name];
-                }));
-            } else {
-                updateChanges.y.push(undefined);
-                updateChanges.z.push(undefined);
-                updateChanges.text.push(undefined);
-            }
-        });
-        traceIndex += plotInfo.traces.length;
-        plotHandled.push(plotName);
-    }
-    // Restyle/update all plots
-    Plotly.restyle(graphDiv, updateChanges);
-}
-
-function updateAxes(graphDiv, plots_info) {
-    var plotNames = plotsInDiv(graphDiv);
-    var plot_info;
-    var traceIdx = 0;
-    var minmax, min, max;
-    var yaxis_number = 0;
-    var yaxis_name, yaxis_name_1;
-    var layout = {};
-    var tickVals;
-    var extra;
-    for (var i = 0; i < plotNames.length; i++) {
-        plot_info = plots_info.plots[plotNames[i]];
-        minmax = _.unzip(_.map(plot_info.traces, function (e, i, l) {
-            // return the minimum for this traces data
-            var this_min = _.min(graphDiv.data[traceIdx + i]['y']);
-            var this_max = _.max(graphDiv.data[traceIdx + i]['y']);
-            return [this_min, this_max];
-        }));
-        min = _.min(minmax[0]);
-        max = _.max(minmax[1]);
-
-        traceIdx += plot_info.traces.length;
-
-        // Custom data we added to the trace information
-        var axis_info = plot_info.yaxis;
-        yaxis_number += 1;
-        yaxis_name = yaxis_name_1 = "yaxis" + yaxis_number;
-        if (yaxis_number == 1) {
-            yaxis_name = yaxis_name_1 = "yaxis";
-        }
-        if ('tickvals' in axis_info && 'ticktext' in axis_info) {
-            // everything specified in config
-            layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];
-            layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];
-            layout[yaxis_name + '.range'] = axis_info['range'];
-        } else {
-            // figure the axis ticks
-            if (min == max) {
-                min -= 0.02;
-                max += 1.02;
-            }
-            layout[yaxis_name + '.tickvals'] = tickVals = ticktext.getTickVals(min, max, axis_info.step);
-            layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);
-            // Add a limit extra space on the top and bottom of each plot for a better look
-            extra = (tickVals[tickVals.length - 1] - tickVals[0]) * 0.05;
-            layout[yaxis_name + '.range'] = [tickVals[0] - extra, tickVals[tickVals.length - 1] + extra];
-        }
-
-        if ('yaxis2' in plot_info) {
-            axis_info = plot_info.yaxis2;
-            yaxis_number += 1;
-            yaxis_name = "yaxis" + yaxis_number;
-
-            if ('tickvals' in axis_info && 'ticktext' in axis_info) {
-                // everything specified in config
-                layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];
-                layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];
-                layout[yaxis_name + '.range'] = axis_info['range'];
-            } else {
-                // We want to match the 'main' axis ticks
-                layout[yaxis_name + '.tickvals'] = layout[yaxis_name_1 + '.tickvals'];
-                layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);
-                layout[yaxis_name + '.range'] = layout[yaxis_name_1 + '.range'];
-            }
-        }
-    }
-
-    Plotly.relayout(graphDiv, layout);
-}
-
-function updatePlot(graphDiv, plotsInfo, dataObj, update) {
-    replaceData(graphDiv, plotsInfo, dataObj, update);
-    updateAxes(graphDiv, plotsInfo);
-}
-
-module.exports.updatePlot = updatePlot;
-
-/***/ })
-/******/ ]);
-//# sourceMappingURL=meteorogram.js.map
\ No newline at end of file
diff --git a/htdocs/js/meteorogram/meteorogram.js.map b/htdocs/js/meteorogram/meteorogram.js.map
deleted file mode 100644
index 39b788738cd67c6f62ce97e42a519bac1efb542e..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/meteorogram.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///webpack/bootstrap b2d3cda798553b30cd06","webpack:///./ui/loading.js","webpack:///./node_modules/underscore/underscore.js","webpack:///./node_modules/es5-ext/object/is-value.js","webpack:///./plot/ticks.js","webpack:///./node_modules/process/browser.js","webpack:///./plot/data.js","webpack:///./controller.js","webpack:///./ui/buttons.js","webpack:///./ui/button_template.js","webpack:///./dispatcher.js","webpack:///./node_modules/event-emitter/index.js","webpack:///./node_modules/d/index.js","webpack:///./node_modules/es5-ext/object/assign/index.js","webpack:///./node_modules/es5-ext/object/assign/is-implemented.js","webpack:///./node_modules/es5-ext/object/assign/shim.js","webpack:///./node_modules/es5-ext/object/keys/index.js","webpack:///./node_modules/es5-ext/object/keys/is-implemented.js","webpack:///./node_modules/es5-ext/object/keys/shim.js","webpack:///./node_modules/es5-ext/function/noop.js","webpack:///./node_modules/es5-ext/object/valid-value.js","webpack:///./node_modules/es5-ext/object/normalize-options.js","webpack:///./node_modules/es5-ext/object/is-callable.js","webpack:///./node_modules/es5-ext/string/#/contains/index.js","webpack:///./node_modules/es5-ext/string/#/contains/is-implemented.js","webpack:///./node_modules/es5-ext/string/#/contains/shim.js","webpack:///./node_modules/es5-ext/object/valid-callable.js","webpack:///./node_modules/flux/index.js","webpack:///./node_modules/flux/lib/Dispatcher.js","webpack:///./node_modules/fbjs/lib/invariant.js","webpack:///./plot/init.js","webpack:///./plot/table.js","webpack:///./plot/update.js"],"names":["loading","disable","$","prop","enable","getDate","dateString","timeString","year","parseInt","substring","month","day","hour","minute","seconds","date","Date","enablePlot","disablePlot","checkFields","startDate","endDate","startTime","endTime","interval","selected","text","start","end","diff","intervalVal","data","Math","floor","points","html","toString","attr","checkInterval","val","module","exports","_","require","String","prototype","format","args","arguments","replace","match","number","getWaterTempProbe","plotInfo","traceInfo","allData","allProbeText","probeText","row","col","rowText","depth","j","length","y","i","toFixed","name","getF","push","getSpeedMPH","getSpeedKTS","getPresInHg","getAccumMillimeter","cardinalWDir","degrees","getVal","CONVERSION_FUNCTIONS","null","undefined","formatValue","val2","yaxis2","convert_value","precision","yaxis","units","getDewpointProbe","relHum","anc_variables","rh_info","anc_info","defaultProbeText","PROBE_TEXT_FUNCTIONS","dewpoint","water_temp","getProbeText","probe_text","getTickText","values","axis_info","tickText","getTickVals","min","max","bump","extra","step","range","updatePlot","processData","dataObj","dates","map","timestamps","extend","plotting","url","var_names","plotsInfo","div","update","ajax","type","jsonp","dataType","success","graphDiv","document","getElementById","existingDates","console","warn","startIndex","info","slice","buildRequestUrl","epoch","sep","order","time","streams","request_url","METOBS_API_URL","intervalLookUp","varNamesForDiv","varNames","each","trace_data","Array","apply","requestPlotUpdate","stream_string","time_parts","split","Number","dt_in_ms","customPlot","userInfo","startParts","endParts","setTimeout","buildFormInDiv","Dispatcher","API","controlDiv","myDispatcher","getDispatcher","plotDiv","initMeteorogram","plot_div","plotOrder","hasGraph","dispatch","initMeteorogramTable","table_div","hasTable","tableDiv","initMeteorogramControls","displayRealTime","showPlot","varName","status","hidePlot","displayRecent","start_time","displayTimeRange","stop_time","window","MeteorogramController","controlPanelTemplate","dispatchCustom","dispatcher","join","getUserInfo","dispatchUpdate","dropDown","selectedText","log","timeDelta","bind_daterange_actions","jQ_div","click","change","set_active_form","which_block","set_form_datepickers","datetimepicker","changeMonth","changeYear","dateFormat","timeFormat","showSecond","showMillisec","showMicrosec","trigger","setup_all_forms","append","ready","checkboxTemplates","ee","Flux","Plot","Table","dataAccess","GRAPH_HEIGHT","checkboxEmitter","visible","setPlots","plot_key","setShowing","plotName","showing","getShowing","handleActions","action","emit","location","dispatchToken","register","bind","plotEmitter","waitFor","defaultPlots","debug","stopUpdate","progress","Object","validID","id","clearInterval","updateInterval","startUpdate","intervalID","setInterval","on","initTable","requestTableUpdate","initPlot","ticktext","div_id","DEFAULT_PLOT_HEIGHT","nshowing","layout","title","showlegend","height","domain","showline","zeroline","showticklabels","gridcolor","showgrid","tickformat","axis_number","plot_info","trace_info","trace_config","axis_config","key","trace_kwargs","plot_idx","plots","trace_info_idx","traces","x","xaxis","hoverinfo","hovermode","anc_data","plot_name","trace_index","idx","colorbar","len","z","titlefont","overlaying","side","anchor","toolbar","Plotly","newPlot","updateData","table","tbody","children","add_contour_rows","info_td","addClass","short_name","add_anc_rows","anc_info_idx","anc_idx","title_row","hightlight_idx","y_highlight","hightlight_idx_idx","hl_idx","data_cells","convert_cells","trace_idx","trace","indexOf","test_time","updateTable","results","td_idx","num_results","update_contour_cells","update_val","convert","old_precision","orig_val","convert_units","convert_val","innerHTML","update_anc_cells","zprobe","zprobe2","anc_key","plotsInDiv","plotNames","elem","replaceData","trace_anc_data","ancHandled","plotHandled","updateChanges","traceIndex","index","var_name","data_elem","shift","anc_name","anc_index","includes","data_index","new_anc_data","thisData","restyle","updateAxes","plots_info","traceIdx","minmax","yaxis_number","yaxis_name","yaxis_name_1","tickVals","unzip","e","l","this_min","this_max","relayout"],"mappings":"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CA;;AAEE;AACHlB,aAAYC,SAAZ,EAAuBC,OAAvB,EAAgCC,SAAhC,EAA2CC,OAA3C,EAAoDC,QAApD;AACA;;AAEDgB,OAAOC,OAAP,CAAe1C,OAAf,GAAyBA,OAAzB;AACAyC,OAAOC,OAAP,CAAezC,OAAf,GAAyBA,OAAzB;AACAwC,OAAOC,OAAP,CAAetC,MAAf,GAAwBA,MAAxB;AACAqC,OAAOC,OAAP,CAAeH,aAAf,GAA+BA,aAA/B,C;;;;;;AC5MA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,yBAAyB,gBAAgB;AACzC;AACA;AACA;AACA,uBAAuB,OAAO;AAC9B;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,YAAY;AAClD;AACA;AACA,KAAK;AACL;AACA,uCAAuC,YAAY;AACnD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAY,8BAA8B;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,YAAY;AACtD;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,6BAA6B,gBAAgB;AAC7C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;AACA,oDAAoD;AACpD,GAAG;;AAEH;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,0CAA0C;AAC1C,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,4DAA4D,YAAY;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C,YAAY;AAC1D;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,8CAA8C,YAAY;AAC1D;AACA;AACA,qBAAqB,gBAAgB;AACrC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,uBAAuB,gBAAgB;AACvC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,6CAA6C,YAAY;AACzD;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAY,8BAA8B;AAC1C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sDAAsD;AACtD;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,0BAA0B;AACpE;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA,qBAAqB,cAAc;AACnC;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB,YAAY;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,YAAY;AAC3B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAAO,eAAe;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,qBAAqB,eAAe;AACpC;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB;AACtB;AACA,yBAAyB,gBAAgB;AACzC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,4CAA4C,mBAAmB;AAC/D;AACA;AACA,yCAAyC,YAAY;AACrD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,qDAAqD;AACrD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,YAAY;AAC/B;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6EAA6E;AAC7E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA,qCAAqC;AACrC;AACA;AACA;;AAEA;AACA;AACA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,mBAAmB,OAAO;AAC1B;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,eAAe;AACf,cAAc;AACd,cAAc;AACd,gBAAgB;AAChB,gBAAgB;AAChB,gBAAgB;AAChB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,4BAA4B;;AAE5B;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,OAAO;AACP;AACA,OAAO;AACP,qBAAqB;AACrB;;AAEA;AACA;AACA,KAAK;AACL,iBAAiB;;AAEjB;AACA,kDAAkD,EAAE,iBAAiB;;AAErE;AACA,wBAAwB,8BAA8B;AACtD,2BAA2B;;AAE3B;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,kDAAkD,iBAAiB;;AAEnE;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AAAA;AACL;AACA,CAAC;;;;;;;;AC3gDD;;AAEA,2CAA+C;;AAE/C;AACA;AACA;;;;;;;;ACNA;;AACA,IAAII,IAAI,mBAAAC,CAAQ,CAAR,CAAR;;AAEA;AACA,IAAI,CAACC,OAAOC,SAAP,CAAiBC,MAAtB,EAA8B;AAC5BF,WAAOC,SAAP,CAAiBC,MAAjB,GAA0B,YAAW;AACnC,YAAIC,OAAOC,SAAX;AACA,eAAO,KAAKC,OAAL,CAAa,UAAb,EAAyB,UAASC,KAA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IAAzB,CAAP;AACH;;AAGDnE,OAAOC,OAAP,CAAe6D,WAAf,GAA6BA,WAA7B;AACA9D,OAAOC,OAAP,CAAeuD,YAAf,GAA8BA,YAA9B;AACAxD,OAAOC,OAAP,CAAeyD,WAAf,GAA6BA,WAA7B,C;;;;;;AC1MA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;;;;AAIA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBAAuB,sBAAsB;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qCAAqC;;AAErC;AACA;AACA;;AAEA,2BAA2B;AAC3B;AACA;AACA;AACA,4BAA4B,UAAU;;;;;;;;ACvLtC;;AACA,IAAIW,aAAa,mBAAAlE,CAAQ,EAAR,CAAjB;AACA,IAAI5C,UAAU,mBAAA4C,CAAQ,CAAR,CAAd;AA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AEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,OAAO;;AAEpB;AACA,aAAa,2BAA2B;AACxC;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,cAAc,OAAO;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,0BAA0B;;AAE1B;AACA;AACA;AACA;;;;;;;;ACnIA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;;AAEA,SAAS;AACT;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA,EAAE;AACF;AACA,EAAE;AACF;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;;AAEA,SAAS;AACT;AACA;;;;;;;;AC9DA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;AACA;AACA;AACA,QAAQ;AACR,cAAc,aAAa,GAAG,eAAe;AAC7C;AACA;;;;;;;;ACRA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,YAAY,YAAY;AACxB;AACA;AACA;AACA;AACA;AACA;;;;;;;;ACtBA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;AACA;;;;;;;;ACTA;;AAEA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACRA;;AAEA;AACA;;;;;;;;ACHA;;AAEA;;AAEA;AACA;AACA;AACA;;;;;;;;ACPA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,EAAE;AACF;AACA;;;;;;;;ACnBA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACNA;;AAEA;AACA;AACA;;;;;;;;ACJA;;AAEA;;AAEA;AACA;AACA;AACA;;;;;;;;ACPA;;AAEA;;AAEA;AACA;AACA;;;;;;;;ACNA;;AAEA;AACA;AACA;AACA;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA,iDAAiD,0CAA0C,0DAA0D,EAAE;;AAEvJ;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB;AACzB;AACA;AACA,sBAAsB;AACtB;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,oBAAoB,iBAAiB;AACrC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;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","file":"meteorogram.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 6);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap b2d3cda798553b30cd06","\"use strict\";\n//var $ = require('jquery');\n\n/**\n* The purpose of this function is to either hide the graph and show the loading\n* spinner or to hide the loading spinner and show the graph\n* no parameters or returns\n*/\n\nfunction loading()\n{\n    return;\n    //$(\"#progress\").toggle();\n    //$(\"#graph\").toggle();\n}\n\n/**\n* The point of this method is to disable the custom area of the meteorogram\n* header\n*\n* no params\n* no returns\n*/\n\nfunction disable()\n{\n\t//disable custom rows\n\t$('#Start-date-picker').prop(\"disabled\", true);\n\t$('#Start-time-picker').prop(\"disabled\", true);\n\t$('#End-date-picker').prop(\"disabled\", true);\n\t$('#End-time-picker').prop(\"disabled\", true);\n\t$('#interval').prop(\"disabled\", true);\n\t$('#Plot').prop(\"disabled\", true);\n}\n\n/**\n* The purpose of this method is to enable the custom area of the meteorogram\n* header\n*\n* no params\n* no returns\n*/\n\nfunction enable()\n{\n\t//enable custom rows\n\t$('#Start-date-picker').prop(\"disabled\", false);\n\t$('#Start-time-picker').prop(\"disabled\", false);\n\t$('#End-date-picker').prop(\"disabled\", false);\n\t$('#End-time-picker').prop(\"disabled\", false);\n\t$('#interval').prop(\"disabled\", false);\n}\n\n/**\n* The purpose of this function is to take a date string and a time string and turn that\n* into a date JS object\n*\n* @param dateString - \"MM/DD/YYYY\"\n* @param timeString - \"HH-MM-SS\"\n* @return date object\n*/\n\nfunction getDate(dateString, timeString)\n{\n\t//get date string\n\tvar year = parseInt(dateString.substring(6,10));\n\tvar month = parseInt(dateString.substring(0,3));\n\tvar day = parseInt(dateString.substring(3,5));\n\tvar hour = parseInt(timeString.substring(0,2));\n\tvar minute = parseInt(timeString.substring(3,5));\n\tvar seconds = parseInt(timeString.substring(6,8));\n\n    //return date variable\n    var date = new Date(year, month, day, hour, minute, seconds);\n\n    return date;\n}\n\n/**\n* The purpose of this method is to make sure each field is valid and does\n* not result in too much or too less data points being plotted\n* @param start date - the date the user wants to start at\n* @param time user wants to start at\n* @param end Date - the date user wants to stop at\n* @param end Time - the time the user wants to stop at\n* @param interval - how many seconds averaged does the user want\n* no returns\n*/\n\n/**\n* The purpsoe of this method is to enable the plot button\n*\n* no params\n* no returns\n*/\n\nfunction enablePlot()\n{\n\t//enable plot button\n\t$('#Plot').prop(\"disabled\", false);\n}\n\n/**\n* The purpose of this method is to disable the plot button\n*\n* no params\n* no returns\n*/\n\nfunction disablePlot()\n{\n\t//disable plot button\n\t$('#Plot').prop(\"disabled\", true);\n}\n\nfunction checkFields(startDate, endDate, startTime, endTime, interval)\n{\n\t//get user information from selected drop down\n\tvar selected = $('#interval option:selected');\n\n    //give user time to fill out other fields\n\tif(selected.text() == '--');\n\n\telse\n\t{\n\t\t//get information to create a message to the user saying approx how many pts\n\t\t//they are plotting\n        var start = getDate(startDate, startTime);\n        var end = getDate(endDate, endTime);\n        var selected = $('#interval option:selected');\n        var diff = (end - start)/1000;\n        var intervalVal = selected.data(\"seconds\");\n        diff = Math.floor(diff/intervalVal);\n        var points = diff/interval;\n\n        //if too few points, tell user\n        if(diff >= 0 && diff < 60)\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() \n        \t\t + ' data points; that\\'s too few - please try again');\n\t\t\t$('#default').attr('selected', 'selected');\n\t\t\tdisablePlot();\n        }\n\n        //if the user accidentally mixed up start and end dates, politely tell them\n        else if(diff < 0)\n        {\n        \t$('#prompt_user').html('The end date is before the start date. Please choose a later end date.');\n\t\t\t$('#default').attr('selected', 'selected');\n        }\n\n        //if too many points, tell user\n        else if(diff > 1000)\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '\n        \t\t+ diff.toString() + ' data points; that\\'s too many - please try again');\n\t\t\t$('#default').attr('selected', 'selected');\n\t\t\tdisablePlot();\n        }\n\n        //else we enable the plot button and tell user how many points they're plotting\n        else\n        {\n        \t$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '\n        \t\t+ diff.toString() + ' data points.');\n\n\t\t\tenablePlot();\n        }\n\n\t}\n}\n\n/**\n* The purpose of this method is to make sure all the fields and intervals selected are valid\n*\n* No parameters\n* No returns\n*/\n\nfunction checkInterval()\n{\n\tvar startDate = $('#Start-date-picker').val();\n\tvar endDate = $('#End-date-picker').val();\n\tvar startTime = $('#Start-time-picker').val();\n\tvar endTime = $('#End-time-picker').val();\n\tvar interval = $('#interval');\n\n\t//get user information from selected drop down\n\tvar selected = $('#interval option:selected');\n\n    //check if any fields are not filled out\n\tif((!startDate || !endDate || !startTime || !endTime) && selected.text() != '--')\n\t{\n\t\t$('#prompt_user').html('Please fill out all other fields before filling out the interval field');\n\t\t$('#default').attr('selected', 'selected');\n\t}\n\n    //check to see if fields are ok\n\tcheckFields(startDate, endDate, startTime, endTime, interval);\n}\n\nmodule.exports.loading = loading;\nmodule.exports.disable = disable;\nmodule.exports.enable = enable;\nmodule.exports.checkInterval = checkInterval;\n\n\n\n// WEBPACK FOOTER //\n// ./ui/loading.js","//     Underscore.js 1.8.3\n//     http://underscorejs.org\n//     (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n//     Underscore may be freely distributed under the MIT license.\n\n(function() {\n\n  // Baseline setup\n  // --------------\n\n  // Establish the root object, `window` in the browser, or `exports` on the server.\n  var root = this;\n\n  // Save the previous value of the `_` variable.\n  var previousUnderscore = root._;\n\n  // Save bytes in the minified (but not gzipped) version:\n  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;\n\n  // Create quick reference variables for speed access to core prototypes.\n  var\n    push             = ArrayProto.push,\n    slice            = ArrayProto.slice,\n    toString         = ObjProto.toString,\n    hasOwnProperty   = ObjProto.hasOwnProperty;\n\n  // All **ECMAScript 5** native function implementations that we hope to use\n  // are declared here.\n  var\n    nativeIsArray      = Array.isArray,\n    nativeKeys         = Object.keys,\n    nativeBind         = FuncProto.bind,\n    nativeCreate       = Object.create;\n\n  // Naked function reference for surrogate-prototype-swapping.\n  var Ctor = function(){};\n\n  // Create a safe reference to the Underscore object for use below.\n  var _ = function(obj) {\n    if (obj instanceof _) return obj;\n    if (!(this instanceof _)) return new _(obj);\n    this._wrapped = obj;\n  };\n\n  // Export the Underscore object for **Node.js**, with\n  // backwards-compatibility for the old `require()` API. If we're in\n  // the browser, add `_` as a global object.\n  if (typeof exports !== 'undefined') {\n    if (typeof module !== 'undefined' && module.exports) {\n      exports = module.exports = _;\n    }\n    exports._ = _;\n  } else {\n    root._ = _;\n  }\n\n  // Current version.\n  _.VERSION = '1.8.3';\n\n  // Internal function that returns an efficient (for current engines) version\n  // of the passed-in callback, to be repeatedly applied in other Underscore\n  // functions.\n  var optimizeCb = function(func, context, argCount) {\n    if (context === void 0) return func;\n    switch (argCount == null ? 3 : argCount) {\n      case 1: return function(value) {\n        return func.call(context, value);\n      };\n      case 2: return function(value, other) {\n        return func.call(context, value, other);\n      };\n      case 3: return function(value, index, collection) {\n        return func.call(context, value, index, collection);\n      };\n      case 4: return function(accumulator, value, index, collection) {\n        return func.call(context, accumulator, value, index, collection);\n      };\n    }\n    return function() {\n      return func.apply(context, arguments);\n    };\n  };\n\n  // A mostly-internal function to generate callbacks that can be applied\n  // to each element in a collection, returning the desired result — either\n  // identity, an arbitrary callback, a property matcher, or a property accessor.\n  var cb = function(value, context, argCount) {\n    if (value == null) return _.identity;\n    if (_.isFunction(value)) return optimizeCb(value, context, argCount);\n    if (_.isObject(value)) return _.matcher(value);\n    return _.property(value);\n  };\n  _.iteratee = function(value, context) {\n    return cb(value, context, Infinity);\n  };\n\n  // An internal function for creating assigner functions.\n  var createAssigner = function(keysFunc, undefinedOnly) {\n    return function(obj) {\n      var length = arguments.length;\n      if (length < 2 || obj == null) return obj;\n      for (var index = 1; index < length; index++) {\n        var source = arguments[index],\n            keys = keysFunc(source),\n            l = keys.length;\n        for (var i = 0; i < l; i++) {\n          var key = keys[i];\n          if (!undefinedOnly || obj[key] === void 0) obj[key] = source[key];\n        }\n      }\n      return obj;\n    };\n  };\n\n  // An internal function for creating a new object that inherits from another.\n  var baseCreate = function(prototype) {\n    if (!_.isObject(prototype)) return {};\n    if (nativeCreate) return nativeCreate(prototype);\n    Ctor.prototype = prototype;\n    var result = new Ctor;\n    Ctor.prototype = null;\n    return result;\n  };\n\n  var property = function(key) {\n    return function(obj) {\n      return obj == null ? void 0 : obj[key];\n    };\n  };\n\n  // Helper for collection methods to determine whether a collection\n  // should be iterated as an array or as an object\n  // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n  // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094\n  var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;\n  var getLength = property('length');\n  var isArrayLike = function(collection) {\n    var length = getLength(collection);\n    return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;\n  };\n\n  // Collection Functions\n  // --------------------\n\n  // The cornerstone, an `each` implementation, aka `forEach`.\n  // Handles raw objects in addition to array-likes. Treats all\n  // sparse array-likes as if they were dense.\n  _.each = _.forEach = function(obj, iteratee, context) {\n    iteratee = optimizeCb(iteratee, context);\n    var i, length;\n    if (isArrayLike(obj)) {\n      for (i = 0, length = obj.length; i < length; i++) {\n        iteratee(obj[i], i, obj);\n      }\n    } else {\n      var keys = _.keys(obj);\n      for (i = 0, length = keys.length; i < length; i++) {\n        iteratee(obj[keys[i]], keys[i], obj);\n      }\n    }\n    return obj;\n  };\n\n  // Return the results of applying the iteratee to each element.\n  _.map = _.collect = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length,\n        results = Array(length);\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      results[index] = iteratee(obj[currentKey], currentKey, obj);\n    }\n    return results;\n  };\n\n  // Create a reducing function iterating left or right.\n  function createReduce(dir) {\n    // Optimized iterator function as using arguments.length\n    // in the main function will deoptimize the, see #1991.\n    function iterator(obj, iteratee, memo, keys, index, length) {\n      for (; index >= 0 && index < length; index += dir) {\n        var currentKey = keys ? keys[index] : index;\n        memo = iteratee(memo, obj[currentKey], currentKey, obj);\n      }\n      return memo;\n    }\n\n    return function(obj, iteratee, memo, context) {\n      iteratee = optimizeCb(iteratee, context, 4);\n      var keys = !isArrayLike(obj) && _.keys(obj),\n          length = (keys || obj).length,\n          index = dir > 0 ? 0 : length - 1;\n      // Determine the initial value if none is provided.\n      if (arguments.length < 3) {\n        memo = obj[keys ? keys[index] : index];\n        index += dir;\n      }\n      return iterator(obj, iteratee, memo, keys, index, length);\n    };\n  }\n\n  // **Reduce** builds up a single result from a list of values, aka `inject`,\n  // or `foldl`.\n  _.reduce = _.foldl = _.inject = createReduce(1);\n\n  // The right-associative version of reduce, also known as `foldr`.\n  _.reduceRight = _.foldr = createReduce(-1);\n\n  // Return the first value which passes a truth test. Aliased as `detect`.\n  _.find = _.detect = function(obj, predicate, context) {\n    var key;\n    if (isArrayLike(obj)) {\n      key = _.findIndex(obj, predicate, context);\n    } else {\n      key = _.findKey(obj, predicate, context);\n    }\n    if (key !== void 0 && key !== -1) return obj[key];\n  };\n\n  // Return all the elements that pass a truth test.\n  // Aliased as `select`.\n  _.filter = _.select = function(obj, predicate, context) {\n    var results = [];\n    predicate = cb(predicate, context);\n    _.each(obj, function(value, index, list) {\n      if (predicate(value, index, list)) results.push(value);\n    });\n    return results;\n  };\n\n  // Return all the elements for which a truth test fails.\n  _.reject = function(obj, predicate, context) {\n    return _.filter(obj, _.negate(cb(predicate)), context);\n  };\n\n  // Determine whether all of the elements match a truth test.\n  // Aliased as `all`.\n  _.every = _.all = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length;\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      if (!predicate(obj[currentKey], currentKey, obj)) return false;\n    }\n    return true;\n  };\n\n  // Determine if at least one element in the object matches a truth test.\n  // Aliased as `any`.\n  _.some = _.any = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = !isArrayLike(obj) && _.keys(obj),\n        length = (keys || obj).length;\n    for (var index = 0; index < length; index++) {\n      var currentKey = keys ? keys[index] : index;\n      if (predicate(obj[currentKey], currentKey, obj)) return true;\n    }\n    return false;\n  };\n\n  // Determine if the array or object contains a given item (using `===`).\n  // Aliased as `includes` and `include`.\n  _.contains = _.includes = _.include = function(obj, item, fromIndex, guard) {\n    if (!isArrayLike(obj)) obj = _.values(obj);\n    if (typeof fromIndex != 'number' || guard) fromIndex = 0;\n    return _.indexOf(obj, item, fromIndex) >= 0;\n  };\n\n  // Invoke a method (with arguments) on every item in a collection.\n  _.invoke = function(obj, method) {\n    var args = slice.call(arguments, 2);\n    var isFunc = _.isFunction(method);\n    return _.map(obj, function(value) {\n      var func = isFunc ? method : value[method];\n      return func == null ? func : func.apply(value, args);\n    });\n  };\n\n  // Convenience version of a common use case of `map`: fetching a property.\n  _.pluck = function(obj, key) {\n    return _.map(obj, _.property(key));\n  };\n\n  // Convenience version of a common use case of `filter`: selecting only objects\n  // containing specific `key:value` pairs.\n  _.where = function(obj, attrs) {\n    return _.filter(obj, _.matcher(attrs));\n  };\n\n  // Convenience version of a common use case of `find`: getting the first object\n  // containing specific `key:value` pairs.\n  _.findWhere = function(obj, attrs) {\n    return _.find(obj, _.matcher(attrs));\n  };\n\n  // Return the maximum element (or element-based computation).\n  _.max = function(obj, iteratee, context) {\n    var result = -Infinity, lastComputed = -Infinity,\n        value, computed;\n    if (iteratee == null && obj != null) {\n      obj = isArrayLike(obj) ? obj : _.values(obj);\n      for (var i = 0, length = obj.length; i < length; i++) {\n        value = obj[i];\n        if (value > result) {\n          result = value;\n        }\n      }\n    } else {\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index, list) {\n        computed = iteratee(value, index, list);\n        if (computed > lastComputed || computed === -Infinity && result === -Infinity) {\n          result = value;\n          lastComputed = computed;\n        }\n      });\n    }\n    return result;\n  };\n\n  // Return the minimum element (or element-based computation).\n  _.min = function(obj, iteratee, context) {\n    var result = Infinity, lastComputed = Infinity,\n        value, computed;\n    if (iteratee == null && obj != null) {\n      obj = isArrayLike(obj) ? obj : _.values(obj);\n      for (var i = 0, length = obj.length; i < length; i++) {\n        value = obj[i];\n        if (value < result) {\n          result = value;\n        }\n      }\n    } else {\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index, list) {\n        computed = iteratee(value, index, list);\n        if (computed < lastComputed || computed === Infinity && result === Infinity) {\n          result = value;\n          lastComputed = computed;\n        }\n      });\n    }\n    return result;\n  };\n\n  // Shuffle a collection, using the modern version of the\n  // [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher–Yates_shuffle).\n  _.shuffle = function(obj) {\n    var set = isArrayLike(obj) ? obj : _.values(obj);\n    var length = set.length;\n    var shuffled = Array(length);\n    for (var index = 0, rand; index < length; index++) {\n      rand = _.random(0, index);\n      if (rand !== index) shuffled[index] = shuffled[rand];\n      shuffled[rand] = set[index];\n    }\n    return shuffled;\n  };\n\n  // Sample **n** random values from a collection.\n  // If **n** is not specified, returns a single random element.\n  // The internal `guard` argument allows it to work with `map`.\n  _.sample = function(obj, n, guard) {\n    if (n == null || guard) {\n      if (!isArrayLike(obj)) obj = _.values(obj);\n      return obj[_.random(obj.length - 1)];\n    }\n    return _.shuffle(obj).slice(0, Math.max(0, n));\n  };\n\n  // Sort the object's values by a criterion produced by an iteratee.\n  _.sortBy = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    return _.pluck(_.map(obj, function(value, index, list) {\n      return {\n        value: value,\n        index: index,\n        criteria: iteratee(value, index, list)\n      };\n    }).sort(function(left, right) {\n      var a = left.criteria;\n      var b = right.criteria;\n      if (a !== b) {\n        if (a > b || a === void 0) return 1;\n        if (a < b || b === void 0) return -1;\n      }\n      return left.index - right.index;\n    }), 'value');\n  };\n\n  // An internal function used for aggregate \"group by\" operations.\n  var group = function(behavior) {\n    return function(obj, iteratee, context) {\n      var result = {};\n      iteratee = cb(iteratee, context);\n      _.each(obj, function(value, index) {\n        var key = iteratee(value, index, obj);\n        behavior(result, value, key);\n      });\n      return result;\n    };\n  };\n\n  // Groups the object's values by a criterion. Pass either a string attribute\n  // to group by, or a function that returns the criterion.\n  _.groupBy = group(function(result, value, key) {\n    if (_.has(result, key)) result[key].push(value); else result[key] = [value];\n  });\n\n  // Indexes the object's values by a criterion, similar to `groupBy`, but for\n  // when you know that your index values will be unique.\n  _.indexBy = group(function(result, value, key) {\n    result[key] = value;\n  });\n\n  // Counts instances of an object that group by a certain criterion. Pass\n  // either a string attribute to count by, or a function that returns the\n  // criterion.\n  _.countBy = group(function(result, value, key) {\n    if (_.has(result, key)) result[key]++; else result[key] = 1;\n  });\n\n  // Safely create a real, live array from anything iterable.\n  _.toArray = function(obj) {\n    if (!obj) return [];\n    if (_.isArray(obj)) return slice.call(obj);\n    if (isArrayLike(obj)) return _.map(obj, _.identity);\n    return _.values(obj);\n  };\n\n  // Return the number of elements in an object.\n  _.size = function(obj) {\n    if (obj == null) return 0;\n    return isArrayLike(obj) ? obj.length : _.keys(obj).length;\n  };\n\n  // Split a collection into two arrays: one whose elements all satisfy the given\n  // predicate, and one whose elements all do not satisfy the predicate.\n  _.partition = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var pass = [], fail = [];\n    _.each(obj, function(value, key, obj) {\n      (predicate(value, key, obj) ? pass : fail).push(value);\n    });\n    return [pass, fail];\n  };\n\n  // Array Functions\n  // ---------------\n\n  // Get the first element of an array. Passing **n** will return the first N\n  // values in the array. Aliased as `head` and `take`. The **guard** check\n  // allows it to work with `_.map`.\n  _.first = _.head = _.take = function(array, n, guard) {\n    if (array == null) return void 0;\n    if (n == null || guard) return array[0];\n    return _.initial(array, array.length - n);\n  };\n\n  // Returns everything but the last entry of the array. Especially useful on\n  // the arguments object. Passing **n** will return all the values in\n  // the array, excluding the last N.\n  _.initial = function(array, n, guard) {\n    return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n)));\n  };\n\n  // Get the last element of an array. Passing **n** will return the last N\n  // values in the array.\n  _.last = function(array, n, guard) {\n    if (array == null) return void 0;\n    if (n == null || guard) return array[array.length - 1];\n    return _.rest(array, Math.max(0, array.length - n));\n  };\n\n  // Returns everything but the first entry of the array. Aliased as `tail` and `drop`.\n  // Especially useful on the arguments object. Passing an **n** will return\n  // the rest N values in the array.\n  _.rest = _.tail = _.drop = function(array, n, guard) {\n    return slice.call(array, n == null || guard ? 1 : n);\n  };\n\n  // Trim out all falsy values from an array.\n  _.compact = function(array) {\n    return _.filter(array, _.identity);\n  };\n\n  // Internal implementation of a recursive `flatten` function.\n  var flatten = function(input, shallow, strict, startIndex) {\n    var output = [], idx = 0;\n    for (var i = startIndex || 0, length = getLength(input); i < length; i++) {\n      var value = input[i];\n      if (isArrayLike(value) && (_.isArray(value) || _.isArguments(value))) {\n        //flatten current level of array or arguments object\n        if (!shallow) value = flatten(value, shallow, strict);\n        var j = 0, len = value.length;\n        output.length += len;\n        while (j < len) {\n          output[idx++] = value[j++];\n        }\n      } else if (!strict) {\n        output[idx++] = value;\n      }\n    }\n    return output;\n  };\n\n  // Flatten out an array, either recursively (by default), or just one level.\n  _.flatten = function(array, shallow) {\n    return flatten(array, shallow, false);\n  };\n\n  // Return a version of the array that does not contain the specified value(s).\n  _.without = function(array) {\n    return _.difference(array, slice.call(arguments, 1));\n  };\n\n  // Produce a duplicate-free version of the array. If the array has already\n  // been sorted, you have the option of using a faster algorithm.\n  // Aliased as `unique`.\n  _.uniq = _.unique = function(array, isSorted, iteratee, context) {\n    if (!_.isBoolean(isSorted)) {\n      context = iteratee;\n      iteratee = isSorted;\n      isSorted = false;\n    }\n    if (iteratee != null) iteratee = cb(iteratee, context);\n    var result = [];\n    var seen = [];\n    for (var i = 0, length = getLength(array); i < length; i++) {\n      var value = array[i],\n          computed = iteratee ? iteratee(value, i, array) : value;\n      if (isSorted) {\n        if (!i || seen !== computed) result.push(value);\n        seen = computed;\n      } else if (iteratee) {\n        if (!_.contains(seen, computed)) {\n          seen.push(computed);\n          result.push(value);\n        }\n      } else if (!_.contains(result, value)) {\n        result.push(value);\n      }\n    }\n    return result;\n  };\n\n  // Produce an array that contains the union: each distinct element from all of\n  // the passed-in arrays.\n  _.union = function() {\n    return _.uniq(flatten(arguments, true, true));\n  };\n\n  // Produce an array that contains every item shared between all the\n  // passed-in arrays.\n  _.intersection = function(array) {\n    var result = [];\n    var argsLength = arguments.length;\n    for (var i = 0, length = getLength(array); i < length; i++) {\n      var item = array[i];\n      if (_.contains(result, item)) continue;\n      for (var j = 1; j < argsLength; j++) {\n        if (!_.contains(arguments[j], item)) break;\n      }\n      if (j === argsLength) result.push(item);\n    }\n    return result;\n  };\n\n  // Take the difference between one array and a number of other arrays.\n  // Only the elements present in just the first array will remain.\n  _.difference = function(array) {\n    var rest = flatten(arguments, true, true, 1);\n    return _.filter(array, function(value){\n      return !_.contains(rest, value);\n    });\n  };\n\n  // Zip together multiple lists into a single array -- elements that share\n  // an index go together.\n  _.zip = function() {\n    return _.unzip(arguments);\n  };\n\n  // Complement of _.zip. Unzip accepts an array of arrays and groups\n  // each array's elements on shared indices\n  _.unzip = function(array) {\n    var length = array && _.max(array, getLength).length || 0;\n    var result = Array(length);\n\n    for (var index = 0; index < length; index++) {\n      result[index] = _.pluck(array, index);\n    }\n    return result;\n  };\n\n  // Converts lists into objects. Pass either a single array of `[key, value]`\n  // pairs, or two parallel arrays of the same length -- one of keys, and one of\n  // the corresponding values.\n  _.object = function(list, values) {\n    var result = {};\n    for (var i = 0, length = getLength(list); i < length; i++) {\n      if (values) {\n        result[list[i]] = values[i];\n      } else {\n        result[list[i][0]] = list[i][1];\n      }\n    }\n    return result;\n  };\n\n  // Generator function to create the findIndex and findLastIndex functions\n  function createPredicateIndexFinder(dir) {\n    return function(array, predicate, context) {\n      predicate = cb(predicate, context);\n      var length = getLength(array);\n      var index = dir > 0 ? 0 : length - 1;\n      for (; index >= 0 && index < length; index += dir) {\n        if (predicate(array[index], index, array)) return index;\n      }\n      return -1;\n    };\n  }\n\n  // Returns the first index on an array-like that passes a predicate test\n  _.findIndex = createPredicateIndexFinder(1);\n  _.findLastIndex = createPredicateIndexFinder(-1);\n\n  // Use a comparator function to figure out the smallest index at which\n  // an object should be inserted so as to maintain order. Uses binary search.\n  _.sortedIndex = function(array, obj, iteratee, context) {\n    iteratee = cb(iteratee, context, 1);\n    var value = iteratee(obj);\n    var low = 0, high = getLength(array);\n    while (low < high) {\n      var mid = Math.floor((low + high) / 2);\n      if (iteratee(array[mid]) < value) low = mid + 1; else high = mid;\n    }\n    return low;\n  };\n\n  // Generator function to create the indexOf and lastIndexOf functions\n  function createIndexFinder(dir, predicateFind, sortedIndex) {\n    return function(array, item, idx) {\n      var i = 0, length = getLength(array);\n      if (typeof idx == 'number') {\n        if (dir > 0) {\n            i = idx >= 0 ? idx : Math.max(idx + length, i);\n        } else {\n            length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1;\n        }\n      } else if (sortedIndex && idx && length) {\n        idx = sortedIndex(array, item);\n        return array[idx] === item ? idx : -1;\n      }\n      if (item !== item) {\n        idx = predicateFind(slice.call(array, i, length), _.isNaN);\n        return idx >= 0 ? idx + i : -1;\n      }\n      for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) {\n        if (array[idx] === item) return idx;\n      }\n      return -1;\n    };\n  }\n\n  // Return the position of the first occurrence of an item in an array,\n  // or -1 if the item is not included in the array.\n  // If the array is large and already in sort order, pass `true`\n  // for **isSorted** to use binary search.\n  _.indexOf = createIndexFinder(1, _.findIndex, _.sortedIndex);\n  _.lastIndexOf = createIndexFinder(-1, _.findLastIndex);\n\n  // Generate an integer Array containing an arithmetic progression. A port of\n  // the native Python `range()` function. See\n  // [the Python documentation](http://docs.python.org/library/functions.html#range).\n  _.range = function(start, stop, step) {\n    if (stop == null) {\n      stop = start || 0;\n      start = 0;\n    }\n    step = step || 1;\n\n    var length = Math.max(Math.ceil((stop - start) / step), 0);\n    var range = Array(length);\n\n    for (var idx = 0; idx < length; idx++, start += step) {\n      range[idx] = start;\n    }\n\n    return range;\n  };\n\n  // Function (ahem) Functions\n  // ------------------\n\n  // Determines whether to execute a function as a constructor\n  // or a normal function with the provided arguments\n  var executeBound = function(sourceFunc, boundFunc, context, callingContext, args) {\n    if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args);\n    var self = baseCreate(sourceFunc.prototype);\n    var result = sourceFunc.apply(self, args);\n    if (_.isObject(result)) return result;\n    return self;\n  };\n\n  // Create a function bound to a given object (assigning `this`, and arguments,\n  // optionally). Delegates to **ECMAScript 5**'s native `Function.bind` if\n  // available.\n  _.bind = function(func, context) {\n    if (nativeBind && func.bind === nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));\n    if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function');\n    var args = slice.call(arguments, 2);\n    var bound = function() {\n      return executeBound(func, bound, context, this, args.concat(slice.call(arguments)));\n    };\n    return bound;\n  };\n\n  // Partially apply a function by creating a version that has had some of its\n  // arguments pre-filled, without changing its dynamic `this` context. _ acts\n  // as a placeholder, allowing any combination of arguments to be pre-filled.\n  _.partial = function(func) {\n    var boundArgs = slice.call(arguments, 1);\n    var bound = function() {\n      var position = 0, length = boundArgs.length;\n      var args = Array(length);\n      for (var i = 0; i < length; i++) {\n        args[i] = boundArgs[i] === _ ? arguments[position++] : boundArgs[i];\n      }\n      while (position < arguments.length) args.push(arguments[position++]);\n      return executeBound(func, bound, this, this, args);\n    };\n    return bound;\n  };\n\n  // Bind a number of an object's methods to that object. Remaining arguments\n  // are the method names to be bound. Useful for ensuring that all callbacks\n  // defined on an object belong to it.\n  _.bindAll = function(obj) {\n    var i, length = arguments.length, key;\n    if (length <= 1) throw new Error('bindAll must be passed function names');\n    for (i = 1; i < length; i++) {\n      key = arguments[i];\n      obj[key] = _.bind(obj[key], obj);\n    }\n    return obj;\n  };\n\n  // Memoize an expensive function by storing its results.\n  _.memoize = function(func, hasher) {\n    var memoize = function(key) {\n      var cache = memoize.cache;\n      var address = '' + (hasher ? hasher.apply(this, arguments) : key);\n      if (!_.has(cache, address)) cache[address] = func.apply(this, arguments);\n      return cache[address];\n    };\n    memoize.cache = {};\n    return memoize;\n  };\n\n  // Delays a function for the given number of milliseconds, and then calls\n  // it with the arguments supplied.\n  _.delay = function(func, wait) {\n    var args = slice.call(arguments, 2);\n    return setTimeout(function(){\n      return func.apply(null, args);\n    }, wait);\n  };\n\n  // Defers a function, scheduling it to run after the current call stack has\n  // cleared.\n  _.defer = _.partial(_.delay, _, 1);\n\n  // Returns a function, that, when invoked, will only be triggered at most once\n  // during a given window of time. Normally, the throttled function will run\n  // as much as it can, without ever going more than once per `wait` duration;\n  // but if you'd like to disable the execution on the leading edge, pass\n  // `{leading: false}`. To disable execution on the trailing edge, ditto.\n  _.throttle = function(func, wait, options) {\n    var context, args, result;\n    var timeout = null;\n    var previous = 0;\n    if (!options) options = {};\n    var later = function() {\n      previous = options.leading === false ? 0 : _.now();\n      timeout = null;\n      result = func.apply(context, args);\n      if (!timeout) context = args = null;\n    };\n    return function() {\n      var now = _.now();\n      if (!previous && options.leading === false) previous = now;\n      var remaining = wait - (now - previous);\n      context = this;\n      args = arguments;\n      if (remaining <= 0 || remaining > wait) {\n        if (timeout) {\n          clearTimeout(timeout);\n          timeout = null;\n        }\n        previous = now;\n        result = func.apply(context, args);\n        if (!timeout) context = args = null;\n      } else if (!timeout && options.trailing !== false) {\n        timeout = setTimeout(later, remaining);\n      }\n      return result;\n    };\n  };\n\n  // Returns a function, that, as long as it continues to be invoked, will not\n  // be triggered. The function will be called after it stops being called for\n  // N milliseconds. If `immediate` is passed, trigger the function on the\n  // leading edge, instead of the trailing.\n  _.debounce = function(func, wait, immediate) {\n    var timeout, args, context, timestamp, result;\n\n    var later = function() {\n      var last = _.now() - timestamp;\n\n      if (last < wait && last >= 0) {\n        timeout = setTimeout(later, wait - last);\n      } else {\n        timeout = null;\n        if (!immediate) {\n          result = func.apply(context, args);\n          if (!timeout) context = args = null;\n        }\n      }\n    };\n\n    return function() {\n      context = this;\n      args = arguments;\n      timestamp = _.now();\n      var callNow = immediate && !timeout;\n      if (!timeout) timeout = setTimeout(later, wait);\n      if (callNow) {\n        result = func.apply(context, args);\n        context = args = null;\n      }\n\n      return result;\n    };\n  };\n\n  // Returns the first function passed as an argument to the second,\n  // allowing you to adjust arguments, run code before and after, and\n  // conditionally execute the original function.\n  _.wrap = function(func, wrapper) {\n    return _.partial(wrapper, func);\n  };\n\n  // Returns a negated version of the passed-in predicate.\n  _.negate = function(predicate) {\n    return function() {\n      return !predicate.apply(this, arguments);\n    };\n  };\n\n  // Returns a function that is the composition of a list of functions, each\n  // consuming the return value of the function that follows.\n  _.compose = function() {\n    var args = arguments;\n    var start = args.length - 1;\n    return function() {\n      var i = start;\n      var result = args[start].apply(this, arguments);\n      while (i--) result = args[i].call(this, result);\n      return result;\n    };\n  };\n\n  // Returns a function that will only be executed on and after the Nth call.\n  _.after = function(times, func) {\n    return function() {\n      if (--times < 1) {\n        return func.apply(this, arguments);\n      }\n    };\n  };\n\n  // Returns a function that will only be executed up to (but not including) the Nth call.\n  _.before = function(times, func) {\n    var memo;\n    return function() {\n      if (--times > 0) {\n        memo = func.apply(this, arguments);\n      }\n      if (times <= 1) func = null;\n      return memo;\n    };\n  };\n\n  // Returns a function that will be executed at most one time, no matter how\n  // often you call it. Useful for lazy initialization.\n  _.once = _.partial(_.before, 2);\n\n  // Object Functions\n  // ----------------\n\n  // Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed.\n  var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString');\n  var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString',\n                      'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString'];\n\n  function collectNonEnumProps(obj, keys) {\n    var nonEnumIdx = nonEnumerableProps.length;\n    var constructor = obj.constructor;\n    var proto = (_.isFunction(constructor) && constructor.prototype) || ObjProto;\n\n    // Constructor is a special case.\n    var prop = 'constructor';\n    if (_.has(obj, prop) && !_.contains(keys, prop)) keys.push(prop);\n\n    while (nonEnumIdx--) {\n      prop = nonEnumerableProps[nonEnumIdx];\n      if (prop in obj && obj[prop] !== proto[prop] && !_.contains(keys, prop)) {\n        keys.push(prop);\n      }\n    }\n  }\n\n  // Retrieve the names of an object's own properties.\n  // Delegates to **ECMAScript 5**'s native `Object.keys`\n  _.keys = function(obj) {\n    if (!_.isObject(obj)) return [];\n    if (nativeKeys) return nativeKeys(obj);\n    var keys = [];\n    for (var key in obj) if (_.has(obj, key)) keys.push(key);\n    // Ahem, IE < 9.\n    if (hasEnumBug) collectNonEnumProps(obj, keys);\n    return keys;\n  };\n\n  // Retrieve all the property names of an object.\n  _.allKeys = function(obj) {\n    if (!_.isObject(obj)) return [];\n    var keys = [];\n    for (var key in obj) keys.push(key);\n    // Ahem, IE < 9.\n    if (hasEnumBug) collectNonEnumProps(obj, keys);\n    return keys;\n  };\n\n  // Retrieve the values of an object's properties.\n  _.values = function(obj) {\n    var keys = _.keys(obj);\n    var length = keys.length;\n    var values = Array(length);\n    for (var i = 0; i < length; i++) {\n      values[i] = obj[keys[i]];\n    }\n    return values;\n  };\n\n  // Returns the results of applying the iteratee to each element of the object\n  // In contrast to _.map it returns an object\n  _.mapObject = function(obj, iteratee, context) {\n    iteratee = cb(iteratee, context);\n    var keys =  _.keys(obj),\n          length = keys.length,\n          results = {},\n          currentKey;\n      for (var index = 0; index < length; index++) {\n        currentKey = keys[index];\n        results[currentKey] = iteratee(obj[currentKey], currentKey, obj);\n      }\n      return results;\n  };\n\n  // Convert an object into a list of `[key, value]` pairs.\n  _.pairs = function(obj) {\n    var keys = _.keys(obj);\n    var length = keys.length;\n    var pairs = Array(length);\n    for (var i = 0; i < length; i++) {\n      pairs[i] = [keys[i], obj[keys[i]]];\n    }\n    return pairs;\n  };\n\n  // Invert the keys and values of an object. The values must be serializable.\n  _.invert = function(obj) {\n    var result = {};\n    var keys = _.keys(obj);\n    for (var i = 0, length = keys.length; i < length; i++) {\n      result[obj[keys[i]]] = keys[i];\n    }\n    return result;\n  };\n\n  // Return a sorted list of the function names available on the object.\n  // Aliased as `methods`\n  _.functions = _.methods = function(obj) {\n    var names = [];\n    for (var key in obj) {\n      if (_.isFunction(obj[key])) names.push(key);\n    }\n    return names.sort();\n  };\n\n  // Extend a given object with all the properties in passed-in object(s).\n  _.extend = createAssigner(_.allKeys);\n\n  // Assigns a given object with all the own properties in the passed-in object(s)\n  // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign)\n  _.extendOwn = _.assign = createAssigner(_.keys);\n\n  // Returns the first key on an object that passes a predicate test\n  _.findKey = function(obj, predicate, context) {\n    predicate = cb(predicate, context);\n    var keys = _.keys(obj), key;\n    for (var i = 0, length = keys.length; i < length; i++) {\n      key = keys[i];\n      if (predicate(obj[key], key, obj)) return key;\n    }\n  };\n\n  // Return a copy of the object only containing the whitelisted properties.\n  _.pick = function(object, oiteratee, context) {\n    var result = {}, obj = object, iteratee, keys;\n    if (obj == null) return result;\n    if (_.isFunction(oiteratee)) {\n      keys = _.allKeys(obj);\n      iteratee = optimizeCb(oiteratee, context);\n    } else {\n      keys = flatten(arguments, false, false, 1);\n      iteratee = function(value, key, obj) { return key in obj; };\n      obj = Object(obj);\n    }\n    for (var i = 0, length = keys.length; i < length; i++) {\n      var key = keys[i];\n      var value = obj[key];\n      if (iteratee(value, key, obj)) result[key] = value;\n    }\n    return result;\n  };\n\n   // Return a copy of the object without the blacklisted properties.\n  _.omit = function(obj, iteratee, context) {\n    if (_.isFunction(iteratee)) {\n      iteratee = _.negate(iteratee);\n    } else {\n      var keys = _.map(flatten(arguments, false, false, 1), String);\n      iteratee = function(value, key) {\n        return !_.contains(keys, key);\n      };\n    }\n    return _.pick(obj, iteratee, context);\n  };\n\n  // Fill in a given object with default properties.\n  _.defaults = createAssigner(_.allKeys, true);\n\n  // Creates an object that inherits from the given prototype object.\n  // If additional properties are provided then they will be added to the\n  // created object.\n  _.create = function(prototype, props) {\n    var result = baseCreate(prototype);\n    if (props) _.extendOwn(result, props);\n    return result;\n  };\n\n  // Create a (shallow-cloned) duplicate of an object.\n  _.clone = function(obj) {\n    if (!_.isObject(obj)) return obj;\n    return _.isArray(obj) ? obj.slice() : _.extend({}, obj);\n  };\n\n  // Invokes interceptor with the obj, and then returns obj.\n  // The primary purpose of this method is to \"tap into\" a method chain, in\n  // order to perform operations on intermediate results within the chain.\n  _.tap = function(obj, interceptor) {\n    interceptor(obj);\n    return obj;\n  };\n\n  // Returns whether an object has a given set of `key:value` pairs.\n  _.isMatch = function(object, attrs) {\n    var keys = _.keys(attrs), length = keys.length;\n    if (object == null) return !length;\n    var obj = Object(object);\n    for (var i = 0; i < length; i++) {\n      var key = keys[i];\n      if (attrs[key] !== obj[key] || !(key in obj)) return false;\n    }\n    return true;\n  };\n\n\n  // Internal recursive comparison function for `isEqual`.\n  var eq = function(a, b, aStack, bStack) {\n    // Identical objects are equal. `0 === -0`, but they aren't identical.\n    // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).\n    if (a === b) return a !== 0 || 1 / a === 1 / b;\n    // A strict comparison is necessary because `null == undefined`.\n    if (a == null || b == null) return a === b;\n    // Unwrap any wrapped objects.\n    if (a instanceof _) a = a._wrapped;\n    if (b instanceof _) b = b._wrapped;\n    // Compare `[[Class]]` names.\n    var className = toString.call(a);\n    if (className !== toString.call(b)) return false;\n    switch (className) {\n      // Strings, numbers, regular expressions, dates, and booleans are compared by value.\n      case '[object RegExp]':\n      // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i')\n      case '[object String]':\n        // Primitives and their corresponding object wrappers are equivalent; thus, `\"5\"` is\n        // equivalent to `new String(\"5\")`.\n        return '' + a === '' + b;\n      case '[object Number]':\n        // `NaN`s are equivalent, but non-reflexive.\n        // Object(NaN) is equivalent to NaN\n        if (+a !== +a) return +b !== +b;\n        // An `egal` comparison is performed for other numeric values.\n        return +a === 0 ? 1 / +a === 1 / b : +a === +b;\n      case '[object Date]':\n      case '[object Boolean]':\n        // Coerce dates and booleans to numeric primitive values. Dates are compared by their\n        // millisecond representations. Note that invalid dates with millisecond representations\n        // of `NaN` are not equivalent.\n        return +a === +b;\n    }\n\n    var areArrays = className === '[object Array]';\n    if (!areArrays) {\n      if (typeof a != 'object' || typeof b != 'object') return false;\n\n      // Objects with different constructors are not equivalent, but `Object`s or `Array`s\n      // from different frames are.\n      var aCtor = a.constructor, bCtor = b.constructor;\n      if (aCtor !== bCtor && !(_.isFunction(aCtor) && aCtor instanceof aCtor &&\n                               _.isFunction(bCtor) && bCtor instanceof bCtor)\n                          && ('constructor' in a && 'constructor' in b)) {\n        return false;\n      }\n    }\n    // Assume equality for cyclic structures. The algorithm for detecting cyclic\n    // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`.\n\n    // Initializing stack of traversed objects.\n    // It's done here since we only need them for objects and arrays comparison.\n    aStack = aStack || [];\n    bStack = bStack || [];\n    var length = aStack.length;\n    while (length--) {\n      // Linear search. Performance is inversely proportional to the number of\n      // unique nested structures.\n      if (aStack[length] === a) return bStack[length] === b;\n    }\n\n    // Add the first object to the stack of traversed objects.\n    aStack.push(a);\n    bStack.push(b);\n\n    // Recursively compare objects and arrays.\n    if (areArrays) {\n      // Compare array lengths to determine if a deep comparison is necessary.\n      length = a.length;\n      if (length !== b.length) return false;\n      // Deep compare the contents, ignoring non-numeric properties.\n      while (length--) {\n        if (!eq(a[length], b[length], aStack, bStack)) return false;\n      }\n    } else {\n      // Deep compare objects.\n      var keys = _.keys(a), key;\n      length = keys.length;\n      // Ensure that both objects contain the same number of properties before comparing deep equality.\n      if (_.keys(b).length !== length) return false;\n      while (length--) {\n        // Deep compare each member\n        key = keys[length];\n        if (!(_.has(b, key) && eq(a[key], b[key], aStack, bStack))) return false;\n      }\n    }\n    // Remove the first object from the stack of traversed objects.\n    aStack.pop();\n    bStack.pop();\n    return true;\n  };\n\n  // Perform a deep comparison to check if two objects are equal.\n  _.isEqual = function(a, b) {\n    return eq(a, b);\n  };\n\n  // Is a given array, string, or object empty?\n  // An \"empty\" object has no enumerable own-properties.\n  _.isEmpty = function(obj) {\n    if (obj == null) return true;\n    if (isArrayLike(obj) && (_.isArray(obj) || _.isString(obj) || _.isArguments(obj))) return obj.length === 0;\n    return _.keys(obj).length === 0;\n  };\n\n  // Is a given value a DOM element?\n  _.isElement = function(obj) {\n    return !!(obj && obj.nodeType === 1);\n  };\n\n  // Is a given value an array?\n  // Delegates to ECMA5's native Array.isArray\n  _.isArray = nativeIsArray || function(obj) {\n    return toString.call(obj) === '[object Array]';\n  };\n\n  // Is a given variable an object?\n  _.isObject = function(obj) {\n    var type = typeof obj;\n    return type === 'function' || type === 'object' && !!obj;\n  };\n\n  // Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp, isError.\n  _.each(['Arguments', 'Function', 'String', 'Number', 'Date', 'RegExp', 'Error'], function(name) {\n    _['is' + name] = function(obj) {\n      return toString.call(obj) === '[object ' + name + ']';\n    };\n  });\n\n  // Define a fallback version of the method in browsers (ahem, IE < 9), where\n  // there isn't any inspectable \"Arguments\" type.\n  if (!_.isArguments(arguments)) {\n    _.isArguments = function(obj) {\n      return _.has(obj, 'callee');\n    };\n  }\n\n  // Optimize `isFunction` if appropriate. Work around some typeof bugs in old v8,\n  // IE 11 (#1621), and in Safari 8 (#1929).\n  if (typeof /./ != 'function' && typeof Int8Array != 'object') {\n    _.isFunction = function(obj) {\n      return typeof obj == 'function' || false;\n    };\n  }\n\n  // Is a given object a finite number?\n  _.isFinite = function(obj) {\n    return isFinite(obj) && !isNaN(parseFloat(obj));\n  };\n\n  // Is the given value `NaN`? (NaN is the only number which does not equal itself).\n  _.isNaN = function(obj) {\n    return _.isNumber(obj) && obj !== +obj;\n  };\n\n  // Is a given value a boolean?\n  _.isBoolean = function(obj) {\n    return obj === true || obj === false || toString.call(obj) === '[object Boolean]';\n  };\n\n  // Is a given value equal to null?\n  _.isNull = function(obj) {\n    return obj === null;\n  };\n\n  // Is a given variable undefined?\n  _.isUndefined = function(obj) {\n    return obj === void 0;\n  };\n\n  // Shortcut function for checking if an object has a given property directly\n  // on itself (in other words, not on a prototype).\n  _.has = function(obj, key) {\n    return obj != null && hasOwnProperty.call(obj, key);\n  };\n\n  // Utility Functions\n  // -----------------\n\n  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its\n  // previous owner. Returns a reference to the Underscore object.\n  _.noConflict = function() {\n    root._ = previousUnderscore;\n    return this;\n  };\n\n  // Keep the identity function around for default iteratees.\n  _.identity = function(value) {\n    return value;\n  };\n\n  // Predicate-generating functions. Often useful outside of Underscore.\n  _.constant = function(value) {\n    return function() {\n      return value;\n    };\n  };\n\n  _.noop = function(){};\n\n  _.property = property;\n\n  // Generates a function for a given object that returns a given property.\n  _.propertyOf = function(obj) {\n    return obj == null ? function(){} : function(key) {\n      return obj[key];\n    };\n  };\n\n  // Returns a predicate for checking whether an object has a given set of\n  // `key:value` pairs.\n  _.matcher = _.matches = function(attrs) {\n    attrs = _.extendOwn({}, attrs);\n    return function(obj) {\n      return _.isMatch(obj, attrs);\n    };\n  };\n\n  // Run a function **n** times.\n  _.times = function(n, iteratee, context) {\n    var accum = Array(Math.max(0, n));\n    iteratee = optimizeCb(iteratee, context, 1);\n    for (var i = 0; i < n; i++) accum[i] = iteratee(i);\n    return accum;\n  };\n\n  // Return a random integer between min and max (inclusive).\n  _.random = function(min, max) {\n    if (max == null) {\n      max = min;\n      min = 0;\n    }\n    return min + Math.floor(Math.random() * (max - min + 1));\n  };\n\n  // A (possibly faster) way to get the current timestamp as an integer.\n  _.now = Date.now || function() {\n    return new Date().getTime();\n  };\n\n   // List of HTML entities for escaping.\n  var escapeMap = {\n    '&': '&amp;',\n    '<': '&lt;',\n    '>': '&gt;',\n    '\"': '&quot;',\n    \"'\": '&#x27;',\n    '`': '&#x60;'\n  };\n  var unescapeMap = _.invert(escapeMap);\n\n  // Functions for escaping and unescaping strings to/from HTML interpolation.\n  var createEscaper = function(map) {\n    var escaper = function(match) {\n      return map[match];\n    };\n    // Regexes for identifying a key that needs to be escaped\n    var source = '(?:' + _.keys(map).join('|') + ')';\n    var testRegexp = RegExp(source);\n    var replaceRegexp = RegExp(source, 'g');\n    return function(string) {\n      string = string == null ? '' : '' + string;\n      return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;\n    };\n  };\n  _.escape = createEscaper(escapeMap);\n  _.unescape = createEscaper(unescapeMap);\n\n  // If the value of the named `property` is a function then invoke it with the\n  // `object` as context; otherwise, return it.\n  _.result = function(object, property, fallback) {\n    var value = object == null ? void 0 : object[property];\n    if (value === void 0) {\n      value = fallback;\n    }\n    return _.isFunction(value) ? value.call(object) : value;\n  };\n\n  // Generate a unique integer id (unique within the entire client session).\n  // Useful for temporary DOM ids.\n  var idCounter = 0;\n  _.uniqueId = function(prefix) {\n    var id = ++idCounter + '';\n    return prefix ? prefix + id : id;\n  };\n\n  // By default, Underscore uses ERB-style template delimiters, change the\n  // following template settings to use alternative delimiters.\n  _.templateSettings = {\n    evaluate    : /<%([\\s\\S]+?)%>/g,\n    interpolate : /<%=([\\s\\S]+?)%>/g,\n    escape      : /<%-([\\s\\S]+?)%>/g\n  };\n\n  // When customizing `templateSettings`, if you don't want to define an\n  // interpolation, evaluation or escaping regex, we need one that is\n  // guaranteed not to match.\n  var noMatch = /(.)^/;\n\n  // Certain characters need to be escaped so that they can be put into a\n  // string literal.\n  var escapes = {\n    \"'\":      \"'\",\n    '\\\\':     '\\\\',\n    '\\r':     'r',\n    '\\n':     'n',\n    '\\u2028': 'u2028',\n    '\\u2029': 'u2029'\n  };\n\n  var escaper = /\\\\|'|\\r|\\n|\\u2028|\\u2029/g;\n\n  var escapeChar = function(match) {\n    return '\\\\' + escapes[match];\n  };\n\n  // JavaScript micro-templating, similar to John Resig's implementation.\n  // Underscore templating handles arbitrary delimiters, preserves whitespace,\n  // and correctly escapes quotes within interpolated code.\n  // NB: `oldSettings` only exists for backwards compatibility.\n  _.template = function(text, settings, oldSettings) {\n    if (!settings && oldSettings) settings = oldSettings;\n    settings = _.defaults({}, settings, _.templateSettings);\n\n    // Combine delimiters into one regular expression via alternation.\n    var matcher = RegExp([\n      (settings.escape || noMatch).source,\n      (settings.interpolate || noMatch).source,\n      (settings.evaluate || noMatch).source\n    ].join('|') + '|$', 'g');\n\n    // Compile the template source, escaping string literals appropriately.\n    var index = 0;\n    var source = \"__p+='\";\n    text.replace(matcher, function(match, escape, interpolate, evaluate, offset) {\n      source += text.slice(index, offset).replace(escaper, escapeChar);\n      index = offset + match.length;\n\n      if (escape) {\n        source += \"'+\\n((__t=(\" + escape + \"))==null?'':_.escape(__t))+\\n'\";\n      } else if (interpolate) {\n        source += \"'+\\n((__t=(\" + interpolate + \"))==null?'':__t)+\\n'\";\n      } else if (evaluate) {\n        source += \"';\\n\" + evaluate + \"\\n__p+='\";\n      }\n\n      // Adobe VMs need the match returned to produce the correct offest.\n      return match;\n    });\n    source += \"';\\n\";\n\n    // If a variable is not specified, place data values in local scope.\n    if (!settings.variable) source = 'with(obj||{}){\\n' + source + '}\\n';\n\n    source = \"var __t,__p='',__j=Array.prototype.join,\" +\n      \"print=function(){__p+=__j.call(arguments,'');};\\n\" +\n      source + 'return __p;\\n';\n\n    try {\n      var render = new Function(settings.variable || 'obj', '_', source);\n    } catch (e) {\n      e.source = source;\n      throw e;\n    }\n\n    var template = function(data) {\n      return render.call(this, data, _);\n    };\n\n    // Provide the compiled source as a convenience for precompilation.\n    var argument = settings.variable || 'obj';\n    template.source = 'function(' + argument + '){\\n' + source + '}';\n\n    return template;\n  };\n\n  // Add a \"chain\" function. Start chaining a wrapped Underscore object.\n  _.chain = function(obj) {\n    var instance = _(obj);\n    instance._chain = true;\n    return instance;\n  };\n\n  // OOP\n  // ---------------\n  // If Underscore is called as a function, it returns a wrapped object that\n  // can be used OO-style. This wrapper holds altered versions of all the\n  // underscore functions. Wrapped objects may be chained.\n\n  // Helper function to continue chaining intermediate results.\n  var result = function(instance, obj) {\n    return instance._chain ? _(obj).chain() : obj;\n  };\n\n  // Add your own custom functions to the Underscore object.\n  _.mixin = function(obj) {\n    _.each(_.functions(obj), function(name) {\n      var func = _[name] = obj[name];\n      _.prototype[name] = function() {\n        var args = [this._wrapped];\n        push.apply(args, arguments);\n        return result(this, func.apply(_, args));\n      };\n    });\n  };\n\n  // Add all of the Underscore functions to the wrapper object.\n  _.mixin(_);\n\n  // Add all mutator Array functions to the wrapper.\n  _.each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {\n    var method = ArrayProto[name];\n    _.prototype[name] = function() {\n      var obj = this._wrapped;\n      method.apply(obj, arguments);\n      if ((name === 'shift' || name === 'splice') && obj.length === 0) delete obj[0];\n      return result(this, obj);\n    };\n  });\n\n  // Add all accessor Array functions to the wrapper.\n  _.each(['concat', 'join', 'slice'], function(name) {\n    var method = ArrayProto[name];\n    _.prototype[name] = function() {\n      return result(this, method.apply(this._wrapped, arguments));\n    };\n  });\n\n  // Extracts the result from a wrapped and chained object.\n  _.prototype.value = function() {\n    return this._wrapped;\n  };\n\n  // Provide unwrapping proxy for some methods used in engine operations\n  // such as arithmetic and JSON stringification.\n  _.prototype.valueOf = _.prototype.toJSON = _.prototype.value;\n\n  _.prototype.toString = function() {\n    return '' + this._wrapped;\n  };\n\n  // AMD registration happens at the end for compatibility with AMD loaders\n  // that may not enforce next-turn semantics on modules. Even though general\n  // practice for AMD registration is to be anonymous, underscore registers\n  // as a named module because, like jQuery, it is a base library that is\n  // popular enough to be bundled in a third party lib, but not be part of\n  // an AMD load request. Those cases could generate an error when an\n  // anonymous define() is called outside of a loader request.\n  if (typeof define === 'function' && define.amd) {\n    define('underscore', [], function() {\n      return _;\n    });\n  }\n}.call(this));\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/underscore/underscore.js\n// module id = 1\n// module chunks = 0","\"use strict\";\n\nvar _undefined = require(\"../function/noop\")(); // Support ES3 engines\n\nmodule.exports = function (val) {\n return (val !== _undefined) && (val !== null);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/is-value.js\n// module id = 2\n// module chunks = 0","\"use strict\";\nvar _ = require('underscore');\n\n// Add string formatting if it doesn't exist\nif (!String.prototype.format) {\n  String.prototype.format = function() {\n    var args = arguments;\n    return this.replace(/{(\\d+)}/g, function(match, number) {\n      return typeof args[number] != 'undefined'\n        ? args[number]\n        : match\n      ;\n    });\n  };\n}\n\nfunction getWaterTempProbe(data, plotInfo, traceInfo, allData) {\n    var allProbeText = [];\n    var probeText;\n    var row, col;\n    var rowText;\n    var depth;\n    for (var j=0; j < data.length; j++) {\n        row = data[j];\n        rowText = [];\n        depth = traceInfo.y[j];\n        for (var i=0; i < row.length; i++) {\n            col = row[i];\n\n            probeText = \"Depth: {0}m<br>{1}: {2} °C ({3} °F)\".format(\n                depth.toFixed(1),\n                traceInfo.name,\n                col !== null ? col.toFixed(3) : \"N/A\",\n                col !== null ? getF(col).toFixed(3) : \"N/A\");\n            rowText.push(probeText);\n        }\n        allProbeText.push(rowText);\n    }\n    return allProbeText;\n}\n\nfunction getSpeedMPH(val) {\n    // convert m/s to mph\n    return val * 3600 / 1608;\n}\nfunction getSpeedKTS(val) {\n    //m/s to knots\n    return val * 1.94384;\n}\n\n\nfunction getPresInHg(val) {\n    // hPa to InHg\n    return val * 0.02952998751;\n}\n\n\nfunction getAccumMillimeter(val) {\n    // convert inches to millimeters\n    return val * 25.4;\n}\n\n\nfunction cardinalWDir(degrees){\n    \n    return ['N','NNE','NE','ENE',\n            'E','ESE','SE','SSE',\n            'S','SSW','SW','WSW',\n            'W','WNW','NW','NNW'][Math.floor(((degrees+11.25)%360)/22.5)];\n}\n// Convert C to F degrees\nfunction getF(val) {\n    return val * 1.8 + 32;\n}\n\nfunction getVal(val) {\n    return val;\n}\n\n\nvar CONVERSION_FUNCTIONS = {\n    null: getVal,\n    undefined: getVal,\n    getF: getF,\n    getPresInHg: getPresInHg,\n    getSpeedMPH: getSpeedMPH,\n    getAccumMillimeter: getAccumMillimeter,\n    cardinalWDir: cardinalWDir,\n    getSpeedKTS:getSpeedKTS\n};\n\n\n\nfunction formatValue(val, plotInfo, traceInfo) {\n    var val2;\n    if (val === null) {\n        val = \"\";\n        val2 = \"\";\n    } else {\n        if ('yaxis2' in plotInfo && 'convert_value' in plotInfo.yaxis2) {\n            val2 = CONVERSION_FUNCTIONS[plotInfo.yaxis2.convert_value](val);\n            val2 = (val2.toFixed)?val2.toFixed(plotInfo.yaxis2.precision):val2;\n        } else {\n            val2 = undefined;\n        }\n        val = CONVERSION_FUNCTIONS[plotInfo.yaxis.convert_value](val);\n        val=(val.toFixed)?val.toFixed(plotInfo.yaxis.precision):val;\n    }\n\n    if ('yaxis2' in plotInfo && val2 !== undefined) {\n        return \"{0}: {1}{2} ({3}{4})\".format(\n            traceInfo.name,\n            val, plotInfo.yaxis.units,\n            val2, plotInfo.yaxis2.units);\n    } else {\n        return \"{0}: {1}{2}\".format(\n            traceInfo.name,\n            val, plotInfo.yaxis.units);\n    }\n}\n\nfunction getDewpointProbe(data, plotInfo, traceInfo, allData) {\n    var allProbeText = [];\n    var probeText;\n    var relHum = undefined;\n    if ('anc_variables' in traceInfo && traceInfo.anc_variables.length == 1) {\n        relHum = allData[traceInfo.anc_variables[0]];\n    }\n    var rh_info = traceInfo.anc_info[traceInfo.anc_variables[0]];\n    if(!rh_info)\n        rh_info={ name: traceInfo.anc_variables[0], units: '', precision: 2};\n\n    for (var i=0; i < data.length; i++) {\n        probeText = formatValue(data[i], plotInfo, traceInfo);\n        if (relHum !== undefined) {\n            probeText += \"<br>{0}: {1}{2}\".format(rh_info.name,\n                    relHum[i] ? relHum[i].toFixed(rh_info.precision) : \"\",\n                    rh_info.units);\n        }\n        allProbeText.push(probeText);\n    }\n    return allProbeText;\n}\n\n\nfunction defaultProbeText(data, plotInfo, traceInfo, allData) {\n    // assume traces share the same 'x'\n    var allProbeText = [];\n    for (var i=0; i < data.length; i++) {\n        allProbeText.push(formatValue(data[i], plotInfo, traceInfo));\n    }\n    return allProbeText;\n}\n\n\nvar PROBE_TEXT_FUNCTIONS = {\n    undefined: defaultProbeText,\n    null: defaultProbeText,\n    dewpoint: getDewpointProbe,\n    water_temp: getWaterTempProbe,\n};\n\n\nfunction getProbeText(data, plotInfo, traceInfo, allData) {\n    if ('probe_text' in traceInfo) {\n        return PROBE_TEXT_FUNCTIONS[traceInfo.probe_text](data, plotInfo, traceInfo, allData);\n    }\n    return defaultProbeText(data, plotInfo, traceInfo, allData);\n}\n\n\nfunction getTickText(values, axis_info) {\n    var tickText = [];\n    for (var i=0; i < values.length; i++) {\n        var val = CONVERSION_FUNCTIONS[axis_info.convert_value](values[i]);\n        val = (val.toFixed)?val.toFixed(axis_info.precision):val;\n        tickText.push(val);\n    }\n    return tickText;\n}\n\n\n/**\n* the purpose of this method is to get the spacing for the y axis\n* For deg F and deg C\n* @param min - minimum of the temp or dew point array\n* @param max - maximum of the temp or dew point array\n* @return array of 4 tick values for the y axis\n*/\n\nfunction getTickVals(min, max, bump) {\n    var extra = (max - min) * 0.02;\n    min = min - extra;\n    max = max + extra;\n    var step = (max - min) / 4.;\n    //create 4 tick values for the y axis\n    return _.range(min, max + step, step);\n}\n\n\nmodule.exports.getTickVals = getTickVals;\nmodule.exports.getProbeText = getProbeText;\nmodule.exports.getTickText = getTickText;\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// ./plot/ticks.js","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things.  But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals.  It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n    throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n    throw new Error('clearTimeout has not been defined');\n}\n(function () {\n    try {\n        if (typeof setTimeout === 'function') {\n            cachedSetTimeout = setTimeout;\n        } else {\n            cachedSetTimeout = defaultSetTimout;\n        }\n    } catch (e) {\n        cachedSetTimeout = defaultSetTimout;\n    }\n    try {\n        if (typeof clearTimeout === 'function') {\n            cachedClearTimeout = clearTimeout;\n        } else {\n            cachedClearTimeout = defaultClearTimeout;\n        }\n    } catch (e) {\n        cachedClearTimeout = defaultClearTimeout;\n    }\n} ())\nfunction runTimeout(fun) {\n    if (cachedSetTimeout === setTimeout) {\n        //normal enviroments in sane situations\n        return setTimeout(fun, 0);\n    }\n    // if setTimeout wasn't available but was latter defined\n    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n        cachedSetTimeout = setTimeout;\n        return setTimeout(fun, 0);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedSetTimeout(fun, 0);\n    } catch(e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n            return cachedSetTimeout.call(null, fun, 0);\n        } catch(e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n            return cachedSetTimeout.call(this, fun, 0);\n        }\n    }\n\n\n}\nfunction runClearTimeout(marker) {\n    if (cachedClearTimeout === clearTimeout) {\n        //normal enviroments in sane situations\n        return clearTimeout(marker);\n    }\n    // if clearTimeout wasn't available but was latter defined\n    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n        cachedClearTimeout = clearTimeout;\n        return clearTimeout(marker);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedClearTimeout(marker);\n    } catch (e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n            return cachedClearTimeout.call(null, marker);\n        } catch (e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n            return cachedClearTimeout.call(this, marker);\n        }\n    }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n    if (!draining || !currentQueue) {\n        return;\n    }\n    draining = false;\n    if (currentQueue.length) {\n        queue = currentQueue.concat(queue);\n    } else {\n        queueIndex = -1;\n    }\n    if (queue.length) {\n        drainQueue();\n    }\n}\n\nfunction drainQueue() {\n    if (draining) {\n        return;\n    }\n    var timeout = runTimeout(cleanUpNextTick);\n    draining = true;\n\n    var len = queue.length;\n    while(len) {\n        currentQueue = queue;\n        queue = [];\n        while (++queueIndex < len) {\n            if (currentQueue) {\n                currentQueue[queueIndex].run();\n            }\n        }\n        queueIndex = -1;\n        len = queue.length;\n    }\n    currentQueue = null;\n    draining = false;\n    runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n    var args = new Array(arguments.length - 1);\n    if (arguments.length > 1) {\n        for (var i = 1; i < arguments.length; i++) {\n            args[i - 1] = arguments[i];\n        }\n    }\n    queue.push(new Item(fun, args));\n    if (queue.length === 1 && !draining) {\n        runTimeout(drainQueue);\n    }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n    this.fun = fun;\n    this.array = array;\n}\nItem.prototype.run = function () {\n    this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n    throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n    throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/process/browser.js\n// module id = 4\n// module chunks = 0","\"use strict\";\nvar updatePlot = require('./update.js');\nvar loading = require('../ui/loading.js');\nvar _ = require('underscore');\n\n\nfunction processData(dataObj) {\n    // plotly doesn't support the 'T' date/time separator or the 'Z' at the end\n    // https://help.plot.ly/date-format-and-time-series/#step-2-entering-dates-and-times-in-plotly-s-grid\n    var dates = _.map(dataObj.timestamps, function(date){return date.replace(\"T\",' ').substring(0, date.length-1)});\n    var allData = {\n        dates: dates,\n    };\n    _.extend(allData, dataObj.data);\n    return allData;\n}\n\n\nfunction plotting(url, var_names, plotsInfo, div, update) {\n    //gets information and updates component\n    $.ajax({\n            type: 'GET',\n            url: url,\n            jsonp: \"callback\",\n            dataType: \"jsonp\",\n            success: function(dataObj) {\n                var graphDiv = document.getElementById(div);\n                var allData = processData(dataObj['results']);\n                var existingDates = graphDiv.data[0]['x'];\n                var dates = allData['dates'];\n                dataObj = {\n                    dates: dates\n                };\n\n                if (dataObj.dates.length == 0) {\n                    console.warn(\"No data available from API\");\n                    return;\n                }\n\n                if (update) {\n                    // first index in the new data that is actually new\n                    var startIndex = 0;\n                    // update only dates that aren't already included\n                    // assume that we don't have any missing dates in the middle\n                    while (startIndex < dates.length && dates[startIndex] <= existingDates[existingDates.length - 1]) {\n                        startIndex++;\n                    }\n\n                    // subset the data if needed\n                    if (startIndex == dates.length) {\n                        console.info(\"No new data downloaded\");\n                        return;\n                    } else {\n                        dates = dates.slice(startIndex);\n                        for (var i = 0; i < var_names.length; i++) {\n                            dataObj[var_names[i]] = allData[var_names[i]].slice(startIndex);\n                        }\n                    }\n                } else {\n                    // replace the entire data array\n                    for (var i = 0; i < var_names.length; i++) {\n                        dataObj[var_names[i]] = allData[var_names[i]];\n                    }\n                }\n\n                updatePlot.updatePlot(graphDiv, plotsInfo, dataObj, update);\n            }\n    });\n}\n\n\nfunction buildRequestUrl(format, interval, epoch, sep, order, time, streams) {\n    var request_url = METOBS_API_URL+'/api/data.'+format+'?';\n    request_url += 'interval='+interval;\n    request_url += '&epoch='+epoch;\n    request_url +='&sep='+sep || ','; \n    request_url += '&order='+order;\n    request_url+=time;\n    request_url+='&symbols='+streams;\n    return request_url;\n}\n\n//the minimum time period (in milliseconds) that a request must cover in order to use\nvar intervalLookUp = [\n    //1 day for 5 minutes\n    [1000*60*60*24, '5m', '-00:10:00'],\n    //6 days for 30 minutes\n    [1000*60*60*24*6, '30m', '-01:00:00'],\n    //1 month for 1 hour\n    [1000*60*60*24*30*1, '1h', '-02:00:00'],\n    //3 months for 3 hours\n    [1000*60*60*24*30*3, '3h', '-06:00:00'],\n    //6 months for 6 hours\n    [1000*60*60*24*30*6, '6h', '-12:00:00'],\n    //1 year for 12 hours\n    [1000*60*60*24*365, '12h', '-24:00:00'],\n    //anything else is 1 minute\n];\n\n\nfunction varNamesForDiv(div) {\n    var varNames = [];\n    var graphDiv = document.getElementById(div);\n    _.each(graphDiv.data, function(trace_data) {\n        Array.prototype.push.apply(varNames, trace_data.var_names);\n        if ('anc_variables' in trace_data) {\n            Array.prototype.push.apply(varNames, trace_data.anc_variables);\n        }\n    });\n    return varNames;\n}\n\n\n//poorly ordered function parameters\nfunction requestPlotUpdate(div, plotsInfo, startTime, endTime, interval, update) {\n    var varNames = varNamesForDiv(div);\n    var stream_string = '';\n    for (var i in varNames) {\n        stream_string += varNames[i];\n        if (i < varNames.length - 1) stream_string += ':';\n    }\n\n    var time;\n    if (!endTime) {\n        interval = '1m';\n        // hours, minutes, seconds\n        var time_parts = _.map(startTime.split(':'), Number);\n        var dt_in_ms = -1000 * 60 * 60 * time_parts[0] + 1000 * 60 * time_parts[1] + 1000 * time_parts[2];\n        for (var i in intervalLookUp) {\n            if (dt_in_ms >= intervalLookUp[i][0]) {\n                interval = intervalLookUp[i][1];\n\n                if (update) {\n                    // we only want new data, the passed startTime was only\n                    // used to determine the interval\n                    startTime = intervalLookUp[i][2];\n                }\n            }\n        }\n        time = '&begin='+startTime;\n    } else {\n        time='&begin='+startTime+'&end='+endTime;\n        if(interval == 'auto'){\n            interval = '1m';\n            var dt_in_ms = (new Date(endTime)) - (new Date(startTime));\n            for(var i in intervalLookUp){\n                if (dt_in_ms >= intervalLookUp[i][0])\n                    interval = intervalLookUp[i][1];\n            }\n        }\n    }\n\n    var url = buildRequestUrl('json', interval, '', '', 'column', time, stream_string);\n    plotting(url, varNames, plotsInfo, div, update);\n    return interval;\n}\n\n/**\n* The purpose of this method is to create a url based on user info\n*\n* @param userInfo - jsn with startdate, start time, end date, end time, and interval\n* no returns\n*/\n\nfunction customPlot(userInfo,streams)\n{\n    //get dates\n    var startDate = userInfo.startDate;\n    var startParts = startDate.split('/');\n    startDate = startParts[2] + '-' + startParts[0] + '-' + startParts[1];\n\n    var endDate = userInfo.endDate;\n    var endParts = endDate.split('/');\n    endDate = endParts[2] + '-' + endParts[0] + '-' + endParts[1];\n\n    //get times\n    var startTime = userInfo.startTime;\n    var endTime = userInfo.endTime;\n\n    //get interval\n    var interval = userInfo.interval;\n\n    //create url\n    var url = 'http://metobs.ssec.wisc.edu/api/data.json?site=aoss&inst=tower&symbols=air_temp:dewpoint:rel_hum:pressure:wind_speed:wind_direction:accum_precip:solar_flux&begin=';\n    url += (startDate + 'T' + startTime + '&end=' + endDate + 'T' + endTime + '&interval=');\n    url += (interval);\n\n    //plot data\n    plotting(url);\n\n    //hide gif\n    setTimeout(loading.loading, 2000);\n}\n\n//export functions\nmodule.exports.requestPlotUpdate = requestPlotUpdate;\nmodule.exports.buildRequestUrl = buildRequestUrl;\nmodule.exports.customPlot = customPlot;\nmodule.exports.plotting = plotting;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/data.js","var buildFormInDiv = require('./ui/buttons.js');\nvar Dispatcher = require('./dispatcher.js');\nvar _ = require('underscore');\n\nfunction API(div, controlDiv, plotsInfo) {\n    var myDispatcher = Dispatcher.getDispatcher();\n    return {\n        plotDiv: div,\n        controlDiv: controlDiv,\n\n        initMeteorogram: function(plot_div,plotOrder) {\n            this.hasGraph = true;\n            this.plotDiv = plot_div || this.plotDiv;\n            //start with only the selected plots showing, reveal others only if their data is requested\n            myDispatcher.dispatch({\n                'status': 'initPlot',\n                'emit': 'plotEmitter',\n                'location': this.plotDiv,\n                'plotsInfo': plotsInfo,\n                'plotOrder': plotOrder\n            });\n        },\n        initMeteorogramTable: function(table_div,plotOrder) {\n            this.hasTable = true;\n            this.tableDiv = table_div || this.plotDiv;\n            //start with only the selected plots showing, reveal others only if their data is requested\n            myDispatcher.dispatch({\n                'status': 'initTable',\n                'emit': 'plotEmitter',\n                'location': this.tableDiv,\n                'plotsInfo': plotsInfo,\n                'plotOrder': plotOrder,\n            });\n        },\n\n        initMeteorogramControls:function(plotOrder){\n            buildFormInDiv(this.controlDiv, this.plotDiv,myDispatcher);\n        },\n\n        displayRealTime:function(){\n            if(this.hasTable){\n                myDispatcher.dispatch({\n                    'status':'update_table',\n                    'emit':'plotEmitter',\n                    'time':'-3:00:00',\n                    'location':this.tableDiv\n                });\n            }\n            if(this.hasGraph){\n                myDispatcher.dispatch({\n                    'status':'get_since_now',\n                    'emit':'plotEmitter',\n                    'time':'-3:00:00',\n                    'location':this.plotDiv\n                });\n\n            }\n        },\n\n        showPlot:function(varName){\n            myDispatcher.dispatch({status: ('show' + varName), 'emit': 'checkboxEmitter','location':this.div});\n        },\n\n        hidePlot:function(varName){\n            myDispatcher.dispatch({status: ('hide' + varName), 'emit': 'checkboxEmitter','location':this.div});\n        },\n\n        displayRecent:function(start_time){\n            myDispatcher.dispatch({\n                'status':'get_since_now',\n                'emit':'plotEmitter',\n                'time':start_time,\n            });\n        },\n\n        displayTimeRange:function(start_time,stop_time,interval){\n            myDispatcher.dispatch({\n                'status':'get_between_dates',\n                'emit':'plotEmitter',\n                'start':start_time,\n                'end':stop_time,\n                'interval':interval||'auto',\n            });\n\n        },\n    }\n}\n\n//expose the API to other scripts\nwindow.MeteorogramController = API;\n\n\n\n// WEBPACK FOOTER //\n// ./controller.js","\"use strict\";\n\n//var $ = require('jquery');\n//var jQuery = require('jquery');\n\nvar loading = require('./loading.js');\nconst controlPanelTemplate = require('./button_template.js');\n\n/**\n* The purpose of this method is to tell dispatcher\n* Oh, please check if user's entering stuff correctly\n*\n* no params\n* no returns\n*/\n\nfunction dispatchCustom(dispatcher)\n{\n    dispatcher.dispatch({\n        status:'get_between_dates',\n        'emit':'plotEmitter',\n        'start':$('#Start-date-picker').val().split(' ').join('T')+':00',\n        'end':$('#End-date-picker').val().split(' ').join('T')+':00',\n        'interval':'auto',\n    });\n}\n\n\n/**\n* The purpose of this method is to send dispatcher user information\n*\n* no params\n* no returns\n*/\n\nfunction getUserInfo(dispatcher)\n{\n    //show gif\n    loading.loading();\n\n    //get the information from the text boxes\n    var startDate = $('#Start-date-picker').val();\n    var endDate = $('#End-date-picker').val();\n    var startTime = $('#Start-time-picker').val();\n    var endTime = $('#End-time-picker').val();\n    var interval = $('#interval option:selected');\n    var intervalVal = interval.data(\"name\");\n\n    //store in user info\n    var userInfo = {'startDate' : startDate,\n                    'startTime' : startTime,\n                    'endDate': endDate,\n                    'endTime': endTime,\n                    'interval': intervalVal};\n\n    //send to dispatcher\n    setTimeout(function() {dispatch.dispatch({status: 'plot_custom', 'emit': 'plotEmitter', 'userInfo': userInfo});}, 200);                 \n}\n\n\n/**\n* The purpose of this method is to tell dispatcher, time to check if we need to update\n*\n* no params\n* no returns\n*/\n\nfunction dispatchUpdate(dispatcher)\n{\n    dispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter'});\n}\n\n/**\n* The purpose of this method is to figure out what the user wants to do based upon\n* what the user selects on the task dropdown\n*\n* no params\n* no returns\n*/\n\nfunction dropDown(selectedText, dispatcher)\n{\n    console.log(dispatcher);\n    if (selectedText == 'realtime') {\n        dispatcher.dispatch({\n            status:'get_since_now',\n            'emit':'plotEmitter',\n            'time':'-3:00:00'\n        });\n\n    } else {\n        var timeDelta = selectedText;\n        dispatcher.dispatch({\n            status:'get_since_now',\n            'emit':'plotEmitter',\n            'time':selectedText\n        });\n    }\n}\n\nvar bind_daterange_actions = function(jQ_div,dispatcher){\n    //bind to custom buttons and dropdowns\n    $(jQ_div+' #plot-btn').click(function(){dispatchCustom(dispatcher)});\n    $(jQ_div+' #dropDownId').change(function(){dropDown($(this).val(),dispatcher)});\n}\nvar set_active_form = function(which_block,jQ_div){\n    $(jQ_div+\" #dropDownId\").prop(\"disabled\",which_block!=\"recent\");\n\n    $(jQ_div+\" #interval\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #Start-date-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #End-date-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #Start-time-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #End-time-picker\").prop(\"disabled\",which_block!=\"range\");\n    $(jQ_div+\" #plot-btn\").prop(\"disabled\",which_block!=\"range\");\n}\n\nvar set_form_datepickers = function(jQ_div){\n    $(jQ_div+' #Start-date-picker').datetimepicker({\n        changeMonth: true, \n        changeYear: true,\n        dateFormat:'yy-mm-dd',\n        timeFormat:'HH:mm',\n        showSecond:false,\n        showMillisec:false,\n        showMicrosec:false\n    });\n\n    $(jQ_div+' #End-date-picker').datetimepicker({\n        changeMonth: true, \n        changeYear: true,\n        dateFormat:'yy-mm-dd',\n        timeFormat:'HH:mm',\n        showSecond:false,\n        showMillisec:false,\n        showMicrosec:false\n    });\n\n    //bind the enabling/disabling of forms to radio buttons\n    $(jQ_div+' [type=text]').prop(\"disabled\",true);\n    $(jQ_div+' select').prop(\"disabled\",true);\n    $(jQ_div+\" #last_x_days\").click(function(){\n        set_active_form(\"recent\",jQ_div);\n    });\n    $(jQ_div+\" #date_range\").click(function(){\n        set_active_form(\"range\",jQ_div);\n    });\n    //$('#Start-time-picker').editableSelect();\n    //$('#End-time-picker').editableSelect();\n    //add placeholder values for the order forms    \n    //$('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));\n    //$('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));\n    //Firefox (+others maybe) keep buttons selected on page reload\n    //enable the currrently selected one's field\n    $(jQ_div+\" #last_x_days\").trigger('click');\n\n};\n\nvar setup_all_forms = function(div,plot_div,dispatcher){\n    var jQ_div = '#'+div;\n    set_form_datepickers(jQ_div,plot_div);\n    bind_daterange_actions(jQ_div,dispatcher);\n}\n\nfunction buildFormInDiv(div, plot_div,dispatcher) {\n    $('#'+div).append(controlPanelTemplate.controlPanelTemplate);\n    //$('#'+div+ \" #show-hide-boxes\").append(controlPanelTemplate.checkboxTemplates[site]);\n    setup_all_forms(div,plot_div,dispatcher);\n}\n$(document).ready(function(){\n    //Hide all form errors initially\n    //Set up the date range inputs as datepicker objects\n});\n\nmodule.exports = buildFormInDiv;\n\n\n\n// WEBPACK FOOTER //\n// ./ui/buttons.js","const checkboxTemplates = {\n    'aoss.tower': '<div class=\"form-group\">'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"temp\">Temperature + Dewpoint'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"pres\">Pressure'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wS\">Wind Speed'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wD\">Wind Direction'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"aP\">Precipitation'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"sF\">Solar Flux'+\n        '</label>'+\n        '</div>',\n    'mendota.buoy': '<div class=\"form-group\">'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"temp\">Temperature + Dewpoint'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"rh\">Relative Humidity'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wS\">Wind Speed'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"wD\">Wind Direction'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"chlor\">Chlorophyll'+\n        '</label>'+\n        '<label class=\"form-check-label\">'+\n        '<input type=\"checkbox\" class=\"form-check-input\" checked id=\"phyco\">Phycocyanin'+\n        '</label>'+\n        '</div>'\n};\n\nconst controlPanelTemplate = '<div class=\"row\" id=\"control-panel-row\">'+\n'<div id=\"show-hide-boxes\" class=\"col-md-12\">'+\n'</div>'+\n'<div class = \"col-md-9\">'+\n'<div class=\"row\" style=\"padding: 0 1em;\">'+\n'<div class=\"form-group\">'+\n'<table style=\"width:100%\">'+\n'<tr>'+\n'<td>'+\n'<div class=\"radio\">'+\n'<label><input type=\"radio\" id=\"last_x_days\" name=\"time_select\">'+\n'Recent Data:'+\n'</label>'+\n'</div>'+\n'</td>'+\n'<td>'+\n'<select class=\"form-control\" id=\"dropDownId\">'+\n'<option selected value=\"realtime\">Realtime Update</option>'+\n'<option value=\"-1:00:00\">Past 1 Hour</option>'+\n'<option value=\"-2:00:00\">Past 2 Hours</option>'+\n'<option value=\"-3:00:00\">Past 3 Hours</option>'+\n'<option value=\"-6:00:00\">Past 6 Hours</option>'+\n'<option value=\"-12:00:00\">Past 12 Hours</option>'+\n'<option value=\"-18:00:00\">Past 18 Hours</option>'+\n'<option value=\"-24:00:00\">Past 24 Hours</option>'+\n'<option value=\"-96:00:00\">Past 4 Days</option>'+\n'</select>'+\n'</td>'+\n'<td style=\"padding-left:.5em\">'+\n'<div class=\"radio\">'+\n'<label><input type=\"radio\" id=\"date_range\" name=\"time_select\">'+\n'Date Range:'+\n'</label>'+\n'</div>'+\n'</td>'+\n'<td>'+\n'<input class=\"form-control\" style=\"padding 0.5em 0;\" id=\"Start-date-picker\" type=\"text\" placeholder=\"YYYY-MM-DD\"/>'+\n'</td>'+\n'<td>to </td>'+\n'<td>'+\n'<input class=\"form-control\" style=\"padding 0.5em 0;\" id=\"End-date-picker\" type=\"text\" placeholder=\"YYYY-MM-DD\"/>'+\n'</td>'+\n'<td>'+\n'<button class=\"btn btn-primary btn-block\" id=\"plot-btn\">Plot</button>'+\n'</td>'+\n'</tr>'+\n'</table>'+\n'</div>'+\n'</div>'+\n'</div>'+\n'</div>'\n;\nmodule.exports = {\n    controlPanelTemplate:controlPanelTemplate,\n    checkboxTemplates:checkboxTemplates\n}\n\n\n\n// WEBPACK FOOTER //\n// ./ui/button_template.js","\"use strict\";\n\n//var $ = require('jquery');\nvar ee = require('event-emitter');\nvar Flux = require('flux');\nvar Plot = require('./plot/init.js');\nvar Table = require('./plot/table.js');\nvar dataAccess = require('./plot/data.js');\nvar loading = require('./ui/loading.js');\nvar getDispatcher = function(){\n    var myDispatcher = new Flux.Dispatcher();\n    //not sure where else to stick globals\n    myDispatcher.GRAPH_HEIGHT = 170;\n    /**\n    * The purpose of this method is to dispatch an update message to plotStore\n    *\n    * no parameters\n    * no returns\n    */\n\n    function dispatchUpdate(startTime) {\n        return function() {\n            //dispatch update message to plotStore\n            myDispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter', 'startTime': startTime});\n        }\n    }\n\n    //creates checkbox store\n    var checkboxEmitter = ee({\n        visible: {},\n        setPlots: function (plotsInfo) {\n            for (var plot_key in plotsInfo) {\n                this.visible[plot_key] = true;\n            }\n        },\n        setShowing: function(plotName, visible) {\n            if (visible === undefined) {\n                this.showing[plotName] = !this.showing[plotName];\n            } else {\n                this.showing[plotName] = visible;\n            }\n        },\n        getShowing: function(plotName) {\n            return this.showing[plotName];\n        },\n        handleActions: function(action) {\n            //only handels if action is for checkbox emitter\n            if(action.emit == 'checkboxEmitter')\n            {\n                this.emit(action.status, action.location);\n            }    \n        }\n    });\n\n    //register store with dispatcher\n    checkboxEmitter.dispatchToken = myDispatcher.register(checkboxEmitter.handleActions.bind(checkboxEmitter));\n\n    //create plotStore\n    // FIXME: Event emitter should be added to a class prototype, not the other way around\n    // See https://github.com/medikoo/event-emitter#usage\n    // The below works...but only because event-emitter allows it. Should probably stick with advertised features\n    var plotEmitter = ee({\n        handleActions: function(action) {\n            if (action.emit == 'plotEmitter') {\n                myDispatcher.waitFor([checkboxEmitter.dispatchToken]);\n\n                if (action.location !== undefined) {\n                    this.div = action.location;\n                }\n\n                if (action.plotsInfo !== undefined) {\n                    this.plotsInfo = action.plotsInfo;\n                    this.plotOrder = this.plotsInfo.defaultPlots;\n                }\n                if (action.plotOrder !== undefined) {\n                    this.plotOrder = action.plotOrder;\n                }\n\n                if (action.status == 'get_since_now') {\n                    this.emit(\n                        action.status,\n                        action.time,\n                        this.plotsInfo,\n                        this.div);\n                }else if (action.status == 'update_table') {\n                    this.emit(\n                        action.status,\n                        action.time,\n                        this.plotsInfo,\n                        this.div);\n                } else if (action.status == 'get_between_dates') {\n                    this.emit(\n                        action.status,\n                        action.start,\n                        action.end,\n                        action.interval,\n                        this.plotsInfo,\n                        this.div);\n                } else if (action.status == 'initPlot') {\n                    this.emit(\n                        action.status,\n                        action.location,\n                        action.plotOrder ? action.plotOrder : this.plotOrder,\n                        this.plotsInfo);\n                } else if (action.status == 'initTable') {\n                    this.emit(\n                        action.status,\n                        action.location,\n                        action.plotOrder ? action.plotOrder : this.plotOrder,\n                        this.plotsInfo);\n                } else if (action.status == 'update') {\n                    this.emit(action.status, this.div, this.plotsInfo, action.startTime);\n                } else {\n                    //adds parameter for user information in custom plot\n                    console.debug(\"Emitting user information message: {action.status} : {action.userInfo}\");\n                    this.emit(action.status, action.userInfo);\n                }\n            }    \n        }\n    });\n\n\n    function stopUpdate(plotsInfo) {\n        if(!plotsInfo.progress)\n            plotsInfo.progress = new Object();\n        if(plotsInfo.progress.validID){\n            var id = plotsInfo.progress.id[0];\n            clearInterval(id);\n            plotsInfo.progress.validID = false;\n\n        }\n    }\n\n    // update every N/2 milliseconds\n    const updateInterval = {\n        '1m': 30 * 1000,\n        '5m': 2.5 * 60 * 1000,\n        '30m': 15 * 60 * 1000,\n        '1h': 30 * 60 * 1000,\n        '3h': 1.5 * 60 * 60 * 1000,\n        '6h': 3 * 60 * 60 * 1000,\n        '12h': 6 * 60 * 60 * 1000,\n    };\n\n\n    function startUpdate(startTime, interval,plotsInfo) {\n        // stop any previous updates\n        if(!plotsInfo.progress)\n            plotsInfo.progress = new Object();\n        stopUpdate(plotsInfo);\n\n        // resume update operations\n        if (startTime === undefined) {\n            startTime = plotsInfo.progress.id[1];\n        }\n        if (interval === undefined) {\n            interval = plotsInfo.progress.id[2];\n        }\n\n        // every 30 seconds, rings update alarm\n        var intervalID = setInterval(dispatchUpdate(startTime), updateInterval[interval]);\n        // save alarm id\n        plotsInfo.progress.id = [intervalID, startTime, interval];\n        plotsInfo.progress.validID = true;\n    }\n\n    plotEmitter.on('initTable', function(div, plotOrder, plotsInfo) {\n        //initialize checkbox store\n        checkboxEmitter.setPlots(plotsInfo);\n        Table.initTable(div, plotOrder, plotsInfo);\n    });\n\n    plotEmitter.on('update_table',function(time, plotsInfo, div){\n        Table.requestTableUpdate(div,plotsInfo);\n        setInterval(function(){Table.requestTableUpdate(div,plotsInfo)},updateInterval['1m']);\n    });\n\n    plotEmitter.on('initPlot', function(div, plotOrder, plotsInfo) {\n        //initialize checkbox store\n        checkboxEmitter.setPlots(plotsInfo);\n        Plot.initPlot(div, plotOrder, plotsInfo);\n    });\n\n    plotEmitter.on(\"get_since_now\",function(time, plotsInfo, div){\n        var interval = dataAccess.requestPlotUpdate(div, plotsInfo, time, undefined, undefined);\n        startUpdate(time, interval,plotsInfo);\n    });\n\n    plotEmitter.on(\"get_between_dates\",function(start,end,interval, plotsInfo, div){\n        stopUpdate(plotsInfo);\n        dataAccess.requestPlotUpdate(div, plotsInfo, start, end, interval);\n    });\n\n    //when store recieves signal, update component\n    plotEmitter.on('update', function(div, plotsInfo, startTime) {\n        dataAccess.requestPlotUpdate(div, plotsInfo, startTime, undefined, undefined, true);\n    });\n\n    // plotEmitter.on(\"plot_custom\", function(userInfo)\n    // {\n    //      staticPlots.customPlot(userInfo,['air_temp','dewpoint','rel_hum','pressure',\n    //         'wind_speed','wind_direction','accum_precip','solar_flux']);\n    // });\n\n    plotEmitter.on(\"checking_custom\", function()\n    {\n        //before components were plots. Here, it's the user prompt paragraph\n        loading.checkInterval();\n    });\n\n    //register plotStore with dispatcher\n    plotEmitter.dispatchToken = myDispatcher.register(plotEmitter.handleActions.bind(plotEmitter));\n\n    return myDispatcher;\n}\n//exports dispatchers and stores\nmodule.exports.getDispatcher = getDispatcher;\n\n\n\n// WEBPACK FOOTER //\n// ./dispatcher.js","'use strict';\n\nvar d        = require('d')\n  , callable = require('es5-ext/object/valid-callable')\n\n  , apply = Function.prototype.apply, call = Function.prototype.call\n  , create = Object.create, defineProperty = Object.defineProperty\n  , defineProperties = Object.defineProperties\n  , hasOwnProperty = Object.prototype.hasOwnProperty\n  , descriptor = { configurable: true, enumerable: false, writable: true }\n\n  , on, once, off, emit, methods, descriptors, base;\n\non = function (type, listener) {\n\tvar data;\n\n\tcallable(listener);\n\n\tif (!hasOwnProperty.call(this, '__ee__')) {\n\t\tdata = descriptor.value = create(null);\n\t\tdefineProperty(this, '__ee__', descriptor);\n\t\tdescriptor.value = null;\n\t} else {\n\t\tdata = this.__ee__;\n\t}\n\tif (!data[type]) data[type] = listener;\n\telse if (typeof data[type] === 'object') data[type].push(listener);\n\telse data[type] = [data[type], listener];\n\n\treturn this;\n};\n\nonce = function (type, listener) {\n\tvar once, self;\n\n\tcallable(listener);\n\tself = this;\n\ton.call(this, type, once = function () {\n\t\toff.call(self, type, once);\n\t\tapply.call(listener, this, arguments);\n\t});\n\n\tonce.__eeOnceListener__ = listener;\n\treturn this;\n};\n\noff = function (type, listener) {\n\tvar data, listeners, candidate, i;\n\n\tcallable(listener);\n\n\tif (!hasOwnProperty.call(this, '__ee__')) return this;\n\tdata = this.__ee__;\n\tif (!data[type]) return this;\n\tlisteners = data[type];\n\n\tif (typeof listeners === 'object') {\n\t\tfor (i = 0; (candidate = listeners[i]); ++i) {\n\t\t\tif ((candidate === listener) ||\n\t\t\t\t\t(candidate.__eeOnceListener__ === listener)) {\n\t\t\t\tif (listeners.length === 2) data[type] = listeners[i ? 0 : 1];\n\t\t\t\telse listeners.splice(i, 1);\n\t\t\t}\n\t\t}\n\t} else {\n\t\tif ((listeners === listener) ||\n\t\t\t\t(listeners.__eeOnceListener__ === listener)) {\n\t\t\tdelete data[type];\n\t\t}\n\t}\n\n\treturn this;\n};\n\nemit = function (type) {\n\tvar i, l, listener, listeners, args;\n\n\tif (!hasOwnProperty.call(this, '__ee__')) return;\n\tlisteners = this.__ee__[type];\n\tif (!listeners) return;\n\n\tif (typeof listeners === 'object') {\n\t\tl = arguments.length;\n\t\targs = new Array(l - 1);\n\t\tfor (i = 1; i < l; ++i) args[i - 1] = arguments[i];\n\n\t\tlisteners = listeners.slice();\n\t\tfor (i = 0; (listener = listeners[i]); ++i) {\n\t\t\tapply.call(listener, this, args);\n\t\t}\n\t} else {\n\t\tswitch (arguments.length) {\n\t\tcase 1:\n\t\t\tcall.call(listeners, this);\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\tcall.call(listeners, this, arguments[1]);\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\tcall.call(listeners, this, arguments[1], arguments[2]);\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tl = arguments.length;\n\t\t\targs = new Array(l - 1);\n\t\t\tfor (i = 1; i < l; ++i) {\n\t\t\t\targs[i - 1] = arguments[i];\n\t\t\t}\n\t\t\tapply.call(listeners, this, args);\n\t\t}\n\t}\n};\n\nmethods = {\n\ton: on,\n\tonce: once,\n\toff: off,\n\temit: emit\n};\n\ndescriptors = {\n\ton: d(on),\n\tonce: d(once),\n\toff: d(off),\n\temit: d(emit)\n};\n\nbase = defineProperties({}, descriptors);\n\nmodule.exports = exports = function (o) {\n\treturn (o == null) ? create(base) : defineProperties(Object(o), descriptors);\n};\nexports.methods = methods;\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/event-emitter/index.js\n// module id = 10\n// module chunks = 0","'use strict';\n\nvar assign        = require('es5-ext/object/assign')\n  , normalizeOpts = require('es5-ext/object/normalize-options')\n  , isCallable    = require('es5-ext/object/is-callable')\n  , contains      = require('es5-ext/string/#/contains')\n\n  , d;\n\nd = module.exports = function (dscr, value/*, options*/) {\n\tvar c, e, w, options, desc;\n\tif ((arguments.length < 2) || (typeof dscr !== 'string')) {\n\t\toptions = value;\n\t\tvalue = dscr;\n\t\tdscr = null;\n\t} else {\n\t\toptions = arguments[2];\n\t}\n\tif (dscr == null) {\n\t\tc = w = true;\n\t\te = false;\n\t} else {\n\t\tc = contains.call(dscr, 'c');\n\t\te = contains.call(dscr, 'e');\n\t\tw = contains.call(dscr, 'w');\n\t}\n\n\tdesc = { value: value, configurable: c, enumerable: e, writable: w };\n\treturn !options ? desc : assign(normalizeOpts(options), desc);\n};\n\nd.gs = function (dscr, get, set/*, options*/) {\n\tvar c, e, options, desc;\n\tif (typeof dscr !== 'string') {\n\t\toptions = set;\n\t\tset = get;\n\t\tget = dscr;\n\t\tdscr = null;\n\t} else {\n\t\toptions = arguments[3];\n\t}\n\tif (get == null) {\n\t\tget = undefined;\n\t} else if (!isCallable(get)) {\n\t\toptions = get;\n\t\tget = set = undefined;\n\t} else if (set == null) {\n\t\tset = undefined;\n\t} else if (!isCallable(set)) {\n\t\toptions = set;\n\t\tset = undefined;\n\t}\n\tif (dscr == null) {\n\t\tc = true;\n\t\te = false;\n\t} else {\n\t\tc = contains.call(dscr, 'c');\n\t\te = contains.call(dscr, 'e');\n\t}\n\n\tdesc = { get: get, set: set, configurable: c, enumerable: e };\n\treturn !options ? desc : assign(normalizeOpts(options), desc);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/d/index.js\n// module id = 11\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? Object.assign\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/index.js\n// module id = 12\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function () {\n\tvar assign = Object.assign, obj;\n\tif (typeof assign !== \"function\") return false;\n\tobj = { foo: \"raz\" };\n\tassign(obj, { bar: \"dwa\" }, { trzy: \"trzy\" });\n\treturn (obj.foo + obj.bar + obj.trzy) === \"razdwatrzy\";\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/is-implemented.js\n// module id = 13\n// module chunks = 0","\"use strict\";\n\nvar keys  = require(\"../keys\")\n  , value = require(\"../valid-value\")\n  , max   = Math.max;\n\nmodule.exports = function (dest, src /*, …srcn*/) {\n\tvar error, i, length = max(arguments.length, 2), assign;\n\tdest = Object(value(dest));\n\tassign = function (key) {\n\t\ttry {\n\t\t\tdest[key] = src[key];\n\t\t} catch (e) {\n\t\t\tif (!error) error = e;\n\t\t}\n\t};\n\tfor (i = 1; i < length; ++i) {\n\t\tsrc = arguments[i];\n\t\tkeys(src).forEach(assign);\n\t}\n\tif (error !== undefined) throw error;\n\treturn dest;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/assign/shim.js\n// module id = 14\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? Object.keys\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/index.js\n// module id = 15\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function () {\n\ttry {\n\t\tObject.keys(\"primitive\");\n\t\treturn true;\n\t} catch (e) {\n return false;\n}\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/is-implemented.js\n// module id = 16\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"../is-value\");\n\nvar keys = Object.keys;\n\nmodule.exports = function (object) {\n\treturn keys(isValue(object) ? Object(object) : object);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/keys/shim.js\n// module id = 17\n// module chunks = 0","\"use strict\";\n\n// eslint-disable-next-line no-empty-function\nmodule.exports = function () {};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/function/noop.js\n// module id = 18\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"./is-value\");\n\nmodule.exports = function (value) {\n\tif (!isValue(value)) throw new TypeError(\"Cannot use null or undefined\");\n\treturn value;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/valid-value.js\n// module id = 19\n// module chunks = 0","\"use strict\";\n\nvar isValue = require(\"./is-value\");\n\nvar forEach = Array.prototype.forEach, create = Object.create;\n\nvar process = function (src, obj) {\n\tvar key;\n\tfor (key in src) obj[key] = src[key];\n};\n\n// eslint-disable-next-line no-unused-vars\nmodule.exports = function (opts1 /*, …options*/) {\n\tvar result = create(null);\n\tforEach.call(arguments, function (options) {\n\t\tif (!isValue(options)) return;\n\t\tprocess(Object(options), result);\n\t});\n\treturn result;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/normalize-options.js\n// module id = 20\n// module chunks = 0","// Deprecated\n\n\"use strict\";\n\nmodule.exports = function (obj) {\n return typeof obj === \"function\";\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/is-callable.js\n// module id = 21\n// module chunks = 0","\"use strict\";\n\nmodule.exports = require(\"./is-implemented\")()\n\t? String.prototype.contains\n\t: require(\"./shim\");\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/index.js\n// module id = 22\n// module chunks = 0","\"use strict\";\n\nvar str = \"razdwatrzy\";\n\nmodule.exports = function () {\n\tif (typeof str.contains !== \"function\") return false;\n\treturn (str.contains(\"dwa\") === true) && (str.contains(\"foo\") === false);\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/is-implemented.js\n// module id = 23\n// module chunks = 0","\"use strict\";\n\nvar indexOf = String.prototype.indexOf;\n\nmodule.exports = function (searchString/*, position*/) {\n\treturn indexOf.call(this, searchString, arguments[1]) > -1;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/string/#/contains/shim.js\n// module id = 24\n// module chunks = 0","\"use strict\";\n\nmodule.exports = function (fn) {\n\tif (typeof fn !== \"function\") throw new TypeError(fn + \" is not a function\");\n\treturn fn;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/es5-ext/object/valid-callable.js\n// module id = 25\n// module chunks = 0","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\nmodule.exports.Dispatcher = require('./lib/Dispatcher');\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/flux/index.js\n// module id = 26\n// module chunks = 0","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * @providesModule Dispatcher\n * \n * @preventMunge\n */\n\n'use strict';\n\nexports.__esModule = true;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar _prefix = 'ID_';\n\n/**\n * Dispatcher is used to broadcast payloads to registered callbacks. This is\n * different from generic pub-sub systems in two ways:\n *\n *   1) Callbacks are not subscribed to particular events. Every payload is\n *      dispatched to every registered callback.\n *   2) Callbacks can be deferred in whole or part until other callbacks have\n *      been executed.\n *\n * For example, consider this hypothetical flight destination form, which\n * selects a default city when a country is selected:\n *\n *   var flightDispatcher = new Dispatcher();\n *\n *   // Keeps track of which country is selected\n *   var CountryStore = {country: null};\n *\n *   // Keeps track of which city is selected\n *   var CityStore = {city: null};\n *\n *   // Keeps track of the base flight price of the selected city\n *   var FlightPriceStore = {price: null}\n *\n * When a user changes the selected city, we dispatch the payload:\n *\n *   flightDispatcher.dispatch({\n *     actionType: 'city-update',\n *     selectedCity: 'paris'\n *   });\n *\n * This payload is digested by `CityStore`:\n *\n *   flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'city-update') {\n *       CityStore.city = payload.selectedCity;\n *     }\n *   });\n *\n * When the user selects a country, we dispatch the payload:\n *\n *   flightDispatcher.dispatch({\n *     actionType: 'country-update',\n *     selectedCountry: 'australia'\n *   });\n *\n * This payload is digested by both stores:\n *\n *   CountryStore.dispatchToken = flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'country-update') {\n *       CountryStore.country = payload.selectedCountry;\n *     }\n *   });\n *\n * When the callback to update `CountryStore` is registered, we save a reference\n * to the returned token. Using this token with `waitFor()`, we can guarantee\n * that `CountryStore` is updated before the callback that updates `CityStore`\n * needs to query its data.\n *\n *   CityStore.dispatchToken = flightDispatcher.register(function(payload) {\n *     if (payload.actionType === 'country-update') {\n *       // `CountryStore.country` may not be updated.\n *       flightDispatcher.waitFor([CountryStore.dispatchToken]);\n *       // `CountryStore.country` is now guaranteed to be updated.\n *\n *       // Select the default city for the new country\n *       CityStore.city = getDefaultCityForCountry(CountryStore.country);\n *     }\n *   });\n *\n * The usage of `waitFor()` can be chained, for example:\n *\n *   FlightPriceStore.dispatchToken =\n *     flightDispatcher.register(function(payload) {\n *       switch (payload.actionType) {\n *         case 'country-update':\n *         case 'city-update':\n *           flightDispatcher.waitFor([CityStore.dispatchToken]);\n *           FlightPriceStore.price =\n *             getFlightPriceStore(CountryStore.country, CityStore.city);\n *           break;\n *     }\n *   });\n *\n * The `country-update` payload will be guaranteed to invoke the stores'\n * registered callbacks in order: `CountryStore`, `CityStore`, then\n * `FlightPriceStore`.\n */\n\nvar Dispatcher = (function () {\n  function Dispatcher() {\n    _classCallCheck(this, Dispatcher);\n\n    this._callbacks = {};\n    this._isDispatching = false;\n    this._isHandled = {};\n    this._isPending = {};\n    this._lastID = 1;\n  }\n\n  /**\n   * Registers a callback to be invoked with every dispatched payload. Returns\n   * a token that can be used with `waitFor()`.\n   */\n\n  Dispatcher.prototype.register = function register(callback) {\n    var id = _prefix + this._lastID++;\n    this._callbacks[id] = callback;\n    return id;\n  };\n\n  /**\n   * Removes a callback based on its token.\n   */\n\n  Dispatcher.prototype.unregister = function unregister(id) {\n    !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.unregister(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;\n    delete this._callbacks[id];\n  };\n\n  /**\n   * Waits for the callbacks specified to be invoked before continuing execution\n   * of the current callback. This method should only be used by a callback in\n   * response to a dispatched payload.\n   */\n\n  Dispatcher.prototype.waitFor = function waitFor(ids) {\n    !this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Must be invoked while dispatching.') : invariant(false) : undefined;\n    for (var ii = 0; ii < ids.length; ii++) {\n      var id = ids[ii];\n      if (this._isPending[id]) {\n        !this._isHandled[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): Circular dependency detected while ' + 'waiting for `%s`.', id) : invariant(false) : undefined;\n        continue;\n      }\n      !this._callbacks[id] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatcher.waitFor(...): `%s` does not map to a registered callback.', id) : invariant(false) : undefined;\n      this._invokeCallback(id);\n    }\n  };\n\n  /**\n   * Dispatches a payload to all registered callbacks.\n   */\n\n  Dispatcher.prototype.dispatch = function dispatch(payload) {\n    !!this._isDispatching ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Dispatch.dispatch(...): Cannot dispatch in the middle of a dispatch.') : invariant(false) : undefined;\n    this._startDispatching(payload);\n    try {\n      for (var id in this._callbacks) {\n        if (this._isPending[id]) {\n          continue;\n        }\n        this._invokeCallback(id);\n      }\n    } finally {\n      this._stopDispatching();\n    }\n  };\n\n  /**\n   * Is this Dispatcher currently dispatching.\n   */\n\n  Dispatcher.prototype.isDispatching = function isDispatching() {\n    return this._isDispatching;\n  };\n\n  /**\n   * Call the callback stored with the given id. Also do some internal\n   * bookkeeping.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._invokeCallback = function _invokeCallback(id) {\n    this._isPending[id] = true;\n    this._callbacks[id](this._pendingPayload);\n    this._isHandled[id] = true;\n  };\n\n  /**\n   * Set up bookkeeping needed when dispatching.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._startDispatching = function _startDispatching(payload) {\n    for (var id in this._callbacks) {\n      this._isPending[id] = false;\n      this._isHandled[id] = false;\n    }\n    this._pendingPayload = payload;\n    this._isDispatching = true;\n  };\n\n  /**\n   * Clear bookkeeping used for dispatching.\n   *\n   * @internal\n   */\n\n  Dispatcher.prototype._stopDispatching = function _stopDispatching() {\n    delete this._pendingPayload;\n    this._isDispatching = false;\n  };\n\n  return Dispatcher;\n})();\n\nmodule.exports = Dispatcher;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/flux/lib/Dispatcher.js\n// module id = 27\n// module chunks = 0","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\n/**\n * Use invariant() to assert state which your program assumes to be true.\n *\n * Provide sprintf-style format (only %s is supported) and arguments\n * to provide information about what broke and what you were\n * expecting.\n *\n * The invariant message will be stripped in production, but the invariant\n * will remain to ensure logic does not differ in production.\n */\n\nvar validateFormat = function validateFormat(format) {};\n\nif (process.env.NODE_ENV !== 'production') {\n  validateFormat = function validateFormat(format) {\n    if (format === undefined) {\n      throw new Error('invariant requires an error message argument');\n    }\n  };\n}\n\nfunction invariant(condition, format, a, b, c, d, e, f) {\n  validateFormat(format);\n\n  if (!condition) {\n    var error;\n    if (format === undefined) {\n      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n    } else {\n      var args = [a, b, c, d, e, f];\n      var argIndex = 0;\n      error = new Error(format.replace(/%s/g, function () {\n        return args[argIndex++];\n      }));\n      error.name = 'Invariant Violation';\n    }\n\n    error.framesToPop = 1; // we don't care about invariant's own frame\n    throw error;\n  }\n}\n\nmodule.exports = invariant;\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./node_modules/fbjs/lib/invariant.js\n// module id = 28\n// module chunks = 0","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar loading = require('../ui/loading.js');\n\n\nfunction initPlot(div_id, plotOrder, plotsInfo) {\n    var DEFAULT_PLOT_HEIGHT = 170;\n    var nshowing = plotOrder.length;\n    var layout = {\n        title: plotsInfo.title,\n        showlegend: false,\n        height: DEFAULT_PLOT_HEIGHT * nshowing + 180,\n    };\n\n    layout['xaxis'] = {\n        //domain affects size of x axis\n        //this made room for the legend\n        //1 is the far right of the plot, 0 is the far left\n        domain: [0, 1],\n\n        //xaxis doesn't show its lines\n        showline: false,\n        zeroline: false,\n\n        //values of the tick labels show up\n        //show right away if we have any starting streams\n        showticklabels: nshowing > 0,\n\n        //its grid is a little darker than default\n        gridcolor : \"#777777\",\n\n        //hide grid\n        showgrid: false,\n        tickformat: '%Y-%m-%d %H:%MZ'\n    };\n\n    var data = [];\n    var axis_number = 0;\n    var axis_info;\n    var plot_info;\n    var trace_info;\n    var trace_config;\n    var axis_config;\n    var plot_key;\n    var key;\n    var step = 1 / nshowing;\n    var domain;\n    var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y',\n        'contours', 'line', 'colorscale', 'showscale', 'colorbar'];\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        axis_number += 1;\n        axis_info = plot_info.yaxis;\n        domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03,\n            1 - plot_idx * step * 1.05];\n\n        // Create the necessary traces (lines)\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            trace_info = plot_info.traces[trace_info_idx];\n            trace_config = {\n                name: trace_info['name'],\n                x: [],\n                y: [],\n                type: trace_info.type ? trace_info.type : 'scatter',\n                xaxis: 'x1',\n                yaxis: 'y' + axis_number,\n                hoverinfo: 'x+text',\n                hovermode: 'closest',\n                // meteorogram custom data flags\n                var_names: trace_info['var_names'],\n                anc_variables: trace_info['anc_variables'],\n                anc_data: [],\n                plot_name: plot_key,\n                trace_index: trace_info_idx,\n            };\n\n            for (var idx=0; idx <  trace_kwargs.length; idx++) {\n                key = trace_kwargs[idx];\n                if (key in trace_info) {\n                    trace_config[key] = trace_info[key];\n                }\n            }\n            if ('colorbar' in trace_config) {\n                trace_config.colorbar.len = domain[1] - domain[0];\n                trace_config.colorbar.y = (domain[1] - domain[0]) / 2 + domain[0];\n                trace_config.z = [[]];\n            }\n            data.push(trace_config);\n        }\n\n        // Create Y-axis configuration object\n        axis_config = {\n            gridcolor: '#777777',\n            titlefont: {'size' : 12},\n            title: axis_info['title'],\n            zeroline: false,\n            // where on the canvas does this axis belong\n            domain: [\n                (plotOrder.length - 1 - plot_idx) * step * 1.03,\n                1 - plot_idx * step * 1.05\n            ],\n        };\n        if ('zeroline' in axis_info) {\n            axis_config['zeroline'] = axis_info.zeroline;\n        }\n\n        if ('range' in axis_info) {\n            axis_config['range'] = axis_info['range'];\n        }\n        if ('autorange' in axis_info) {\n            axis_config['autorange'] = axis_info['autorange'];\n        }\n\n        if ('tickmode' in axis_info) {\n            axis_config['tickmode'] = axis_info['tickmode'];\n        } else {\n            if ('tickvals' in axis_info) {\n                axis_config['tickvals'] = axis_info['tickvals'];\n            } else {\n                axis_config['tickvals'] = ticktext.getTickVals(0, 1, axis_info.step);\n            }\n            if ('ticktext' in axis_info) {\n                axis_config['ticktext'] = axis_info['ticktext'];\n            } else {\n                axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);\n            }\n        }\n        layout['yaxis' + axis_number] = axis_config;\n\n        if ('yaxis2' in plot_info) {\n            axis_number += 1;\n            axis_info = plot_info.yaxis2;\n            axis_config = {\n                gridcolor: '#777777',\n                titlefont: {'size' : 12},\n                title: axis_info['title'],\n                zeroline: false,\n                overlaying: 'y' + (axis_number - 1).toString(),\n                side: 'right',\n                anchor: 'x',\n            };\n\n            if ('range' in layout['yaxis' + (axis_number - 1)]) {\n                axis_config['range'] = layout['yaxis' + (axis_number - 1)]['range'];\n            }\n\n            if ('tickmode' in axis_info) {\n                axis_config['tickmode'] = axis_info['tickmode'];\n            } else {\n                if ('tickvals' in axis_info) {\n                    axis_config['tickvals'] = axis_info['tickvals'];\n                } else {\n                    // use the other axis tick locations\n                    axis_config['tickvals'] = layout['yaxis' + (axis_number - 1)]['tickvals'];\n                }\n                if ('ticktext' in axis_info) {\n                    axis_config['ticktext'] = axis_info['ticktext'];\n                } else {\n                    axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);\n                }\n            }\n\n            layout['yaxis' + axis_number] = axis_config;\n        }\n    }\n    // xaxis only shows on the bottom most plot\n    layout['xaxis']['anchor'] = 'y' + axis_number;\n\n    // Toolbar configuration\n    var toolbar = {\n        // Disable link to plotly\n        'showLink': false,\n        // Don't show plotly logo\n        'displaylogo': false,\n        'displayModeBar': true\n    };\n\n    //creates new graph\n    Plotly.newPlot(div_id, data, layout, toolbar);\n    loading.loading();\n}\n\nmodule.exports.initPlot = initPlot;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/init.js","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar loading = require('../ui/loading.js');\nvar updateData = require('./data.js');\n\n/* \n * Build a table in the specified div with a row for each trace in plotsInfo\n * Stores metadata for each trace using $.data, which is retrieved\n * and used by requestTableUpdate\n */\nfunction initTable(div_id, plotOrder, plotsInfo) {\n    var div = $('#'+div_id);\n    var table = $('<table class=\"met_table\"><tbody></tbody></table>');\n    var tbody = table.children('tbody');\n\n    var plot_info;\n    var plot_key;\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        //extract the necessary variables\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            var trace_info = plot_info.traces[trace_info_idx];\n            if(trace_info.type=='contour'){\n                add_contour_rows(tbody,plot_key,trace_info_idx,trace_info,plot_info);\n            }else{\n                var info_td = $('<td>N/A</td>');\n                info_td.addClass('met_data');\n                info_td.data('info', {key:plot_key,idx:trace_info_idx});\n                var row = $('<tr></tr>');\n                var name = trace_info.short_name || trace_info.name;\n                row.append('<td>'+name+'</td>');\n                row.append(info_td);\n                row.append('<td class=\"convert\"></td>');\n                tbody.append(row);\n                //add rows for our ancillary variables that normally only show up in tags\n                if(trace_info.anc_variables)\n                    add_anc_rows(tbody,plot_key,trace_info_idx,trace_info);\n            }\n        };\n    }\n    div.append('<h3>'+plotsInfo.title+'</h3>');\n    div.append(table);\n    div.append('<span id=\"timestamp\"></span>');\n};\n\nfunction add_anc_rows(tbody,plot_key,idx,trace_info){\n    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){\n        var anc_info = trace_info.anc_info[trace_info.anc_variables[anc_info_idx]];\n        var info_td = $('<td>N/A</td>');\n        info_td.addClass('met_data');\n        info_td.data('info', {key:plot_key,idx:idx,anc_idx:anc_info_idx});\n        var row = $('<tr></tr>');\n        var name = anc_info.short_name || anc_info.name;\n        row.append('<td>'+name+'</td>');\n        row.append(info_td);\n        row.append('<td class=\"convert\"></td>');\n        tbody.append(row);\n    }\n\n}\n\nfunction add_contour_rows(tbody,plot_key,idx,trace_info,plot_info){\n    var name = trace_info.short_name||trace_info.name;\n    var title_row=('<tr><td colspan=\"2\">'+name+'</td><td></td>');\n    tbody.append(title_row);\n    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){\n        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];\n        var row = $('<tr></tr>');\n        var name = trace_info.y[hightlight_idx_idx] + plot_info.yaxis.units;\n        row.append('<td class=\"subtitle text-center\">'+name+'</td>');\n        var info_td = $('<td>N/A</td>');\n        info_td.addClass('met_data');\n        info_td.data('info', {key:plot_key,idx:idx,hl_idx:hightlight_idx_idx});\n        row.append(info_td);\n        row.append('<td class=\"convert\"></td>');\n        tbody.append(row);\n    }\n\n}\n\n/* \n * Build a datastream request from the data tags in div_id's existing meteorogram table,\n * then add labels and alternate units based on the axes objects in plotsInfo\n */\nfunction requestTableUpdate(div_id,plotsInfo){\n    var div = $('#'+div_id);\n    var varNames = [];\n    var plotOrder = [];\n    var data_cells = $('#'+div_id+' .met_data');\n    var convert_cells = $('#'+div_id+' .convert');\n    data_cells.each(function(){\n            var key = $(this).data('info').key;\n            var trace_idx = $(this).data('info').idx;\n            var anc_idx = $(this).data('info').anc_idx;\n            var hl_idx = $(this).data('info').hl_idx;\n            var trace = plotsInfo.plots[key].traces[trace_idx];\n            if(plotOrder.indexOf(key)==-1)\n                plotOrder.push(key);\n            if(anc_idx !== undefined)\n                varNames.push(trace.anc_variables[0]);\n            else if(hl_idx !== undefined)\n                varNames.push(trace.var_names[hl_idx]);\n            else\n                varNames.push(trace.var_names[0]);\n    });\n    var stream_string = varNames.join(':'); \n    console.log(stream_string);\n    //Use a set time that has both buoy and tower records for testing\n    const test_time= \"&begin=2017-10-17T00:00:00&end=2017-10-17T00:02:00\";\n    var url = updateData.buildRequestUrl('json', '1m', '', '', 'column', '&begin=-00:02:00', stream_string);\n    $.ajax({\n            type: 'GET',\n            url: url,\n            jsonp: \"callback\",\n            dataType: \"jsonp\",\n            success: function(dataObj){\n                dataObj.div_id = div_id;\n                dataObj.plotOrder = plotOrder;\n                dataObj.data_cells = data_cells;\n                dataObj.convert_cells = convert_cells;\n                updateTable(dataObj,plotsInfo);\n            }\n    });\n\n};\n\nfunction updateTable(dataObj,plotsInfo) {\n    var data = dataObj.results.data;\n    console.log(data);\n    var plot_info;\n    var plot_key;\n    var td_idx = 0;\n    var div_id = dataObj.div_id;\n    var plotOrder = dataObj.plotOrder;\n    var data_cells = dataObj.data_cells;\n    var convert_cells = dataObj.convert_cells;\n    if(dataObj.num_results==0){\n        $('#'+div_id+' #timestamp').html('No recent data');\n        return ;\n    }\n    $('#'+div_id+' #timestamp').html('Last updated: '+ dataObj.results.timestamps[0]);\n    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {\n        plot_key = plotOrder[plot_idx];\n        plot_info = plotsInfo.plots[plot_key];\n        //Fill in a row for each trace in the plot\n        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {\n            var trace_info = plot_info.traces[trace_info_idx];\n            if(trace_info.type=='contour'){\n                td_idx=update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx);\n            }else{\n                var update_val = data[trace_info['var_names'][0]][0]; \n                if(update_val || update_val==0){\n                    var units = plot_info.yaxis.units;\n                    var convert = '';\n                    var old_precision = plot_info.yaxis.precision;\n                    plot_info.yaxis.precision=Math.min(old_precision,1);\n                    var orig_val = ticktext.getTickText([update_val],plot_info.yaxis);\n                    plot_info.yaxis.precision = old_precision;\n                    if(plot_info.yaxis2 && plot_info.yaxis2.convert_value){\n                        var convert_units = plot_info.yaxis2.units;\n                        var old_precision = plot_info.yaxis2.precision;\n                        plot_info.yaxis2.precision= Math.min(old_precision,1);\n                        var convert_val = ticktext.getTickText([update_val],plot_info.yaxis2);\n                        plot_info.yaxis2.precision = old_precision;\n                        convert = convert_val+convert_units;\n                    }\n                    console.log(update_val);\n                    data_cells[td_idx].innerHTML=orig_val+units;\n                    convert_cells[td_idx].innerHTML=convert;\n                }else{\n                    data_cells[td_idx].innerHTML='N/A';\n                    convert_cells[td_idx].innerHTML='';\n                }\n                td_idx+=1;\n                //Fill in a row for each anc_var in the plot\n                if(trace_info.anc_variables){\n                    td_idx=update_anc_cells(data,data_cells,trace_info,td_idx);\n                }\n            }\n        };\n    }\n}\n\n\nfunction update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx){\n    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){\n        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];\n        console.log(trace_info['var_names'][hightlight_idx_idx]);\n        var update_val = data[trace_info['var_names'][hightlight_idx_idx]][0]; \n        var units = trace_info.zprobe.units;\n        var orig_val = ticktext.getTickText([update_val],trace_info.zprobe);\n        var convert = '';\n        if(trace_info.zprobe2 && trace_info.zprobe2.convert_value){\n            var convert_units = trace_info.zprobe2.units;\n            var convert_val = ticktext.getTickText([update_val],trace_info.zprobe2);\n            convert = convert_val+convert_units;\n        }\n        data_cells[td_idx].innerHTML=orig_val+units;\n        convert_cells[td_idx].innerHTML=convert;\n        td_idx+=1;\n    }\n    return td_idx;\n}\n\nfunction update_anc_cells(data,data_cells,trace_info,td_idx){\n    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){\n        var anc_key = trace_info.anc_variables[anc_info_idx];\n        var anc_info = trace_info.anc_info[anc_key];\n        var update_val = data[anc_key][0];\n        var orig_val = ticktext.getTickText([update_val],anc_info);\n        if(update_val || update_val==0)\n            data_cells[td_idx].innerHTML=orig_val+anc_info.units;\n        else\n            data_cells[td_idx].innerHTML='N/A';\n        td_idx+=1;\n    }\n    return td_idx;\n}\nmodule.exports.initTable = initTable; \nmodule.exports.requestTableUpdate = requestTableUpdate; \n\n\n\n// WEBPACK FOOTER //\n// ./plot/table.js","\"use strict\";\nvar ticktext = require('./ticks.js');\nvar _ = require('underscore');\n\n\nfunction plotsInDiv(graphDiv) {\n    var plotNames = [];\n    _.each(graphDiv.data, function(elem) {\n        // assume the plot's traces are sequential\n        // so only check the last element\n        if (plotNames[plotNames.length - 1] != elem.plot_name) {\n            plotNames.push(elem.plot_name);\n        }\n    });\n    return plotNames;\n}\n\n\nfunction replaceData(graphDiv, plotsInfo, dataObj, update) {\n    var dates = dataObj['dates'];\n    var plotName;\n    var plotInfo;\n    var trace_anc_data;\n    var ancHandled = [];\n    var plotHandled =[];\n    var updateChanges = {\n        x: [],\n        y: [],\n        z: [],\n        text: [],\n    };\n\n    // get full array so we can properly make probe text later\n    var traceIndex = 0;\n    if (update) {\n        for (var i = 0; i < graphDiv.data.length; i++) {\n            plotName = graphDiv.data[i].plot_name;\n            if (plotHandled[plotHandled.length - 1] == plotName) {\n                continue;\n            }\n            plotInfo = plotsInfo.plots[plotName];\n            _.each(plotInfo.traces, function(elem, index) {\n                _.each(elem.var_names, function(var_name) {\n                    _.each(dataObj[var_name], function(data_elem) {\n                        graphDiv.data[traceIndex + index]['y'].shift();\n                        graphDiv.data[traceIndex + index]['y'].push(data_elem);\n                    });\n                    // hold on to the array to create probe text\n                    dataObj[var_name] = graphDiv.data[traceIndex + index]['y'];\n                });\n\n                trace_anc_data = graphDiv.data[traceIndex + index]['anc_data'];\n                _.each(elem.anc_variables, function(anc_name, anc_index) {\n                    if (ancHandled.includes(anc_name)) {\n                        trace_anc_data[anc_index] = dataObj[anc_name];\n                        return;\n                    }\n                    _.each(dataObj[anc_name], function(data_elem) {\n                        trace_anc_data[anc_index].shift();\n                        trace_anc_data[anc_index].push(data_elem);\n                    });\n                    dataObj[anc_name] = graphDiv.data[traceIndex + index]['anc_data'][anc_index];\n                    ancHandled.push(anc_name);\n                });\n            });\n            traceIndex += plotInfo.traces.length;\n            plotHandled.push(plotName);\n        }\n        // the X arrays are shared between all of the plots with how we've done it during init\n        // we only have to update the array once\n        _.each(dates, function(data_elem, data_index) {\n            graphDiv.data[0]['x'].shift();\n            graphDiv.data[0]['x'].push(dates[data_index]);\n        });\n        dates = graphDiv.data[0]['x'];\n\n        // assume extendTraces is faster than replacing the whole thing\n        // Note: we are already rebuilding the arrays above, so don't use extendTraces\n        // Plotly.extendTraces(graphDiv, update);\n    }\n\n\n    traceIndex = 0;\n    plotHandled = [];\n    for (var i = 0; i < graphDiv.data.length; i++) {\n        plotName = graphDiv.data[i].plot_name;\n        // assume all traces are sequential\n        if (plotHandled[plotHandled.length - 1] == plotName) {\n            continue;\n        }\n        plotInfo = plotsInfo.plots[plotName];\n        _.each(plotInfo.traces, function(elem, index, traces) {\n            var probeText;\n            var trace_info = elem;\n            updateChanges.x.push(dates);\n            if (!('anc_variables' in elem)) {\n                graphDiv.data[traceIndex + index]['anc_data'] = undefined;\n            } else {\n                var new_anc_data = [];\n                _.each(elem.anc_variables, function(anc_name, anc_index) {\n                    new_anc_data.push(dataObj[anc_name]);\n                });\n                graphDiv.data[traceIndex + index]['anc_data'] = new_anc_data;\n            }\n\n            if (graphDiv.data[traceIndex + index].type == 'scatter') {\n                _.each(elem.var_names, function(var_name) {\n                    updateChanges.y.push(dataObj[var_name]);\n\n                    // Get probe text shown when hovering over the traces\n                    if ('probe_text' in trace_info && trace_info['probe_text'] === null) {\n                        // we don't want probe text for this trace\n                        probeText = undefined;\n                    } else {\n                        probeText = ticktext.getProbeText(dataObj[var_name], plotInfo, trace_info, dataObj);\n                    }\n                    updateChanges.text.push(probeText);\n                    updateChanges.z.push(undefined);\n                });\n            } else if (graphDiv.data[traceIndex + index].type == 'contour') {\n                var thisData = _.map(elem.var_names, function(var_name) {return dataObj[var_name];});\n                updateChanges.y.push(undefined);\n                updateChanges.text.push(\n                    ticktext.getProbeText(thisData, plotInfo, trace_info, dataObj)\n                );\n                updateChanges.z.push(_.map(elem.var_names, function(var_name) {\n                    return dataObj[var_name];\n                }));\n            } else {\n                updateChanges.y.push(undefined);\n                updateChanges.z.push(undefined);\n                updateChanges.text.push(undefined);\n            }\n        });\n        traceIndex += plotInfo.traces.length;\n        plotHandled.push(plotName);\n    }\n    // Restyle/update all plots\n    Plotly.restyle(graphDiv, updateChanges);\n}\n\n\nfunction updateAxes(graphDiv, plots_info) {\n    var plotNames = plotsInDiv(graphDiv);\n    var plot_info;\n    var traceIdx = 0;\n    var minmax, min, max;\n    var yaxis_number = 0;\n    var yaxis_name, yaxis_name_1;\n    var layout = {};\n    var tickVals;\n    var extra;\n    for (var i=0; i < plotNames.length; i++) {\n        plot_info = plots_info.plots[plotNames[i]];\n        minmax = _.unzip(_.map(plot_info.traces, function(e, i, l) {\n            // return the minimum for this traces data\n            var this_min = _.min(graphDiv.data[traceIdx + i]['y']);\n            var this_max = _.max(graphDiv.data[traceIdx + i]['y']);\n            return [this_min, this_max];\n        }));\n        min = _.min(minmax[0]);\n        max = _.max(minmax[1]);\n\n        traceIdx += plot_info.traces.length;\n\n        // Custom data we added to the trace information\n        var axis_info = plot_info.yaxis;\n        yaxis_number += 1;\n        yaxis_name = yaxis_name_1 = \"yaxis\" + yaxis_number;\n        if (yaxis_number == 1) {\n            yaxis_name = yaxis_name_1 = \"yaxis\";\n        }\n        if ('tickvals' in axis_info && 'ticktext' in axis_info) {\n            // everything specified in config\n            layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];\n            layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];\n            layout[yaxis_name + '.range'] = axis_info['range'];\n        } else {\n            // figure the axis ticks\n            if (min == max) {\n                min -= 0.02;\n                max += 1.02;\n            }\n            layout[yaxis_name + '.tickvals'] = tickVals = ticktext.getTickVals(min, max, axis_info.step);\n            layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);\n            // Add a limit extra space on the top and bottom of each plot for a better look\n            extra = (tickVals[tickVals.length - 1] - tickVals[0]) * 0.05;\n            layout[yaxis_name + '.range'] = [tickVals[0] - extra, tickVals[tickVals.length - 1] + extra];\n        }\n\n\n        if ('yaxis2' in plot_info) {\n            axis_info = plot_info.yaxis2;\n            yaxis_number += 1;\n            yaxis_name = \"yaxis\" + yaxis_number;\n\n            if ('tickvals' in axis_info && 'ticktext' in axis_info) {\n                // everything specified in config\n                layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];\n                layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];\n                layout[yaxis_name + '.range'] = axis_info['range'];\n            } else {\n                // We want to match the 'main' axis ticks\n                layout[yaxis_name + '.tickvals'] = layout[yaxis_name_1 + '.tickvals'];\n                layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);\n                layout[yaxis_name + '.range'] = layout[yaxis_name_1 + '.range'];\n            }\n        }\n    }\n\n    Plotly.relayout(graphDiv, layout);\n}\n\nfunction updatePlot(graphDiv, plotsInfo, dataObj, update) {\n    replaceData(graphDiv, plotsInfo, dataObj, update);\n    updateAxes(graphDiv, plotsInfo);\n}\n\nmodule.exports.updatePlot = updatePlot;\n\n\n\n// WEBPACK FOOTER //\n// ./plot/update.js"],"sourceRoot":""}
\ No newline at end of file
diff --git a/htdocs/js/meteorogram/plot/data.js b/htdocs/js/meteorogram/plot/data.js
deleted file mode 100644
index 7df1d97c395cce1ad0ff5671a649028163bf7ab2..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/plot/data.js
+++ /dev/null
@@ -1,199 +0,0 @@
-"use strict";
-var updatePlot = require('./update.js');
-var loading = require('../ui/loading.js');
-var _ = require('underscore');
-
-
-function processData(dataObj) {
-    // plotly doesn't support the 'T' date/time separator or the 'Z' at the end
-    // https://help.plot.ly/date-format-and-time-series/#step-2-entering-dates-and-times-in-plotly-s-grid
-    var dates = _.map(dataObj.timestamps, function(date){return date.replace("T",' ').substring(0, date.length-1)});
-    var allData = {
-        dates: dates,
-    };
-    _.extend(allData, dataObj.data);
-    return allData;
-}
-
-
-function plotting(url, var_names, plotsInfo, div, update) {
-    //gets information and updates component
-    $.ajax({
-            type: 'GET',
-            url: url,
-            jsonp: "callback",
-            dataType: "jsonp",
-            success: function(dataObj) {
-                var graphDiv = document.getElementById(div);
-                var allData = processData(dataObj['results']);
-                var existingDates = graphDiv.data[0]['x'];
-                var dates = allData['dates'];
-                dataObj = {
-                    dates: dates
-                };
-
-                if (dataObj.dates.length == 0) {
-                    console.warn("No data available from API");
-                    return;
-                }
-
-                if (update) {
-                    // first index in the new data that is actually new
-                    var startIndex = 0;
-                    // update only dates that aren't already included
-                    // assume that we don't have any missing dates in the middle
-                    while (startIndex < dates.length && dates[startIndex] <= existingDates[existingDates.length - 1]) {
-                        startIndex++;
-                    }
-
-                    // subset the data if needed
-                    if (startIndex == dates.length) {
-                        console.info("No new data downloaded");
-                        return;
-                    } else {
-                        dates = dates.slice(startIndex);
-                        for (var i = 0; i < var_names.length; i++) {
-                            dataObj[var_names[i]] = allData[var_names[i]].slice(startIndex);
-                        }
-                    }
-                } else {
-                    // replace the entire data array
-                    for (var i = 0; i < var_names.length; i++) {
-                        dataObj[var_names[i]] = allData[var_names[i]];
-                    }
-                }
-
-                updatePlot.updatePlot(graphDiv, plotsInfo, dataObj, update);
-            }
-    });
-}
-
-
-function buildRequestUrl(format, interval, epoch, sep, order, time, streams) {
-    var request_url = METOBS_API_URL+'/api/data.'+format+'?';
-    request_url += 'interval='+interval;
-    request_url += '&epoch='+epoch;
-    request_url +='&sep='+sep || ','; 
-    request_url += '&order='+order;
-    request_url+=time;
-    request_url+='&symbols='+streams;
-    return request_url;
-}
-
-//the minimum time period (in milliseconds) that a request must cover in order to use
-var intervalLookUp = [
-    //1 day for 5 minutes
-    [1000*60*60*24, '5m', '-00:10:00'],
-    //6 days for 30 minutes
-    [1000*60*60*24*6, '30m', '-01:00:00'],
-    //1 month for 1 hour
-    [1000*60*60*24*30*1, '1h', '-02:00:00'],
-    //3 months for 3 hours
-    [1000*60*60*24*30*3, '3h', '-06:00:00'],
-    //6 months for 6 hours
-    [1000*60*60*24*30*6, '6h', '-12:00:00'],
-    //1 year for 12 hours
-    [1000*60*60*24*365, '12h', '-24:00:00'],
-    //anything else is 1 minute
-];
-
-
-function varNamesForDiv(div) {
-    var varNames = [];
-    var graphDiv = document.getElementById(div);
-    _.each(graphDiv.data, function(trace_data) {
-        Array.prototype.push.apply(varNames, trace_data.var_names);
-        if ('anc_variables' in trace_data) {
-            Array.prototype.push.apply(varNames, trace_data.anc_variables);
-        }
-    });
-    return varNames;
-}
-
-
-//poorly ordered function parameters
-function requestPlotUpdate(div, plotsInfo, startTime, endTime, interval, update) {
-    var varNames = varNamesForDiv(div);
-    var stream_string = '';
-    for (var i in varNames) {
-        stream_string += varNames[i];
-        if (i < varNames.length - 1) stream_string += ':';
-    }
-
-    var time;
-    if (!endTime) {
-        interval = '1m';
-        // hours, minutes, seconds
-        var time_parts = _.map(startTime.split(':'), Number);
-        var dt_in_ms = -1000 * 60 * 60 * time_parts[0] + 1000 * 60 * time_parts[1] + 1000 * time_parts[2];
-        for (var i in intervalLookUp) {
-            if (dt_in_ms >= intervalLookUp[i][0]) {
-                interval = intervalLookUp[i][1];
-
-                if (update) {
-                    // we only want new data, the passed startTime was only
-                    // used to determine the interval
-                    startTime = intervalLookUp[i][2];
-                }
-            }
-        }
-        time = '&begin='+startTime;
-    } else {
-        time='&begin='+startTime+'&end='+endTime;
-        if(interval == 'auto'){
-            interval = '1m';
-            var dt_in_ms = (new Date(endTime)) - (new Date(startTime));
-            for(var i in intervalLookUp){
-                if (dt_in_ms >= intervalLookUp[i][0])
-                    interval = intervalLookUp[i][1];
-            }
-        }
-    }
-
-    var url = buildRequestUrl('json', interval, '', '', 'column', time, stream_string);
-    plotting(url, varNames, plotsInfo, div, update);
-    return interval;
-}
-
-/**
-* The purpose of this method is to create a url based on user info
-*
-* @param userInfo - jsn with startdate, start time, end date, end time, and interval
-* no returns
-*/
-
-function customPlot(userInfo,streams)
-{
-    //get dates
-    var startDate = userInfo.startDate;
-    var startParts = startDate.split('/');
-    startDate = startParts[2] + '-' + startParts[0] + '-' + startParts[1];
-
-    var endDate = userInfo.endDate;
-    var endParts = endDate.split('/');
-    endDate = endParts[2] + '-' + endParts[0] + '-' + endParts[1];
-
-    //get times
-    var startTime = userInfo.startTime;
-    var endTime = userInfo.endTime;
-
-    //get interval
-    var interval = userInfo.interval;
-
-    //create url
-    var url = 'http://metobs.ssec.wisc.edu/api/data.json?site=aoss&inst=tower&symbols=air_temp:dewpoint:rel_hum:pressure:wind_speed:wind_direction:accum_precip:solar_flux&begin=';
-    url += (startDate + 'T' + startTime + '&end=' + endDate + 'T' + endTime + '&interval=');
-    url += (interval);
-
-    //plot data
-    plotting(url);
-
-    //hide gif
-    setTimeout(loading.loading, 2000);
-}
-
-//export functions
-module.exports.requestPlotUpdate = requestPlotUpdate;
-module.exports.buildRequestUrl = buildRequestUrl;
-module.exports.customPlot = customPlot;
-module.exports.plotting = plotting;
diff --git a/htdocs/js/meteorogram/plot/init.js b/htdocs/js/meteorogram/plot/init.js
deleted file mode 100644
index 11cbebc5dbe958f90c869b9c7cd198cba8accb9f..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/plot/init.js
+++ /dev/null
@@ -1,184 +0,0 @@
-"use strict";
-var ticktext = require('./ticks.js');
-var loading = require('../ui/loading.js');
-
-
-function initPlot(div_id, plotOrder, plotsInfo) {
-    var DEFAULT_PLOT_HEIGHT = 170;
-    var nshowing = plotOrder.length;
-    var layout = {
-        title: plotsInfo.title,
-        showlegend: false,
-        height: DEFAULT_PLOT_HEIGHT * nshowing + 180,
-    };
-
-    layout['xaxis'] = {
-        //domain affects size of x axis
-        //this made room for the legend
-        //1 is the far right of the plot, 0 is the far left
-        domain: [0, 1],
-
-        //xaxis doesn't show its lines
-        showline: false,
-        zeroline: false,
-
-        //values of the tick labels show up
-        //show right away if we have any starting streams
-        showticklabels: nshowing > 0,
-
-        //its grid is a little darker than default
-        gridcolor : "#777777",
-
-        //hide grid
-        showgrid: false,
-        tickformat: '%Y-%m-%d %H:%MZ'
-    };
-
-    var data = [];
-    var axis_number = 0;
-    var axis_info;
-    var plot_info;
-    var trace_info;
-    var trace_config;
-    var axis_config;
-    var plot_key;
-    var key;
-    var step = 1 / nshowing;
-    var domain;
-    var trace_kwargs = ['color', 'mode', 'zmin', 'zmax', 'y',
-        'contours', 'line', 'colorscale', 'showscale', 'colorbar'];
-    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {
-        plot_key = plotOrder[plot_idx];
-        plot_info = plotsInfo.plots[plot_key];
-        axis_number += 1;
-        axis_info = plot_info.yaxis;
-        domain = [(plotOrder.length - 1 - plot_idx) * step * 1.03,
-            1 - plot_idx * step * 1.05];
-
-        // Create the necessary traces (lines)
-        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {
-            trace_info = plot_info.traces[trace_info_idx];
-            trace_config = {
-                name: trace_info['name'],
-                x: [],
-                y: [],
-                type: trace_info.type ? trace_info.type : 'scatter',
-                xaxis: 'x1',
-                yaxis: 'y' + axis_number,
-                hoverinfo: 'x+text',
-                hovermode: 'closest',
-                // meteorogram custom data flags
-                var_names: trace_info['var_names'],
-                anc_variables: trace_info['anc_variables'],
-                anc_data: [],
-                plot_name: plot_key,
-                trace_index: trace_info_idx,
-            };
-
-            for (var idx=0; idx <  trace_kwargs.length; idx++) {
-                key = trace_kwargs[idx];
-                if (key in trace_info) {
-                    trace_config[key] = trace_info[key];
-                }
-            }
-            if ('colorbar' in trace_config) {
-                trace_config.colorbar.len = domain[1] - domain[0];
-                trace_config.colorbar.y = (domain[1] - domain[0]) / 2 + domain[0];
-                trace_config.z = [[]];
-            }
-            data.push(trace_config);
-        }
-
-        // Create Y-axis configuration object
-        axis_config = {
-            gridcolor: '#777777',
-            titlefont: {'size' : 12},
-            title: axis_info['title'],
-            zeroline: false,
-            // where on the canvas does this axis belong
-            domain: [
-                (plotOrder.length - 1 - plot_idx) * step * 1.03,
-                1 - plot_idx * step * 1.05
-            ],
-        };
-        if ('zeroline' in axis_info) {
-            axis_config['zeroline'] = axis_info.zeroline;
-        }
-
-        if ('range' in axis_info) {
-            axis_config['range'] = axis_info['range'];
-        }
-        if ('autorange' in axis_info) {
-            axis_config['autorange'] = axis_info['autorange'];
-        }
-
-        if ('tickmode' in axis_info) {
-            axis_config['tickmode'] = axis_info['tickmode'];
-        } else {
-            if ('tickvals' in axis_info) {
-                axis_config['tickvals'] = axis_info['tickvals'];
-            } else {
-                axis_config['tickvals'] = ticktext.getTickVals(0, 1, axis_info.step);
-            }
-            if ('ticktext' in axis_info) {
-                axis_config['ticktext'] = axis_info['ticktext'];
-            } else {
-                axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);
-            }
-        }
-        layout['yaxis' + axis_number] = axis_config;
-
-        if ('yaxis2' in plot_info) {
-            axis_number += 1;
-            axis_info = plot_info.yaxis2;
-            axis_config = {
-                gridcolor: '#777777',
-                titlefont: {'size' : 12},
-                title: axis_info['title'],
-                zeroline: false,
-                overlaying: 'y' + (axis_number - 1).toString(),
-                side: 'right',
-                anchor: 'x',
-            };
-
-            if ('range' in layout['yaxis' + (axis_number - 1)]) {
-                axis_config['range'] = layout['yaxis' + (axis_number - 1)]['range'];
-            }
-
-            if ('tickmode' in axis_info) {
-                axis_config['tickmode'] = axis_info['tickmode'];
-            } else {
-                if ('tickvals' in axis_info) {
-                    axis_config['tickvals'] = axis_info['tickvals'];
-                } else {
-                    // use the other axis tick locations
-                    axis_config['tickvals'] = layout['yaxis' + (axis_number - 1)]['tickvals'];
-                }
-                if ('ticktext' in axis_info) {
-                    axis_config['ticktext'] = axis_info['ticktext'];
-                } else {
-                    axis_config['ticktext'] = ticktext.getTickText(axis_config['tickvals'], axis_info);
-                }
-            }
-
-            layout['yaxis' + axis_number] = axis_config;
-        }
-    }
-    // xaxis only shows on the bottom most plot
-    layout['xaxis']['anchor'] = 'y' + axis_number;
-
-    // Toolbar configuration
-    var toolbar = {
-        // Disable link to plotly
-        'showLink': false,
-        // Don't show plotly logo
-        'displaylogo': false,
-        'displayModeBar': true
-    };
-
-    //creates new graph
-    Plotly.newPlot(div_id, data, layout, toolbar);
-    loading.loading();
-}
-
-module.exports.initPlot = initPlot;
diff --git a/htdocs/js/meteorogram/plot/table.js b/htdocs/js/meteorogram/plot/table.js
deleted file mode 100644
index b5855fa733b3d328cfebeadd0887c66d654a5297..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/plot/table.js
+++ /dev/null
@@ -1,221 +0,0 @@
-"use strict";
-var ticktext = require('./ticks.js');
-var loading = require('../ui/loading.js');
-var updateData = require('./data.js');
-
-/* 
- * Build a table in the specified div with a row for each trace in plotsInfo
- * Stores metadata for each trace using $.data, which is retrieved
- * and used by requestTableUpdate
- */
-function initTable(div_id, plotOrder, plotsInfo) {
-    var div = $('#'+div_id);
-    var table = $('<table class="met_table"><tbody></tbody></table>');
-    var tbody = table.children('tbody');
-
-    var plot_info;
-    var plot_key;
-    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {
-        plot_key = plotOrder[plot_idx];
-        plot_info = plotsInfo.plots[plot_key];
-        //extract the necessary variables
-        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {
-            var trace_info = plot_info.traces[trace_info_idx];
-            if(trace_info.type=='contour'){
-                add_contour_rows(tbody,plot_key,trace_info_idx,trace_info,plot_info);
-            }else{
-                var info_td = $('<td>N/A</td>');
-                info_td.addClass('met_data');
-                info_td.data('info', {key:plot_key,idx:trace_info_idx});
-                var row = $('<tr></tr>');
-                var name = trace_info.short_name || trace_info.name;
-                row.append('<td>'+name+'</td>');
-                row.append(info_td);
-                row.append('<td class="convert"></td>');
-                tbody.append(row);
-                //add rows for our ancillary variables that normally only show up in tags
-                if(trace_info.anc_variables)
-                    add_anc_rows(tbody,plot_key,trace_info_idx,trace_info);
-            }
-        };
-    }
-    div.append('<h3>'+plotsInfo.title+'</h3>');
-    div.append(table);
-    div.append('<span id="timestamp"></span>');
-};
-
-function add_anc_rows(tbody,plot_key,idx,trace_info){
-    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){
-        var anc_info = trace_info.anc_info[trace_info.anc_variables[anc_info_idx]];
-        var info_td = $('<td>N/A</td>');
-        info_td.addClass('met_data');
-        info_td.data('info', {key:plot_key,idx:idx,anc_idx:anc_info_idx});
-        var row = $('<tr></tr>');
-        var name = anc_info.short_name || anc_info.name;
-        row.append('<td>'+name+'</td>');
-        row.append(info_td);
-        row.append('<td class="convert"></td>');
-        tbody.append(row);
-    }
-
-}
-
-function add_contour_rows(tbody,plot_key,idx,trace_info,plot_info){
-    var name = trace_info.short_name||trace_info.name;
-    var title_row=('<tr><td colspan="2">'+name+'</td><td></td>');
-    tbody.append(title_row);
-    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){
-        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];
-        var row = $('<tr></tr>');
-        var name = trace_info.y[hightlight_idx_idx] + plot_info.yaxis.units;
-        row.append('<td class="subtitle text-center">'+name+'</td>');
-        var info_td = $('<td>N/A</td>');
-        info_td.addClass('met_data');
-        info_td.data('info', {key:plot_key,idx:idx,hl_idx:hightlight_idx_idx});
-        row.append(info_td);
-        row.append('<td class="convert"></td>');
-        tbody.append(row);
-    }
-
-}
-
-/* 
- * Build a datastream request from the data tags in div_id's existing meteorogram table,
- * then add labels and alternate units based on the axes objects in plotsInfo
- */
-function requestTableUpdate(div_id,plotsInfo){
-    var div = $('#'+div_id);
-    var varNames = [];
-    var plotOrder = [];
-    var data_cells = $('#'+div_id+' .met_data');
-    var convert_cells = $('#'+div_id+' .convert');
-    data_cells.each(function(){
-            var key = $(this).data('info').key;
-            var trace_idx = $(this).data('info').idx;
-            var anc_idx = $(this).data('info').anc_idx;
-            var hl_idx = $(this).data('info').hl_idx;
-            var trace = plotsInfo.plots[key].traces[trace_idx];
-            if(plotOrder.indexOf(key)==-1)
-                plotOrder.push(key);
-            if(anc_idx !== undefined)
-                varNames.push(trace.anc_variables[0]);
-            else if(hl_idx !== undefined)
-                varNames.push(trace.var_names[hl_idx]);
-            else
-                varNames.push(trace.var_names[0]);
-    });
-    var stream_string = varNames.join(':'); 
-    console.log(stream_string);
-    //Use a set time that has both buoy and tower records for testing
-    const test_time= "&begin=2017-10-17T00:00:00&end=2017-10-17T00:02:00";
-    var url = updateData.buildRequestUrl('json', '1m', '', '', 'column', '&begin=-00:02:00', stream_string);
-    $.ajax({
-            type: 'GET',
-            url: url,
-            jsonp: "callback",
-            dataType: "jsonp",
-            success: function(dataObj){
-                dataObj.div_id = div_id;
-                dataObj.plotOrder = plotOrder;
-                dataObj.data_cells = data_cells;
-                dataObj.convert_cells = convert_cells;
-                updateTable(dataObj,plotsInfo);
-            }
-    });
-
-};
-
-function updateTable(dataObj,plotsInfo) {
-    var data = dataObj.results.data;
-    console.log(data);
-    var plot_info;
-    var plot_key;
-    var td_idx = 0;
-    var div_id = dataObj.div_id;
-    var plotOrder = dataObj.plotOrder;
-    var data_cells = dataObj.data_cells;
-    var convert_cells = dataObj.convert_cells;
-    if(dataObj.num_results==0){
-        $('#'+div_id+' #timestamp').html('No recent data');
-        return ;
-    }
-    $('#'+div_id+' #timestamp').html('Last updated: '+ dataObj.results.timestamps[0]);
-    for (var plot_idx=0; plot_idx < plotOrder.length; plot_idx++) {
-        plot_key = plotOrder[plot_idx];
-        plot_info = plotsInfo.plots[plot_key];
-        //Fill in a row for each trace in the plot
-        for (var trace_info_idx=0; trace_info_idx < plot_info.traces.length; trace_info_idx++) {
-            var trace_info = plot_info.traces[trace_info_idx];
-            if(trace_info.type=='contour'){
-                td_idx=update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx);
-            }else{
-                var update_val = data[trace_info['var_names'][0]][0]; 
-                if(update_val || update_val==0){
-                    var units = plot_info.yaxis.units;
-                    var convert = '';
-                    var old_precision = plot_info.yaxis.precision;
-                    plot_info.yaxis.precision=Math.min(old_precision,1);
-                    var orig_val = ticktext.getTickText([update_val],plot_info.yaxis);
-                    plot_info.yaxis.precision = old_precision;
-                    if(plot_info.yaxis2 && plot_info.yaxis2.convert_value){
-                        var convert_units = plot_info.yaxis2.units;
-                        var old_precision = plot_info.yaxis2.precision;
-                        plot_info.yaxis2.precision= Math.min(old_precision,1);
-                        var convert_val = ticktext.getTickText([update_val],plot_info.yaxis2);
-                        plot_info.yaxis2.precision = old_precision;
-                        convert = convert_val+convert_units;
-                    }
-                    console.log(update_val);
-                    data_cells[td_idx].innerHTML=orig_val+units;
-                    convert_cells[td_idx].innerHTML=convert;
-                }else{
-                    data_cells[td_idx].innerHTML='N/A';
-                    convert_cells[td_idx].innerHTML='';
-                }
-                td_idx+=1;
-                //Fill in a row for each anc_var in the plot
-                if(trace_info.anc_variables){
-                    td_idx=update_anc_cells(data,data_cells,trace_info,td_idx);
-                }
-            }
-        };
-    }
-}
-
-
-function update_contour_cells(data,data_cells,convert_cells,trace_info,td_idx){
-    for(var hightlight_idx = 0;hightlight_idx< trace_info.y_highlight.length;hightlight_idx++){
-        var hightlight_idx_idx = trace_info.y_highlight[hightlight_idx];
-        console.log(trace_info['var_names'][hightlight_idx_idx]);
-        var update_val = data[trace_info['var_names'][hightlight_idx_idx]][0]; 
-        var units = trace_info.zprobe.units;
-        var orig_val = ticktext.getTickText([update_val],trace_info.zprobe);
-        var convert = '';
-        if(trace_info.zprobe2 && trace_info.zprobe2.convert_value){
-            var convert_units = trace_info.zprobe2.units;
-            var convert_val = ticktext.getTickText([update_val],trace_info.zprobe2);
-            convert = convert_val+convert_units;
-        }
-        data_cells[td_idx].innerHTML=orig_val+units;
-        convert_cells[td_idx].innerHTML=convert;
-        td_idx+=1;
-    }
-    return td_idx;
-}
-
-function update_anc_cells(data,data_cells,trace_info,td_idx){
-    for(var anc_info_idx = 0; anc_info_idx < trace_info.anc_variables.length; anc_info_idx++){
-        var anc_key = trace_info.anc_variables[anc_info_idx];
-        var anc_info = trace_info.anc_info[anc_key];
-        var update_val = data[anc_key][0];
-        var orig_val = ticktext.getTickText([update_val],anc_info);
-        if(update_val || update_val==0)
-            data_cells[td_idx].innerHTML=orig_val+anc_info.units;
-        else
-            data_cells[td_idx].innerHTML='N/A';
-        td_idx+=1;
-    }
-    return td_idx;
-}
-module.exports.initTable = initTable; 
-module.exports.requestTableUpdate = requestTableUpdate; 
diff --git a/htdocs/js/meteorogram/plot/ticks.js b/htdocs/js/meteorogram/plot/ticks.js
deleted file mode 100644
index 91fd15349de2c081790f8efa6746292b81878306..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/plot/ticks.js
+++ /dev/null
@@ -1,207 +0,0 @@
-"use strict";
-var _ = require('underscore');
-
-// Add string formatting if it doesn't exist
-if (!String.prototype.format) {
-  String.prototype.format = function() {
-    var args = arguments;
-    return this.replace(/{(\d+)}/g, function(match, number) {
-      return typeof args[number] != 'undefined'
-        ? args[number]
-        : match
-      ;
-    });
-  };
-}
-
-function getWaterTempProbe(data, plotInfo, traceInfo, allData) {
-    var allProbeText = [];
-    var probeText;
-    var row, col;
-    var rowText;
-    var depth;
-    for (var j=0; j < data.length; j++) {
-        row = data[j];
-        rowText = [];
-        depth = traceInfo.y[j];
-        for (var i=0; i < row.length; i++) {
-            col = row[i];
-
-            probeText = "Depth: {0}m<br>{1}: {2} °C ({3} °F)".format(
-                depth.toFixed(1),
-                traceInfo.name,
-                col !== null ? col.toFixed(3) : "N/A",
-                col !== null ? getF(col).toFixed(3) : "N/A");
-            rowText.push(probeText);
-        }
-        allProbeText.push(rowText);
-    }
-    return allProbeText;
-}
-
-function getSpeedMPH(val) {
-    // convert m/s to mph
-    return val * 3600 / 1608;
-}
-function getSpeedKTS(val) {
-    //m/s to knots
-    return val * 1.94384;
-}
-
-
-function getPresInHg(val) {
-    // hPa to InHg
-    return val * 0.02952998751;
-}
-
-
-function getAccumMillimeter(val) {
-    // convert inches to millimeters
-    return val * 25.4;
-}
-
-
-function cardinalWDir(degrees){
-    
-    return ['N','NNE','NE','ENE',
-            'E','ESE','SE','SSE',
-            'S','SSW','SW','WSW',
-            'W','WNW','NW','NNW'][Math.floor(((degrees+11.25)%360)/22.5)];
-}
-// Convert C to F degrees
-function getF(val) {
-    return val * 1.8 + 32;
-}
-
-function getVal(val) {
-    return val;
-}
-
-
-var CONVERSION_FUNCTIONS = {
-    null: getVal,
-    undefined: getVal,
-    getF: getF,
-    getPresInHg: getPresInHg,
-    getSpeedMPH: getSpeedMPH,
-    getAccumMillimeter: getAccumMillimeter,
-    cardinalWDir: cardinalWDir,
-    getSpeedKTS:getSpeedKTS
-};
-
-
-
-function formatValue(val, plotInfo, traceInfo) {
-    var val2;
-    if (val === null) {
-        val = "";
-        val2 = "";
-    } else {
-        if ('yaxis2' in plotInfo && 'convert_value' in plotInfo.yaxis2) {
-            val2 = CONVERSION_FUNCTIONS[plotInfo.yaxis2.convert_value](val);
-            val2 = (val2.toFixed)?val2.toFixed(plotInfo.yaxis2.precision):val2;
-        } else {
-            val2 = undefined;
-        }
-        val = CONVERSION_FUNCTIONS[plotInfo.yaxis.convert_value](val);
-        val=(val.toFixed)?val.toFixed(plotInfo.yaxis.precision):val;
-    }
-
-    if ('yaxis2' in plotInfo && val2 !== undefined) {
-        return "{0}: {1}{2} ({3}{4})".format(
-            traceInfo.name,
-            val, plotInfo.yaxis.units,
-            val2, plotInfo.yaxis2.units);
-    } else {
-        return "{0}: {1}{2}".format(
-            traceInfo.name,
-            val, plotInfo.yaxis.units);
-    }
-}
-
-function getDewpointProbe(data, plotInfo, traceInfo, allData) {
-    var allProbeText = [];
-    var probeText;
-    var relHum = undefined;
-    if ('anc_variables' in traceInfo && traceInfo.anc_variables.length == 1) {
-        relHum = allData[traceInfo.anc_variables[0]];
-    }
-    var rh_info = traceInfo.anc_info[traceInfo.anc_variables[0]];
-    if(!rh_info)
-        rh_info={ name: traceInfo.anc_variables[0], units: '', precision: 2};
-
-    for (var i=0; i < data.length; i++) {
-        probeText = formatValue(data[i], plotInfo, traceInfo);
-        if (relHum !== undefined) {
-            probeText += "<br>{0}: {1}{2}".format(rh_info.name,
-                    relHum[i] ? relHum[i].toFixed(rh_info.precision) : "",
-                    rh_info.units);
-        }
-        allProbeText.push(probeText);
-    }
-    return allProbeText;
-}
-
-
-function defaultProbeText(data, plotInfo, traceInfo, allData) {
-    // assume traces share the same 'x'
-    var allProbeText = [];
-    for (var i=0; i < data.length; i++) {
-        allProbeText.push(formatValue(data[i], plotInfo, traceInfo));
-    }
-    return allProbeText;
-}
-
-
-var PROBE_TEXT_FUNCTIONS = {
-    undefined: defaultProbeText,
-    null: defaultProbeText,
-    dewpoint: getDewpointProbe,
-    water_temp: getWaterTempProbe,
-};
-
-
-function getProbeText(data, plotInfo, traceInfo, allData) {
-    if ('probe_text' in traceInfo) {
-        return PROBE_TEXT_FUNCTIONS[traceInfo.probe_text](data, plotInfo, traceInfo, allData);
-    }
-    return defaultProbeText(data, plotInfo, traceInfo, allData);
-}
-
-
-function getTickText(values, axis_info) {
-    var tickText = [];
-    for (var i=0; i < values.length; i++) {
-        var val = CONVERSION_FUNCTIONS[axis_info.convert_value](values[i]);
-        val = (val.toFixed)?val.toFixed(axis_info.precision):val;
-        tickText.push(val);
-    }
-    return tickText;
-}
-
-
-/**
-* the purpose of this method is to get the spacing for the y axis
-* For deg F and deg C
-* @param min - minimum of the temp or dew point array
-* @param max - maximum of the temp or dew point array
-* @return array of 4 tick values for the y axis
-*/
-
-function getTickVals(min, max, bump) {
-    var extra = (max - min) * 0.02;
-    min = min - extra;
-    max = max + extra;
-    var step = (max - min) / 4.;
-    //create 4 tick values for the y axis
-    return _.range(min, max + step, step);
-}
-
-
-module.exports.getTickVals = getTickVals;
-module.exports.getProbeText = getProbeText;
-module.exports.getTickText = getTickText;
-
-
-
-
diff --git a/htdocs/js/meteorogram/plot/update.js b/htdocs/js/meteorogram/plot/update.js
deleted file mode 100644
index 8de71b7025ddaafb3c8e539ff090b735207e7c48..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/plot/update.js
+++ /dev/null
@@ -1,219 +0,0 @@
-"use strict";
-var ticktext = require('./ticks.js');
-var _ = require('underscore');
-
-
-function plotsInDiv(graphDiv) {
-    var plotNames = [];
-    _.each(graphDiv.data, function(elem) {
-        // assume the plot's traces are sequential
-        // so only check the last element
-        if (plotNames[plotNames.length - 1] != elem.plot_name) {
-            plotNames.push(elem.plot_name);
-        }
-    });
-    return plotNames;
-}
-
-
-function replaceData(graphDiv, plotsInfo, dataObj, update) {
-    var dates = dataObj['dates'];
-    var plotName;
-    var plotInfo;
-    var trace_anc_data;
-    var ancHandled = [];
-    var plotHandled =[];
-    var updateChanges = {
-        x: [],
-        y: [],
-        z: [],
-        text: [],
-    };
-
-    // get full array so we can properly make probe text later
-    var traceIndex = 0;
-    if (update) {
-        for (var i = 0; i < graphDiv.data.length; i++) {
-            plotName = graphDiv.data[i].plot_name;
-            if (plotHandled[plotHandled.length - 1] == plotName) {
-                continue;
-            }
-            plotInfo = plotsInfo.plots[plotName];
-            _.each(plotInfo.traces, function(elem, index) {
-                _.each(elem.var_names, function(var_name) {
-                    _.each(dataObj[var_name], function(data_elem) {
-                        graphDiv.data[traceIndex + index]['y'].shift();
-                        graphDiv.data[traceIndex + index]['y'].push(data_elem);
-                    });
-                    // hold on to the array to create probe text
-                    dataObj[var_name] = graphDiv.data[traceIndex + index]['y'];
-                });
-
-                trace_anc_data = graphDiv.data[traceIndex + index]['anc_data'];
-                _.each(elem.anc_variables, function(anc_name, anc_index) {
-                    if (ancHandled.includes(anc_name)) {
-                        trace_anc_data[anc_index] = dataObj[anc_name];
-                        return;
-                    }
-                    _.each(dataObj[anc_name], function(data_elem) {
-                        trace_anc_data[anc_index].shift();
-                        trace_anc_data[anc_index].push(data_elem);
-                    });
-                    dataObj[anc_name] = graphDiv.data[traceIndex + index]['anc_data'][anc_index];
-                    ancHandled.push(anc_name);
-                });
-            });
-            traceIndex += plotInfo.traces.length;
-            plotHandled.push(plotName);
-        }
-        // the X arrays are shared between all of the plots with how we've done it during init
-        // we only have to update the array once
-        _.each(dates, function(data_elem, data_index) {
-            graphDiv.data[0]['x'].shift();
-            graphDiv.data[0]['x'].push(dates[data_index]);
-        });
-        dates = graphDiv.data[0]['x'];
-
-        // assume extendTraces is faster than replacing the whole thing
-        // Note: we are already rebuilding the arrays above, so don't use extendTraces
-        // Plotly.extendTraces(graphDiv, update);
-    }
-
-
-    traceIndex = 0;
-    plotHandled = [];
-    for (var i = 0; i < graphDiv.data.length; i++) {
-        plotName = graphDiv.data[i].plot_name;
-        // assume all traces are sequential
-        if (plotHandled[plotHandled.length - 1] == plotName) {
-            continue;
-        }
-        plotInfo = plotsInfo.plots[plotName];
-        _.each(plotInfo.traces, function(elem, index, traces) {
-            var probeText;
-            var trace_info = elem;
-            updateChanges.x.push(dates);
-            if (!('anc_variables' in elem)) {
-                graphDiv.data[traceIndex + index]['anc_data'] = undefined;
-            } else {
-                var new_anc_data = [];
-                _.each(elem.anc_variables, function(anc_name, anc_index) {
-                    new_anc_data.push(dataObj[anc_name]);
-                });
-                graphDiv.data[traceIndex + index]['anc_data'] = new_anc_data;
-            }
-
-            if (graphDiv.data[traceIndex + index].type == 'scatter') {
-                _.each(elem.var_names, function(var_name) {
-                    updateChanges.y.push(dataObj[var_name]);
-
-                    // Get probe text shown when hovering over the traces
-                    if ('probe_text' in trace_info && trace_info['probe_text'] === null) {
-                        // we don't want probe text for this trace
-                        probeText = undefined;
-                    } else {
-                        probeText = ticktext.getProbeText(dataObj[var_name], plotInfo, trace_info, dataObj);
-                    }
-                    updateChanges.text.push(probeText);
-                    updateChanges.z.push(undefined);
-                });
-            } else if (graphDiv.data[traceIndex + index].type == 'contour') {
-                var thisData = _.map(elem.var_names, function(var_name) {return dataObj[var_name];});
-                updateChanges.y.push(undefined);
-                updateChanges.text.push(
-                    ticktext.getProbeText(thisData, plotInfo, trace_info, dataObj)
-                );
-                updateChanges.z.push(_.map(elem.var_names, function(var_name) {
-                    return dataObj[var_name];
-                }));
-            } else {
-                updateChanges.y.push(undefined);
-                updateChanges.z.push(undefined);
-                updateChanges.text.push(undefined);
-            }
-        });
-        traceIndex += plotInfo.traces.length;
-        plotHandled.push(plotName);
-    }
-    // Restyle/update all plots
-    Plotly.restyle(graphDiv, updateChanges);
-}
-
-
-function updateAxes(graphDiv, plots_info) {
-    var plotNames = plotsInDiv(graphDiv);
-    var plot_info;
-    var traceIdx = 0;
-    var minmax, min, max;
-    var yaxis_number = 0;
-    var yaxis_name, yaxis_name_1;
-    var layout = {};
-    var tickVals;
-    var extra;
-    for (var i=0; i < plotNames.length; i++) {
-        plot_info = plots_info.plots[plotNames[i]];
-        minmax = _.unzip(_.map(plot_info.traces, function(e, i, l) {
-            // return the minimum for this traces data
-            var this_min = _.min(graphDiv.data[traceIdx + i]['y']);
-            var this_max = _.max(graphDiv.data[traceIdx + i]['y']);
-            return [this_min, this_max];
-        }));
-        min = _.min(minmax[0]);
-        max = _.max(minmax[1]);
-
-        traceIdx += plot_info.traces.length;
-
-        // Custom data we added to the trace information
-        var axis_info = plot_info.yaxis;
-        yaxis_number += 1;
-        yaxis_name = yaxis_name_1 = "yaxis" + yaxis_number;
-        if (yaxis_number == 1) {
-            yaxis_name = yaxis_name_1 = "yaxis";
-        }
-        if ('tickvals' in axis_info && 'ticktext' in axis_info) {
-            // everything specified in config
-            layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];
-            layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];
-            layout[yaxis_name + '.range'] = axis_info['range'];
-        } else {
-            // figure the axis ticks
-            if (min == max) {
-                min -= 0.02;
-                max += 1.02;
-            }
-            layout[yaxis_name + '.tickvals'] = tickVals = ticktext.getTickVals(min, max, axis_info.step);
-            layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);
-            // Add a limit extra space on the top and bottom of each plot for a better look
-            extra = (tickVals[tickVals.length - 1] - tickVals[0]) * 0.05;
-            layout[yaxis_name + '.range'] = [tickVals[0] - extra, tickVals[tickVals.length - 1] + extra];
-        }
-
-
-        if ('yaxis2' in plot_info) {
-            axis_info = plot_info.yaxis2;
-            yaxis_number += 1;
-            yaxis_name = "yaxis" + yaxis_number;
-
-            if ('tickvals' in axis_info && 'ticktext' in axis_info) {
-                // everything specified in config
-                layout[yaxis_name + '.tickvals'] = axis_info['tickvals'];
-                layout[yaxis_name + '.ticktext'] = axis_info['ticktext'];
-                layout[yaxis_name + '.range'] = axis_info['range'];
-            } else {
-                // We want to match the 'main' axis ticks
-                layout[yaxis_name + '.tickvals'] = layout[yaxis_name_1 + '.tickvals'];
-                layout[yaxis_name + '.ticktext'] = ticktext.getTickText(layout[yaxis_name + '.tickvals'], axis_info);
-                layout[yaxis_name + '.range'] = layout[yaxis_name_1 + '.range'];
-            }
-        }
-    }
-
-    Plotly.relayout(graphDiv, layout);
-}
-
-function updatePlot(graphDiv, plotsInfo, dataObj, update) {
-    replaceData(graphDiv, plotsInfo, dataObj, update);
-    updateAxes(graphDiv, plotsInfo);
-}
-
-module.exports.updatePlot = updatePlot;
diff --git a/htdocs/js/meteorogram/site_configs.js b/htdocs/js/meteorogram/site_configs.js
deleted file mode 100644
index d43470d75a1e528d54910251ae452a4b18a268d0..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/site_configs.js
+++ /dev/null
@@ -1,391 +0,0 @@
-/*Config options for different sites*/
-var siteConfigs = {
-    'aoss.tower': {
-        title: 'AO&SS Building RealTime Meteorogram',
-        defaultPlots: ['air_temp', 'pressure', 'wind_speed', 'wind_direction', 'accum_precip', 'solar_flux'],
-        plots: {
-            // Air Temperature and Dewpoint
-            air_temp: {
-                traces: [
-                    {
-                        // starts in Celsius
-                        // Air Temperature
-                        name: 'Temperature',
-                        var_names: ['aoss.tower.air_temp'],
-                        color: 'orange',
-                    },
-                    {
-                        // Dewpoint
-                        name: 'Dew Point',
-                        var_names: ['aoss.tower.dewpoint'],
-                        color: 'blue',
-                        probe_text: 'dewpoint',
-                        // data for the probe but not the line
-                        anc_variables: ['aoss.tower.rel_hum'],
-                        anc_info: {
-                            'aoss.tower.rel_hum':{
-                                name: 'Rel. Hum.',
-                                units: '%',
-                                precision: 2,
-                            }
-                        },
-                    },
-                ],
-                yaxis: {
-                    title: 'Temp (°C)',
-                    range: [-2.5, 3.5],  // default range
-                    convert_value: null,
-                    units: ' °C',
-                    precision: 3,
-                    step: 2,
-                },
-                // right side axis
-                yaxis2: {
-                    title: 'Temp (°F)',
-                    convert_value: 'getF',
-                    range: [-2.5, 3.5],  // default range
-                    units: ' °F',
-                    precision: 3,
-                    step: 2,
-                },
-            },
-            pressure: {
-                traces: [
-                    {
-                        name: 'Pressure',
-                        var_names: ['aoss.tower.pressure'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Pressure (hpa)',
-                    range: [-0.5, 1.5],
-                    convert_value: null,
-                    units: ' hPa',
-                    precision: 2,
-                    step: 0.2,
-                },
-                yaxis2: {
-                    title: 'Pressure (inHg)',
-                    range: [-0.5, 1.5],
-                    convert_value: 'getPresInHg',
-                    units: ' inHg',
-                    precision: 2,
-                    step: 0.2,
-                },
-            },
-            wind_speed: {
-                traces: [
-                    {
-                        name: 'Wind Speed',
-                        var_names: ['aoss.tower.wind_speed'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Wind Speed (m/s)',
-                    range: [-1, 2.5],
-                    convert_value: null,
-                    units: ' m/s',
-                    precision: 2,
-                    step: 1,
-                },
-                yaxis2: {
-                    title: 'Wind Speed (mph)',
-                    range: [-1, 2.5],
-                    convert_value: 'getSpeedMPH',
-                    units: ' mph',
-                    precision: 2,
-                    step: 1,
-                }
-            },
-            wind_direction: {
-                traces: [
-                    {
-                        name: 'Wind Direction',
-                        var_names: ['aoss.tower.wind_direction'],
-                        mode: 'markers',
-                    },
-                ],
-                yaxis: {
-                    title: 'Wind Direction (°)',
-                    range: [-20, 380],
-                    tickvals: [0, 90, 180, 270, 360],
-                    ticktext: ['0', '90', '180', '270', '360'],
-                    convert_value: null,
-                    units: '°',
-                    precision: 0,
-                    step: 0,
-                    zeroline: true,
-                },
-                yaxis2: {
-                    title: 'Wind Direction',
-                    tickvals: [0, 90, 180, 270, 360],
-                    ticktext: ['N', 'E', 'S', 'W', 'N'],
-                    convert_value: 'cardinalWDir',
-                    units:'',
-                    precision: 0,
-                    step: 0,
-                }
-            },
-            accum_precip: {
-                traces: [
-                    {
-                        name: 'Accumulated Precipitation',
-                        short_name:'Accum. Precip.',
-                        var_names: ['aoss.tower.accum_precip'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Accum Precip (mm)',
-                    range: [-0.02, 1.03],
-                    convert_value: 'getAccumMillimeter',
-                    units: 'mm',
-                    precision: 3,
-                    step: 0.02,
-                },
-                yaxis2: {
-                    title: 'Accum Precip (inches)',
-                    range: [-0.02, 1.03],
-                    convert_value: null,
-                    units: 'in',
-                    precision: 3,
-                    step: 0.02,
-                },
-            },
-            solar_flux: {
-                traces: [
-                    {
-                        name: 'Solar Flux',
-                        var_names: ['aoss.tower.solar_flux'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Solar Flux (W/m^2)',
-                    convert_value: null,
-                    units: ' W/m^2',
-                    precision: 0,
-                    step: 0,
-                },
-            },
-        },
-        /*Display information for ancillary items with no associated trace*/
-    },
-    'mendota.buoy': {
-        title: 'Lake Mendota Buoy RealTime Meteorogram',
-        defaultPlots: ['air_temp', 'wind_speed', 'wind_direction', 'chlorophyll', 'phycocyanin', 'water_temp'],
-        plots: {
-            // Air Temperature and Dewpoint
-            air_temp: {
-                traces: [
-                    {
-                        // starts in Celsius
-                        // Air Temperature
-                        name: 'Temperature',
-                        var_names: ['mendota.buoy.air_temp'],
-                        color: 'orange',
-                    },
-                    {
-                        // Dewpoint
-                        name: 'Dew Point',
-                        var_names: ['mendota.buoy.dewpoint'],
-                        color: 'blue',
-                        probe_text: 'dewpoint',
-                        // data for the probe but not the line
-                        anc_variables: ['mendota.buoy.rel_hum'],
-                        anc_info: {
-                            'mendota.buoy.rel_hum':{
-                                name: 'Relative Humidity',
-                                short_name:'Rel. Hum.',
-                                units: '%',
-                                precision: 1,
-                            }
-                        },
-                    },
-                ],
-                yaxis: {
-                    title: 'Temp (°C)',
-                    // range: [-2.5, 3.5],  // default range
-                    range: [-2.5, 100],  // default range
-                    convert_value: null,
-                    units: ' °C',
-                    precision: 3,
-                    step: 2,
-                },
-                // right side axis
-                yaxis2: {
-                    title: 'Temp (°F)',
-                    convert_value: 'getF',
-                    units: ' °F',
-                    precision: 3,
-                    step: 2,
-                },
-            },
-            wind_speed: {
-                traces: [
-                    {
-                        name: 'Wind Speed',
-                        var_names: ['mendota.buoy.wind_speed'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Wind Speed (kts)',
-                    range: [-1, 2.5],
-                    convert_value: 'getSpeedKTS',
-                    units: ' kts',
-                    precision: 2,
-                    step: 1,
-                },
-                yaxis2: {
-                    title: 'Wind Speed (mph)',
-                    range: [-1, 2.5],
-                    convert_value: 'getSpeedMPH',
-                    units: ' mph',
-                    precision: 2,
-                    step: 1,
-                }
-            },
-            wind_direction: {
-                traces: [
-                    {
-                        name: 'Wind Direction',
-                        var_names: ['mendota.buoy.wind_direction'],
-                        mode: 'markers',
-                    },
-                ],
-                yaxis: {
-                    title: 'Wind Direction (°)',
-                    range: [-20, 380],
-                    tickvals: [0, 90, 180, 270, 360],
-                    ticktext: ['0', '90', '180', '270', '360'],
-                    convert_value: null,
-                    units: '°',
-                    precision: 0,
-                    step: 0,
-                    zeroline: true,
-                },
-                yaxis2: {
-                    title: 'Wind Direction',
-                    tickvals: [0, 90, 180, 270, 360],
-                    ticktext: ['N', 'E', 'S', 'W', 'N'],
-                    convert_value: 'cardinalWDir',
-                    units:'',
-                    precision: 0,
-                    step: 0,
-                }
-            },
-            chlorophyll: {
-                traces: [
-                    {
-                        name: 'Chlorophyll',
-                        var_names: ['mendota.buoy.chlorophyll'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Chlorophyll (RFU)',
-                    range: [-1, 2.5],
-                    convert_value: null,
-                    units: ' RFU',
-                    precision: 0,
-                    step: 1,
-                },
-            },
-            phycocyanin: {
-                traces: [
-                    {
-                        name: 'Phycocyanin',
-                        var_names: ['mendota.buoy.phycocyanin'],
-                    },
-                ],
-                yaxis: {
-                    title: 'Phycocyanin (RFU)',
-                    range: [-1, 2.5],
-                    convert_value: null,
-                    units: ' RFU',
-                    precision: 3,
-                    step: 1,
-                },
-            },
-            water_temp: {
-                traces: [
-                    {
-                        name: 'Water Temperature',
-                        var_names: [
-                            'mendota.buoy.water_temp_1',
-                            'mendota.buoy.water_temp_2',
-                            'mendota.buoy.water_temp_3',
-                            'mendota.buoy.water_temp_4',
-                            'mendota.buoy.water_temp_5',
-                            'mendota.buoy.water_temp_6',
-                            'mendota.buoy.water_temp_7',
-                            'mendota.buoy.water_temp_8',
-                            'mendota.buoy.water_temp_9',
-                            'mendota.buoy.water_temp_10',
-                            'mendota.buoy.water_temp_11',
-                            'mendota.buoy.water_temp_12',
-                            'mendota.buoy.water_temp_13',
-                            'mendota.buoy.water_temp_14',
-                            'mendota.buoy.water_temp_15',
-                            'mendota.buoy.water_temp_16',
-                            'mendota.buoy.water_temp_17',
-                            'mendota.buoy.water_temp_18',
-                            'mendota.buoy.water_temp_19',
-                            'mendota.buoy.water_temp_20',
-                            'mendota.buoy.water_temp_21',
-                            'mendota.buoy.water_temp_22',
-                            'mendota.buoy.water_temp_23',
-                        ],
-                        type: 'contour',
-                        zmin: 0,
-                        zmax: 27,
-                        y: [0, -.5, -1, -1.5, -2, -3,-4,-5,-6,-7,-8,-9,-10,-11,-12,-13,-14,-15,-16,-17,-18,-19,-20],
-                        y_highlight: [0, 2, 7,12, 17, 22],
-                        colorbar: {
-                            title: 'Temperature (°C)',
-                            titleside: 'right',
-                            x: 0.98,
-                            thickness: 20,
-                            tickfont: {
-                                size: 8
-                            },
-                            titlefont: {
-                                size:10
-                            },
-                            tickvals: [3,6,9,12,15,18,21,24,27,30]
-                        },
-                        contours: {
-                                coloring: 'line'
-                            },
-                        line: {
-                                width: 1
-                            },
-                        colorscale: 'YIGnBu',
-                        showscale: true,
-                        zprobe: {
-                            title: 'Temp (°C)',
-                            convert_value: null,
-                            units: ' °C',
-                            precision: 1,
-                        },
-                        // alternate units
-                        zprobe2: {
-                            title: 'Temp (°F)',
-                            convert_value: 'getF',
-                            units: ' °F',
-                            precision: 1,
-                        },
-                        probe_text: 'water_temp',
-                    },
-                ],
-                yaxis: {
-                    title: 'Depth (m)',
-                    units:'m',
-                    range: [-20, 0],
-                    tickvals: [0, -5, -10, -15, -20],
-                    ticktext: ["0.00", "-5.00", "-10.00", "-15.00", "-20.00"],
-                    convert_value: null,
-                    precision: 3,
-                    step: 1,
-                },
-            },
-        },
-    },
-};
diff --git a/htdocs/js/meteorogram/ui/alterVisibility.js b/htdocs/js/meteorogram/ui/alterVisibility.js
deleted file mode 100644
index 734cd9999214039abff87a9bc3627e3ca14dd9bb..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/ui/alterVisibility.js
+++ /dev/null
@@ -1,379 +0,0 @@
-"use strict";
-
-var Dispatcher = require('../Dispatcher.js');
-var myDispatcher = require('../Dispatcher.js').myDispatcher;
-var checkboxEmitter = require('../Dispatcher.js').checkboxEmitter;
-var plotEmitter = require('../Dispatcher.js').plotEmitter;
-//var Plotly = require('plotly.js');
-/**
-* The purpose of this method is to get the dimensions for the plots
-*
-* @param graphs - array of where the plots currently are
-* @return layout - json object with axes.domain as key and list [begin, end] as dimensions of plot
-*/
-function getDomains(graphs)
-{
-    var axes = {
-                   'temp': 'yaxis', 
-                   'pres': 'yaxis3', 
-                   'wS':   'yaxis4', 
-                   'wD':   'yaxis5', 
-                   'aP':   'yaxis6', 
-                   'sF':   'yaxis7'
-               };
-
-    var domains = [[0.00, 1.00], [0.67, 0.79], [0.51, 0.63], [0.34, 0.47], [0.17, 0.30], [0, 0.13]];
-
-    var layout = {};
-
-    for(var i = 0; i < graphs.length; i++)
-    {
-        layout[axes[graphs[i]] + '.domain'] = domains[i];
-    }
-
-    return layout;
-}
-
-/**
-* The purpose of this method is to find out where the last showing graph is
-*
-* @param graphs - array with positions of current plots
-* @param showing - json object depicting which plots are showing
-* @return index - the last index of showing plot
-*/
-
-function findShowing(graphs, showing)
-{
-    var index = -1;
-
-    for(var i = graphs.length - 1; i > -1; i--)
-    {
-        if(showing[graphs[i]] == true)
-        {
-            index = i;
-            break;
-        }
-    }
-
-    return index;
-}
-
-/**
-* the purpose of this method is to hide a plot
-*
-* @param varName - name of the plot
-* no return
-*/
-
-function hidePlot(varName,div)
-{
-    var graphDiv = document.getElementById(div);
-    //$('#'+div).css({'height':Number($('#graph').height())-myDispatcher.GRAPH_HEIGHT});
-
-    var graphs = checkboxEmitter.getGraphs();
-
-    //remove elt at index
-    var index = graphs.indexOf(varName);
-    //if a stream was passed in instead of a var name, convert it 
-    if(index == -1){
-        varName = checkboxEmitter.streamMap[varName];
-        index = graphs.indexOf(varName);
-    }
-    graphs.splice(index, 1);
-
-    //insert elt to end
-    graphs.push(varName);
-
-    //update graphs positions at checkbox emitter
-    checkboxEmitter.setGraphs(graphs);
-
-    //update which plots are shown 
-    var showing = checkboxEmitter.getShowing();
-
-    showing[varName] = false;
-
-    checkboxEmitter.setShowing(showing);
-
-    //moved plot to end
-
-    var layout = getDomains(graphs);
-
-    //assigned domains
-
-    var axes = checkboxEmitter.getAxes();
-
-    var hideAxis = axes[varName];
-    
-    for(var i = 0; i < hideAxis.length; i++)
-    {
-        var axis = hideAxis[i];
-
-        layout[axis + '.showticklabels'] = false;
-        layout[axis + '.zeroline'] = false;
-        layout[axis + '.showgrid'] = false;
-        layout[axis + '.title'] = '';
-    }
-
-    //plot hidden
-
-    var indexShow = findShowing(graphs, showing);
-
-    var showAxes = checkboxEmitter.getyAnchors();
-
-    if(indexShow == -1)
-    {
-        layout['xaxis.showticklabels'] = false;
-    }
-
-    else
-    {
-        layout['xaxis.anchor'] = showAxes[graphs[indexShow]];
-    }
-
-    //xaxis updated
-
-    var traces = {'temp': [0,1], 'pres': [2], 'wS': [3], 'wD': [4], 'aP': [5], 'sF': [6]};
-
-    var updateTrace = {'visible': false};
-
-    //traces hidden           
-
-    Plotly.restyle(graphDiv, updateTrace, traces[varName]);
-    Plotly.relayout(graphDiv, layout);
-}
-
-/*return whether the plot associated with this varName is showing*/
-function isShowing(varName){
-    var graphs = checkboxEmitter.getGraphs();
-
-    //remove elt at index
-    var index = graphs.indexOf(varName);
-    //if a stream was passed in instead of a var name, convert it 
-    if(index == -1){
-        varName = checkboxEmitter.streamMap[varName];
-    }
-    var showing = checkboxEmitter.getShowing();
-    return showing[varName];
-
-
-};
-/**
-* The purpose of this method is to only return the plots that are showing
-*
-* @param graphs - array with positions of current plot
-* @param showing - json object depicting which plots are being shown
-* @return - only plots that are showing
-*/
-
-function getShowingArray(graphs, showing)
-{
-	var index = -1;
-
-    for(var i = 0; i < graphs.length; i++)
-    {
-        //found the end where only hidden graphs are
-        if(showing[graphs[i]] == false)
-        {
-        	index = i;
-            break;
-        }
-    }
-
-    //if all aren't hidden, return whole graphs
-    if(index == -1)
-        return graphs;
-
-    return graphs.slice(0, index);
-}
-
-/**
-* The purpose of this function is to show a plot
-*
-* @param varName - name of the plot
-* no returns
-*/
-
-function showPlot(varName,div)
-{
-    var graphDiv = document.getElementById(div);
-
-    var original = ['temp', 'pres', 'wS', 'wD', 'aP', 'sF'];
-
-	var graphs = checkboxEmitter.getGraphs();
-
-    //remove elt at index
-    var index = graphs.indexOf(varName);
-    //if a stream was passed in instead of a var name, convert it 
-    if(index == -1){
-        varName = checkboxEmitter.streamMap[varName];
-        index = graphs.indexOf(varName);
-    }
-    if(varName === undefined){
-        // FIXME: Why are we getting a bad var name?
-        console.warn("Got invalid varName in showPlot. Exiting showPlot.");
-        return;
-    };
-    graphs.splice(index, 1);
-
-    //$('#'+div).css({'height':Number($('#graph').height())+myDispatcher.GRAPH_HEIGHT});
-    var showing = checkboxEmitter.getShowing();
-
-    var showingGraphs = getShowingArray(graphs, showing);
-
-    var insert = -1;
-
-    var originalSpot = original.indexOf(varName);
-
-    //if varname is more to the right of original than last elt of showing array, insert at end
-    if(originalSpot > original.indexOf(showingGraphs[showingGraphs.length - 1]))
-    {
-        insert = showingGraphs.length;
-    }
-
-    //else if varname is more to the left than the start, insert at start
-    else if(originalSpot < original.indexOf(showingGraphs[0]))
-    {
-        insert = 0;        
-    }
-
-    else
-    {
-    	for(var i = 0; i < showingGraphs.length; i++)
-    	{
-            if(original.indexOf(showingGraphs[i]) > originalSpot)
-            {	
-            	insert = i;
-                break;
-            }    
-    	}
-    }
-
-    graphs.splice(insert, 0, varName);
-
-    //moved plot where it's supposed to be
-
-    showing[varName] = true;
-
-    checkboxEmitter.setShowing(showing);
-
-    var layout = getDomains(graphs);
-    //domains assigned
-
-    var axes = checkboxEmitter.getAxes();
-
-    var titles = {
-                     'yaxis': 'Temp (°C)',
-                     'yaxis2': 'Temp (°F)',
-                     'yaxis3': 'Pressure (hpa)',
-                     'yaxis4': 'Wind Speed (m/s)',
-                     'yaxis5': 'Wind Direction (°)',
-                     'yaxis6': 'Accum Precip (mm)',
-                     'yaxis7': 'Solar Flux (W/m^2)',
-                     'yaxis8': 'Wind Direction',
-                     'yaxis9': 'Wind Speed (MPH)',
-                     'yaxis10': 'Pressure (inHg)',
-                     'yaxis11': 'Accum Precip (inches)'   
-                 };           
-
-    var showAxis = axes[varName];
-    
-    for(var i = 0; i < showAxis.length; i++)
-    {
-        var axis = showAxis[i];
-
-        layout[axis + '.showticklabels'] = true;
-        layout[axis + '.zeroline'] = true;
-        layout[axis + '.showgrid'] = true;
-        layout[axis + '.title'] = titles[axis];
-    }
-
-    //plot shown
-
-    var traces = {'temp': [0,1], 'pres': [2], 'wS': [3], 'wD': [4], 'aP': [5], 'sF': [6]};
-
-    var updateTrace = {'visible': true};
-
-    //show traces
-
-    var indexShow = findShowing(graphs, showing);
-
-    var showAxes = checkboxEmitter.getyAnchors();
-
-    layout['xaxis.showticklabels'] = true;
-    layout['xaxis.anchor'] = showAxes[graphs[indexShow]];    
-
-    //xaxes updated       
-
-    Plotly.restyle(graphDiv, updateTrace, traces[varName]);
-
-    Plotly.relayout(graphDiv, layout);
-}
-
-//set listeners for checkbox store
-checkboxEmitter.on('hideTemp', function(div)
-{
-    hidePlot('temp',div);
-});
-
-checkboxEmitter.on('hidePres', function(div) 
-{
-    hidePlot('pres',div);
-});
-
-checkboxEmitter.on('hideWS', function(div)
-{
-    hidePlot('wS',div);
-});
-
-checkboxEmitter.on('hideWD', function(div)
-{
-    hidePlot('wD',div);
-});
-
-checkboxEmitter.on('hideAP', function(div)
-{
-    hidePlot('aP',div);
-});
-
-checkboxEmitter.on('hideSF', function(div)
-{
-    hidePlot('sF',div);
-});
-
-checkboxEmitter.on('showTemp', function(div)
-{
-    showPlot('temp',div);
-});
-
-checkboxEmitter.on('showPres', function(div)
-{
-    showPlot('pres',div);
-});
-
-checkboxEmitter.on('showWS', function(div)
-{
-    showPlot('wS',div);
-});
-
-checkboxEmitter.on('showWD', function(div)
-{
-    showPlot('wD',div);
-});
-
-checkboxEmitter.on('showAP', function(div)
-{
-    showPlot('aP',div);
-});
-
-checkboxEmitter.on('showSF', function(div)
-{
-    showPlot('sF',div);
-});
-
-module.exports.hidePlot = hidePlot;
-module.exports.showPlot = showPlot;
-module.exports.isShowing= isShowing;
-
-module.exports.myDispatcher = myDispatcher;
-module.exports.checkboxEmitter = checkboxEmitter;
-module.exports.plotEmitter = plotEmitter;
diff --git a/htdocs/js/meteorogram/ui/button_template.js b/htdocs/js/meteorogram/ui/button_template.js
deleted file mode 100644
index dd8e4ba13605c0cdbe1b2c4c8e139f86a3ec8edd..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/ui/button_template.js
+++ /dev/null
@@ -1,99 +0,0 @@
-const checkboxTemplates = {
-    'aoss.tower': '<div class="form-group">'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="temp">Temperature + Dewpoint'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="pres">Pressure'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="wS">Wind Speed'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="wD">Wind Direction'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="aP">Precipitation'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="sF">Solar Flux'+
-        '</label>'+
-        '</div>',
-    'mendota.buoy': '<div class="form-group">'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="temp">Temperature + Dewpoint'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="rh">Relative Humidity'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="wS">Wind Speed'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="wD">Wind Direction'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="chlor">Chlorophyll'+
-        '</label>'+
-        '<label class="form-check-label">'+
-        '<input type="checkbox" class="form-check-input" checked id="phyco">Phycocyanin'+
-        '</label>'+
-        '</div>'
-};
-
-const controlPanelTemplate = '<div class="row" id="control-panel-row">'+
-'<div id="show-hide-boxes" class="col-md-12">'+
-'</div>'+
-'<div class = "col-md-9">'+
-'<div class="row" style="padding: 0 1em;">'+
-'<div class="form-group">'+
-'<table style="width:100%">'+
-'<tr>'+
-'<td>'+
-'<div class="radio">'+
-'<label><input type="radio" id="last_x_days" name="time_select">'+
-'Recent Data:'+
-'</label>'+
-'</div>'+
-'</td>'+
-'<td>'+
-'<select class="form-control" id="dropDownId">'+
-'<option selected value="realtime">Realtime Update</option>'+
-'<option value="-1:00:00">Past 1 Hour</option>'+
-'<option value="-2:00:00">Past 2 Hours</option>'+
-'<option value="-3:00:00">Past 3 Hours</option>'+
-'<option value="-6:00:00">Past 6 Hours</option>'+
-'<option value="-12:00:00">Past 12 Hours</option>'+
-'<option value="-18:00:00">Past 18 Hours</option>'+
-'<option value="-24:00:00">Past 24 Hours</option>'+
-'<option value="-96:00:00">Past 4 Days</option>'+
-'</select>'+
-'</td>'+
-'<td style="padding-left:.5em">'+
-'<div class="radio">'+
-'<label><input type="radio" id="date_range" name="time_select">'+
-'Date Range:'+
-'</label>'+
-'</div>'+
-'</td>'+
-'<td>'+
-'<input class="form-control" style="padding 0.5em 0;" id="Start-date-picker" type="text" placeholder="YYYY-MM-DD"/>'+
-'</td>'+
-'<td>to </td>'+
-'<td>'+
-'<input class="form-control" style="padding 0.5em 0;" id="End-date-picker" type="text" placeholder="YYYY-MM-DD"/>'+
-'</td>'+
-'<td>'+
-'<button class="btn btn-primary btn-block" id="plot-btn">Plot</button>'+
-'</td>'+
-'</tr>'+
-'</table>'+
-'</div>'+
-'</div>'+
-'</div>'+
-'</div>'
-;
-module.exports = {
-    controlPanelTemplate:controlPanelTemplate,
-    checkboxTemplates:checkboxTemplates
-}
diff --git a/htdocs/js/meteorogram/ui/buttons.js b/htdocs/js/meteorogram/ui/buttons.js
deleted file mode 100644
index bcd6eca0788660734fbb6b5d1ffc9952ec31ce95..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/ui/buttons.js
+++ /dev/null
@@ -1,174 +0,0 @@
-"use strict";
-
-//var $ = require('jquery');
-//var jQuery = require('jquery');
-
-var loading = require('./loading.js');
-const controlPanelTemplate = require('./button_template.js');
-
-/**
-* The purpose of this method is to tell dispatcher
-* Oh, please check if user's entering stuff correctly
-*
-* no params
-* no returns
-*/
-
-function dispatchCustom(dispatcher)
-{
-    dispatcher.dispatch({
-        status:'get_between_dates',
-        'emit':'plotEmitter',
-        'start':$('#Start-date-picker').val().split(' ').join('T')+':00',
-        'end':$('#End-date-picker').val().split(' ').join('T')+':00',
-        'interval':'auto',
-    });
-}
-
-
-/**
-* The purpose of this method is to send dispatcher user information
-*
-* no params
-* no returns
-*/
-
-function getUserInfo(dispatcher)
-{
-    //show gif
-    loading.loading();
-
-    //get the information from the text boxes
-    var startDate = $('#Start-date-picker').val();
-    var endDate = $('#End-date-picker').val();
-    var startTime = $('#Start-time-picker').val();
-    var endTime = $('#End-time-picker').val();
-    var interval = $('#interval option:selected');
-    var intervalVal = interval.data("name");
-
-    //store in user info
-    var userInfo = {'startDate' : startDate,
-                    'startTime' : startTime,
-                    'endDate': endDate,
-                    'endTime': endTime,
-                    'interval': intervalVal};
-
-    //send to dispatcher
-    setTimeout(function() {dispatch.dispatch({status: 'plot_custom', 'emit': 'plotEmitter', 'userInfo': userInfo});}, 200);                 
-}
-
-
-/**
-* The purpose of this method is to tell dispatcher, time to check if we need to update
-*
-* no params
-* no returns
-*/
-
-function dispatchUpdate(dispatcher)
-{
-    dispatcher.dispatch({'status': 'update', 'emit': 'plotEmitter'});
-}
-
-/**
-* The purpose of this method is to figure out what the user wants to do based upon
-* what the user selects on the task dropdown
-*
-* no params
-* no returns
-*/
-
-function dropDown(selectedText, dispatcher)
-{
-    console.log(dispatcher);
-    if (selectedText == 'realtime') {
-        dispatcher.dispatch({
-            status:'get_since_now',
-            'emit':'plotEmitter',
-            'time':'-3:00:00'
-        });
-
-    } else {
-        var timeDelta = selectedText;
-        dispatcher.dispatch({
-            status:'get_since_now',
-            'emit':'plotEmitter',
-            'time':selectedText
-        });
-    }
-}
-
-var bind_daterange_actions = function(jQ_div,dispatcher){
-    //bind to custom buttons and dropdowns
-    $(jQ_div+' #plot-btn').click(function(){dispatchCustom(dispatcher)});
-    $(jQ_div+' #dropDownId').change(function(){dropDown($(this).val(),dispatcher)});
-}
-var set_active_form = function(which_block,jQ_div){
-    $(jQ_div+" #dropDownId").prop("disabled",which_block!="recent");
-
-    $(jQ_div+" #interval").prop("disabled",which_block!="range");
-    $(jQ_div+" #Start-date-picker").prop("disabled",which_block!="range");
-    $(jQ_div+" #End-date-picker").prop("disabled",which_block!="range");
-    $(jQ_div+" #Start-time-picker").prop("disabled",which_block!="range");
-    $(jQ_div+" #End-time-picker").prop("disabled",which_block!="range");
-    $(jQ_div+" #plot-btn").prop("disabled",which_block!="range");
-}
-
-var set_form_datepickers = function(jQ_div){
-    $(jQ_div+' #Start-date-picker').datetimepicker({
-        changeMonth: true, 
-        changeYear: true,
-        dateFormat:'yy-mm-dd',
-        timeFormat:'HH:mm',
-        showSecond:false,
-        showMillisec:false,
-        showMicrosec:false
-    });
-
-    $(jQ_div+' #End-date-picker').datetimepicker({
-        changeMonth: true, 
-        changeYear: true,
-        dateFormat:'yy-mm-dd',
-        timeFormat:'HH:mm',
-        showSecond:false,
-        showMillisec:false,
-        showMicrosec:false
-    });
-
-    //bind the enabling/disabling of forms to radio buttons
-    $(jQ_div+' [type=text]').prop("disabled",true);
-    $(jQ_div+' select').prop("disabled",true);
-    $(jQ_div+" #last_x_days").click(function(){
-        set_active_form("recent",jQ_div);
-    });
-    $(jQ_div+" #date_range").click(function(){
-        set_active_form("range",jQ_div);
-    });
-    //$('#Start-time-picker').editableSelect();
-    //$('#End-time-picker').editableSelect();
-    //add placeholder values for the order forms    
-    //$('#Start-date-picker').attr('placeholder',moment.utc().subtract(5,'days').format('YYYY-MM-DD'));
-    //$('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));
-    //Firefox (+others maybe) keep buttons selected on page reload
-    //enable the currrently selected one's field
-    $(jQ_div+" #last_x_days").trigger('click');
-
-};
-
-var setup_all_forms = function(div,plot_div,dispatcher){
-    var jQ_div = '#'+div;
-    set_form_datepickers(jQ_div,plot_div);
-    bind_daterange_actions(jQ_div,dispatcher);
-}
-
-function buildFormInDiv(div, plot_div,dispatcher) {
-    $('#'+div).append(controlPanelTemplate.controlPanelTemplate);
-    //$('#'+div+ " #show-hide-boxes").append(controlPanelTemplate.checkboxTemplates[site]);
-    setup_all_forms(div,plot_div,dispatcher);
-}
-$(document).ready(function(){
-    //Hide all form errors initially
-    //Set up the date range inputs as datepicker objects
-});
-
-module.exports = buildFormInDiv;
diff --git a/htdocs/js/meteorogram/ui/loading.js b/htdocs/js/meteorogram/ui/loading.js
deleted file mode 100644
index c126e904a963f8fb9b3ba33e759631535a30ea32..0000000000000000000000000000000000000000
--- a/htdocs/js/meteorogram/ui/loading.js
+++ /dev/null
@@ -1,205 +0,0 @@
-"use strict";
-//var $ = require('jquery');
-
-/**
-* The purpose of this function is to either hide the graph and show the loading
-* spinner or to hide the loading spinner and show the graph
-* no parameters or returns
-*/
-
-function loading()
-{
-    return;
-    //$("#progress").toggle();
-    //$("#graph").toggle();
-}
-
-/**
-* The point of this method is to disable the custom area of the meteorogram
-* header
-*
-* no params
-* no returns
-*/
-
-function disable()
-{
-	//disable custom rows
-	$('#Start-date-picker').prop("disabled", true);
-	$('#Start-time-picker').prop("disabled", true);
-	$('#End-date-picker').prop("disabled", true);
-	$('#End-time-picker').prop("disabled", true);
-	$('#interval').prop("disabled", true);
-	$('#Plot').prop("disabled", true);
-}
-
-/**
-* The purpose of this method is to enable the custom area of the meteorogram
-* header
-*
-* no params
-* no returns
-*/
-
-function enable()
-{
-	//enable custom rows
-	$('#Start-date-picker').prop("disabled", false);
-	$('#Start-time-picker').prop("disabled", false);
-	$('#End-date-picker').prop("disabled", false);
-	$('#End-time-picker').prop("disabled", false);
-	$('#interval').prop("disabled", false);
-}
-
-/**
-* The purpose of this function is to take a date string and a time string and turn that
-* into a date JS object
-*
-* @param dateString - "MM/DD/YYYY"
-* @param timeString - "HH-MM-SS"
-* @return date object
-*/
-
-function getDate(dateString, timeString)
-{
-	//get date string
-	var year = parseInt(dateString.substring(6,10));
-	var month = parseInt(dateString.substring(0,3));
-	var day = parseInt(dateString.substring(3,5));
-	var hour = parseInt(timeString.substring(0,2));
-	var minute = parseInt(timeString.substring(3,5));
-	var seconds = parseInt(timeString.substring(6,8));
-
-    //return date variable
-    var date = new Date(year, month, day, hour, minute, seconds);
-
-    return date;
-}
-
-/**
-* The purpose of this method is to make sure each field is valid and does
-* not result in too much or too less data points being plotted
-* @param start date - the date the user wants to start at
-* @param time user wants to start at
-* @param end Date - the date user wants to stop at
-* @param end Time - the time the user wants to stop at
-* @param interval - how many seconds averaged does the user want
-* no returns
-*/
-
-/**
-* The purpsoe of this method is to enable the plot button
-*
-* no params
-* no returns
-*/
-
-function enablePlot()
-{
-	//enable plot button
-	$('#Plot').prop("disabled", false);
-}
-
-/**
-* The purpose of this method is to disable the plot button
-*
-* no params
-* no returns
-*/
-
-function disablePlot()
-{
-	//disable plot button
-	$('#Plot').prop("disabled", true);
-}
-
-function checkFields(startDate, endDate, startTime, endTime, interval)
-{
-	//get user information from selected drop down
-	var selected = $('#interval option:selected');
-
-    //give user time to fill out other fields
-	if(selected.text() == '--');
-
-	else
-	{
-		//get information to create a message to the user saying approx how many pts
-		//they are plotting
-        var start = getDate(startDate, startTime);
-        var end = getDate(endDate, endTime);
-        var selected = $('#interval option:selected');
-        var diff = (end - start)/1000;
-        var intervalVal = selected.data("seconds");
-        diff = Math.floor(diff/intervalVal);
-        var points = diff/interval;
-
-        //if too few points, tell user
-        if(diff >= 0 && diff < 60)
-        {
-        	$('#prompt_user').html('a ' + selected.text() + ' interval would plot about ' + diff.toString() 
-        		 + ' data points; that\'s too few - please try again');
-			$('#default').attr('selected', 'selected');
-			disablePlot();
-        }
-
-        //if the user accidentally mixed up start and end dates, politely tell them
-        else if(diff < 0)
-        {
-        	$('#prompt_user').html('The end date is before the start date. Please choose a later end date.');
-			$('#default').attr('selected', 'selected');
-        }
-
-        //if too many points, tell user
-        else if(diff > 1000)
-        {
-        	$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '
-        		+ diff.toString() + ' data points; that\'s too many - please try again');
-			$('#default').attr('selected', 'selected');
-			disablePlot();
-        }
-
-        //else we enable the plot button and tell user how many points they're plotting
-        else
-        {
-        	$('#prompt_user').html('a ' + selected.text() + ' interval would plot about '
-        		+ diff.toString() + ' data points.');
-
-			enablePlot();
-        }
-
-	}
-}
-
-/**
-* The purpose of this method is to make sure all the fields and intervals selected are valid
-*
-* No parameters
-* No returns
-*/
-
-function checkInterval()
-{
-	var startDate = $('#Start-date-picker').val();
-	var endDate = $('#End-date-picker').val();
-	var startTime = $('#Start-time-picker').val();
-	var endTime = $('#End-time-picker').val();
-	var interval = $('#interval');
-
-	//get user information from selected drop down
-	var selected = $('#interval option:selected');
-
-    //check if any fields are not filled out
-	if((!startDate || !endDate || !startTime || !endTime) && selected.text() != '--')
-	{
-		$('#prompt_user').html('Please fill out all other fields before filling out the interval field');
-		$('#default').attr('selected', 'selected');
-	}
-
-    //check to see if fields are ok
-	checkFields(startDate, endDate, startTime, endTime, interval);
-}
-
-module.exports.loading = loading;
-module.exports.disable = disable;
-module.exports.enable = enable;
-module.exports.checkInterval = checkInterval;
diff --git a/htdocs/js/moment.min.js b/htdocs/js/moment.min.js
deleted file mode 100644
index 8c706712d371c26c7ae8f63c2b1312516fc80f25..0000000000000000000000000000000000000000
--- a/htdocs/js/moment.min.js
+++ /dev/null
@@ -1,551 +0,0 @@
-//! moment.js
-//! version : 2.17.1
-//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
-//! license : MIT
-//! momentjs.com
-!function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.moment=b()}(this,function(){"use strict";function a(){return od.apply(null,arguments)}
-// This is done to register the method called with moment()
-// without creating circular dependencies.
-function b(a){od=a}function c(a){return a instanceof Array||"[object Array]"===Object.prototype.toString.call(a)}function d(a){
-// IE8 will treat undefined and null as object if it wasn't for
-// input != null
-return null!=a&&"[object Object]"===Object.prototype.toString.call(a)}function e(a){var b;for(b in a)
-// even if its not own property I'd still call it non-empty
-return!1;return!0}function f(a){return"number"==typeof a||"[object Number]"===Object.prototype.toString.call(a)}function g(a){return a instanceof Date||"[object Date]"===Object.prototype.toString.call(a)}function h(a,b){var c,d=[];for(c=0;c<a.length;++c)d.push(b(a[c],c));return d}function i(a,b){return Object.prototype.hasOwnProperty.call(a,b)}function j(a,b){for(var c in b)i(b,c)&&(a[c]=b[c]);return i(b,"toString")&&(a.toString=b.toString),i(b,"valueOf")&&(a.valueOf=b.valueOf),a}function k(a,b,c,d){return rb(a,b,c,d,!0).utc()}function l(){
-// We need to deep clone this object.
-return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1,parsedDateParts:[],meridiem:null}}function m(a){return null==a._pf&&(a._pf=l()),a._pf}function n(a){if(null==a._isValid){var b=m(a),c=qd.call(b.parsedDateParts,function(a){return null!=a}),d=!isNaN(a._d.getTime())&&b.overflow<0&&!b.empty&&!b.invalidMonth&&!b.invalidWeekday&&!b.nullInput&&!b.invalidFormat&&!b.userInvalidated&&(!b.meridiem||b.meridiem&&c);if(a._strict&&(d=d&&0===b.charsLeftOver&&0===b.unusedTokens.length&&void 0===b.bigHour),null!=Object.isFrozen&&Object.isFrozen(a))return d;a._isValid=d}return a._isValid}function o(a){var b=k(NaN);return null!=a?j(m(b),a):m(b).userInvalidated=!0,b}function p(a){return void 0===a}function q(a,b){var c,d,e;if(p(b._isAMomentObject)||(a._isAMomentObject=b._isAMomentObject),p(b._i)||(a._i=b._i),p(b._f)||(a._f=b._f),p(b._l)||(a._l=b._l),p(b._strict)||(a._strict=b._strict),p(b._tzm)||(a._tzm=b._tzm),p(b._isUTC)||(a._isUTC=b._isUTC),p(b._offset)||(a._offset=b._offset),p(b._pf)||(a._pf=m(b)),p(b._locale)||(a._locale=b._locale),rd.length>0)for(c in rd)d=rd[c],e=b[d],p(e)||(a[d]=e);return a}
-// Moment prototype object
-function r(b){q(this,b),this._d=new Date(null!=b._d?b._d.getTime():NaN),this.isValid()||(this._d=new Date(NaN)),
-// Prevent infinite loop in case updateOffset creates new moment
-// objects.
-sd===!1&&(sd=!0,a.updateOffset(this),sd=!1)}function s(a){return a instanceof r||null!=a&&null!=a._isAMomentObject}function t(a){return a<0?Math.ceil(a)||0:Math.floor(a)}function u(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=t(b)),c}
-// compare two arrays, return the number of differences
-function v(a,b,c){var d,e=Math.min(a.length,b.length),f=Math.abs(a.length-b.length),g=0;for(d=0;d<e;d++)(c&&a[d]!==b[d]||!c&&u(a[d])!==u(b[d]))&&g++;return g+f}function w(b){a.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+b)}function x(b,c){var d=!0;return j(function(){if(null!=a.deprecationHandler&&a.deprecationHandler(null,b),d){for(var e,f=[],g=0;g<arguments.length;g++){if(e="","object"==typeof arguments[g]){e+="\n["+g+"] ";for(var h in arguments[0])e+=h+": "+arguments[0][h]+", ";e=e.slice(0,-2)}else e=arguments[g];f.push(e)}w(b+"\nArguments: "+Array.prototype.slice.call(f).join("")+"\n"+(new Error).stack),d=!1}return c.apply(this,arguments)},c)}function y(b,c){null!=a.deprecationHandler&&a.deprecationHandler(b,c),td[b]||(w(c),td[b]=!0)}function z(a){return a instanceof Function||"[object Function]"===Object.prototype.toString.call(a)}function A(a){var b,c;for(c in a)b=a[c],z(b)?this[c]=b:this["_"+c]=b;this._config=a,
-// Lenient ordinal parsing accepts just a number in addition to
-// number + (possibly) stuff coming from _ordinalParseLenient.
-this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)}function B(a,b){var c,e=j({},a);for(c in b)i(b,c)&&(d(a[c])&&d(b[c])?(e[c]={},j(e[c],a[c]),j(e[c],b[c])):null!=b[c]?e[c]=b[c]:delete e[c]);for(c in a)i(a,c)&&!i(b,c)&&d(a[c])&&(
-// make sure changes to properties don't modify parent config
-e[c]=j({},e[c]));return e}function C(a){null!=a&&this.set(a)}function D(a,b,c){var d=this._calendar[a]||this._calendar.sameElse;return z(d)?d.call(b,c):d}function E(a){var b=this._longDateFormat[a],c=this._longDateFormat[a.toUpperCase()];return b||!c?b:(this._longDateFormat[a]=c.replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a])}function F(){return this._invalidDate}function G(a){return this._ordinal.replace("%d",a)}function H(a,b,c,d){var e=this._relativeTime[c];return z(e)?e(a,b,c,d):e.replace(/%d/i,a)}function I(a,b){var c=this._relativeTime[a>0?"future":"past"];return z(c)?c(b):c.replace(/%s/i,b)}function J(a,b){var c=a.toLowerCase();Dd[c]=Dd[c+"s"]=Dd[b]=a}function K(a){return"string"==typeof a?Dd[a]||Dd[a.toLowerCase()]:void 0}function L(a){var b,c,d={};for(c in a)i(a,c)&&(b=K(c),b&&(d[b]=a[c]));return d}function M(a,b){Ed[a]=b}function N(a){var b=[];for(var c in a)b.push({unit:c,priority:Ed[c]});return b.sort(function(a,b){return a.priority-b.priority}),b}function O(b,c){return function(d){return null!=d?(Q(this,b,d),a.updateOffset(this,c),this):P(this,b)}}function P(a,b){return a.isValid()?a._d["get"+(a._isUTC?"UTC":"")+b]():NaN}function Q(a,b,c){a.isValid()&&a._d["set"+(a._isUTC?"UTC":"")+b](c)}
-// MOMENTS
-function R(a){return a=K(a),z(this[a])?this[a]():this}function S(a,b){if("object"==typeof a){a=L(a);for(var c=N(a),d=0;d<c.length;d++)this[c[d].unit](a[c[d].unit])}else if(a=K(a),z(this[a]))return this[a](b);return this}function T(a,b,c){var d=""+Math.abs(a),e=b-d.length,f=a>=0;return(f?c?"+":"":"-")+Math.pow(10,Math.max(0,e)).toString().substr(1)+d}
-// token:    'M'
-// padded:   ['MM', 2]
-// ordinal:  'Mo'
-// callback: function () { this.month() + 1 }
-function U(a,b,c,d){var e=d;"string"==typeof d&&(e=function(){return this[d]()}),a&&(Id[a]=e),b&&(Id[b[0]]=function(){return T(e.apply(this,arguments),b[1],b[2])}),c&&(Id[c]=function(){return this.localeData().ordinal(e.apply(this,arguments),a)})}function V(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function W(a){var b,c,d=a.match(Fd);for(b=0,c=d.length;b<c;b++)Id[d[b]]?d[b]=Id[d[b]]:d[b]=V(d[b]);return function(b){var e,f="";for(e=0;e<c;e++)f+=d[e]instanceof Function?d[e].call(b,a):d[e];return f}}
-// format date using native date object
-function X(a,b){return a.isValid()?(b=Y(b,a.localeData()),Hd[b]=Hd[b]||W(b),Hd[b](a)):a.localeData().invalidDate()}function Y(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Gd.lastIndex=0;d>=0&&Gd.test(a);)a=a.replace(Gd,c),Gd.lastIndex=0,d-=1;return a}function Z(a,b,c){$d[a]=z(b)?b:function(a,d){return a&&c?c:b}}function $(a,b){return i($d,a)?$d[a](b._strict,b._locale):new RegExp(_(a))}
-// Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
-function _(a){return aa(a.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e}))}function aa(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function ba(a,b){var c,d=b;for("string"==typeof a&&(a=[a]),f(b)&&(d=function(a,c){c[b]=u(a)}),c=0;c<a.length;c++)_d[a[c]]=d}function ca(a,b){ba(a,function(a,c,d,e){d._w=d._w||{},b(a,d._w,d,e)})}function da(a,b,c){null!=b&&i(_d,a)&&_d[a](b,c._a,c,a)}function ea(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function fa(a,b){return a?c(this._months)?this._months[a.month()]:this._months[(this._months.isFormat||ke).test(b)?"format":"standalone"][a.month()]:this._months}function ga(a,b){return a?c(this._monthsShort)?this._monthsShort[a.month()]:this._monthsShort[ke.test(b)?"format":"standalone"][a.month()]:this._monthsShort}function ha(a,b,c){var d,e,f,g=a.toLocaleLowerCase();if(!this._monthsParse)for(
-// this is not used
-this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[],d=0;d<12;++d)f=k([2e3,d]),this._shortMonthsParse[d]=this.monthsShort(f,"").toLocaleLowerCase(),this._longMonthsParse[d]=this.months(f,"").toLocaleLowerCase();return c?"MMM"===b?(e=je.call(this._shortMonthsParse,g),e!==-1?e:null):(e=je.call(this._longMonthsParse,g),e!==-1?e:null):"MMM"===b?(e=je.call(this._shortMonthsParse,g),e!==-1?e:(e=je.call(this._longMonthsParse,g),e!==-1?e:null)):(e=je.call(this._longMonthsParse,g),e!==-1?e:(e=je.call(this._shortMonthsParse,g),e!==-1?e:null))}function ia(a,b,c){var d,e,f;if(this._monthsParseExact)return ha.call(this,a,b,c);
-// TODO: add sorting
-// Sorting makes sure if one month (or abbr) is a prefix of another
-// see sorting in computeMonthsParse
-for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),d=0;d<12;d++){
-// test the regex
-if(
-// make the regex if we don't have it already
-e=k([2e3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]=new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(f="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(f.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a))return d;if(c&&"MMM"===b&&this._shortMonthsParse[d].test(a))return d;if(!c&&this._monthsParse[d].test(a))return d}}
-// MOMENTS
-function ja(a,b){var c;if(!a.isValid())
-// No op
-return a;if("string"==typeof b)if(/^\d+$/.test(b))b=u(b);else
-// TODO: Another silent failure?
-if(b=a.localeData().monthsParse(b),!f(b))return a;return c=Math.min(a.date(),ea(a.year(),b)),a._d["set"+(a._isUTC?"UTC":"")+"Month"](b,c),a}function ka(b){return null!=b?(ja(this,b),a.updateOffset(this,!0),this):P(this,"Month")}function la(){return ea(this.year(),this.month())}function ma(a){return this._monthsParseExact?(i(this,"_monthsRegex")||oa.call(this),a?this._monthsShortStrictRegex:this._monthsShortRegex):(i(this,"_monthsShortRegex")||(this._monthsShortRegex=ne),this._monthsShortStrictRegex&&a?this._monthsShortStrictRegex:this._monthsShortRegex)}function na(a){return this._monthsParseExact?(i(this,"_monthsRegex")||oa.call(this),a?this._monthsStrictRegex:this._monthsRegex):(i(this,"_monthsRegex")||(this._monthsRegex=oe),this._monthsStrictRegex&&a?this._monthsStrictRegex:this._monthsRegex)}function oa(){function a(a,b){return b.length-a.length}var b,c,d=[],e=[],f=[];for(b=0;b<12;b++)
-// make the regex if we don't have it already
-c=k([2e3,b]),d.push(this.monthsShort(c,"")),e.push(this.months(c,"")),f.push(this.months(c,"")),f.push(this.monthsShort(c,""));for(
-// Sorting makes sure if one month (or abbr) is a prefix of another it
-// will match the longer piece.
-d.sort(a),e.sort(a),f.sort(a),b=0;b<12;b++)d[b]=aa(d[b]),e[b]=aa(e[b]);for(b=0;b<24;b++)f[b]=aa(f[b]);this._monthsRegex=new RegExp("^("+f.join("|")+")","i"),this._monthsShortRegex=this._monthsRegex,this._monthsStrictRegex=new RegExp("^("+e.join("|")+")","i"),this._monthsShortStrictRegex=new RegExp("^("+d.join("|")+")","i")}
-// HELPERS
-function pa(a){return qa(a)?366:365}function qa(a){return a%4===0&&a%100!==0||a%400===0}function ra(){return qa(this.year())}function sa(a,b,c,d,e,f,g){
-//can't just apply() to create a date:
-//http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply
-var h=new Date(a,b,c,d,e,f,g);
-//the date constructor remaps years 0-99 to 1900-1999
-return a<100&&a>=0&&isFinite(h.getFullYear())&&h.setFullYear(a),h}function ta(a){var b=new Date(Date.UTC.apply(null,arguments));
-//the Date.UTC function remaps years 0-99 to 1900-1999
-return a<100&&a>=0&&isFinite(b.getUTCFullYear())&&b.setUTCFullYear(a),b}
-// start-of-first-week - start-of-year
-function ua(a,b,c){var// first-week day -- which january is always in the first week (4 for iso, 1 for other)
-d=7+b-c,
-// first-week day local weekday -- which local weekday is fwd
-e=(7+ta(a,0,d).getUTCDay()-b)%7;return-e+d-1}
-//http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday
-function va(a,b,c,d,e){var f,g,h=(7+c-d)%7,i=ua(a,d,e),j=1+7*(b-1)+h+i;return j<=0?(f=a-1,g=pa(f)+j):j>pa(a)?(f=a+1,g=j-pa(a)):(f=a,g=j),{year:f,dayOfYear:g}}function wa(a,b,c){var d,e,f=ua(a.year(),b,c),g=Math.floor((a.dayOfYear()-f-1)/7)+1;return g<1?(e=a.year()-1,d=g+xa(e,b,c)):g>xa(a.year(),b,c)?(d=g-xa(a.year(),b,c),e=a.year()+1):(e=a.year(),d=g),{week:d,year:e}}function xa(a,b,c){var d=ua(a,b,c),e=ua(a+1,b,c);return(pa(a)-d+e)/7}
-// HELPERS
-// LOCALES
-function ya(a){return wa(a,this._week.dow,this._week.doy).week}function za(){return this._week.dow}function Aa(){return this._week.doy}
-// MOMENTS
-function Ba(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")}function Ca(a){var b=wa(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")}
-// HELPERS
-function Da(a,b){return"string"!=typeof a?a:isNaN(a)?(a=b.weekdaysParse(a),"number"==typeof a?a:null):parseInt(a,10)}function Ea(a,b){return"string"==typeof a?b.weekdaysParse(a)%7||7:isNaN(a)?null:a}function Fa(a,b){return a?c(this._weekdays)?this._weekdays[a.day()]:this._weekdays[this._weekdays.isFormat.test(b)?"format":"standalone"][a.day()]:this._weekdays}function Ga(a){return a?this._weekdaysShort[a.day()]:this._weekdaysShort}function Ha(a){return a?this._weekdaysMin[a.day()]:this._weekdaysMin}function Ia(a,b,c){var d,e,f,g=a.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],d=0;d<7;++d)f=k([2e3,1]).day(d),this._minWeekdaysParse[d]=this.weekdaysMin(f,"").toLocaleLowerCase(),this._shortWeekdaysParse[d]=this.weekdaysShort(f,"").toLocaleLowerCase(),this._weekdaysParse[d]=this.weekdays(f,"").toLocaleLowerCase();return c?"dddd"===b?(e=je.call(this._weekdaysParse,g),e!==-1?e:null):"ddd"===b?(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:null):(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null):"dddd"===b?(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null))):"ddd"===b?(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._minWeekdaysParse,g),e!==-1?e:null))):(e=je.call(this._minWeekdaysParse,g),e!==-1?e:(e=je.call(this._weekdaysParse,g),e!==-1?e:(e=je.call(this._shortWeekdaysParse,g),e!==-1?e:null)))}function Ja(a,b,c){var d,e,f;if(this._weekdaysParseExact)return Ia.call(this,a,b,c);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),d=0;d<7;d++){
-// test the regex
-if(
-// make the regex if we don't have it already
-e=k([2e3,1]).day(d),c&&!this._fullWeekdaysParse[d]&&(this._fullWeekdaysParse[d]=new RegExp("^"+this.weekdays(e,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[d]=new RegExp("^"+this.weekdaysShort(e,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[d]=new RegExp("^"+this.weekdaysMin(e,"").replace(".",".?")+"$","i")),this._weekdaysParse[d]||(f="^"+this.weekdays(e,"")+"|^"+this.weekdaysShort(e,"")+"|^"+this.weekdaysMin(e,""),this._weekdaysParse[d]=new RegExp(f.replace(".",""),"i")),c&&"dddd"===b&&this._fullWeekdaysParse[d].test(a))return d;if(c&&"ddd"===b&&this._shortWeekdaysParse[d].test(a))return d;if(c&&"dd"===b&&this._minWeekdaysParse[d].test(a))return d;if(!c&&this._weekdaysParse[d].test(a))return d}}
-// MOMENTS
-function Ka(a){if(!this.isValid())return null!=a?this:NaN;var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=Da(a,this.localeData()),this.add(a-b,"d")):b}function La(a){if(!this.isValid())return null!=a?this:NaN;var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")}function Ma(a){if(!this.isValid())return null!=a?this:NaN;
-// behaves the same as moment#day except
-// as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)
-// as a setter, sunday should belong to the previous week.
-if(null!=a){var b=Ea(a,this.localeData());return this.day(this.day()%7?b:b-7)}return this.day()||7}function Na(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysStrictRegex:this._weekdaysRegex):(i(this,"_weekdaysRegex")||(this._weekdaysRegex=ue),this._weekdaysStrictRegex&&a?this._weekdaysStrictRegex:this._weekdaysRegex)}function Oa(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(i(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ve),this._weekdaysShortStrictRegex&&a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Pa(a){return this._weekdaysParseExact?(i(this,"_weekdaysRegex")||Qa.call(this),a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(i(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=we),this._weekdaysMinStrictRegex&&a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Qa(){function a(a,b){return b.length-a.length}var b,c,d,e,f,g=[],h=[],i=[],j=[];for(b=0;b<7;b++)
-// make the regex if we don't have it already
-c=k([2e3,1]).day(b),d=this.weekdaysMin(c,""),e=this.weekdaysShort(c,""),f=this.weekdays(c,""),g.push(d),h.push(e),i.push(f),j.push(d),j.push(e),j.push(f);for(
-// Sorting makes sure if one weekday (or abbr) is a prefix of another it
-// will match the longer piece.
-g.sort(a),h.sort(a),i.sort(a),j.sort(a),b=0;b<7;b++)h[b]=aa(h[b]),i[b]=aa(i[b]),j[b]=aa(j[b]);this._weekdaysRegex=new RegExp("^("+j.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+i.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+g.join("|")+")","i")}
-// FORMATTING
-function Ra(){return this.hours()%12||12}function Sa(){return this.hours()||24}function Ta(a,b){U(a,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),b)})}
-// PARSING
-function Ua(a,b){return b._meridiemParse}
-// LOCALES
-function Va(a){
-// IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays
-// Using charAt should be more compatible.
-return"p"===(a+"").toLowerCase().charAt(0)}function Wa(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"}function Xa(a){return a?a.toLowerCase().replace("_","-"):a}
-// pick the locale from the array
-// try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each
-// substring from most specific to least, but move to the next array item if it's a more specific variant than the current root
-function Ya(a){for(var b,c,d,e,f=0;f<a.length;){for(e=Xa(a[f]).split("-"),b=e.length,c=Xa(a[f+1]),c=c?c.split("-"):null;b>0;){if(d=Za(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&v(e,c,!0)>=b-1)
-//the next array item is better than a shallower substring of this one
-break;b--}f++}return null}function Za(a){var b=null;
-// TODO: Find a better way to register and load all the locales in Node
-if(!Be[a]&&"undefined"!=typeof module&&module&&module.exports)try{b=xe._abbr,require("./locale/"+a),
-// because defineLocale currently also sets the global locale, we
-// want to undo that for lazy loaded locales
-$a(b)}catch(a){}return Be[a]}
-// This function will load locale and then set the global locale.  If
-// no arguments are passed in, it will simply return the current global
-// locale key.
-function $a(a,b){var c;
-// moment.duration._locale = moment._locale = data;
-return a&&(c=p(b)?bb(a):_a(a,b),c&&(xe=c)),xe._abbr}function _a(a,b){if(null!==b){var c=Ae;if(b.abbr=a,null!=Be[a])y("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),c=Be[a]._config;else if(null!=b.parentLocale){if(null==Be[b.parentLocale])return Ce[b.parentLocale]||(Ce[b.parentLocale]=[]),Ce[b.parentLocale].push({name:a,config:b}),null;c=Be[b.parentLocale]._config}
-// backwards compat for now: also set the locale
-// make sure we set the locale AFTER all child locales have been
-// created, so we won't end up with the child locale set.
-return Be[a]=new C(B(c,b)),Ce[a]&&Ce[a].forEach(function(a){_a(a.name,a.config)}),$a(a),Be[a]}
-// useful for testing
-return delete Be[a],null}function ab(a,b){if(null!=b){var c,d=Ae;
-// MERGE
-null!=Be[a]&&(d=Be[a]._config),b=B(d,b),c=new C(b),c.parentLocale=Be[a],Be[a]=c,
-// backwards compat for now: also set the locale
-$a(a)}else
-// pass null for config to unupdate, useful for tests
-null!=Be[a]&&(null!=Be[a].parentLocale?Be[a]=Be[a].parentLocale:null!=Be[a]&&delete Be[a]);return Be[a]}
-// returns locale data
-function bb(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return xe;if(!c(a)){if(
-//short-circuit everything else
-b=Za(a))return b;a=[a]}return Ya(a)}function cb(){return wd(Be)}function db(a){var b,c=a._a;return c&&m(a).overflow===-2&&(b=c[be]<0||c[be]>11?be:c[ce]<1||c[ce]>ea(c[ae],c[be])?ce:c[de]<0||c[de]>24||24===c[de]&&(0!==c[ee]||0!==c[fe]||0!==c[ge])?de:c[ee]<0||c[ee]>59?ee:c[fe]<0||c[fe]>59?fe:c[ge]<0||c[ge]>999?ge:-1,m(a)._overflowDayOfYear&&(b<ae||b>ce)&&(b=ce),m(a)._overflowWeeks&&b===-1&&(b=he),m(a)._overflowWeekday&&b===-1&&(b=ie),m(a).overflow=b),a}
-// date from iso format
-function eb(a){var b,c,d,e,f,g,h=a._i,i=De.exec(h)||Ee.exec(h);if(i){for(m(a).iso=!0,b=0,c=Ge.length;b<c;b++)if(Ge[b][1].exec(i[1])){e=Ge[b][0],d=Ge[b][2]!==!1;break}if(null==e)return void(a._isValid=!1);if(i[3]){for(b=0,c=He.length;b<c;b++)if(He[b][1].exec(i[3])){
-// match[2] should be 'T' or space
-f=(i[2]||" ")+He[b][0];break}if(null==f)return void(a._isValid=!1)}if(!d&&null!=f)return void(a._isValid=!1);if(i[4]){if(!Fe.exec(i[4]))return void(a._isValid=!1);g="Z"}a._f=e+(f||"")+(g||""),kb(a)}else a._isValid=!1}
-// date from iso format or fallback
-function fb(b){var c=Ie.exec(b._i);return null!==c?void(b._d=new Date(+c[1])):(eb(b),void(b._isValid===!1&&(delete b._isValid,a.createFromInputFallback(b))))}
-// Pick the first defined of two or three arguments.
-function gb(a,b,c){return null!=a?a:null!=b?b:c}function hb(b){
-// hooks is actually the exported moment object
-var c=new Date(a.now());return b._useUTC?[c.getUTCFullYear(),c.getUTCMonth(),c.getUTCDate()]:[c.getFullYear(),c.getMonth(),c.getDate()]}
-// convert an array to a date.
-// the array should mirror the parameters below
-// note: all values past the year are optional and will default to the lowest possible value.
-// [year, month, day , hour, minute, second, millisecond]
-function ib(a){var b,c,d,e,f=[];if(!a._d){
-// Default to current date.
-// * if no year, month, day of month are given, default to today
-// * if day of month is given, default month and year
-// * if month is given, default only year
-// * if year is given, don't default anything
-for(d=hb(a),
-//compute day of the year from weeks and weekdays
-a._w&&null==a._a[ce]&&null==a._a[be]&&jb(a),
-//if the day of the year is set, figure out what it is
-a._dayOfYear&&(e=gb(a._a[ae],d[ae]),a._dayOfYear>pa(e)&&(m(a)._overflowDayOfYear=!0),c=ta(e,0,a._dayOfYear),a._a[be]=c.getUTCMonth(),a._a[ce]=c.getUTCDate()),b=0;b<3&&null==a._a[b];++b)a._a[b]=f[b]=d[b];
-// Zero out whatever was not defaulted, including time
-for(;b<7;b++)a._a[b]=f[b]=null==a._a[b]?2===b?1:0:a._a[b];
-// Check for 24:00:00.000
-24===a._a[de]&&0===a._a[ee]&&0===a._a[fe]&&0===a._a[ge]&&(a._nextDay=!0,a._a[de]=0),a._d=(a._useUTC?ta:sa).apply(null,f),
-// Apply timezone offset from input. The actual utcOffset can be changed
-// with parseZone.
-null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[de]=24)}}function jb(a){var b,c,d,e,f,g,h,i;if(b=a._w,null!=b.GG||null!=b.W||null!=b.E)f=1,g=4,
-// TODO: We need to take the current isoWeekYear, but that depends on
-// how we interpret now (local, utc, fixed offset). So create
-// a now version of current config (take local/utc/offset flags, and
-// create now).
-c=gb(b.GG,a._a[ae],wa(sb(),1,4).year),d=gb(b.W,1),e=gb(b.E,1),(e<1||e>7)&&(i=!0);else{f=a._locale._week.dow,g=a._locale._week.doy;var j=wa(sb(),f,g);c=gb(b.gg,a._a[ae],j.year),
-// Default to current week.
-d=gb(b.w,j.week),null!=b.d?(
-// weekday -- low day numbers are considered next week
-e=b.d,(e<0||e>6)&&(i=!0)):null!=b.e?(
-// local weekday -- counting starts from begining of week
-e=b.e+f,(b.e<0||b.e>6)&&(i=!0)):
-// default to begining of week
-e=f}d<1||d>xa(c,f,g)?m(a)._overflowWeeks=!0:null!=i?m(a)._overflowWeekday=!0:(h=va(c,d,e,f,g),a._a[ae]=h.year,a._dayOfYear=h.dayOfYear)}
-// date from string and format string
-function kb(b){
-// TODO: Move this to another part of the creation flow to prevent circular deps
-if(b._f===a.ISO_8601)return void eb(b);b._a=[],m(b).empty=!0;
-// This array is used to make a Date, either with `new Date` or `Date.UTC`
-var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Y(b._f,b._locale).match(Fd)||[],c=0;c<e.length;c++)f=e[c],d=(h.match($(f,b))||[])[0],
-// console.log('token', token, 'parsedInput', parsedInput,
-//         'regex', getParseRegexForToken(token, config));
-d&&(g=h.substr(0,h.indexOf(d)),g.length>0&&m(b).unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length),
-// don't parse if it's not a known token
-Id[f]?(d?m(b).empty=!1:m(b).unusedTokens.push(f),da(f,d,b)):b._strict&&!d&&m(b).unusedTokens.push(f);
-// add remaining unparsed input length to the string
-m(b).charsLeftOver=i-j,h.length>0&&m(b).unusedInput.push(h),
-// clear _12h flag if hour is <= 12
-b._a[de]<=12&&m(b).bigHour===!0&&b._a[de]>0&&(m(b).bigHour=void 0),m(b).parsedDateParts=b._a.slice(0),m(b).meridiem=b._meridiem,
-// handle meridiem
-b._a[de]=lb(b._locale,b._a[de],b._meridiem),ib(b),db(b)}function lb(a,b,c){var d;
-// Fallback
-return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&b<12&&(b+=12),d||12!==b||(b=0),b):b}
-// date from string and array of format strings
-function mb(a){var b,c,d,e,f;if(0===a._f.length)return m(a).invalidFormat=!0,void(a._d=new Date(NaN));for(e=0;e<a._f.length;e++)f=0,b=q({},a),null!=a._useUTC&&(b._useUTC=a._useUTC),b._f=a._f[e],kb(b),n(b)&&(
-// if there is any input that was not parsed add a penalty for that format
-f+=m(b).charsLeftOver,
-//or tokens
-f+=10*m(b).unusedTokens.length,m(b).score=f,(null==d||f<d)&&(d=f,c=b));j(a,c||b)}function nb(a){if(!a._d){var b=L(a._i);a._a=h([b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],function(a){return a&&parseInt(a,10)}),ib(a)}}function ob(a){var b=new r(db(pb(a)));
-// Adding is smart enough around DST
-return b._nextDay&&(b.add(1,"d"),b._nextDay=void 0),b}function pb(a){var b=a._i,d=a._f;return a._locale=a._locale||bb(a._l),null===b||void 0===d&&""===b?o({nullInput:!0}):("string"==typeof b&&(a._i=b=a._locale.preparse(b)),s(b)?new r(db(b)):(g(b)?a._d=b:c(d)?mb(a):d?kb(a):qb(a),n(a)||(a._d=null),a))}function qb(b){var d=b._i;void 0===d?b._d=new Date(a.now()):g(d)?b._d=new Date(d.valueOf()):"string"==typeof d?fb(b):c(d)?(b._a=h(d.slice(0),function(a){return parseInt(a,10)}),ib(b)):"object"==typeof d?nb(b):f(d)?
-// from milliseconds
-b._d=new Date(d):a.createFromInputFallback(b)}function rb(a,b,f,g,h){var i={};
-// object construction must be done this way.
-// https://github.com/moment/moment/issues/1423
-return f!==!0&&f!==!1||(g=f,f=void 0),(d(a)&&e(a)||c(a)&&0===a.length)&&(a=void 0),i._isAMomentObject=!0,i._useUTC=i._isUTC=h,i._l=f,i._i=a,i._f=b,i._strict=g,ob(i)}function sb(a,b,c,d){return rb(a,b,c,d,!1)}
-// Pick a moment m from moments so that m[fn](other) is true for all
-// other. This relies on the function fn to be transitive.
-//
-// moments should either be an array of moment objects or an array, whose
-// first element is an array of moment objects.
-function tb(a,b){var d,e;if(1===b.length&&c(b[0])&&(b=b[0]),!b.length)return sb();for(d=b[0],e=1;e<b.length;++e)b[e].isValid()&&!b[e][a](d)||(d=b[e]);return d}
-// TODO: Use [].sort instead?
-function ub(){var a=[].slice.call(arguments,0);return tb("isBefore",a)}function vb(){var a=[].slice.call(arguments,0);return tb("isAfter",a)}function wb(a){var b=L(a),c=b.year||0,d=b.quarter||0,e=b.month||0,f=b.week||0,g=b.day||0,h=b.hour||0,i=b.minute||0,j=b.second||0,k=b.millisecond||0;
-// representation for dateAddRemove
-this._milliseconds=+k+1e3*j+// 1000
-6e4*i+// 1000 * 60
-1e3*h*60*60,//using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978
-// Because of dateAddRemove treats 24 hours as different from a
-// day when working around DST, we need to store them separately
-this._days=+g+7*f,
-// It is impossible translate months into days without knowing
-// which months you are are talking about, so we have to store
-// it separately.
-this._months=+e+3*d+12*c,this._data={},this._locale=bb(),this._bubble()}function xb(a){return a instanceof wb}function yb(a){return a<0?Math.round(-1*a)*-1:Math.round(a)}
-// FORMATTING
-function zb(a,b){U(a,0,0,function(){var a=this.utcOffset(),c="+";return a<0&&(a=-a,c="-"),c+T(~~(a/60),2)+b+T(~~a%60,2)})}function Ab(a,b){var c=(b||"").match(a);if(null===c)return null;var d=c[c.length-1]||[],e=(d+"").match(Me)||["-",0,0],f=+(60*e[1])+u(e[2]);return 0===f?0:"+"===e[0]?f:-f}
-// Return a moment from input, that is local/utc/zone equivalent to model.
-function Bb(b,c){var d,e;
-// Use low-level api, because this fn is low-level api.
-return c._isUTC?(d=c.clone(),e=(s(b)||g(b)?b.valueOf():sb(b).valueOf())-d.valueOf(),d._d.setTime(d._d.valueOf()+e),a.updateOffset(d,!1),d):sb(b).local()}function Cb(a){
-// On Firefox.24 Date#getTimezoneOffset returns a floating point.
-// https://github.com/moment/moment/pull/1871
-return 15*-Math.round(a._d.getTimezoneOffset()/15)}
-// MOMENTS
-// keepLocalTime = true means only change the timezone, without
-// affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->
-// 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset
-// +0200, so we adjust the time as needed, to be valid.
-//
-// Keeping the time actually adds/subtracts (one hour)
-// from the actual represented time. That is why we call updateOffset
-// a second time. In case it wants us to change the offset again
-// _changeInProgress == true case, then we have to adjust, because
-// there is no such time in the given timezone.
-function Db(b,c){var d,e=this._offset||0;if(!this.isValid())return null!=b?this:NaN;if(null!=b){if("string"==typeof b){if(b=Ab(Xd,b),null===b)return this}else Math.abs(b)<16&&(b=60*b);return!this._isUTC&&c&&(d=Cb(this)),this._offset=b,this._isUTC=!0,null!=d&&this.add(d,"m"),e!==b&&(!c||this._changeInProgress?Tb(this,Ob(b-e,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,a.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?e:Cb(this)}function Eb(a,b){return null!=a?("string"!=typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()}function Fb(a){return this.utcOffset(0,a)}function Gb(a){return this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(Cb(this),"m")),this}function Hb(){if(null!=this._tzm)this.utcOffset(this._tzm);else if("string"==typeof this._i){var a=Ab(Wd,this._i);null!=a?this.utcOffset(a):this.utcOffset(0,!0)}return this}function Ib(a){return!!this.isValid()&&(a=a?sb(a).utcOffset():0,(this.utcOffset()-a)%60===0)}function Jb(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Kb(){if(!p(this._isDSTShifted))return this._isDSTShifted;var a={};if(q(a,this),a=pb(a),a._a){var b=a._isUTC?k(a._a):sb(a._a);this._isDSTShifted=this.isValid()&&v(a._a,b.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function Lb(){return!!this.isValid()&&!this._isUTC}function Mb(){return!!this.isValid()&&this._isUTC}function Nb(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Ob(a,b){var c,d,e,g=a,
-// matching against regexp is expensive, do it on demand
-h=null;// checks for null or undefined
-return xb(a)?g={ms:a._milliseconds,d:a._days,M:a._months}:f(a)?(g={},b?g[b]=a:g.milliseconds=a):(h=Ne.exec(a))?(c="-"===h[1]?-1:1,g={y:0,d:u(h[ce])*c,h:u(h[de])*c,m:u(h[ee])*c,s:u(h[fe])*c,ms:u(yb(1e3*h[ge]))*c}):(h=Oe.exec(a))?(c="-"===h[1]?-1:1,g={y:Pb(h[2],c),M:Pb(h[3],c),w:Pb(h[4],c),d:Pb(h[5],c),h:Pb(h[6],c),m:Pb(h[7],c),s:Pb(h[8],c)}):null==g?g={}:"object"==typeof g&&("from"in g||"to"in g)&&(e=Rb(sb(g.from),sb(g.to)),g={},g.ms=e.milliseconds,g.M=e.months),d=new wb(g),xb(a)&&i(a,"_locale")&&(d._locale=a._locale),d}function Pb(a,b){
-// We'd normally use ~~inp for this, but unfortunately it also
-// converts floats to ints.
-// inp may be undefined, so careful calling replace on it.
-var c=a&&parseFloat(a.replace(",","."));
-// apply sign while we're at it
-return(isNaN(c)?0:c)*b}function Qb(a,b){var c={milliseconds:0,months:0};return c.months=b.month()-a.month()+12*(b.year()-a.year()),a.clone().add(c.months,"M").isAfter(b)&&--c.months,c.milliseconds=+b-+a.clone().add(c.months,"M"),c}function Rb(a,b){var c;return a.isValid()&&b.isValid()?(b=Bb(b,a),a.isBefore(b)?c=Qb(a,b):(c=Qb(b,a),c.milliseconds=-c.milliseconds,c.months=-c.months),c):{milliseconds:0,months:0}}
-// TODO: remove 'name' arg after deprecation is removed
-function Sb(a,b){return function(c,d){var e,f;
-//invert the arguments, but complain about it
-return null===d||isNaN(+d)||(y(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),f=c,c=d,d=f),c="string"==typeof c?+c:c,e=Ob(c,d),Tb(this,e,a),this}}function Tb(b,c,d,e){var f=c._milliseconds,g=yb(c._days),h=yb(c._months);b.isValid()&&(e=null==e||e,f&&b._d.setTime(b._d.valueOf()+f*d),g&&Q(b,"Date",P(b,"Date")+g*d),h&&ja(b,P(b,"Month")+h*d),e&&a.updateOffset(b,g||h))}function Ub(a,b){var c=a.diff(b,"days",!0);return c<-6?"sameElse":c<-1?"lastWeek":c<0?"lastDay":c<1?"sameDay":c<2?"nextDay":c<7?"nextWeek":"sameElse"}function Vb(b,c){
-// We want to compare the start of today, vs this.
-// Getting start-of-today depends on whether we're local/utc/offset or not.
-var d=b||sb(),e=Bb(d,this).startOf("day"),f=a.calendarFormat(this,e)||"sameElse",g=c&&(z(c[f])?c[f].call(this,d):c[f]);return this.format(g||this.localeData().calendar(f,this,sb(d)))}function Wb(){return new r(this)}function Xb(a,b){var c=s(a)?a:sb(a);return!(!this.isValid()||!c.isValid())&&(b=K(p(b)?"millisecond":b),"millisecond"===b?this.valueOf()>c.valueOf():c.valueOf()<this.clone().startOf(b).valueOf())}function Yb(a,b){var c=s(a)?a:sb(a);return!(!this.isValid()||!c.isValid())&&(b=K(p(b)?"millisecond":b),"millisecond"===b?this.valueOf()<c.valueOf():this.clone().endOf(b).valueOf()<c.valueOf())}function Zb(a,b,c,d){return d=d||"()",("("===d[0]?this.isAfter(a,c):!this.isBefore(a,c))&&(")"===d[1]?this.isBefore(b,c):!this.isAfter(b,c))}function $b(a,b){var c,d=s(a)?a:sb(a);return!(!this.isValid()||!d.isValid())&&(b=K(b||"millisecond"),"millisecond"===b?this.valueOf()===d.valueOf():(c=d.valueOf(),this.clone().startOf(b).valueOf()<=c&&c<=this.clone().endOf(b).valueOf()))}function _b(a,b){return this.isSame(a,b)||this.isAfter(a,b)}function ac(a,b){return this.isSame(a,b)||this.isBefore(a,b)}function bc(a,b,c){var d,e,f,g;// 1000
-// 1000 * 60
-// 1000 * 60 * 60
-// 1000 * 60 * 60 * 24, negate dst
-// 1000 * 60 * 60 * 24 * 7, negate dst
-return this.isValid()?(d=Bb(a,this),d.isValid()?(e=6e4*(d.utcOffset()-this.utcOffset()),b=K(b),"year"===b||"month"===b||"quarter"===b?(g=cc(this,d),"quarter"===b?g/=3:"year"===b&&(g/=12)):(f=this-d,g="second"===b?f/1e3:"minute"===b?f/6e4:"hour"===b?f/36e5:"day"===b?(f-e)/864e5:"week"===b?(f-e)/6048e5:f),c?g:t(g)):NaN):NaN}function cc(a,b){
-// difference in months
-var c,d,e=12*(b.year()-a.year())+(b.month()-a.month()),
-// b is in (anchor - 1 month, anchor + 1 month)
-f=a.clone().add(e,"months");
-//check for negative zero, return zero if negative zero
-// linear across the month
-// linear across the month
-return b-f<0?(c=a.clone().add(e-1,"months"),d=(b-f)/(f-c)):(c=a.clone().add(e+1,"months"),d=(b-f)/(c-f)),-(e+d)||0}function dc(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")}function ec(){var a=this.clone().utc();return 0<a.year()&&a.year()<=9999?z(Date.prototype.toISOString)?this.toDate().toISOString():X(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):X(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")}/**
- * Return a human readable representation of a moment that can
- * also be evaluated to get a new moment which is the same
- *
- * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects
- */
-function fc(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var a="moment",b="";this.isLocal()||(a=0===this.utcOffset()?"moment.utc":"moment.parseZone",b="Z");var c="["+a+'("]',d=0<this.year()&&this.year()<=9999?"YYYY":"YYYYYY",e="-MM-DD[T]HH:mm:ss.SSS",f=b+'[")]';return this.format(c+d+e+f)}function gc(b){b||(b=this.isUtc()?a.defaultFormatUtc:a.defaultFormat);var c=X(this,b);return this.localeData().postformat(c)}function hc(a,b){return this.isValid()&&(s(a)&&a.isValid()||sb(a).isValid())?Ob({to:this,from:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}function ic(a){return this.from(sb(),a)}function jc(a,b){return this.isValid()&&(s(a)&&a.isValid()||sb(a).isValid())?Ob({from:this,to:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}function kc(a){return this.to(sb(),a)}
-// If passed a locale key, it will set the locale for this
-// instance.  Otherwise, it will return the locale configuration
-// variables for this instance.
-function lc(a){var b;return void 0===a?this._locale._abbr:(b=bb(a),null!=b&&(this._locale=b),this)}function mc(){return this._locale}function nc(a){
-// the following switch intentionally omits break keywords
-// to utilize falling through the cases.
-switch(a=K(a)){case"year":this.month(0);/* falls through */
-case"quarter":case"month":this.date(1);/* falls through */
-case"week":case"isoWeek":case"day":case"date":this.hours(0);/* falls through */
-case"hour":this.minutes(0);/* falls through */
-case"minute":this.seconds(0);/* falls through */
-case"second":this.milliseconds(0)}
-// weeks are a special case
-// quarters are also special
-return"week"===a&&this.weekday(0),"isoWeek"===a&&this.isoWeekday(1),"quarter"===a&&this.month(3*Math.floor(this.month()/3)),this}function oc(a){
-// 'date' is an alias for 'day', so it should be considered as such.
-return a=K(a),void 0===a||"millisecond"===a?this:("date"===a&&(a="day"),this.startOf(a).add(1,"isoWeek"===a?"week":a).subtract(1,"ms"))}function pc(){return this._d.valueOf()-6e4*(this._offset||0)}function qc(){return Math.floor(this.valueOf()/1e3)}function rc(){return new Date(this.valueOf())}function sc(){var a=this;return[a.year(),a.month(),a.date(),a.hour(),a.minute(),a.second(),a.millisecond()]}function tc(){var a=this;return{years:a.year(),months:a.month(),date:a.date(),hours:a.hours(),minutes:a.minutes(),seconds:a.seconds(),milliseconds:a.milliseconds()}}function uc(){
-// new Date(NaN).toJSON() === null
-return this.isValid()?this.toISOString():null}function vc(){return n(this)}function wc(){return j({},m(this))}function xc(){return m(this).overflow}function yc(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function zc(a,b){U(0,[a,a.length],0,b)}
-// MOMENTS
-function Ac(a){return Ec.call(this,a,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Bc(a){return Ec.call(this,a,this.isoWeek(),this.isoWeekday(),1,4)}function Cc(){return xa(this.year(),1,4)}function Dc(){var a=this.localeData()._week;return xa(this.year(),a.dow,a.doy)}function Ec(a,b,c,d,e){var f;return null==a?wa(this,d,e).year:(f=xa(a,d,e),b>f&&(b=f),Fc.call(this,a,b,c,d,e))}function Fc(a,b,c,d,e){var f=va(a,b,c,d,e),g=ta(f.year,0,f.dayOfYear);return this.year(g.getUTCFullYear()),this.month(g.getUTCMonth()),this.date(g.getUTCDate()),this}
-// MOMENTS
-function Gc(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)}
-// HELPERS
-// MOMENTS
-function Hc(a){var b=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")}function Ic(a,b){b[ge]=u(1e3*("0."+a))}
-// MOMENTS
-function Jc(){return this._isUTC?"UTC":""}function Kc(){return this._isUTC?"Coordinated Universal Time":""}function Lc(a){return sb(1e3*a)}function Mc(){return sb.apply(null,arguments).parseZone()}function Nc(a){return a}function Oc(a,b,c,d){var e=bb(),f=k().set(d,b);return e[c](f,a)}function Pc(a,b,c){if(f(a)&&(b=a,a=void 0),a=a||"",null!=b)return Oc(a,b,c,"month");var d,e=[];for(d=0;d<12;d++)e[d]=Oc(a,d,c,"month");return e}
-// ()
-// (5)
-// (fmt, 5)
-// (fmt)
-// (true)
-// (true, 5)
-// (true, fmt, 5)
-// (true, fmt)
-function Qc(a,b,c,d){"boolean"==typeof a?(f(b)&&(c=b,b=void 0),b=b||""):(b=a,c=b,a=!1,f(b)&&(c=b,b=void 0),b=b||"");var e=bb(),g=a?e._week.dow:0;if(null!=c)return Oc(b,(c+g)%7,d,"day");var h,i=[];for(h=0;h<7;h++)i[h]=Oc(b,(h+g)%7,d,"day");return i}function Rc(a,b){return Pc(a,b,"months")}function Sc(a,b){return Pc(a,b,"monthsShort")}function Tc(a,b,c){return Qc(a,b,c,"weekdays")}function Uc(a,b,c){return Qc(a,b,c,"weekdaysShort")}function Vc(a,b,c){return Qc(a,b,c,"weekdaysMin")}function Wc(){var a=this._data;return this._milliseconds=Ze(this._milliseconds),this._days=Ze(this._days),this._months=Ze(this._months),a.milliseconds=Ze(a.milliseconds),a.seconds=Ze(a.seconds),a.minutes=Ze(a.minutes),a.hours=Ze(a.hours),a.months=Ze(a.months),a.years=Ze(a.years),this}function Xc(a,b,c,d){var e=Ob(b,c);return a._milliseconds+=d*e._milliseconds,a._days+=d*e._days,a._months+=d*e._months,a._bubble()}
-// supports only 2.0-style add(1, 's') or add(duration)
-function Yc(a,b){return Xc(this,a,b,1)}
-// supports only 2.0-style subtract(1, 's') or subtract(duration)
-function Zc(a,b){return Xc(this,a,b,-1)}function $c(a){return a<0?Math.floor(a):Math.ceil(a)}function _c(){var a,b,c,d,e,f=this._milliseconds,g=this._days,h=this._months,i=this._data;
-// if we have a mix of positive and negative values, bubble down first
-// check: https://github.com/moment/moment/issues/2166
-// The following code bubbles up values, see the tests for
-// examples of what that means.
-// convert days to months
-// 12 months -> 1 year
-return f>=0&&g>=0&&h>=0||f<=0&&g<=0&&h<=0||(f+=864e5*$c(bd(h)+g),g=0,h=0),i.milliseconds=f%1e3,a=t(f/1e3),i.seconds=a%60,b=t(a/60),i.minutes=b%60,c=t(b/60),i.hours=c%24,g+=t(c/24),e=t(ad(g)),h+=e,g-=$c(bd(e)),d=t(h/12),h%=12,i.days=g,i.months=h,i.years=d,this}function ad(a){
-// 400 years have 146097 days (taking into account leap year rules)
-// 400 years have 12 months === 4800
-return 4800*a/146097}function bd(a){
-// the reverse of daysToMonths
-return 146097*a/4800}function cd(a){var b,c,d=this._milliseconds;if(a=K(a),"month"===a||"year"===a)return b=this._days+d/864e5,c=this._months+ad(b),"month"===a?c:c/12;switch(
-// handle milliseconds separately because of floating point math errors (issue #1867)
-b=this._days+Math.round(bd(this._months)),a){case"week":return b/7+d/6048e5;case"day":return b+d/864e5;case"hour":return 24*b+d/36e5;case"minute":return 1440*b+d/6e4;case"second":return 86400*b+d/1e3;
-// Math.floor prevents floating point math errors here
-case"millisecond":return Math.floor(864e5*b)+d;default:throw new Error("Unknown unit "+a)}}
-// TODO: Use this.as('ms')?
-function dd(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*u(this._months/12)}function ed(a){return function(){return this.as(a)}}function fd(a){return a=K(a),this[a+"s"]()}function gd(a){return function(){return this._data[a]}}function hd(){return t(this.days()/7)}
-// helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize
-function id(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function jd(a,b,c){var d=Ob(a).abs(),e=of(d.as("s")),f=of(d.as("m")),g=of(d.as("h")),h=of(d.as("d")),i=of(d.as("M")),j=of(d.as("y")),k=e<pf.s&&["s",e]||f<=1&&["m"]||f<pf.m&&["mm",f]||g<=1&&["h"]||g<pf.h&&["hh",g]||h<=1&&["d"]||h<pf.d&&["dd",h]||i<=1&&["M"]||i<pf.M&&["MM",i]||j<=1&&["y"]||["yy",j];return k[2]=b,k[3]=+a>0,k[4]=c,id.apply(null,k)}
-// This function allows you to set the rounding function for relative time strings
-function kd(a){return void 0===a?of:"function"==typeof a&&(of=a,!0)}
-// This function allows you to set a threshold for relative time strings
-function ld(a,b){return void 0!==pf[a]&&(void 0===b?pf[a]:(pf[a]=b,!0))}function md(a){var b=this.localeData(),c=jd(this,!a,b);return a&&(c=b.pastFuture(+this,c)),b.postformat(c)}function nd(){
-// for ISO strings we do not use the normal bubbling rules:
-//  * milliseconds bubble up until they become hours
-//  * days do not bubble at all
-//  * months bubble up until they become years
-// This is because there is no context-free conversion between hours and days
-// (think of clock changes)
-// and also not between days and months (28-31 days per month)
-var a,b,c,d=qf(this._milliseconds)/1e3,e=qf(this._days),f=qf(this._months);
-// 3600 seconds -> 60 minutes -> 1 hour
-a=t(d/60),b=t(a/60),d%=60,a%=60,
-// 12 months -> 1 year
-c=t(f/12),f%=12;
-// inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js
-var g=c,h=f,i=e,j=b,k=a,l=d,m=this.asSeconds();return m?(m<0?"-":"")+"P"+(g?g+"Y":"")+(h?h+"M":"")+(i?i+"D":"")+(j||k||l?"T":"")+(j?j+"H":"")+(k?k+"M":"")+(l?l+"S":""):"P0D"}var od,pd;pd=Array.prototype.some?Array.prototype.some:function(a){for(var b=Object(this),c=b.length>>>0,d=0;d<c;d++)if(d in b&&a.call(this,b[d],d,b))return!0;return!1};var qd=pd,rd=a.momentProperties=[],sd=!1,td={};a.suppressDeprecationWarnings=!1,a.deprecationHandler=null;var ud;ud=Object.keys?Object.keys:function(a){var b,c=[];for(b in a)i(a,b)&&c.push(b);return c};var vd,wd=ud,xd={sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},yd={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},zd="Invalid date",Ad="%d",Bd=/\d{1,2}/,Cd={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},Dd={},Ed={},Fd=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,Gd=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Hd={},Id={},Jd=/\d/,Kd=/\d\d/,Ld=/\d{3}/,Md=/\d{4}/,Nd=/[+-]?\d{6}/,Od=/\d\d?/,Pd=/\d\d\d\d?/,Qd=/\d\d\d\d\d\d?/,Rd=/\d{1,3}/,Sd=/\d{1,4}/,Td=/[+-]?\d{1,6}/,Ud=/\d+/,Vd=/[+-]?\d+/,Wd=/Z|[+-]\d\d:?\d\d/gi,Xd=/Z|[+-]\d\d(?::?\d\d)?/gi,Yd=/[+-]?\d+(\.\d{1,3})?/,Zd=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,$d={},_d={},ae=0,be=1,ce=2,de=3,ee=4,fe=5,ge=6,he=7,ie=8;vd=Array.prototype.indexOf?Array.prototype.indexOf:function(a){
-// I know
-var b;for(b=0;b<this.length;++b)if(this[b]===a)return b;return-1};var je=vd;
-// FORMATTING
-U("M",["MM",2],"Mo",function(){return this.month()+1}),U("MMM",0,0,function(a){return this.localeData().monthsShort(this,a)}),U("MMMM",0,0,function(a){return this.localeData().months(this,a)}),
-// ALIASES
-J("month","M"),
-// PRIORITY
-M("month",8),
-// PARSING
-Z("M",Od),Z("MM",Od,Kd),Z("MMM",function(a,b){return b.monthsShortRegex(a)}),Z("MMMM",function(a,b){return b.monthsRegex(a)}),ba(["M","MM"],function(a,b){b[be]=u(a)-1}),ba(["MMM","MMMM"],function(a,b,c,d){var e=c._locale.monthsParse(a,d,c._strict);
-// if we didn't find a month name, mark the date as invalid.
-null!=e?b[be]=e:m(c).invalidMonth=a});
-// LOCALES
-var ke=/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,le="January_February_March_April_May_June_July_August_September_October_November_December".split("_"),me="Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),ne=Zd,oe=Zd;
-// FORMATTING
-U("Y",0,0,function(){var a=this.year();return a<=9999?""+a:"+"+a}),U(0,["YY",2],0,function(){return this.year()%100}),U(0,["YYYY",4],0,"year"),U(0,["YYYYY",5],0,"year"),U(0,["YYYYYY",6,!0],0,"year"),
-// ALIASES
-J("year","y"),
-// PRIORITIES
-M("year",1),
-// PARSING
-Z("Y",Vd),Z("YY",Od,Kd),Z("YYYY",Sd,Md),Z("YYYYY",Td,Nd),Z("YYYYYY",Td,Nd),ba(["YYYYY","YYYYYY"],ae),ba("YYYY",function(b,c){c[ae]=2===b.length?a.parseTwoDigitYear(b):u(b)}),ba("YY",function(b,c){c[ae]=a.parseTwoDigitYear(b)}),ba("Y",function(a,b){b[ae]=parseInt(a,10)}),
-// HOOKS
-a.parseTwoDigitYear=function(a){return u(a)+(u(a)>68?1900:2e3)};
-// MOMENTS
-var pe=O("FullYear",!0);
-// FORMATTING
-U("w",["ww",2],"wo","week"),U("W",["WW",2],"Wo","isoWeek"),
-// ALIASES
-J("week","w"),J("isoWeek","W"),
-// PRIORITIES
-M("week",5),M("isoWeek",5),
-// PARSING
-Z("w",Od),Z("ww",Od,Kd),Z("W",Od),Z("WW",Od,Kd),ca(["w","ww","W","WW"],function(a,b,c,d){b[d.substr(0,1)]=u(a)});var qe={dow:0,// Sunday is the first day of the week.
-doy:6};
-// FORMATTING
-U("d",0,"do","day"),U("dd",0,0,function(a){return this.localeData().weekdaysMin(this,a)}),U("ddd",0,0,function(a){return this.localeData().weekdaysShort(this,a)}),U("dddd",0,0,function(a){return this.localeData().weekdays(this,a)}),U("e",0,0,"weekday"),U("E",0,0,"isoWeekday"),
-// ALIASES
-J("day","d"),J("weekday","e"),J("isoWeekday","E"),
-// PRIORITY
-M("day",11),M("weekday",11),M("isoWeekday",11),
-// PARSING
-Z("d",Od),Z("e",Od),Z("E",Od),Z("dd",function(a,b){return b.weekdaysMinRegex(a)}),Z("ddd",function(a,b){return b.weekdaysShortRegex(a)}),Z("dddd",function(a,b){return b.weekdaysRegex(a)}),ca(["dd","ddd","dddd"],function(a,b,c,d){var e=c._locale.weekdaysParse(a,d,c._strict);
-// if we didn't get a weekday name, mark the date as invalid
-null!=e?b.d=e:m(c).invalidWeekday=a}),ca(["d","e","E"],function(a,b,c,d){b[d]=u(a)});
-// LOCALES
-var re="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),se="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),te="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),ue=Zd,ve=Zd,we=Zd;U("H",["HH",2],0,"hour"),U("h",["hh",2],0,Ra),U("k",["kk",2],0,Sa),U("hmm",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)}),U("hmmss",0,0,function(){return""+Ra.apply(this)+T(this.minutes(),2)+T(this.seconds(),2)}),U("Hmm",0,0,function(){return""+this.hours()+T(this.minutes(),2)}),U("Hmmss",0,0,function(){return""+this.hours()+T(this.minutes(),2)+T(this.seconds(),2)}),Ta("a",!0),Ta("A",!1),
-// ALIASES
-J("hour","h"),
-// PRIORITY
-M("hour",13),Z("a",Ua),Z("A",Ua),Z("H",Od),Z("h",Od),Z("HH",Od,Kd),Z("hh",Od,Kd),Z("hmm",Pd),Z("hmmss",Qd),Z("Hmm",Pd),Z("Hmmss",Qd),ba(["H","HH"],de),ba(["a","A"],function(a,b,c){c._isPm=c._locale.isPM(a),c._meridiem=a}),ba(["h","hh"],function(a,b,c){b[de]=u(a),m(c).bigHour=!0}),ba("hmm",function(a,b,c){var d=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d)),m(c).bigHour=!0}),ba("hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d,2)),b[fe]=u(a.substr(e)),m(c).bigHour=!0}),ba("Hmm",function(a,b,c){var d=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d))}),ba("Hmmss",function(a,b,c){var d=a.length-4,e=a.length-2;b[de]=u(a.substr(0,d)),b[ee]=u(a.substr(d,2)),b[fe]=u(a.substr(e))});var xe,ye=/[ap]\.?m?\.?/i,ze=O("Hours",!0),Ae={calendar:xd,longDateFormat:yd,invalidDate:zd,ordinal:Ad,ordinalParse:Bd,relativeTime:Cd,months:le,monthsShort:me,week:qe,weekdays:re,weekdaysMin:te,weekdaysShort:se,meridiemParse:ye},Be={},Ce={},De=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Ee=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Fe=/Z|[+-]\d\d(?::?\d\d)?/,Ge=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],
-// YYYYMM is NOT allowed by the standard
-["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],He=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Ie=/^\/?Date\((\-?\d+)/i;a.createFromInputFallback=x("value provided is not in a recognized ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}),
-// constant that refers to the ISO standard
-a.ISO_8601=function(){};var Je=x("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var a=sb.apply(null,arguments);return this.isValid()&&a.isValid()?a<this?this:a:o()}),Ke=x("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var a=sb.apply(null,arguments);return this.isValid()&&a.isValid()?a>this?this:a:o()}),Le=function(){return Date.now?Date.now():+new Date};zb("Z",":"),zb("ZZ",""),
-// PARSING
-Z("Z",Xd),Z("ZZ",Xd),ba(["Z","ZZ"],function(a,b,c){c._useUTC=!0,c._tzm=Ab(Xd,a)});
-// HELPERS
-// timezone chunker
-// '+10:00' > ['10',  '00']
-// '-1530'  > ['-15', '30']
-var Me=/([\+\-]|\d\d)/gi;
-// HOOKS
-// This function will be called whenever a moment is mutated.
-// It is intended to keep the offset in sync with the timezone.
-a.updateOffset=function(){};
-// ASP.NET json date format regex
-var Ne=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Oe=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Ob.fn=wb.prototype;var Pe=Sb(1,"add"),Qe=Sb(-1,"subtract");a.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",a.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Re=x("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(a){return void 0===a?this.localeData():this.locale(a)});
-// FORMATTING
-U(0,["gg",2],0,function(){return this.weekYear()%100}),U(0,["GG",2],0,function(){return this.isoWeekYear()%100}),zc("gggg","weekYear"),zc("ggggg","weekYear"),zc("GGGG","isoWeekYear"),zc("GGGGG","isoWeekYear"),
-// ALIASES
-J("weekYear","gg"),J("isoWeekYear","GG"),
-// PRIORITY
-M("weekYear",1),M("isoWeekYear",1),
-// PARSING
-Z("G",Vd),Z("g",Vd),Z("GG",Od,Kd),Z("gg",Od,Kd),Z("GGGG",Sd,Md),Z("gggg",Sd,Md),Z("GGGGG",Td,Nd),Z("ggggg",Td,Nd),ca(["gggg","ggggg","GGGG","GGGGG"],function(a,b,c,d){b[d.substr(0,2)]=u(a)}),ca(["gg","GG"],function(b,c,d,e){c[e]=a.parseTwoDigitYear(b)}),
-// FORMATTING
-U("Q",0,"Qo","quarter"),
-// ALIASES
-J("quarter","Q"),
-// PRIORITY
-M("quarter",7),
-// PARSING
-Z("Q",Jd),ba("Q",function(a,b){b[be]=3*(u(a)-1)}),
-// FORMATTING
-U("D",["DD",2],"Do","date"),
-// ALIASES
-J("date","D"),
-// PRIOROITY
-M("date",9),
-// PARSING
-Z("D",Od),Z("DD",Od,Kd),Z("Do",function(a,b){return a?b._ordinalParse:b._ordinalParseLenient}),ba(["D","DD"],ce),ba("Do",function(a,b){b[ce]=u(a.match(Od)[0],10)});
-// MOMENTS
-var Se=O("Date",!0);
-// FORMATTING
-U("DDD",["DDDD",3],"DDDo","dayOfYear"),
-// ALIASES
-J("dayOfYear","DDD"),
-// PRIORITY
-M("dayOfYear",4),
-// PARSING
-Z("DDD",Rd),Z("DDDD",Ld),ba(["DDD","DDDD"],function(a,b,c){c._dayOfYear=u(a)}),
-// FORMATTING
-U("m",["mm",2],0,"minute"),
-// ALIASES
-J("minute","m"),
-// PRIORITY
-M("minute",14),
-// PARSING
-Z("m",Od),Z("mm",Od,Kd),ba(["m","mm"],ee);
-// MOMENTS
-var Te=O("Minutes",!1);
-// FORMATTING
-U("s",["ss",2],0,"second"),
-// ALIASES
-J("second","s"),
-// PRIORITY
-M("second",15),
-// PARSING
-Z("s",Od),Z("ss",Od,Kd),ba(["s","ss"],fe);
-// MOMENTS
-var Ue=O("Seconds",!1);
-// FORMATTING
-U("S",0,0,function(){return~~(this.millisecond()/100)}),U(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),U(0,["SSS",3],0,"millisecond"),U(0,["SSSS",4],0,function(){return 10*this.millisecond()}),U(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),U(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),U(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),U(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),U(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),
-// ALIASES
-J("millisecond","ms"),
-// PRIORITY
-M("millisecond",16),
-// PARSING
-Z("S",Rd,Jd),Z("SS",Rd,Kd),Z("SSS",Rd,Ld);var Ve;for(Ve="SSSS";Ve.length<=9;Ve+="S")Z(Ve,Ud);for(Ve="S";Ve.length<=9;Ve+="S")ba(Ve,Ic);
-// MOMENTS
-var We=O("Milliseconds",!1);
-// FORMATTING
-U("z",0,0,"zoneAbbr"),U("zz",0,0,"zoneName");var Xe=r.prototype;Xe.add=Pe,Xe.calendar=Vb,Xe.clone=Wb,Xe.diff=bc,Xe.endOf=oc,Xe.format=gc,Xe.from=hc,Xe.fromNow=ic,Xe.to=jc,Xe.toNow=kc,Xe.get=R,Xe.invalidAt=xc,Xe.isAfter=Xb,Xe.isBefore=Yb,Xe.isBetween=Zb,Xe.isSame=$b,Xe.isSameOrAfter=_b,Xe.isSameOrBefore=ac,Xe.isValid=vc,Xe.lang=Re,Xe.locale=lc,Xe.localeData=mc,Xe.max=Ke,Xe.min=Je,Xe.parsingFlags=wc,Xe.set=S,Xe.startOf=nc,Xe.subtract=Qe,Xe.toArray=sc,Xe.toObject=tc,Xe.toDate=rc,Xe.toISOString=ec,Xe.inspect=fc,Xe.toJSON=uc,Xe.toString=dc,Xe.unix=qc,Xe.valueOf=pc,Xe.creationData=yc,
-// Year
-Xe.year=pe,Xe.isLeapYear=ra,
-// Week Year
-Xe.weekYear=Ac,Xe.isoWeekYear=Bc,
-// Quarter
-Xe.quarter=Xe.quarters=Gc,
-// Month
-Xe.month=ka,Xe.daysInMonth=la,
-// Week
-Xe.week=Xe.weeks=Ba,Xe.isoWeek=Xe.isoWeeks=Ca,Xe.weeksInYear=Dc,Xe.isoWeeksInYear=Cc,
-// Day
-Xe.date=Se,Xe.day=Xe.days=Ka,Xe.weekday=La,Xe.isoWeekday=Ma,Xe.dayOfYear=Hc,
-// Hour
-Xe.hour=Xe.hours=ze,
-// Minute
-Xe.minute=Xe.minutes=Te,
-// Second
-Xe.second=Xe.seconds=Ue,
-// Millisecond
-Xe.millisecond=Xe.milliseconds=We,
-// Offset
-Xe.utcOffset=Db,Xe.utc=Fb,Xe.local=Gb,Xe.parseZone=Hb,Xe.hasAlignedHourOffset=Ib,Xe.isDST=Jb,Xe.isLocal=Lb,Xe.isUtcOffset=Mb,Xe.isUtc=Nb,Xe.isUTC=Nb,
-// Timezone
-Xe.zoneAbbr=Jc,Xe.zoneName=Kc,
-// Deprecations
-Xe.dates=x("dates accessor is deprecated. Use date instead.",Se),Xe.months=x("months accessor is deprecated. Use month instead",ka),Xe.years=x("years accessor is deprecated. Use year instead",pe),Xe.zone=x("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Eb),Xe.isDSTShifted=x("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Kb);var Ye=C.prototype;Ye.calendar=D,Ye.longDateFormat=E,Ye.invalidDate=F,Ye.ordinal=G,Ye.preparse=Nc,Ye.postformat=Nc,Ye.relativeTime=H,Ye.pastFuture=I,Ye.set=A,
-// Month
-Ye.months=fa,Ye.monthsShort=ga,Ye.monthsParse=ia,Ye.monthsRegex=na,Ye.monthsShortRegex=ma,
-// Week
-Ye.week=ya,Ye.firstDayOfYear=Aa,Ye.firstDayOfWeek=za,
-// Day of Week
-Ye.weekdays=Fa,Ye.weekdaysMin=Ha,Ye.weekdaysShort=Ga,Ye.weekdaysParse=Ja,Ye.weekdaysRegex=Na,Ye.weekdaysShortRegex=Oa,Ye.weekdaysMinRegex=Pa,
-// Hours
-Ye.isPM=Va,Ye.meridiem=Wa,$a("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===u(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),
-// Side effect imports
-a.lang=x("moment.lang is deprecated. Use moment.locale instead.",$a),a.langData=x("moment.langData is deprecated. Use moment.localeData instead.",bb);var Ze=Math.abs,$e=ed("ms"),_e=ed("s"),af=ed("m"),bf=ed("h"),cf=ed("d"),df=ed("w"),ef=ed("M"),ff=ed("y"),gf=gd("milliseconds"),hf=gd("seconds"),jf=gd("minutes"),kf=gd("hours"),lf=gd("days"),mf=gd("months"),nf=gd("years"),of=Math.round,pf={s:45,// seconds to minute
-m:45,// minutes to hour
-h:22,// hours to day
-d:26,// days to month
-M:11},qf=Math.abs,rf=wb.prototype;
-// Deprecations
-// Side effect imports
-// FORMATTING
-// PARSING
-// Side effect imports
-return rf.abs=Wc,rf.add=Yc,rf.subtract=Zc,rf.as=cd,rf.asMilliseconds=$e,rf.asSeconds=_e,rf.asMinutes=af,rf.asHours=bf,rf.asDays=cf,rf.asWeeks=df,rf.asMonths=ef,rf.asYears=ff,rf.valueOf=dd,rf._bubble=_c,rf.get=fd,rf.milliseconds=gf,rf.seconds=hf,rf.minutes=jf,rf.hours=kf,rf.days=lf,rf.weeks=hd,rf.months=mf,rf.years=nf,rf.humanize=md,rf.toISOString=nd,rf.toString=nd,rf.toJSON=nd,rf.locale=lc,rf.localeData=mc,rf.toIsoString=x("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",nd),rf.lang=Re,U("X",0,0,"unix"),U("x",0,0,"valueOf"),Z("x",Vd),Z("X",Yd),ba("X",function(a,b,c){c._d=new Date(1e3*parseFloat(a,10))}),ba("x",function(a,b,c){c._d=new Date(u(a))}),a.version="2.17.1",b(sb),a.fn=Xe,a.min=ub,a.max=vb,a.now=Le,a.utc=k,a.unix=Lc,a.months=Rc,a.isDate=g,a.locale=$a,a.invalid=o,a.duration=Ob,a.isMoment=s,a.weekdays=Tc,a.parseZone=Mc,a.localeData=bb,a.isDuration=xb,a.monthsShort=Sc,a.weekdaysMin=Vc,a.defineLocale=_a,a.updateLocale=ab,a.locales=cb,a.weekdaysShort=Uc,a.normalizeUnits=K,a.relativeTimeRounding=kd,a.relativeTimeThreshold=ld,a.calendarFormat=Ub,a.prototype=Xe,a});
\ No newline at end of file
diff --git a/htdocs/js/plotly-v1.30.0.min.js b/htdocs/js/plotly-v1.30.0.min.js
deleted file mode 100644
index 9e7badaa00994a57f1c9df5549d598ff322e36fa..0000000000000000000000000000000000000000
Binary files a/htdocs/js/plotly-v1.30.0.min.js and /dev/null differ
diff --git a/htdocs/js/quicklookorder.js b/htdocs/js/quicklookorder.js
deleted file mode 100755
index c1067df9508bc7d662f10ad260f9ef029f77ac72..0000000000000000000000000000000000000000
--- a/htdocs/js/quicklookorder.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/* this function is called when the user clicks the "Order AOSS Tower Data" button */
-function order(site,inst) {
-    console.log(site,inst);
-    var formatMenu = document.getElementById(inst+'format'); //grab the format menu
-    var formatString = formatMenu.options[formatMenu.selectedIndex].text;   //grab the currently selected format
-    formatString = formatString.toLowerCase();  //make it lowercase
-    console.log(formatString);    
-    var dates= new Set(); 
-    $('#'+inst+'table').children('tbody').children(".ql_date_row")
-        .children('.selected').each(function(){
-        dates.add($(this).attr('date'));
-    });
-    if(dates.size){
-        //start with the base of the query string, for tower ascii data level_00
-        var queryString = '/api/files.'+formatString+'?streams='+site+'.'+inst+'.ascii.l00.*&dates=';
-        queryString+= Array.from(dates).join(':');
-        window.open(METOBS_API_URL + queryString);
-    }
-}
-
diff --git a/htdocs/js/quicklooks-interactive.js b/htdocs/js/quicklooks-interactive.js
deleted file mode 100644
index 408cf942d5fc4f6861b07da35b8d161f675f0c9c..0000000000000000000000000000000000000000
--- a/htdocs/js/quicklooks-interactive.js
+++ /dev/null
@@ -1,107 +0,0 @@
-/* return the value of the input, or its placeholder if it has no value
- */
-var val_or_place = function(jquery_str){
-    return ($(jquery_str).val() != '')? $(jquery_str).val() : $(jquery_str).attr('placeholder');
-};
-var update_quicklooks_no_forms = function(){
-    //parse the requested date range from the Timeframe form
-    var ndays;
-    var start_date;
-    var end_date;
-    if($("#last_x_days").is(":checked")){
-        ndays = Number(val_or_place('#x_days'));
-        if((ndays < 32) && (ndays > 0)){
-            start_date= moment.utc();
-            end_date = ndays;
-        }else{
-            return;//return if too many days are being requested
-        }
-    }else if($("#date_range").is(":checked")){
-        var date1 = moment.utc(val_or_place('#Start-date-picker'));
-        var date2 = moment.utc(val_or_place('#End-date-picker'));
-        ndays = dayRange(date1,date2).length;
-        if((ndays < 32) && (ndays > 0)){
-            start_date = date1;
-            end_date = date2;
-        }else{
-            return;//return if too many days are being requested
-        }
-
-    }
-    $(".imageStripsContainer").css('width',120*ndays);
-    updateQuickLooks(start_date,end_date);
-};
-
-
-var select_all_click_func = function(){
-        var table=$(this).closest('.row').find('table');
-        if($(this).html() == "Select All"){
-            table.children('tbody').children('tr.ql_date_row').children('td').each(function(){
-                highlight_col($(this));
-            });
-            $(this).html('Deselect All');
-        } else {
-            table.children('tbody').children('tr.ql_date_row').children('td').each(function(){
-                unhighlight_col($(this));
-            });
-            $(this).html('Select All');
-        }
-};
-
-var table_scroll_func = _.throttle(function(){
-    $('.table-holder').not($(this)).scrollLeft($(this).scrollLeft());
-},30);
-
-$(document).ready(function(){
-    $.ajax({
-        url: METOBS_API_URL + "/api/archive/info",
-        type: "GET"
-    }).then(function(data){
-        //create the form options from the recieved json
-        QuicklooksArchive.setStructure(data);
-        update_quicklooks_no_forms();
-    });
-    //Set up the date range inputs as datepicker objects
-    $('#Start-date-picker').datepicker({
-        changeMonth: true, 
-        changeYear: true,
-    });
-    $('#Start-date-picker').datepicker('option','dateFormat','yy-mm-dd');
-
-    $('#End-date-picker').datepicker({
-        changeMonth: true, 
-        changeYear: true,
-    });
-    $('#End-date-picker').datepicker('option','dateFormat','yy-mm-dd');
-
-    //bind the enabling/disabling of forms to radio buttons
-    $('[type=text]').prop("disabled",true);
-    $("#last_x_days").click(function(){
-        $("#x_days").prop("disabled",false);
-        $("#Start-date-picker").prop("disabled",true);
-        $("#Start-date-picker").val("");
-        $("#End-date-picker").prop("disabled",true);
-        $("#End-date-picker").val("");
-        update_quicklooks_no_forms();
-    });
-    $("#date_range").click(function(){
-        $("#x_days").prop("disabled",true);
-        $("#x_days").val("");
-        $("#Start-date-picker").prop("disabled",false);
-        $("#End-date-picker").prop("disabled",false);
-        update_quicklooks_no_forms();
-    });
-    //add placeholder values for the order forms    
-    $('#x_days').attr('placeholder','7');
-    $('#Start-date-picker').attr('placeholder',moment.utc().subtract(6,'days').format('YYYY-MM-DD'));
-    $('#End-date-picker').attr('placeholder',moment.utc().format('YYYY-MM-DD'));
-
-    $('#x_days').change(update_quicklooks_no_forms);
-    $('#End-date-picker').change(update_quicklooks_no_forms);
-    $('#Start-date-picker').change(update_quicklooks_no_forms);
-    $('.select-all').click(select_all_click_func);
-    $('.table-holder').scroll(table_scroll_func);
-    if($("#date_range").is(":checked")) $("#date_range").trigger('click');
-    else if($("#last_x_days").is(":checked")) $("#last_x_days").trigger('click');
-
-});
diff --git a/htdocs/js/quicklooks-util.js b/htdocs/js/quicklooks-util.js
deleted file mode 100644
index 8fc1730108714c85fac10fc6ccb6bad1ba478066..0000000000000000000000000000000000000000
--- a/htdocs/js/quicklooks-util.js
+++ /dev/null
@@ -1,113 +0,0 @@
-//calls func on each item in the td's column
-for_each_in_col = function(td,col,func){
-    var table = td.closest('table');
-    if(!col)
-        var col = td.index();
-
-    table.children('tbody').children('tr').children('td').each(function(){
-        if($(this).index() == col)$(this)[func]('selected');
-    });
-}
-toggle_col = (td,col)=> for_each_in_col(td,col,'toggleClass');
-highlight_col = (td,col)=> for_each_in_col(td,col,'addClass');
-unhighlight_col = (td,col)=> for_each_in_col(td,col,'removeClass');
-
-function displayOverlay(url) {
-    $("<table id='overlay'><tbody><tr><td><img src='" + url+ "'></td></tr></tbody></table>").css({
-        "position": "fixed",
-        "top": "0px",
-        "left": "0px",
-        "width": "100%",
-        "height": "100%",
-        "background-color": "rgba(0,0,0,.5)",
-        "z-index": "10000",
-        "vertical-align": "middle",
-        "text-align": "center",
-    }).click(function(){
-        $(this).remove();
-    }).appendTo("body");
-}
-
-function updateQuickLooks(date, date2) {
-    if(date2 === undefined){
-        dates = lastNDays(7,date);
-    }else if(date2._isAMomentObject){
-        dates = dayRange(date,date2);
-    }else{
-        dates = lastNDays(date2,date);
-    }
-    console.log(dates);
-    //set up the quicklook images into rows and columns
-    $(".ql_row>td").each(function(){$(this).remove()});
-    $(".ql_date_row>td").each(function(){$(this).remove()});
-
-    //Use -1 to clear tables without updating
-    if(date == -1) return;
-    $(".ql_row").each(function(){
-        var row=$(this);
-        _.each(dates,day=>{
-            if (QUICKLOOKS_FORMAT == 'old') {
-                var urls = get_quicklook_url(row.attr('inst'), row.attr('site'),
-                    row.attr('product'), day, true);
-                row.append(pic_template_old.replace('{source}',urls[0]));
-                row.append(pic_template_old.replace('{source}',urls[1]));
-            } else {
-                var u = get_quicklook_url(row.attr('inst'), row.attr('site'),
-                    row.attr('product'), day, false);
-                var t = get_quicklook_url(row.attr('inst'), row.attr('site'),
-                    row.attr('product'), day, true);
-                row.append(pic_template.replace('{source}', t).replace('{big_src}', u));
-            }
-        });
-    });
-
-    $(".ql_date_row").each(function(){
-        var row=$(this);
-        _.each(dates,day=>{
-            var fmt = day.format("YYYY-MM-DD");
-            if(QUICKLOOKS_FORMAT == 'old'){
-                row.append(title_template.replace('{date}',fmt).replace('{text}',fmt+'<br>0:00:00'));
-                row.append(title_template.replace('{date}',fmt).replace('{text}',fmt+'<br>12:00:00'));
-            }else{
-                row.append(title_template.replace('{date}',fmt).replace('{text}',fmt));
-            }
-        });
-    });
-
-    $("a.thumbnail").click(function(){
-        var img = $(this).children('img');
-        var full_link = img.attr('big_src');
-        // For some browsers, `attr` is undefined; for others,
-        // `attr` is false.  Check for both.
-        if (typeof full_link === typeof undefined || full_link === false) {
-            full_link = img.attr('src');
-        }
-        displayOverlay(full_link);
-    });
-    $("a.thumbnail>img").on("error",function(){
-        //unbind the image detail
-        $(this).closest('a').unbind('click');
-    });
-    //add on-click functionality  to dates
-    $(".date-pick").click(function(e){
-        if(e.shiftKey){
-            highlight_col($(this));
-            //defaults left to right
-            //TODO: something more sophisticated
-            var siblings = $(this).siblings("td.selected");
-            var all_siblings = $(this).siblings("td");
-            if(siblings.length){
-                var idxs= [$(this).index(),siblings.first().index()].sort();
-                all_siblings.each(function(){
-                    if($(this).index() >= idxs[0] && $(this).index() <= idxs[1]){
-                        highlight_col($(this));
-                    }
-                });
-            }
-        } else {
-            toggle_col($(this));
-        }
-    });
-}
-
-
diff --git a/htdocs/js/quicklooks.js b/htdocs/js/quicklooks.js
deleted file mode 100644
index e97c43a2be8881d2512cbde78e0564f92cfb6d0c..0000000000000000000000000000000000000000
--- a/htdocs/js/quicklooks.js
+++ /dev/null
@@ -1,154 +0,0 @@
-var pic_template = '<td width="100px"><a height="100px" class="thumbnail text-center"><img  src="{source}" big_src="{big_src}" alt="Not Found"></a></td>';
-var pic_template_old = '<td width="100px"><a height="100px" class="thumbnail text-center"><img  src="{source}" alt="Not Found"></a></td>';
-var title_template='<td width="100px" date="{date}" class="date-pick text-center">{text}</td>';
-
-
-var dateablePath = function(path){
-    //object containing the path and a function atDate to replace
-    //%Y %m %d wildcards with a given value
-    if(!(this instanceof dateablePath))return new dateablePath(path);
-    this.path = path || '';
-    return this;
-
-};
-
-dateablePath.prototype.atDate = function(year,month,day){
-    if (!month){
-        //we've been given either a single string or a datetime object, roll with that
-        if (typeof year !== 'string') var dt = year.format('YYYY-MM-DD');
-        year = dt.slice(0, 4);
-        month = dt.slice(5, 7);
-        day = dt.slice(8, 10);
-    }
-    return this.path.replace("%Y",year).replace("%m",month).replace("%d",day);
-
-};
-
-var QuicklooksArchive = {
-    isSet:false,
-    data:null,
-    setStructure:function(data){
-        this.data = data;
-        this.isSet = true;
-    },
-    getStructure:function(){
-        return this.data;
-    },
-    getFancyProductName:function(site,inst,level,product){
-        var products = this.getProductUrlsAtLevel(site,inst,level);
-        if(products[product].display_name)
-            return products[product].display_name.split('(')[0];
-        else
-            return product;
-
-    },
-    getProductUrlsAtLevel:function(site,inst,level,product,thumbnail){
-        level=level || 'level_b1';
-        //if a product is specified, return its specific quicklook url,
-        //otherwise return the object with all products for the given level
-        if (product){
-            //yay recursion
-            var products = this.getProductUrlsAtLevel(site,inst,level);
-            var product_fmt;
-            if(!products[product])
-                return dateablePath('');
-            if(!products[product].thumbnail_pattern)
-                product = products[product].preview_product;
-            product_fmt = products[product];
-            if(product_fmt)
-                return dateablePath(product_fmt[(thumbnail)?'thumbnail_pattern':'pattern']);
-            else
-                return dateablePath('');
-        } else { 
-            return this.data.sites[site].instruments[inst].levels[level].products;
-        }
-    },
-
-    getPathToProducts:function(site,inst,level,version){
-        level = level || 'level_b1';
-        version = version || 'version_00';
-        return dateablePath(site+'/'+inst+'/'+level+'/'+version+'/%Y/%m/%d/');
-    },
-};
-var lastNDays = function(n,date){
-    return _.map(_.range(n),(i)=>moment.utc(date).subtract(n-1-i,"days"));
-};
-
-
-
-var dayRange = function(date,date2){
-        dates = [];    
-        date2 = date2.add(12,'hours');
-        var i = 0;
-        while(moment.utc(date).add(i,'days').isBefore(date2)){
-            dates.push(moment.utc(date).add(i,'days'));
-            i++;
-        }
-        return dates;
-}
-
-var get_old_quicklook_url =function(inst, site, product,dt,is_thumbnail){
-    year = dt.slice(0,4);
-    month = dt.slice(5,7);
-    product +=(product)?'.':'';
-    var prefix=(site=='aoss')?'rig':'mendota';
-    var url = site+'/'+inst+'/img/'+year+'/'+month+'/'+prefix+'_'+inst+'.'+product+dt;
-    var suffix = (is_thumbnail)?'_tn.png':'.png';
-    url0 = METOBS_API_URL+"/pub/cache/"+url+"_000000_115959"+suffix;
-    url1 = METOBS_API_URL+"/pub/cache/"+url+"_120000_235959"+suffix;
-    return [url0,url1];
-};
-
-
-function get_quicklook_url(inst, site, product,dt,is_thumbnail) {
-    console.log(inst,site,product);
-    //dt is a moment object - convert to string
-    if (QUICKLOOKS_FORMAT == 'old'){
-        if (typeof dt !== 'string') dt = dt.format('YYYY-MM-DD');
-        return get_old_quicklook_url(inst,site,product,dt,is_thumbnail);
-    }else {
-        var url = QuicklooksArchive.getPathToProducts(site,inst).atDate(dt);
-        var fname = QuicklooksArchive.getProductUrlsAtLevel(site,inst,'level_b1',product,is_thumbnail).atDate(dt);
-        return METOBS_API_URL + "/pub/cache/" + url + fname;
-    }
-}
-
-var get_GET_params = function(inst,site,product,dt){
-    if(typeof dt !== 'string') dt = dt.format('YYYY-MM-DD');
-    var url = 'detail?inst='+inst+'&site='+site+'&product='+product+'&dt='+dt;
-}
-
-var s2p_map = {
-    'air_temp':'td',
-    'dewpoint':'td',
-    'wind_speed':'windsp',
-    'wind_direction':'winddr',
-    'accum_precip':'precip',
-    'solar_flux':'flux',
-    'pressure':'press',
-    'chlorophyll':'chloro',
-    'phycocyanin':'phyco',
-    'water_temp':'watert',
-    'met':'met',
-    'meteorogram':'meteorogram',
-};
-
-var stream_to_product = function(stream){
-    return s2p_map[stream];
-}
-
-var ql_label_map = {
-    'td':'Air Temperature and Dewpoint',
-    'windsp':'Wind Speed',
-    'winddr':'Wind Direction',
-    'precip':'Precip&shy;itation',
-    'flux':'Solar Flux',
-    'press':'Pres&shy;sure',
-    'chloro':'Choloro&shy;phyll',
-    'phyco':'Phyco&shy;cyanin',
-    'watert':'Water Temperature',
-    'met':'Meteor&shy;ogram'
-};
-function product_to_label(product){
-    return ql_label_map[product];
-}
diff --git a/htdocs/js/streamdownload.js b/htdocs/js/streamdownload.js
deleted file mode 100644
index 80d3857d4090c013c7e2c49292192d39dcd84719..0000000000000000000000000000000000000000
--- a/htdocs/js/streamdownload.js
+++ /dev/null
@@ -1,357 +0,0 @@
-
-/* add a list of level objects to the #streams select
- */
-var towerMet;
-var buoyMet;
-var multilevel_streams = new Object();
-var show_multistream_panel = function(streams){
-    var curr_selected = $('#multi_streams').val();
-    console.log(curr_selected);
-    $('#multi_streams').empty();
-    $('#streams').closest('div').removeClass('col-xs-12').addClass('col-xs-8'); 
-    $('#multi_streams').show();
-    _.each(streams,function(levels){
-        $('#multi_streams').append(makeOption(levels.name + ' header',levels.disp_name,'header'));
-        _.each(levels.levels,function(level,key){
-            $('#multi_streams').append(makeOption(levels.key+'_'+(key+1)+' '+levels.name,
-                    head_string+level,levels.name));
-        });
-    });
-    $('#multi_streams').val(curr_selected);
-    //add the header click thing
-    $('#multi_streams').change(function(){
-        select_options_by_header('#multi_streams');
-    });
-    $('#multi_streams>option').click(option_toggle_header_on_click);
-    bind_deselect_options_by_header('#multi_streams');
-};
-var hide_multistream_panel = function(){
-    $('#streams').closest('div').removeClass('col-xs-8').addClass('col-xs-12'); 
-    $('#multi_streams').empty();
-    $('#multi_streams').hide();
-};
-
-var addStreams = function(streams,header,prefix){
-    //keep track of all the products associated with a stream's name
-    //keep track of all the versions available to the streams
-    var head_option = $(makeOption(header+ ' header',header,'header'));
-    $('#streams').unbind('change');
-    $('#streams').append(head_option);
-
-    _.each(streams, function(stream,name){
-        var stream_key = prefix +'.' + name;
-        var stream_innerHTML = head_string+(stream.display_name || name);
-        if(stream.levels){
-            multilevel_streams[stream_key] = {key: stream_key,
-                name: name, 
-                disp_name: stream.display_name || name, 
-                levels:stream.levels
-            };
-            stream_key += ' multi';
-            stream_innerHTML+=' (click to expand)';
-        }
-        var opt = $(makeOption(stream_key+' '+header,stream_innerHTML,header));
-        $('#streams').append(opt);
-    });
-
-    $('#streams').change(function(){
-        $(this).removeClass('alert-danger');
-        $('#'+$(this).attr('id')+'_err').hide();
-        hide_multistream_panel();
-        var curr_options = select_options_by_header('#streams');
-        //go through the new values and add any selected multilevel streams
-        var curr_multistreams = [];
-        _.each(Array.from(curr_options),function(stream,name){
-            var stream_string = stream.split(' ')[0];
-            if(multilevel_streams[stream_string])
-                curr_multistreams.push(multilevel_streams[stream_string]);
-        });
-        if(curr_multistreams.length)
-            show_multistream_panel(curr_multistreams);
-
-        $(this).val(Array.from(curr_options));
-    });
-    console.log(multilevel_streams);
-    $('#streams>option').click(option_toggle_header_on_click);
-    bind_deselect_options_by_header('#streams');
-};
-
-var stream_dict = new Object();
-var createForm = function(data){
-    if(data.code != 200)return;
-    var sites = data.sites;
-    _.each(sites, function(site,name){
-        var site_form = $('#instruments').append(site_template.replace('{site}',site.display_name || name));
-        if(Object.keys(site.instruments).length > 0){
-            //create a select element
-            var site_select = site_form.children('div').last().append(inst_select_template.replace('{site}',name));
-            var site_key = site_select.children('select').attr('id');
-            stream_dict[site_key] = new Object();
-            var site_name = name;
-            //add each instrument to the select
-            _.each(site.instruments,function(inst,name){
-                //eg "aoss.aeri", used in final api request
-                var inst_key = site_name + '.' + name;
-                site_select.children('select').append(makeOption(inst_key,inst.display_name || name));
-                stream_dict[site_key][inst_key] = {streams: inst.streams, name: inst.display_name || name};
-            });
-            //create an empty option at the end for the user to click off-of
-            site_select.children('select').append('<option></option>');
-            //bind the selection event to clearing out the next two forms and repopulating them
-            site_select.children('select').change(function(){
-                //remove the results of any previous selections
-                $('#streams').empty();
-                site_select.children('select').each(function(){$(this).removeClass('alert-danger')});
-                $('#instruments_err').hide();
-                //set the current site to the site that the selected instrument belongs to,
-                //then populate the #streams select with its streams
-                SITE = name;
-                $('.inst_select').each(function(){
-                    var select_id = $(this).attr('id');
-                    var select_sub_dict = stream_dict[select_id];
-                    console.log(select_sub_dict);
-                    _.each($(this).val(),function(val){
-                        if(select_sub_dict[val] == undefined) return;
-                        addStreams(select_sub_dict[val].streams,select_sub_dict[val].name,val);
-                    })
-                });
-            });
-            
-        }else{
-            site_form.children('div').last().append('<div>No instruments currently available for this site</div>');
-        }
-        
-    });
-    $('select').change(function(){
-        $(this).removeClass('alert-danger');
-        $('#'+$(this).attr('id')+'_err').hide();
-    });
-    console.log(stream_dict);
-};
-
-/* Build list of symbols to request based on form state */
-var getSelectedStreams = function(){
-    //make a list of streams from the vals of all selected products
-    //first the single-level streams
-    var streams = _.map(_.reject($('#streams').val(),function(val){
-        //exclude the instrument label options
-        return val.indexOf('header') != -1 || val.indexOf('multi') != -1;
-    }),function(val){
-        return val.split(' ')[0];
-    });
-    //then multi-level streams
-    var multi_streams = _.map(_.reject($('#multi_streams').val(),function(val){
-        //exclude the instrument label options
-        return val.indexOf('header') != -1 || val.indexOf('multi') != -1;
-    }),function(val){
-        return val.split(' ')[0];
-    });
-    streams = streams.concat(multi_streams).join(':');
-    return streams;
-
-};
-
-/* Parse time input forms into start and end date */
-var getTimeRange = function(){
-    //Check that both a time is selected and that it matches a valid date
-    var time_query = false;
-    var error = false;
-    if($("#last_x_days").is(":checked")){
-        if(/^[0-9]+$/.test(val_or_place('#x_days')));
-            time_query = '&begin=-'+24*Number(val_or_place('#x_days'))+':00:00';
-    }else if ($("#date_range").is(":checked")){
-        time_query = make_date_range_query();
-    } 
-    if(!time_query)
-        error = "#time_err";
-
-    return {error:error,query:time_query};
-
-};
-
-var buildRequestUrl = function(format,interval,epoch,sep,order,time,streams){
-    var request_url = METOBS_API_URL+'/api/data.'+format+'?';
-    request_url += 'interval='+interval;
-    request_url += '&epoch='+epoch;
-    request_url +='&sep='+sep || ','; 
-    request_url += '&order='+order;
-    request_url+=time;
-    request_url+='&symbols='+streams;
-    return request_url;
-}
-/*
- * Read the values of the various inputs on the page and formulate an API request
- */
-var submitForm=function(){
-    $(".err_msg").hide();
-    $("select").removeClass("alert-danger");
-    var errors = [];
-    var highlights = [];
-    var format = $('#format').val().toLowerCase();
-
-    //check that each form has a valid value
-    if($('#streams').val().length === 0){ 
-        errors.push('#streams_err');
-        highlights.push('#streams');
-    }
-    if($('#format').val() == '--') errors.push('#submit_err');
-    
-    //Check across multiple forms for a selected instrument 
-    var is_valid_inst = false;
-    $('#instruments').children('div').children('select').each(function(){
-        is_valid_inst |= ($(this).val().length !== 0);
-    });
-    if(!is_valid_inst){
-        errors.push("#instruments_err");
-        highlights.push("#instruments select");
-    }
-    
-    var time_query;
-    var timeRangeInfo = getTimeRange();
-
-    if(timeRangeInfo.error)
-        errors.push(timeRangeInfo.error);
-    else
-        time_query = timeRangeInfo.query;
-    
-    if(errors.length == 0){
-        var streams=getSelectedStreams();
-        //create a query string and open it in a new window
-        var request_url = buildRequestUrl(format,$('#interval').val(),
-                $('#epoch').val(), $('#sep').val(), $('#order').val(),
-                time_query,streams
-        );
-        window.open(request_url);
-    } else {
-        _.each(errors,function(error){
-            $(error).show();
-        });
-        _.each(highlights,function(elem){
-            $(elem).addClass("alert-danger");
-        });
-    }
-};
-var update_previews = function(){
-    var streams = get_selected_streams();
-    var met;
-    var buoy;
-    //split streams into buoy and tower
-    buoy_streams = _.map(_.reject(streams,function(stream){return stream.indexOf('mendota.buoy')==-1}),
-            function(stream){return stream.replace('mendota.buoy.','').split(' ')[0]}); 
-    tower_streams = _.map(_.reject(streams,function(stream){return stream.indexOf('aoss.tower.')==-1}),
-            function(stream){return stream.replace('aoss.tower.','').split(' ')[0]}); 
-    /* figure out which meteorogram plots should be displayed based on selected streams */
-    if(!_.contains(tower_streams,'air_temp')&&_.contains(tower_streams,'dewpoint'))
-        tower_streams = _.map(tower_streams,function(stream){return (stream=='dewpoint')?'air_temp':stream;});
-    tower_streams = _.reject(tower_streams,function(stream){return _.contains(['rel_hum','dewpoint','altimeter'],stream)});
-
-    if(!_.contains(buoy_streams,'air_temp')&&_.contains(buoy_streams,'dewpoint'))
-        buoy_streams = _.map(buoy_streams,function(stream){return (stream=='dewpoint')?'air_temp':stream;});
-    buoy_streams = _.reject(buoy_streams,function(stream){return _.contains(
-                ['dewpoint','rel_hum','altimeter','doptoppm','doptosat'],stream)});
-
-    
-    //modify plotOrder to only contain currently selected streams
-    if(tower_streams.length > 0){
-        var towerConfig = siteConfigs['aoss.tower'];
-        towerConfig.defaultPlots = tower_streams;
-        met = MeteorogramController('tower-plot-div', 'control-container', towerConfig);
-        met.initMeteorogram();
-    }else{
-        $('#tower-plot-div').empty();
-        met = undefined;
-    }
-    if(buoy_streams.length > 0){
-        var buoyConfig = siteConfigs['mendota.buoy'];
-        buoyConfig.defaultPlots = buoy_streams;
-        buoy = MeteorogramController('buoy-plot-div', 'control-container', buoyConfig);
-        buoy.initMeteorogram();
-    }else{
-        $('#buoy-plot-div').empty();
-        buoy = undefined;
-    }
-    if($('#last_x_days').is(':checked')){
-        var timeRangeInfo = '-'+24*Number(val_or_place('#x_days'))+':00:00';
-        if(met)met.displayRecent(timeRangeInfo);
-        if(buoy)buoy.displayRecent(timeRangeInfo);
-    }else if($('#date_range').is(':checked')){
-        var start = $('#Start-date-picker').val().split(' ').join('T')+':00';
-        var end = $('#End-date-picker').val().split(' ').join('T')+':00';
-        if(start !=':00'&&end!=':00'){
-            console.log("gogogogo!");
-            if(met)met.displayTimeRange(start,end);
-            if(buoy)buoy.displayTimeRange(start,end);
-        }else{
-            $('#tower-plot-div').empty();
-            $('#buoy-plot-div').empty();
-        }
-    }
-
-};
-
-$(document).ready(function(){
-    //Hide all form errors initially
-    $('.err_msg').hide();
-    $('#multi_streams').hide();
-    //Set up the date range inputs as datepicker objects
-    $('#Start-date-picker').datetimepicker({
-        changeMonth: true, 
-        changeYear: true,
-        dateFormat:'yy-mm-dd',
-        timeFormat:'HH:mm',
-        showSecond:false,
-        showMillisec:false,
-        showMicrosec:false
-    });
-
-    $('#End-date-picker').datetimepicker({
-        changeMonth: true, 
-        changeYear: true,
-        dateFormat:'yy-mm-dd',
-        timeFormat:'HH:mm',
-        showSecond:false,
-        showMillisec:false,
-        showMicrosec:false
-    });
-
-    //bind the enabling/disabling of forms to radio buttons
-    $('[type=text]').prop("disabled",true);
-    $("#last_x_days").click(function(){
-        $("#x_days").prop("disabled",false);
-        $("#Start-date-picker").prop("disabled",true).val("");
-        $("#End-date-picker").prop("disabled",true).val("");
-    });
-    $("#date_range").click(function(){
-        $("#x_days").prop("disabled",true).val("");
-        $("#Start-date-picker").prop("disabled",false);
-        $("#End-date-picker").prop("disabled",false);
-    });
-    
-    //add placeholder values for the order forms    
-    $('#x_days').attr('placeholder','5');
-    //Firefox (+others maybe) keep buttons selected on page reload
-    //enable the currrently selected one's field
-    if($("#date_range").is(":checked")) $("#date_range").trigger('click');
-    else if($("#last_x_days").is(":checked")) $("#last_x_days").trigger('click');
-    $('#sep').prop("disabled",false);
-    //get the configuration json from the metobs api, then build the form off of that
-    $.ajax({
-        url: METOBS_API_URL + "/api/archive/info",
-        type: "GET"
-    }).then(function(data){
-        data = DATA_API_INFO;
-        //create the form options from the recieved json
-        QuicklooksArchive.setStructure(data);
-        createForm(data);
-        bindQuicklookUpdatesToForms();
-        //bind form submission to #submit
-        $("#submit").click(function(){submitForm();});
-        $("#preview-btn").click(function(){update_previews();});
-        /*
-        buoyMet = MeteorogramController('buoy-plot-div','mendota.buoy');
-        buoyMet.initMeteorogram('all');
-        buoyMet.displayRealTime();
-        */
-        //towerMet.displayRealTime();
-    });
-});
diff --git a/htdocs/js/streamplot.js b/htdocs/js/streamplot.js
deleted file mode 100644
index 8b137891791fe96927ad78e64b0aad7bded08bdc..0000000000000000000000000000000000000000
--- a/htdocs/js/streamplot.js
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/htdocs/js/underscore-min.js b/htdocs/js/underscore-min.js
deleted file mode 100644
index f01025b7bcaab18e6b698141c854f95669a5975c..0000000000000000000000000000000000000000
--- a/htdocs/js/underscore-min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-//     Underscore.js 1.8.3
-//     http://underscorejs.org
-//     (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
-//     Underscore may be freely distributed under the MIT license.
-(function(){function n(n){function t(t,r,e,u,i,o){for(;i>=0&&o>i;i+=n){var a=u?u[i]:i;e=r(e,t[a],a,t)}return e}return function(r,e,u,i){e=b(e,i,4);var o=!k(r)&&m.keys(r),a=(o||r).length,c=n>0?0:a-1;return arguments.length<3&&(u=r[o?o[c]:c],c+=n),t(r,e,u,o,c,a)}}function t(n){return function(t,r,e){r=x(r,e);for(var u=O(t),i=n>0?0:u-1;i>=0&&u>i;i+=n)if(r(t[i],i,t))return i;return-1}}function r(n,t,r){return function(e,u,i){var o=0,a=O(e);if("number"==typeof i)n>0?o=i>=0?i:Math.max(i+a,o):a=i>=0?Math.min(i+1,a):i+a+1;else if(r&&i&&a)return i=r(e,u),e[i]===u?i:-1;if(u!==u)return i=t(l.call(e,o,a),m.isNaN),i>=0?i+o:-1;for(i=n>0?o:a-1;i>=0&&a>i;i+=n)if(e[i]===u)return i;return-1}}function e(n,t){var r=I.length,e=n.constructor,u=m.isFunction(e)&&e.prototype||a,i="constructor";for(m.has(n,i)&&!m.contains(t,i)&&t.push(i);r--;)i=I[r],i in n&&n[i]!==u[i]&&!m.contains(t,i)&&t.push(i)}var u=this,i=u._,o=Array.prototype,a=Object.prototype,c=Function.prototype,f=o.push,l=o.slice,s=a.toString,p=a.hasOwnProperty,h=Array.isArray,v=Object.keys,g=c.bind,y=Object.create,d=function(){},m=function(n){return n instanceof m?n:this instanceof m?void(this._wrapped=n):new m(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=m),exports._=m):u._=m,m.VERSION="1.8.3";var b=function(n,t,r){if(t===void 0)return n;switch(null==r?3:r){case 1:return function(r){return n.call(t,r)};case 2:return function(r,e){return n.call(t,r,e)};case 3:return function(r,e,u){return n.call(t,r,e,u)};case 4:return function(r,e,u,i){return n.call(t,r,e,u,i)}}return function(){return n.apply(t,arguments)}},x=function(n,t,r){return null==n?m.identity:m.isFunction(n)?b(n,t,r):m.isObject(n)?m.matcher(n):m.property(n)};m.iteratee=function(n,t){return x(n,t,1/0)};var _=function(n,t){return function(r){var e=arguments.length;if(2>e||null==r)return r;for(var u=1;e>u;u++)for(var i=arguments[u],o=n(i),a=o.length,c=0;a>c;c++){var f=o[c];t&&r[f]!==void 0||(r[f]=i[f])}return r}},j=function(n){if(!m.isObject(n))return{};if(y)return y(n);d.prototype=n;var t=new d;return d.prototype=null,t},w=function(n){return function(t){return null==t?void 0:t[n]}},A=Math.pow(2,53)-1,O=w("length"),k=function(n){var t=O(n);return"number"==typeof t&&t>=0&&A>=t};m.each=m.forEach=function(n,t,r){t=b(t,r);var e,u;if(k(n))for(e=0,u=n.length;u>e;e++)t(n[e],e,n);else{var i=m.keys(n);for(e=0,u=i.length;u>e;e++)t(n[i[e]],i[e],n)}return n},m.map=m.collect=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=Array(u),o=0;u>o;o++){var a=e?e[o]:o;i[o]=t(n[a],a,n)}return i},m.reduce=m.foldl=m.inject=n(1),m.reduceRight=m.foldr=n(-1),m.find=m.detect=function(n,t,r){var e;return e=k(n)?m.findIndex(n,t,r):m.findKey(n,t,r),e!==void 0&&e!==-1?n[e]:void 0},m.filter=m.select=function(n,t,r){var e=[];return t=x(t,r),m.each(n,function(n,r,u){t(n,r,u)&&e.push(n)}),e},m.reject=function(n,t,r){return m.filter(n,m.negate(x(t)),r)},m.every=m.all=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(!t(n[o],o,n))return!1}return!0},m.some=m.any=function(n,t,r){t=x(t,r);for(var e=!k(n)&&m.keys(n),u=(e||n).length,i=0;u>i;i++){var o=e?e[i]:i;if(t(n[o],o,n))return!0}return!1},m.contains=m.includes=m.include=function(n,t,r,e){return k(n)||(n=m.values(n)),("number"!=typeof r||e)&&(r=0),m.indexOf(n,t,r)>=0},m.invoke=function(n,t){var r=l.call(arguments,2),e=m.isFunction(t);return m.map(n,function(n){var u=e?t:n[t];return null==u?u:u.apply(n,r)})},m.pluck=function(n,t){return m.map(n,m.property(t))},m.where=function(n,t){return m.filter(n,m.matcher(t))},m.findWhere=function(n,t){return m.find(n,m.matcher(t))},m.max=function(n,t,r){var e,u,i=-1/0,o=-1/0;if(null==t&&null!=n){n=k(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],e>i&&(i=e)}else t=x(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(u>o||u===-1/0&&i===-1/0)&&(i=n,o=u)});return i},m.min=function(n,t,r){var e,u,i=1/0,o=1/0;if(null==t&&null!=n){n=k(n)?n:m.values(n);for(var a=0,c=n.length;c>a;a++)e=n[a],i>e&&(i=e)}else t=x(t,r),m.each(n,function(n,r,e){u=t(n,r,e),(o>u||1/0===u&&1/0===i)&&(i=n,o=u)});return i},m.shuffle=function(n){for(var t,r=k(n)?n:m.values(n),e=r.length,u=Array(e),i=0;e>i;i++)t=m.random(0,i),t!==i&&(u[i]=u[t]),u[t]=r[i];return u},m.sample=function(n,t,r){return null==t||r?(k(n)||(n=m.values(n)),n[m.random(n.length-1)]):m.shuffle(n).slice(0,Math.max(0,t))},m.sortBy=function(n,t,r){return t=x(t,r),m.pluck(m.map(n,function(n,r,e){return{value:n,index:r,criteria:t(n,r,e)}}).sort(function(n,t){var r=n.criteria,e=t.criteria;if(r!==e){if(r>e||r===void 0)return 1;if(e>r||e===void 0)return-1}return n.index-t.index}),"value")};var F=function(n){return function(t,r,e){var u={};return r=x(r,e),m.each(t,function(e,i){var o=r(e,i,t);n(u,e,o)}),u}};m.groupBy=F(function(n,t,r){m.has(n,r)?n[r].push(t):n[r]=[t]}),m.indexBy=F(function(n,t,r){n[r]=t}),m.countBy=F(function(n,t,r){m.has(n,r)?n[r]++:n[r]=1}),m.toArray=function(n){return n?m.isArray(n)?l.call(n):k(n)?m.map(n,m.identity):m.values(n):[]},m.size=function(n){return null==n?0:k(n)?n.length:m.keys(n).length},m.partition=function(n,t,r){t=x(t,r);var e=[],u=[];return m.each(n,function(n,r,i){(t(n,r,i)?e:u).push(n)}),[e,u]},m.first=m.head=m.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:m.initial(n,n.length-t)},m.initial=function(n,t,r){return l.call(n,0,Math.max(0,n.length-(null==t||r?1:t)))},m.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:m.rest(n,Math.max(0,n.length-t))},m.rest=m.tail=m.drop=function(n,t,r){return l.call(n,null==t||r?1:t)},m.compact=function(n){return m.filter(n,m.identity)};var S=function(n,t,r,e){for(var u=[],i=0,o=e||0,a=O(n);a>o;o++){var c=n[o];if(k(c)&&(m.isArray(c)||m.isArguments(c))){t||(c=S(c,t,r));var f=0,l=c.length;for(u.length+=l;l>f;)u[i++]=c[f++]}else r||(u[i++]=c)}return u};m.flatten=function(n,t){return S(n,t,!1)},m.without=function(n){return m.difference(n,l.call(arguments,1))},m.uniq=m.unique=function(n,t,r,e){m.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=x(r,e));for(var u=[],i=[],o=0,a=O(n);a>o;o++){var c=n[o],f=r?r(c,o,n):c;t?(o&&i===f||u.push(c),i=f):r?m.contains(i,f)||(i.push(f),u.push(c)):m.contains(u,c)||u.push(c)}return u},m.union=function(){return m.uniq(S(arguments,!0,!0))},m.intersection=function(n){for(var t=[],r=arguments.length,e=0,u=O(n);u>e;e++){var i=n[e];if(!m.contains(t,i)){for(var o=1;r>o&&m.contains(arguments[o],i);o++);o===r&&t.push(i)}}return t},m.difference=function(n){var t=S(arguments,!0,!0,1);return m.filter(n,function(n){return!m.contains(t,n)})},m.zip=function(){return m.unzip(arguments)},m.unzip=function(n){for(var t=n&&m.max(n,O).length||0,r=Array(t),e=0;t>e;e++)r[e]=m.pluck(n,e);return r},m.object=function(n,t){for(var r={},e=0,u=O(n);u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},m.findIndex=t(1),m.findLastIndex=t(-1),m.sortedIndex=function(n,t,r,e){r=x(r,e,1);for(var u=r(t),i=0,o=O(n);o>i;){var a=Math.floor((i+o)/2);r(n[a])<u?i=a+1:o=a}return i},m.indexOf=r(1,m.findIndex,m.sortedIndex),m.lastIndexOf=r(-1,m.findLastIndex),m.range=function(n,t,r){null==t&&(t=n||0,n=0),r=r||1;for(var e=Math.max(Math.ceil((t-n)/r),0),u=Array(e),i=0;e>i;i++,n+=r)u[i]=n;return u};var E=function(n,t,r,e,u){if(!(e instanceof t))return n.apply(r,u);var i=j(n.prototype),o=n.apply(i,u);return m.isObject(o)?o:i};m.bind=function(n,t){if(g&&n.bind===g)return g.apply(n,l.call(arguments,1));if(!m.isFunction(n))throw new TypeError("Bind must be called on a function");var r=l.call(arguments,2),e=function(){return E(n,e,t,this,r.concat(l.call(arguments)))};return e},m.partial=function(n){var t=l.call(arguments,1),r=function(){for(var e=0,u=t.length,i=Array(u),o=0;u>o;o++)i[o]=t[o]===m?arguments[e++]:t[o];for(;e<arguments.length;)i.push(arguments[e++]);return E(n,r,this,this,i)};return r},m.bindAll=function(n){var t,r,e=arguments.length;if(1>=e)throw new Error("bindAll must be passed function names");for(t=1;e>t;t++)r=arguments[t],n[r]=m.bind(n[r],n);return n},m.memoize=function(n,t){var r=function(e){var u=r.cache,i=""+(t?t.apply(this,arguments):e);return m.has(u,i)||(u[i]=n.apply(this,arguments)),u[i]};return r.cache={},r},m.delay=function(n,t){var r=l.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},m.defer=m.partial(m.delay,m,1),m.throttle=function(n,t,r){var e,u,i,o=null,a=0;r||(r={});var c=function(){a=r.leading===!1?0:m.now(),o=null,i=n.apply(e,u),o||(e=u=null)};return function(){var f=m.now();a||r.leading!==!1||(a=f);var l=t-(f-a);return e=this,u=arguments,0>=l||l>t?(o&&(clearTimeout(o),o=null),a=f,i=n.apply(e,u),o||(e=u=null)):o||r.trailing===!1||(o=setTimeout(c,l)),i}},m.debounce=function(n,t,r){var e,u,i,o,a,c=function(){var f=m.now()-o;t>f&&f>=0?e=setTimeout(c,t-f):(e=null,r||(a=n.apply(i,u),e||(i=u=null)))};return function(){i=this,u=arguments,o=m.now();var f=r&&!e;return e||(e=setTimeout(c,t)),f&&(a=n.apply(i,u),i=u=null),a}},m.wrap=function(n,t){return m.partial(t,n)},m.negate=function(n){return function(){return!n.apply(this,arguments)}},m.compose=function(){var n=arguments,t=n.length-1;return function(){for(var r=t,e=n[t].apply(this,arguments);r--;)e=n[r].call(this,e);return e}},m.after=function(n,t){return function(){return--n<1?t.apply(this,arguments):void 0}},m.before=function(n,t){var r;return function(){return--n>0&&(r=t.apply(this,arguments)),1>=n&&(t=null),r}},m.once=m.partial(m.before,2);var M=!{toString:null}.propertyIsEnumerable("toString"),I=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];m.keys=function(n){if(!m.isObject(n))return[];if(v)return v(n);var t=[];for(var r in n)m.has(n,r)&&t.push(r);return M&&e(n,t),t},m.allKeys=function(n){if(!m.isObject(n))return[];var t=[];for(var r in n)t.push(r);return M&&e(n,t),t},m.values=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=n[t[u]];return e},m.mapObject=function(n,t,r){t=x(t,r);for(var e,u=m.keys(n),i=u.length,o={},a=0;i>a;a++)e=u[a],o[e]=t(n[e],e,n);return o},m.pairs=function(n){for(var t=m.keys(n),r=t.length,e=Array(r),u=0;r>u;u++)e[u]=[t[u],n[t[u]]];return e},m.invert=function(n){for(var t={},r=m.keys(n),e=0,u=r.length;u>e;e++)t[n[r[e]]]=r[e];return t},m.functions=m.methods=function(n){var t=[];for(var r in n)m.isFunction(n[r])&&t.push(r);return t.sort()},m.extend=_(m.allKeys),m.extendOwn=m.assign=_(m.keys),m.findKey=function(n,t,r){t=x(t,r);for(var e,u=m.keys(n),i=0,o=u.length;o>i;i++)if(e=u[i],t(n[e],e,n))return e},m.pick=function(n,t,r){var e,u,i={},o=n;if(null==o)return i;m.isFunction(t)?(u=m.allKeys(o),e=b(t,r)):(u=S(arguments,!1,!1,1),e=function(n,t,r){return t in r},o=Object(o));for(var a=0,c=u.length;c>a;a++){var f=u[a],l=o[f];e(l,f,o)&&(i[f]=l)}return i},m.omit=function(n,t,r){if(m.isFunction(t))t=m.negate(t);else{var e=m.map(S(arguments,!1,!1,1),String);t=function(n,t){return!m.contains(e,t)}}return m.pick(n,t,r)},m.defaults=_(m.allKeys,!0),m.create=function(n,t){var r=j(n);return t&&m.extendOwn(r,t),r},m.clone=function(n){return m.isObject(n)?m.isArray(n)?n.slice():m.extend({},n):n},m.tap=function(n,t){return t(n),n},m.isMatch=function(n,t){var r=m.keys(t),e=r.length;if(null==n)return!e;for(var u=Object(n),i=0;e>i;i++){var o=r[i];if(t[o]!==u[o]||!(o in u))return!1}return!0};var N=function(n,t,r,e){if(n===t)return 0!==n||1/n===1/t;if(null==n||null==t)return n===t;n instanceof m&&(n=n._wrapped),t instanceof m&&(t=t._wrapped);var u=s.call(n);if(u!==s.call(t))return!1;switch(u){case"[object RegExp]":case"[object String]":return""+n==""+t;case"[object Number]":return+n!==+n?+t!==+t:0===+n?1/+n===1/t:+n===+t;case"[object Date]":case"[object Boolean]":return+n===+t}var i="[object Array]"===u;if(!i){if("object"!=typeof n||"object"!=typeof t)return!1;var o=n.constructor,a=t.constructor;if(o!==a&&!(m.isFunction(o)&&o instanceof o&&m.isFunction(a)&&a instanceof a)&&"constructor"in n&&"constructor"in t)return!1}r=r||[],e=e||[];for(var c=r.length;c--;)if(r[c]===n)return e[c]===t;if(r.push(n),e.push(t),i){if(c=n.length,c!==t.length)return!1;for(;c--;)if(!N(n[c],t[c],r,e))return!1}else{var f,l=m.keys(n);if(c=l.length,m.keys(t).length!==c)return!1;for(;c--;)if(f=l[c],!m.has(t,f)||!N(n[f],t[f],r,e))return!1}return r.pop(),e.pop(),!0};m.isEqual=function(n,t){return N(n,t)},m.isEmpty=function(n){return null==n?!0:k(n)&&(m.isArray(n)||m.isString(n)||m.isArguments(n))?0===n.length:0===m.keys(n).length},m.isElement=function(n){return!(!n||1!==n.nodeType)},m.isArray=h||function(n){return"[object Array]"===s.call(n)},m.isObject=function(n){var t=typeof n;return"function"===t||"object"===t&&!!n},m.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(n){m["is"+n]=function(t){return s.call(t)==="[object "+n+"]"}}),m.isArguments(arguments)||(m.isArguments=function(n){return m.has(n,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(m.isFunction=function(n){return"function"==typeof n||!1}),m.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},m.isNaN=function(n){return m.isNumber(n)&&n!==+n},m.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"===s.call(n)},m.isNull=function(n){return null===n},m.isUndefined=function(n){return n===void 0},m.has=function(n,t){return null!=n&&p.call(n,t)},m.noConflict=function(){return u._=i,this},m.identity=function(n){return n},m.constant=function(n){return function(){return n}},m.noop=function(){},m.property=w,m.propertyOf=function(n){return null==n?function(){}:function(t){return n[t]}},m.matcher=m.matches=function(n){return n=m.extendOwn({},n),function(t){return m.isMatch(t,n)}},m.times=function(n,t,r){var e=Array(Math.max(0,n));t=b(t,r,1);for(var u=0;n>u;u++)e[u]=t(u);return e},m.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},m.now=Date.now||function(){return(new Date).getTime()};var B={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","`":"&#x60;"},T=m.invert(B),R=function(n){var t=function(t){return n[t]},r="(?:"+m.keys(n).join("|")+")",e=RegExp(r),u=RegExp(r,"g");return function(n){return n=null==n?"":""+n,e.test(n)?n.replace(u,t):n}};m.escape=R(B),m.unescape=R(T),m.result=function(n,t,r){var e=null==n?void 0:n[t];return e===void 0&&(e=r),m.isFunction(e)?e.call(n):e};var q=0;m.uniqueId=function(n){var t=++q+"";return n?n+t:t},m.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var K=/(.)^/,z={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},D=/\\|'|\r|\n|\u2028|\u2029/g,L=function(n){return"\\"+z[n]};m.template=function(n,t,r){!t&&r&&(t=r),t=m.defaults({},t,m.templateSettings);var e=RegExp([(t.escape||K).source,(t.interpolate||K).source,(t.evaluate||K).source].join("|")+"|$","g"),u=0,i="__p+='";n.replace(e,function(t,r,e,o,a){return i+=n.slice(u,a).replace(D,L),u=a+t.length,r?i+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'":e?i+="'+\n((__t=("+e+"))==null?'':__t)+\n'":o&&(i+="';\n"+o+"\n__p+='"),t}),i+="';\n",t.variable||(i="with(obj||{}){\n"+i+"}\n"),i="var __t,__p='',__j=Array.prototype.join,"+"print=function(){__p+=__j.call(arguments,'');};\n"+i+"return __p;\n";try{var o=new Function(t.variable||"obj","_",i)}catch(a){throw a.source=i,a}var c=function(n){return o.call(this,n,m)},f=t.variable||"obj";return c.source="function("+f+"){\n"+i+"}",c},m.chain=function(n){var t=m(n);return t._chain=!0,t};var P=function(n,t){return n._chain?m(t).chain():t};m.mixin=function(n){m.each(m.functions(n),function(t){var r=m[t]=n[t];m.prototype[t]=function(){var n=[this._wrapped];return f.apply(n,arguments),P(this,r.apply(m,n))}})},m.mixin(m),m.each(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=o[n];m.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!==n&&"splice"!==n||0!==r.length||delete r[0],P(this,r)}}),m.each(["concat","join","slice"],function(n){var t=o[n];m.prototype[n]=function(){return P(this,t.apply(this._wrapped,arguments))}}),m.prototype.value=function(){return this._wrapped},m.prototype.valueOf=m.prototype.toJSON=m.prototype.value,m.prototype.toString=function(){return""+this._wrapped},"function"==typeof define&&define.amd&&define("underscore",[],function(){return m})}).call(this);
-//# sourceMappingURL=underscore-min.map
\ No newline at end of file
diff --git a/htdocs/mendota/buoy/index.html b/htdocs/mendota/buoy/index.html
deleted file mode 100644
index 15e8a1a38dc68b4720927f1d2e5d84efb4039721..0000000000000000000000000000000000000000
--- a/htdocs/mendota/buoy/index.html
+++ /dev/null
@@ -1,277 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Buoy - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-<div class="instrument">
-    <div class="container">
-        <div class="row">
-            <div class="col-sm-8">
-                <h1>Lake Mendota Buoy</h1>
-                <p>The Lake Mendota buoy project is a collaboration between the <a href="http://www.limnology.wisc.edu/">University of Wisconsin Limnology</a>, <a href="http://www.ssec.wisc.edu">Space Science and Engineering Center</a> (SSEC) and <a href="https://www.engr.wisc.edu/department/civil-environmental-engineering/">Environmental Engineering</a>. The buoy measurements provide researchers valuable information to better understand the biological process governing the health of the lake and the impact of human activity on water quality. The buoy is located approximately 1.5 km North East of Picnic Point. The buoy measures both atmospheric and lake properties including: <ul><li>Wind Direction and Speed</li><li>Air Temperature</li><li>Dew Point/Relative Humidity</li><li>Vertical Profile of Water Temperature</li><li>Dissolved Oxygen</li><li>Chlorophyll</li><li>Phycocyanin.</li></ul> This site provides public access to the current lake conditions.
-                <p>
-                    <a class="btn btn-default btn-lg" href="/datadownload">Order Files &raquo;</a>
-                    <a class="btn btn-default btn-lg" href="/streamdownload">Order Data &raquo;</a>
-                    <a class="btn btn-default btn-lg" href="meteorogram">View Realtime&raquo;</a>
-                </p>
-            </div>
-            <div class="col-sm-4 text-center">
-                <a href="../quicklooks#buoy"><img class="img-responsive img-center" src="/images/buoyexample.png" alt="QuickLook Example"></a>
-                <h3 style="margin-top:10px">Quicklook Browser</h3>
-            </div>
-        </div>
-        <!-- /.row -->
-
-        <hr>
-        <div class="row">
-            <a class="no-style" href="text_popup/">
-                <div class="col-sm-4">
-                    <div id="graph">
-                    </div>
-                </div>
-            </a>
-            <div class="col-sm-4">
-                <a href="https://www.google.com/maps/place/43°05'58.2%22N+89°24'16.2%22W/@43.0996009,-89.4206768,14.11z/data=!4m5!3m4!1s0x0:0x0!8m2!3d43.0995!4d-89.4045"><img class="img-responsive img-center" src="../../../images/buoy.png" alt="Buoy Photo"></a>
-                <h2>Buoy Location</h2>
-            </div>
-            <div class="col-sm-4">
-                <img class="img-responsive img-center" src="/images/buoywatertempexample.png" alt="Buoy Water Temp Profile">
-                <h2>Water Temp Profile Example</h2>
-            </div>
-        </div>
-        <!-- /.row -->
-        <hr>
-    </div>
-    <!-- /.container -->
-</div>    
-<script src="/js/quicklooks.js"></script>
-<script src="/js/moment.min.js"></script>
-<script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-<script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-<script type="text/javascript">
-    var myConfig = siteConfigs['mendota.buoy'];
-    myConfig.title = "Current Conditions";
-    var met = MeteorogramController('graph', 'control-container', myConfig);
-    met.initMeteorogramTable();
-    met.displayRealTime();
-</script>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/mendota/buoy/meteorogram/index.html b/htdocs/mendota/buoy/meteorogram/index.html
deleted file mode 100644
index dbed5bb539f3fbd567700fa66cb4710aa57abef0..0000000000000000000000000000000000000000
--- a/htdocs/mendota/buoy/meteorogram/index.html
+++ /dev/null
@@ -1,261 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Lake Mendota Buoy Meteorogram - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-    
-
-    <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">-->
-    <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" type="text/css">
-    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-timepicker/1.8.10/jquery.timepicker.min.css" type="text/css">
-    <link rel="stylesheet" href="/theme/css/meteorogram_style.css">
-    <!--<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>-->
-    <script src="https://cdn.plot.ly/plotly-latest.js"></script>
-    <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
-    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-timepicker-addon/1.6.3/jquery-ui-timepicker-addon.min.js"></script>
-    <!--<script src="https://code.jquery.com/jquery-3.2.0.min.js"></script>-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-<div id="content">
-    <div class="container">
-        <h2 class="row">Meteorogram</h2>
-        <div class="row" style="padding:0 1em">
-            <h4 class="col-sm-12">Timeframe</h4>
-            <div class="col-sm-12">
-                <div class="row" style="padding:0 1em">
-                    <div class="col-sm-12">
-                        <div class="form-group" id="control-container"></div>
-                    </div>
-                </div>
-            </div>
-        </div>
-        <div class="row" id="row2">
-            <div id="graph" style="width: 100%;"></div>
-        </div>
-    </div>
-</div>
-<script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-<script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-<script type="text/javascript">
-    var met = MeteorogramController('graph', 'control-container', siteConfigs['mendota.buoy']);
-    met.initMeteorogram();
-    met.initMeteorogramControls();
-    met.displayRealTime();
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/mendota/buoy/text_popup/index.html b/htdocs/mendota/buoy/text_popup/index.html
deleted file mode 100644
index 4d0b221ac6b0ac2aca31755f50ded2f806d51cda..0000000000000000000000000000000000000000
--- a/htdocs/mendota/buoy/text_popup/index.html
+++ /dev/null
@@ -1,239 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Buoy - Current Conditions - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-<div class="instrument" style="text-align:center">
-    <div id="graph" style="display:inline-block;text-align:left"></div>
-</div>
-<script src="/js/moment.min.js"></script>
-<script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-<script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-<script type="text/javascript">
-    $(document).ready(function(){
-        var myConfig = siteConfigs['mendota.buoy'];
-        myConfig.title = "Current Conditions";
-        var met = MeteorogramController('graph', 'control-container', myConfig);
-        met.initMeteorogramTable();
-        met.displayRealTime();
-    });
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/mendota/index.html b/htdocs/mendota/index.html
deleted file mode 100644
index 518d63e2e09be53553e1710cf4d301329685a625..0000000000000000000000000000000000000000
--- a/htdocs/mendota/index.html
+++ /dev/null
@@ -1,253 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Lake Mendota - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-<!-- The circle icons use Font Awesome's stacked icon classes. For more information, visit http://fontawesome.io/examples/ -->
-<section id="instruments" class="services bg-primary" style="padding:5px 0">
-    <div class="container">
-        <div class="row text-center">
-            <div class="col-lg-10 col-lg-offset-1">
-                <h2>Lake Mendota Instruments</h2>
-                <hr class="small">
-                <div class="row">
-                    <div class="col-md-2 col-sm-4">
-                        <a href='/mendota/buoy' style='color:inherit'>
-                            <div class="service-item">
-                                    <span class="fa-stack fa-4x">
-                                        <i class="fa fa-circle fa-stack-2x"></i>
-                                        <i class="fa fa-life-ring fa-stack-1x text-primary"></i>
-                                    </span>
-                                <h4>
-                                    <strong>Mendota Buoy</strong>
-                                </h4>
-                            </div>
-                        </a>
-                    </div>
-                </div>
-                <!-- /.row (nested) -->
-            </div>
-            <!-- /.col-lg-10 -->
-        </div>
-        <!-- /.row -->
-    </div>
-    <!-- /.container -->
-</section>    
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/quicklooks/detail.html b/htdocs/quicklooks/detail.html
deleted file mode 100644
index 3c7e291a0384e3fcd4c162f823ebaeb86109b4b0..0000000000000000000000000000000000000000
--- a/htdocs/quicklooks/detail.html
+++ /dev/null
@@ -1,257 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>QuickLook Details - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-    <div class="container">
-        <br>
-        <div class="row">
-            <div class="col-sm-6">
-                <img id="img1" width="100%">
-            </div>
-            <div class="col-sm-6">
-                <img id="img2" width="100%">
-            </div>
-        </div>
-    </div>
-        <hr>
-<script src="/js/moment.min.js"></script>
-<script src="/js/underscore-min.js"></script>
-<script src="/js/quicklooks.js"></script>
-<script>
-//parses the GET parameters from a function
-//from http://stackoverflow.com/a/831060/6884806
-function get(name){
-   if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search))
-         return decodeURIComponent(name[1]);
-}
-
-$(document).ready(function(){
-    var inst=get("inst");
-    var site=get("site");
-    var product = get("product");  
-    var dt = get("dt");  
-    var urls = get_quicklook_url(inst,site,product,dt,false);
-    $("#img1").attr('src',urls[0]); 
-    $("#img2").attr('src',urls[1]); 
-}); 
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/quicklooks/index.html b/htdocs/quicklooks/index.html
deleted file mode 100644
index 312e20ecc1ea413c1d449351d44527555f66ea74..0000000000000000000000000000000000000000
--- a/htdocs/quicklooks/index.html
+++ /dev/null
@@ -1,393 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>QuickLook Browser - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-    <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
-    <!--<script src="https://code.jquery.com/jquery-1.12.4.js"></script>-->
-    <script
-      src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
-      integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
-      crossorigin="anonymous"></script>
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-
-    
-    
-<div id="content"> 
-<div class="container">
-    <h2 class="row">Quicklooks</h2>
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Timeframe</h4>
-            </div>
-            <div id="time_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display:none">
-                <span style="color:red;font-weight:bold">&#9888; Invalid timeframe selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-            <div class="col-xs-12">
-                <div class="form-group">
-                  <table>
-                    <tr>
-                        <td style="padding-right:.5em">
-                          <div class="radio">
-                            <label><input type="radio" id="last_x_days" name="time_select"> Most Recent Days: </label>
-                          </div>
-                        </td>
-                        <td><input style="width:5em" class="form-control" type="text" style="padding 0.5em 0;" id="x_days" /></td></td>
-                        <td style="padding-left:.5em;padding-right:.5em">
-                          <div class="radio">
-                            <label><input type="radio" id="date_range" name="time_select"> Date Range: </label>
-                          </div>
-                        </td>
-                        <td>
-                            <input class="form-control" style="padding 0.5em 0;" id="Start-date-picker" type="text" placeholder="YYYY-MM-DD" />
-                        </td>
-                        <td> to </td>
-                        <td>
-                            <input class="form-control" style="padding 0.5em 0;" id="End-date-picker" type="text" placeholder="YYYY-MM-DD" />
-                        </td>
-                    </tr>
-                  </table>
-                </div>
-            </div>
-        </div>
-    </div>
-
-<div id="imagestrip">
-<div class="row ">
-    <div class="col-xs-12">
-       <h3>AOSS Rooftop, UW-Madison</h3>
-       <h4>AOSS Tower</h4>
-        <button type="submit" form="towerform" value="Submit" onclick="order('aoss','tower')">Order AOSS Tower Data</button>
-        <button type="submit" class="select-all">Select All</button>
-        Format: <select id="towerformat">
-            <option selected> CSV </option>
-            <option> JSON </option>
-            <option> SH </option>
-            <option> BAT </option>
-        </select>
-    </div>
-    <div class="col-xs-2 col-lg-1">
-      <b>
-        Date
-        <div class="ql-label">Meteorogram</div>
-        <div class="ql-label">Air and Dewpoint Temperature</div>
-        <div class="ql-label">Pressure</div>
-        <div class="ql-label">Wind Speed</div>
-        <div class="ql-label">Wind Direction</div>
-        <div class="ql-label">Daily Accumulated Precipitation</div>
-        <div class="ql-label">Solar Flux</div>
-      </b>
-    </div>
-    <div class="col-xs-10 col-lg-11 table-holder" style="overflow-x:scroll;">
-      <table id="towertable" width="840px" cellpadding="0" cellspacing="0" class="imageStripsContainer">
-        <tr class="ql_date_row" inst="tower" site="aoss">
-        <tr class="ql_row" inst="tower" site="aoss" product="meteorogram-daily">
-        <tr class="ql_row" inst="tower" site="aoss" product="td-daily">
-        <tr class="ql_row" inst="tower" site="aoss" product="pressure-daily">
-        <tr class="ql_row" inst="tower" site="aoss" product="wind-speed-daily">
-        <tr class="ql_row" inst="tower" site="aoss" product="wind-dir-daily">
-        <tr class="ql_row" inst="tower" site="aoss" product="accum-precip-daily">
-        <tr class="ql_row" inst="tower" site="aoss" product="solar-flux-daily">
-
-      </table>
-    </div>
-</div>
-<!--
-<div class="row">
-  <div class="col-xs-12">
-    <h4>Ceilometer</h4>
-    <button type="submit" form="ceiloform" value="Submit" onclick="order('aoss','ceilo')">Order Ceilometer Data</button>
-    <button type="submit" class="select-all">Select All</button>
-    Format: <select id="ceiloformat">
-    <option selected> CSV </option>
-    <option> JSON </option>
-    <option> SH </option>
-    <option> BAT </option>
-    </select>
-  </div>
-  <div class="col-xs-2 col-lg-1">
-    <b>
-      Date<br></br>
-      <div class="ql-label">BackStatter</div>
-    </b>
-  </div>
-  <div class="col-xs-10 col-lg-11 table-holder" style="overflow-x:scroll;">
-    <table id="ceilotable" width="840px" cellpadding="0" cellspacing="0" class="imageStripsContainer">
-      <tr class="ql_date_row" inst="cielo" site="aoss">
-      <tr class="ql_row" inst="ceilo" site="aoss" product="">
-    </table>
-  </div>
-</div>
-
-
-<div class="row">
-  <div class="col-xs-12">
-    <h3 id="buoy">Lake Mendota, Madison WI</h3>
-    <h4>Buoy</h4>
-    <button type="submit" form="buoyform" value="Submit" onclick="order('mendota','buoy')">Order Buoy Data</button>
-    <button type="submit" class="select-all">Select All</button>
-    Format: <select id="buoyformat">
-    <option selected> CSV </option>
-    <option> JSON </option>
-    <option> SH </option>
-    <option> BAT </option>
-    </select>
-  </div>
-  <div class="col-xs-2 col-lg-1">
-    <b>
-      Date<br></br>
-      <div class="ql-label">Meteorogram</div>
-      <div class="ql-label">Air and Dewpoint Temperature</div>
-      <div class="ql-label">Wind Speed</div>
-      <div class="ql-label">Wind Direction</div>
-      <div class="ql-label">Chlorophyll</div>
-      <div class="ql-label">Phycocyanin</div>
-      <div class="ql-label">Water Temperature</div>
-    </b>
-  </div>
-  <div class="col-xs-10 col-lg-11 table-holder" style="overflow-x:scroll;">
-    <table id="buoytable" width="1260px" cellpadding="0" cellspacing="0" class="imageStripsContainer">
-        <tr class="ql_date_row" inst="buoy" site="mendota" >
-        <tr class="ql_row" inst="buoy" site="mendota" product="met">
-        <tr class="ql_row" inst="buoy" site="mendota" product="td">
-        <tr class="ql_row" inst="buoy" site="mendota" product="windsp">
-        <tr class="ql_row" inst="buoy" site="mendota" product="winddr">
-        <tr class="ql_row" inst="buoy" site="mendota" product="chloro">
-        <tr class="ql_row" inst="buoy" site="mendota" product="phyco">
-        <tr class="ql_row" inst="buoy" site="mendota" product="watert">
-    </table>
-  </div>
-
-</table>
-</div>
-</div>
-</div>
--->
-</div>
-<script src="/js/moment.min.js"></script>
-<script src="/js/underscore-min.js"></script>
-<script src="/js/quicklookorder.js"></script>
-<script src="/js/quicklooks.js"></script>
-<script src="/js/quicklooks-util.js"></script>
-<script src="/js/quicklooks-interactive.js"></script>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/realtime/index.html b/htdocs/realtime/index.html
deleted file mode 100644
index 8781f0d2379eb55d570035fa5cd768c3bf0a0eda..0000000000000000000000000000000000000000
--- a/htdocs/realtime/index.html
+++ /dev/null
@@ -1,241 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Real-Time Data - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-
-<div>
-    <center>
-        <h1>Real-time Data</h1>
-    <table>
-        <tr>
-            <td class="instruments">
-                <a href="/aoss/tower/meteorogram"><img src="/images/aossinteractive.png" alt="AOSS Interactive Data" height="256px"><br>Atmospheric, Oceanic, and Space Sciences Building (AOSS)</a><br>RIG Tower Real-time Interactive Data
-            </td>
-            <td class="instruments">
-                <a href="/mendota/buoy/meteorogram"><img src="/images/buoyinteractive.png" alt="Buoy Interactive Data" height="256px"><br>Lake Mendota</a><br>Buoy Real-time Interactive Data
-            </td>
-        </tr>
-    </table>
-    </center>
-</div>
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/sparc/aeri/realtime_quicklooks/index.html b/htdocs/sparc/aeri/realtime_quicklooks/index.html
deleted file mode 100644
index 735b4c314f4020a0d36465146dbcecf1397e439b..0000000000000000000000000000000000000000
--- a/htdocs/sparc/aeri/realtime_quicklooks/index.html
+++ /dev/null
@@ -1,429 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>SPARC AERI - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    
-<style>
-
-body {
-    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
-}
-
-nav {
-    display:none
-}
-</style>
-    
-
-<div class="instrument">
-    <div class="container">
-        <div class="row">
-            <div class="col-xs-12">
-                <h1>SPARC AERI Quicklooks</h1>
-            </div>
-        </div>
-        <div class="row">
-            <div class="col-md-2 col-lg-3"></div>
-            <div class="col-md-8 col-lg-6 text-center">
-                <img class="ql-refresh" width="80%" src="http://metobs-test.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/latest_skewt.png">
-            </div>
-        </div>
-
-        <!--Temperature-->
-        <div class="row" id="aerioe-temperature">
-            <div class="col-xs-12">
-                <h3>Temperature</h3>
-            </div>
-            <div class="col-md-1 col-lg-12">
-            </div> 
-            <div class="col-md-10 col-lg-12">
-              <div class="row">
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">6 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.temp_xsec.last_06_hours.png">
-                </div>
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">24 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.temp_xsec.last_24_hours.png">
-                </div>
-              </div>
-            </div>
-        </div>
-
-        <!--Water Vapor-->
-        <div class="row" id="aerioe-water-vapor">
-            <div class="col-xs-12">
-                <h3>Water Vapor</h3>
-            </div>
-            <div class="col-md-1 col-lg-12">
-            </div> 
-            <div class="col-md-10 col-lg-12">
-              <div class="row">
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">6 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.wvmr_xsec.last_06_hours.png">
-                </div>
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">24 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.wvmr_xsec.last_24_hours.png">
-                </div>
-              </div>
-            </div>
-        </div>
-
-        <!--Relative Humidity-->
-        <div class="row" id="aerioe-relative-humidity">
-            <div class="col-xs-12">
-                <h3>Relative Humidity</h3>
-            </div>
-            <div class="col-md-1 col-lg-12">
-            </div> 
-            <div class="col-md-10 col-lg-12">
-              <div class="row">
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">6 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.rh_xsec.last_06_hours.png">
-                </div>
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">24 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.rh_xsec.last_24_hours.png">
-                </div>
-              </div>
-            </div>
-        </div>
-
-        <!--Theta-->
-        <div class="row" id="aerioe-theta">
-            <div class="col-xs-12">
-                <h3>Theta</h3>
-            </div>
-            <div class="col-md-1 col-lg-12">
-            </div> 
-            <div class="col-md-10 col-lg-12">
-              <div class="row">
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">6 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.theta_xsec.last_06_hours.png">
-                </div>
-                <div class="col-lg-6 text-center">
-                  <h4 class="hidden-lg">24 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.theta_xsec.last_24_hours.png">
-                </div>
-              </div>
-            </div>
-        </div>
-
-        <!-- LWP & Ice Optical Depth-->
-        <div class="row" id="aerioe-ice-optical-depth">
-            <div class="col-xs-12">
-                <h3>LWP & Ice Optical Depth</h3>
-            </div>
-            
-            
-            <div class="col-md-1 col-lg-12">
-            </div> 
-            <div class="col-md-10 col-lg-12">
-              <div class="row">
-                <div class="col-lg-6 text-center">
-                  <h4>6 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.lwp_itau.last_06_hours.png">
-                </div>
-                <div class="col-lg-6 text-center">
-                  <h4>24 Hours</h4>
-                  <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/aeri/level_c1/version_00/aerioe.lwp_itau.last_24_hours.png">
-                </div>
-              </div>
-            </div>
-        </div>
-
-        <!-- Doppler Lidar Wind Speed -->
-        <div class="row" id="doppler-wind-speed">
-            <div class="col-xs-12">
-                <h3>Doppler Lidar Wind Speed</h3>
-            </div>
-
-
-            <div class="col-md-1 col-lg-12">
-            </div>
-            <div class="col-md-10 col-lg-12">
-                <div class="row">
-                    <div class="col-lg-6 text-center">
-                        <h4>6 Hours</h4>
-                        <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/windpro/level_a1/version_00/wind_speed_last_6_hrs.png">
-                    </div>
-                    <div class="col-lg-6 text-center">
-                        <h4>24 Hours</h4>
-                        <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/windpro/level_a1/version_00/wind_speed_last_24_hrs.png">
-                    </div>
-                </div>
-            </div>
-        </div>
-
-        <!-- Doppler Lidar Wind Direction -->
-        <div class="row" id="doppler-wind-direction">
-            <div class="col-xs-12">
-                <h3>Doppler Lidar Wind Direction </h3>
-            </div>
-
-
-            <div class="col-md-1 col-lg-12">
-            </div>
-            <div class="col-md-10 col-lg-12">
-                <div class="row">
-                    <div class="col-lg-6 text-center">
-                        <h4>6 Hours</h4>
-                        <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/windpro/level_a1/version_00/wind_dir_last_6_hrs.png">
-                    </div>
-                    <div class="col-lg-6 text-center">
-                        <h4>24 Hours</h4>
-                        <img class="ql-refresh" width="100%" src="http://metobs.ssec.wisc.edu/pub/cache/sparc/current/windpro/level_a1/version_00/wind_dir_last_24_hrs.png">
-                    </div>
-                </div>
-            </div>
-        </div>
-</div>
-<script src="/js/moment.min.js"></script>
-<script>
-    setInterval(function(){
-        //cache-break the images with a new url every 10 minutes
-        $('img.ql-refresh').each(function(){
-            var url = $(this).attr('src');
-            if(url.indexOf('?t=') > -1) url = url.substring(0,url.indexOf('?t='));
-            $(this).attr('src',url+'?t='+new Date().getTime());
-        });
-    },10*60*1000);
-    /*
-    $(document).ready(function(){
-        //replace relative urls with absolute - this is supposed to be a freestanding page
-        $('nav a').each(function(){
-            var href = $(this).attr('href');
-            if(href[0] == '/')
-                $(this).attr('href',METOBS_API_URL+href);
-        });
-        $('nav img').each(function(){
-            var src = $(this).attr('src');
-            if(src[0] == '/')
-                $(this).attr('src',METOBS_API_URL+src);
-        });
-    });
-    */
-</script>
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/streamdownload/index.html b/htdocs/streamdownload/index.html
deleted file mode 100644
index aaff45792bdfafe4cd780f7c988f9710d837494b..0000000000000000000000000000000000000000
--- a/htdocs/streamdownload/index.html
+++ /dev/null
@@ -1,422 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>Datastream Download - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-    <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
-    <!--<script src="https://code.jquery.com/jquery-1.12.4.js"></script>-->
-    <script
-      src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
-      integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
-      crossorigin="anonymous"></script>
-    <script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-
-    
-
-<div class="container">
-  <div class="row">
-  <div class="col-sm-1 col-lg-2 "></div>
-  <div class="col-sm-10  col-lg-8">
-    <h2 class="row">Order Data:</h2>
-    <div class="row">
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Timeframe</h4>
-            </div>
-            <div id="time_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display: none;">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; Invalid timeframe selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-            <div class="col-xs-12">
-                <div class="form-group">
-                  <table>
-                    <tr>
-                        <td style="padding-right:.5em">
-                          <div class="radio">
-                            <label><input type="radio" id="last_x_days" name="time_select"> Most Recent Days: </label>
-                          </div>
-                        </td>
-                        <td><input style="width:5em" class="form-control" type="text" style="padding 0.5em 0;" id="x_days" /></td></td>
-                        <td style="padding-left:.5em;padding-right:.5em">
-                          <div class="radio">
-                            <label><input type="radio" id="date_range" name="time_select"> Date Range: </label>
-                          </div>
-                        </td>
-                        <td>
-                            <input class="form-control" style="padding 0.5em 0;" id="Start-date-picker" type="text" placeholder="YYYY-MM-DD" />
-                        </td>
-                        <td> to </td>
-                        <td>
-                            <input class="form-control" style="padding 0.5em 0;" id="End-date-picker" type="text" placeholder="YYYY-MM-DD" />
-                        </td>
-                    </tr>
-                  </table>
-                </div>
-            </div>
-        </div>
-        <div class="row">
-            <div class="col-sm-4">
-                <h4>Interval</h4>
-            </div>
-            <div id="interval_err" class="col-xs-8 text-right err_msg" style="margin-top:10px;display: none;">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; Too many data points requested. Use a larger interval.
-                </span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-            <div class="col-xs-12">
-                <div class="form-group">
-                    <select class="form-control" id="interval">
-                        <option selected value="1m">1 minute</option>
-                        <option value="5m"> 5 minutes</option>
-                        <option value="30m"> 30 minutes</option>
-                        <option value="1h"> 1 hour</option>
-                        <option value="3h"> 3 hours</option>
-                        <option value="6h"> 6 hours</option>
-                        <option value="12h"> 12 hours</option>
-                        <option value="1d"> 1 day</option>
-                    </select>
-                </div>
-            </div>
-        </div>
-        </div>
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Instruments</h4>
-            </div>
-            <div id="instruments_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display: none;">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No instruments selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 2em;">
-              <p>Shift-click to select a range of values</p>
-                <form id="instruments">
-                </form>
-        </div>
-    </div>
-    </div>
-    <div class="row">
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Datastreams</h4>
-            </div>
-            <div id="streams_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display: none;">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No streams selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-          <div class="col-xs-12">
-              <p>Select an instrument to select all of its datastreams</p>
-              <p>Shift-click to select a range of values</p>
-          </div>
-          <div class="col-xs-12">
-              <select class="form-control" multiple id="streams" style="height:12em;width:100%">
-                  <!--<option>s added by streamdownload.js -->     
-              </select>
-          </div>
-          <div class="col-xs-4">
-              <select class="form-control" multiple id="multi_streams" style="height:12em;width:100%">
-                  <!--<option>s added by streamdownload.js -->     
-              </select>
-          </div>
-        </div>
-    </div>
-    </div>
-    <div class="col-sm-12">
-        <div class="row">
-            <div class="col-xs-6">
-                <h4>Submit Order</h4>
-            </div>
-            <div id="submit_err" class="col-xs-6 text-right err_msg" style="margin-top:10px;display: none;">
-                <span class="alert alert-danger" style="padding:0 1em">&#9888; No format selected</span>
-            </div>
-        </div>
-        <div class="row" style="padding: 0 1em;">
-            <div class="col-xs-6 col-sm-3 form-group">
-                <label>Format</label>
-                <select class="form-control" id="format">
-                    <option> CSV </option>
-                    <option> JSON </option>
-                    <option> XML </option>
-                </select>
-            </div>
-            <div class="col-xs-6 col-sm-3 form-group">
-                <label>Order</label>
-                <select class="form-control" id="order">
-                    <option value="row" selected>Rows</option>
-                    <option value="column">Columns</option>
-                </select>
-            </div>
-            <div class="col-xs-6 col-sm-3 form-group">
-                <label>Timestamps</label>
-                <select class="form-control" id="epoch">
-                    <option value="" selected>ISO</option>
-                    <option value="h">Hours since epoch</option>
-                    <option value="m">Minutes since epoch</option>
-                    <option value="s">Seconds since epoch</option>
-                    <option value="ms">Milliseconds since epoch</option>
-                    <option value="u">Microseconds since epoch</option>
-                    <option value="n">Nanoseconds since epoch</option>
-                </select>
-            </div>
-            <div class="col-xs-6 col-sm-3 form-group">
-                <label>Separator</label>
-                <input class="form-control" id="sep" type="text" placeholder="," />
-            </div>
-            <div class="col-xs-12 form-group">
-                <button class="btn" id="submit">Submit</button>
-                <!--TODO: Fix preview implementation-->
-                <button class="btn" id="preview-btn">Show Preview</button>
-            </div>
-        </div>
-    </div>
-    <div class="col-xs-12">
-        <div class="row" style="padding-left: 1em;"><h4>Preview</h4></div>
-        <div class="row" id="no_preview" style="padding: 0 2em;">
-            <p>Click "Show Preview" above to generate a meteorogram of your selected streams</p>
-        </div>
-        <div class="row" id="preview" style="hyphens:auto;padding: 0 1em;">
-            <div id="tower-plot-div"></div>
-            <div id="buoy-plot-div"></div>
-        </div>
-    </div>
-    </div>
-            
-    <!--<script type="text/javascript" src="{filename}/js/meteorogram/tower/main.js"></script>-->
-    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-timepicker-addon/1.6.3/jquery-ui-timepicker-addon.min.js"></script>
-    <script type="text/javascript" src="/js/data_api_info.js"></script>
-    <script type="text/javascript" src="/js/underscore-min.js"></script>
-    <script type="text/javascript" src="/js/moment.min.js"></script>
-    <script type="text/javascript" src="/js/meteorogram/meteorogram.js"></script>
-    <script type="text/javascript" src="/js/meteorogram/site_configs.js"></script>
-    <script type="text/javascript" src="/js/quicklooks.js"></script>
-    <script type="text/javascript" src="/js/quicklooks-util.js"></script>
-    <script type="text/javascript" src="/js/form_util.js"></script>
-    <script type="text/javascript" src="/js/streamdownload.js"></script>
-  </div>
-  </div>
-</div>
-
-
-
-    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/tags.html b/htdocs/tags.html
deleted file mode 100644
index ea4f26d4bc34af664327a70c61c1c5ea9c6b88fc..0000000000000000000000000000000000000000
--- a/htdocs/tags.html
+++ /dev/null
@@ -1,222 +0,0 @@
-<!doctype html>
-<html>
-<head>
-    <meta charset="utf-8">
-    <!--Page title-->
-    <title>RAIN | SSEC @ UW-Madison - Tags - RAIN | SSEC @ UW-Madison</title>
-    <!--Javascript includes -->
-
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1">    
-
-    <title> - RAIN | SSEC @ UW-Madison</title>
-
-    <!-- Favicon -->
-    <link rel="shortcut icon" href="http://www.ssec.wisc.edu/favicon.ico" type="image/x-icon">
-    
-     <!-- Bootstrap Core CSS -->
-    <link rel="stylesheet"
-          href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
-          integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
-          crossorigin="anonymous">
-
-    <!-- Custom CSS -->
-    <link href="/theme/css/stylish-portfolio.css" rel="stylesheet">
-
-    <!-- Custom Fonts -->
-    <link href="/theme/css/font-awesome.min.css" rel="stylesheet" type="text/css">
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
-
-    <!-- jQuery -->
-    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
-    <!-- Bootstrap Core JavaScript -->
-    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
-            integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
-            crossorigin="anonymous"></script>
-
-    <!-- Custom Theme JavaScript -->
-    <script>
-    // Closes the sidebar menu
-    $("#menu-close").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Opens the sidebar menu
-    $("#menu-toggle").click(function(e) {
-        e.preventDefault();
-        $("#sidebar-wrapper").toggleClass("active");
-    });
-    // Scrolls to the selected menu item on the page
-    $(function() {
-        $('a[href*=\\#]:not([href=\\#],[data-toggle],[data-target],[data-slide])').click(function() {
-            if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') || location.hostname == this.hostname) {
-                var target = $(this.hash);
-                target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
-                if (target.length) {
-                    $('html,body').animate({
-                        scrollTop: target.offset().top
-                    }, 1000);
-                    return false;
-                }
-            }
-        });
-    });
-    //#to-top button appears after scrolling
-    var fixed = false;
-    $(document).scroll(function() {
-        if ($(this).scrollTop() > 250) {
-            if (!fixed) {
-                fixed = true;
-                // $('#to-top').css({position:'fixed', display:'block'});
-                $('#to-top').show("slow", function() {
-                    $('#to-top').css({
-                        position: 'fixed',
-                        display: 'block'
-                    });
-                });
-            }
-        } else {
-            if (fixed) {
-                fixed = false;
-                $('#to-top').hide("slow", function() {
-                    $('#to-top').css({
-                        display: 'none'
-                    });
-                });
-            }
-        }
-    });
-    // Disable Google Maps scrolling
-    // See http://stackoverflow.com/a/25904582/1607849
-    // Disable scroll zooming and bind back the click event
-    var onMapMouseleaveHandler = function(event) {
-        var that = $(this);
-        that.on('click', onMapClickHandler);
-        that.off('mouseleave', onMapMouseleaveHandler);
-        that.find('iframe').css("pointer-events", "none");
-    }
-    var onMapClickHandler = function(event) {
-            var that = $(this);
-            // Disable the click handler until the user leaves the map area
-            that.off('click', onMapClickHandler);
-            // Enable scrolling zoom
-            that.find('iframe').css("pointer-events", "auto");
-            // Handle the mouse leave event
-            that.on('mouseleave', onMapMouseleaveHandler);
-        }
-        // Enable map zooming with mouse scroll when the user clicks the map
-    $('.map').on('click', onMapClickHandler);
-    </script>
-
-    <!-- Custom Fonts -->
-    <!--link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"-->
-    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">    
-    <!-- Populate javascript environment variables from conf-->
-    <script>
-         var QUICKLOOKS_FORMAT = 'new';
-         var METOBS_API_URL = 'http://metobs.ssec.wisc.edu';
-    </script>
-    <!--Page Header-->
-
-</head>
-
-<body>
-    <!--Navbar -->
-
-    <nav class="navbar navbar-default navbar-fixed-top">
-      <div class="container">
-        <div class="navbar-header">
-              <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
-                <span class="sr-only">Toggle navigation</span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-                <span class="icon-bar"></span>
-              </button>
-              <a class="navbar-brand" href="http://ssec.wisc.edu/">
-                  <img alt="Brand" height="25px" src="/theme/images/logo-ssec.png">
-              </a>
-            </div>
-            <!-- Collect the nav links, forms, and other content for toggling -->
-                <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
-                  <ul class="nav navbar-nav">
-                    <li class="active"><a href="/">RAIN <span class="sr-only">(current)</span></a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Instruments <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower">AOSS Tower</a></li>
-                        <li><a href="/aoss/cameras">AOSS Cameras</a></li>
-                        <li><a href="/aoss/ceil">AOSS Ceilometer</a></li>
-                        <li><a href="/aoss/gps">AOSS GPS</a></li>
-                        <li><a href="/aoss/lidar">AOSS LIDAR/HSRL</a></li>
-                        <li><a href="/aoss/doppler">AOSS Doppler LIDAR</a></li>
-                        <li><a href="">AOSS AERI</a></li>
-                        <li role="separator" class="divider"></li>
-                        <li><a href="/mendota/buoy/">Lake Mendota Buoy</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/quicklooks">Quicklook Browser</a></li>
-                    <li class="dropdown">
-                      <a href="" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Data Download <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/datadownload">File Download</a></li>
-                        <li><a href="/streamdownload">Datastream Download</a></li>
-                        <li><a href="http://metobs-test.ssec.wisc.edu/api/">Data API</a></li>
-                      </ul>
-                    </li>
-                    <li class="dropdown">
-                      <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Realtime Data <span class="caret"></span></a>
-                      <ul class="dropdown-menu">
-                        <li><a href="/aoss/tower/meteorogram">AOSS Tower Meteorogram</a></li>
-                        <li><a href="/mendota/buoy/meteorogram">Mendota Buoy Meteorogram</a></li>
-                        <li><a href="#resources">Realtime API</a></li>
-                      </ul>
-                    </li>
-                    <li><a href="/#disclaimer">Disclaimer</a></li>
-                    <li><a href="/#attribution">Attribution</a></li>
-                    <li><a href="#contact">Contact Us</a></li>
-                  </ul>
-                  <!-- <ol class="breadcrumb">
-                      <li><a href="http://ssec.wisc.edu/">SSEC</a></li>
-                      <li class="active">RAIN</li>
-                    </ol> -->
-                </div>
-      </div>
-    </nav>    
-    <!--Page Content-->    
-    <h1>Tags for RAIN | SSEC @ UW-Madison</h1>    <!-- Footer -->
-    <section id="contact">
-    <footer>
-        <div class="container">
-            <div class="row">
-                <div class="col-lg-10 col-lg-offset-1 text-center">
-                    <h4><strong>RAIN | SSEC @ UW-Madison</strong>
-                    </h4>
-                    <p>1225 W. Dayton St
-                        <br>Madison, WI 53706</p>
-                    <ul class="list-unstyled">
-                        <li><i class="fa fa-phone fa-fw"></i> (608) 263-6750</li>
-                        <li><i class="fa fa-envelope-o fa-fw"></i> <a href="http://www.ssec.wisc.edu/contact-form/index.php?name=RIG">Contact Webmaster</a>
-                        </li>
-                    </ul>
-                    <br>
-                    <ul class="list-inline">
-                        <li>
-                            <a href="https://www.facebook.com/uwssec/"><i class="fa fa-facebook fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://twitter.com/UWSSEC"><i class="fa fa-twitter fa-fw fa-3x"></i></a>
-                        </li>
-                        <li>
-                            <a href="https://www.youtube.com/uwssec"><i class="fa fa-youtube fa-fw fa-3x"></i></a>
-                        </li>
-                    </ul>
-                    <hr class="small">
-                    <p class="text-muted">Copyright &copy; 2016 Space Science & Engineering Center<br>University of Wisconsin - Madison</p>
-                </div>
-            </div>
-        </div>
-        <a id="to-top" href="#top" class="btn btn-dark btn-lg"><i class="fa fa-chevron-up fa-fw fa-1x"></i></a>
-    </footer>
-    </section> 
-</body>
-</html>
\ No newline at end of file
diff --git a/htdocs/theme/css/font-awesome.css b/htdocs/theme/css/font-awesome.css
deleted file mode 100755
index 2dcdc220722c85a5db777797657b94c50d98aff7..0000000000000000000000000000000000000000
--- a/htdocs/theme/css/font-awesome.css
+++ /dev/null
@@ -1,1801 +0,0 @@
-/*!
- *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */
-/* FONT PATH
- * -------------------------- */
-@font-face {
-  font-family: 'FontAwesome';
-  src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
-  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
-  font-weight: normal;
-  font-style: normal;
-}
-.fa {
-  display: inline-block;
-  font: normal normal normal 14px/1 FontAwesome;
-  font-size: inherit;
-  text-rendering: auto;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  transform: translate(0, 0);
-}
-/* makes the font 33% larger relative to the icon container */
-.fa-lg {
-  font-size: 1.33333333em;
-  line-height: 0.75em;
-  vertical-align: -15%;
-}
-.fa-2x {
-  font-size: 2em;
-}
-.fa-3x {
-  font-size: 3em;
-}
-.fa-4x {
-  font-size: 4em;
-}
-.fa-5x {
-  font-size: 5em;
-}
-.fa-fw {
-  width: 1.28571429em;
-  text-align: center;
-}
-.fa-ul {
-  padding-left: 0;
-  margin-left: 2.14285714em;
-  list-style-type: none;
-}
-.fa-ul > li {
-  position: relative;
-}
-.fa-li {
-  position: absolute;
-  left: -2.14285714em;
-  width: 2.14285714em;
-  top: 0.14285714em;
-  text-align: center;
-}
-.fa-li.fa-lg {
-  left: -1.85714286em;
-}
-.fa-border {
-  padding: .2em .25em .15em;
-  border: solid 0.08em #eeeeee;
-  border-radius: .1em;
-}
-.pull-right {
-  float: right;
-}
-.pull-left {
-  float: left;
-}
-.fa.pull-left {
-  margin-right: .3em;
-}
-.fa.pull-right {
-  margin-left: .3em;
-}
-.fa-spin {
-  -webkit-animation: fa-spin 2s infinite linear;
-  animation: fa-spin 2s infinite linear;
-}
-.fa-pulse {
-  -webkit-animation: fa-spin 1s infinite steps(8);
-  animation: fa-spin 1s infinite steps(8);
-}
-@-webkit-keyframes fa-spin {
-  0% {
-    -webkit-transform: rotate(0deg);
-    transform: rotate(0deg);
-  }
-  100% {
-    -webkit-transform: rotate(359deg);
-    transform: rotate(359deg);
-  }
-}
-@keyframes fa-spin {
-  0% {
-    -webkit-transform: rotate(0deg);
-    transform: rotate(0deg);
-  }
-  100% {
-    -webkit-transform: rotate(359deg);
-    transform: rotate(359deg);
-  }
-}
-.fa-rotate-90 {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-  -webkit-transform: rotate(90deg);
-  -ms-transform: rotate(90deg);
-  transform: rotate(90deg);
-}
-.fa-rotate-180 {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-  -webkit-transform: rotate(180deg);
-  -ms-transform: rotate(180deg);
-  transform: rotate(180deg);
-}
-.fa-rotate-270 {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-  -webkit-transform: rotate(270deg);
-  -ms-transform: rotate(270deg);
-  transform: rotate(270deg);
-}
-.fa-flip-horizontal {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-  -webkit-transform: scale(-1, 1);
-  -ms-transform: scale(-1, 1);
-  transform: scale(-1, 1);
-}
-.fa-flip-vertical {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-  -webkit-transform: scale(1, -1);
-  -ms-transform: scale(1, -1);
-  transform: scale(1, -1);
-}
-:root .fa-rotate-90,
-:root .fa-rotate-180,
-:root .fa-rotate-270,
-:root .fa-flip-horizontal,
-:root .fa-flip-vertical {
-  filter: none;
-}
-.fa-stack {
-  position: relative;
-  display: inline-block;
-  width: 2em;
-  height: 2em;
-  line-height: 2em;
-  vertical-align: middle;
-}
-.fa-stack-1x,
-.fa-stack-2x {
-  position: absolute;
-  left: 0;
-  width: 100%;
-  text-align: center;
-}
-.fa-stack-1x {
-  line-height: inherit;
-}
-.fa-stack-2x {
-  font-size: 2em;
-}
-.fa-inverse {
-  color: #ffffff;
-}
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
-   readers do not read off random characters that represent icons */
-.fa-glass:before {
-  content: "\f000";
-}
-.fa-music:before {
-  content: "\f001";
-}
-.fa-search:before {
-  content: "\f002";
-}
-.fa-envelope-o:before {
-  content: "\f003";
-}
-.fa-heart:before {
-  content: "\f004";
-}
-.fa-star:before {
-  content: "\f005";
-}
-.fa-star-o:before {
-  content: "\f006";
-}
-.fa-user:before {
-  content: "\f007";
-}
-.fa-film:before {
-  content: "\f008";
-}
-.fa-th-large:before {
-  content: "\f009";
-}
-.fa-th:before {
-  content: "\f00a";
-}
-.fa-th-list:before {
-  content: "\f00b";
-}
-.fa-check:before {
-  content: "\f00c";
-}
-.fa-remove:before,
-.fa-close:before,
-.fa-times:before {
-  content: "\f00d";
-}
-.fa-search-plus:before {
-  content: "\f00e";
-}
-.fa-search-minus:before {
-  content: "\f010";
-}
-.fa-power-off:before {
-  content: "\f011";
-}
-.fa-signal:before {
-  content: "\f012";
-}
-.fa-gear:before,
-.fa-cog:before {
-  content: "\f013";
-}
-.fa-trash-o:before {
-  content: "\f014";
-}
-.fa-home:before {
-  content: "\f015";
-}
-.fa-file-o:before {
-  content: "\f016";
-}
-.fa-clock-o:before {
-  content: "\f017";
-}
-.fa-road:before {
-  content: "\f018";
-}
-.fa-download:before {
-  content: "\f019";
-}
-.fa-arrow-circle-o-down:before {
-  content: "\f01a";
-}
-.fa-arrow-circle-o-up:before {
-  content: "\f01b";
-}
-.fa-inbox:before {
-  content: "\f01c";
-}
-.fa-play-circle-o:before {
-  content: "\f01d";
-}
-.fa-rotate-right:before,
-.fa-repeat:before {
-  content: "\f01e";
-}
-.fa-refresh:before {
-  content: "\f021";
-}
-.fa-list-alt:before {
-  content: "\f022";
-}
-.fa-lock:before {
-  content: "\f023";
-}
-.fa-flag:before {
-  content: "\f024";
-}
-.fa-headphones:before {
-  content: "\f025";
-}
-.fa-volume-off:before {
-  content: "\f026";
-}
-.fa-volume-down:before {
-  content: "\f027";
-}
-.fa-volume-up:before {
-  content: "\f028";
-}
-.fa-qrcode:before {
-  content: "\f029";
-}
-.fa-barcode:before {
-  content: "\f02a";
-}
-.fa-tag:before {
-  content: "\f02b";
-}
-.fa-tags:before {
-  content: "\f02c";
-}
-.fa-book:before {
-  content: "\f02d";
-}
-.fa-bookmark:before {
-  content: "\f02e";
-}
-.fa-print:before {
-  content: "\f02f";
-}
-.fa-camera:before {
-  content: "\f030";
-}
-.fa-font:before {
-  content: "\f031";
-}
-.fa-bold:before {
-  content: "\f032";
-}
-.fa-italic:before {
-  content: "\f033";
-}
-.fa-text-height:before {
-  content: "\f034";
-}
-.fa-text-width:before {
-  content: "\f035";
-}
-.fa-align-left:before {
-  content: "\f036";
-}
-.fa-align-center:before {
-  content: "\f037";
-}
-.fa-align-right:before {
-  content: "\f038";
-}
-.fa-align-justify:before {
-  content: "\f039";
-}
-.fa-list:before {
-  content: "\f03a";
-}
-.fa-dedent:before,
-.fa-outdent:before {
-  content: "\f03b";
-}
-.fa-indent:before {
-  content: "\f03c";
-}
-.fa-video-camera:before {
-  content: "\f03d";
-}
-.fa-photo:before,
-.fa-image:before,
-.fa-picture-o:before {
-  content: "\f03e";
-}
-.fa-pencil:before {
-  content: "\f040";
-}
-.fa-map-marker:before {
-  content: "\f041";
-}
-.fa-adjust:before {
-  content: "\f042";
-}
-.fa-tint:before {
-  content: "\f043";
-}
-.fa-edit:before,
-.fa-pencil-square-o:before {
-  content: "\f044";
-}
-.fa-share-square-o:before {
-  content: "\f045";
-}
-.fa-check-square-o:before {
-  content: "\f046";
-}
-.fa-arrows:before {
-  content: "\f047";
-}
-.fa-step-backward:before {
-  content: "\f048";
-}
-.fa-fast-backward:before {
-  content: "\f049";
-}
-.fa-backward:before {
-  content: "\f04a";
-}
-.fa-play:before {
-  content: "\f04b";
-}
-.fa-pause:before {
-  content: "\f04c";
-}
-.fa-stop:before {
-  content: "\f04d";
-}
-.fa-forward:before {
-  content: "\f04e";
-}
-.fa-fast-forward:before {
-  content: "\f050";
-}
-.fa-step-forward:before {
-  content: "\f051";
-}
-.fa-eject:before {
-  content: "\f052";
-}
-.fa-chevron-left:before {
-  content: "\f053";
-}
-.fa-chevron-right:before {
-  content: "\f054";
-}
-.fa-plus-circle:before {
-  content: "\f055";
-}
-.fa-minus-circle:before {
-  content: "\f056";
-}
-.fa-times-circle:before {
-  content: "\f057";
-}
-.fa-check-circle:before {
-  content: "\f058";
-}
-.fa-question-circle:before {
-  content: "\f059";
-}
-.fa-info-circle:before {
-  content: "\f05a";
-}
-.fa-crosshairs:before {
-  content: "\f05b";
-}
-.fa-times-circle-o:before {
-  content: "\f05c";
-}
-.fa-check-circle-o:before {
-  content: "\f05d";
-}
-.fa-ban:before {
-  content: "\f05e";
-}
-.fa-arrow-left:before {
-  content: "\f060";
-}
-.fa-arrow-right:before {
-  content: "\f061";
-}
-.fa-arrow-up:before {
-  content: "\f062";
-}
-.fa-arrow-down:before {
-  content: "\f063";
-}
-.fa-mail-forward:before,
-.fa-share:before {
-  content: "\f064";
-}
-.fa-expand:before {
-  content: "\f065";
-}
-.fa-compress:before {
-  content: "\f066";
-}
-.fa-plus:before {
-  content: "\f067";
-}
-.fa-minus:before {
-  content: "\f068";
-}
-.fa-asterisk:before {
-  content: "\f069";
-}
-.fa-exclamation-circle:before {
-  content: "\f06a";
-}
-.fa-gift:before {
-  content: "\f06b";
-}
-.fa-leaf:before {
-  content: "\f06c";
-}
-.fa-fire:before {
-  content: "\f06d";
-}
-.fa-eye:before {
-  content: "\f06e";
-}
-.fa-eye-slash:before {
-  content: "\f070";
-}
-.fa-warning:before,
-.fa-exclamation-triangle:before {
-  content: "\f071";
-}
-.fa-plane:before {
-  content: "\f072";
-}
-.fa-calendar:before {
-  content: "\f073";
-}
-.fa-random:before {
-  content: "\f074";
-}
-.fa-comment:before {
-  content: "\f075";
-}
-.fa-magnet:before {
-  content: "\f076";
-}
-.fa-chevron-up:before {
-  content: "\f077";
-}
-.fa-chevron-down:before {
-  content: "\f078";
-}
-.fa-retweet:before {
-  content: "\f079";
-}
-.fa-shopping-cart:before {
-  content: "\f07a";
-}
-.fa-folder:before {
-  content: "\f07b";
-}
-.fa-folder-open:before {
-  content: "\f07c";
-}
-.fa-arrows-v:before {
-  content: "\f07d";
-}
-.fa-arrows-h:before {
-  content: "\f07e";
-}
-.fa-bar-chart-o:before,
-.fa-bar-chart:before {
-  content: "\f080";
-}
-.fa-twitter-square:before {
-  content: "\f081";
-}
-.fa-facebook-square:before {
-  content: "\f082";
-}
-.fa-camera-retro:before {
-  content: "\f083";
-}
-.fa-key:before {
-  content: "\f084";
-}
-.fa-gears:before,
-.fa-cogs:before {
-  content: "\f085";
-}
-.fa-comments:before {
-  content: "\f086";
-}
-.fa-thumbs-o-up:before {
-  content: "\f087";
-}
-.fa-thumbs-o-down:before {
-  content: "\f088";
-}
-.fa-star-half:before {
-  content: "\f089";
-}
-.fa-heart-o:before {
-  content: "\f08a";
-}
-.fa-sign-out:before {
-  content: "\f08b";
-}
-.fa-linkedin-square:before {
-  content: "\f08c";
-}
-.fa-thumb-tack:before {
-  content: "\f08d";
-}
-.fa-external-link:before {
-  content: "\f08e";
-}
-.fa-sign-in:before {
-  content: "\f090";
-}
-.fa-trophy:before {
-  content: "\f091";
-}
-.fa-github-square:before {
-  content: "\f092";
-}
-.fa-upload:before {
-  content: "\f093";
-}
-.fa-lemon-o:before {
-  content: "\f094";
-}
-.fa-phone:before {
-  content: "\f095";
-}
-.fa-square-o:before {
-  content: "\f096";
-}
-.fa-bookmark-o:before {
-  content: "\f097";
-}
-.fa-phone-square:before {
-  content: "\f098";
-}
-.fa-twitter:before {
-  content: "\f099";
-}
-.fa-facebook-f:before,
-.fa-facebook:before {
-  content: "\f09a";
-}
-.fa-github:before {
-  content: "\f09b";
-}
-.fa-unlock:before {
-  content: "\f09c";
-}
-.fa-credit-card:before {
-  content: "\f09d";
-}
-.fa-rss:before {
-  content: "\f09e";
-}
-.fa-hdd-o:before {
-  content: "\f0a0";
-}
-.fa-bullhorn:before {
-  content: "\f0a1";
-}
-.fa-bell:before {
-  content: "\f0f3";
-}
-.fa-certificate:before {
-  content: "\f0a3";
-}
-.fa-hand-o-right:before {
-  content: "\f0a4";
-}
-.fa-hand-o-left:before {
-  content: "\f0a5";
-}
-.fa-hand-o-up:before {
-  content: "\f0a6";
-}
-.fa-hand-o-down:before {
-  content: "\f0a7";
-}
-.fa-arrow-circle-left:before {
-  content: "\f0a8";
-}
-.fa-arrow-circle-right:before {
-  content: "\f0a9";
-}
-.fa-arrow-circle-up:before {
-  content: "\f0aa";
-}
-.fa-arrow-circle-down:before {
-  content: "\f0ab";
-}
-.fa-globe:before {
-  content: "\f0ac";
-}
-.fa-wrench:before {
-  content: "\f0ad";
-}
-.fa-tasks:before {
-  content: "\f0ae";
-}
-.fa-filter:before {
-  content: "\f0b0";
-}
-.fa-briefcase:before {
-  content: "\f0b1";
-}
-.fa-arrows-alt:before {
-  content: "\f0b2";
-}
-.fa-group:before,
-.fa-users:before {
-  content: "\f0c0";
-}
-.fa-chain:before,
-.fa-link:before {
-  content: "\f0c1";
-}
-.fa-cloud:before {
-  content: "\f0c2";
-}
-.fa-flask:before {
-  content: "\f0c3";
-}
-.fa-cut:before,
-.fa-scissors:before {
-  content: "\f0c4";
-}
-.fa-copy:before,
-.fa-files-o:before {
-  content: "\f0c5";
-}
-.fa-paperclip:before {
-  content: "\f0c6";
-}
-.fa-save:before,
-.fa-floppy-o:before {
-  content: "\f0c7";
-}
-.fa-square:before {
-  content: "\f0c8";
-}
-.fa-navicon:before,
-.fa-reorder:before,
-.fa-bars:before {
-  content: "\f0c9";
-}
-.fa-list-ul:before {
-  content: "\f0ca";
-}
-.fa-list-ol:before {
-  content: "\f0cb";
-}
-.fa-strikethrough:before {
-  content: "\f0cc";
-}
-.fa-underline:before {
-  content: "\f0cd";
-}
-.fa-table:before {
-  content: "\f0ce";
-}
-.fa-magic:before {
-  content: "\f0d0";
-}
-.fa-truck:before {
-  content: "\f0d1";
-}
-.fa-pinterest:before {
-  content: "\f0d2";
-}
-.fa-pinterest-square:before {
-  content: "\f0d3";
-}
-.fa-google-plus-square:before {
-  content: "\f0d4";
-}
-.fa-google-plus:before {
-  content: "\f0d5";
-}
-.fa-money:before {
-  content: "\f0d6";
-}
-.fa-caret-down:before {
-  content: "\f0d7";
-}
-.fa-caret-up:before {
-  content: "\f0d8";
-}
-.fa-caret-left:before {
-  content: "\f0d9";
-}
-.fa-caret-right:before {
-  content: "\f0da";
-}
-.fa-columns:before {
-  content: "\f0db";
-}
-.fa-unsorted:before,
-.fa-sort:before {
-  content: "\f0dc";
-}
-.fa-sort-down:before,
-.fa-sort-desc:before {
-  content: "\f0dd";
-}
-.fa-sort-up:before,
-.fa-sort-asc:before {
-  content: "\f0de";
-}
-.fa-envelope:before {
-  content: "\f0e0";
-}
-.fa-linkedin:before {
-  content: "\f0e1";
-}
-.fa-rotate-left:before,
-.fa-undo:before {
-  content: "\f0e2";
-}
-.fa-legal:before,
-.fa-gavel:before {
-  content: "\f0e3";
-}
-.fa-dashboard:before,
-.fa-tachometer:before {
-  content: "\f0e4";
-}
-.fa-comment-o:before {
-  content: "\f0e5";
-}
-.fa-comments-o:before {
-  content: "\f0e6";
-}
-.fa-flash:before,
-.fa-bolt:before {
-  content: "\f0e7";
-}
-.fa-sitemap:before {
-  content: "\f0e8";
-}
-.fa-umbrella:before {
-  content: "\f0e9";
-}
-.fa-paste:before,
-.fa-clipboard:before {
-  content: "\f0ea";
-}
-.fa-lightbulb-o:before {
-  content: "\f0eb";
-}
-.fa-exchange:before {
-  content: "\f0ec";
-}
-.fa-cloud-download:before {
-  content: "\f0ed";
-}
-.fa-cloud-upload:before {
-  content: "\f0ee";
-}
-.fa-user-md:before {
-  content: "\f0f0";
-}
-.fa-stethoscope:before {
-  content: "\f0f1";
-}
-.fa-suitcase:before {
-  content: "\f0f2";
-}
-.fa-bell-o:before {
-  content: "\f0a2";
-}
-.fa-coffee:before {
-  content: "\f0f4";
-}
-.fa-cutlery:before {
-  content: "\f0f5";
-}
-.fa-file-text-o:before {
-  content: "\f0f6";
-}
-.fa-building-o:before {
-  content: "\f0f7";
-}
-.fa-hospital-o:before {
-  content: "\f0f8";
-}
-.fa-ambulance:before {
-  content: "\f0f9";
-}
-.fa-medkit:before {
-  content: "\f0fa";
-}
-.fa-fighter-jet:before {
-  content: "\f0fb";
-}
-.fa-beer:before {
-  content: "\f0fc";
-}
-.fa-h-square:before {
-  content: "\f0fd";
-}
-.fa-plus-square:before {
-  content: "\f0fe";
-}
-.fa-angle-double-left:before {
-  content: "\f100";
-}
-.fa-angle-double-right:before {
-  content: "\f101";
-}
-.fa-angle-double-up:before {
-  content: "\f102";
-}
-.fa-angle-double-down:before {
-  content: "\f103";
-}
-.fa-angle-left:before {
-  content: "\f104";
-}
-.fa-angle-right:before {
-  content: "\f105";
-}
-.fa-angle-up:before {
-  content: "\f106";
-}
-.fa-angle-down:before {
-  content: "\f107";
-}
-.fa-desktop:before {
-  content: "\f108";
-}
-.fa-laptop:before {
-  content: "\f109";
-}
-.fa-tablet:before {
-  content: "\f10a";
-}
-.fa-mobile-phone:before,
-.fa-mobile:before {
-  content: "\f10b";
-}
-.fa-circle-o:before {
-  content: "\f10c";
-}
-.fa-quote-left:before {
-  content: "\f10d";
-}
-.fa-quote-right:before {
-  content: "\f10e";
-}
-.fa-spinner:before {
-  content: "\f110";
-}
-.fa-circle:before {
-  content: "\f111";
-}
-.fa-mail-reply:before,
-.fa-reply:before {
-  content: "\f112";
-}
-.fa-github-alt:before {
-  content: "\f113";
-}
-.fa-folder-o:before {
-  content: "\f114";
-}
-.fa-folder-open-o:before {
-  content: "\f115";
-}
-.fa-smile-o:before {
-  content: "\f118";
-}
-.fa-frown-o:before {
-  content: "\f119";
-}
-.fa-meh-o:before {
-  content: "\f11a";
-}
-.fa-gamepad:before {
-  content: "\f11b";
-}
-.fa-keyboard-o:before {
-  content: "\f11c";
-}
-.fa-flag-o:before {
-  content: "\f11d";
-}
-.fa-flag-checkered:before {
-  content: "\f11e";
-}
-.fa-terminal:before {
-  content: "\f120";
-}
-.fa-code:before {
-  content: "\f121";
-}
-.fa-mail-reply-all:before,
-.fa-reply-all:before {
-  content: "\f122";
-}
-.fa-star-half-empty:before,
-.fa-star-half-full:before,
-.fa-star-half-o:before {
-  content: "\f123";
-}
-.fa-location-arrow:before {
-  content: "\f124";
-}
-.fa-crop:before {
-  content: "\f125";
-}
-.fa-code-fork:before {
-  content: "\f126";
-}
-.fa-unlink:before,
-.fa-chain-broken:before {
-  content: "\f127";
-}
-.fa-question:before {
-  content: "\f128";
-}
-.fa-info:before {
-  content: "\f129";
-}
-.fa-exclamation:before {
-  content: "\f12a";
-}
-.fa-superscript:before {
-  content: "\f12b";
-}
-.fa-subscript:before {
-  content: "\f12c";
-}
-.fa-eraser:before {
-  content: "\f12d";
-}
-.fa-puzzle-piece:before {
-  content: "\f12e";
-}
-.fa-microphone:before {
-  content: "\f130";
-}
-.fa-microphone-slash:before {
-  content: "\f131";
-}
-.fa-shield:before {
-  content: "\f132";
-}
-.fa-calendar-o:before {
-  content: "\f133";
-}
-.fa-fire-extinguisher:before {
-  content: "\f134";
-}
-.fa-rocket:before {
-  content: "\f135";
-}
-.fa-maxcdn:before {
-  content: "\f136";
-}
-.fa-chevron-circle-left:before {
-  content: "\f137";
-}
-.fa-chevron-circle-right:before {
-  content: "\f138";
-}
-.fa-chevron-circle-up:before {
-  content: "\f139";
-}
-.fa-chevron-circle-down:before {
-  content: "\f13a";
-}
-.fa-html5:before {
-  content: "\f13b";
-}
-.fa-css3:before {
-  content: "\f13c";
-}
-.fa-anchor:before {
-  content: "\f13d";
-}
-.fa-unlock-alt:before {
-  content: "\f13e";
-}
-.fa-bullseye:before {
-  content: "\f140";
-}
-.fa-ellipsis-h:before {
-  content: "\f141";
-}
-.fa-ellipsis-v:before {
-  content: "\f142";
-}
-.fa-rss-square:before {
-  content: "\f143";
-}
-.fa-play-circle:before {
-  content: "\f144";
-}
-.fa-ticket:before {
-  content: "\f145";
-}
-.fa-minus-square:before {
-  content: "\f146";
-}
-.fa-minus-square-o:before {
-  content: "\f147";
-}
-.fa-level-up:before {
-  content: "\f148";
-}
-.fa-level-down:before {
-  content: "\f149";
-}
-.fa-check-square:before {
-  content: "\f14a";
-}
-.fa-pencil-square:before {
-  content: "\f14b";
-}
-.fa-external-link-square:before {
-  content: "\f14c";
-}
-.fa-share-square:before {
-  content: "\f14d";
-}
-.fa-compass:before {
-  content: "\f14e";
-}
-.fa-toggle-down:before,
-.fa-caret-square-o-down:before {
-  content: "\f150";
-}
-.fa-toggle-up:before,
-.fa-caret-square-o-up:before {
-  content: "\f151";
-}
-.fa-toggle-right:before,
-.fa-caret-square-o-right:before {
-  content: "\f152";
-}
-.fa-euro:before,
-.fa-eur:before {
-  content: "\f153";
-}
-.fa-gbp:before {
-  content: "\f154";
-}
-.fa-dollar:before,
-.fa-usd:before {
-  content: "\f155";
-}
-.fa-rupee:before,
-.fa-inr:before {
-  content: "\f156";
-}
-.fa-cny:before,
-.fa-rmb:before,
-.fa-yen:before,
-.fa-jpy:before {
-  content: "\f157";
-}
-.fa-ruble:before,
-.fa-rouble:before,
-.fa-rub:before {
-  content: "\f158";
-}
-.fa-won:before,
-.fa-krw:before {
-  content: "\f159";
-}
-.fa-bitcoin:before,
-.fa-btc:before {
-  content: "\f15a";
-}
-.fa-file:before {
-  content: "\f15b";
-}
-.fa-file-text:before {
-  content: "\f15c";
-}
-.fa-sort-alpha-asc:before {
-  content: "\f15d";
-}
-.fa-sort-alpha-desc:before {
-  content: "\f15e";
-}
-.fa-sort-amount-asc:before {
-  content: "\f160";
-}
-.fa-sort-amount-desc:before {
-  content: "\f161";
-}
-.fa-sort-numeric-asc:before {
-  content: "\f162";
-}
-.fa-sort-numeric-desc:before {
-  content: "\f163";
-}
-.fa-thumbs-up:before {
-  content: "\f164";
-}
-.fa-thumbs-down:before {
-  content: "\f165";
-}
-.fa-youtube-square:before {
-  content: "\f166";
-}
-.fa-youtube:before {
-  content: "\f167";
-}
-.fa-xing:before {
-  content: "\f168";
-}
-.fa-xing-square:before {
-  content: "\f169";
-}
-.fa-youtube-play:before {
-  content: "\f16a";
-}
-.fa-dropbox:before {
-  content: "\f16b";
-}
-.fa-stack-overflow:before {
-  content: "\f16c";
-}
-.fa-instagram:before {
-  content: "\f16d";
-}
-.fa-flickr:before {
-  content: "\f16e";
-}
-.fa-adn:before {
-  content: "\f170";
-}
-.fa-bitbucket:before {
-  content: "\f171";
-}
-.fa-bitbucket-square:before {
-  content: "\f172";
-}
-.fa-tumblr:before {
-  content: "\f173";
-}
-.fa-tumblr-square:before {
-  content: "\f174";
-}
-.fa-long-arrow-down:before {
-  content: "\f175";
-}
-.fa-long-arrow-up:before {
-  content: "\f176";
-}
-.fa-long-arrow-left:before {
-  content: "\f177";
-}
-.fa-long-arrow-right:before {
-  content: "\f178";
-}
-.fa-apple:before {
-  content: "\f179";
-}
-.fa-windows:before {
-  content: "\f17a";
-}
-.fa-android:before {
-  content: "\f17b";
-}
-.fa-linux:before {
-  content: "\f17c";
-}
-.fa-dribbble:before {
-  content: "\f17d";
-}
-.fa-skype:before {
-  content: "\f17e";
-}
-.fa-foursquare:before {
-  content: "\f180";
-}
-.fa-trello:before {
-  content: "\f181";
-}
-.fa-female:before {
-  content: "\f182";
-}
-.fa-male:before {
-  content: "\f183";
-}
-.fa-gittip:before,
-.fa-gratipay:before {
-  content: "\f184";
-}
-.fa-sun-o:before {
-  content: "\f185";
-}
-.fa-moon-o:before {
-  content: "\f186";
-}
-.fa-archive:before {
-  content: "\f187";
-}
-.fa-bug:before {
-  content: "\f188";
-}
-.fa-vk:before {
-  content: "\f189";
-}
-.fa-weibo:before {
-  content: "\f18a";
-}
-.fa-renren:before {
-  content: "\f18b";
-}
-.fa-pagelines:before {
-  content: "\f18c";
-}
-.fa-stack-exchange:before {
-  content: "\f18d";
-}
-.fa-arrow-circle-o-right:before {
-  content: "\f18e";
-}
-.fa-arrow-circle-o-left:before {
-  content: "\f190";
-}
-.fa-toggle-left:before,
-.fa-caret-square-o-left:before {
-  content: "\f191";
-}
-.fa-dot-circle-o:before {
-  content: "\f192";
-}
-.fa-wheelchair:before {
-  content: "\f193";
-}
-.fa-vimeo-square:before {
-  content: "\f194";
-}
-.fa-turkish-lira:before,
-.fa-try:before {
-  content: "\f195";
-}
-.fa-plus-square-o:before {
-  content: "\f196";
-}
-.fa-space-shuttle:before {
-  content: "\f197";
-}
-.fa-slack:before {
-  content: "\f198";
-}
-.fa-envelope-square:before {
-  content: "\f199";
-}
-.fa-wordpress:before {
-  content: "\f19a";
-}
-.fa-openid:before {
-  content: "\f19b";
-}
-.fa-institution:before,
-.fa-bank:before,
-.fa-university:before {
-  content: "\f19c";
-}
-.fa-mortar-board:before,
-.fa-graduation-cap:before {
-  content: "\f19d";
-}
-.fa-yahoo:before {
-  content: "\f19e";
-}
-.fa-google:before {
-  content: "\f1a0";
-}
-.fa-reddit:before {
-  content: "\f1a1";
-}
-.fa-reddit-square:before {
-  content: "\f1a2";
-}
-.fa-stumbleupon-circle:before {
-  content: "\f1a3";
-}
-.fa-stumbleupon:before {
-  content: "\f1a4";
-}
-.fa-delicious:before {
-  content: "\f1a5";
-}
-.fa-digg:before {
-  content: "\f1a6";
-}
-.fa-pied-piper:before {
-  content: "\f1a7";
-}
-.fa-pied-piper-alt:before {
-  content: "\f1a8";
-}
-.fa-drupal:before {
-  content: "\f1a9";
-}
-.fa-joomla:before {
-  content: "\f1aa";
-}
-.fa-language:before {
-  content: "\f1ab";
-}
-.fa-fax:before {
-  content: "\f1ac";
-}
-.fa-building:before {
-  content: "\f1ad";
-}
-.fa-child:before {
-  content: "\f1ae";
-}
-.fa-paw:before {
-  content: "\f1b0";
-}
-.fa-spoon:before {
-  content: "\f1b1";
-}
-.fa-cube:before {
-  content: "\f1b2";
-}
-.fa-cubes:before {
-  content: "\f1b3";
-}
-.fa-behance:before {
-  content: "\f1b4";
-}
-.fa-behance-square:before {
-  content: "\f1b5";
-}
-.fa-steam:before {
-  content: "\f1b6";
-}
-.fa-steam-square:before {
-  content: "\f1b7";
-}
-.fa-recycle:before {
-  content: "\f1b8";
-}
-.fa-automobile:before,
-.fa-car:before {
-  content: "\f1b9";
-}
-.fa-cab:before,
-.fa-taxi:before {
-  content: "\f1ba";
-}
-.fa-tree:before {
-  content: "\f1bb";
-}
-.fa-spotify:before {
-  content: "\f1bc";
-}
-.fa-deviantart:before {
-  content: "\f1bd";
-}
-.fa-soundcloud:before {
-  content: "\f1be";
-}
-.fa-database:before {
-  content: "\f1c0";
-}
-.fa-file-pdf-o:before {
-  content: "\f1c1";
-}
-.fa-file-word-o:before {
-  content: "\f1c2";
-}
-.fa-file-excel-o:before {
-  content: "\f1c3";
-}
-.fa-file-powerpoint-o:before {
-  content: "\f1c4";
-}
-.fa-file-photo-o:before,
-.fa-file-picture-o:before,
-.fa-file-image-o:before {
-  content: "\f1c5";
-}
-.fa-file-zip-o:before,
-.fa-file-archive-o:before {
-  content: "\f1c6";
-}
-.fa-file-sound-o:before,
-.fa-file-audio-o:before {
-  content: "\f1c7";
-}
-.fa-file-movie-o:before,
-.fa-file-video-o:before {
-  content: "\f1c8";
-}
-.fa-file-code-o:before {
-  content: "\f1c9";
-}
-.fa-vine:before {
-  content: "\f1ca";
-}
-.fa-codepen:before {
-  content: "\f1cb";
-}
-.fa-jsfiddle:before {
-  content: "\f1cc";
-}
-.fa-life-bouy:before,
-.fa-life-buoy:before,
-.fa-life-saver:before,
-.fa-support:before,
-.fa-life-ring:before {
-  content: "\f1cd";
-}
-.fa-circle-o-notch:before {
-  content: "\f1ce";
-}
-.fa-ra:before,
-.fa-rebel:before {
-  content: "\f1d0";
-}
-.fa-ge:before,
-.fa-empire:before {
-  content: "\f1d1";
-}
-.fa-git-square:before {
-  content: "\f1d2";
-}
-.fa-git:before {
-  content: "\f1d3";
-}
-.fa-hacker-news:before {
-  content: "\f1d4";
-}
-.fa-tencent-weibo:before {
-  content: "\f1d5";
-}
-.fa-qq:before {
-  content: "\f1d6";
-}
-.fa-wechat:before,
-.fa-weixin:before {
-  content: "\f1d7";
-}
-.fa-send:before,
-.fa-paper-plane:before {
-  content: "\f1d8";
-}
-.fa-send-o:before,
-.fa-paper-plane-o:before {
-  content: "\f1d9";
-}
-.fa-history:before {
-  content: "\f1da";
-}
-.fa-genderless:before,
-.fa-circle-thin:before {
-  content: "\f1db";
-}
-.fa-header:before {
-  content: "\f1dc";
-}
-.fa-paragraph:before {
-  content: "\f1dd";
-}
-.fa-sliders:before {
-  content: "\f1de";
-}
-.fa-share-alt:before {
-  content: "\f1e0";
-}
-.fa-share-alt-square:before {
-  content: "\f1e1";
-}
-.fa-bomb:before {
-  content: "\f1e2";
-}
-.fa-soccer-ball-o:before,
-.fa-futbol-o:before {
-  content: "\f1e3";
-}
-.fa-tty:before {
-  content: "\f1e4";
-}
-.fa-binoculars:before {
-  content: "\f1e5";
-}
-.fa-plug:before {
-  content: "\f1e6";
-}
-.fa-slideshare:before {
-  content: "\f1e7";
-}
-.fa-twitch:before {
-  content: "\f1e8";
-}
-.fa-yelp:before {
-  content: "\f1e9";
-}
-.fa-newspaper-o:before {
-  content: "\f1ea";
-}
-.fa-wifi:before {
-  content: "\f1eb";
-}
-.fa-calculator:before {
-  content: "\f1ec";
-}
-.fa-paypal:before {
-  content: "\f1ed";
-}
-.fa-google-wallet:before {
-  content: "\f1ee";
-}
-.fa-cc-visa:before {
-  content: "\f1f0";
-}
-.fa-cc-mastercard:before {
-  content: "\f1f1";
-}
-.fa-cc-discover:before {
-  content: "\f1f2";
-}
-.fa-cc-amex:before {
-  content: "\f1f3";
-}
-.fa-cc-paypal:before {
-  content: "\f1f4";
-}
-.fa-cc-stripe:before {
-  content: "\f1f5";
-}
-.fa-bell-slash:before {
-  content: "\f1f6";
-}
-.fa-bell-slash-o:before {
-  content: "\f1f7";
-}
-.fa-trash:before {
-  content: "\f1f8";
-}
-.fa-copyright:before {
-  content: "\f1f9";
-}
-.fa-at:before {
-  content: "\f1fa";
-}
-.fa-eyedropper:before {
-  content: "\f1fb";
-}
-.fa-paint-brush:before {
-  content: "\f1fc";
-}
-.fa-birthday-cake:before {
-  content: "\f1fd";
-}
-.fa-area-chart:before {
-  content: "\f1fe";
-}
-.fa-pie-chart:before {
-  content: "\f200";
-}
-.fa-line-chart:before {
-  content: "\f201";
-}
-.fa-lastfm:before {
-  content: "\f202";
-}
-.fa-lastfm-square:before {
-  content: "\f203";
-}
-.fa-toggle-off:before {
-  content: "\f204";
-}
-.fa-toggle-on:before {
-  content: "\f205";
-}
-.fa-bicycle:before {
-  content: "\f206";
-}
-.fa-bus:before {
-  content: "\f207";
-}
-.fa-ioxhost:before {
-  content: "\f208";
-}
-.fa-angellist:before {
-  content: "\f209";
-}
-.fa-cc:before {
-  content: "\f20a";
-}
-.fa-shekel:before,
-.fa-sheqel:before,
-.fa-ils:before {
-  content: "\f20b";
-}
-.fa-meanpath:before {
-  content: "\f20c";
-}
-.fa-buysellads:before {
-  content: "\f20d";
-}
-.fa-connectdevelop:before {
-  content: "\f20e";
-}
-.fa-dashcube:before {
-  content: "\f210";
-}
-.fa-forumbee:before {
-  content: "\f211";
-}
-.fa-leanpub:before {
-  content: "\f212";
-}
-.fa-sellsy:before {
-  content: "\f213";
-}
-.fa-shirtsinbulk:before {
-  content: "\f214";
-}
-.fa-simplybuilt:before {
-  content: "\f215";
-}
-.fa-skyatlas:before {
-  content: "\f216";
-}
-.fa-cart-plus:before {
-  content: "\f217";
-}
-.fa-cart-arrow-down:before {
-  content: "\f218";
-}
-.fa-diamond:before {
-  content: "\f219";
-}
-.fa-ship:before {
-  content: "\f21a";
-}
-.fa-user-secret:before {
-  content: "\f21b";
-}
-.fa-motorcycle:before {
-  content: "\f21c";
-}
-.fa-street-view:before {
-  content: "\f21d";
-}
-.fa-heartbeat:before {
-  content: "\f21e";
-}
-.fa-venus:before {
-  content: "\f221";
-}
-.fa-mars:before {
-  content: "\f222";
-}
-.fa-mercury:before {
-  content: "\f223";
-}
-.fa-transgender:before {
-  content: "\f224";
-}
-.fa-transgender-alt:before {
-  content: "\f225";
-}
-.fa-venus-double:before {
-  content: "\f226";
-}
-.fa-mars-double:before {
-  content: "\f227";
-}
-.fa-venus-mars:before {
-  content: "\f228";
-}
-.fa-mars-stroke:before {
-  content: "\f229";
-}
-.fa-mars-stroke-v:before {
-  content: "\f22a";
-}
-.fa-mars-stroke-h:before {
-  content: "\f22b";
-}
-.fa-neuter:before {
-  content: "\f22c";
-}
-.fa-facebook-official:before {
-  content: "\f230";
-}
-.fa-pinterest-p:before {
-  content: "\f231";
-}
-.fa-whatsapp:before {
-  content: "\f232";
-}
-.fa-server:before {
-  content: "\f233";
-}
-.fa-user-plus:before {
-  content: "\f234";
-}
-.fa-user-times:before {
-  content: "\f235";
-}
-.fa-hotel:before,
-.fa-bed:before {
-  content: "\f236";
-}
-.fa-viacoin:before {
-  content: "\f237";
-}
-.fa-train:before {
-  content: "\f238";
-}
-.fa-subway:before {
-  content: "\f239";
-}
-.fa-medium:before {
-  content: "\f23a";
-}
diff --git a/htdocs/theme/css/font-awesome.min.css b/htdocs/theme/css/font-awesome.min.css
deleted file mode 100755
index 912e56c797ed52618fa7ad40049de27441f33312..0000000000000000000000000000000000000000
--- a/htdocs/theme/css/font-awesome.min.css
+++ /dev/null
@@ -1,4 +0,0 @@
-/*!
- *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}  .fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}  .fa-2x{font-size:2em}  .fa-3x{font-size:3em}  .fa-4x{font-size:4em}  .fa-5x{font-size:5em}  .fa-fw{width:1.28571429em;text-align:center}  .fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}  .fa-ul>li{position:relative}  .fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}  .fa-li.fa-lg{left:-1.85714286em}  .fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}  .pull-right{float:right}  .pull-left{float:left}  .fa.pull-left{margin-right:.3em}  .fa.pull-right{margin-left:.3em}  .fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}  .fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}  @-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}  @keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}  .fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}  .fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}  .fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}  .fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}  .fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}  :root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}  .fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}  .fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}  .fa-stack-1x{line-height:inherit}  .fa-stack-2x{font-size:2em}  .fa-inverse{color:#fff}  .fa-glass:before{content:"\f000"}  .fa-music:before{content:"\f001"}  .fa-search:before{content:"\f002"}  .fa-envelope-o:before{content:"\f003"}  .fa-heart:before{content:"\f004"}  .fa-star:before{content:"\f005"}  .fa-star-o:before{content:"\f006"}  .fa-user:before{content:"\f007"}  .fa-film:before{content:"\f008"}  .fa-th-large:before{content:"\f009"}  .fa-th:before{content:"\f00a"}  .fa-th-list:before{content:"\f00b"}  .fa-check:before{content:"\f00c"}  .fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}  .fa-search-plus:before{content:"\f00e"}  .fa-search-minus:before{content:"\f010"}  .fa-power-off:before{content:"\f011"}  .fa-signal:before{content:"\f012"}  .fa-gear:before,.fa-cog:before{content:"\f013"}  .fa-trash-o:before{content:"\f014"}  .fa-home:before{content:"\f015"}  .fa-file-o:before{content:"\f016"}  .fa-clock-o:before{content:"\f017"}  .fa-road:before{content:"\f018"}  .fa-download:before{content:"\f019"}  .fa-arrow-circle-o-down:before{content:"\f01a"}  .fa-arrow-circle-o-up:before{content:"\f01b"}  .fa-inbox:before{content:"\f01c"}  .fa-play-circle-o:before{content:"\f01d"}  .fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}  .fa-refresh:before{content:"\f021"}  .fa-list-alt:before{content:"\f022"}  .fa-lock:before{content:"\f023"}  .fa-flag:before{content:"\f024"}  .fa-headphones:before{content:"\f025"}  .fa-volume-off:before{content:"\f026"}  .fa-volume-down:before{content:"\f027"}  .fa-volume-up:before{content:"\f028"}  .fa-qrcode:before{content:"\f029"}  .fa-barcode:before{content:"\f02a"}  .fa-tag:before{content:"\f02b"}  .fa-tags:before{content:"\f02c"}  .fa-book:before{content:"\f02d"}  .fa-bookmark:before{content:"\f02e"}  .fa-print:before{content:"\f02f"}  .fa-camera:before{content:"\f030"}  .fa-font:before{content:"\f031"}  .fa-bold:before{content:"\f032"}  .fa-italic:before{content:"\f033"}  .fa-text-height:before{content:"\f034"}  .fa-text-width:before{content:"\f035"}  .fa-align-left:before{content:"\f036"}  .fa-align-center:before{content:"\f037"}  .fa-align-right:before{content:"\f038"}  .fa-align-justify:before{content:"\f039"}  .fa-list:before{content:"\f03a"}  .fa-dedent:before,.fa-outdent:before{content:"\f03b"}  .fa-indent:before{content:"\f03c"}  .fa-video-camera:before{content:"\f03d"}  .fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}  .fa-pencil:before{content:"\f040"}  .fa-map-marker:before{content:"\f041"}  .fa-adjust:before{content:"\f042"}  .fa-tint:before{content:"\f043"}  .fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}  .fa-share-square-o:before{content:"\f045"}  .fa-check-square-o:before{content:"\f046"}  .fa-arrows:before{content:"\f047"}  .fa-step-backward:before{content:"\f048"}  .fa-fast-backward:before{content:"\f049"}  .fa-backward:before{content:"\f04a"}  .fa-play:before{content:"\f04b"}  .fa-pause:before{content:"\f04c"}  .fa-stop:before{content:"\f04d"}  .fa-forward:before{content:"\f04e"}  .fa-fast-forward:before{content:"\f050"}  .fa-step-forward:before{content:"\f051"}  .fa-eject:before{content:"\f052"}  .fa-chevron-left:before{content:"\f053"}  .fa-chevron-right:before{content:"\f054"}  .fa-plus-circle:before{content:"\f055"}  .fa-minus-circle:before{content:"\f056"}  .fa-times-circle:before{content:"\f057"}  .fa-check-circle:before{content:"\f058"}  .fa-question-circle:before{content:"\f059"}  .fa-info-circle:before{content:"\f05a"}  .fa-crosshairs:before{content:"\f05b"}  .fa-times-circle-o:before{content:"\f05c"}  .fa-check-circle-o:before{content:"\f05d"}  .fa-ban:before{content:"\f05e"}  .fa-arrow-left:before{content:"\f060"}  .fa-arrow-right:before{content:"\f061"}  .fa-arrow-up:before{content:"\f062"}  .fa-arrow-down:before{content:"\f063"}  .fa-mail-forward:before,.fa-share:before{content:"\f064"}  .fa-expand:before{content:"\f065"}  .fa-compress:before{content:"\f066"}  .fa-plus:before{content:"\f067"}  .fa-minus:before{content:"\f068"}  .fa-asterisk:before{content:"\f069"}  .fa-exclamation-circle:before{content:"\f06a"}  .fa-gift:before{content:"\f06b"}  .fa-leaf:before{content:"\f06c"}  .fa-fire:before{content:"\f06d"}  .fa-eye:before{content:"\f06e"}  .fa-eye-slash:before{content:"\f070"}  .fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}  .fa-plane:before{content:"\f072"}  .fa-calendar:before{content:"\f073"}  .fa-random:before{content:"\f074"}  .fa-comment:before{content:"\f075"}  .fa-magnet:before{content:"\f076"}  .fa-chevron-up:before{content:"\f077"}  .fa-chevron-down:before{content:"\f078"}  .fa-retweet:before{content:"\f079"}  .fa-shopping-cart:before{content:"\f07a"}  .fa-folder:before{content:"\f07b"}  .fa-folder-open:before{content:"\f07c"}  .fa-arrows-v:before{content:"\f07d"}  .fa-arrows-h:before{content:"\f07e"}  .fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}  .fa-twitter-square:before{content:"\f081"}  .fa-facebook-square:before{content:"\f082"}  .fa-camera-retro:before{content:"\f083"}  .fa-key:before{content:"\f084"}  .fa-gears:before,.fa-cogs:before{content:"\f085"}  .fa-comments:before{content:"\f086"}  .fa-thumbs-o-up:before{content:"\f087"}  .fa-thumbs-o-down:before{content:"\f088"}  .fa-star-half:before{content:"\f089"}  .fa-heart-o:before{content:"\f08a"}  .fa-sign-out:before{content:"\f08b"}  .fa-linkedin-square:before{content:"\f08c"}  .fa-thumb-tack:before{content:"\f08d"}  .fa-external-link:before{content:"\f08e"}  .fa-sign-in:before{content:"\f090"}  .fa-trophy:before{content:"\f091"}  .fa-github-square:before{content:"\f092"}  .fa-upload:before{content:"\f093"}  .fa-lemon-o:before{content:"\f094"}  .fa-phone:before{content:"\f095"}  .fa-square-o:before{content:"\f096"}  .fa-bookmark-o:before{content:"\f097"}  .fa-phone-square:before{content:"\f098"}  .fa-twitter:before{content:"\f099"}  .fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}  .fa-github:before{content:"\f09b"}  .fa-unlock:before{content:"\f09c"}  .fa-credit-card:before{content:"\f09d"}  .fa-rss:before{content:"\f09e"}  .fa-hdd-o:before{content:"\f0a0"}  .fa-bullhorn:before{content:"\f0a1"}  .fa-bell:before{content:"\f0f3"}  .fa-certificate:before{content:"\f0a3"}  .fa-hand-o-right:before{content:"\f0a4"}  .fa-hand-o-left:before{content:"\f0a5"}  .fa-hand-o-up:before{content:"\f0a6"}  .fa-hand-o-down:before{content:"\f0a7"}  .fa-arrow-circle-left:before{content:"\f0a8"}  .fa-arrow-circle-right:before{content:"\f0a9"}  .fa-arrow-circle-up:before{content:"\f0aa"}  .fa-arrow-circle-down:before{content:"\f0ab"}  .fa-globe:before{content:"\f0ac"}  .fa-wrench:before{content:"\f0ad"}  .fa-tasks:before{content:"\f0ae"}  .fa-filter:before{content:"\f0b0"}  .fa-briefcase:before{content:"\f0b1"}  .fa-arrows-alt:before{content:"\f0b2"}  .fa-group:before,.fa-users:before{content:"\f0c0"}  .fa-chain:before,.fa-link:before{content:"\f0c1"}  .fa-cloud:before{content:"\f0c2"}  .fa-flask:before{content:"\f0c3"}  .fa-cut:before,.fa-scissors:before{content:"\f0c4"}  .fa-copy:before,.fa-files-o:before{content:"\f0c5"}  .fa-paperclip:before{content:"\f0c6"}  .fa-save:before,.fa-floppy-o:before{content:"\f0c7"}  .fa-square:before{content:"\f0c8"}  .fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}  .fa-list-ul:before{content:"\f0ca"}  .fa-list-ol:before{content:"\f0cb"}  .fa-strikethrough:before{content:"\f0cc"}  .fa-underline:before{content:"\f0cd"}  .fa-table:before{content:"\f0ce"}  .fa-magic:before{content:"\f0d0"}  .fa-truck:before{content:"\f0d1"}  .fa-pinterest:before{content:"\f0d2"}  .fa-pinterest-square:before{content:"\f0d3"}  .fa-google-plus-square:before{content:"\f0d4"}  .fa-google-plus:before{content:"\f0d5"}  .fa-money:before{content:"\f0d6"}  .fa-caret-down:before{content:"\f0d7"}  .fa-caret-up:before{content:"\f0d8"}  .fa-caret-left:before{content:"\f0d9"}  .fa-caret-right:before{content:"\f0da"}  .fa-columns:before{content:"\f0db"}  .fa-unsorted:before,.fa-sort:before{content:"\f0dc"}  .fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}  .fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}  .fa-envelope:before{content:"\f0e0"}  .fa-linkedin:before{content:"\f0e1"}  .fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}  .fa-legal:before,.fa-gavel:before{content:"\f0e3"}  .fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}  .fa-comment-o:before{content:"\f0e5"}  .fa-comments-o:before{content:"\f0e6"}  .fa-flash:before,.fa-bolt:before{content:"\f0e7"}  .fa-sitemap:before{content:"\f0e8"}  .fa-umbrella:before{content:"\f0e9"}  .fa-paste:before,.fa-clipboard:before{content:"\f0ea"}  .fa-lightbulb-o:before{content:"\f0eb"}  .fa-exchange:before{content:"\f0ec"}  .fa-cloud-download:before{content:"\f0ed"}  .fa-cloud-upload:before{content:"\f0ee"}  .fa-user-md:before{content:"\f0f0"}  .fa-stethoscope:before{content:"\f0f1"}  .fa-suitcase:before{content:"\f0f2"}  .fa-bell-o:before{content:"\f0a2"}  .fa-coffee:before{content:"\f0f4"}  .fa-cutlery:before{content:"\f0f5"}  .fa-file-text-o:before{content:"\f0f6"}  .fa-building-o:before{content:"\f0f7"}  .fa-hospital-o:before{content:"\f0f8"}  .fa-ambulance:before{content:"\f0f9"}  .fa-medkit:before{content:"\f0fa"}  .fa-fighter-jet:before{content:"\f0fb"}  .fa-beer:before{content:"\f0fc"}  .fa-h-square:before{content:"\f0fd"}  .fa-plus-square:before{content:"\f0fe"}  .fa-angle-double-left:before{content:"\f100"}  .fa-angle-double-right:before{content:"\f101"}  .fa-angle-double-up:before{content:"\f102"}  .fa-angle-double-down:before{content:"\f103"}  .fa-angle-left:before{content:"\f104"}  .fa-angle-right:before{content:"\f105"}  .fa-angle-up:before{content:"\f106"}  .fa-angle-down:before{content:"\f107"}  .fa-desktop:before{content:"\f108"}  .fa-laptop:before{content:"\f109"}  .fa-tablet:before{content:"\f10a"}  .fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}  .fa-circle-o:before{content:"\f10c"}  .fa-quote-left:before{content:"\f10d"}  .fa-quote-right:before{content:"\f10e"}  .fa-spinner:before{content:"\f110"}  .fa-circle:before{content:"\f111"}  .fa-mail-reply:before,.fa-reply:before{content:"\f112"}  .fa-github-alt:before{content:"\f113"}  .fa-folder-o:before{content:"\f114"}  .fa-folder-open-o:before{content:"\f115"}  .fa-smile-o:before{content:"\f118"}  .fa-frown-o:before{content:"\f119"}  .fa-meh-o:before{content:"\f11a"}  .fa-gamepad:before{content:"\f11b"}  .fa-keyboard-o:before{content:"\f11c"}  .fa-flag-o:before{content:"\f11d"}  .fa-flag-checkered:before{content:"\f11e"}  .fa-terminal:before{content:"\f120"}  .fa-code:before{content:"\f121"}  .fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}  .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}  .fa-location-arrow:before{content:"\f124"}  .fa-crop:before{content:"\f125"}  .fa-code-fork:before{content:"\f126"}  .fa-unlink:before,.fa-chain-broken:before{content:"\f127"}  .fa-question:before{content:"\f128"}  .fa-info:before{content:"\f129"}  .fa-exclamation:before{content:"\f12a"}  .fa-superscript:before{content:"\f12b"}  .fa-subscript:before{content:"\f12c"}  .fa-eraser:before{content:"\f12d"}  .fa-puzzle-piece:before{content:"\f12e"}  .fa-microphone:before{content:"\f130"}  .fa-microphone-slash:before{content:"\f131"}  .fa-shield:before{content:"\f132"}  .fa-calendar-o:before{content:"\f133"}  .fa-fire-extinguisher:before{content:"\f134"}  .fa-rocket:before{content:"\f135"}  .fa-maxcdn:before{content:"\f136"}  .fa-chevron-circle-left:before{content:"\f137"}  .fa-chevron-circle-right:before{content:"\f138"}  .fa-chevron-circle-up:before{content:"\f139"}  .fa-chevron-circle-down:before{content:"\f13a"}  .fa-html5:before{content:"\f13b"}  .fa-css3:before{content:"\f13c"}  .fa-anchor:before{content:"\f13d"}  .fa-unlock-alt:before{content:"\f13e"}  .fa-bullseye:before{content:"\f140"}  .fa-ellipsis-h:before{content:"\f141"}  .fa-ellipsis-v:before{content:"\f142"}  .fa-rss-square:before{content:"\f143"}  .fa-play-circle:before{content:"\f144"}  .fa-ticket:before{content:"\f145"}  .fa-minus-square:before{content:"\f146"}  .fa-minus-square-o:before{content:"\f147"}  .fa-level-up:before{content:"\f148"}  .fa-level-down:before{content:"\f149"}  .fa-check-square:before{content:"\f14a"}  .fa-pencil-square:before{content:"\f14b"}  .fa-external-link-square:before{content:"\f14c"}  .fa-share-square:before{content:"\f14d"}  .fa-compass:before{content:"\f14e"}  .fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}  .fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}  .fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}  .fa-euro:before,.fa-eur:before{content:"\f153"}  .fa-gbp:before{content:"\f154"}  .fa-dollar:before,.fa-usd:before{content:"\f155"}  .fa-rupee:before,.fa-inr:before{content:"\f156"}  .fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}  .fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}  .fa-won:before,.fa-krw:before{content:"\f159"}  .fa-bitcoin:before,.fa-btc:before{content:"\f15a"}  .fa-file:before{content:"\f15b"}  .fa-file-text:before{content:"\f15c"}  .fa-sort-alpha-asc:before{content:"\f15d"}  .fa-sort-alpha-desc:before{content:"\f15e"}  .fa-sort-amount-asc:before{content:"\f160"}  .fa-sort-amount-desc:before{content:"\f161"}  .fa-sort-numeric-asc:before{content:"\f162"}  .fa-sort-numeric-desc:before{content:"\f163"}  .fa-thumbs-up:before{content:"\f164"}  .fa-thumbs-down:before{content:"\f165"}  .fa-youtube-square:before{content:"\f166"}  .fa-youtube:before{content:"\f167"}  .fa-xing:before{content:"\f168"}  .fa-xing-square:before{content:"\f169"}  .fa-youtube-play:before{content:"\f16a"}  .fa-dropbox:before{content:"\f16b"}  .fa-stack-overflow:before{content:"\f16c"}  .fa-instagram:before{content:"\f16d"}  .fa-flickr:before{content:"\f16e"}  .fa-adn:before{content:"\f170"}  .fa-bitbucket:before{content:"\f171"}  .fa-bitbucket-square:before{content:"\f172"}  .fa-tumblr:before{content:"\f173"}  .fa-tumblr-square:before{content:"\f174"}  .fa-long-arrow-down:before{content:"\f175"}  .fa-long-arrow-up:before{content:"\f176"}  .fa-long-arrow-left:before{content:"\f177"}  .fa-long-arrow-right:before{content:"\f178"}  .fa-apple:before{content:"\f179"}  .fa-windows:before{content:"\f17a"}  .fa-android:before{content:"\f17b"}  .fa-linux:before{content:"\f17c"}  .fa-dribbble:before{content:"\f17d"}  .fa-skype:before{content:"\f17e"}  .fa-foursquare:before{content:"\f180"}  .fa-trello:before{content:"\f181"}  .fa-female:before{content:"\f182"}  .fa-male:before{content:"\f183"}  .fa-gittip:before,.fa-gratipay:before{content:"\f184"}  .fa-sun-o:before{content:"\f185"}  .fa-moon-o:before{content:"\f186"}  .fa-archive:before{content:"\f187"}  .fa-bug:before{content:"\f188"}  .fa-vk:before{content:"\f189"}  .fa-weibo:before{content:"\f18a"}  .fa-renren:before{content:"\f18b"}  .fa-pagelines:before{content:"\f18c"}  .fa-stack-exchange:before{content:"\f18d"}  .fa-arrow-circle-o-right:before{content:"\f18e"}  .fa-arrow-circle-o-left:before{content:"\f190"}  .fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}  .fa-dot-circle-o:before{content:"\f192"}  .fa-wheelchair:before{content:"\f193"}  .fa-vimeo-square:before{content:"\f194"}  .fa-turkish-lira:before,.fa-try:before{content:"\f195"}  .fa-plus-square-o:before{content:"\f196"}  .fa-space-shuttle:before{content:"\f197"}  .fa-slack:before{content:"\f198"}  .fa-envelope-square:before{content:"\f199"}  .fa-wordpress:before{content:"\f19a"}  .fa-openid:before{content:"\f19b"}  .fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}  .fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}  .fa-yahoo:before{content:"\f19e"}  .fa-google:before{content:"\f1a0"}  .fa-reddit:before{content:"\f1a1"}  .fa-reddit-square:before{content:"\f1a2"}  .fa-stumbleupon-circle:before{content:"\f1a3"}  .fa-stumbleupon:before{content:"\f1a4"}  .fa-delicious:before{content:"\f1a5"}  .fa-digg:before{content:"\f1a6"}  .fa-pied-piper:before{content:"\f1a7"}  .fa-pied-piper-alt:before{content:"\f1a8"}  .fa-drupal:before{content:"\f1a9"}  .fa-joomla:before{content:"\f1aa"}  .fa-language:before{content:"\f1ab"}  .fa-fax:before{content:"\f1ac"}  .fa-building:before{content:"\f1ad"}  .fa-child:before{content:"\f1ae"}  .fa-paw:before{content:"\f1b0"}  .fa-spoon:before{content:"\f1b1"}  .fa-cube:before{content:"\f1b2"}  .fa-cubes:before{content:"\f1b3"}  .fa-behance:before{content:"\f1b4"}  .fa-behance-square:before{content:"\f1b5"}  .fa-steam:before{content:"\f1b6"}  .fa-steam-square:before{content:"\f1b7"}  .fa-recycle:before{content:"\f1b8"}  .fa-automobile:before,.fa-car:before{content:"\f1b9"}  .fa-cab:before,.fa-taxi:before{content:"\f1ba"}  .fa-tree:before{content:"\f1bb"}  .fa-spotify:before{content:"\f1bc"}  .fa-deviantart:before{content:"\f1bd"}  .fa-soundcloud:before{content:"\f1be"}  .fa-database:before{content:"\f1c0"}  .fa-file-pdf-o:before{content:"\f1c1"}  .fa-file-word-o:before{content:"\f1c2"}  .fa-file-excel-o:before{content:"\f1c3"}  .fa-file-powerpoint-o:before{content:"\f1c4"}  .fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}  .fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}  .fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}  .fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}  .fa-file-code-o:before{content:"\f1c9"}  .fa-vine:before{content:"\f1ca"}  .fa-codepen:before{content:"\f1cb"}  .fa-jsfiddle:before{content:"\f1cc"}  .fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}  .fa-circle-o-notch:before{content:"\f1ce"}  .fa-ra:before,.fa-rebel:before{content:"\f1d0"}  .fa-ge:before,.fa-empire:before{content:"\f1d1"}  .fa-git-square:before{content:"\f1d2"}  .fa-git:before{content:"\f1d3"}  .fa-hacker-news:before{content:"\f1d4"}  .fa-tencent-weibo:before{content:"\f1d5"}  .fa-qq:before{content:"\f1d6"}  .fa-wechat:before,.fa-weixin:before{content:"\f1d7"}  .fa-send:before,.fa-paper-plane:before{content:"\f1d8"}  .fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}  .fa-history:before{content:"\f1da"}  .fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}  .fa-header:before{content:"\f1dc"}  .fa-paragraph:before{content:"\f1dd"}  .fa-sliders:before{content:"\f1de"}  .fa-share-alt:before{content:"\f1e0"}  .fa-share-alt-square:before{content:"\f1e1"}  .fa-bomb:before{content:"\f1e2"}  .fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}  .fa-tty:before{content:"\f1e4"}  .fa-binoculars:before{content:"\f1e5"}  .fa-plug:before{content:"\f1e6"}  .fa-slideshare:before{content:"\f1e7"}  .fa-twitch:before{content:"\f1e8"}  .fa-yelp:before{content:"\f1e9"}  .fa-newspaper-o:before{content:"\f1ea"}  .fa-wifi:before{content:"\f1eb"}  .fa-calculator:before{content:"\f1ec"}  .fa-paypal:before{content:"\f1ed"}  .fa-google-wallet:before{content:"\f1ee"}  .fa-cc-visa:before{content:"\f1f0"}  .fa-cc-mastercard:before{content:"\f1f1"}  .fa-cc-discover:before{content:"\f1f2"}  .fa-cc-amex:before{content:"\f1f3"}  .fa-cc-paypal:before{content:"\f1f4"}  .fa-cc-stripe:before{content:"\f1f5"}  .fa-bell-slash:before{content:"\f1f6"}  .fa-bell-slash-o:before{content:"\f1f7"}  .fa-trash:before{content:"\f1f8"}  .fa-copyright:before{content:"\f1f9"}  .fa-at:before{content:"\f1fa"}  .fa-eyedropper:before{content:"\f1fb"}  .fa-paint-brush:before{content:"\f1fc"}  .fa-birthday-cake:before{content:"\f1fd"}  .fa-area-chart:before{content:"\f1fe"}  .fa-pie-chart:before{content:"\f200"}  .fa-line-chart:before{content:"\f201"}  .fa-lastfm:before{content:"\f202"}  .fa-lastfm-square:before{content:"\f203"}  .fa-toggle-off:before{content:"\f204"}  .fa-toggle-on:before{content:"\f205"}  .fa-bicycle:before{content:"\f206"}  .fa-bus:before{content:"\f207"}  .fa-ioxhost:before{content:"\f208"}  .fa-angellist:before{content:"\f209"}  .fa-cc:before{content:"\f20a"}  .fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}  .fa-meanpath:before{content:"\f20c"}  .fa-buysellads:before{content:"\f20d"}  .fa-connectdevelop:before{content:"\f20e"}  .fa-dashcube:before{content:"\f210"}  .fa-forumbee:before{content:"\f211"}  .fa-leanpub:before{content:"\f212"}  .fa-sellsy:before{content:"\f213"}  .fa-shirtsinbulk:before{content:"\f214"}  .fa-simplybuilt:before{content:"\f215"}  .fa-skyatlas:before{content:"\f216"}  .fa-cart-plus:before{content:"\f217"}  .fa-cart-arrow-down:before{content:"\f218"}  .fa-diamond:before{content:"\f219"}  .fa-ship:before{content:"\f21a"}  .fa-user-secret:before{content:"\f21b"}  .fa-motorcycle:before{content:"\f21c"}  .fa-street-view:before{content:"\f21d"}  .fa-heartbeat:before{content:"\f21e"}  .fa-venus:before{content:"\f221"}  .fa-mars:before{content:"\f222"}  .fa-mercury:before{content:"\f223"}  .fa-transgender:before{content:"\f224"}  .fa-transgender-alt:before{content:"\f225"}  .fa-venus-double:before{content:"\f226"}  .fa-mars-double:before{content:"\f227"}  .fa-venus-mars:before{content:"\f228"}  .fa-mars-stroke:before{content:"\f229"}  .fa-mars-stroke-v:before{content:"\f22a"}  .fa-mars-stroke-h:before{content:"\f22b"}  .fa-neuter:before{content:"\f22c"}  .fa-facebook-official:before{content:"\f230"}  .fa-pinterest-p:before{content:"\f231"}  .fa-whatsapp:before{content:"\f232"}  .fa-server:before{content:"\f233"}  .fa-user-plus:before{content:"\f234"}  .fa-user-times:before{content:"\f235"}  .fa-hotel:before,.fa-bed:before{content:"\f236"}  .fa-viacoin:before{content:"\f237"}  .fa-train:before{content:"\f238"}  .fa-subway:before{content:"\f239"}  .fa-medium:before{content:"\f23a"}
\ No newline at end of file
diff --git a/htdocs/theme/css/foo.css b/htdocs/theme/css/foo.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/htdocs/theme/css/hidden.css b/htdocs/theme/css/hidden.css
deleted file mode 100755
index 775a0e88be61109d1a379134edc00db34f43351a..0000000000000000000000000000000000000000
--- a/htdocs/theme/css/hidden.css
+++ /dev/null
@@ -1,3 +0,0 @@
-.hidden {
-	display: none
-}
\ No newline at end of file
diff --git a/htdocs/theme/css/meteorogram_style.css b/htdocs/theme/css/meteorogram_style.css
deleted file mode 100644
index 532383366fe0a46fa77acced2b21543ccb7f0282..0000000000000000000000000000000000000000
--- a/htdocs/theme/css/meteorogram_style.css
+++ /dev/null
@@ -1,9 +0,0 @@
-.spinner {
-    width: 10%;
-    height: 10%;
-    position: fixed;
-    top: 50%;
-    left: 50%;
-    margin-top: -5%;
-    margin-left: -5%;
-}
\ No newline at end of file
diff --git a/htdocs/theme/css/style.css b/htdocs/theme/css/style.css
deleted file mode 100644
index 5d7036574040a69f665bf68f0bb8c710bd669318..0000000000000000000000000000000000000000
--- a/htdocs/theme/css/style.css
+++ /dev/null
@@ -1,173 +0,0 @@
-body {
-    background-color: rgb(200,200,200);
-}
-
-td.instruments {
-    width: 400px;
-    vertical-align:middle;
-    text-align:center;
-}
-
-div.innerbanner {
-    background-color: rgb(200,225,255);
-    height: 64px;
-    width: 900px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-}
-
-
-div.outerbanner {
-    background-color: white;
-    height: 90px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-    border: 1px solid black;
-}
-
-
-span.logo {
-    background-color: white;
-    height: 64px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-}
-
-div.menubar {
-    background-color: rgb(200,225,255);
-    height: 65px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-}
-
-span.rainmenuitem {
-    background-color: rgb(150,200,255);
-    height: 25px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-    padding: 10px;
-}
-
-span.rainmenuitem:hover {
-    background-color: rgb(215,235,255);
-    height: 25px;
-    display: flex;
-    align-items: center;
-    justify-content: center;
-    padding: 10px;
-}
-
-span.rainmenuitem a {
-    color: rgb(30,55,255);
-    text-decoration: none;
-}
-
-div.outerbody {
-    background-color: rgb(200,225,255);
-    display: flex;
-    align-items: center;
-    justify-content: center;
-}
-
-div.body {
-    background-color: white;
-    width: 900px;
-    display: flex;
-    justify-content: center;
-    padding: 16px;
-}
-
-div.instrument {
-    width: 480px;    
-    padding: 32px;
-}
-
-span.ack {
-    font-weight: bold;
-    color: #660000;
-}
-
-
-
-
-
-
-#imagestrip {
-  margin: 10px auto 10px auto;
-  /*padding: 0 10px 10px 10px;*/
-  padding: 0;
-  width: 1px;
-  display: table;
-  border: solid 1px #999999;
-}
-.imageStripsContainer {
-  margin-bottom: 1em;
-}
-.imageStripsContainer th, .imageStripsContainer td {
-  padding: 5px 0 5px 0;
-  vertical-align: middle;
-  text-align: left;
-}
-.imageStripsContainer th {
-  padding-right: 10px;
-  padding-left: 10px;
-}
-.imageStripsContainer tr td:last-child {
-  padding-right: 10px;
-}
-.imageStripsContainer a.thumbnail img {
-  border: none;
-}
-.imageStripsContainer img {
-  width: 100px;
-  height: 100px;
-}
-h2 {
-  text-align: center;
-}
-#controls {
-  text-align: center;
-  white-space: nowrap;
-  padding: 10px 0 1em 0;
-  margin: 0;
-  background-color: #DDDDDD;
-}
-#imagestrip h3 {
-  background-color: #FFFFDD;
-  border: solid 1px #dddddd;
-  border-left: none;
-  border-right: none;
-  padding-right: 10px;
-  padding-left: 10px;
-  margin-top: 0;
-  margin-bottom: 0 !important;
-}
-.altRow {
-  background-color: #DDDDDD;
-}
-th.groupName {
-  font-weight: normal;
-}
-tr.columnHeaders th {
-  background-color: #f9f9f9;
-}
-.showHideContainer {
-  text-align: center !important;
-}
-th.dateTime {
-  font-size: 10px;
-  text-align: center;
-}
-tr.spacer td {
-  height: 1em;
-}
-#selectPlotsContainer1 {
-  position: relative;
-  display: inline;
-}
-/*imagestripsMenuContainer */
diff --git a/htdocs/theme/css/stylish-portfolio.css b/htdocs/theme/css/stylish-portfolio.css
deleted file mode 100755
index 8fffe96d1fefc7a8f7d424e10c78513be2096bab..0000000000000000000000000000000000000000
--- a/htdocs/theme/css/stylish-portfolio.css
+++ /dev/null
@@ -1,315 +0,0 @@
-/*!
- * Start Bootstrap - Stylish Portfolio (http://startbootstrap.com/)
- * Copyright 2013-2016 Start Bootstrap
- * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
- */
-
-/* Global Styles */
-
-html,
-body {
-    width: 100%;
-    height: 100%;
-}
-
-body {
-    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
-    padding-top: 50px;
-}
-
-.text-vertical-center {
-    display: table-cell;
-    text-align: center;
-    vertical-align: middle;
-}
-
-.text-vertical-center h1 {
-    margin: 0;
-    padding: 0;
-    font-size: 4.5em;
-    font-weight: 700;
-}
-
-/* Custom Button Styles */
-
-.btn-dark {
-    border-radius: 0;
-    color: #fff;
-    background-color: rgba(0,0,0,0.4);
-}
-
-.btn-dark:hover,
-.btn-dark:focus,
-.btn-dark:active {
-    color: #fff;
-    background-color: rgba(0,0,0,0.7);
-}
-
-.btn-light {
-    border-radius: 0;
-    color: #333;
-    background-color: rgb(255,255,255);
-}
-
-.btn-light:hover,
-.btn-light:focus,
-.btn-light:active {
-    color: #333;
-    background-color: rgba(255,255,255,0.8);
-}
-
-/* Custom Horizontal Rule */
-
-hr.small {
-    max-width: 100px;
-}
-
-/* Side Menu */
-
-#sidebar-wrapper {
-    z-index: 1000;
-    position: fixed;
-    right: 0;
-    width: 250px;
-    height: 100%;
-    transform: translateX(250px);
-    overflow-y: auto;
-    background: #222;
-    -webkit-transition: all 0.4s ease 0s;
-    -moz-transition: all 0.4s ease 0s;
-    -ms-transition: all 0.4s ease 0s;
-    -o-transition: all 0.4s ease 0s;
-    transition: all 0.4s ease 0s;
-}
-
-.sidebar-nav {
-    position: absolute;
-    top: 0;
-    width: 250px;
-    margin: 0;
-    padding: 0;
-    list-style: none;
-}
-
-.sidebar-nav li {
-    text-indent: 20px;
-    line-height: 40px;
-}
-
-a.no-style{
-    color:black;
-    text-decoration:none;
-}
-a.no-style:hover{
-    color:black;
-    text-decoration:none;
-}
-.sidebar-nav li a {
-    display: block;
-    text-decoration: none;
-    color: #999;
-}
-
-.sidebar-nav li a:hover {
-    text-decoration: none;
-    color: #fff;
-    background: rgba(255,255,255,0.2);
-}
-
-.sidebar-nav li a:active,
-.sidebar-nav li a:focus {
-    text-decoration: none;
-}
-
-.sidebar-nav > .sidebar-brand {
-    height: 55px;
-    font-size: 18px;
-    line-height: 55px;
-}
-
-.sidebar-nav > .sidebar-brand a {
-    color: #999;
-}
-
-nav{
-    display:block !important;
-}
-.sidebar-nav > .sidebar-brand a:hover {
-    color: #fff;
-    background: none;
-}
-
-#menu-toggle {
-    z-index: 1;
-    position: fixed;
-    top: 0;
-    right: 0;
-}
-
-#sidebar-wrapper.active {
-    right: 250px;
-    width: 250px;
-    -webkit-transition: all 0.4s ease 0s;
-    -moz-transition: all 0.4s ease 0s;
-    -ms-transition: all 0.4s ease 0s;
-    -o-transition: all 0.4s ease 0s;
-    transition: all 0.4s ease 0s;
-}
-
-.toggle {
-    margin: 5px 5px 0 0;
-}
-
-/* Header */
-
-.header {
-    display: table;
-    position: relative;
-    width: 100%;
-    height: 55%;
-    background: url(http://metobs.ssec.wisc.edu/pub/cache/aoss/cameras/north/latest_orig.jpg) no-repeat center 75% scroll;
-    -webkit-background-size: cover;
-    -moz-background-size: cover;
-    background-size: cover;
-    -o-background-size: cover;
-}
-
-/* About */
-
-.about {
-    padding: 50px 0;
-}
-
-/* Services */
-
-.services {
-    padding: 50px 0;
-}
-
-.service-item {
-    margin-bottom: 30px;
-}
-
-/* Callout */
-
-.callout {
-    display: table;
-    width: 100%;
-    height: 400px;
-    color: #fff;
-    background: url({filename}/images/callout.jpg) no-repeat center center scroll;
-    -webkit-background-size: cover;
-    -moz-background-size: cover;
-    background-size: cover;
-    -o-background-size: cover;
-}
-
-/* Portfolio */
-
-.portfolio {
-    padding: 50px 0;
-}
-
-.portfolio-item {
-    margin-bottom: 30px;
-}
-
-.img-portfolio {
-    margin: 0 auto;
-}
-
-.img-portfolio:hover {
-    opacity: 0.8;
-}
-
-/* Call to Action */
-
-.call-to-action {
-    padding: 50px 0;
-}
-
-.call-to-action .btn {
-    margin: 10px;
-}
-
-.date-pick{
-    border-radius:3px;
-    -webkit-user-select: none;  /* Chrome all / Safari all */
-    -moz-user-select: none;     /* Firefox all */
-    -ms-user-select: none;      /* IE 10+ */
-    user-select: none;          /* Likely future */      
-}
-.empty-option{
-    -webkit-user-select: none;  /* Chrome all / Safari all */
-    -moz-user-select: none;     /* Firefox all */
-    -ms-user-select: none;      /* IE 10+ */
-    user-select: none;          /* Likely future */      
-}
-.date-pick.selected{
-    background: #AAA;
-}
-.date-pick:hover {
-    background: #AAA;
-}
-
-td.selected>a.thumbnail{
-    background: #AAA;
-}
-/* Map */
-
-.ql-label{
-    /*TODO: don't hardcode this*/
-    height:130px;    
-}
-.map {
-    height: 500px;
-}
-
-.met_table {
-    border: 1px solid black;
-    border-radius:3px;
-}
-.met_table td{
-    padding-left:0.25em;
-    padding-right:0.25em;
-}
-
-.met_table td:first-child{
-    font-weight:bold;
-}
-.met_table tr:nth-child(even){
-    background: #CCC;
-}
-
-.subtitle{
-    font-weight:normal !important;
-
-}
-
-@media(max-width:768px) {
-    .map {
-        height: 75%;
-    }
-}
-
-@media (min-width:769px) and (max-width:992px){
-    body{
-        padding-top:150px;
-    }
-}
-.map iframe {
-    pointer-events: none;
-}
-
-/* Footer */
-
-footer {
-    padding: 100px 0;
-}
-
-#to-top {
-  display: none;
-  position: fixed;
-  bottom: 5px;
-  right: 5px;
-}
diff --git a/htdocs/theme/fonts/FontAwesome.otf b/htdocs/theme/fonts/FontAwesome.otf
deleted file mode 100755
index f7936cc1e789eea5438d576d6b12de20191da09d..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/fonts/FontAwesome.otf and /dev/null differ
diff --git a/htdocs/theme/fonts/fontawesome-webfont.eot b/htdocs/theme/fonts/fontawesome-webfont.eot
deleted file mode 100755
index 33b2bb80055cc480e797de704925acaba4ba7d7d..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/fonts/fontawesome-webfont.eot and /dev/null differ
diff --git a/htdocs/theme/fonts/fontawesome-webfont.svg b/htdocs/theme/fonts/fontawesome-webfont.svg
deleted file mode 100755
index 1ee89d4368d31a368817a842f14d53f7a64c3038..0000000000000000000000000000000000000000
--- a/htdocs/theme/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,565 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata></metadata>
-<defs>
-<font id="fontawesomeregular" horiz-adv-x="1536" >
-<font-face units-per-em="1792" ascent="1536" descent="-256" />
-<missing-glyph horiz-adv-x="448" />
-<glyph unicode=" "  horiz-adv-x="448" />
-<glyph unicode="&#x09;" horiz-adv-x="448" />
-<glyph unicode="&#xa0;" horiz-adv-x="448" />
-<glyph unicode="&#xa8;" horiz-adv-x="1792" />
-<glyph unicode="&#xa9;" horiz-adv-x="1792" />
-<glyph unicode="&#xae;" horiz-adv-x="1792" />
-<glyph unicode="&#xb4;" horiz-adv-x="1792" />
-<glyph unicode="&#xc6;" horiz-adv-x="1792" />
-<glyph unicode="&#xd8;" horiz-adv-x="1792" />
-<glyph unicode="&#x2000;" horiz-adv-x="768" />
-<glyph unicode="&#x2001;" horiz-adv-x="1537" />
-<glyph unicode="&#x2002;" horiz-adv-x="768" />
-<glyph unicode="&#x2003;" horiz-adv-x="1537" />
-<glyph unicode="&#x2004;" horiz-adv-x="512" />
-<glyph unicode="&#x2005;" horiz-adv-x="384" />
-<glyph unicode="&#x2006;" horiz-adv-x="256" />
-<glyph unicode="&#x2007;" horiz-adv-x="256" />
-<glyph unicode="&#x2008;" horiz-adv-x="192" />
-<glyph unicode="&#x2009;" horiz-adv-x="307" />
-<glyph unicode="&#x200a;" horiz-adv-x="85" />
-<glyph unicode="&#x202f;" horiz-adv-x="307" />
-<glyph unicode="&#x205f;" horiz-adv-x="384" />
-<glyph unicode="&#x2122;" horiz-adv-x="1792" />
-<glyph unicode="&#x221e;" horiz-adv-x="1792" />
-<glyph unicode="&#x2260;" horiz-adv-x="1792" />
-<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
-<glyph unicode="&#xf000;" horiz-adv-x="1792" d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
-<glyph unicode="&#xf001;" d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89 t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf002;" horiz-adv-x="1664" d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5 t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="&#xf003;" horiz-adv-x="1792" d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13 t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf004;" horiz-adv-x="1792" d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600 q-18 -18 -44 -18z" />
-<glyph unicode="&#xf005;" horiz-adv-x="1664" d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455 l502 -73q56 -9 56 -46z" />
-<glyph unicode="&#xf006;" horiz-adv-x="1664" d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500 l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
-<glyph unicode="&#xf007;" horiz-adv-x="1408" d="M1408 131q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q9 0 42 -21.5t74.5 -48t108 -48t133.5 -21.5t133.5 21.5t108 48t74.5 48t42 21.5q61 0 111.5 -20t85.5 -53.5t62 -81 t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf008;" horiz-adv-x="1920" d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128 q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45 t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128 q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19 t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf009;" horiz-adv-x="1664" d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38 h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf00a;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf00b;" horiz-adv-x="1792" d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28 h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf00c;" horiz-adv-x="1792" d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
-<glyph unicode="&#xf00d;" horiz-adv-x="1408" d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68 t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
-<glyph unicode="&#xf00e;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224 q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5 t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
-<glyph unicode="&#xf010;" horiz-adv-x="1664" d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z " />
-<glyph unicode="&#xf011;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5 t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
-<glyph unicode="&#xf012;" horiz-adv-x="1792" d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf013;" d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38 q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13 l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22 q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
-<glyph unicode="&#xf014;" horiz-adv-x="1408" d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832 q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf015;" horiz-adv-x="1664" d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5 l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
-<glyph unicode="&#xf016;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z " />
-<glyph unicode="&#xf017;" d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf018;" horiz-adv-x="1920" d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256 q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
-<glyph unicode="&#xf019;" horiz-adv-x="1664" d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136 q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
-<glyph unicode="&#xf01a;" d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273 t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01b;" d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198 t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01c;" d="M1023 576h316q-1 3 -2.5 8t-2.5 8l-212 496h-708l-212 -496q-1 -2 -2.5 -8t-2.5 -8h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552 q25 -61 25 -123z" />
-<glyph unicode="&#xf01d;" d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf01e;" d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q14 0 25 -9 l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
-<glyph unicode="&#xf021;" d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117 q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5 q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf022;" horiz-adv-x="1792" d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5 t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47 t47 -113z" />
-<glyph unicode="&#xf023;" horiz-adv-x="1152" d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf024;" horiz-adv-x="1792" d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48 t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf025;" horiz-adv-x="1664" d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78 t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5 t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
-<glyph unicode="&#xf026;" horiz-adv-x="768" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf027;" horiz-adv-x="1152" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
-<glyph unicode="&#xf028;" horiz-adv-x="1664" d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 35.5 t12 57t-12 57t-29 35.5t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5 t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289 t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
-<glyph unicode="&#xf029;" horiz-adv-x="1408" d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
-<glyph unicode="&#xf02a;" horiz-adv-x="1792" d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
-<glyph unicode="&#xf02b;" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91z" />
-<glyph unicode="&#xf02c;" horiz-adv-x="1920" d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5 l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
-<glyph unicode="&#xf02d;" horiz-adv-x="1664" d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23 q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906 q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5 t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
-<glyph unicode="&#xf02e;" horiz-adv-x="1280" d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="&#xf02f;" horiz-adv-x="1664" d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68 v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
-<glyph unicode="&#xf030;" horiz-adv-x="1920" d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136 q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf031;" horiz-adv-x="1664" d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57 q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -4 -0.5 -13t-0.5 -13q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5 q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
-<glyph unicode="&#xf032;" horiz-adv-x="1408" d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142 q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5 t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68.5 -0.5t67.5 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5 t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
-<glyph unicode="&#xf033;" horiz-adv-x="1024" d="M0 -126l17 85q6 2 81.5 21.5t111.5 37.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5 q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
-<glyph unicode="&#xf034;" horiz-adv-x="1792" d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2 t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5 q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
-<glyph unicode="&#xf035;" d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1 t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27 q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5 t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49 t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
-<glyph unicode="&#xf036;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf037;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19 h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf038;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf039;" horiz-adv-x="1792" d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45 t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf03a;" horiz-adv-x="1792" d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5 t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344 q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192 q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03b;" horiz-adv-x="1792" d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03c;" horiz-adv-x="1792" d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5 t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088 q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf03d;" horiz-adv-x="1792" d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5 q39 -17 39 -59z" />
-<glyph unicode="&#xf03e;" horiz-adv-x="1920" d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216 q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf040;" d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38 q53 0 91 -38l235 -234q37 -39 37 -91z" />
-<glyph unicode="&#xf041;" horiz-adv-x="1024" d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
-<glyph unicode="&#xf042;" d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf043;" horiz-adv-x="1024" d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362 q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
-<glyph unicode="&#xf044;" horiz-adv-x="1792" d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92 l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
-<glyph unicode="&#xf045;" horiz-adv-x="1664" d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832 q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5 t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf046;" horiz-adv-x="1664" d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832 q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110 q24 -24 24 -57t-24 -57z" />
-<glyph unicode="&#xf047;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45 t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf048;" horiz-adv-x="1024" d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19z" />
-<glyph unicode="&#xf049;" horiz-adv-x="1792" d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 11 13 19l710 710 q19 19 32 13t13 -32v-710q4 11 13 19z" />
-<glyph unicode="&#xf04a;" horiz-adv-x="1664" d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-8 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q5 11 13 19z" />
-<glyph unicode="&#xf04b;" horiz-adv-x="1408" d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
-<glyph unicode="&#xf04c;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf04d;" d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf04e;" horiz-adv-x="1664" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="&#xf050;" horiz-adv-x="1792" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v710q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19l-710 -710 q-19 -19 -32 -13t-13 32v710q-5 -10 -13 -19z" />
-<glyph unicode="&#xf051;" horiz-adv-x="1024" d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q8 -8 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-5 -10 -13 -19z" />
-<glyph unicode="&#xf052;" horiz-adv-x="1538" d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
-<glyph unicode="&#xf053;" horiz-adv-x="1280" d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf054;" horiz-adv-x="1280" d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
-<glyph unicode="&#xf055;" d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5 t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf056;" d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5 t103 -385.5z" />
-<glyph unicode="&#xf057;" d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19 q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf058;" d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf059;" d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59 q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05a;" d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23 t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05b;" d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109 q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143 q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf05c;" d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23 l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5 t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05d;" d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198 t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf05e;" d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61 t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
-<glyph unicode="&#xf060;" d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5 t32.5 -90.5z" />
-<glyph unicode="&#xf061;" d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
-<glyph unicode="&#xf062;" horiz-adv-x="1664" d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651 q37 -39 37 -91z" />
-<glyph unicode="&#xf063;" horiz-adv-x="1664" d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
-<glyph unicode="&#xf064;" horiz-adv-x="1792" d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22 t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
-<glyph unicode="&#xf065;" d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332 q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf066;" d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45 t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
-<glyph unicode="&#xf067;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf068;" horiz-adv-x="1408" d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf069;" horiz-adv-x="1664" d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154 q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
-<glyph unicode="&#xf06a;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192 q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
-<glyph unicode="&#xf06b;" d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320 q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5 t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf06c;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268 q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-30 0 -51 11t-31 24t-27 42q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5 t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
-<glyph unicode="&#xf06d;" horiz-adv-x="1408" d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1 q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
-<glyph unicode="&#xf06e;" horiz-adv-x="1792" d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5 t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
-<glyph unicode="&#xf070;" horiz-adv-x="1792" d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9 q-105 -188 -315 -566t-316 -567l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5 q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z " />
-<glyph unicode="&#xf071;" horiz-adv-x="1792" d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185 q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
-<glyph unicode="&#xf072;" horiz-adv-x="1408" d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9 q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
-<glyph unicode="&#xf073;" horiz-adv-x="1664" d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64 q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47 h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf074;" horiz-adv-x="1792" d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1 t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5 v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111 t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="&#xf075;" horiz-adv-x="1792" d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281 q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="&#xf076;" d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384 q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf077;" horiz-adv-x="1792" d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
-<glyph unicode="&#xf078;" horiz-adv-x="1792" d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
-<glyph unicode="&#xf079;" horiz-adv-x="1920" d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -11 7 -21 zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z " />
-<glyph unicode="&#xf07a;" horiz-adv-x="1664" d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45 t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf07b;" horiz-adv-x="1664" d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf07c;" horiz-adv-x="1920" d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5 t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf07d;" horiz-adv-x="768" d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf07e;" horiz-adv-x="1792" d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
-<glyph unicode="&#xf080;" horiz-adv-x="2048" d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
-<glyph unicode="&#xf081;" d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4 q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5 t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf082;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960z" />
-<glyph unicode="&#xf083;" horiz-adv-x="1792" d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5 t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280 q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf084;" horiz-adv-x="1792" d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26 l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5 t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
-<glyph unicode="&#xf085;" horiz-adv-x="1920" d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -10 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5 l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7 l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -9 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31 q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20 t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68 q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70 q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
-<glyph unicode="&#xf086;" horiz-adv-x="1792" d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224 q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7 q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
-<glyph unicode="&#xf087;" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5 t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769 q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128 q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
-<glyph unicode="&#xf088;" d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 32 18 69t-17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5 t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5 h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -74 49 -163z" />
-<glyph unicode="&#xf089;" horiz-adv-x="896" d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
-<glyph unicode="&#xf08a;" horiz-adv-x="1792" d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559 q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5 q224 0 351 -124t127 -344z" />
-<glyph unicode="&#xf08b;" horiz-adv-x="1664" d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704 q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
-<glyph unicode="&#xf08c;" d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5 q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf08d;" horiz-adv-x="1152" d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38 t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
-<glyph unicode="&#xf08e;" horiz-adv-x="1792" d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320 q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf090;" d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5 q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf091;" horiz-adv-x="1664" d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91 t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96 q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf092;" d="M394 184q-8 -9 -20 3q-13 11 -4 19q8 9 20 -3q12 -11 4 -19zM352 245q9 -12 0 -19q-8 -6 -17 7t0 18q9 7 17 -6zM291 305q-5 -7 -13 -2q-10 5 -7 12q3 5 13 2q10 -5 7 -12zM322 271q-6 -7 -16 3q-9 11 -2 16q6 6 16 -3q9 -11 2 -16zM451 159q-4 -12 -19 -6q-17 4 -13 15 t19 7q16 -5 13 -16zM514 154q0 -11 -16 -11q-17 -2 -17 11q0 11 16 11q17 2 17 -11zM572 164q2 -10 -14 -14t-18 8t14 15q16 2 18 -9zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-224q-16 0 -24.5 1t-19.5 5t-16 14.5t-5 27.5v239q0 97 -52 142q57 6 102.5 18t94 39 t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103 q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -103t0.5 -68q0 -22 -11 -33.5t-22 -13t-33 -1.5 h-224q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf093;" horiz-adv-x="1664" d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92 t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
-<glyph unicode="&#xf094;" d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5 q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44 q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5 q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -10 1 -18.5t3 -17t4 -13.5t6.5 -16t6.5 -17q16 -40 25 -118.5t9 -136.5z" />
-<glyph unicode="&#xf095;" horiz-adv-x="1408" d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -52.5 3.5t-57.5 12.5t-47.5 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-128 79 -264.5 215.5t-215.5 264.5q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47.5t-12.5 57.5t-3.5 52.5 q0 92 51 186q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174 q2 -1 19 -11.5t24 -14t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
-<glyph unicode="&#xf096;" horiz-adv-x="1408" d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832 q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf097;" horiz-adv-x="1280" d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289 q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
-<glyph unicode="&#xf098;" d="M1280 343q0 11 -2 16q-3 8 -38.5 29.5t-88.5 49.5l-53 29q-5 3 -19 13t-25 15t-21 5q-18 0 -47 -32.5t-57 -65.5t-44 -33q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170.5 126.5t-126.5 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5t-3.5 16.5q0 13 20.5 33.5t45 38.5 t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5t320.5 -216.5q6 -2 30 -11t33 -12.5 t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf099;" horiz-adv-x="1664" d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41 q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
-<glyph unicode="&#xf09a;" horiz-adv-x="1024" d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
-<glyph unicode="&#xf09b;" d="M1536 640q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -39.5 7t-12.5 30v211q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 121 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-86 13.5 q-44 -113 -7 -204q-79 -85 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-40 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23 q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -89t0.5 -54q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf09c;" horiz-adv-x="1664" d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5 t316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="&#xf09d;" horiz-adv-x="1920" d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608 q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
-<glyph unicode="&#xf09e;" horiz-adv-x="1408" d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5 t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294 q187 -186 294 -425.5t120 -501.5z" />
-<glyph unicode="&#xf0a0;" d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5 h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75 l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
-<glyph unicode="&#xf0a1;" horiz-adv-x="1792" d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5 t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
-<glyph unicode="&#xf0a2;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5 t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
-<glyph unicode="&#xf0a3;" d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70 l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70 l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
-<glyph unicode="&#xf0a4;" horiz-adv-x="1792" d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106 q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43 q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5 t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
-<glyph unicode="&#xf0a5;" horiz-adv-x="1792" d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-2 3 -3.5 4.5t-4 4.5t-4.5 5q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576 q-50 0 -89 -38.5t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45 t45 -19t45 19t19 45zM1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128 q0 122 81.5 189t206.5 67q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf0a6;" d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576 q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5 t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76 q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
-<glyph unicode="&#xf0a7;" d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33 t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580 q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100 q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
-<glyph unicode="&#xf0a8;" d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0a9;" d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0aa;" d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0ab;" d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0ac;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11 q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 10.5t-9.5 10.5q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5 q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5 q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5 t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-5 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3 q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25 q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5 t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5 t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10t17 -20q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21 q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5 q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3 q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5 t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q7 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5 q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7 q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
-<glyph unicode="&#xf0ad;" horiz-adv-x="1664" d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5 t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
-<glyph unicode="&#xf0ae;" horiz-adv-x="1792" d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19 t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0b0;" horiz-adv-x="1408" d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
-<glyph unicode="&#xf0b1;" horiz-adv-x="1792" d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68 t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf0b2;" d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144 l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z " />
-<glyph unicode="&#xf0c0;" horiz-adv-x="1920" d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75 t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5 t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
-<glyph unicode="&#xf0c1;" horiz-adv-x="1664" d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26 l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15 t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207 q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
-<glyph unicode="&#xf0c2;" horiz-adv-x="1920" d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z " />
-<glyph unicode="&#xf0c3;" horiz-adv-x="1664" d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
-<glyph unicode="&#xf0c4;" horiz-adv-x="1792" d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84 q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148 q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108 q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6 q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
-<glyph unicode="&#xf0c5;" horiz-adv-x="1792" d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299 h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
-<glyph unicode="&#xf0c6;" horiz-adv-x="1408" d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181 l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235 z" />
-<glyph unicode="&#xf0c7;" d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5 h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0c8;" d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0c9;" d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45 t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0ca;" horiz-adv-x="1792" d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5 t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf0cb;" horiz-adv-x="1792" d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362 q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5 t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 122t0.5 121v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5 t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
-<glyph unicode="&#xf0cc;" horiz-adv-x="1792" d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 97 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6 l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -55 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23 l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
-<glyph unicode="&#xf0cd;" d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47 q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41 q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472 q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
-<glyph unicode="&#xf0ce;" horiz-adv-x="1664" d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23 v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192 q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192 q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113 z" />
-<glyph unicode="&#xf0d0;" horiz-adv-x="1664" d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276 l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
-<glyph unicode="&#xf0d1;" horiz-adv-x="1792" d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5 t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38 t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d2;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134 q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33 q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf0d3;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5 t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5 t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
-<glyph unicode="&#xf0d4;" d="M829 318q0 -76 -58.5 -112.5t-139.5 -36.5q-41 0 -80.5 9.5t-75.5 28.5t-58 53t-22 78q0 46 25 80t65.5 51.5t82 25t84.5 7.5q20 0 31 -2q2 -1 23 -16.5t26 -19t23 -18t24.5 -22t19 -22.5t17 -26t9 -26.5t4.5 -31.5zM755 863q0 -60 -33 -99.5t-92 -39.5q-53 0 -93 42.5 t-57.5 96.5t-17.5 106q0 61 32 104t92 43q53 0 93.5 -45t58 -101t17.5 -107zM861 1120l88 64h-265q-85 0 -161 -32t-127.5 -98t-51.5 -153q0 -93 64.5 -154.5t158.5 -61.5q22 0 43 3q-13 -29 -13 -54q0 -44 40 -94q-175 -12 -257 -63q-47 -29 -75.5 -73t-28.5 -95 q0 -43 18.5 -77.5t48.5 -56.5t69 -37t77.5 -21t76.5 -6q60 0 120.5 15.5t113.5 46t86 82.5t33 117q0 49 -20 89.5t-49 66.5t-58 47.5t-49 44t-20 44.5t15.5 42.5t37.5 39.5t44 42t37.5 59.5t15.5 82.5q0 60 -22.5 99.5t-72.5 90.5h83zM1152 672h128v64h-128v128h-64v-128 h-128v-64h128v-160h64v160zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0d5;" horiz-adv-x="1664" d="M735 740q0 -36 32 -70.5t77.5 -68t90.5 -73.5t77 -104t32 -142q0 -90 -48 -173q-72 -122 -211 -179.5t-298 -57.5q-132 0 -246.5 41.5t-171.5 137.5q-37 60 -37 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 42 -47.5 74t-15.5 73q0 36 21 85q-46 -4 -68 -4 q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q77 66 182.5 98t217.5 32h418l-138 -88h-131q74 -63 112 -133t38 -160q0 -72 -24.5 -129.5t-59 -93t-69.5 -65t-59.5 -61.5t-24.5 -66zM589 836q38 0 78 16.5t66 43.5q53 57 53 159q0 58 -17 125t-48.5 129.5 t-84.5 103.5t-117 41q-42 0 -82.5 -19.5t-65.5 -52.5q-47 -59 -47 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26zM591 -37q58 0 111.5 13t99 39t73 73t27.5 109q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -48 2 q-53 0 -105 -7t-107.5 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -70 35 -123.5t91.5 -83t119 -44t127.5 -14.5zM1401 839h213v-108h-213v-219h-105v219h-212v108h212v217h105v-217z" />
-<glyph unicode="&#xf0d6;" horiz-adv-x="1920" d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384 v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d7;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0d8;" horiz-adv-x="1024" d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0d9;" horiz-adv-x="640" d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf0da;" horiz-adv-x="640" d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0db;" horiz-adv-x="1664" d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf0dc;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0dd;" horiz-adv-x="1024" d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0de;" horiz-adv-x="1024" d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
-<glyph unicode="&#xf0e0;" horiz-adv-x="1792" d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123 q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
-<glyph unicode="&#xf0e1;" d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329 q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
-<glyph unicode="&#xf0e2;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
-<glyph unicode="&#xf0e3;" horiz-adv-x="1792" d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5 t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14 q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28 q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
-<glyph unicode="&#xf0e4;" horiz-adv-x="1792" d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5 t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5 t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29 q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="&#xf0e5;" horiz-adv-x="1792" d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640 q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5 t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
-<glyph unicode="&#xf0e6;" horiz-adv-x="1792" d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257 t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5 t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129 q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
-<glyph unicode="&#xf0e7;" horiz-adv-x="896" d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
-<glyph unicode="&#xf0e8;" horiz-adv-x="1792" d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320 q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68 z" />
-<glyph unicode="&#xf0e9;" horiz-adv-x="1664" d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97 q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69 q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
-<glyph unicode="&#xf0ea;" horiz-adv-x="1792" d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28 h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
-<glyph unicode="&#xf0eb;" horiz-adv-x="1024" d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134 q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47 q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5 t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
-<glyph unicode="&#xf0ec;" horiz-adv-x="1792" d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9 q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
-<glyph unicode="&#xf0ed;" horiz-adv-x="1920" d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="&#xf0ee;" horiz-adv-x="1920" d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088 q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
-<glyph unicode="&#xf0f0;" horiz-adv-x="1408" d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56 t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68 t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5 t271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf0f1;" horiz-adv-x="1408" d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48 t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252 t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="&#xf0f2;" horiz-adv-x="1792" d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66 t66 -158z" />
-<glyph unicode="&#xf0f3;" horiz-adv-x="1792" d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5 t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
-<glyph unicode="&#xf0f4;" horiz-adv-x="1920" d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45 t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
-<glyph unicode="&#xf0f5;" horiz-adv-x="1408" d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45 t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f6;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704 q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
-<glyph unicode="&#xf0f7;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f8;" horiz-adv-x="1408" d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5 t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320 v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0f9;" horiz-adv-x="1920" d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5 t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152 q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf0fa;" horiz-adv-x="1792" d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32 q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf0fb;" horiz-adv-x="1920" d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96 q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q261 -58 287 -93z" />
-<glyph unicode="&#xf0fc;" horiz-adv-x="1664" d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
-<glyph unicode="&#xf0fd;" d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf0fe;" d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf100;" horiz-adv-x="1024" d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
-<glyph unicode="&#xf101;" horiz-adv-x="1024" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23 l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf102;" horiz-adv-x="1152" d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393 q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf103;" horiz-adv-x="1152" d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23 t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf104;" horiz-adv-x="640" d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf105;" horiz-adv-x="640" d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf106;" horiz-adv-x="1152" d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
-<glyph unicode="&#xf107;" horiz-adv-x="1152" d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
-<glyph unicode="&#xf108;" horiz-adv-x="1920" d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19 t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf109;" horiz-adv-x="1920" d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
-<glyph unicode="&#xf10a;" horiz-adv-x="1152" d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832 q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
-<glyph unicode="&#xf10b;" horiz-adv-x="768" d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136 q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf10c;" d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103 t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf10d;" horiz-adv-x="1664" d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
-<glyph unicode="&#xf10e;" horiz-adv-x="1664" d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216 v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
-<glyph unicode="&#xf110;" horiz-adv-x="1792" d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5 t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5 q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf111;" d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf112;" horiz-adv-x="1792" d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19 l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
-<glyph unicode="&#xf113;" horiz-adv-x="1664" d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320 q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86 t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218 q0 -87 -27 -168q136 -160 136 -398z" />
-<glyph unicode="&#xf114;" horiz-adv-x="1664" d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320 q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
-<glyph unicode="&#xf115;" horiz-adv-x="1920" d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68 v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z " />
-<glyph unicode="&#xf116;" horiz-adv-x="1792" />
-<glyph unicode="&#xf117;" horiz-adv-x="1792" />
-<glyph unicode="&#xf118;" d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5 t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf119;" d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204 t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf11a;" d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf11b;" horiz-adv-x="1920" d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150 t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
-<glyph unicode="&#xf11c;" horiz-adv-x="1920" d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16 h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16 h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96 q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896 h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
-<glyph unicode="&#xf11d;" horiz-adv-x="1792" d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9 h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102 q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="&#xf11e;" horiz-adv-x="1792" d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2 q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266 q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8 q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
-<glyph unicode="&#xf120;" horiz-adv-x="1664" d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9 t9 -23z" />
-<glyph unicode="&#xf121;" horiz-adv-x="1920" d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5 l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
-<glyph unicode="&#xf122;" horiz-adv-x="1792" d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1 q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
-<glyph unicode="&#xf123;" horiz-adv-x="1664" d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5 l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
-<glyph unicode="&#xf124;" horiz-adv-x="1408" d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
-<glyph unicode="&#xf125;" horiz-adv-x="1664" d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23 v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf126;" horiz-adv-x="1024" d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5 q-2 -287 -226 -414q-68 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497 q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
-<glyph unicode="&#xf127;" horiz-adv-x="1664" d="M439 265l-256 -256q-10 -9 -23 -9q-12 0 -23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320 q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18 l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9 t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="&#xf128;" horiz-adv-x="1024" d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5 t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
-<glyph unicode="&#xf129;" horiz-adv-x="640" d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192 q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf12a;" horiz-adv-x="640" d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
-<glyph unicode="&#xf12b;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1534 846v-206h-514l-3 27 q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5t-65.5 -51.5t-30.5 -63h232v80 h126z" />
-<glyph unicode="&#xf12c;" d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3l-9 -21q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109zM1536 -50v-206h-514l-4 27 q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73h232v80h126z" />
-<glyph unicode="&#xf12d;" horiz-adv-x="1920" d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
-<glyph unicode="&#xf12e;" horiz-adv-x="1664" d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5 t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89 q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117 q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
-<glyph unicode="&#xf130;" horiz-adv-x="1152" d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5 t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
-<glyph unicode="&#xf131;" horiz-adv-x="1408" d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128 q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23 t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
-<glyph unicode="&#xf132;" horiz-adv-x="1280" d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150 t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf133;" horiz-adv-x="1664" d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280 q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf134;" horiz-adv-x="1408" d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800 q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113 q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
-<glyph unicode="&#xf135;" horiz-adv-x="1664" d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1 q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
-<glyph unicode="&#xf136;" horiz-adv-x="1792" d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
-<glyph unicode="&#xf137;" d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf138;" d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf139;" d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf13a;" d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5 t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf13b;" horiz-adv-x="1408" d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
-<glyph unicode="&#xf13c;" horiz-adv-x="1792" d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
-<glyph unicode="&#xf13d;" horiz-adv-x="1792" d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-13 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352 q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19 t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf13e;" horiz-adv-x="1152" d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181 v-320h736z" />
-<glyph unicode="&#xf140;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150 t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640 q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf141;" horiz-adv-x="1408" d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf142;" horiz-adv-x="384" d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192 q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
-<glyph unicode="&#xf143;" d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 232 -177 396t-396 177q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128q13 0 23 10 t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf144;" d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56 q16 -8 32 -8q17 0 32 9z" />
-<glyph unicode="&#xf145;" horiz-adv-x="1792" d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136 t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
-<glyph unicode="&#xf146;" d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="&#xf147;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5 t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf148;" horiz-adv-x="1024" d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
-<glyph unicode="&#xf149;" horiz-adv-x="1024" d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
-<glyph unicode="&#xf14a;" d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5 t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14b;" d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14c;" d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14d;" d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q10 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5 t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf14e;" d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf150;" d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf151;" d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf152;" d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5 t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf153;" horiz-adv-x="1024" d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9 t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26 l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
-<glyph unicode="&#xf154;" horiz-adv-x="1024" d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7 q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
-<glyph unicode="&#xf155;" horiz-adv-x="1024" d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43 t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5 t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50 t53 -63.5t31.5 -76.5t13 -94z" />
-<glyph unicode="&#xf156;" horiz-adv-x="898" d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102 q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf157;" horiz-adv-x="1027" d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61 l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
-<glyph unicode="&#xf158;" horiz-adv-x="1280" d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128 q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
-<glyph unicode="&#xf159;" horiz-adv-x="1792" d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23 t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28 q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf15a;" horiz-adv-x="1280" d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164 l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30 t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
-<glyph unicode="&#xf15b;" d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
-<glyph unicode="&#xf15c;" d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
-<glyph unicode="&#xf15d;" horiz-adv-x="1664" d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23 v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162 l230 -662h70z" />
-<glyph unicode="&#xf15e;" horiz-adv-x="1664" d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150 v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248 v119h121z" />
-<glyph unicode="&#xf160;" horiz-adv-x="1792" d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832 q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf161;" horiz-adv-x="1792" d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192 q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf162;" d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23 zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5 t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
-<glyph unicode="&#xf163;" d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9 t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13 q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
-<glyph unicode="&#xf164;" horiz-adv-x="1664" d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76 q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5 t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
-<glyph unicode="&#xf165;" horiz-adv-x="1664" d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135 t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121 t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
-<glyph unicode="&#xf166;" d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 16 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15 q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38 q21 -28 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5 q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78l24 -69t23 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38q-51 0 -78 -38 q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960 q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf167;" d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73 q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51 q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99 q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-37 -51 -106 -51q-67 0 -105 51 q-28 38 -28 118v175q0 80 28 117q38 51 105 51q69 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
-<glyph unicode="&#xf168;" horiz-adv-x="1408" d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942 q25 45 64 45h241q22 0 31 -15z" />
-<glyph unicode="&#xf169;" d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1 l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf16a;" horiz-adv-x="1792" d="M1280 640q0 37 -30 54l-512 320q-31 20 -65 2q-33 -18 -33 -56v-640q0 -38 33 -56q16 -8 31 -8q20 0 34 10l512 320q30 17 30 54zM1792 640q0 -96 -1 -150t-8.5 -136.5t-22.5 -147.5q-16 -73 -69 -123t-124 -58q-222 -25 -671 -25t-671 25q-71 8 -124.5 58t-69.5 123 q-14 65 -21.5 147.5t-8.5 136.5t-1 150t1 150t8.5 136.5t22.5 147.5q16 73 69 123t124 58q222 25 671 25t671 -25q71 -8 124.5 -58t69.5 -123q14 -65 21.5 -147.5t8.5 -136.5t1 -150z" />
-<glyph unicode="&#xf16b;" horiz-adv-x="1792" d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
-<glyph unicode="&#xf16c;" horiz-adv-x="1408" d="M928 135v-151l-707 -1v151zM1169 481v-701l-1 -35v-1h-1132l-35 1h-1v736h121v-618h928v618h120zM241 393l704 -65l-13 -150l-705 65zM309 709l683 -183l-39 -146l-683 183zM472 1058l609 -360l-77 -130l-609 360zM832 1389l398 -585l-124 -85l-399 584zM1285 1536 l121 -697l-149 -26l-121 697z" />
-<glyph unicode="&#xf16d;" d="M1362 110v648h-135q20 -63 20 -131q0 -126 -64 -232.5t-174 -168.5t-240 -62q-197 0 -337 135.5t-140 327.5q0 68 20 131h-141v-648q0 -26 17.5 -43.5t43.5 -17.5h1069q25 0 43 17.5t18 43.5zM1078 643q0 124 -90.5 211.5t-218.5 87.5q-127 0 -217.5 -87.5t-90.5 -211.5 t90.5 -211.5t217.5 -87.5q128 0 218.5 87.5t90.5 211.5zM1362 1003v165q0 28 -20 48.5t-49 20.5h-174q-29 0 -49 -20.5t-20 -48.5v-165q0 -29 20 -49t49 -20h174q29 0 49 20t20 49zM1536 1211v-1142q0 -81 -58 -139t-139 -58h-1142q-81 0 -139 58t-58 139v1142q0 81 58 139 t139 58h1142q81 0 139 -58t58 -139z" />
-<glyph unicode="&#xf16e;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150 t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
-<glyph unicode="&#xf170;" d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf171;" horiz-adv-x="1408" d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22 t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18 t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5 t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
-<glyph unicode="&#xf172;" d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5 t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120 v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf173;" horiz-adv-x="1024" d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14 q78 2 134 29z" />
-<glyph unicode="&#xf174;" d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf175;" horiz-adv-x="768" d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
-<glyph unicode="&#xf176;" horiz-adv-x="768" d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
-<glyph unicode="&#xf177;" horiz-adv-x="1792" d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf178;" horiz-adv-x="1792" d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
-<glyph unicode="&#xf179;" horiz-adv-x="1408" d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q112 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65 q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
-<glyph unicode="&#xf17a;" horiz-adv-x="1664" d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
-<glyph unicode="&#xf17b;" horiz-adv-x="1408" d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30 t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5 h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
-<glyph unicode="&#xf17c;" d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-7 -10 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7 q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15 q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5 t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19 q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63 q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18l-4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92 q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152 q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-14 -1 -7 -7l4 -2 q14 -4 18 -31q0 -3 8 2zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5t-30 -18.5 t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43q-19 4 -51 9.5 t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49t-14 -48 q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54q110 143 124 195 q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5t-40.5 -33.5t-61 -14 q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5t15.5 47.5q1 -31 8 -56.5 t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
-<glyph unicode="&#xf17d;" d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81 t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19 q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -6 6.5 -17.5t7.5 -16.5q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6 t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf17e;" d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5 t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5 q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80 q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
-<glyph unicode="&#xf180;" horiz-adv-x="1280" d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324 l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
-<glyph unicode="&#xf181;" d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408 q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf182;" horiz-adv-x="1280" d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43 q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf183;" horiz-adv-x="1024" d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf184;" d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf185;" horiz-adv-x="1792" d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4 l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94 q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
-<glyph unicode="&#xf186;" d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61 t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
-<glyph unicode="&#xf187;" horiz-adv-x="1792" d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536 q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf188;" horiz-adv-x="1664" d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207 q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19 t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
-<glyph unicode="&#xf189;" horiz-adv-x="1920" d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-78 -100 -90 -131q-17 -41 14 -81q17 -21 81 -82h1l1 -1l1 -1l2 -2q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58 t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6 q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q17 19 38 30q53 26 239 24 q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2 q39 5 64 -2.5t31 -16.5z" />
-<glyph unicode="&#xf18a;" horiz-adv-x="1792" d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12 q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422 q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178 q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
-<glyph unicode="&#xf18b;" d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495 q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
-<glyph unicode="&#xf18c;" horiz-adv-x="1408" d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5 t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56 t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -5 1 -50.5t-1 -71.5q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5 t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
-<glyph unicode="&#xf18d;" horiz-adv-x="1280" d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z " />
-<glyph unicode="&#xf18e;" d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf190;" d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198 t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf191;" d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf192;" d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5 t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf193;" horiz-adv-x="1664" d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128 q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 16 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
-<glyph unicode="&#xf194;" d="M1254 899q16 85 -21 132q-52 65 -187 45q-17 -3 -41 -12.5t-57.5 -30.5t-64.5 -48.5t-59.5 -70t-44.5 -91.5q80 7 113.5 -16t26.5 -99q-5 -52 -52 -143q-43 -78 -71 -99q-44 -32 -87 14q-23 24 -37.5 64.5t-19 73t-10 84t-8.5 71.5q-23 129 -34 164q-12 37 -35.5 69 t-50.5 40q-57 16 -127 -25q-54 -32 -136.5 -106t-122.5 -102v-7q16 -8 25.5 -26t21.5 -20q21 -3 54.5 8.5t58 10.5t41.5 -30q11 -18 18.5 -38.5t15 -48t12.5 -40.5q17 -46 53 -187q36 -146 57 -197q42 -99 103 -125q43 -12 85 -1.5t76 31.5q131 77 250 237 q104 139 172.5 292.5t82.5 226.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf195;" horiz-adv-x="1152" d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160 q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf196;" horiz-adv-x="1408" d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832 q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf197;" horiz-adv-x="2176" d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40 t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29 q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
-<glyph unicode="&#xf198;" horiz-adv-x="1664" d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9 q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102 t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
-<glyph unicode="&#xf199;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69 q-46 32 -141.5 92.5t-142.5 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13 t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
-<glyph unicode="&#xf19a;" horiz-adv-x="1792" d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5 t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21 t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286 t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273 t273 -182.5t331.5 -68z" />
-<glyph unicode="&#xf19b;" horiz-adv-x="1792" d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
-<glyph unicode="&#xf19c;" horiz-adv-x="2048" d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64 q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
-<glyph unicode="&#xf19d;" horiz-adv-x="2304" d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433 q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
-<glyph unicode="&#xf19e;" d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q43 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0 q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
-<glyph unicode="&#xf1a0;" horiz-adv-x="1280" d="M981 197q0 25 -7 49t-14.5 42t-27 41.5t-29.5 35t-38.5 34.5t-36.5 29t-41.5 30t-36.5 26q-16 2 -49 2q-53 0 -104.5 -7t-107 -25t-97 -46t-68.5 -74.5t-27 -105.5q0 -56 23.5 -102t61 -75.5t87 -50t100 -29t101.5 -8.5q58 0 111.5 13t99 39t73 73t27.5 109zM864 1055 q0 59 -17 125.5t-48 129t-84 103.5t-117 41q-42 0 -82.5 -19.5t-66.5 -52.5q-46 -59 -46 -160q0 -46 10 -97.5t31.5 -103t52 -92.5t75 -67t96.5 -26q37 0 77.5 16.5t65.5 43.5q53 56 53 159zM752 1536h417l-137 -88h-132q75 -63 113 -133t38 -160q0 -72 -24.5 -129.5 t-59.5 -93t-69.5 -65t-59 -61.5t-24.5 -66q0 -36 32 -70.5t77 -68t90.5 -73.5t77.5 -104t32 -142q0 -91 -49 -173q-71 -122 -209.5 -179.5t-298.5 -57.5q-132 0 -246.5 41.5t-172.5 137.5q-36 59 -36 131q0 81 44.5 150t118.5 115q131 82 404 100q-32 41 -47.5 73.5 t-15.5 73.5q0 40 21 85q-46 -4 -68 -4q-148 0 -249.5 96.5t-101.5 244.5q0 82 36 159t99 131q76 66 182 98t218 32z" />
-<glyph unicode="&#xf1a1;" horiz-adv-x="2304" d="M1509 107q0 -14 -12 -29q-52 -59 -147.5 -83t-196.5 -24q-252 0 -346 107q-12 15 -12 29q0 17 12 29.5t29 12.5q15 0 30 -12q58 -49 125.5 -66t159.5 -17t160 17t127 66q15 12 30 12q17 0 29 -12.5t12 -29.5zM978 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5 t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM1622 498q0 -61 -43 -104t-104 -43q-60 0 -104.5 43.5t-44.5 103.5q0 61 44 105t105 44t104 -44t43 -105zM415 793q-39 27 -88 27q-66 0 -113 -47t-47 -113q0 -72 54 -121q53 141 194 254zM2020 382q0 222 -249 387 q-128 85 -291.5 126.5t-331.5 41.5t-331.5 -41.5t-292.5 -126.5q-249 -165 -249 -387t249 -387q129 -85 292.5 -126.5t331.5 -41.5t331.5 41.5t291.5 126.5q249 165 249 387zM2137 660q0 66 -47 113t-113 47q-50 0 -93 -30q140 -114 192 -256q61 48 61 126zM1993 1335 q0 49 -34.5 83.5t-82.5 34.5q-49 0 -83.5 -34.5t-34.5 -83.5q0 -48 34.5 -82.5t83.5 -34.5q48 0 82.5 34.5t34.5 82.5zM2220 660q0 -65 -33 -122t-89 -90q5 -35 5 -66q0 -139 -79 -255.5t-208 -201.5q-140 -92 -313.5 -136.5t-354.5 -44.5t-355 44.5t-314 136.5 q-129 85 -208 201.5t-79 255.5q0 36 6 71q-53 33 -83.5 88.5t-30.5 118.5q0 100 71 171.5t172 71.5q91 0 159 -60q265 170 638 177l144 456q10 29 40 29q24 0 384 -90q24 55 74 88t110 33q82 0 141 -59t59 -142t-59 -141.5t-141 -58.5q-83 0 -141.5 58.5t-59.5 140.5 l-339 80l-125 -395q349 -15 603 -179q71 63 163 63q101 0 172 -71.5t71 -171.5z" />
-<glyph unicode="&#xf1a2;" d="M950 393q7 7 17.5 7t17.5 -7t7 -18t-7 -18q-65 -64 -208 -64h-1h-1q-143 0 -207 64q-8 7 -8 18t8 18q7 7 17.5 7t17.5 -7q49 -51 172 -51h1h1q122 0 173 51zM671 613q0 -37 -26 -64t-63 -27t-63 27t-26 64t26 63t63 26t63 -26t26 -63zM1214 1049q-29 0 -50 21t-21 50 q0 30 21 51t50 21q30 0 51 -21t21 -51q0 -29 -21 -50t-51 -21zM1216 1408q132 0 226 -94t94 -227v-894q0 -133 -94 -227t-226 -94h-896q-132 0 -226 94t-94 227v894q0 133 94 227t226 94h896zM1321 596q35 14 57 45.5t22 70.5q0 51 -36 87.5t-87 36.5q-60 0 -98 -48 q-151 107 -375 115l83 265l206 -49q1 -50 36.5 -85t84.5 -35q50 0 86 35.5t36 85.5t-36 86t-86 36q-36 0 -66 -20.5t-45 -53.5l-227 54q-9 2 -17.5 -2.5t-11.5 -14.5l-95 -302q-224 -4 -381 -113q-36 43 -93 43q-51 0 -87 -36.5t-36 -87.5q0 -37 19.5 -67.5t52.5 -45.5 q-7 -25 -7 -54q0 -98 74 -181.5t201.5 -132t278.5 -48.5q150 0 277.5 48.5t201.5 132t74 181.5q0 27 -6 54zM971 702q37 0 63 -26t26 -63t-26 -64t-63 -27t-63 27t-26 64t26 63t63 26z" />
-<glyph unicode="&#xf1a3;" d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150 v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103 t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1a4;" horiz-adv-x="1920" d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328 v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
-<glyph unicode="&#xf1a5;" d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5 t84.5 -203.5z" />
-<glyph unicode="&#xf1a6;" horiz-adv-x="2048" d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123 v-369h123z" />
-<glyph unicode="&#xf1a7;" d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101 v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1a8;" horiz-adv-x="2038" d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14 q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24 q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33 q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5 t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43 q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5 t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13 t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
-<glyph unicode="&#xf1a9;" d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10 q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14 q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14 t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44 q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
-<glyph unicode="&#xf1aa;" d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5 t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5 q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126 t135.5 51q85 0 145 -60.5t60 -145.5z" />
-<glyph unicode="&#xf1ab;" d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5 q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28 q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11 q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q106 35 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5 q20 0 20 -21v-418z" />
-<glyph unicode="&#xf1ac;" horiz-adv-x="1792" d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48 l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23 t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128 q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128 q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
-<glyph unicode="&#xf1ad;" d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9 t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9 t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64 q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64 q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9 t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
-<glyph unicode="&#xf1ae;" horiz-adv-x="1280" d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68t68 28t68 -28l228 -228h368l228 228q28 28 68 28t68 -28t28 -68t-28 -68zM864 1152q0 -93 -65.5 -158.5 t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf1b0;" horiz-adv-x="1664" d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5 q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819 q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5 t100.5 134t141.5 55.5z" />
-<glyph unicode="&#xf1b1;" horiz-adv-x="768" d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
-<glyph unicode="&#xf1b2;" horiz-adv-x="1792" d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z " />
-<glyph unicode="&#xf1b3;" horiz-adv-x="2304" d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67 t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-5 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70 v-400l434 -186q36 -16 57 -48t21 -70z" />
-<glyph unicode="&#xf1b4;" horiz-adv-x="2048" d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658 q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204 q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
-<glyph unicode="&#xf1b5;" d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5 t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217 t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
-<glyph unicode="&#xf1b6;" horiz-adv-x="1792" d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5 q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89 q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
-<glyph unicode="&#xf1b7;" d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5 q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5 q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z " />
-<glyph unicode="&#xf1b8;" horiz-adv-x="1792" d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188 l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5 t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1 q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
-<glyph unicode="&#xf1b9;" horiz-adv-x="2048" d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384 q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5 l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf1ba;" horiz-adv-x="2048" d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5 t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
-<glyph unicode="&#xf1bb;" d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384 q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
-<glyph unicode="&#xf1bc;" d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64 q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37 q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1bd;" horiz-adv-x="1024" d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
-<glyph unicode="&#xf1be;" horiz-adv-x="2304" d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11 q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245 q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785 l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242 q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236q0 -11 -8 -19 t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786q-13 2 -22 11t-9 22v899 q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
-<glyph unicode="&#xf1c0;" d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127 t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5 t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
-<glyph unicode="&#xf1c1;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197 q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8 q-1 1 -1 2t-0.5 1.5t-0.5 1.5q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
-<glyph unicode="&#xf1c2;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4l-3 21q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5t-3.5 -21.5l-4 -21h-4l-2 21 q-2 26 -7 46l-99 438h90v107h-300z" />
-<glyph unicode="&#xf1c3;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107 h-290v-107h68l189 -272l-194 -283h-68z" />
-<glyph unicode="&#xf1c4;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
-<glyph unicode="&#xf1c5;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
-<glyph unicode="&#xf1c6;" d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400 v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79 q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
-<glyph unicode="&#xf1c7;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5 q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
-<glyph unicode="&#xf1c8;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
-<glyph unicode="&#xf1c9;" d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243 l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
-<glyph unicode="&#xf1ca;" d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406 q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
-<glyph unicode="&#xf1cb;" horiz-adv-x="1792" d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546 q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
-<glyph unicode="&#xf1cc;" horiz-adv-x="2048" d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94 q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55 t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97q14 -16 29.5 -34t34.5 -40t29 -34q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5 t-85 -189.5z" />
-<glyph unicode="&#xf1cd;" horiz-adv-x="1792" d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194 q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5 t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
-<glyph unicode="&#xf1ce;" horiz-adv-x="1792" d="M1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348q0 222 101 414.5t276.5 317t390.5 155.5v-260q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 q0 230 -145.5 406t-366.5 221v260q215 -31 390.5 -155.5t276.5 -317t101 -414.5z" />
-<glyph unicode="&#xf1d0;" horiz-adv-x="1792" d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41 t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170 t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136 q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
-<glyph unicode="&#xf1d1;" horiz-adv-x="1792" d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251 l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162 q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33 q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5 t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71 t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
-<glyph unicode="&#xf1d2;" d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85 q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392 q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072 q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1d3;" horiz-adv-x="1792" d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58 q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47 q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171 v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
-<glyph unicode="&#xf1d4;" d="M825 547l343 588h-150q-21 -39 -63.5 -118.5t-68 -128.5t-59.5 -118.5t-60 -128.5h-3q-21 48 -44.5 97t-52 105.5t-46.5 92t-54 104.5t-49 95h-150l323 -589v-435h134v436zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960 q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1d5;" horiz-adv-x="1280" d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5 t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153 t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
-<glyph unicode="&#xf1d6;" horiz-adv-x="1792" d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5 q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20 t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5 t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
-<glyph unicode="&#xf1d7;" horiz-adv-x="2048" d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25 q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5 q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109 q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
-<glyph unicode="&#xf1d8;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
-<glyph unicode="&#xf1d9;" horiz-adv-x="1792" d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137 l863 639l-478 -797z" />
-<glyph unicode="&#xf1da;" d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5 t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23 t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf1db;" d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103 t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1dc;" horiz-adv-x="1792" d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15 t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2 t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160 q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5 q0 -26 -12 -48t-36 -22z" />
-<glyph unicode="&#xf1dd;" horiz-adv-x="1280" d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179 q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
-<glyph unicode="&#xf1de;" d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256 q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
-<glyph unicode="&#xf1e0;" d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5 t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
-<glyph unicode="&#xf1e1;" d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5 t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf1e2;" horiz-adv-x="1792" d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5 t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91 q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9 t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
-<glyph unicode="&#xf1e3;" horiz-adv-x="1792" d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323 l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
-<glyph unicode="&#xf1e4;" horiz-adv-x="1792" d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23 v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192 q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23 zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5 t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
-<glyph unicode="&#xf1e5;" horiz-adv-x="1792" d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf1e6;" horiz-adv-x="1792" d="M1755 1083q37 -37 37 -90t-37 -91l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234l401 400 q38 37 91 37t90 -37z" />
-<glyph unicode="&#xf1e7;" horiz-adv-x="1792" d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5 t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q3 -2 11 -7 t11 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
-<glyph unicode="&#xf1e8;" horiz-adv-x="1792" d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
-<glyph unicode="&#xf1e9;" d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36 q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q70 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5 t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87 q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
-<glyph unicode="&#xf1ea;" horiz-adv-x="2048" d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19 t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
-<glyph unicode="&#xf1eb;" horiz-adv-x="2048" d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121 q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
-<glyph unicode="&#xf1ec;" horiz-adv-x="1792" d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5 t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5 t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5 t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38 h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1ed;" horiz-adv-x="1792" d="M1112 1090q0 159 -237 159h-70q-32 0 -59.5 -21.5t-34.5 -52.5l-63 -276q-2 -5 -2 -16q0 -24 17 -39.5t41 -15.5h53q69 0 128.5 13t112.5 41t83.5 81.5t30.5 126.5zM1716 938q0 -265 -220 -428q-219 -161 -612 -161h-61q-32 0 -59 -21.5t-34 -52.5l-73 -316 q-8 -36 -40.5 -61.5t-69.5 -25.5h-213q-31 0 -53 20t-22 51q0 10 13 65h151q34 0 64 23.5t38 56.5l73 316q8 33 37.5 57t63.5 24h61q390 0 607 160t217 421q0 129 -51 207q183 -92 183 -335zM1533 1123q0 -264 -221 -428q-218 -161 -612 -161h-60q-32 0 -59.5 -22t-34.5 -53 l-73 -315q-8 -36 -40 -61.5t-69 -25.5h-214q-31 0 -52.5 19.5t-21.5 51.5q0 8 2 20l300 1301q8 36 40.5 61.5t69.5 25.5h444q68 0 125 -4t120.5 -15t113.5 -30t96.5 -50.5t77.5 -74t49.5 -103.5t18.5 -136z" />
-<glyph unicode="&#xf1ee;" horiz-adv-x="1792" d="M602 949q19 -61 31 -123.5t17 -141.5t-14 -159t-62 -145q-21 81 -67 157t-95.5 127t-99 90.5t-78.5 57.5t-33 19q-62 34 -81.5 100t14.5 128t101 81.5t129 -14.5q138 -83 238 -177zM927 1236q11 -25 20.5 -46t36.5 -100.5t42.5 -150.5t25.5 -179.5t0 -205.5t-47.5 -209.5 t-105.5 -208.5q-51 -72 -138 -72q-54 0 -98 31q-57 40 -69 109t28 127q60 85 81 195t13 199.5t-32 180.5t-39 128t-22 52q-31 63 -8.5 129.5t85.5 97.5q34 17 75 17q47 0 88.5 -25t63.5 -69zM1248 567q-17 -160 -72 -311q-17 131 -63 246q25 174 -5 361q-27 178 -94 342 q114 -90 212 -211q9 -37 15 -80q26 -179 7 -347zM1520 1440q9 -17 23.5 -49.5t43.5 -117.5t50.5 -178t34 -227.5t5 -269t-47 -300t-112.5 -323.5q-22 -48 -66 -75.5t-95 -27.5q-39 0 -74 16q-67 31 -92.5 100t4.5 136q58 126 90 257.5t37.5 239.5t-3.5 213.5t-26.5 180.5 t-38.5 138.5t-32.5 90t-15.5 32.5q-34 65 -11.5 135.5t87.5 104.5q37 20 81 20q49 0 91.5 -25.5t66.5 -70.5z" />
-<glyph unicode="&#xf1f0;" horiz-adv-x="2304" d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27 q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128 q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f1;" horiz-adv-x="2304" d="M671 603h-13q-47 0 -47 -32q0 -22 20 -22q17 0 28 15t12 39zM1066 639h62v3q1 4 0.5 6.5t-1 7t-2 8t-4.5 6.5t-7.5 5t-11.5 2q-28 0 -36 -38zM1606 603h-12q-48 0 -48 -32q0 -22 20 -22q17 0 28 15t12 39zM1925 629q0 41 -30 41q-19 0 -31 -20t-12 -51q0 -42 28 -42 q20 0 32.5 20t12.5 52zM480 770h87l-44 -262h-56l32 201l-71 -201h-39l-4 200l-34 -200h-53l44 262h81l2 -163zM733 663q0 -6 -4 -42q-16 -101 -17 -113h-47l1 22q-20 -26 -58 -26q-23 0 -37.5 16t-14.5 42q0 39 26 60.5t73 21.5q14 0 23 -1q0 3 0.5 5.5t1 4.5t0.5 3 q0 20 -36 20q-29 0 -59 -10q0 4 7 48q38 11 67 11q74 0 74 -62zM889 721l-8 -49q-22 3 -41 3q-27 0 -27 -17q0 -8 4.5 -12t21.5 -11q40 -19 40 -60q0 -72 -87 -71q-34 0 -58 6q0 2 7 49q29 -8 51 -8q32 0 32 19q0 7 -4.5 11.5t-21.5 12.5q-43 20 -43 59q0 72 84 72 q30 0 50 -4zM977 721h28l-7 -52h-29q-2 -17 -6.5 -40.5t-7 -38.5t-2.5 -18q0 -16 19 -16q8 0 16 2l-8 -47q-21 -7 -40 -7q-43 0 -45 47q0 12 8 56q3 20 25 146h55zM1180 648q0 -23 -7 -52h-111q-3 -22 10 -33t38 -11q30 0 58 14l-9 -54q-30 -8 -57 -8q-95 0 -95 95 q0 55 27.5 90.5t69.5 35.5q35 0 55.5 -21t20.5 -56zM1319 722q-13 -23 -22 -62q-22 2 -31 -24t-25 -128h-56l3 14q22 130 29 199h51l-3 -33q14 21 25.5 29.5t28.5 4.5zM1506 763l-9 -57q-28 14 -50 14q-31 0 -51 -27.5t-20 -70.5q0 -30 13.5 -47t38.5 -17q21 0 48 13 l-10 -59q-28 -8 -50 -8q-45 0 -71.5 30.5t-26.5 82.5q0 70 35.5 114.5t91.5 44.5q26 0 61 -13zM1668 663q0 -18 -4 -42q-13 -79 -17 -113h-46l1 22q-20 -26 -59 -26q-23 0 -37 16t-14 42q0 39 25.5 60.5t72.5 21.5q15 0 23 -1q2 7 2 13q0 20 -36 20q-29 0 -59 -10q0 4 8 48 q38 11 67 11q73 0 73 -62zM1809 722q-14 -24 -21 -62q-23 2 -31.5 -23t-25.5 -129h-56l3 14q19 104 29 199h52q0 -11 -4 -33q15 21 26.5 29.5t27.5 4.5zM1950 770h56l-43 -262h-53l3 19q-23 -23 -52 -23q-31 0 -49.5 24t-18.5 64q0 53 27.5 92t64.5 39q31 0 53 -29z M2061 640q0 148 -72.5 273t-198 198t-273.5 73q-181 0 -328 -110q127 -116 171 -284h-50q-44 150 -158 253q-114 -103 -158 -253h-50q44 168 171 284q-147 110 -328 110q-148 0 -273.5 -73t-198 -198t-72.5 -273t72.5 -273t198 -198t273.5 -73q181 0 328 110 q-120 111 -165 264h50q46 -138 152 -233q106 95 152 233h50q-45 -153 -165 -264q147 -110 328 -110q148 0 273.5 73t198 198t72.5 273zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f2;" horiz-adv-x="2304" d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42 q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604 v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569 q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73 t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
-<glyph unicode="&#xf1f3;" horiz-adv-x="2304" d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260 l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279 v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040 q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168 q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5 t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21 h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5 t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
-<glyph unicode="&#xf1f4;" horiz-adv-x="2304" d="M322 689h-15q-19 0 -19 18q0 28 19 85q5 15 15 19.5t28 4.5q77 0 77 -49q0 -41 -30.5 -59.5t-74.5 -18.5zM664 528q-47 0 -47 29q0 62 123 62l3 -3q-5 -88 -79 -88zM1438 687h-15q-19 0 -19 19q0 28 19 85q5 15 14.5 19t28.5 4q77 0 77 -49q0 -41 -30.5 -59.5 t-74.5 -18.5zM1780 527q-47 0 -47 30q0 62 123 62l3 -3q-5 -89 -79 -89zM373 894h-128q-8 0 -14.5 -4t-8.5 -7.5t-7 -12.5q-3 -7 -45 -190t-42 -192q0 -7 5.5 -12.5t13.5 -5.5h62q25 0 32.5 34.5l15 69t32.5 34.5q47 0 87.5 7.5t80.5 24.5t63.5 52.5t23.5 84.5 q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM719 798q-38 0 -74 -6q-2 0 -8.5 -1t-9 -1.5l-7.5 -1.5t-7.5 -2t-6.5 -3t-6.5 -4t-5 -5t-4.5 -7t-4 -9q-9 -29 -9 -39t9 -10q5 0 21.5 5t19.5 6q30 8 58 8q74 0 74 -36q0 -11 -10 -14q-8 -2 -18 -3t-21.5 -1.5t-17.5 -1.5 q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5q0 -38 26 -59.5t64 -21.5q24 0 45.5 6.5t33 13t38.5 23.5q-3 -7 -3 -15t5.5 -13.5t12.5 -5.5h56q1 1 7 3.5t7.5 3.5t5 3.5t5 5.5t2.5 8l45 194q4 13 4 30q0 81 -145 81zM1247 793h-74q-22 0 -39 -23q-5 -7 -29.5 -51 t-46.5 -81.5t-26 -38.5l-5 4q0 77 -27 166q-1 5 -3.5 8.5t-6 6.5t-6.5 5t-8.5 3t-8.5 1.5t-9.5 1t-9 0.5h-10h-8.5q-38 0 -38 -21l1 -5q5 -53 25 -151t25 -143q2 -16 2 -24q0 -19 -30.5 -61.5t-30.5 -58.5q0 -13 40 -13q61 0 76 25l245 415q10 20 10 26q0 9 -8 9zM1489 892 h-129q-18 0 -29 -23q-6 -13 -46.5 -191.5t-40.5 -190.5q0 -20 43 -20h7.5h9h9t9.5 1t8.5 2t8.5 3t6.5 4.5t5.5 6t3 8.5l21 91q2 10 10.5 17t19.5 7q47 0 87.5 7t80.5 24.5t63.5 52.5t23.5 84q0 36 -14.5 61t-41 36.5t-53.5 15.5t-62 4zM1835 798q-26 0 -74 -6 q-38 -6 -48 -16q-7 -8 -11 -19q-8 -24 -8 -39q0 -10 8 -10q1 0 41 12q30 8 58 8q74 0 74 -36q0 -12 -10 -14q-4 -1 -57 -7q-38 -4 -64.5 -10t-56.5 -19.5t-45.5 -39t-15.5 -62.5t26 -58.5t64 -21.5q24 0 45 6t34 13t38 24q-3 -15 -3 -16q0 -5 2 -8.5t6.5 -5.5t8 -3.5 t10.5 -2t9.5 -0.5h9.5h8q42 0 48 25l45 194q3 15 3 31q0 81 -145 81zM2157 889h-55q-25 0 -33 -40q-10 -44 -36.5 -167t-42.5 -190v-5q0 -16 16 -18h1h57q10 0 18.5 6.5t10.5 16.5l83 374h-1l1 5q0 7 -5.5 12.5t-13.5 5.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048 q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f5;" horiz-adv-x="2304" d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109 q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118 q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151 q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31 q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
-<glyph unicode="&#xf1f6;" horiz-adv-x="2048" d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5 l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5 l418 363q10 8 23.5 7t21.5 -11z" />
-<glyph unicode="&#xf1f7;" horiz-adv-x="2048" d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128 q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161 q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
-<glyph unicode="&#xf1f8;" horiz-adv-x="1408" d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704 q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167 q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf1f9;" d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5 t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5 t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf1fa;" d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53 q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24 t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61 t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
-<glyph unicode="&#xf1fb;" horiz-adv-x="1792" d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10 t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
-<glyph unicode="&#xf1fc;" horiz-adv-x="1792" d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5 t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
-<glyph unicode="&#xf1fd;" horiz-adv-x="1792" d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11t55.5 -11t52.5 -38q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5t47 37.5 q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-35 0 -55.5 11t-52.5 38q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38t-58 27 t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448h256v448 h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51 t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
-<glyph unicode="&#xf1fe;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
-<glyph unicode="&#xf200;" horiz-adv-x="1792" d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
-<glyph unicode="&#xf201;" horiz-adv-x="2048" d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9 t9 -23z" />
-<glyph unicode="&#xf202;" horiz-adv-x="1792" d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20 q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50 t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1 q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
-<glyph unicode="&#xf203;" d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73 q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110 q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960 q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
-<glyph unicode="&#xf204;" horiz-adv-x="2048" d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5 t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5 t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
-<glyph unicode="&#xf205;" horiz-adv-x="2048" d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5 t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
-<glyph unicode="&#xf206;" horiz-adv-x="2304" d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94 q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469 q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400 q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
-<glyph unicode="&#xf207;" d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5 h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5 t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
-<glyph unicode="&#xf208;" horiz-adv-x="2048" d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327 q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5 q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
-<glyph unicode="&#xf209;" horiz-adv-x="1280" d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q18 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119 t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5 t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14 q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88 q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5 t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
-<glyph unicode="&#xf20a;" horiz-adv-x="2048" d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206 q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307 t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14 t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
-<glyph unicode="&#xf20b;" d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5 t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
-<glyph unicode="&#xf20c;" d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55 q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410 q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
-<glyph unicode="&#xf20d;" d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
-<glyph unicode="&#xf20e;" horiz-adv-x="2048" d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335 q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5 q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360q2 0 4.5 -1t5.5 -2.5l5 -2.5l188 199v347l-187 194 q-13 -8 -29 -10zM986 1438h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13 zM552 226h402l64 66l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224 l213 -225zM1023 946l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196 l-48 -227l130 227h-82zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
-<glyph unicode="&#xf210;" d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
-<glyph unicode="&#xf211;" d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384 q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
-<glyph unicode="&#xf212;" horiz-adv-x="2048" d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021 q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25 q209 0 374 -102q172 107 374 102z" />
-<glyph unicode="&#xf213;" horiz-adv-x="2048" d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101 q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284 q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
-<glyph unicode="&#xf214;" d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34 l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114 v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378 v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51 h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5 t-43 -34t-16.5 -53.5z" />
-<glyph unicode="&#xf215;" horiz-adv-x="2048" d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832 q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
-<glyph unicode="&#xf216;" horiz-adv-x="2048" d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126.5t-103.5 132.5t-108.5 126t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5 t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113 t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5 q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
-<glyph unicode="&#xf217;" horiz-adv-x="1664" d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf218;" horiz-adv-x="1792" d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5 t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920 q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
-<glyph unicode="&#xf219;" horiz-adv-x="2048" d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20 l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
-<glyph unicode="&#xf21a;" horiz-adv-x="2048" d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83 q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314 v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83 q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
-<glyph unicode="&#xf21b;" d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14 t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5 q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31 t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
-<glyph unicode="&#xf21c;" horiz-adv-x="2304" d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5 t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105 l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226 t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
-<glyph unicode="&#xf21d;" d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12 q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384 q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5 t158.5 -65.5t65.5 -158.5z" />
-<glyph unicode="&#xf21e;" horiz-adv-x="1792" d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221 q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124 t127 -344z" />
-<glyph unicode="&#xf221;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292 q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
-<glyph unicode="&#xf222;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h416q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-419 -420q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5 t431 200.5q144 12 276.5 -30.5t236.5 -129.5l419 419h-261q-14 0 -23 9t-9 23v64zM704 -128q117 0 223.5 45.5t184 123t123 184t45.5 223.5t-45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123 t223.5 -45.5z" />
-<glyph unicode="&#xf223;" horiz-adv-x="1280" d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5 t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf224;" d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5 t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf225;" horiz-adv-x="1792" d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64 q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9 t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf226;" horiz-adv-x="1792" d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23 t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391 q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391 q0 -226 -154 -391q103 -57 218 -57z" />
-<glyph unicode="&#xf227;" horiz-adv-x="1920" d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230 q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9 t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128 q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -29 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
-<glyph unicode="&#xf228;" horiz-adv-x="2048" d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23 t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9 t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5 t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
-<glyph unicode="&#xf229;" horiz-adv-x="1792" d="M1728 1536q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-229 -230l156 -156q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-156 157l-99 -100q87 -104 129.5 -236.5t30.5 -276.5q-22 -250 -200.5 -431t-428.5 -206q-163 -17 -314 39.5 t-256.5 162t-162 256.5t-39.5 314q25 250 206 428.5t431 200.5q144 12 276.5 -30.5t236.5 -129.5l99 99l-156 156q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l156 -156l229 229h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM1280 448q0 117 -45.5 223.5t-123 184t-184 123 t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5z" />
-<glyph unicode="&#xf22a;" horiz-adv-x="1280" d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22 t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5 t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf22b;" horiz-adv-x="2048" d="M2029 685q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-131q-12 -119 -67 -226t-139 -183.5t-196.5 -121.5t-234.5 -45q-180 0 -330.5 91t-234.5 247 t-74 337q8 162 94 300t226.5 219.5t302.5 85.5q166 4 310.5 -71.5t235.5 -208.5t107 -296h131v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM640 128q104 0 198.5 40.5t163.5 109.5t109.5 163.5 t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
-<glyph unicode="&#xf22c;" horiz-adv-x="1280" d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5 t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
-<glyph unicode="&#xf22d;" horiz-adv-x="1792" />
-<glyph unicode="&#xf22e;" horiz-adv-x="1792" />
-<glyph unicode="&#xf22f;" horiz-adv-x="1792" />
-<glyph unicode="&#xf230;" d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
-<glyph unicode="&#xf231;" horiz-adv-x="1280" d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5 l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5 q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
-<glyph unicode="&#xf232;" d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5 t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233 l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
-<glyph unicode="&#xf233;" horiz-adv-x="1792" d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216 q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
-<glyph unicode="&#xf234;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5 t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5 t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
-<glyph unicode="&#xf235;" horiz-adv-x="2048" d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136 q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69 t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
-<glyph unicode="&#xf236;" horiz-adv-x="2048" d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704 q-26 0 -45 -19t-19 -45v-384h1152z" />
-<glyph unicode="&#xf237;" d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
-<glyph unicode="&#xf238;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56 t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
-<glyph unicode="&#xf239;" d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47 t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
-<glyph unicode="&#xf23a;" horiz-adv-x="1792" d="M1792 204v-209h-642v209h134v926h-6l-314 -1135h-243l-310 1135h-8v-926h135v-209h-538v209h69q21 0 43 19.5t22 37.5v881q0 18 -22 40t-43 22h-69v209h672l221 -821h6l223 821h670v-209h-71q-19 0 -41 -22t-22 -40v-881q0 -18 21.5 -37.5t41.5 -19.5h71z" />
-<glyph unicode="&#xf23b;" horiz-adv-x="1792" />
-<glyph unicode="&#xf23c;" horiz-adv-x="1792" />
-<glyph unicode="&#xf23d;" horiz-adv-x="1792" />
-<glyph unicode="&#xf23e;" horiz-adv-x="1792" />
-<glyph unicode="&#xf500;" horiz-adv-x="1792" />
-</font>
-</defs></svg> 
\ No newline at end of file
diff --git a/htdocs/theme/fonts/fontawesome-webfont.ttf b/htdocs/theme/fonts/fontawesome-webfont.ttf
deleted file mode 100755
index ed9372f8ea0fbaa04f42630a48887e4b38945345..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/fonts/fontawesome-webfont.ttf and /dev/null differ
diff --git a/htdocs/theme/fonts/fontawesome-webfont.woff b/htdocs/theme/fonts/fontawesome-webfont.woff
deleted file mode 100755
index 8b280b98fa2fa261aa4b0f8fd061f772073ef83e..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/fonts/fontawesome-webfont.woff and /dev/null differ
diff --git a/htdocs/theme/fonts/fontawesome-webfont.woff2 b/htdocs/theme/fonts/fontawesome-webfont.woff2
deleted file mode 100755
index 3311d585145b1cc1b9581e914acbb32d8542b4f5..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/fonts/fontawesome-webfont.woff2 and /dev/null differ
diff --git a/htdocs/theme/images/logo-ssec.png b/htdocs/theme/images/logo-ssec.png
deleted file mode 100644
index 0167beb725cc6a0184703a1ddea094ed8cb2427b..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/images/logo-ssec.png and /dev/null differ
diff --git a/htdocs/theme/images/logo.png b/htdocs/theme/images/logo.png
deleted file mode 100644
index 15d67df22fca1d05033eaa4965b187ebc766d1da..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/images/logo.png and /dev/null differ
diff --git a/htdocs/theme/images/raintitle.png b/htdocs/theme/images/raintitle.png
deleted file mode 100644
index a15fd166e66966f4c57fe7e1c73ecf4eb2cf7508..0000000000000000000000000000000000000000
Binary files a/htdocs/theme/images/raintitle.png and /dev/null differ
diff --git a/htdocs/theme/js/jquery.js b/htdocs/theme/js/jquery.js
deleted file mode 100755
index d1608e37ffa979b8689bfb868ad8b061b191f6f6..0000000000000000000000000000000000000000
--- a/htdocs/theme/js/jquery.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="<div class='a'></div><div class='a i'></div>",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="<select msallowclip=''><option selected=''></option></select>",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;
-if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?m.queue(this[0],a):void 0===b?this:this.each(function(){var c=m.queue(this,a,b);m._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&m.dequeue(this,a)})},dequeue:function(a){return this.each(function(){m.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=m.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=m._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=["Top","Right","Bottom","Left"],U=function(a,b){return a=b||a,"none"===m.css(a,"display")||!m.contains(a.ownerDocument,a)},V=m.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===m.type(c)){e=!0;for(h in c)m.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,m.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(m(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav></:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="<input type='radio' checked='checked' name='t'/>",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[m.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=Z.test(e)?this.mouseHooks:Y.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new m.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=f.srcElement||y),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,g.filter?g.filter(a,f):a},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,d,e,f=b.button,g=b.fromElement;return null==a.pageX&&null!=b.clientX&&(d=a.target.ownerDocument||y,e=d.documentElement,c=d.body,a.pageX=b.clientX+(e&&e.scrollLeft||c&&c.scrollLeft||0)-(e&&e.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||c&&c.scrollTop||0)-(e&&e.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&g&&(a.relatedTarget=g===a.target?b.toElement:g),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==cb()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===cb()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return m.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return m.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=m.extend(new m.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?m.event.trigger(e,null,b):m.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},m.removeEvent=y.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]===K&&(a[d]=null),a.detachEvent(d,c))},m.Event=function(a,b){return this instanceof m.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ab:bb):this.type=a,b&&m.extend(this,b),this.timeStamp=a&&a.timeStamp||m.now(),void(this[m.expando]=!0)):new m.Event(a,b)},m.Event.prototype={isDefaultPrevented:bb,isPropagationStopped:bb,isImmediatePropagationStopped:bb,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ab,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ab,a&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ab,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},m.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){m.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!m.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.submitBubbles||(m.event.special.submit={setup:function(){return m.nodeName(this,"form")?!1:void m.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=m.nodeName(b,"input")||m.nodeName(b,"button")?b.form:void 0;c&&!m._data(c,"submitBubbles")&&(m.event.add(c,"submit._submit",function(a){a._submit_bubble=!0}),m._data(c,"submitBubbles",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&m.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){return m.nodeName(this,"form")?!1:void m.event.remove(this,"._submit")}}),k.changeBubbles||(m.event.special.change={setup:function(){return X.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(m.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._just_changed=!0)}),m.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),m.event.simulate("change",this,a,!0)})),!1):void m.event.add(this,"beforeactivate._change",function(a){var b=a.target;X.test(b.nodeName)&&!m._data(b,"changeBubbles")&&(m.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||m.event.simulate("change",this.parentNode,a,!0)}),m._data(b,"changeBubbles",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return m.event.remove(this,"._change"),!X.test(this.nodeName)}}),k.focusinBubbles||m.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){m.event.simulate(b,a.target,m.event.fix(a),!0)};m.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=m._data(d,b);e||d.addEventListener(a,c,!0),m._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=m._data(d,b)-1;e?m._data(d,b,e):(d.removeEventListener(a,c,!0),m._removeData(d,b))}}}),m.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(f in a)this.on(f,b,c,a[f],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=bb;else if(!d)return this;return 1===e&&(g=d,d=function(a){return m().off(a),g.apply(this,arguments)},d.guid=g.guid||(g.guid=m.guid++)),this.each(function(){m.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,m(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||"function"==typeof b)&&(c=b,b=void 0),c===!1&&(c=bb),this.each(function(){m.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){m.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?m.event.trigger(a,b,c,!0):void 0}});function db(a){var b=eb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}var eb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",fb=/ jQuery\d+="(?:null|\d+)"/g,gb=new RegExp("<(?:"+eb+")[\\s/>]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/<tbody/i,lb=/<|&#?\w+;/,mb=/<(?:script|style|link)/i,nb=/checked\s*(?:[^=]|=\s*.checked.)/i,ob=/^$|\/(?:java|ecma)script/i,pb=/^true\/(.*)/,qb=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,rb={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:k.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1></$2>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?"<table>"!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Cb[0].contentWindow||Cb[0].contentDocument).document,b.write(),b.close(),c=Eb(a,b),Cb.detach()),Db[a]=c),c}!function(){var a;k.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,d;return c=y.getElementsByTagName("body")[0],c&&c.style?(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(y.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(d),a):void 0}}();var Gb=/^margin/,Hb=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ib,Jb,Kb=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ib=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c.getPropertyValue(b)||c[b]:void 0,c&&(""!==g||m.contains(a.ownerDocument,a)||(g=m.style(a,b)),Hb.test(g)&&Gb.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0===g?g:g+""}):y.documentElement.currentStyle&&(Ib=function(a){return a.currentStyle},Jb=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ib(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Hb.test(g)&&!Kb.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Lb(a,b){return{get:function(){var c=a();if(null!=c)return c?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d,e,f,g,h;if(b=y.createElement("div"),b.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=d&&d.style){c.cssText="float:left;opacity:.5",k.opacity="0.5"===c.opacity,k.cssFloat=!!c.cssFloat,b.style.backgroundClip="content-box",b.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===b.style.backgroundClip,k.boxSizing=""===c.boxSizing||""===c.MozBoxSizing||""===c.WebkitBoxSizing,m.extend(k,{reliableHiddenOffsets:function(){return null==g&&i(),g},boxSizingReliable:function(){return null==f&&i(),f},pixelPosition:function(){return null==e&&i(),e},reliableMarginRight:function(){return null==h&&i(),h}});function i(){var b,c,d,i;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),b.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",e=f=!1,h=!0,a.getComputedStyle&&(e="1%"!==(a.getComputedStyle(b,null)||{}).top,f="4px"===(a.getComputedStyle(b,null)||{width:"4px"}).width,i=b.appendChild(y.createElement("div")),i.style.cssText=b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",i.style.marginRight=i.style.width="0",b.style.width="1px",h=!parseFloat((a.getComputedStyle(i,null)||{}).marginRight)),b.innerHTML="<table><tr><td></td><td>t</td></tr></table>",i=b.getElementsByTagName("td"),i[0].style.cssText="margin:0;border:0;padding:0;display:none",g=0===i[0].offsetHeight,g&&(i[0].style.display="",i[1].style.display="none",g=0===i[0].offsetHeight),c.removeChild(d))}}}(),m.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var Mb=/alpha\([^)]*\)/i,Nb=/opacity\s*=\s*([^)]*)/,Ob=/^(none|table(?!-c[ea]).+)/,Pb=new RegExp("^("+S+")(.*)$","i"),Qb=new RegExp("^([+-])=("+S+")","i"),Rb={position:"absolute",visibility:"hidden",display:"block"},Sb={letterSpacing:"0",fontWeight:"400"},Tb=["Webkit","O","Moz","ms"];function Ub(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=Tb.length;while(e--)if(b=Tb[e]+c,b in a)return b;return d}function Vb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=m._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&U(d)&&(f[g]=m._data(d,"olddisplay",Fb(d.nodeName)))):(e=U(d),(c&&"none"!==c||!e)&&m._data(d,"olddisplay",e?c:m.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function Wb(a,b,c){var d=Pb.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Xb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=m.css(a,c+T[f],!0,e)),d?("content"===c&&(g-=m.css(a,"padding"+T[f],!0,e)),"margin"!==c&&(g-=m.css(a,"border"+T[f]+"Width",!0,e))):(g+=m.css(a,"padding"+T[f],!0,e),"padding"!==c&&(g+=m.css(a,"border"+T[f]+"Width",!0,e)));return g}function Yb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ib(a),g=k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Jb(a,b,f),(0>e||null==e)&&(e=a.style[b]),Hb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Xb(a,b,c||(g?"border":"content"),d,f)+"px"}m.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Jb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":k.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=m.camelCase(b),i=a.style;if(b=m.cssProps[h]||(m.cssProps[h]=Ub(i,h)),g=m.cssHooks[b]||m.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=Qb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(m.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||m.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=m.camelCase(b);return b=m.cssProps[h]||(m.cssProps[h]=Ub(a.style,h)),g=m.cssHooks[b]||m.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Jb(a,b,d)),"normal"===f&&b in Sb&&(f=Sb[b]),""===c||c?(e=parseFloat(f),c===!0||m.isNumeric(e)?e||0:f):f}}),m.each(["height","width"],function(a,b){m.cssHooks[b]={get:function(a,c,d){return c?Ob.test(m.css(a,"display"))&&0===a.offsetWidth?m.swap(a,Rb,function(){return Yb(a,b,d)}):Yb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ib(a);return Wb(a,c,d?Xb(a,b,d,k.boxSizing&&"border-box"===m.css(a,"boxSizing",!1,e),e):0)}}}),k.opacity||(m.cssHooks.opacity={get:function(a,b){return Nb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=m.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===m.trim(f.replace(Mb,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Mb.test(f)?f.replace(Mb,e):f+" "+e)}}),m.cssHooks.marginRight=Lb(k.reliableMarginRight,function(a,b){return b?m.swap(a,{display:"inline-block"},Jb,[a,"marginRight"]):void 0}),m.each({margin:"",padding:"",border:"Width"},function(a,b){m.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+T[d]+b]=f[d]||f[d-2]||f[0];return e}},Gb.test(a)||(m.cssHooks[a+b].set=Wb)}),m.fn.extend({css:function(a,b){return V(this,function(a,b,c){var d,e,f={},g=0;if(m.isArray(b)){for(d=Ib(a),e=b.length;e>g;g++)f[b[g]]=m.css(a,b[g],!1,d);return f}return void 0!==c?m.style(a,b,c):m.css(a,b)},a,b,arguments.length>1)},show:function(){return Vb(this,!0)},hide:function(){return Vb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){U(this)?m(this).show():m(this).hide()})}});function Zb(a,b,c,d,e){return new Zb.prototype.init(a,b,c,d,e)}m.Tween=Zb,Zb.prototype={constructor:Zb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(m.cssNumber[c]?"":"px")
-},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this):Zb.propHooks._default.get(this)},run:function(a){var b,c=Zb.propHooks[this.prop];return this.pos=b=this.options.duration?m.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Zb.propHooks._default.set(this),this}},Zb.prototype.init.prototype=Zb.prototype,Zb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=m.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){m.fx.step[a.prop]?m.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[m.cssProps[a.prop]]||m.cssHooks[a.prop])?m.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Zb.propHooks.scrollTop=Zb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},m.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},m.fx=Zb.prototype.init,m.fx.step={};var $b,_b,ac=/^(?:toggle|show|hide)$/,bc=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),cc=/queueHooks$/,dc=[ic],ec={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=bc.exec(b),f=e&&e[3]||(m.cssNumber[a]?"":"px"),g=(m.cssNumber[a]||"px"!==f&&+d)&&bc.exec(m.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,m.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function fc(){return setTimeout(function(){$b=void 0}),$b=m.now()}function gc(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=T[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function hc(a,b,c){for(var d,e=(ec[b]||[]).concat(ec["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ic(a,b,c){var d,e,f,g,h,i,j,l,n=this,o={},p=a.style,q=a.nodeType&&U(a),r=m._data(a,"fxshow");c.queue||(h=m._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,n.always(function(){n.always(function(){h.unqueued--,m.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=m.css(a,"display"),l="none"===j?m._data(a,"olddisplay")||Fb(a.nodeName):j,"inline"===l&&"none"===m.css(a,"float")&&(k.inlineBlockNeedsLayout&&"inline"!==Fb(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",k.shrinkWrapBlocks()||n.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],ac.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||m.style(a,d)}else j=void 0;if(m.isEmptyObject(o))"inline"===("none"===j?Fb(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=m._data(a,"fxshow",{}),f&&(r.hidden=!q),q?m(a).show():n.done(function(){m(a).hide()}),n.done(function(){var b;m._removeData(a,"fxshow");for(b in o)m.style(a,b,o[b])});for(d in o)g=hc(q?r[d]:0,d,n),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function jc(a,b){var c,d,e,f,g;for(c in a)if(d=m.camelCase(c),e=b[d],f=a[c],m.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=m.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kc(a,b,c){var d,e,f=0,g=dc.length,h=m.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=$b||fc(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:m.extend({},b),opts:m.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:$b||fc(),duration:c.duration,tweens:[],createTween:function(b,c){var d=m.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jc(k,j.opts.specialEasing);g>f;f++)if(d=dc[f].call(j,a,k,j.opts))return d;return m.map(k,hc,j),m.isFunction(j.opts.start)&&j.opts.start.call(a,j),m.fx.timer(m.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}m.Animation=m.extend(kc,{tweener:function(a,b){m.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],ec[c]=ec[c]||[],ec[c].unshift(b)},prefilter:function(a,b){b?dc.unshift(a):dc.push(a)}}),m.speed=function(a,b,c){var d=a&&"object"==typeof a?m.extend({},a):{complete:c||!c&&b||m.isFunction(a)&&a,duration:a,easing:c&&b||b&&!m.isFunction(b)&&b};return d.duration=m.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in m.fx.speeds?m.fx.speeds[d.duration]:m.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){m.isFunction(d.old)&&d.old.call(this),d.queue&&m.dequeue(this,d.queue)},d},m.fn.extend({fadeTo:function(a,b,c,d){return this.filter(U).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=m.isEmptyObject(a),f=m.speed(b,c,d),g=function(){var b=kc(this,m.extend({},a),f);(e||m._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=m.timers,g=m._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&cc.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&m.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=m._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=m.timers,g=d?d.length:0;for(c.finish=!0,m.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),m.each(["toggle","show","hide"],function(a,b){var c=m.fn[b];m.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gc(b,!0),a,d,e)}}),m.each({slideDown:gc("show"),slideUp:gc("hide"),slideToggle:gc("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){m.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),m.timers=[],m.fx.tick=function(){var a,b=m.timers,c=0;for($b=m.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||m.fx.stop(),$b=void 0},m.fx.timer=function(a){m.timers.push(a),a()?m.fx.start():m.timers.pop()},m.fx.interval=13,m.fx.start=function(){_b||(_b=setInterval(m.fx.tick,m.fx.interval))},m.fx.stop=function(){clearInterval(_b),_b=null},m.fx.speeds={slow:600,fast:200,_default:400},m.fn.delay=function(a,b){return a=m.fx?m.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a,b,c,d,e;b=y.createElement("div"),b.setAttribute("className","t"),b.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",d=b.getElementsByTagName("a")[0],c=y.createElement("select"),e=c.appendChild(y.createElement("option")),a=b.getElementsByTagName("input")[0],d.style.cssText="top:1px",k.getSetAttribute="t"!==b.className,k.style=/top/.test(d.getAttribute("style")),k.hrefNormalized="/a"===d.getAttribute("href"),k.checkOn=!!a.value,k.optSelected=e.selected,k.enctype=!!y.createElement("form").enctype,c.disabled=!0,k.optDisabled=!e.disabled,a=y.createElement("input"),a.setAttribute("value",""),k.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),k.radioValue="t"===a.value}();var lc=/\r/g;m.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=m.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,m(this).val()):a,null==e?e="":"number"==typeof e?e+="":m.isArray(e)&&(e=m.map(e,function(a){return null==a?"":a+""})),b=m.valHooks[this.type]||m.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=m.valHooks[e.type]||m.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(lc,""):null==c?"":c)}}}),m.extend({valHooks:{option:{get:function(a){var b=m.find.attr(a,"value");return null!=b?b:m.trim(m.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&m.nodeName(c.parentNode,"optgroup"))){if(b=m(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=m.makeArray(b),g=e.length;while(g--)if(d=e[g],m.inArray(m.valHooks.option.get(d),f)>=0)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),m.each(["radio","checkbox"],function(){m.valHooks[this]={set:function(a,b){return m.isArray(b)?a.checked=m.inArray(m(a).val(),b)>=0:void 0}},k.checkOn||(m.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var mc,nc,oc=m.expr.attrHandle,pc=/^(?:checked|selected)$/i,qc=k.getSetAttribute,rc=k.input;m.fn.extend({attr:function(a,b){return V(this,m.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){m.removeAttr(this,a)})}}),m.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===K?m.prop(a,b,c):(1===f&&m.isXMLDoc(a)||(b=b.toLowerCase(),d=m.attrHooks[b]||(m.expr.match.bool.test(b)?nc:mc)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=m.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void m.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=m.propFix[c]||c,m.expr.match.bool.test(c)?rc&&qc||!pc.test(c)?a[d]=!1:a[m.camelCase("default-"+c)]=a[d]=!1:m.attr(a,c,""),a.removeAttribute(qc?c:d)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&m.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),nc={set:function(a,b,c){return b===!1?m.removeAttr(a,c):rc&&qc||!pc.test(c)?a.setAttribute(!qc&&m.propFix[c]||c,c):a[m.camelCase("default-"+c)]=a[c]=!0,c}},m.each(m.expr.match.bool.source.match(/\w+/g),function(a,b){var c=oc[b]||m.find.attr;oc[b]=rc&&qc||!pc.test(b)?function(a,b,d){var e,f;return d||(f=oc[b],oc[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,oc[b]=f),e}:function(a,b,c){return c?void 0:a[m.camelCase("default-"+b)]?b.toLowerCase():null}}),rc&&qc||(m.attrHooks.value={set:function(a,b,c){return m.nodeName(a,"input")?void(a.defaultValue=b):mc&&mc.set(a,b,c)}}),qc||(mc={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},oc.id=oc.name=oc.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},m.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:mc.set},m.attrHooks.contenteditable={set:function(a,b,c){mc.set(a,""===b?!1:b,c)}},m.each(["width","height"],function(a,b){m.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),k.style||(m.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var sc=/^(?:input|select|textarea|button|object)$/i,tc=/^(?:a|area)$/i;m.fn.extend({prop:function(a,b){return V(this,m.prop,a,b,arguments.length>1)},removeProp:function(a){return a=m.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),m.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!m.isXMLDoc(a),f&&(b=m.propFix[b]||b,e=m.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=m.find.attr(a,"tabindex");return b?parseInt(b,10):sc.test(a.nodeName)||tc.test(a.nodeName)&&a.href?0:-1}}}}),k.hrefNormalized||m.each(["href","src"],function(a,b){m.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),k.optSelected||(m.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}}),m.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){m.propFix[this.toLowerCase()]=this}),k.enctype||(m.propFix.enctype="encoding");var uc=/[\t\r\n\f]/g;m.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j="string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).addClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=m.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0,i=this.length,j=0===arguments.length||"string"==typeof a&&a;if(m.isFunction(a))return this.each(function(b){m(this).removeClass(a.call(this,b,this.className))});if(j)for(b=(a||"").match(E)||[];i>h;h++)if(c=this[h],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(uc," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?m.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(m.isFunction(a)?function(c){m(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=m(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===K||"boolean"===c)&&(this.className&&m._data(this,"__className__",this.className),this.className=this.className||a===!1?"":m._data(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(uc," ").indexOf(b)>=0)return!0;return!1}}),m.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){m.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),m.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var vc=m.now(),wc=/\?/,xc=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;m.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=m.trim(b+"");return e&&!m.trim(e.replace(xc,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():m.error("Invalid JSON: "+b)},m.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||m.error("Invalid XML: "+b),c};var yc,zc,Ac=/#.*$/,Bc=/([?&])_=[^&]*/,Cc=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Dc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Ec=/^(?:GET|HEAD)$/,Fc=/^\/\//,Gc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Hc={},Ic={},Jc="*/".concat("*");try{zc=location.href}catch(Kc){zc=y.createElement("a"),zc.href="",zc=zc.href}yc=Gc.exec(zc.toLowerCase())||[];function Lc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(m.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Mc(a,b,c,d){var e={},f=a===Ic;function g(h){var i;return e[h]=!0,m.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Nc(a,b){var c,d,e=m.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&m.extend(!0,a,c),a}function Oc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Pc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}m.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:zc,type:"GET",isLocal:Dc.test(yc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Jc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":m.parseJSON,"text xml":m.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Nc(Nc(a,m.ajaxSettings),b):Nc(m.ajaxSettings,a)},ajaxPrefilter:Lc(Hc),ajaxTransport:Lc(Ic),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=m.ajaxSetup({},b),l=k.context||k,n=k.context&&(l.nodeType||l.jquery)?m(l):m.event,o=m.Deferred(),p=m.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!j){j={};while(b=Cc.exec(f))j[b[1].toLowerCase()]=b[2]}b=j[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?f:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return i&&i.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||zc)+"").replace(Ac,"").replace(Fc,yc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=m.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(c=Gc.exec(k.url.toLowerCase()),k.crossDomain=!(!c||c[1]===yc[1]&&c[2]===yc[2]&&(c[3]||("http:"===c[1]?"80":"443"))===(yc[3]||("http:"===yc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=m.param(k.data,k.traditional)),Mc(Hc,k,b,v),2===t)return v;h=k.global,h&&0===m.active++&&m.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!Ec.test(k.type),e=k.url,k.hasContent||(k.data&&(e=k.url+=(wc.test(e)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=Bc.test(e)?e.replace(Bc,"$1_="+vc++):e+(wc.test(e)?"&":"?")+"_="+vc++)),k.ifModified&&(m.lastModified[e]&&v.setRequestHeader("If-Modified-Since",m.lastModified[e]),m.etag[e]&&v.setRequestHeader("If-None-Match",m.etag[e])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+Jc+"; q=0.01":""):k.accepts["*"]);for(d in k.headers)v.setRequestHeader(d,k.headers[d]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(d in{success:1,error:1,complete:1})v[d](k[d]);if(i=Mc(Ic,k,b,v)){v.readyState=1,h&&n.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,i.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,c,d){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),i=void 0,f=d||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,c&&(u=Oc(k,v,c)),u=Pc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(m.lastModified[e]=w),w=v.getResponseHeader("etag"),w&&(m.etag[e]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,h&&n.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),h&&(n.trigger("ajaxComplete",[v,k]),--m.active||m.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return m.get(a,b,c,"json")},getScript:function(a,b){return m.get(a,void 0,b,"script")}}),m.each(["get","post"],function(a,b){m[b]=function(a,c,d,e){return m.isFunction(c)&&(e=e||d,d=c,c=void 0),m.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),m.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){m.fn[b]=function(a){return this.on(b,a)}}),m._evalUrl=function(a){return m.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},m.fn.extend({wrapAll:function(a){if(m.isFunction(a))return this.each(function(b){m(this).wrapAll(a.call(this,b))});if(this[0]){var b=m(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return this.each(m.isFunction(a)?function(b){m(this).wrapInner(a.call(this,b))}:function(){var b=m(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=m.isFunction(a);return this.each(function(c){m(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){m.nodeName(this,"body")||m(this).replaceWith(this.childNodes)}).end()}}),m.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0||!k.reliableHiddenOffsets()&&"none"===(a.style&&a.style.display||m.css(a,"display"))},m.expr.filters.visible=function(a){return!m.expr.filters.hidden(a)};var Qc=/%20/g,Rc=/\[\]$/,Sc=/\r?\n/g,Tc=/^(?:submit|button|image|reset|file)$/i,Uc=/^(?:input|select|textarea|keygen)/i;function Vc(a,b,c,d){var e;if(m.isArray(b))m.each(b,function(b,e){c||Rc.test(a)?d(a,e):Vc(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==m.type(b))d(a,b);else for(e in b)Vc(a+"["+e+"]",b[e],c,d)}m.param=function(a,b){var c,d=[],e=function(a,b){b=m.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=m.ajaxSettings&&m.ajaxSettings.traditional),m.isArray(a)||a.jquery&&!m.isPlainObject(a))m.each(a,function(){e(this.name,this.value)});else for(c in a)Vc(c,a[c],b,e);return d.join("&").replace(Qc,"+")},m.fn.extend({serialize:function(){return m.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=m.prop(this,"elements");return a?m.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!m(this).is(":disabled")&&Uc.test(this.nodeName)&&!Tc.test(a)&&(this.checked||!W.test(a))}).map(function(a,b){var c=m(this).val();return null==c?null:m.isArray(c)?m.map(c,function(a){return{name:b.name,value:a.replace(Sc,"\r\n")}}):{name:b.name,value:c.replace(Sc,"\r\n")}}).get()}}),m.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return!this.isLocal&&/^(get|post|head|put|delete|options)$/i.test(this.type)&&Zc()||$c()}:Zc;var Wc=0,Xc={},Yc=m.ajaxSettings.xhr();a.ActiveXObject&&m(a).on("unload",function(){for(var a in Xc)Xc[a](void 0,!0)}),k.cors=!!Yc&&"withCredentials"in Yc,Yc=k.ajax=!!Yc,Yc&&m.ajaxTransport(function(a){if(!a.crossDomain||k.cors){var b;return{send:function(c,d){var e,f=a.xhr(),g=++Wc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)void 0!==c[e]&&f.setRequestHeader(e,c[e]+"");f.send(a.hasContent&&a.data||null),b=function(c,e){var h,i,j;if(b&&(e||4===f.readyState))if(delete Xc[g],b=void 0,f.onreadystatechange=m.noop,e)4!==f.readyState&&f.abort();else{j={},h=f.status,"string"==typeof f.responseText&&(j.text=f.responseText);try{i=f.statusText}catch(k){i=""}h||!a.isLocal||a.crossDomain?1223===h&&(h=204):h=j.text?200:404}j&&d(h,i,j,f.getAllResponseHeaders())},a.async?4===f.readyState?setTimeout(b):f.onreadystatechange=Xc[g]=b:b()},abort:function(){b&&b(void 0,!0)}}}});function Zc(){try{return new a.XMLHttpRequest}catch(b){}}function $c(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}m.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return m.globalEval(a),a}}}),m.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),m.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=y.head||m("head")[0]||y.documentElement;return{send:function(d,e){b=y.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||e(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var _c=[],ad=/(=)\?(?=&|$)|\?\?/;m.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=_c.pop()||m.expando+"_"+vc++;return this[a]=!0,a}}),m.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(ad.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&ad.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=m.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(ad,"$1"+e):b.jsonp!==!1&&(b.url+=(wc.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||m.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,_c.push(e)),g&&m.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),m.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||y;var d=u.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=m.buildFragment([a],b,e),e&&e.length&&m(e).remove(),m.merge([],d.childNodes))};var bd=m.fn.load;m.fn.load=function(a,b,c){if("string"!=typeof a&&bd)return bd.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(d=m.trim(a.slice(h,a.length)),a=a.slice(0,h)),m.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(f="POST"),g.length>0&&m.ajax({url:a,type:f,dataType:"html",data:b}).done(function(a){e=arguments,g.html(d?m("<div>").append(m.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,e||[a.responseText,b,a])}),this},m.expr.filters.animated=function(a){return m.grep(m.timers,function(b){return a===b.elem}).length};var cd=a.document.documentElement;function dd(a){return m.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}m.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=m.css(a,"position"),l=m(a),n={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=m.css(a,"top"),i=m.css(a,"left"),j=("absolute"===k||"fixed"===k)&&m.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),m.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(n.top=b.top-h.top+g),null!=b.left&&(n.left=b.left-h.left+e),"using"in b?b.using.call(a,n):l.css(n)}},m.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){m.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,m.contains(b,e)?(typeof e.getBoundingClientRect!==K&&(d=e.getBoundingClientRect()),c=dd(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===m.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),m.nodeName(a[0],"html")||(c=a.offset()),c.top+=m.css(a[0],"borderTopWidth",!0),c.left+=m.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-m.css(d,"marginTop",!0),left:b.left-c.left-m.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||cd;while(a&&!m.nodeName(a,"html")&&"static"===m.css(a,"position"))a=a.offsetParent;return a||cd})}}),m.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);m.fn[a]=function(d){return V(this,function(a,d,e){var f=dd(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?m(f).scrollLeft():e,c?e:m(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),m.each(["top","left"],function(a,b){m.cssHooks[b]=Lb(k.pixelPosition,function(a,c){return c?(c=Jb(a,b),Hb.test(c)?m(a).position()[b]+"px":c):void 0})}),m.each({Height:"height",Width:"width"},function(a,b){m.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){m.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return V(this,function(b,c,d){var e;return m.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?m.css(b,c,g):m.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),m.fn.size=function(){return this.length},m.fn.andSelf=m.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return m});var ed=a.jQuery,fd=a.$;return m.noConflict=function(b){return a.$===m&&(a.$=fd),b&&a.jQuery===m&&(a.jQuery=ed),m},typeof b===K&&(a.jQuery=a.$=m),m});
\ No newline at end of file
diff --git a/htdocs/theme/less/animated.less b/htdocs/theme/less/animated.less
deleted file mode 100755
index 66ad52a5ba052ced428dcc7ec7016bc25438a2ca..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/animated.less
+++ /dev/null
@@ -1,34 +0,0 @@
-// Animated Icons
-// --------------------------
-
-.@{fa-css-prefix}-spin {
-  -webkit-animation: fa-spin 2s infinite linear;
-          animation: fa-spin 2s infinite linear;
-}
-
-.@{fa-css-prefix}-pulse {
-  -webkit-animation: fa-spin 1s infinite steps(8);
-          animation: fa-spin 1s infinite steps(8);
-}
-
-@-webkit-keyframes fa-spin {
-  0% {
-    -webkit-transform: rotate(0deg);
-            transform: rotate(0deg);
-  }
-  100% {
-    -webkit-transform: rotate(359deg);
-            transform: rotate(359deg);
-  }
-}
-
-@keyframes fa-spin {
-  0% {
-    -webkit-transform: rotate(0deg);
-            transform: rotate(0deg);
-  }
-  100% {
-    -webkit-transform: rotate(359deg);
-            transform: rotate(359deg);
-  }
-}
diff --git a/htdocs/theme/less/bordered-pulled.less b/htdocs/theme/less/bordered-pulled.less
deleted file mode 100755
index 0c90eb5672b04fc66edcc99f003e15fc638e279c..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/bordered-pulled.less
+++ /dev/null
@@ -1,16 +0,0 @@
-// Bordered & Pulled
-// -------------------------
-
-.@{fa-css-prefix}-border {
-  padding: .2em .25em .15em;
-  border: solid .08em @fa-border-color;
-  border-radius: .1em;
-}
-
-.pull-right { float: right; }
-.pull-left { float: left; }
-
-.@{fa-css-prefix} {
-  &.pull-left { margin-right: .3em; }
-  &.pull-right { margin-left: .3em; }
-}
diff --git a/htdocs/theme/less/core.less b/htdocs/theme/less/core.less
deleted file mode 100755
index f814f1e17eb45276b23f54c6fce48314869fc5bb..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/core.less
+++ /dev/null
@@ -1,13 +0,0 @@
-// Base Class Definition
-// -------------------------
-
-.@{fa-css-prefix} {
-  display: inline-block;
-  font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration
-  font-size: inherit; // can't have font-size inherit on line above, so need to override
-  text-rendering: auto; // optimizelegibility throws things off #1094
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  transform: translate(0, 0); // ensures no half-pixel rendering in firefox
-
-}
diff --git a/htdocs/theme/less/fixed-width.less b/htdocs/theme/less/fixed-width.less
deleted file mode 100755
index 110289f2f4b5260ce04dd035408961f1e4f2785b..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/fixed-width.less
+++ /dev/null
@@ -1,6 +0,0 @@
-// Fixed Width Icons
-// -------------------------
-.@{fa-css-prefix}-fw {
-  width: (18em / 14);
-  text-align: center;
-}
diff --git a/htdocs/theme/less/font-awesome.less b/htdocs/theme/less/font-awesome.less
deleted file mode 100755
index 1f45c63d154692051135ff84c22d9be73542d9a7..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/font-awesome.less
+++ /dev/null
@@ -1,17 +0,0 @@
-/*!
- *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */
-
-@import "variables.less";
-@import "mixins.less";
-@import "path.less";
-@import "core.less";
-@import "larger.less";
-@import "fixed-width.less";
-@import "list.less";
-@import "bordered-pulled.less";
-@import "animated.less";
-@import "rotated-flipped.less";
-@import "stacked.less";
-@import "icons.less";
diff --git a/htdocs/theme/less/icons.less b/htdocs/theme/less/icons.less
deleted file mode 100755
index c265de5a6843bfd564d41a6078e2fdce98b0d95e..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/icons.less
+++ /dev/null
@@ -1,596 +0,0 @@
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
-   readers do not read off random characters that represent icons */
-
-.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
-.@{fa-css-prefix}-music:before { content: @fa-var-music; }
-.@{fa-css-prefix}-search:before { content: @fa-var-search; }
-.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
-.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
-.@{fa-css-prefix}-star:before { content: @fa-var-star; }
-.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
-.@{fa-css-prefix}-user:before { content: @fa-var-user; }
-.@{fa-css-prefix}-film:before { content: @fa-var-film; }
-.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
-.@{fa-css-prefix}-th:before { content: @fa-var-th; }
-.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
-.@{fa-css-prefix}-check:before { content: @fa-var-check; }
-.@{fa-css-prefix}-remove:before,
-.@{fa-css-prefix}-close:before,
-.@{fa-css-prefix}-times:before { content: @fa-var-times; }
-.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
-.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
-.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
-.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
-.@{fa-css-prefix}-gear:before,
-.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
-.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
-.@{fa-css-prefix}-home:before { content: @fa-var-home; }
-.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
-.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
-.@{fa-css-prefix}-road:before { content: @fa-var-road; }
-.@{fa-css-prefix}-download:before { content: @fa-var-download; }
-.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
-.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
-.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
-.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
-.@{fa-css-prefix}-rotate-right:before,
-.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
-.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
-.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
-.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
-.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
-.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
-.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
-.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
-.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
-.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
-.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
-.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
-.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
-.@{fa-css-prefix}-book:before { content: @fa-var-book; }
-.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
-.@{fa-css-prefix}-print:before { content: @fa-var-print; }
-.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
-.@{fa-css-prefix}-font:before { content: @fa-var-font; }
-.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
-.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
-.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
-.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
-.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
-.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
-.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
-.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
-.@{fa-css-prefix}-list:before { content: @fa-var-list; }
-.@{fa-css-prefix}-dedent:before,
-.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
-.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
-.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
-.@{fa-css-prefix}-photo:before,
-.@{fa-css-prefix}-image:before,
-.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
-.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
-.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
-.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
-.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
-.@{fa-css-prefix}-edit:before,
-.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
-.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
-.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
-.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
-.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
-.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
-.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
-.@{fa-css-prefix}-play:before { content: @fa-var-play; }
-.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
-.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
-.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
-.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
-.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
-.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
-.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
-.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
-.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
-.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
-.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
-.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
-.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
-.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
-.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
-.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
-.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
-.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
-.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
-.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
-.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
-.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
-.@{fa-css-prefix}-mail-forward:before,
-.@{fa-css-prefix}-share:before { content: @fa-var-share; }
-.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
-.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
-.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
-.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
-.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
-.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
-.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
-.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
-.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
-.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
-.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
-.@{fa-css-prefix}-warning:before,
-.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
-.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
-.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
-.@{fa-css-prefix}-random:before { content: @fa-var-random; }
-.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
-.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
-.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
-.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
-.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
-.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
-.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
-.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
-.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
-.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
-.@{fa-css-prefix}-bar-chart-o:before,
-.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
-.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
-.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
-.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
-.@{fa-css-prefix}-key:before { content: @fa-var-key; }
-.@{fa-css-prefix}-gears:before,
-.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
-.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
-.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
-.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
-.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
-.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
-.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
-.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
-.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
-.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
-.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
-.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
-.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
-.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
-.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
-.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
-.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
-.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
-.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
-.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
-.@{fa-css-prefix}-facebook-f:before,
-.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
-.@{fa-css-prefix}-github:before { content: @fa-var-github; }
-.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
-.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
-.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
-.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
-.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
-.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
-.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
-.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
-.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
-.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
-.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
-.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
-.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
-.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
-.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
-.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
-.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
-.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
-.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
-.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
-.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
-.@{fa-css-prefix}-group:before,
-.@{fa-css-prefix}-users:before { content: @fa-var-users; }
-.@{fa-css-prefix}-chain:before,
-.@{fa-css-prefix}-link:before { content: @fa-var-link; }
-.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
-.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
-.@{fa-css-prefix}-cut:before,
-.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
-.@{fa-css-prefix}-copy:before,
-.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
-.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
-.@{fa-css-prefix}-save:before,
-.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
-.@{fa-css-prefix}-square:before { content: @fa-var-square; }
-.@{fa-css-prefix}-navicon:before,
-.@{fa-css-prefix}-reorder:before,
-.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
-.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
-.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
-.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
-.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
-.@{fa-css-prefix}-table:before { content: @fa-var-table; }
-.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
-.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
-.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
-.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
-.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
-.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
-.@{fa-css-prefix}-money:before { content: @fa-var-money; }
-.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
-.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
-.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
-.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
-.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
-.@{fa-css-prefix}-unsorted:before,
-.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
-.@{fa-css-prefix}-sort-down:before,
-.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
-.@{fa-css-prefix}-sort-up:before,
-.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
-.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
-.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
-.@{fa-css-prefix}-rotate-left:before,
-.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
-.@{fa-css-prefix}-legal:before,
-.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
-.@{fa-css-prefix}-dashboard:before,
-.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
-.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
-.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
-.@{fa-css-prefix}-flash:before,
-.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
-.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
-.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
-.@{fa-css-prefix}-paste:before,
-.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
-.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
-.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
-.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
-.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
-.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
-.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
-.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
-.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
-.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
-.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
-.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
-.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
-.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
-.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
-.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
-.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
-.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
-.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
-.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
-.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
-.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
-.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
-.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
-.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
-.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
-.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
-.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
-.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
-.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
-.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
-.@{fa-css-prefix}-mobile-phone:before,
-.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
-.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
-.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
-.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
-.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
-.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
-.@{fa-css-prefix}-mail-reply:before,
-.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
-.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
-.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
-.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
-.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
-.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
-.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
-.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
-.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
-.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
-.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
-.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
-.@{fa-css-prefix}-code:before { content: @fa-var-code; }
-.@{fa-css-prefix}-mail-reply-all:before,
-.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
-.@{fa-css-prefix}-star-half-empty:before,
-.@{fa-css-prefix}-star-half-full:before,
-.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
-.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
-.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
-.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
-.@{fa-css-prefix}-unlink:before,
-.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
-.@{fa-css-prefix}-question:before { content: @fa-var-question; }
-.@{fa-css-prefix}-info:before { content: @fa-var-info; }
-.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
-.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
-.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
-.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
-.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
-.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
-.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
-.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
-.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
-.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
-.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
-.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
-.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
-.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
-.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
-.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
-.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
-.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
-.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
-.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
-.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
-.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
-.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
-.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
-.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
-.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
-.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
-.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
-.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
-.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
-.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
-.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
-.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
-.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
-.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
-.@{fa-css-prefix}-toggle-down:before,
-.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
-.@{fa-css-prefix}-toggle-up:before,
-.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
-.@{fa-css-prefix}-toggle-right:before,
-.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
-.@{fa-css-prefix}-euro:before,
-.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
-.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
-.@{fa-css-prefix}-dollar:before,
-.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
-.@{fa-css-prefix}-rupee:before,
-.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
-.@{fa-css-prefix}-cny:before,
-.@{fa-css-prefix}-rmb:before,
-.@{fa-css-prefix}-yen:before,
-.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
-.@{fa-css-prefix}-ruble:before,
-.@{fa-css-prefix}-rouble:before,
-.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
-.@{fa-css-prefix}-won:before,
-.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
-.@{fa-css-prefix}-bitcoin:before,
-.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
-.@{fa-css-prefix}-file:before { content: @fa-var-file; }
-.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
-.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
-.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
-.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
-.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
-.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
-.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
-.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
-.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
-.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
-.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
-.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
-.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
-.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
-.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
-.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
-.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
-.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
-.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
-.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
-.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
-.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
-.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
-.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
-.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
-.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
-.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
-.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
-.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
-.@{fa-css-prefix}-android:before { content: @fa-var-android; }
-.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
-.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
-.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
-.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
-.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
-.@{fa-css-prefix}-female:before { content: @fa-var-female; }
-.@{fa-css-prefix}-male:before { content: @fa-var-male; }
-.@{fa-css-prefix}-gittip:before,
-.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
-.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
-.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
-.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
-.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
-.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
-.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
-.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
-.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
-.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
-.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
-.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
-.@{fa-css-prefix}-toggle-left:before,
-.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
-.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
-.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
-.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
-.@{fa-css-prefix}-turkish-lira:before,
-.@{fa-css-prefix}-try:before { content: @fa-var-try; }
-.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
-.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
-.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
-.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
-.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
-.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
-.@{fa-css-prefix}-institution:before,
-.@{fa-css-prefix}-bank:before,
-.@{fa-css-prefix}-university:before { content: @fa-var-university; }
-.@{fa-css-prefix}-mortar-board:before,
-.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
-.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
-.@{fa-css-prefix}-google:before { content: @fa-var-google; }
-.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
-.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
-.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
-.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
-.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
-.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
-.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
-.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
-.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
-.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
-.@{fa-css-prefix}-language:before { content: @fa-var-language; }
-.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
-.@{fa-css-prefix}-building:before { content: @fa-var-building; }
-.@{fa-css-prefix}-child:before { content: @fa-var-child; }
-.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
-.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
-.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
-.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
-.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
-.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
-.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
-.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
-.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
-.@{fa-css-prefix}-automobile:before,
-.@{fa-css-prefix}-car:before { content: @fa-var-car; }
-.@{fa-css-prefix}-cab:before,
-.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
-.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
-.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
-.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
-.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
-.@{fa-css-prefix}-database:before { content: @fa-var-database; }
-.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
-.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
-.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
-.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
-.@{fa-css-prefix}-file-photo-o:before,
-.@{fa-css-prefix}-file-picture-o:before,
-.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
-.@{fa-css-prefix}-file-zip-o:before,
-.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
-.@{fa-css-prefix}-file-sound-o:before,
-.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
-.@{fa-css-prefix}-file-movie-o:before,
-.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
-.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
-.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
-.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
-.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
-.@{fa-css-prefix}-life-bouy:before,
-.@{fa-css-prefix}-life-buoy:before,
-.@{fa-css-prefix}-life-saver:before,
-.@{fa-css-prefix}-support:before,
-.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
-.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
-.@{fa-css-prefix}-ra:before,
-.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
-.@{fa-css-prefix}-ge:before,
-.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
-.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
-.@{fa-css-prefix}-git:before { content: @fa-var-git; }
-.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
-.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
-.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
-.@{fa-css-prefix}-wechat:before,
-.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
-.@{fa-css-prefix}-send:before,
-.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
-.@{fa-css-prefix}-send-o:before,
-.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
-.@{fa-css-prefix}-history:before { content: @fa-var-history; }
-.@{fa-css-prefix}-genderless:before,
-.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
-.@{fa-css-prefix}-header:before { content: @fa-var-header; }
-.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
-.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
-.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
-.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
-.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
-.@{fa-css-prefix}-soccer-ball-o:before,
-.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
-.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
-.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
-.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
-.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
-.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
-.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
-.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
-.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
-.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
-.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
-.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
-.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
-.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
-.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
-.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
-.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
-.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
-.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
-.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
-.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
-.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
-.@{fa-css-prefix}-at:before { content: @fa-var-at; }
-.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
-.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
-.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
-.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
-.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
-.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
-.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
-.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
-.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
-.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
-.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
-.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
-.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
-.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
-.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
-.@{fa-css-prefix}-shekel:before,
-.@{fa-css-prefix}-sheqel:before,
-.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
-.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
-.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
-.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
-.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
-.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
-.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
-.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
-.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
-.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
-.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
-.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
-.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
-.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
-.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
-.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
-.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
-.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
-.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
-.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
-.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
-.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
-.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
-.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
-.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
-.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
-.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
-.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
-.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
-.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
-.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
-.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
-.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
-.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
-.@{fa-css-prefix}-server:before { content: @fa-var-server; }
-.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
-.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
-.@{fa-css-prefix}-hotel:before,
-.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
-.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
-.@{fa-css-prefix}-train:before { content: @fa-var-train; }
-.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
-.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
diff --git a/htdocs/theme/less/larger.less b/htdocs/theme/less/larger.less
deleted file mode 100755
index c9d646770e2186c73632cbe042d82d1d1acaa25b..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/larger.less
+++ /dev/null
@@ -1,13 +0,0 @@
-// Icon Sizes
-// -------------------------
-
-/* makes the font 33% larger relative to the icon container */
-.@{fa-css-prefix}-lg {
-  font-size: (4em / 3);
-  line-height: (3em / 4);
-  vertical-align: -15%;
-}
-.@{fa-css-prefix}-2x { font-size: 2em; }
-.@{fa-css-prefix}-3x { font-size: 3em; }
-.@{fa-css-prefix}-4x { font-size: 4em; }
-.@{fa-css-prefix}-5x { font-size: 5em; }
diff --git a/htdocs/theme/less/list.less b/htdocs/theme/less/list.less
deleted file mode 100755
index 0b440382f61f0bb1683e5b15c2a00e4e398f9980..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/list.less
+++ /dev/null
@@ -1,19 +0,0 @@
-// List Icons
-// -------------------------
-
-.@{fa-css-prefix}-ul {
-  padding-left: 0;
-  margin-left: @fa-li-width;
-  list-style-type: none;
-  > li { position: relative; }
-}
-.@{fa-css-prefix}-li {
-  position: absolute;
-  left: -@fa-li-width;
-  width: @fa-li-width;
-  top: (2em / 14);
-  text-align: center;
-  &.@{fa-css-prefix}-lg {
-    left: (-@fa-li-width + (4em / 14));
-  }
-}
diff --git a/htdocs/theme/less/mixins.less b/htdocs/theme/less/mixins.less
deleted file mode 100755
index c97f4604ca5f84ed3dd1be0ba849620fc6336ace..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/mixins.less
+++ /dev/null
@@ -1,27 +0,0 @@
-// Mixins
-// --------------------------
-
-.fa-icon() {
-  display: inline-block;
-  font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration
-  font-size: inherit; // can't have font-size inherit on line above, so need to override
-  text-rendering: auto; // optimizelegibility throws things off #1094
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  transform: translate(0, 0); // ensures no half-pixel rendering in firefox
-
-}
-
-.fa-icon-rotate(@degrees, @rotation) {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
-  -webkit-transform: rotate(@degrees);
-      -ms-transform: rotate(@degrees);
-          transform: rotate(@degrees);
-}
-
-.fa-icon-flip(@horiz, @vert, @rotation) {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
-  -webkit-transform: scale(@horiz, @vert);
-      -ms-transform: scale(@horiz, @vert);
-          transform: scale(@horiz, @vert);
-}
diff --git a/htdocs/theme/less/path.less b/htdocs/theme/less/path.less
deleted file mode 100755
index 9211e66597a0345e3faf1319b5c5f11c4e4e9c91..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/path.less
+++ /dev/null
@@ -1,15 +0,0 @@
-/* FONT PATH
- * -------------------------- */
-
-@font-face {
-  font-family: 'FontAwesome';
-  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
-  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
-    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
-    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
-    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
-    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
-//  src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
-  font-weight: normal;
-  font-style: normal;
-}
diff --git a/htdocs/theme/less/rotated-flipped.less b/htdocs/theme/less/rotated-flipped.less
deleted file mode 100755
index f6ba81475b92355723f0dc12767f715995a34162..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/rotated-flipped.less
+++ /dev/null
@@ -1,20 +0,0 @@
-// Rotated & Flipped Icons
-// -------------------------
-
-.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }
-.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
-.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
-
-.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
-.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }
-
-// Hook for IE8-9
-// -------------------------
-
-:root .@{fa-css-prefix}-rotate-90,
-:root .@{fa-css-prefix}-rotate-180,
-:root .@{fa-css-prefix}-rotate-270,
-:root .@{fa-css-prefix}-flip-horizontal,
-:root .@{fa-css-prefix}-flip-vertical {
-  filter: none;
-}
diff --git a/htdocs/theme/less/stacked.less b/htdocs/theme/less/stacked.less
deleted file mode 100755
index fc53fb0e7ab49594e1eac97208c32a290558efeb..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/stacked.less
+++ /dev/null
@@ -1,20 +0,0 @@
-// Stacked Icons
-// -------------------------
-
-.@{fa-css-prefix}-stack {
-  position: relative;
-  display: inline-block;
-  width: 2em;
-  height: 2em;
-  line-height: 2em;
-  vertical-align: middle;
-}
-.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
-  position: absolute;
-  left: 0;
-  width: 100%;
-  text-align: center;
-}
-.@{fa-css-prefix}-stack-1x { line-height: inherit; }
-.@{fa-css-prefix}-stack-2x { font-size: 2em; }
-.@{fa-css-prefix}-inverse { color: @fa-inverse; }
diff --git a/htdocs/theme/less/variables.less b/htdocs/theme/less/variables.less
deleted file mode 100755
index d526064c84c36bb6fd17c34ee4f6af39480f74b0..0000000000000000000000000000000000000000
--- a/htdocs/theme/less/variables.less
+++ /dev/null
@@ -1,606 +0,0 @@
-// Variables
-// --------------------------
-
-@fa-font-path:        "../fonts";
-@fa-font-size-base:   14px;
-//@fa-font-path:        "//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts"; // for referencing Bootstrap CDN font files directly
-@fa-css-prefix:       fa;
-@fa-version:          "4.3.0";
-@fa-border-color:     #eee;
-@fa-inverse:          #fff;
-@fa-li-width:         (30em / 14);
-
-@fa-var-adjust: "\f042";
-@fa-var-adn: "\f170";
-@fa-var-align-center: "\f037";
-@fa-var-align-justify: "\f039";
-@fa-var-align-left: "\f036";
-@fa-var-align-right: "\f038";
-@fa-var-ambulance: "\f0f9";
-@fa-var-anchor: "\f13d";
-@fa-var-android: "\f17b";
-@fa-var-angellist: "\f209";
-@fa-var-angle-double-down: "\f103";
-@fa-var-angle-double-left: "\f100";
-@fa-var-angle-double-right: "\f101";
-@fa-var-angle-double-up: "\f102";
-@fa-var-angle-down: "\f107";
-@fa-var-angle-left: "\f104";
-@fa-var-angle-right: "\f105";
-@fa-var-angle-up: "\f106";
-@fa-var-apple: "\f179";
-@fa-var-archive: "\f187";
-@fa-var-area-chart: "\f1fe";
-@fa-var-arrow-circle-down: "\f0ab";
-@fa-var-arrow-circle-left: "\f0a8";
-@fa-var-arrow-circle-o-down: "\f01a";
-@fa-var-arrow-circle-o-left: "\f190";
-@fa-var-arrow-circle-o-right: "\f18e";
-@fa-var-arrow-circle-o-up: "\f01b";
-@fa-var-arrow-circle-right: "\f0a9";
-@fa-var-arrow-circle-up: "\f0aa";
-@fa-var-arrow-down: "\f063";
-@fa-var-arrow-left: "\f060";
-@fa-var-arrow-right: "\f061";
-@fa-var-arrow-up: "\f062";
-@fa-var-arrows: "\f047";
-@fa-var-arrows-alt: "\f0b2";
-@fa-var-arrows-h: "\f07e";
-@fa-var-arrows-v: "\f07d";
-@fa-var-asterisk: "\f069";
-@fa-var-at: "\f1fa";
-@fa-var-automobile: "\f1b9";
-@fa-var-backward: "\f04a";
-@fa-var-ban: "\f05e";
-@fa-var-bank: "\f19c";
-@fa-var-bar-chart: "\f080";
-@fa-var-bar-chart-o: "\f080";
-@fa-var-barcode: "\f02a";
-@fa-var-bars: "\f0c9";
-@fa-var-bed: "\f236";
-@fa-var-beer: "\f0fc";
-@fa-var-behance: "\f1b4";
-@fa-var-behance-square: "\f1b5";
-@fa-var-bell: "\f0f3";
-@fa-var-bell-o: "\f0a2";
-@fa-var-bell-slash: "\f1f6";
-@fa-var-bell-slash-o: "\f1f7";
-@fa-var-bicycle: "\f206";
-@fa-var-binoculars: "\f1e5";
-@fa-var-birthday-cake: "\f1fd";
-@fa-var-bitbucket: "\f171";
-@fa-var-bitbucket-square: "\f172";
-@fa-var-bitcoin: "\f15a";
-@fa-var-bold: "\f032";
-@fa-var-bolt: "\f0e7";
-@fa-var-bomb: "\f1e2";
-@fa-var-book: "\f02d";
-@fa-var-bookmark: "\f02e";
-@fa-var-bookmark-o: "\f097";
-@fa-var-briefcase: "\f0b1";
-@fa-var-btc: "\f15a";
-@fa-var-bug: "\f188";
-@fa-var-building: "\f1ad";
-@fa-var-building-o: "\f0f7";
-@fa-var-bullhorn: "\f0a1";
-@fa-var-bullseye: "\f140";
-@fa-var-bus: "\f207";
-@fa-var-buysellads: "\f20d";
-@fa-var-cab: "\f1ba";
-@fa-var-calculator: "\f1ec";
-@fa-var-calendar: "\f073";
-@fa-var-calendar-o: "\f133";
-@fa-var-camera: "\f030";
-@fa-var-camera-retro: "\f083";
-@fa-var-car: "\f1b9";
-@fa-var-caret-down: "\f0d7";
-@fa-var-caret-left: "\f0d9";
-@fa-var-caret-right: "\f0da";
-@fa-var-caret-square-o-down: "\f150";
-@fa-var-caret-square-o-left: "\f191";
-@fa-var-caret-square-o-right: "\f152";
-@fa-var-caret-square-o-up: "\f151";
-@fa-var-caret-up: "\f0d8";
-@fa-var-cart-arrow-down: "\f218";
-@fa-var-cart-plus: "\f217";
-@fa-var-cc: "\f20a";
-@fa-var-cc-amex: "\f1f3";
-@fa-var-cc-discover: "\f1f2";
-@fa-var-cc-mastercard: "\f1f1";
-@fa-var-cc-paypal: "\f1f4";
-@fa-var-cc-stripe: "\f1f5";
-@fa-var-cc-visa: "\f1f0";
-@fa-var-certificate: "\f0a3";
-@fa-var-chain: "\f0c1";
-@fa-var-chain-broken: "\f127";
-@fa-var-check: "\f00c";
-@fa-var-check-circle: "\f058";
-@fa-var-check-circle-o: "\f05d";
-@fa-var-check-square: "\f14a";
-@fa-var-check-square-o: "\f046";
-@fa-var-chevron-circle-down: "\f13a";
-@fa-var-chevron-circle-left: "\f137";
-@fa-var-chevron-circle-right: "\f138";
-@fa-var-chevron-circle-up: "\f139";
-@fa-var-chevron-down: "\f078";
-@fa-var-chevron-left: "\f053";
-@fa-var-chevron-right: "\f054";
-@fa-var-chevron-up: "\f077";
-@fa-var-child: "\f1ae";
-@fa-var-circle: "\f111";
-@fa-var-circle-o: "\f10c";
-@fa-var-circle-o-notch: "\f1ce";
-@fa-var-circle-thin: "\f1db";
-@fa-var-clipboard: "\f0ea";
-@fa-var-clock-o: "\f017";
-@fa-var-close: "\f00d";
-@fa-var-cloud: "\f0c2";
-@fa-var-cloud-download: "\f0ed";
-@fa-var-cloud-upload: "\f0ee";
-@fa-var-cny: "\f157";
-@fa-var-code: "\f121";
-@fa-var-code-fork: "\f126";
-@fa-var-codepen: "\f1cb";
-@fa-var-coffee: "\f0f4";
-@fa-var-cog: "\f013";
-@fa-var-cogs: "\f085";
-@fa-var-columns: "\f0db";
-@fa-var-comment: "\f075";
-@fa-var-comment-o: "\f0e5";
-@fa-var-comments: "\f086";
-@fa-var-comments-o: "\f0e6";
-@fa-var-compass: "\f14e";
-@fa-var-compress: "\f066";
-@fa-var-connectdevelop: "\f20e";
-@fa-var-copy: "\f0c5";
-@fa-var-copyright: "\f1f9";
-@fa-var-credit-card: "\f09d";
-@fa-var-crop: "\f125";
-@fa-var-crosshairs: "\f05b";
-@fa-var-css3: "\f13c";
-@fa-var-cube: "\f1b2";
-@fa-var-cubes: "\f1b3";
-@fa-var-cut: "\f0c4";
-@fa-var-cutlery: "\f0f5";
-@fa-var-dashboard: "\f0e4";
-@fa-var-dashcube: "\f210";
-@fa-var-database: "\f1c0";
-@fa-var-dedent: "\f03b";
-@fa-var-delicious: "\f1a5";
-@fa-var-desktop: "\f108";
-@fa-var-deviantart: "\f1bd";
-@fa-var-diamond: "\f219";
-@fa-var-digg: "\f1a6";
-@fa-var-dollar: "\f155";
-@fa-var-dot-circle-o: "\f192";
-@fa-var-download: "\f019";
-@fa-var-dribbble: "\f17d";
-@fa-var-dropbox: "\f16b";
-@fa-var-drupal: "\f1a9";
-@fa-var-edit: "\f044";
-@fa-var-eject: "\f052";
-@fa-var-ellipsis-h: "\f141";
-@fa-var-ellipsis-v: "\f142";
-@fa-var-empire: "\f1d1";
-@fa-var-envelope: "\f0e0";
-@fa-var-envelope-o: "\f003";
-@fa-var-envelope-square: "\f199";
-@fa-var-eraser: "\f12d";
-@fa-var-eur: "\f153";
-@fa-var-euro: "\f153";
-@fa-var-exchange: "\f0ec";
-@fa-var-exclamation: "\f12a";
-@fa-var-exclamation-circle: "\f06a";
-@fa-var-exclamation-triangle: "\f071";
-@fa-var-expand: "\f065";
-@fa-var-external-link: "\f08e";
-@fa-var-external-link-square: "\f14c";
-@fa-var-eye: "\f06e";
-@fa-var-eye-slash: "\f070";
-@fa-var-eyedropper: "\f1fb";
-@fa-var-facebook: "\f09a";
-@fa-var-facebook-f: "\f09a";
-@fa-var-facebook-official: "\f230";
-@fa-var-facebook-square: "\f082";
-@fa-var-fast-backward: "\f049";
-@fa-var-fast-forward: "\f050";
-@fa-var-fax: "\f1ac";
-@fa-var-female: "\f182";
-@fa-var-fighter-jet: "\f0fb";
-@fa-var-file: "\f15b";
-@fa-var-file-archive-o: "\f1c6";
-@fa-var-file-audio-o: "\f1c7";
-@fa-var-file-code-o: "\f1c9";
-@fa-var-file-excel-o: "\f1c3";
-@fa-var-file-image-o: "\f1c5";
-@fa-var-file-movie-o: "\f1c8";
-@fa-var-file-o: "\f016";
-@fa-var-file-pdf-o: "\f1c1";
-@fa-var-file-photo-o: "\f1c5";
-@fa-var-file-picture-o: "\f1c5";
-@fa-var-file-powerpoint-o: "\f1c4";
-@fa-var-file-sound-o: "\f1c7";
-@fa-var-file-text: "\f15c";
-@fa-var-file-text-o: "\f0f6";
-@fa-var-file-video-o: "\f1c8";
-@fa-var-file-word-o: "\f1c2";
-@fa-var-file-zip-o: "\f1c6";
-@fa-var-files-o: "\f0c5";
-@fa-var-film: "\f008";
-@fa-var-filter: "\f0b0";
-@fa-var-fire: "\f06d";
-@fa-var-fire-extinguisher: "\f134";
-@fa-var-flag: "\f024";
-@fa-var-flag-checkered: "\f11e";
-@fa-var-flag-o: "\f11d";
-@fa-var-flash: "\f0e7";
-@fa-var-flask: "\f0c3";
-@fa-var-flickr: "\f16e";
-@fa-var-floppy-o: "\f0c7";
-@fa-var-folder: "\f07b";
-@fa-var-folder-o: "\f114";
-@fa-var-folder-open: "\f07c";
-@fa-var-folder-open-o: "\f115";
-@fa-var-font: "\f031";
-@fa-var-forumbee: "\f211";
-@fa-var-forward: "\f04e";
-@fa-var-foursquare: "\f180";
-@fa-var-frown-o: "\f119";
-@fa-var-futbol-o: "\f1e3";
-@fa-var-gamepad: "\f11b";
-@fa-var-gavel: "\f0e3";
-@fa-var-gbp: "\f154";
-@fa-var-ge: "\f1d1";
-@fa-var-gear: "\f013";
-@fa-var-gears: "\f085";
-@fa-var-genderless: "\f1db";
-@fa-var-gift: "\f06b";
-@fa-var-git: "\f1d3";
-@fa-var-git-square: "\f1d2";
-@fa-var-github: "\f09b";
-@fa-var-github-alt: "\f113";
-@fa-var-github-square: "\f092";
-@fa-var-gittip: "\f184";
-@fa-var-glass: "\f000";
-@fa-var-globe: "\f0ac";
-@fa-var-google: "\f1a0";
-@fa-var-google-plus: "\f0d5";
-@fa-var-google-plus-square: "\f0d4";
-@fa-var-google-wallet: "\f1ee";
-@fa-var-graduation-cap: "\f19d";
-@fa-var-gratipay: "\f184";
-@fa-var-group: "\f0c0";
-@fa-var-h-square: "\f0fd";
-@fa-var-hacker-news: "\f1d4";
-@fa-var-hand-o-down: "\f0a7";
-@fa-var-hand-o-left: "\f0a5";
-@fa-var-hand-o-right: "\f0a4";
-@fa-var-hand-o-up: "\f0a6";
-@fa-var-hdd-o: "\f0a0";
-@fa-var-header: "\f1dc";
-@fa-var-headphones: "\f025";
-@fa-var-heart: "\f004";
-@fa-var-heart-o: "\f08a";
-@fa-var-heartbeat: "\f21e";
-@fa-var-history: "\f1da";
-@fa-var-home: "\f015";
-@fa-var-hospital-o: "\f0f8";
-@fa-var-hotel: "\f236";
-@fa-var-html5: "\f13b";
-@fa-var-ils: "\f20b";
-@fa-var-image: "\f03e";
-@fa-var-inbox: "\f01c";
-@fa-var-indent: "\f03c";
-@fa-var-info: "\f129";
-@fa-var-info-circle: "\f05a";
-@fa-var-inr: "\f156";
-@fa-var-instagram: "\f16d";
-@fa-var-institution: "\f19c";
-@fa-var-ioxhost: "\f208";
-@fa-var-italic: "\f033";
-@fa-var-joomla: "\f1aa";
-@fa-var-jpy: "\f157";
-@fa-var-jsfiddle: "\f1cc";
-@fa-var-key: "\f084";
-@fa-var-keyboard-o: "\f11c";
-@fa-var-krw: "\f159";
-@fa-var-language: "\f1ab";
-@fa-var-laptop: "\f109";
-@fa-var-lastfm: "\f202";
-@fa-var-lastfm-square: "\f203";
-@fa-var-leaf: "\f06c";
-@fa-var-leanpub: "\f212";
-@fa-var-legal: "\f0e3";
-@fa-var-lemon-o: "\f094";
-@fa-var-level-down: "\f149";
-@fa-var-level-up: "\f148";
-@fa-var-life-bouy: "\f1cd";
-@fa-var-life-buoy: "\f1cd";
-@fa-var-life-ring: "\f1cd";
-@fa-var-life-saver: "\f1cd";
-@fa-var-lightbulb-o: "\f0eb";
-@fa-var-line-chart: "\f201";
-@fa-var-link: "\f0c1";
-@fa-var-linkedin: "\f0e1";
-@fa-var-linkedin-square: "\f08c";
-@fa-var-linux: "\f17c";
-@fa-var-list: "\f03a";
-@fa-var-list-alt: "\f022";
-@fa-var-list-ol: "\f0cb";
-@fa-var-list-ul: "\f0ca";
-@fa-var-location-arrow: "\f124";
-@fa-var-lock: "\f023";
-@fa-var-long-arrow-down: "\f175";
-@fa-var-long-arrow-left: "\f177";
-@fa-var-long-arrow-right: "\f178";
-@fa-var-long-arrow-up: "\f176";
-@fa-var-magic: "\f0d0";
-@fa-var-magnet: "\f076";
-@fa-var-mail-forward: "\f064";
-@fa-var-mail-reply: "\f112";
-@fa-var-mail-reply-all: "\f122";
-@fa-var-male: "\f183";
-@fa-var-map-marker: "\f041";
-@fa-var-mars: "\f222";
-@fa-var-mars-double: "\f227";
-@fa-var-mars-stroke: "\f229";
-@fa-var-mars-stroke-h: "\f22b";
-@fa-var-mars-stroke-v: "\f22a";
-@fa-var-maxcdn: "\f136";
-@fa-var-meanpath: "\f20c";
-@fa-var-medium: "\f23a";
-@fa-var-medkit: "\f0fa";
-@fa-var-meh-o: "\f11a";
-@fa-var-mercury: "\f223";
-@fa-var-microphone: "\f130";
-@fa-var-microphone-slash: "\f131";
-@fa-var-minus: "\f068";
-@fa-var-minus-circle: "\f056";
-@fa-var-minus-square: "\f146";
-@fa-var-minus-square-o: "\f147";
-@fa-var-mobile: "\f10b";
-@fa-var-mobile-phone: "\f10b";
-@fa-var-money: "\f0d6";
-@fa-var-moon-o: "\f186";
-@fa-var-mortar-board: "\f19d";
-@fa-var-motorcycle: "\f21c";
-@fa-var-music: "\f001";
-@fa-var-navicon: "\f0c9";
-@fa-var-neuter: "\f22c";
-@fa-var-newspaper-o: "\f1ea";
-@fa-var-openid: "\f19b";
-@fa-var-outdent: "\f03b";
-@fa-var-pagelines: "\f18c";
-@fa-var-paint-brush: "\f1fc";
-@fa-var-paper-plane: "\f1d8";
-@fa-var-paper-plane-o: "\f1d9";
-@fa-var-paperclip: "\f0c6";
-@fa-var-paragraph: "\f1dd";
-@fa-var-paste: "\f0ea";
-@fa-var-pause: "\f04c";
-@fa-var-paw: "\f1b0";
-@fa-var-paypal: "\f1ed";
-@fa-var-pencil: "\f040";
-@fa-var-pencil-square: "\f14b";
-@fa-var-pencil-square-o: "\f044";
-@fa-var-phone: "\f095";
-@fa-var-phone-square: "\f098";
-@fa-var-photo: "\f03e";
-@fa-var-picture-o: "\f03e";
-@fa-var-pie-chart: "\f200";
-@fa-var-pied-piper: "\f1a7";
-@fa-var-pied-piper-alt: "\f1a8";
-@fa-var-pinterest: "\f0d2";
-@fa-var-pinterest-p: "\f231";
-@fa-var-pinterest-square: "\f0d3";
-@fa-var-plane: "\f072";
-@fa-var-play: "\f04b";
-@fa-var-play-circle: "\f144";
-@fa-var-play-circle-o: "\f01d";
-@fa-var-plug: "\f1e6";
-@fa-var-plus: "\f067";
-@fa-var-plus-circle: "\f055";
-@fa-var-plus-square: "\f0fe";
-@fa-var-plus-square-o: "\f196";
-@fa-var-power-off: "\f011";
-@fa-var-print: "\f02f";
-@fa-var-puzzle-piece: "\f12e";
-@fa-var-qq: "\f1d6";
-@fa-var-qrcode: "\f029";
-@fa-var-question: "\f128";
-@fa-var-question-circle: "\f059";
-@fa-var-quote-left: "\f10d";
-@fa-var-quote-right: "\f10e";
-@fa-var-ra: "\f1d0";
-@fa-var-random: "\f074";
-@fa-var-rebel: "\f1d0";
-@fa-var-recycle: "\f1b8";
-@fa-var-reddit: "\f1a1";
-@fa-var-reddit-square: "\f1a2";
-@fa-var-refresh: "\f021";
-@fa-var-remove: "\f00d";
-@fa-var-renren: "\f18b";
-@fa-var-reorder: "\f0c9";
-@fa-var-repeat: "\f01e";
-@fa-var-reply: "\f112";
-@fa-var-reply-all: "\f122";
-@fa-var-retweet: "\f079";
-@fa-var-rmb: "\f157";
-@fa-var-road: "\f018";
-@fa-var-rocket: "\f135";
-@fa-var-rotate-left: "\f0e2";
-@fa-var-rotate-right: "\f01e";
-@fa-var-rouble: "\f158";
-@fa-var-rss: "\f09e";
-@fa-var-rss-square: "\f143";
-@fa-var-rub: "\f158";
-@fa-var-ruble: "\f158";
-@fa-var-rupee: "\f156";
-@fa-var-save: "\f0c7";
-@fa-var-scissors: "\f0c4";
-@fa-var-search: "\f002";
-@fa-var-search-minus: "\f010";
-@fa-var-search-plus: "\f00e";
-@fa-var-sellsy: "\f213";
-@fa-var-send: "\f1d8";
-@fa-var-send-o: "\f1d9";
-@fa-var-server: "\f233";
-@fa-var-share: "\f064";
-@fa-var-share-alt: "\f1e0";
-@fa-var-share-alt-square: "\f1e1";
-@fa-var-share-square: "\f14d";
-@fa-var-share-square-o: "\f045";
-@fa-var-shekel: "\f20b";
-@fa-var-sheqel: "\f20b";
-@fa-var-shield: "\f132";
-@fa-var-ship: "\f21a";
-@fa-var-shirtsinbulk: "\f214";
-@fa-var-shopping-cart: "\f07a";
-@fa-var-sign-in: "\f090";
-@fa-var-sign-out: "\f08b";
-@fa-var-signal: "\f012";
-@fa-var-simplybuilt: "\f215";
-@fa-var-sitemap: "\f0e8";
-@fa-var-skyatlas: "\f216";
-@fa-var-skype: "\f17e";
-@fa-var-slack: "\f198";
-@fa-var-sliders: "\f1de";
-@fa-var-slideshare: "\f1e7";
-@fa-var-smile-o: "\f118";
-@fa-var-soccer-ball-o: "\f1e3";
-@fa-var-sort: "\f0dc";
-@fa-var-sort-alpha-asc: "\f15d";
-@fa-var-sort-alpha-desc: "\f15e";
-@fa-var-sort-amount-asc: "\f160";
-@fa-var-sort-amount-desc: "\f161";
-@fa-var-sort-asc: "\f0de";
-@fa-var-sort-desc: "\f0dd";
-@fa-var-sort-down: "\f0dd";
-@fa-var-sort-numeric-asc: "\f162";
-@fa-var-sort-numeric-desc: "\f163";
-@fa-var-sort-up: "\f0de";
-@fa-var-soundcloud: "\f1be";
-@fa-var-space-shuttle: "\f197";
-@fa-var-spinner: "\f110";
-@fa-var-spoon: "\f1b1";
-@fa-var-spotify: "\f1bc";
-@fa-var-square: "\f0c8";
-@fa-var-square-o: "\f096";
-@fa-var-stack-exchange: "\f18d";
-@fa-var-stack-overflow: "\f16c";
-@fa-var-star: "\f005";
-@fa-var-star-half: "\f089";
-@fa-var-star-half-empty: "\f123";
-@fa-var-star-half-full: "\f123";
-@fa-var-star-half-o: "\f123";
-@fa-var-star-o: "\f006";
-@fa-var-steam: "\f1b6";
-@fa-var-steam-square: "\f1b7";
-@fa-var-step-backward: "\f048";
-@fa-var-step-forward: "\f051";
-@fa-var-stethoscope: "\f0f1";
-@fa-var-stop: "\f04d";
-@fa-var-street-view: "\f21d";
-@fa-var-strikethrough: "\f0cc";
-@fa-var-stumbleupon: "\f1a4";
-@fa-var-stumbleupon-circle: "\f1a3";
-@fa-var-subscript: "\f12c";
-@fa-var-subway: "\f239";
-@fa-var-suitcase: "\f0f2";
-@fa-var-sun-o: "\f185";
-@fa-var-superscript: "\f12b";
-@fa-var-support: "\f1cd";
-@fa-var-table: "\f0ce";
-@fa-var-tablet: "\f10a";
-@fa-var-tachometer: "\f0e4";
-@fa-var-tag: "\f02b";
-@fa-var-tags: "\f02c";
-@fa-var-tasks: "\f0ae";
-@fa-var-taxi: "\f1ba";
-@fa-var-tencent-weibo: "\f1d5";
-@fa-var-terminal: "\f120";
-@fa-var-text-height: "\f034";
-@fa-var-text-width: "\f035";
-@fa-var-th: "\f00a";
-@fa-var-th-large: "\f009";
-@fa-var-th-list: "\f00b";
-@fa-var-thumb-tack: "\f08d";
-@fa-var-thumbs-down: "\f165";
-@fa-var-thumbs-o-down: "\f088";
-@fa-var-thumbs-o-up: "\f087";
-@fa-var-thumbs-up: "\f164";
-@fa-var-ticket: "\f145";
-@fa-var-times: "\f00d";
-@fa-var-times-circle: "\f057";
-@fa-var-times-circle-o: "\f05c";
-@fa-var-tint: "\f043";
-@fa-var-toggle-down: "\f150";
-@fa-var-toggle-left: "\f191";
-@fa-var-toggle-off: "\f204";
-@fa-var-toggle-on: "\f205";
-@fa-var-toggle-right: "\f152";
-@fa-var-toggle-up: "\f151";
-@fa-var-train: "\f238";
-@fa-var-transgender: "\f224";
-@fa-var-transgender-alt: "\f225";
-@fa-var-trash: "\f1f8";
-@fa-var-trash-o: "\f014";
-@fa-var-tree: "\f1bb";
-@fa-var-trello: "\f181";
-@fa-var-trophy: "\f091";
-@fa-var-truck: "\f0d1";
-@fa-var-try: "\f195";
-@fa-var-tty: "\f1e4";
-@fa-var-tumblr: "\f173";
-@fa-var-tumblr-square: "\f174";
-@fa-var-turkish-lira: "\f195";
-@fa-var-twitch: "\f1e8";
-@fa-var-twitter: "\f099";
-@fa-var-twitter-square: "\f081";
-@fa-var-umbrella: "\f0e9";
-@fa-var-underline: "\f0cd";
-@fa-var-undo: "\f0e2";
-@fa-var-university: "\f19c";
-@fa-var-unlink: "\f127";
-@fa-var-unlock: "\f09c";
-@fa-var-unlock-alt: "\f13e";
-@fa-var-unsorted: "\f0dc";
-@fa-var-upload: "\f093";
-@fa-var-usd: "\f155";
-@fa-var-user: "\f007";
-@fa-var-user-md: "\f0f0";
-@fa-var-user-plus: "\f234";
-@fa-var-user-secret: "\f21b";
-@fa-var-user-times: "\f235";
-@fa-var-users: "\f0c0";
-@fa-var-venus: "\f221";
-@fa-var-venus-double: "\f226";
-@fa-var-venus-mars: "\f228";
-@fa-var-viacoin: "\f237";
-@fa-var-video-camera: "\f03d";
-@fa-var-vimeo-square: "\f194";
-@fa-var-vine: "\f1ca";
-@fa-var-vk: "\f189";
-@fa-var-volume-down: "\f027";
-@fa-var-volume-off: "\f026";
-@fa-var-volume-up: "\f028";
-@fa-var-warning: "\f071";
-@fa-var-wechat: "\f1d7";
-@fa-var-weibo: "\f18a";
-@fa-var-weixin: "\f1d7";
-@fa-var-whatsapp: "\f232";
-@fa-var-wheelchair: "\f193";
-@fa-var-wifi: "\f1eb";
-@fa-var-windows: "\f17a";
-@fa-var-won: "\f159";
-@fa-var-wordpress: "\f19a";
-@fa-var-wrench: "\f0ad";
-@fa-var-xing: "\f168";
-@fa-var-xing-square: "\f169";
-@fa-var-yahoo: "\f19e";
-@fa-var-yelp: "\f1e9";
-@fa-var-yen: "\f157";
-@fa-var-youtube: "\f167";
-@fa-var-youtube-play: "\f16a";
-@fa-var-youtube-square: "\f166";
-
diff --git a/htdocs/theme/scss/_animated.scss b/htdocs/theme/scss/_animated.scss
deleted file mode 100755
index 8a020dbfff7822bf57c7217eafdaa4884b8aa943..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_animated.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-// Spinning Icons
-// --------------------------
-
-.#{$fa-css-prefix}-spin {
-  -webkit-animation: fa-spin 2s infinite linear;
-          animation: fa-spin 2s infinite linear;
-}
-
-.#{$fa-css-prefix}-pulse {
-  -webkit-animation: fa-spin 1s infinite steps(8);
-          animation: fa-spin 1s infinite steps(8);
-}
-
-@-webkit-keyframes fa-spin {
-  0% {
-    -webkit-transform: rotate(0deg);
-            transform: rotate(0deg);
-  }
-  100% {
-    -webkit-transform: rotate(359deg);
-            transform: rotate(359deg);
-  }
-}
-
-@keyframes fa-spin {
-  0% {
-    -webkit-transform: rotate(0deg);
-            transform: rotate(0deg);
-  }
-  100% {
-    -webkit-transform: rotate(359deg);
-            transform: rotate(359deg);
-  }
-}
diff --git a/htdocs/theme/scss/_bordered-pulled.scss b/htdocs/theme/scss/_bordered-pulled.scss
deleted file mode 100755
index 9d3fdf3a0b477ffa6e9c1378bf7f0636c1f43c1e..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_bordered-pulled.scss
+++ /dev/null
@@ -1,16 +0,0 @@
-// Bordered & Pulled
-// -------------------------
-
-.#{$fa-css-prefix}-border {
-  padding: .2em .25em .15em;
-  border: solid .08em $fa-border-color;
-  border-radius: .1em;
-}
-
-.pull-right { float: right; }
-.pull-left { float: left; }
-
-.#{$fa-css-prefix} {
-  &.pull-left { margin-right: .3em; }
-  &.pull-right { margin-left: .3em; }
-}
diff --git a/htdocs/theme/scss/_core.scss b/htdocs/theme/scss/_core.scss
deleted file mode 100755
index 5a2db9d5612d028a6cc3d448262d3dee5f70f6a0..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_core.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-// Base Class Definition
-// -------------------------
-
-.#{$fa-css-prefix} {
-  display: inline-block;
-  font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
-  font-size: inherit; // can't have font-size inherit on line above, so need to override
-  text-rendering: auto; // optimizelegibility throws things off #1094
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  transform: translate(0, 0); // ensures no half-pixel rendering in firefox
-
-}
diff --git a/htdocs/theme/scss/_fixed-width.scss b/htdocs/theme/scss/_fixed-width.scss
deleted file mode 100755
index b221c98133a4d4a8449c848ccb69bf631d1c3e5d..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_fixed-width.scss
+++ /dev/null
@@ -1,6 +0,0 @@
-// Fixed Width Icons
-// -------------------------
-.#{$fa-css-prefix}-fw {
-  width: (18em / 14);
-  text-align: center;
-}
diff --git a/htdocs/theme/scss/_icons.scss b/htdocs/theme/scss/_icons.scss
deleted file mode 100755
index fbcfe81237b527f4839001b8656751d362cd4294..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_icons.scss
+++ /dev/null
@@ -1,596 +0,0 @@
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
-   readers do not read off random characters that represent icons */
-
-.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; }
-.#{$fa-css-prefix}-music:before { content: $fa-var-music; }
-.#{$fa-css-prefix}-search:before { content: $fa-var-search; }
-.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; }
-.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; }
-.#{$fa-css-prefix}-star:before { content: $fa-var-star; }
-.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; }
-.#{$fa-css-prefix}-user:before { content: $fa-var-user; }
-.#{$fa-css-prefix}-film:before { content: $fa-var-film; }
-.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; }
-.#{$fa-css-prefix}-th:before { content: $fa-var-th; }
-.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; }
-.#{$fa-css-prefix}-check:before { content: $fa-var-check; }
-.#{$fa-css-prefix}-remove:before,
-.#{$fa-css-prefix}-close:before,
-.#{$fa-css-prefix}-times:before { content: $fa-var-times; }
-.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; }
-.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; }
-.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; }
-.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; }
-.#{$fa-css-prefix}-gear:before,
-.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; }
-.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; }
-.#{$fa-css-prefix}-home:before { content: $fa-var-home; }
-.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; }
-.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; }
-.#{$fa-css-prefix}-road:before { content: $fa-var-road; }
-.#{$fa-css-prefix}-download:before { content: $fa-var-download; }
-.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; }
-.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; }
-.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; }
-.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; }
-.#{$fa-css-prefix}-rotate-right:before,
-.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; }
-.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; }
-.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; }
-.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; }
-.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; }
-.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; }
-.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; }
-.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; }
-.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; }
-.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; }
-.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; }
-.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; }
-.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; }
-.#{$fa-css-prefix}-book:before { content: $fa-var-book; }
-.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; }
-.#{$fa-css-prefix}-print:before { content: $fa-var-print; }
-.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; }
-.#{$fa-css-prefix}-font:before { content: $fa-var-font; }
-.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; }
-.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; }
-.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; }
-.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; }
-.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; }
-.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; }
-.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; }
-.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; }
-.#{$fa-css-prefix}-list:before { content: $fa-var-list; }
-.#{$fa-css-prefix}-dedent:before,
-.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; }
-.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; }
-.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; }
-.#{$fa-css-prefix}-photo:before,
-.#{$fa-css-prefix}-image:before,
-.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; }
-.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; }
-.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; }
-.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; }
-.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; }
-.#{$fa-css-prefix}-edit:before,
-.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; }
-.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; }
-.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; }
-.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; }
-.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; }
-.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; }
-.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; }
-.#{$fa-css-prefix}-play:before { content: $fa-var-play; }
-.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; }
-.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; }
-.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; }
-.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; }
-.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; }
-.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; }
-.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; }
-.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; }
-.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; }
-.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; }
-.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; }
-.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; }
-.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; }
-.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; }
-.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; }
-.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; }
-.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; }
-.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; }
-.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; }
-.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; }
-.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; }
-.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; }
-.#{$fa-css-prefix}-mail-forward:before,
-.#{$fa-css-prefix}-share:before { content: $fa-var-share; }
-.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; }
-.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; }
-.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; }
-.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; }
-.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; }
-.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; }
-.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; }
-.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; }
-.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; }
-.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; }
-.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; }
-.#{$fa-css-prefix}-warning:before,
-.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; }
-.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; }
-.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; }
-.#{$fa-css-prefix}-random:before { content: $fa-var-random; }
-.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; }
-.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; }
-.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; }
-.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; }
-.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; }
-.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; }
-.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; }
-.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; }
-.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; }
-.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; }
-.#{$fa-css-prefix}-bar-chart-o:before,
-.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; }
-.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; }
-.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; }
-.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; }
-.#{$fa-css-prefix}-key:before { content: $fa-var-key; }
-.#{$fa-css-prefix}-gears:before,
-.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; }
-.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; }
-.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; }
-.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; }
-.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; }
-.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; }
-.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; }
-.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; }
-.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; }
-.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; }
-.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; }
-.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; }
-.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; }
-.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; }
-.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; }
-.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; }
-.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; }
-.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; }
-.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; }
-.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; }
-.#{$fa-css-prefix}-facebook-f:before,
-.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; }
-.#{$fa-css-prefix}-github:before { content: $fa-var-github; }
-.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; }
-.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; }
-.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; }
-.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; }
-.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; }
-.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; }
-.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; }
-.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; }
-.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; }
-.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; }
-.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; }
-.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; }
-.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; }
-.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; }
-.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; }
-.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; }
-.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; }
-.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; }
-.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; }
-.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; }
-.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; }
-.#{$fa-css-prefix}-group:before,
-.#{$fa-css-prefix}-users:before { content: $fa-var-users; }
-.#{$fa-css-prefix}-chain:before,
-.#{$fa-css-prefix}-link:before { content: $fa-var-link; }
-.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; }
-.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; }
-.#{$fa-css-prefix}-cut:before,
-.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; }
-.#{$fa-css-prefix}-copy:before,
-.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; }
-.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; }
-.#{$fa-css-prefix}-save:before,
-.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; }
-.#{$fa-css-prefix}-square:before { content: $fa-var-square; }
-.#{$fa-css-prefix}-navicon:before,
-.#{$fa-css-prefix}-reorder:before,
-.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; }
-.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; }
-.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; }
-.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; }
-.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; }
-.#{$fa-css-prefix}-table:before { content: $fa-var-table; }
-.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; }
-.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; }
-.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; }
-.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; }
-.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; }
-.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; }
-.#{$fa-css-prefix}-money:before { content: $fa-var-money; }
-.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; }
-.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; }
-.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; }
-.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; }
-.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; }
-.#{$fa-css-prefix}-unsorted:before,
-.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; }
-.#{$fa-css-prefix}-sort-down:before,
-.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; }
-.#{$fa-css-prefix}-sort-up:before,
-.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; }
-.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; }
-.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; }
-.#{$fa-css-prefix}-rotate-left:before,
-.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; }
-.#{$fa-css-prefix}-legal:before,
-.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; }
-.#{$fa-css-prefix}-dashboard:before,
-.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; }
-.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; }
-.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; }
-.#{$fa-css-prefix}-flash:before,
-.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; }
-.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; }
-.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; }
-.#{$fa-css-prefix}-paste:before,
-.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; }
-.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; }
-.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; }
-.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; }
-.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; }
-.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; }
-.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; }
-.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; }
-.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; }
-.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; }
-.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; }
-.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; }
-.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; }
-.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; }
-.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; }
-.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; }
-.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; }
-.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; }
-.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; }
-.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; }
-.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; }
-.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; }
-.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; }
-.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; }
-.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; }
-.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; }
-.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; }
-.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; }
-.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; }
-.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; }
-.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; }
-.#{$fa-css-prefix}-mobile-phone:before,
-.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; }
-.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; }
-.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; }
-.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; }
-.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; }
-.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; }
-.#{$fa-css-prefix}-mail-reply:before,
-.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; }
-.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; }
-.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; }
-.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; }
-.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; }
-.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; }
-.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; }
-.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; }
-.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; }
-.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; }
-.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; }
-.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; }
-.#{$fa-css-prefix}-code:before { content: $fa-var-code; }
-.#{$fa-css-prefix}-mail-reply-all:before,
-.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; }
-.#{$fa-css-prefix}-star-half-empty:before,
-.#{$fa-css-prefix}-star-half-full:before,
-.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; }
-.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; }
-.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; }
-.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; }
-.#{$fa-css-prefix}-unlink:before,
-.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; }
-.#{$fa-css-prefix}-question:before { content: $fa-var-question; }
-.#{$fa-css-prefix}-info:before { content: $fa-var-info; }
-.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; }
-.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; }
-.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; }
-.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; }
-.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; }
-.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; }
-.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; }
-.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; }
-.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; }
-.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; }
-.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; }
-.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; }
-.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; }
-.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; }
-.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; }
-.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; }
-.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; }
-.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; }
-.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; }
-.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; }
-.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; }
-.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; }
-.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; }
-.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; }
-.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; }
-.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; }
-.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; }
-.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; }
-.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; }
-.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; }
-.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; }
-.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; }
-.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; }
-.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; }
-.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; }
-.#{$fa-css-prefix}-toggle-down:before,
-.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; }
-.#{$fa-css-prefix}-toggle-up:before,
-.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; }
-.#{$fa-css-prefix}-toggle-right:before,
-.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; }
-.#{$fa-css-prefix}-euro:before,
-.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; }
-.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; }
-.#{$fa-css-prefix}-dollar:before,
-.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; }
-.#{$fa-css-prefix}-rupee:before,
-.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; }
-.#{$fa-css-prefix}-cny:before,
-.#{$fa-css-prefix}-rmb:before,
-.#{$fa-css-prefix}-yen:before,
-.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; }
-.#{$fa-css-prefix}-ruble:before,
-.#{$fa-css-prefix}-rouble:before,
-.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; }
-.#{$fa-css-prefix}-won:before,
-.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; }
-.#{$fa-css-prefix}-bitcoin:before,
-.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; }
-.#{$fa-css-prefix}-file:before { content: $fa-var-file; }
-.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; }
-.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; }
-.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; }
-.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; }
-.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; }
-.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; }
-.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; }
-.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; }
-.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; }
-.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; }
-.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; }
-.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; }
-.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; }
-.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; }
-.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; }
-.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; }
-.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; }
-.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; }
-.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; }
-.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; }
-.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; }
-.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; }
-.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; }
-.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; }
-.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; }
-.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; }
-.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; }
-.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; }
-.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; }
-.#{$fa-css-prefix}-android:before { content: $fa-var-android; }
-.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; }
-.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; }
-.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; }
-.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; }
-.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; }
-.#{$fa-css-prefix}-female:before { content: $fa-var-female; }
-.#{$fa-css-prefix}-male:before { content: $fa-var-male; }
-.#{$fa-css-prefix}-gittip:before,
-.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; }
-.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; }
-.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; }
-.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; }
-.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; }
-.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; }
-.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; }
-.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; }
-.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; }
-.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; }
-.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; }
-.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; }
-.#{$fa-css-prefix}-toggle-left:before,
-.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; }
-.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; }
-.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; }
-.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; }
-.#{$fa-css-prefix}-turkish-lira:before,
-.#{$fa-css-prefix}-try:before { content: $fa-var-try; }
-.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; }
-.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; }
-.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; }
-.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; }
-.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; }
-.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; }
-.#{$fa-css-prefix}-institution:before,
-.#{$fa-css-prefix}-bank:before,
-.#{$fa-css-prefix}-university:before { content: $fa-var-university; }
-.#{$fa-css-prefix}-mortar-board:before,
-.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; }
-.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; }
-.#{$fa-css-prefix}-google:before { content: $fa-var-google; }
-.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; }
-.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; }
-.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; }
-.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; }
-.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; }
-.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; }
-.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; }
-.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; }
-.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; }
-.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; }
-.#{$fa-css-prefix}-language:before { content: $fa-var-language; }
-.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; }
-.#{$fa-css-prefix}-building:before { content: $fa-var-building; }
-.#{$fa-css-prefix}-child:before { content: $fa-var-child; }
-.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; }
-.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; }
-.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; }
-.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; }
-.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; }
-.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; }
-.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; }
-.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; }
-.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; }
-.#{$fa-css-prefix}-automobile:before,
-.#{$fa-css-prefix}-car:before { content: $fa-var-car; }
-.#{$fa-css-prefix}-cab:before,
-.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; }
-.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; }
-.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; }
-.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; }
-.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; }
-.#{$fa-css-prefix}-database:before { content: $fa-var-database; }
-.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; }
-.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; }
-.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; }
-.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; }
-.#{$fa-css-prefix}-file-photo-o:before,
-.#{$fa-css-prefix}-file-picture-o:before,
-.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; }
-.#{$fa-css-prefix}-file-zip-o:before,
-.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; }
-.#{$fa-css-prefix}-file-sound-o:before,
-.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; }
-.#{$fa-css-prefix}-file-movie-o:before,
-.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; }
-.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; }
-.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; }
-.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; }
-.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; }
-.#{$fa-css-prefix}-life-bouy:before,
-.#{$fa-css-prefix}-life-buoy:before,
-.#{$fa-css-prefix}-life-saver:before,
-.#{$fa-css-prefix}-support:before,
-.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; }
-.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; }
-.#{$fa-css-prefix}-ra:before,
-.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; }
-.#{$fa-css-prefix}-ge:before,
-.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; }
-.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; }
-.#{$fa-css-prefix}-git:before { content: $fa-var-git; }
-.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; }
-.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; }
-.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; }
-.#{$fa-css-prefix}-wechat:before,
-.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; }
-.#{$fa-css-prefix}-send:before,
-.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; }
-.#{$fa-css-prefix}-send-o:before,
-.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; }
-.#{$fa-css-prefix}-history:before { content: $fa-var-history; }
-.#{$fa-css-prefix}-genderless:before,
-.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; }
-.#{$fa-css-prefix}-header:before { content: $fa-var-header; }
-.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; }
-.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; }
-.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; }
-.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; }
-.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; }
-.#{$fa-css-prefix}-soccer-ball-o:before,
-.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; }
-.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; }
-.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; }
-.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; }
-.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; }
-.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; }
-.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; }
-.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; }
-.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; }
-.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; }
-.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; }
-.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; }
-.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; }
-.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; }
-.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; }
-.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; }
-.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; }
-.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; }
-.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; }
-.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; }
-.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; }
-.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; }
-.#{$fa-css-prefix}-at:before { content: $fa-var-at; }
-.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; }
-.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; }
-.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; }
-.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; }
-.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; }
-.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; }
-.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; }
-.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; }
-.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; }
-.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; }
-.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; }
-.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; }
-.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; }
-.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; }
-.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; }
-.#{$fa-css-prefix}-shekel:before,
-.#{$fa-css-prefix}-sheqel:before,
-.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; }
-.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; }
-.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; }
-.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; }
-.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; }
-.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; }
-.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; }
-.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; }
-.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; }
-.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; }
-.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; }
-.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; }
-.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; }
-.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; }
-.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; }
-.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; }
-.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; }
-.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; }
-.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; }
-.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; }
-.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; }
-.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; }
-.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; }
-.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; }
-.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; }
-.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; }
-.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; }
-.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; }
-.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; }
-.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; }
-.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; }
-.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; }
-.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; }
-.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; }
-.#{$fa-css-prefix}-server:before { content: $fa-var-server; }
-.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; }
-.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; }
-.#{$fa-css-prefix}-hotel:before,
-.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; }
-.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; }
-.#{$fa-css-prefix}-train:before { content: $fa-var-train; }
-.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; }
-.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; }
diff --git a/htdocs/theme/scss/_larger.scss b/htdocs/theme/scss/_larger.scss
deleted file mode 100755
index 41e9a8184aa287c5970cc8415e3c5a6310dc9f79..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_larger.scss
+++ /dev/null
@@ -1,13 +0,0 @@
-// Icon Sizes
-// -------------------------
-
-/* makes the font 33% larger relative to the icon container */
-.#{$fa-css-prefix}-lg {
-  font-size: (4em / 3);
-  line-height: (3em / 4);
-  vertical-align: -15%;
-}
-.#{$fa-css-prefix}-2x { font-size: 2em; }
-.#{$fa-css-prefix}-3x { font-size: 3em; }
-.#{$fa-css-prefix}-4x { font-size: 4em; }
-.#{$fa-css-prefix}-5x { font-size: 5em; }
diff --git a/htdocs/theme/scss/_list.scss b/htdocs/theme/scss/_list.scss
deleted file mode 100755
index 7d1e4d54d6c293333eb638aa56feba7b62e15564..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_list.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-// List Icons
-// -------------------------
-
-.#{$fa-css-prefix}-ul {
-  padding-left: 0;
-  margin-left: $fa-li-width;
-  list-style-type: none;
-  > li { position: relative; }
-}
-.#{$fa-css-prefix}-li {
-  position: absolute;
-  left: -$fa-li-width;
-  width: $fa-li-width;
-  top: (2em / 14);
-  text-align: center;
-  &.#{$fa-css-prefix}-lg {
-    left: -$fa-li-width + (4em / 14);
-  }
-}
diff --git a/htdocs/theme/scss/_mixins.scss b/htdocs/theme/scss/_mixins.scss
deleted file mode 100755
index 6b7f16093120f1f2245c16677687f30f5b95b7b7..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_mixins.scss
+++ /dev/null
@@ -1,27 +0,0 @@
-// Mixins
-// --------------------------
-
-@mixin fa-icon() {
-  display: inline-block;
-  font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
-  font-size: inherit; // can't have font-size inherit on line above, so need to override
-  text-rendering: auto; // optimizelegibility throws things off #1094
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  transform: translate(0, 0); // ensures no half-pixel rendering in firefox
-
-}
-
-@mixin fa-icon-rotate($degrees, $rotation) {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-  -webkit-transform: rotate($degrees);
-      -ms-transform: rotate($degrees);
-          transform: rotate($degrees);
-}
-
-@mixin fa-icon-flip($horiz, $vert, $rotation) {
-  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
-  -webkit-transform: scale($horiz, $vert);
-      -ms-transform: scale($horiz, $vert);
-          transform: scale($horiz, $vert);
-}
diff --git a/htdocs/theme/scss/_path.scss b/htdocs/theme/scss/_path.scss
deleted file mode 100755
index bb457c23a8e4e0688ebd9383e34ab9f2b3acecab..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_path.scss
+++ /dev/null
@@ -1,15 +0,0 @@
-/* FONT PATH
- * -------------------------- */
-
-@font-face {
-  font-family: 'FontAwesome';
-  src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
-  src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
-    url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
-    url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
-    url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
-    url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
-//  src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
-  font-weight: normal;
-  font-style: normal;
-}
diff --git a/htdocs/theme/scss/_rotated-flipped.scss b/htdocs/theme/scss/_rotated-flipped.scss
deleted file mode 100755
index a3558fd09ca7cb968166d5445f4df1a0bc2d5a7e..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_rotated-flipped.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-// Rotated & Flipped Icons
-// -------------------------
-
-.#{$fa-css-prefix}-rotate-90  { @include fa-icon-rotate(90deg, 1);  }
-.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
-.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
-
-.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
-.#{$fa-css-prefix}-flip-vertical   { @include fa-icon-flip(1, -1, 2); }
-
-// Hook for IE8-9
-// -------------------------
-
-:root .#{$fa-css-prefix}-rotate-90,
-:root .#{$fa-css-prefix}-rotate-180,
-:root .#{$fa-css-prefix}-rotate-270,
-:root .#{$fa-css-prefix}-flip-horizontal,
-:root .#{$fa-css-prefix}-flip-vertical {
-  filter: none;
-}
diff --git a/htdocs/theme/scss/_stacked.scss b/htdocs/theme/scss/_stacked.scss
deleted file mode 100755
index aef7403660c9a2ccc02a264c62c6b105f7d8d532..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_stacked.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-// Stacked Icons
-// -------------------------
-
-.#{$fa-css-prefix}-stack {
-  position: relative;
-  display: inline-block;
-  width: 2em;
-  height: 2em;
-  line-height: 2em;
-  vertical-align: middle;
-}
-.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
-  position: absolute;
-  left: 0;
-  width: 100%;
-  text-align: center;
-}
-.#{$fa-css-prefix}-stack-1x { line-height: inherit; }
-.#{$fa-css-prefix}-stack-2x { font-size: 2em; }
-.#{$fa-css-prefix}-inverse { color: $fa-inverse; }
diff --git a/htdocs/theme/scss/_variables.scss b/htdocs/theme/scss/_variables.scss
deleted file mode 100755
index 9b7210e23bd8e38b41703ccd11d08b7d27a867c9..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/_variables.scss
+++ /dev/null
@@ -1,606 +0,0 @@
-// Variables
-// --------------------------
-
-$fa-font-path:        "../fonts" !default;
-$fa-font-size-base:   14px !default;
-//$fa-font-path:        "//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts" !default; // for referencing Bootstrap CDN font files directly
-$fa-css-prefix:       fa !default;
-$fa-version:          "4.3.0" !default;
-$fa-border-color:     #eee !default;
-$fa-inverse:          #fff !default;
-$fa-li-width:         (30em / 14) !default;
-
-$fa-var-adjust: "\f042";
-$fa-var-adn: "\f170";
-$fa-var-align-center: "\f037";
-$fa-var-align-justify: "\f039";
-$fa-var-align-left: "\f036";
-$fa-var-align-right: "\f038";
-$fa-var-ambulance: "\f0f9";
-$fa-var-anchor: "\f13d";
-$fa-var-android: "\f17b";
-$fa-var-angellist: "\f209";
-$fa-var-angle-double-down: "\f103";
-$fa-var-angle-double-left: "\f100";
-$fa-var-angle-double-right: "\f101";
-$fa-var-angle-double-up: "\f102";
-$fa-var-angle-down: "\f107";
-$fa-var-angle-left: "\f104";
-$fa-var-angle-right: "\f105";
-$fa-var-angle-up: "\f106";
-$fa-var-apple: "\f179";
-$fa-var-archive: "\f187";
-$fa-var-area-chart: "\f1fe";
-$fa-var-arrow-circle-down: "\f0ab";
-$fa-var-arrow-circle-left: "\f0a8";
-$fa-var-arrow-circle-o-down: "\f01a";
-$fa-var-arrow-circle-o-left: "\f190";
-$fa-var-arrow-circle-o-right: "\f18e";
-$fa-var-arrow-circle-o-up: "\f01b";
-$fa-var-arrow-circle-right: "\f0a9";
-$fa-var-arrow-circle-up: "\f0aa";
-$fa-var-arrow-down: "\f063";
-$fa-var-arrow-left: "\f060";
-$fa-var-arrow-right: "\f061";
-$fa-var-arrow-up: "\f062";
-$fa-var-arrows: "\f047";
-$fa-var-arrows-alt: "\f0b2";
-$fa-var-arrows-h: "\f07e";
-$fa-var-arrows-v: "\f07d";
-$fa-var-asterisk: "\f069";
-$fa-var-at: "\f1fa";
-$fa-var-automobile: "\f1b9";
-$fa-var-backward: "\f04a";
-$fa-var-ban: "\f05e";
-$fa-var-bank: "\f19c";
-$fa-var-bar-chart: "\f080";
-$fa-var-bar-chart-o: "\f080";
-$fa-var-barcode: "\f02a";
-$fa-var-bars: "\f0c9";
-$fa-var-bed: "\f236";
-$fa-var-beer: "\f0fc";
-$fa-var-behance: "\f1b4";
-$fa-var-behance-square: "\f1b5";
-$fa-var-bell: "\f0f3";
-$fa-var-bell-o: "\f0a2";
-$fa-var-bell-slash: "\f1f6";
-$fa-var-bell-slash-o: "\f1f7";
-$fa-var-bicycle: "\f206";
-$fa-var-binoculars: "\f1e5";
-$fa-var-birthday-cake: "\f1fd";
-$fa-var-bitbucket: "\f171";
-$fa-var-bitbucket-square: "\f172";
-$fa-var-bitcoin: "\f15a";
-$fa-var-bold: "\f032";
-$fa-var-bolt: "\f0e7";
-$fa-var-bomb: "\f1e2";
-$fa-var-book: "\f02d";
-$fa-var-bookmark: "\f02e";
-$fa-var-bookmark-o: "\f097";
-$fa-var-briefcase: "\f0b1";
-$fa-var-btc: "\f15a";
-$fa-var-bug: "\f188";
-$fa-var-building: "\f1ad";
-$fa-var-building-o: "\f0f7";
-$fa-var-bullhorn: "\f0a1";
-$fa-var-bullseye: "\f140";
-$fa-var-bus: "\f207";
-$fa-var-buysellads: "\f20d";
-$fa-var-cab: "\f1ba";
-$fa-var-calculator: "\f1ec";
-$fa-var-calendar: "\f073";
-$fa-var-calendar-o: "\f133";
-$fa-var-camera: "\f030";
-$fa-var-camera-retro: "\f083";
-$fa-var-car: "\f1b9";
-$fa-var-caret-down: "\f0d7";
-$fa-var-caret-left: "\f0d9";
-$fa-var-caret-right: "\f0da";
-$fa-var-caret-square-o-down: "\f150";
-$fa-var-caret-square-o-left: "\f191";
-$fa-var-caret-square-o-right: "\f152";
-$fa-var-caret-square-o-up: "\f151";
-$fa-var-caret-up: "\f0d8";
-$fa-var-cart-arrow-down: "\f218";
-$fa-var-cart-plus: "\f217";
-$fa-var-cc: "\f20a";
-$fa-var-cc-amex: "\f1f3";
-$fa-var-cc-discover: "\f1f2";
-$fa-var-cc-mastercard: "\f1f1";
-$fa-var-cc-paypal: "\f1f4";
-$fa-var-cc-stripe: "\f1f5";
-$fa-var-cc-visa: "\f1f0";
-$fa-var-certificate: "\f0a3";
-$fa-var-chain: "\f0c1";
-$fa-var-chain-broken: "\f127";
-$fa-var-check: "\f00c";
-$fa-var-check-circle: "\f058";
-$fa-var-check-circle-o: "\f05d";
-$fa-var-check-square: "\f14a";
-$fa-var-check-square-o: "\f046";
-$fa-var-chevron-circle-down: "\f13a";
-$fa-var-chevron-circle-left: "\f137";
-$fa-var-chevron-circle-right: "\f138";
-$fa-var-chevron-circle-up: "\f139";
-$fa-var-chevron-down: "\f078";
-$fa-var-chevron-left: "\f053";
-$fa-var-chevron-right: "\f054";
-$fa-var-chevron-up: "\f077";
-$fa-var-child: "\f1ae";
-$fa-var-circle: "\f111";
-$fa-var-circle-o: "\f10c";
-$fa-var-circle-o-notch: "\f1ce";
-$fa-var-circle-thin: "\f1db";
-$fa-var-clipboard: "\f0ea";
-$fa-var-clock-o: "\f017";
-$fa-var-close: "\f00d";
-$fa-var-cloud: "\f0c2";
-$fa-var-cloud-download: "\f0ed";
-$fa-var-cloud-upload: "\f0ee";
-$fa-var-cny: "\f157";
-$fa-var-code: "\f121";
-$fa-var-code-fork: "\f126";
-$fa-var-codepen: "\f1cb";
-$fa-var-coffee: "\f0f4";
-$fa-var-cog: "\f013";
-$fa-var-cogs: "\f085";
-$fa-var-columns: "\f0db";
-$fa-var-comment: "\f075";
-$fa-var-comment-o: "\f0e5";
-$fa-var-comments: "\f086";
-$fa-var-comments-o: "\f0e6";
-$fa-var-compass: "\f14e";
-$fa-var-compress: "\f066";
-$fa-var-connectdevelop: "\f20e";
-$fa-var-copy: "\f0c5";
-$fa-var-copyright: "\f1f9";
-$fa-var-credit-card: "\f09d";
-$fa-var-crop: "\f125";
-$fa-var-crosshairs: "\f05b";
-$fa-var-css3: "\f13c";
-$fa-var-cube: "\f1b2";
-$fa-var-cubes: "\f1b3";
-$fa-var-cut: "\f0c4";
-$fa-var-cutlery: "\f0f5";
-$fa-var-dashboard: "\f0e4";
-$fa-var-dashcube: "\f210";
-$fa-var-database: "\f1c0";
-$fa-var-dedent: "\f03b";
-$fa-var-delicious: "\f1a5";
-$fa-var-desktop: "\f108";
-$fa-var-deviantart: "\f1bd";
-$fa-var-diamond: "\f219";
-$fa-var-digg: "\f1a6";
-$fa-var-dollar: "\f155";
-$fa-var-dot-circle-o: "\f192";
-$fa-var-download: "\f019";
-$fa-var-dribbble: "\f17d";
-$fa-var-dropbox: "\f16b";
-$fa-var-drupal: "\f1a9";
-$fa-var-edit: "\f044";
-$fa-var-eject: "\f052";
-$fa-var-ellipsis-h: "\f141";
-$fa-var-ellipsis-v: "\f142";
-$fa-var-empire: "\f1d1";
-$fa-var-envelope: "\f0e0";
-$fa-var-envelope-o: "\f003";
-$fa-var-envelope-square: "\f199";
-$fa-var-eraser: "\f12d";
-$fa-var-eur: "\f153";
-$fa-var-euro: "\f153";
-$fa-var-exchange: "\f0ec";
-$fa-var-exclamation: "\f12a";
-$fa-var-exclamation-circle: "\f06a";
-$fa-var-exclamation-triangle: "\f071";
-$fa-var-expand: "\f065";
-$fa-var-external-link: "\f08e";
-$fa-var-external-link-square: "\f14c";
-$fa-var-eye: "\f06e";
-$fa-var-eye-slash: "\f070";
-$fa-var-eyedropper: "\f1fb";
-$fa-var-facebook: "\f09a";
-$fa-var-facebook-f: "\f09a";
-$fa-var-facebook-official: "\f230";
-$fa-var-facebook-square: "\f082";
-$fa-var-fast-backward: "\f049";
-$fa-var-fast-forward: "\f050";
-$fa-var-fax: "\f1ac";
-$fa-var-female: "\f182";
-$fa-var-fighter-jet: "\f0fb";
-$fa-var-file: "\f15b";
-$fa-var-file-archive-o: "\f1c6";
-$fa-var-file-audio-o: "\f1c7";
-$fa-var-file-code-o: "\f1c9";
-$fa-var-file-excel-o: "\f1c3";
-$fa-var-file-image-o: "\f1c5";
-$fa-var-file-movie-o: "\f1c8";
-$fa-var-file-o: "\f016";
-$fa-var-file-pdf-o: "\f1c1";
-$fa-var-file-photo-o: "\f1c5";
-$fa-var-file-picture-o: "\f1c5";
-$fa-var-file-powerpoint-o: "\f1c4";
-$fa-var-file-sound-o: "\f1c7";
-$fa-var-file-text: "\f15c";
-$fa-var-file-text-o: "\f0f6";
-$fa-var-file-video-o: "\f1c8";
-$fa-var-file-word-o: "\f1c2";
-$fa-var-file-zip-o: "\f1c6";
-$fa-var-files-o: "\f0c5";
-$fa-var-film: "\f008";
-$fa-var-filter: "\f0b0";
-$fa-var-fire: "\f06d";
-$fa-var-fire-extinguisher: "\f134";
-$fa-var-flag: "\f024";
-$fa-var-flag-checkered: "\f11e";
-$fa-var-flag-o: "\f11d";
-$fa-var-flash: "\f0e7";
-$fa-var-flask: "\f0c3";
-$fa-var-flickr: "\f16e";
-$fa-var-floppy-o: "\f0c7";
-$fa-var-folder: "\f07b";
-$fa-var-folder-o: "\f114";
-$fa-var-folder-open: "\f07c";
-$fa-var-folder-open-o: "\f115";
-$fa-var-font: "\f031";
-$fa-var-forumbee: "\f211";
-$fa-var-forward: "\f04e";
-$fa-var-foursquare: "\f180";
-$fa-var-frown-o: "\f119";
-$fa-var-futbol-o: "\f1e3";
-$fa-var-gamepad: "\f11b";
-$fa-var-gavel: "\f0e3";
-$fa-var-gbp: "\f154";
-$fa-var-ge: "\f1d1";
-$fa-var-gear: "\f013";
-$fa-var-gears: "\f085";
-$fa-var-genderless: "\f1db";
-$fa-var-gift: "\f06b";
-$fa-var-git: "\f1d3";
-$fa-var-git-square: "\f1d2";
-$fa-var-github: "\f09b";
-$fa-var-github-alt: "\f113";
-$fa-var-github-square: "\f092";
-$fa-var-gittip: "\f184";
-$fa-var-glass: "\f000";
-$fa-var-globe: "\f0ac";
-$fa-var-google: "\f1a0";
-$fa-var-google-plus: "\f0d5";
-$fa-var-google-plus-square: "\f0d4";
-$fa-var-google-wallet: "\f1ee";
-$fa-var-graduation-cap: "\f19d";
-$fa-var-gratipay: "\f184";
-$fa-var-group: "\f0c0";
-$fa-var-h-square: "\f0fd";
-$fa-var-hacker-news: "\f1d4";
-$fa-var-hand-o-down: "\f0a7";
-$fa-var-hand-o-left: "\f0a5";
-$fa-var-hand-o-right: "\f0a4";
-$fa-var-hand-o-up: "\f0a6";
-$fa-var-hdd-o: "\f0a0";
-$fa-var-header: "\f1dc";
-$fa-var-headphones: "\f025";
-$fa-var-heart: "\f004";
-$fa-var-heart-o: "\f08a";
-$fa-var-heartbeat: "\f21e";
-$fa-var-history: "\f1da";
-$fa-var-home: "\f015";
-$fa-var-hospital-o: "\f0f8";
-$fa-var-hotel: "\f236";
-$fa-var-html5: "\f13b";
-$fa-var-ils: "\f20b";
-$fa-var-image: "\f03e";
-$fa-var-inbox: "\f01c";
-$fa-var-indent: "\f03c";
-$fa-var-info: "\f129";
-$fa-var-info-circle: "\f05a";
-$fa-var-inr: "\f156";
-$fa-var-instagram: "\f16d";
-$fa-var-institution: "\f19c";
-$fa-var-ioxhost: "\f208";
-$fa-var-italic: "\f033";
-$fa-var-joomla: "\f1aa";
-$fa-var-jpy: "\f157";
-$fa-var-jsfiddle: "\f1cc";
-$fa-var-key: "\f084";
-$fa-var-keyboard-o: "\f11c";
-$fa-var-krw: "\f159";
-$fa-var-language: "\f1ab";
-$fa-var-laptop: "\f109";
-$fa-var-lastfm: "\f202";
-$fa-var-lastfm-square: "\f203";
-$fa-var-leaf: "\f06c";
-$fa-var-leanpub: "\f212";
-$fa-var-legal: "\f0e3";
-$fa-var-lemon-o: "\f094";
-$fa-var-level-down: "\f149";
-$fa-var-level-up: "\f148";
-$fa-var-life-bouy: "\f1cd";
-$fa-var-life-buoy: "\f1cd";
-$fa-var-life-ring: "\f1cd";
-$fa-var-life-saver: "\f1cd";
-$fa-var-lightbulb-o: "\f0eb";
-$fa-var-line-chart: "\f201";
-$fa-var-link: "\f0c1";
-$fa-var-linkedin: "\f0e1";
-$fa-var-linkedin-square: "\f08c";
-$fa-var-linux: "\f17c";
-$fa-var-list: "\f03a";
-$fa-var-list-alt: "\f022";
-$fa-var-list-ol: "\f0cb";
-$fa-var-list-ul: "\f0ca";
-$fa-var-location-arrow: "\f124";
-$fa-var-lock: "\f023";
-$fa-var-long-arrow-down: "\f175";
-$fa-var-long-arrow-left: "\f177";
-$fa-var-long-arrow-right: "\f178";
-$fa-var-long-arrow-up: "\f176";
-$fa-var-magic: "\f0d0";
-$fa-var-magnet: "\f076";
-$fa-var-mail-forward: "\f064";
-$fa-var-mail-reply: "\f112";
-$fa-var-mail-reply-all: "\f122";
-$fa-var-male: "\f183";
-$fa-var-map-marker: "\f041";
-$fa-var-mars: "\f222";
-$fa-var-mars-double: "\f227";
-$fa-var-mars-stroke: "\f229";
-$fa-var-mars-stroke-h: "\f22b";
-$fa-var-mars-stroke-v: "\f22a";
-$fa-var-maxcdn: "\f136";
-$fa-var-meanpath: "\f20c";
-$fa-var-medium: "\f23a";
-$fa-var-medkit: "\f0fa";
-$fa-var-meh-o: "\f11a";
-$fa-var-mercury: "\f223";
-$fa-var-microphone: "\f130";
-$fa-var-microphone-slash: "\f131";
-$fa-var-minus: "\f068";
-$fa-var-minus-circle: "\f056";
-$fa-var-minus-square: "\f146";
-$fa-var-minus-square-o: "\f147";
-$fa-var-mobile: "\f10b";
-$fa-var-mobile-phone: "\f10b";
-$fa-var-money: "\f0d6";
-$fa-var-moon-o: "\f186";
-$fa-var-mortar-board: "\f19d";
-$fa-var-motorcycle: "\f21c";
-$fa-var-music: "\f001";
-$fa-var-navicon: "\f0c9";
-$fa-var-neuter: "\f22c";
-$fa-var-newspaper-o: "\f1ea";
-$fa-var-openid: "\f19b";
-$fa-var-outdent: "\f03b";
-$fa-var-pagelines: "\f18c";
-$fa-var-paint-brush: "\f1fc";
-$fa-var-paper-plane: "\f1d8";
-$fa-var-paper-plane-o: "\f1d9";
-$fa-var-paperclip: "\f0c6";
-$fa-var-paragraph: "\f1dd";
-$fa-var-paste: "\f0ea";
-$fa-var-pause: "\f04c";
-$fa-var-paw: "\f1b0";
-$fa-var-paypal: "\f1ed";
-$fa-var-pencil: "\f040";
-$fa-var-pencil-square: "\f14b";
-$fa-var-pencil-square-o: "\f044";
-$fa-var-phone: "\f095";
-$fa-var-phone-square: "\f098";
-$fa-var-photo: "\f03e";
-$fa-var-picture-o: "\f03e";
-$fa-var-pie-chart: "\f200";
-$fa-var-pied-piper: "\f1a7";
-$fa-var-pied-piper-alt: "\f1a8";
-$fa-var-pinterest: "\f0d2";
-$fa-var-pinterest-p: "\f231";
-$fa-var-pinterest-square: "\f0d3";
-$fa-var-plane: "\f072";
-$fa-var-play: "\f04b";
-$fa-var-play-circle: "\f144";
-$fa-var-play-circle-o: "\f01d";
-$fa-var-plug: "\f1e6";
-$fa-var-plus: "\f067";
-$fa-var-plus-circle: "\f055";
-$fa-var-plus-square: "\f0fe";
-$fa-var-plus-square-o: "\f196";
-$fa-var-power-off: "\f011";
-$fa-var-print: "\f02f";
-$fa-var-puzzle-piece: "\f12e";
-$fa-var-qq: "\f1d6";
-$fa-var-qrcode: "\f029";
-$fa-var-question: "\f128";
-$fa-var-question-circle: "\f059";
-$fa-var-quote-left: "\f10d";
-$fa-var-quote-right: "\f10e";
-$fa-var-ra: "\f1d0";
-$fa-var-random: "\f074";
-$fa-var-rebel: "\f1d0";
-$fa-var-recycle: "\f1b8";
-$fa-var-reddit: "\f1a1";
-$fa-var-reddit-square: "\f1a2";
-$fa-var-refresh: "\f021";
-$fa-var-remove: "\f00d";
-$fa-var-renren: "\f18b";
-$fa-var-reorder: "\f0c9";
-$fa-var-repeat: "\f01e";
-$fa-var-reply: "\f112";
-$fa-var-reply-all: "\f122";
-$fa-var-retweet: "\f079";
-$fa-var-rmb: "\f157";
-$fa-var-road: "\f018";
-$fa-var-rocket: "\f135";
-$fa-var-rotate-left: "\f0e2";
-$fa-var-rotate-right: "\f01e";
-$fa-var-rouble: "\f158";
-$fa-var-rss: "\f09e";
-$fa-var-rss-square: "\f143";
-$fa-var-rub: "\f158";
-$fa-var-ruble: "\f158";
-$fa-var-rupee: "\f156";
-$fa-var-save: "\f0c7";
-$fa-var-scissors: "\f0c4";
-$fa-var-search: "\f002";
-$fa-var-search-minus: "\f010";
-$fa-var-search-plus: "\f00e";
-$fa-var-sellsy: "\f213";
-$fa-var-send: "\f1d8";
-$fa-var-send-o: "\f1d9";
-$fa-var-server: "\f233";
-$fa-var-share: "\f064";
-$fa-var-share-alt: "\f1e0";
-$fa-var-share-alt-square: "\f1e1";
-$fa-var-share-square: "\f14d";
-$fa-var-share-square-o: "\f045";
-$fa-var-shekel: "\f20b";
-$fa-var-sheqel: "\f20b";
-$fa-var-shield: "\f132";
-$fa-var-ship: "\f21a";
-$fa-var-shirtsinbulk: "\f214";
-$fa-var-shopping-cart: "\f07a";
-$fa-var-sign-in: "\f090";
-$fa-var-sign-out: "\f08b";
-$fa-var-signal: "\f012";
-$fa-var-simplybuilt: "\f215";
-$fa-var-sitemap: "\f0e8";
-$fa-var-skyatlas: "\f216";
-$fa-var-skype: "\f17e";
-$fa-var-slack: "\f198";
-$fa-var-sliders: "\f1de";
-$fa-var-slideshare: "\f1e7";
-$fa-var-smile-o: "\f118";
-$fa-var-soccer-ball-o: "\f1e3";
-$fa-var-sort: "\f0dc";
-$fa-var-sort-alpha-asc: "\f15d";
-$fa-var-sort-alpha-desc: "\f15e";
-$fa-var-sort-amount-asc: "\f160";
-$fa-var-sort-amount-desc: "\f161";
-$fa-var-sort-asc: "\f0de";
-$fa-var-sort-desc: "\f0dd";
-$fa-var-sort-down: "\f0dd";
-$fa-var-sort-numeric-asc: "\f162";
-$fa-var-sort-numeric-desc: "\f163";
-$fa-var-sort-up: "\f0de";
-$fa-var-soundcloud: "\f1be";
-$fa-var-space-shuttle: "\f197";
-$fa-var-spinner: "\f110";
-$fa-var-spoon: "\f1b1";
-$fa-var-spotify: "\f1bc";
-$fa-var-square: "\f0c8";
-$fa-var-square-o: "\f096";
-$fa-var-stack-exchange: "\f18d";
-$fa-var-stack-overflow: "\f16c";
-$fa-var-star: "\f005";
-$fa-var-star-half: "\f089";
-$fa-var-star-half-empty: "\f123";
-$fa-var-star-half-full: "\f123";
-$fa-var-star-half-o: "\f123";
-$fa-var-star-o: "\f006";
-$fa-var-steam: "\f1b6";
-$fa-var-steam-square: "\f1b7";
-$fa-var-step-backward: "\f048";
-$fa-var-step-forward: "\f051";
-$fa-var-stethoscope: "\f0f1";
-$fa-var-stop: "\f04d";
-$fa-var-street-view: "\f21d";
-$fa-var-strikethrough: "\f0cc";
-$fa-var-stumbleupon: "\f1a4";
-$fa-var-stumbleupon-circle: "\f1a3";
-$fa-var-subscript: "\f12c";
-$fa-var-subway: "\f239";
-$fa-var-suitcase: "\f0f2";
-$fa-var-sun-o: "\f185";
-$fa-var-superscript: "\f12b";
-$fa-var-support: "\f1cd";
-$fa-var-table: "\f0ce";
-$fa-var-tablet: "\f10a";
-$fa-var-tachometer: "\f0e4";
-$fa-var-tag: "\f02b";
-$fa-var-tags: "\f02c";
-$fa-var-tasks: "\f0ae";
-$fa-var-taxi: "\f1ba";
-$fa-var-tencent-weibo: "\f1d5";
-$fa-var-terminal: "\f120";
-$fa-var-text-height: "\f034";
-$fa-var-text-width: "\f035";
-$fa-var-th: "\f00a";
-$fa-var-th-large: "\f009";
-$fa-var-th-list: "\f00b";
-$fa-var-thumb-tack: "\f08d";
-$fa-var-thumbs-down: "\f165";
-$fa-var-thumbs-o-down: "\f088";
-$fa-var-thumbs-o-up: "\f087";
-$fa-var-thumbs-up: "\f164";
-$fa-var-ticket: "\f145";
-$fa-var-times: "\f00d";
-$fa-var-times-circle: "\f057";
-$fa-var-times-circle-o: "\f05c";
-$fa-var-tint: "\f043";
-$fa-var-toggle-down: "\f150";
-$fa-var-toggle-left: "\f191";
-$fa-var-toggle-off: "\f204";
-$fa-var-toggle-on: "\f205";
-$fa-var-toggle-right: "\f152";
-$fa-var-toggle-up: "\f151";
-$fa-var-train: "\f238";
-$fa-var-transgender: "\f224";
-$fa-var-transgender-alt: "\f225";
-$fa-var-trash: "\f1f8";
-$fa-var-trash-o: "\f014";
-$fa-var-tree: "\f1bb";
-$fa-var-trello: "\f181";
-$fa-var-trophy: "\f091";
-$fa-var-truck: "\f0d1";
-$fa-var-try: "\f195";
-$fa-var-tty: "\f1e4";
-$fa-var-tumblr: "\f173";
-$fa-var-tumblr-square: "\f174";
-$fa-var-turkish-lira: "\f195";
-$fa-var-twitch: "\f1e8";
-$fa-var-twitter: "\f099";
-$fa-var-twitter-square: "\f081";
-$fa-var-umbrella: "\f0e9";
-$fa-var-underline: "\f0cd";
-$fa-var-undo: "\f0e2";
-$fa-var-university: "\f19c";
-$fa-var-unlink: "\f127";
-$fa-var-unlock: "\f09c";
-$fa-var-unlock-alt: "\f13e";
-$fa-var-unsorted: "\f0dc";
-$fa-var-upload: "\f093";
-$fa-var-usd: "\f155";
-$fa-var-user: "\f007";
-$fa-var-user-md: "\f0f0";
-$fa-var-user-plus: "\f234";
-$fa-var-user-secret: "\f21b";
-$fa-var-user-times: "\f235";
-$fa-var-users: "\f0c0";
-$fa-var-venus: "\f221";
-$fa-var-venus-double: "\f226";
-$fa-var-venus-mars: "\f228";
-$fa-var-viacoin: "\f237";
-$fa-var-video-camera: "\f03d";
-$fa-var-vimeo-square: "\f194";
-$fa-var-vine: "\f1ca";
-$fa-var-vk: "\f189";
-$fa-var-volume-down: "\f027";
-$fa-var-volume-off: "\f026";
-$fa-var-volume-up: "\f028";
-$fa-var-warning: "\f071";
-$fa-var-wechat: "\f1d7";
-$fa-var-weibo: "\f18a";
-$fa-var-weixin: "\f1d7";
-$fa-var-whatsapp: "\f232";
-$fa-var-wheelchair: "\f193";
-$fa-var-wifi: "\f1eb";
-$fa-var-windows: "\f17a";
-$fa-var-won: "\f159";
-$fa-var-wordpress: "\f19a";
-$fa-var-wrench: "\f0ad";
-$fa-var-xing: "\f168";
-$fa-var-xing-square: "\f169";
-$fa-var-yahoo: "\f19e";
-$fa-var-yelp: "\f1e9";
-$fa-var-yen: "\f157";
-$fa-var-youtube: "\f167";
-$fa-var-youtube-play: "\f16a";
-$fa-var-youtube-square: "\f166";
-
diff --git a/htdocs/theme/scss/font-awesome.scss b/htdocs/theme/scss/font-awesome.scss
deleted file mode 100755
index 388ac6b0cd6738cf09470583903708d28809762f..0000000000000000000000000000000000000000
--- a/htdocs/theme/scss/font-awesome.scss
+++ /dev/null
@@ -1,17 +0,0 @@
-/*!
- *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */
-
-@import "variables";
-@import "mixins";
-@import "path";
-@import "core";
-@import "larger";
-@import "fixed-width";
-@import "list";
-@import "bordered-pulled";
-@import "animated";
-@import "rotated-flipped";
-@import "stacked";
-@import "icons";
diff --git a/notes b/notes
new file mode 100644
index 0000000000000000000000000000000000000000..259647f53a1f924090855141703406b55778eada
--- /dev/null
+++ b/notes
@@ -0,0 +1,5 @@
+limit file download too (based on file size)
+    (a month or two now, long term 6 months)
+want to be able to request a month of everything at 1 minute (~2e6 records)
+offline ordering - email a tarball
+http request too large