From 34c68ffb6530a5ccdde23c4d31d9f9952fde70f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Tue, 2 May 2017 13:50:56 +0100 Subject: [PATCH] Rewrite js classes using prototypes This removes the requirement on ES6 support in the browser, which will allow to use unsee on older browsers --- assets/static/alerts.js | 70 ++++++++++++++++---------------- assets/static/config.js | 88 +++++++++++++++++++---------------------- bindata_assetfs.go | 4 +- 3 files changed, 76 insertions(+), 86 deletions(-) diff --git a/assets/static/alerts.js b/assets/static/alerts.js index 8f7570117..2d532eb69 100644 --- a/assets/static/alerts.js +++ b/assets/static/alerts.js @@ -1,5 +1,3 @@ -// jshint esversion: 6 - /* globals LRUMap */ // lru.js /* globals moment */ // moment.js @@ -11,43 +9,41 @@ var Alerts = (function() { var silences = {}, labelCache = new LRUMap(1000); - class AlertGroup { - constructor(groupData) { - $.extend(this, groupData); - } - - Render() { - return Templates.Render("alertGroup", { - group: this, - silences: silences, - static_color_label: Colors.GetStaticLabels(), - alert_limit: 5 - }); - } - - // called after group was rendered for the first time - Added() { - UI.SetupAlertGroupUI($("#" + this.id)); - } - - Update() { - // hide popovers in this group - $("#" + this.id + " [data-label-type='filter']").popover("hide"); - - // remove all elements prior to content update to purge all event listeners and hooks - $.each($("#" + this.id).find(".panel-body, .panel-heading"), function(i, elem) { - $(elem).remove(); - }); - - $("#" + this.id).html($(this.Render()).html()); - $("#" + this.id).data("hash", this.hash); - - // pulse the badge to show that group content was changed, repeat it twice - $("#" + this.id + " > .panel > .panel-heading > .badge:in-viewport").finish().fadeOut(300).fadeIn(300).fadeOut(300).fadeIn(300); - } - + function AlertGroup(groupData) { + $.extend(this, groupData); } + AlertGroup.prototype.Render = function() { + return Templates.Render("alertGroup", { + group: this, + silences: silences, + static_color_label: Colors.GetStaticLabels(), + alert_limit: 5 + }); + }; + + // called after group was rendered for the first time + AlertGroup.prototype.Added = function() { + UI.SetupAlertGroupUI($("#" + this.id)); + }; + + AlertGroup.prototype.Update = function() { + // hide popovers in this group + $("#" + this.id + " [data-label-type='filter']").popover("hide"); + + // remove all elements prior to content update to purge all event listeners and hooks + $.each($("#" + this.id).find(".panel-body, .panel-heading"), function(i, elem) { + $(elem).remove(); + }); + + $("#" + this.id).html($(this.Render()).html()); + $("#" + this.id).data("hash", this.hash); + + // pulse the badge to show that group content was changed, repeat it twice + $("#" + this.id + " > .panel > .panel-heading > .badge:in-viewport").finish().fadeOut(300).fadeIn(300).fadeOut(300).fadeIn(300); + }; + + var destroyGroup = function(groupID) { $("#" + groupID + " [data-label-type='filter']").popover("hide"); $("#" + groupID + " [data-toggle='tooltip']").tooltip("hide"); diff --git a/assets/static/config.js b/assets/static/config.js index dcab6a4d6..188f13d82 100644 --- a/assets/static/config.js +++ b/assets/static/config.js @@ -1,5 +1,3 @@ -// jshint esversion: 6 - /* globals Clipboard */ // clipboard.js /* globals Cookies */ // js.cookie.js @@ -8,54 +6,50 @@ /* exported ConfigOption */ var ConfigOption = (function() { - class optionClass { - - constructor(params) { - this.Cookie = params.Cookie; - this.QueryParam = params.QueryParam; - this.Selector = params.Selector; - this.Get = params.Getter || function() { - return $(this.Selector).is(":checked"); - }; - this.Set = params.Setter || function(val) { - $(this.Selector).bootstrapSwitch("state", $.parseJSON(val), true); - }; - this.Action = params.Action || function() {}; - this.Init = params.Init || function() { - var elem = this; - $(this.Selector).on("switchChange.bootstrapSwitch", function(event, val) { - elem.Save(val); - elem.Action(val); - }); - }; - } - - Load() { - var currentVal = this.Get(); - - var val = Cookies.get(this.Cookie); - if (val !== undefined) { - this.Set(val); - } - - var q = QueryString.Parse(); - if (q[this.QueryParam] !== undefined) { - this.Set(q[this.QueryParam]); - } - - if (currentVal != val) { - this.Action(val); - } - } - - Save(val) { - Cookies.set(this.Cookie, val, { - expires: 365, - path: "" + function optionClass(params) { + this.Cookie = params.Cookie; + this.QueryParam = params.QueryParam; + this.Selector = params.Selector; + this.Get = params.Getter || function() { + return $(this.Selector).is(":checked"); + }; + this.Set = params.Setter || function(val) { + $(this.Selector).bootstrapSwitch("state", $.parseJSON(val), true); + }; + this.Action = params.Action || function() {}; + this.Init = params.Init || function() { + var elem = this; + $(this.Selector).on("switchChange.bootstrapSwitch", function(event, val) { + elem.Save(val); + elem.Action(val); }); + }; + } + + optionClass.prototype.Load = function() { + var currentVal = this.Get(); + + var val = Cookies.get(this.Cookie); + if (val !== undefined) { + this.Set(val); } - } + var q = QueryString.Parse(); + if (q[this.QueryParam] !== undefined) { + this.Set(q[this.QueryParam]); + } + + if (currentVal != val) { + this.Action(val); + } + }; + + optionClass.prototype.Save = function(val) { + Cookies.set(this.Cookie, val, { + expires: 365, + path: "" + }); + }; return { New: optionClass diff --git a/bindata_assetfs.go b/bindata_assetfs.go index 64900a702..fa56bfa22 100644 --- a/bindata_assetfs.go +++ b/bindata_assetfs.go @@ -296,7 +296,7 @@ func templatesSummaryHtml() (*asset, error) { return a, nil } -var _staticAlertsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x5b\x6f\xdc\xba\x11\x7e\xcf\xaf\x98\xa3\x06\x88\x36\x91\x25\x07\x41\xd3\x62\xdd\x3d\x40\x9a\x83\x06\x46\x73\x1a\xc0\x8e\x9f\xdc\xc0\xa0\xc5\xd9\x15\x63\x2d\x29\x90\x23\xaf\xb7\x81\xff\x7b\xc1\x8b\x24\xea\xe2\x24\xa7\xe8\x3e\xd8\x92\x38\x97\x6f\x86\xc3\xb9\xb0\x28\xe0\xab\xa9\x84\x24\x40\x73\x8f\xda\x08\x25\xd7\xf0\xf6\xd9\xb3\xe2\x25\xec\x6a\x75\xcb\x6a\x03\x1f\x2f\xae\x7e\x67\x0d\xbc\x2c\xc0\xfe\x8a\x02\x6a\xdd\xe6\x5f\x4d\x4c\xb2\x57\x7b\x94\x14\x91\xf8\x0f\x96\x2a\x26\x7b\xd7\x92\x2a\xd5\xbe\xa9\x91\x30\x83\xf7\xaa\x56\xda\xd8\xff\x72\x2b\x76\xf6\x7f\x2b\x09\x75\x06\x1f\xb4\xe0\x19\x7c\xc6\x7d\x53\x33\x42\x93\xc1\x65\xbb\xdf\x33\x7d\xcc\xe0\xea\x3c\x83\x2b\x69\x10\xe1\x65\xe1\x24\xe3\x43\xa3\x34\x21\x87\x77\x35\x6a\x32\xf6\xf3\x3d\xd3\xdd\xdb\x06\xd2\x6d\x2b\x4b\x12\x4a\xa6\x2b\xf8\xf6\xec\x99\x45\x67\xd7\x8d\xa8\x51\x96\x68\x29\xbe\x3d\x66\xee\xb3\xfd\xd5\xec\x16\xeb\xf7\xac\xac\x10\x36\x20\xf1\x10\x4c\x4f\x5f\x9f\x9e\x9e\xae\xce\x3c\x7b\x59\x33\x63\xbc\x82\x0f\x5a\xb5\x0d\x7c\xeb\xd9\x4b\x25\x0d\xe9\xb6\x24\xa5\xd3\x9d\x5d\xfb\x8d\x11\x5b\x45\x04\xf6\xf7\x3c\xc7\x07\x42\xc9\x53\xaa\x84\xc9\x60\xa0\x3b\xeb\xc9\x1e\x9f\xf5\x8f\x17\x28\x39\xea\x74\x2a\x44\x23\xb5\x5a\x0e\x2e\xca\x03\x5d\xc2\x7a\x5c\x49\x36\xe1\xb1\x3f\xa7\x6d\x0d\x4e\xf5\x6c\xb1\x73\xca\xba\x7f\x5a\xa0\x21\x46\xa2\xbc\x29\xed\xd6\xdd\x38\x77\xad\xc3\x3e\xe6\x1f\x90\x2e\xdd\xea\x47\xfb\xd9\xa4\xab\x39\xb7\x43\x77\x53\x8b\xbd\xa0\x35\xfc\x79\xb4\xfc\xb8\x6c\x7f\x51\x40\xc9\xea\x1a\x39\xb0\x2d\xa1\xf6\x06\xc0\x81\x19\xd0\xce\x62\xe4\xb0\x55\x1a\xa8\x42\xd8\x0a\x6d\x08\x48\xec\xb1\xe7\x7e\xc7\x39\xf2\x99\xf3\xae\xce\xf3\x4b\xa4\xb6\x19\xf6\xf0\xea\x3c\x7d\x9e\x26\x7f\x4a\xe0\x95\x73\x4d\x2e\xf8\x6a\x19\xce\x55\xc3\x19\xe1\x4c\x62\x51\x40\x25\x38\x42\xa3\x1a\x65\x0f\x11\x08\xe9\x04\x79\xb8\xe3\xed\x1f\xeb\x81\x57\x90\xc0\x35\x67\xc4\x4e\x9c\x37\x4f\xe8\xd8\xe0\xe6\xc5\x56\xd4\x84\xfa\xc5\x97\x64\x95\x07\x99\x69\x62\x35\x24\x5d\x14\x46\x9a\x35\xee\xd5\x3d\x02\xab\x6b\xc0\x1a\xed\xb1\x33\xd0\x68\x61\xbd\xa2\x6c\x48\x92\x3d\x99\xad\x03\x6e\xbf\x34\xad\xde\x05\xea\x7b\xbb\x52\x0b\x43\x28\x2d\x68\x26\x39\x54\x4a\xdd\x99\x69\xbc\xb2\xb2\x9a\xf9\x27\xdf\x0a\xc9\xd3\x24\x6f\x98\xc4\xfa\xe4\x56\xf1\x63\x06\xe1\xa5\x42\xc6\x85\xdc\x25\xab\x0c\xfa\xd3\x27\x32\x07\x6e\xea\x38\xef\x11\xb7\x92\x7b\x3b\xd2\xc8\xf1\x5d\x5c\x7c\xcf\x81\xab\xbc\xa2\x7d\x9d\x3e\x77\xc7\xa9\x3b\x06\xab\xf0\x75\x35\x11\x36\xe3\xb5\x8e\x4f\x93\x8a\x99\x2a\xc9\xfc\x57\xfb\xbc\xe0\xe4\xa6\xad\x0d\xba\x30\xbb\x65\x7c\xe7\x1c\x69\x2a\x75\x00\xaa\x18\x85\xa0\xec\x5c\x6d\x83\xb3\xac\x98\xdc\x21\xcf\x40\x63\x83\x8c\x40\x10\xd0\x41\x94\xf8\xc3\x50\xf8\x35\x38\xb1\x7f\xe8\xbc\x69\x3f\x38\xd5\x6b\x21\x4f\xee\x05\x1e\x6c\xde\x4b\xdc\x36\x08\x53\xa5\xab\x7c\xcb\x38\x7e\x6a\x29\x7d\x73\x7a\xea\x5f\xce\xe5\xf0\xbc\xb4\x30\x0b\xf0\xc7\x21\x3f\x72\x34\xa4\xd5\xd1\x27\xb8\xcd\xb0\x8d\xce\xd2\xf3\xdf\xe2\x6d\xec\xac\x08\x4b\xff\x43\x40\xff\x58\x12\xa9\xdd\xae\xc6\xcd\x0b\x52\xaa\x26\xd1\x38\x31\xe1\x79\x41\xcc\x38\x60\x3b\xc8\xff\x9f\x80\x7d\x3a\x58\xe3\x04\x66\x0b\x58\x7e\xe1\x49\xa6\x38\x02\xd9\xe3\x59\x54\x8d\x94\xa6\xdf\x59\xf3\xf7\xe3\x3f\xf1\x18\x7b\x7b\xcf\x9a\xcf\xea\x52\x69\x8a\x51\x58\x86\x3b\x3c\xda\xd2\xf5\xe9\xf6\x2b\x96\x94\xdb\xb7\x88\x76\x80\x61\x17\x72\x2b\x3c\xc6\xd9\x29\x44\x0e\x1b\xb8\xfe\x32\xf3\x9b\x65\x1a\xfb\xe1\x0e\x8f\x53\x37\x78\x01\x79\xd3\x9a\x2a\x9d\x9f\xe8\x3b\x3c\xae\xed\x9f\x79\x01\xb8\x67\x75\x8b\x6b\xe8\xc1\x5e\xdf\xe1\xf1\xcb\x9c\x8c\xf0\x81\x9c\x04\x1b\x03\x6b\xb0\xee\x1b\xb3\x3c\x5d\x3a\xa2\xe7\x50\x24\x3d\xd6\xb9\xd7\x5d\x78\xbe\x23\xd2\x26\xf6\xb9\x85\xed\x61\x4e\x9d\xee\xe8\x61\x33\x86\xe5\x28\xa3\x74\x61\x09\x59\x90\x39\x74\x13\xf9\x0e\x29\x75\xaf\x11\x3c\xb1\x85\xd4\x93\xfe\xb2\xd9\x40\x2b\x39\x6e\x85\x44\xbe\xea\x70\xbb\xb5\x48\x74\x27\x76\xec\x6f\xef\x2a\x27\x7b\xec\x47\xd7\xa7\xac\x21\xf1\xb0\xfd\x59\xb4\xb9\xde\xc1\x1e\x4a\xf6\x7b\x4b\x16\x5b\x3d\x96\x62\xe8\x58\x63\x5c\xe2\x63\xd2\xc1\xeb\x67\x0b\x2d\x54\x6e\x3a\xa3\x33\x8f\x7d\xbe\x35\xc1\xc4\xe9\xce\x54\xed\x9e\x49\xf1\x1f\xfc\x2c\xf6\x68\x88\xed\x9b\xd1\x0e\x4d\xf7\x45\xaa\x03\x6c\x42\xc3\x19\x07\xba\x6d\x1d\x5c\x1a\x76\x3d\x81\x93\xe3\xd1\x19\x9b\xbd\x6f\x11\x34\xd6\x8c\xc4\x3d\x2e\x64\x8e\x3c\xe4\x2e\xf3\x33\x39\xc1\x82\x70\xcd\x66\xc0\xd0\xe5\x08\x5f\x5c\xbc\x8c\xd0\x0f\x9f\x5f\x7e\xba\xf9\xeb\xdb\xd3\xd7\x93\xba\x14\x87\x17\x99\x7c\xab\xd5\xfe\x5f\xea\x30\x2d\x85\x9d\xdc\x90\xc8\x3a\x88\x27\xa6\x61\xd2\x26\x44\x7c\x98\x07\x59\xcc\x67\xbd\x9d\x26\x3e\xa1\x9a\x13\x12\x54\xa3\xad\x7a\x26\x27\x75\x49\x5a\xc8\xdd\xac\x5e\x7a\xcb\x6e\xd8\xce\xf5\xc3\xea\x90\x73\xb1\xdd\xa6\x64\x32\x48\xf6\x42\xb6\x84\x26\x99\x70\xd8\xa0\x0e\x1c\x7f\x83\x37\xdf\x2b\xf7\x8c\x73\x1f\x7b\x89\xc6\x12\x25\x9d\xb8\xe6\x30\xe9\xcd\x13\xb2\x14\xdc\x7e\x17\x92\x8b\x92\x91\xd2\x49\x97\x76\x03\x5f\x25\x38\x47\x39\x45\xf0\x08\x68\x4b\xf5\x8f\xfa\x8c\x3f\xae\x7b\x00\xfc\x84\xe2\x51\x12\x8a\xc3\x70\x5b\x33\x53\x81\x57\xe5\x7b\x60\x13\x17\xbd\x3c\x06\xf1\xbd\xf2\xfe\xd9\x95\xc1\xa1\x90\xff\x81\xf7\xf9\x21\xf3\x1d\x61\x3f\x28\xf5\x41\xce\x1a\x71\x81\xa6\x51\xd2\xcc\x32\xa0\x03\xe8\xa6\x34\xd8\xc0\xe9\xb8\xa4\xb8\xf2\xe6\xe7\xa9\xb1\xf1\xa1\xf3\xf4\x23\xe0\x30\x78\x71\x51\x12\x30\x03\x82\x5e\x18\x90\x88\x3c\x74\xf2\xbe\xad\x17\x72\xd7\xcb\x88\x66\xb5\x08\x5b\xde\x7d\x9e\x24\x5f\xe3\x47\x45\x3b\x51\x05\x30\xbd\xa7\xfd\xe9\x8e\x65\x94\x7e\xe2\x8c\xeb\x9d\x3b\x40\x37\x2e\xc9\x75\xab\xab\xd9\x00\x67\xe5\x3c\xc9\x7b\xcf\xea\x0c\x2a\x41\x53\x3e\x67\xcb\x80\xee\xba\xd7\x34\x54\x93\x5e\xc0\x17\xd8\x38\x11\xf3\x5e\x78\xe9\x39\x8c\xc7\x79\x98\x4e\x22\x25\x71\x20\x2e\xd8\xef\x37\x6d\x9c\xe1\x9e\x1c\x5c\xfb\x08\xe8\xba\x42\x3b\x20\x0f\x33\x54\xba\x34\xc9\x42\x37\x73\x9a\xeb\x81\x35\x17\xdc\xda\x37\x7c\x18\xd3\x47\x51\xf6\x2a\xa6\xca\xfd\xc9\xc9\x6b\x94\x3b\xaa\xce\x96\x4f\x5b\xb8\x43\xb0\x03\x5e\x3a\x08\x9a\xb6\x66\x97\x95\xcf\xae\xa3\xc8\xe1\x42\x93\x6b\xbf\x58\x6d\x70\x1c\xc3\x15\x93\xbc\xb6\x43\x93\x46\xc6\x8f\x80\x0f\xc2\x90\xed\xc9\xbd\x69\x53\x0f\x3b\x15\xe7\x84\x7b\x3b\x03\x8f\xab\x47\x60\x74\xf6\x2c\xf9\x77\x17\x5c\x1b\x7c\x36\xa2\xb7\x6e\x9b\x27\x5b\xcf\x31\xe9\x20\xe6\x81\x57\x14\x41\xb6\x21\x51\xd7\xd0\x68\x34\x28\x29\x83\xb2\xc2\xf2\xce\x0a\x0a\x13\xcb\x8c\xb1\xd7\xe1\x26\x23\xf8\x65\x33\x36\xc2\x15\x39\x83\xe4\xe7\xa6\x05\xc5\x23\xe5\x76\x34\xf2\xf9\xc0\x8d\x46\xf6\xa4\x07\xc5\x66\x91\xd1\x2b\xee\x86\xee\xb3\x45\x9a\xa7\xe1\x74\x7e\x74\x2f\xcb\xcc\xdd\x9e\x93\x1e\x75\x71\x13\xf0\x15\x51\x63\xd6\x45\xb1\x13\x54\xb5\xb7\x79\xa9\xf6\x05\x1d\x6e\x4d\x71\xab\x14\x19\xd2\xac\x29\x84\x31\x2d\x9a\xe2\xf5\xdb\x37\x7f\x79\xbb\x28\xc5\x20\xd9\x6e\x46\xb5\x94\x2e\x36\x32\xcb\x96\x87\xfb\x8b\x65\xec\x8f\x19\x84\x7b\xa9\xd9\xca\xcf\x15\xc4\x7e\x5b\x84\x81\x9d\x92\x98\x75\x63\x1f\x08\x9a\x11\xc7\x13\x61\x3a\x8d\xcb\x05\x0c\x63\xcf\x3e\x8d\x6e\xb8\xc0\xb0\x5d\x4f\x57\x46\xba\xea\x70\xc0\x17\x1a\x81\x2b\x89\x70\x10\x54\x4d\x81\x71\xac\xd1\xd6\x96\x1f\x9e\x96\x69\x45\x0e\xb1\x67\x33\xd8\xe4\x0c\xdb\x53\xd8\x4d\xf2\x8b\xf3\xd1\x3c\x67\xf2\x90\x34\xa7\xfb\x19\xc4\xf8\x29\xc9\x6f\x68\x7f\x3f\xb1\x9c\xc8\x8b\x02\x58\xd3\xa0\xe4\x11\x32\x10\x12\xca\xaa\x95\xd1\xb5\x8c\x3d\x93\x9d\x70\x9f\x0d\xe1\x57\x38\x9d\xaa\x77\x69\xe8\x9d\x13\x97\x3e\xef\xe9\x4d\x53\x8b\x12\xd3\x53\x17\x3c\xab\xfc\xab\x12\x32\x4d\xfe\x2d\x93\xd5\xb4\xf7\x5b\xde\xc0\xf1\xd5\x1c\xab\x0f\xec\x68\x40\xe3\x56\xa3\xa9\x66\x7d\x76\x4f\x3a\x6f\xe8\xd3\x85\xca\xf4\xf3\x9e\x7d\xe2\x74\x8c\x76\xd9\x3a\xc9\xd9\x30\x65\x8e\x2f\xa1\xf3\x0b\xb4\x53\xca\xc4\xf4\x30\xbe\x73\xcd\x66\x3d\xb8\x95\xea\xef\xab\xed\x30\xf4\xa9\x71\x38\x13\xd7\xe0\x25\x2b\x37\x1f\xad\x96\x8e\xb5\xbb\xb3\xce\xff\x61\xc9\x66\x17\x5c\xb3\x6b\x98\x60\x44\x98\x91\x06\x61\x3e\x0f\xae\x47\x9d\xdb\x30\xad\x5d\x46\x97\x08\xeb\xd1\x95\xc2\x40\xf3\x01\xe9\x63\x3f\xf5\xae\xa3\x09\xb8\x57\xfc\xe8\x62\xf3\xbf\x01\x00\x00\xff\xff\xc1\x95\x06\x52\x15\x18\x00\x00") +var _staticAlertsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\xdd\x6f\xdc\xb8\x11\x7f\xbf\xbf\x62\x4e\x0d\x10\x6d\x22\x4b\x0e\x82\xa6\xc5\xba\x7b\x40\x9a\x43\x03\xa3\xb9\x06\xb0\xe3\x27\x37\x30\x68\x71\x76\xc5\x98\x4b\x0a\xe4\xc8\xeb\xed\xc1\xff\x7b\xc1\x0f\x7d\x6b\xef\x72\x7d\xe8\x3e\xd8\x92\x38\x9c\xf9\xf1\xc7\xe1\x7c\xb0\x78\x05\x3b\xa9\xef\x99\xb4\xf0\xe9\xea\xe6\x17\x56\xc3\xab\x02\xdc\xaf\x28\x40\x9a\x26\xff\x66\x7f\x18\x88\xec\xf5\x1e\x15\x0d\x44\xc2\x07\x27\x35\x14\x7b\xdf\x90\x2e\xf5\xbe\x96\x48\x98\xc1\x07\x2d\xb5\xb1\xee\xbf\xda\x8a\x9d\xfb\xdf\x28\x42\x93\xc1\x47\x23\x78\x06\x5f\x70\x5f\x4b\x46\x68\x33\xb8\x6e\xf6\x7b\x66\x8e\x19\xdc\x5c\x66\x70\xa3\x2c\x22\xbc\x2a\xbc\x66\x7c\xaa\xb5\x21\xe4\xf0\x5e\xa2\x21\xeb\x3e\x3f\x32\xd3\xbe\x6d\x20\xdd\x36\xaa\x24\xa1\x55\xba\x82\x5f\x7f\xf8\xc1\xa1\x73\xe3\x56\x48\x54\x25\x3a\x89\x5f\x9f\x33\xff\xd9\xfd\x24\xbb\x47\xf9\x81\x95\x15\xc2\x06\x14\x1e\xe2\xd2\xd3\x37\xe7\xe7\xe7\xab\x8b\x30\xbd\x55\x18\x6c\x7c\x34\xba\xa9\xd3\x9d\xfb\xfb\x33\x23\xe6\x8c\xb4\xca\x5e\xe4\xf8\x44\xa8\x78\x4a\x95\xb0\x19\xf4\x32\x17\x5e\xe4\x39\xa8\xeb\xb5\xe4\xb5\xd1\xa4\xe9\x58\x63\x7e\x85\x8a\xa3\x81\x0d\x8c\xd0\xb7\x8a\x0d\x52\x63\x54\xcf\x4f\x14\x4f\x13\xd6\xe9\x4a\xb2\x81\xbc\xfb\x79\xeb\x6b\xf0\x50\x46\x03\x2d\x13\xeb\xee\x69\x32\x4e\x8c\x44\x79\x57\xba\xbd\xba\xf3\xfc\xac\xe3\xc6\xe5\x1f\x91\xae\xfd\xe8\x27\xf7\xd9\xa6\xab\xf1\x4c\x8f\xe6\x4e\x8a\xbd\xa0\x35\xfc\xb9\x1b\x7a\x6e\xd7\x1f\xf9\x2c\x0a\x28\x99\x94\xc8\x81\x6d\x09\x4d\x40\x0a\x07\x66\xc1\xf8\x65\x21\x87\xad\x36\x40\x15\xc2\x56\x18\x4b\x40\x62\x8f\xa7\xa9\x7b\xcf\x39\xf2\x53\xcc\xdd\x5c\xe6\xd7\x48\x4d\xdd\xcf\xbc\xb9\x4c\x5f\xa4\xc9\x9f\x12\x78\xed\xb9\xc9\x05\x5f\x4d\xf0\x2d\x5a\xb9\xa9\x39\x23\x3c\x65\xa6\x28\xa0\x12\x1c\xa1\xd6\xb5\x7e\x44\x63\x41\x28\xaf\x3d\xac\xad\x77\x90\xb1\x61\x78\x0d\x09\xdc\x72\x46\xec\xcc\xf3\x7c\xe6\x2c\x6d\x5e\x6e\x85\x24\x34\x2f\xbf\x26\xab\x3c\xea\x4b\x13\xa7\x3d\x69\x1d\x32\x5a\x34\xb8\xd7\x8f\x08\x4c\x4a\x40\x89\xee\xf4\x59\xa8\x8d\x70\xd4\x69\x28\xb5\x22\x77\x40\x9b\x80\x9b\x34\xd4\x8d\xd9\x45\xe9\x47\x37\x22\x85\x25\x54\x0e\x2c\x53\x1c\x2a\xad\x1f\xec\xd0\x93\x59\x59\xcd\x88\xca\xb7\x42\xf1\x34\xc9\x6b\xa6\x50\x9e\xdd\x6b\x7e\xcc\x20\xbe\x54\xc8\xb8\x50\xbb\x64\x95\xf5\x0c\x89\xcc\x03\x5b\x4d\x3c\xf3\x45\xea\xbf\xe6\x01\x7f\x1a\xd9\x6f\x3d\xe5\x14\x59\xab\xbc\xa2\xbd\x4c\x5f\xf8\xc3\xd5\x1e\x80\x55\xfc\xba\x1a\x28\x99\xcd\x73\x04\xa7\x49\xc5\x6c\x95\x64\xe1\xab\x7b\x9e\x90\x59\x37\xd2\xa2\xf7\xb9\x7b\xc6\x77\x9e\x30\x5b\xe9\x03\x50\xc5\x28\x7a\x68\x4b\xa9\xf3\xd4\xb2\x62\x6a\x87\x3c\x03\x83\x35\x32\x02\x41\x40\x07\x51\xe2\x6f\x6e\xf5\x4f\x91\xac\xee\xa1\x65\xcd\x7d\xf0\x66\xd7\x42\x9d\x3d\x0a\x3c\xb8\x10\x97\x78\xba\x85\xad\xd2\x55\xbe\x65\x1c\x3f\x37\x94\xbe\x3d\x3f\x0f\x2f\x97\xaa\x7f\x5e\x1a\xe8\x3d\xba\x8b\x80\x1c\x2d\x19\x7d\xf4\x8e\x3d\xf4\x63\xbf\xb8\xcb\x9f\x47\x81\x2c\x82\x8f\x43\xff\x83\x9f\xfe\xbe\x26\xd2\xbb\x9d\xc4\xcd\x4b\xd2\x5a\x92\xa8\xbd\x9a\xf8\xbc\xa0\x66\xec\x8f\x2d\xe4\xff\x87\x3f\xb6\xcf\x2e\x45\xe5\x57\x41\x64\x8a\x63\x12\x40\x7c\xbe\xd1\x86\x7e\x61\xf5\xdf\x8f\xff\xc4\xe3\x90\xed\x3d\xab\xbf\xe8\x6b\x6d\x68\x88\xc2\x4d\x78\xc0\xa3\x4b\x4e\x9f\xef\xbf\x61\x49\xb9\x7b\x1b\xc8\xf6\x30\xdc\x40\xee\x94\x0f\x71\xb6\x06\x7d\x1c\xbc\xfd\x3a\xe3\xcd\x4d\x1a\xf3\xf0\x80\xc7\x29\x0d\x41\x41\x5e\x37\xb6\x4a\xc7\x23\xd1\xee\xda\xfd\xc9\x66\x23\x8f\x4c\x36\xb8\x86\x0e\xec\xed\x03\x1e\xbf\xce\xc5\x08\x9f\xc8\x6b\x70\x3e\xb0\x06\x47\xdf\x78\xca\x68\xc6\xf3\x89\x5d\x88\x99\x30\x60\x9d\xb3\xee\xdd\xf3\x3d\x91\xb1\x43\xce\x1d\xec\x00\x73\x4a\xba\x97\x87\xcd\x18\x96\x97\x1c\x44\x07\x27\xc8\xa2\xce\xbe\x5e\xc8\x77\x48\xa9\x7f\x1d\xc0\x13\x5b\x48\x83\xe8\x8f\x9b\x0d\x34\x8a\xe3\x56\x28\xe4\xab\x16\xb7\x1f\x1b\xa8\x6e\xd5\x8e\xf9\x0e\x54\x79\xdd\x63\x1e\x4b\xc9\xac\x5d\x43\x12\x60\x87\xb3\xe8\xc2\xb8\x87\xdd\xe7\xe8\x0f\x4e\x6c\xb8\xea\x69\x82\x3f\x4a\x1c\xe6\xf4\xa1\x68\xcf\xfa\xc5\x42\x91\x94\xdb\x76\xd1\x59\xc0\x3e\xdf\x9a\xb8\xc4\xe9\xce\x54\xcd\x9e\x29\xf1\x1f\xfc\x22\xf6\x68\x89\xed\x6b\x7b\x2a\x97\x3a\x69\xa5\x0f\xb0\x89\x25\xe5\xd0\xd1\x5d\xe9\xe0\x23\xaf\xaf\x09\xbc\x9e\x80\xce\xba\x80\x7d\x8f\x60\x50\x32\x12\x8f\xb8\x10\x39\xf2\x18\xbb\xec\xf7\xc4\x04\x07\xc2\x97\x93\x11\x43\x1b\x23\x42\x2e\x09\x3a\x62\xc5\x7b\x79\xfd\xf9\xee\xaf\xef\xce\xdf\x0c\x60\x4e\xdd\x8b\x6c\xbe\x35\x7a\xff\x2f\x7d\x48\x27\x52\xad\xde\x18\xc8\x5a\x88\x67\xb6\x66\xca\x05\x44\x7c\x9a\x3b\xd9\x70\x9e\x63\x3b\x4d\x42\x40\xb5\x67\x24\x48\xa2\x4b\x72\x36\x27\x7d\x4d\x46\xa8\xdd\x28\x35\xf6\x2b\xbb\x63\x3b\x5f\xf1\xea\x43\xce\xc5\x76\x9b\x92\xcd\x20\xd9\x0b\xd5\x10\xda\x64\x32\xc3\x39\x75\x9c\xf1\x37\x78\x3b\x65\x6a\x84\x86\xf3\xe0\x7b\x89\xc1\x12\x15\x9d\xf9\x8a\x30\xe9\x96\x27\x54\x29\xb8\xfb\x2e\x14\x17\x25\x23\x6d\x92\x36\xec\xc6\x79\x95\xe0\x1c\xd5\x14\xc1\x33\xa0\xcb\xce\xa7\x0d\x8f\x74\xfc\x01\xdb\x3d\xe0\x13\x86\x97\x4b\x93\xa2\x80\xad\x64\xb6\x82\x60\x2a\x14\xbe\x76\x98\xf4\xf2\x21\x88\xdf\xca\xea\x5f\x7c\x1a\xec\xf3\xf7\x1f\x78\x9f\x1f\xb2\x50\xec\x75\xad\x50\xe7\xe4\xac\x16\x57\x68\x6b\xad\xec\x2c\x02\x7a\x80\xbe\x0f\x83\x0d\x9c\x8f\x53\x8a\x4f\x6f\xa1\x63\x1a\x2f\x3e\x16\x95\xa1\xc9\xeb\x5b\x2b\x2e\x4a\x02\x66\x41\xd0\x4b\x0b\x0a\x91\xc7\x4a\x3e\x94\xf5\x42\xed\x3a\x1d\x83\x6e\x6c\x80\x2d\x6f\x3f\x4f\x82\xaf\x0d\xcd\xa0\x6b\xa5\x22\x98\x8e\xe9\x70\xba\x87\x3a\xca\xd0\x53\x0e\xf3\x9d\x3f\x40\x77\x3e\xc8\xb5\xa3\xab\x49\x09\x10\xf4\x9c\x9c\xfb\xc8\x64\x06\x95\xa0\xe9\x3c\xbf\x96\x1e\xdd\x6d\x67\xa9\xcf\x26\x9d\x82\xaf\xb0\xf1\x2a\x2e\xbe\x2b\xd1\xc5\x06\x38\xf6\x1d\xe9\xc0\xc8\xa8\x46\x9e\xaf\x3f\x6c\xda\x38\xc2\x2d\x76\xab\x23\x0f\x68\xab\x42\xd7\x02\x2f\xb6\xb9\x17\xf3\xe6\xd2\xde\xf6\x53\x73\xc1\xdd\xfa\xfa\x0f\x17\xf3\xce\x30\x78\xd9\xeb\xa1\x54\x1e\x4e\x4e\x2e\x51\xed\xa8\x3a\xd1\x08\xc4\x5b\x02\xd7\xc8\xa5\xbd\xa2\x69\x69\x76\x5d\x85\xe8\x3a\xf2\x1c\x2e\x0c\xf9\xf2\x8b\x49\x8b\x63\x1f\xae\x98\xe2\xd2\xf5\x43\x06\x19\x3f\x02\x3e\x09\x4b\xae\x14\x0f\x4b\x9b\x32\xec\x4d\x5c\x12\xee\x5d\xd3\x3b\xce\x1e\x71\xa2\x5f\xcf\x12\xbf\xbb\x48\x6d\xe4\x6c\x24\xef\x68\x9b\x07\xdb\x30\x63\x52\x41\xcc\x1d\xaf\x28\xa2\x6e\x4b\x42\x4a\xa8\x0d\x5a\x54\x94\x41\x59\x61\xf9\xe0\x14\xc5\x26\x65\x36\xb1\xb3\xe1\x1b\x21\xf8\x71\x33\x5e\x84\x4f\x72\x16\x29\xb4\x49\x0b\x86\x47\xc6\x5d\x37\x14\xe2\x81\xef\x86\xfc\x35\x46\x30\x6c\x17\x27\x06\xc3\xd1\xad\x27\x6e\xd5\xfe\x4e\xc3\x69\x79\xf4\x2f\xcb\x93\xdb\x3d\x27\x33\xaa\xe2\x26\xe0\x2b\xa2\xda\xae\x8b\x62\x27\xa8\x6a\xee\xf3\x52\xef\x0b\x3a\xdc\xdb\xe2\x5e\x6b\xb2\x64\x58\x5d\x08\x6b\x1b\xb4\xc5\x9b\x77\x6f\xff\xf2\x6e\x51\x8b\x45\x72\xd5\x8c\x6e\x28\x5d\x2c\x64\x96\x57\xee\xaf\x2b\x4e\x2d\xfc\x39\x83\x78\xf3\x34\x1b\xf9\xbe\x84\xd8\x6d\x8b\xb0\xb0\xd3\x0a\xb3\xb6\xed\x03\x41\x33\xe1\x61\x47\x98\x4e\xfd\x72\x01\xc3\x98\xd9\xd3\xe8\xfa\xbb\x09\x57\xf5\xb4\x69\xa4\xcd\x0e\x07\x7c\x69\x10\xb8\x56\x08\x07\x41\xd5\x14\x18\x47\x89\x2e\xb7\xfc\xee\x69\x99\x66\xe4\xe8\x7b\x2e\x82\x4d\xce\xb0\x3b\x85\x6d\xf3\xbe\xd8\x1f\xcd\x63\x26\x8f\x41\x73\xba\x9f\x51\x4d\xe8\x92\xc2\x86\x76\x57\x11\xcb\x81\xbc\x28\x80\xd5\x35\x2a\x3e\x40\x06\x42\x41\x59\x35\x6a\x70\xe3\xe2\xce\x64\xab\x3c\x44\x43\xf8\x09\xce\xa7\xe6\x7d\x18\x7a\xef\xd5\xa5\x2f\x3a\x79\x5b\x4b\x51\x62\x7a\xee\x9d\x67\x95\x7f\xd3\x42\xa5\xc9\xbf\x55\xb2\x9a\xd6\x7e\xcb\x1b\xf8\x3c\xa2\x91\xc9\x03\x3b\x5a\x30\xb8\x35\x68\xab\x59\x9d\xdd\x89\xce\x0b\xfa\x74\x21\x33\x7d\x3f\xb3\x27\x4e\xc7\x68\x97\x1d\x49\x7e\x0d\xd3\xc9\xc3\x6b\xe6\xfc\x0a\x5d\x97\x32\x59\x7a\x6c\xdf\xb9\x61\xb3\x1a\xdc\x69\x0d\x37\xd2\xae\x19\xfa\x5c\x7b\x9c\x89\x2f\xf0\x92\x95\xef\x8f\x56\x4b\xc7\xda\xdf\x4a\xe7\xff\x70\x62\x53\x8d\xcf\x53\x6e\xdb\xfa\x29\xf6\x48\x83\xfb\x49\x1f\x07\xd7\xa3\xca\xad\xef\xd6\xae\x07\x97\x08\xeb\xd1\x95\x42\x2f\xf3\x11\xe9\x53\xd7\xf5\xae\x07\x1d\x70\x67\xf8\xd9\xfb\xe6\x7f\x03\x00\x00\xff\xff\x15\x37\x20\xfa\xdf\x17\x00\x00") func staticAlertsJsBytes() ([]byte, error) { return bindataRead( @@ -376,7 +376,7 @@ func staticColorsJs() (*asset, error) { return a, nil } -var _staticConfigJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x5f\x6f\xdb\x36\x10\x7f\xf7\xa7\x60\xb5\x60\x90\x5b\x45\xca\x5a\xac\xc3\x14\x18\x43\x11\x20\x41\x86\x21\xcd\x92\x75\x7b\x28\xf2\x40\x4b\x67\x8b\xa9\x4c\x2a\x24\x65\xa7\x58\xfd\xdd\x07\xfe\x91\x44\x89\xb2\x9d\x74\x88\x5e\x62\x89\x3f\xde\x3f\xde\xfd\x78\x97\x24\x41\xf7\xa2\x20\x54\x22\x10\x6b\xe0\x82\x30\x9a\xa2\xf7\x93\x49\xf2\x1a\x2d\x4b\x36\xc7\xa5\x40\x67\x25\xa9\xe6\x0c\xf3\x1c\xbd\x4e\x90\x7a\x92\x04\x65\xcd\xb7\xf8\x5e\xf4\xb0\x8c\x7d\x21\x20\x1a\xa4\xc6\xde\x8b\x38\xd3\x9f\x15\xd6\x05\x9f\x93\x52\x02\x17\x11\xfa\x44\x05\x40\x84\xfe\xac\x81\x7f\xbd\x95\x9c\xd0\x25\x7a\x9d\x68\x28\x3c\x56\x8c\x4b\xc8\xd1\x19\xa3\x0b\xb2\xfc\x58\x49\xc2\xa8\x5a\x5c\x63\xde\xff\x36\x43\xe1\xa2\xa6\x99\xfa\x1d\x4e\xd1\xbf\x93\x89\xd2\x9e\x95\x58\x08\xc4\x34\xe2\x4c\xff\xb6\x0b\x7a\x91\x51\x21\x79\x9d\x49\xc6\xc3\x0a\x73\xbc\x12\x6a\x1f\x72\x1e\x59\x10\x11\x1b\x97\xd0\x0c\x19\x8c\x7d\x3f\xf5\x81\xda\xfc\x6b\x05\xea\xc0\xdd\xb7\x91\x0d\xb7\x50\x82\xd2\xde\xc1\x9b\x2f\x23\xe0\x0b\x90\x1d\xee\x02\xa4\x04\x8e\xbe\x7d\x43\x3d\x9f\xd1\xe0\xe1\x20\x6b\x4e\xd1\x51\xd8\x53\x37\x8d\x89\x08\x83\x34\x2b\x20\xfb\x02\x79\x30\xed\x2b\xdb\x8e\x1a\x2a\x5d\x1b\x3d\xdd\x6b\x5c\x8e\xa9\xf7\xf4\xce\x19\x93\x42\x72\x5c\xdd\x6e\x88\xcc\x8a\x30\x10\x12\x4b\x08\x22\x74\x14\x57\x98\x0b\xf8\xfd\xf6\xe3\x95\x16\x16\x21\xc9\x6b\x78\x82\x65\x1f\x32\x7b\xf8\xd6\x38\xfb\x3e\x08\xcc\xd8\xce\x4b\x4a\x1c\xa7\xf4\xdb\xa1\x70\xaa\x9c\x83\x12\xd4\xf1\x2a\x11\xa7\x87\x1d\x66\x34\x0c\x84\xf6\xf5\xac\xc0\x74\x09\xc3\x08\x04\x51\xa7\x11\xd6\x40\x65\x84\x76\xc4\x52\x3d\x4a\x77\x7c\x8b\xd7\xa0\x63\xe4\xab\x6f\x31\x1f\xba\x63\xf1\x51\xdb\xdd\x61\xdd\x76\xc5\xf1\x07\xc3\xb9\x17\x04\x15\x80\xac\xe6\x1c\xa8\xfc\x1b\x97\x36\x0c\x2a\x19\xc3\xe9\xe9\xc4\x43\xae\x35\xc4\x32\x42\xbc\x04\x19\x3a\xf5\x34\x30\x82\x2c\x90\x32\x17\xbd\x9a\xcd\x50\x4d\x73\x58\x10\x0a\xf9\x58\x1c\x9a\x7c\x1c\x71\x6e\xeb\x9b\xf0\x80\x66\x2e\xab\xc4\xd7\x2a\xcb\xc2\x11\xdd\x0f\x9f\x07\x25\x7c\xf7\x0c\x53\xfc\xcd\xfb\x2d\x53\x0a\x9d\x30\xbe\x9a\xed\x3a\x74\x27\xc5\x47\xfd\x1d\x91\xdf\xa6\xc7\x40\x5c\x73\x0c\xa2\x7f\x0c\x3a\xdf\xa2\x11\xd5\xf0\x58\x11\x0e\x22\x45\xef\xde\xff\x1c\x79\xab\x15\x96\x45\x8a\x82\xa0\x6f\xcf\xd4\xcb\x24\xfb\xc7\xf2\x50\xa7\xe5\x0a\x36\xa9\x4b\xcb\x06\x7c\x3a\x99\x6c\xc3\xa9\x4a\x25\x9f\xf9\xfb\x9c\x3f\xce\xf6\x6a\xdd\x08\x15\x68\xa6\xab\xbe\xfd\x5c\x32\x9c\x9f\x73\xb6\x6a\xee\xa7\xd9\x78\xa5\x1f\xc5\x80\xb3\x22\xb4\x42\x9c\xe2\xa4\x78\x05\x91\x15\x3e\x56\x15\x6b\x5c\xd6\xea\x8e\x30\x88\xd8\x54\xcf\x68\x8a\xd7\x70\x38\xb3\xac\x14\x9b\xe6\x3e\x11\x4e\x86\x21\x77\x5d\xe5\x20\x34\x5d\x8f\x3a\x98\x24\x3a\xa9\x10\x11\x88\x32\xa9\xd8\x4f\x22\xb6\x68\xa3\xb6\xc2\xd5\x64\x98\x31\x1c\x56\x6c\x0d\x61\x90\xc3\x02\xd7\xa5\x34\x97\x76\xbc\x7e\xeb\x5e\x1c\xdf\x15\xb7\x81\x02\xeb\xb4\x47\x0f\x63\x3e\x12\x43\xde\xad\x9a\xee\xfa\x76\x3d\xcd\x58\xf5\xb5\xe1\x2b\xb4\xd0\x76\xa3\x79\x2d\x25\xa3\x08\xeb\x7d\x2d\x98\xc2\xa6\x6b\x73\xc2\xf6\xa2\xaf\xbe\x36\x54\x3e\x2c\x11\x09\x8f\x32\x75\xb8\xbb\x84\xd5\xae\x1b\x63\x8e\x05\x7c\xe2\x8a\x0a\x3f\x97\x2c\xc3\xda\xc9\x8a\x33\xc9\x32\x56\x46\x28\x48\x92\x20\x42\xed\x42\xc1\x84\x74\x5e\x55\x9d\xa9\x10\xde\xc5\xf7\x8c\xd0\x30\x18\x5e\xd6\x8d\x8e\x07\x45\x3d\x4a\x43\xf0\x30\x0b\xd0\x9b\xa6\xb3\x52\xd4\x6c\x7f\x86\x53\x2b\x22\x0a\xa6\x77\x23\x37\xd7\xf7\x1c\x60\xf3\x68\xed\x71\x55\x8b\x46\x80\xdb\x0a\xbd\x41\x81\x36\xc9\xae\xe8\xcb\x22\x96\xcc\x10\xb2\xae\xf6\xa1\xb8\xe1\x05\xa5\xed\x33\x21\x8e\x17\x84\x12\x51\x84\xd3\x78\x81\x73\xf8\x58\xcb\xf0\xa7\x93\x13\xf3\x72\x49\xc3\x77\x27\x27\x23\x5b\x2d\xf9\x34\xc7\xf0\x06\x05\xbf\x29\x7b\x8c\xd1\x26\x26\x3f\x7a\x4d\x50\x2f\xfb\xdc\x9c\x12\x78\x0d\x48\x80\x94\x84\x2e\xc5\x8e\x6c\x3a\x6a\x32\x48\x91\x71\xbf\x19\xc8\x4a\x92\x7d\x71\x6f\xfd\x31\x32\xb1\xa9\x3a\x3b\x70\x8c\xa7\x3b\x09\xde\xaf\xd5\xc8\x0a\x7d\x01\xaa\xdf\xe3\xf1\x33\x4e\x6b\x18\x67\xc3\x62\x4f\x0d\xf4\x8d\x42\x3f\x33\xd2\xe6\x26\x31\x5b\x87\x5c\xed\xf6\x0c\x37\x96\xff\x1e\x86\x11\x6f\xab\x94\x43\x39\xe0\xfb\xa1\x37\x85\x94\x95\x48\x93\x64\x49\x64\x51\xcf\xe3\x8c\xad\x12\xb9\x99\x8b\xa4\x6d\x07\x13\x22\x44\x0d\x22\x79\x7b\xf2\xeb\x2f\x8e\x7b\x39\xcb\xea\x15\x50\xd9\x77\x29\x88\x73\xce\xaa\x9c\x6d\xe8\xf1\x0a\x68\xdd\x7f\x3b\x5e\x30\xbe\xea\xf5\x95\x43\xc7\x21\x16\x92\x55\xd7\x9c\x55\x78\x89\x4d\x68\x76\x58\x6e\x43\x74\x05\x1b\x33\x64\x85\x63\x04\x9e\xa2\x00\xd7\x92\xdd\xc0\x82\x83\x28\x82\xc8\x0f\xa4\x26\x02\x0b\xe3\xa3\xb0\xe6\xe8\x52\x14\xfc\xb0\x1b\x65\x3a\xa1\xf4\xe0\xdc\x61\x6f\xda\x5d\x74\xa5\xa7\xcd\xf8\x1f\x4c\xe4\x39\xe3\x57\xf0\x28\x6f\xbc\xf3\x6b\xa3\x81\xa0\x14\xb0\x57\xce\x35\xae\xfd\x96\x12\xf5\x38\x04\xed\x66\x94\xa7\x46\xd8\x06\xe4\x92\x4a\xe0\x6b\x5c\xee\x8b\xf2\xe1\x08\x5b\xc4\x31\x19\x97\xa6\x66\xa1\xf4\x25\x26\xa1\x4c\xcf\x40\xfb\x6a\xd2\x95\x6f\xc6\x07\x3d\xcf\x5c\xf8\x15\xda\x3c\x2f\x34\x13\xf5\x23\x62\xc6\xed\x03\x31\xd9\x35\x6c\xaf\x71\x39\x34\x7e\x3b\x3c\x9b\x81\xf8\xa7\xce\xd3\x4a\xb4\x1e\x9c\x2f\xa9\x19\x88\xf6\xeb\x79\x6a\xfd\x98\xc4\xbe\x05\x69\x6b\xfa\x06\x4b\xd8\xaf\xa7\x9f\xdc\xcf\xce\x6e\x51\xb0\xcd\x79\x89\xf7\xb3\xc7\x62\x04\xe0\x66\xb5\x12\x72\x6c\x40\xff\x93\xcd\xaa\x0a\x68\xfe\x17\xab\xf6\x72\x99\x06\x49\x0f\xd4\x63\x32\x8d\x39\x56\x20\xdf\x22\xb7\x9d\xa5\x8d\x49\xe3\x3d\x6d\xb3\xb7\x9b\x6f\xd0\xcc\xb4\xac\xce\x3f\xc0\x94\x5f\xcd\x9e\xee\x74\x6c\xd7\xa5\x4a\x3a\xf4\x3e\x8b\xcf\x5e\xbb\x76\xd7\xce\x30\x7e\xd3\xbd\x04\xe9\x5b\xf9\xd0\x6e\x75\x2d\xb5\xb5\xd0\xa8\xe9\x40\x77\x7d\xb1\xde\x60\x68\xb8\x47\xb5\xf7\x51\xef\x5f\x11\xe9\x70\x82\xeb\x96\xf5\x05\x9e\x9a\x86\x21\x72\x27\x4c\x63\x6c\xda\x45\xb7\x5b\xbd\x68\x5c\x49\x3b\xaf\x06\x33\xe8\x7f\x01\x00\x00\xff\xff\x98\xc6\x45\x17\x19\x15\x00\x00") +var _staticConfigJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xdf\x6f\xdb\xb6\x13\x7f\xcf\x5f\x71\xd5\x37\xf8\x42\x6e\x15\x29\x6b\xb1\x0d\x53\x60\x0c\x45\x80\x04\x19\x86\x34\x4b\xd6\xed\xa1\xc8\x03\x23\x9d\x6d\xb5\x32\xa9\x90\x94\x9d\x60\xf5\xff\x3e\xf0\x87\x24\x8a\x92\xe5\xb4\xf3\x53\x44\x1e\x79\x77\x9f\xbb\xfb\xf0\x2e\xc9\x6b\x58\x96\xec\x81\x94\x02\xce\xcb\xa2\x7a\x60\x84\xe7\xf0\x3a\x01\xf5\x4b\x12\xc8\x9a\xb5\xf8\xb3\x38\x72\x65\x19\xfb\x52\xa0\x68\x24\xb5\xec\x67\x11\x67\x7a\x59\xc9\xba\xc2\x17\x45\x29\x91\x8b\x08\x3e\x52\x81\x18\xc1\x1f\x35\xf2\xe7\x3b\xc9\x0b\xba\x84\xd7\x89\x16\xc5\xa7\x8a\x71\x89\x39\x9c\x33\xba\x28\x96\x1f\x2a\x59\x30\xaa\x36\x37\x84\xf7\xd7\xe6\x10\x2e\x6a\x9a\xa9\xbf\xc3\x19\xfc\x73\x74\xa4\xb4\x37\x2b\xc0\xb4\xd0\x79\x49\x84\x08\x2b\xc2\xc9\x5a\x28\x19\x6b\x23\xc8\x55\x21\x62\x63\x3a\xcc\xc1\xec\xdb\xef\xb3\xbe\x90\x36\xf1\x46\x09\x74\x82\xdd\x9a\x27\x7c\x87\x25\x66\x92\xf1\x4e\xb4\x59\xf1\x04\x2f\x51\x76\x32\x97\x28\x25\x72\xf8\xfa\x15\x7a\xfe\x80\xf3\xe3\x28\x6b\x4e\xe1\x38\xec\xa9\x99\xc5\x85\x08\x83\x34\x5b\x61\xf6\x05\xf3\x60\xd6\x29\xd9\x0d\x0c\x93\xae\x4d\x03\x7d\x1b\x52\xfa\x2a\x07\xba\x1e\x18\x93\x42\x72\x52\xdd\x6d\x0b\x99\xad\xc2\x40\x48\x22\x31\x88\xe0\x38\xae\x08\x17\xf8\xdb\xdd\x87\x6b\x7d\x51\x04\x92\xd7\x38\x61\xcd\xfb\xcc\x06\xd0\x1a\x64\xbf\x3d\x00\xfc\x53\x57\xb4\x70\x9c\xd0\x5f\x53\x90\xa9\x7c\xc1\x12\x55\xd8\xd4\xf1\xb3\x69\xe7\x18\x0d\x03\xa1\xfd\x3a\x5f\x11\xba\x44\xdf\xdb\x20\xea\x34\xe1\x06\xa9\x8c\x60\x04\x33\xf5\x53\x3a\xe3\x3b\xb2\x41\x8d\xc5\xd9\xf8\xfe\xfb\x0e\xf6\xbe\xc4\x6e\x08\xdb\xce\x64\xb6\x93\xd0\x71\xc5\x99\x64\xf2\xb9\xc2\xf8\x77\x46\x72\x98\x8f\xa3\xa0\x10\xc8\x6a\xce\x91\xca\xbf\x48\x69\x71\x50\xd9\x16\xce\xce\x8e\x7a\x52\x1b\xbd\x6d\x4b\x39\x5e\xa2\x0c\x9d\x02\x71\x2c\x2a\x16\xa0\x6c\x86\x57\xf3\x39\xd4\x34\xc7\x45\x41\x31\xf7\x41\x68\x12\xce\xf3\x6e\xd7\x57\xf9\x08\x73\xb7\xfc\xe3\x1b\x95\x42\xa1\xa7\xeb\xf1\x93\x57\x83\xf7\x2f\x54\x3d\x3c\x38\x6e\x89\x52\xe2\x40\xf4\x6a\x3e\x16\x55\x27\x67\x07\x3e\xd9\x38\x4d\x44\x48\xa5\x82\x1b\x21\x4f\x41\x03\xba\xe8\x83\xae\xd3\x2b\xf2\x0c\xc1\xa7\xaa\xe0\x28\x52\x78\xf7\xd3\x8f\x51\x6f\xa7\x22\x72\x95\x42\x10\x1c\xf9\x79\xd4\xd8\x66\x09\xa4\xbb\xef\x1a\xb7\xa9\x6b\x71\x2b\xbd\x0b\x67\x2a\x3d\x86\x54\xdc\x27\xe1\x71\xfa\x55\xfb\xe6\x52\x01\x73\x5d\xc2\xed\x72\xc9\x48\x7e\xc1\xd9\xba\x79\x30\xf6\x24\xed\x71\x8c\x24\x5b\x85\xf6\x12\xa7\xea\x28\x59\x63\x64\x2f\x1f\xab\xf5\x0d\x29\x6b\x05\xb4\x91\xd0\x85\x11\x7a\xc5\x65\xd3\xb7\xc6\xe9\x2c\xea\x62\xd9\xa4\x71\x8f\xcd\xba\xc0\x8f\x01\xad\x4c\xe1\x28\x34\xdf\x8e\x3a\x98\x24\x3a\xa1\xa0\x10\x40\x99\x54\x74\x26\x81\x2d\x5a\xd4\xd6\xa4\x1a\xe4\x06\xc7\x35\xdb\x60\x18\xe4\xb8\x20\x75\x29\xcd\x2b\x1a\x6f\xde\xba\x8c\xff\x5d\xb8\x79\x0a\xac\xd3\x83\xb2\x1f\xf3\xb1\x30\x6c\xdc\xaa\xe9\xde\x58\xd7\xd3\x8c\x55\xcf\x0d\x07\xc1\x42\xdb\x0d\x0f\xb5\x94\x8c\x02\xd1\xe7\x5a\x61\x8a\xdb\xae\xef\x08\xdb\x17\xb9\x7a\x6e\x38\xda\x2f\x06\x89\x4f\x32\x75\x48\xb9\xc4\xf5\x58\x20\x95\xad\x0f\x44\xe0\x47\xae\x28\xee\x53\xc9\x32\xa2\x9d\xd4\x05\x9a\xb1\x32\x82\x20\x49\x82\x08\xda\x8d\x15\x13\xd2\xf9\x54\x95\xa5\x20\xbc\x8f\x3f\xb3\x82\x86\x41\x30\x42\xe9\x9a\xcf\x14\xd5\x28\x0d\xc1\xe3\x3c\x80\x37\x4d\xab\xa3\xe8\xd6\xfe\x19\xce\xec\x15\x51\x30\xbb\x1f\x5e\xf2\x5d\x01\x6c\x7e\x5a\x7b\x5c\xd5\xa2\xb9\xc0\xed\x5b\xde\x40\xa0\x4d\xb2\x3b\xfa\x01\x88\x25\x33\xc4\xab\xab\xdd\xbf\x6e\x37\xb2\x76\x6c\x20\x8e\x17\x05\x2d\xc4\x2a\x9c\xc5\x0b\x92\xe3\x87\x5a\x86\x3f\x9c\x9e\x9a\x8f\x2b\x1a\xbe\x3b\x3d\x1d\x39\x6a\xc9\xa7\x09\xc3\x1b\x08\x7e\x55\xf6\x18\xa3\x0d\x26\xff\xf7\x71\xed\x57\x98\x9b\x53\x42\x11\xaa\x40\x29\x0b\xba\x14\x7b\xb2\xe9\xb8\xc9\x20\xc5\xbe\xfd\x57\x3e\x2b\x8b\xec\x8b\xfb\x9c\x8f\x91\x89\x4d\xd5\xf9\x81\x30\x9e\x8d\x56\x93\xa2\xf2\x61\xad\x46\xf6\x52\x3f\x8f\x61\x92\xd8\x61\x8c\xdc\xc7\x42\xb4\xc7\xe3\x6f\x88\x96\x8f\xb3\x61\xb1\x97\x02\x7d\xab\xa4\xbf\x11\x69\xf3\x92\x98\xa3\x3e\x57\xbb\xbd\xc1\xad\xe5\xbf\x47\x1f\xf1\xb6\x4a\x39\x96\x1e\xdf\xfb\xde\xac\xa4\xac\x44\x9a\x24\xcb\x42\xae\xea\x87\x38\x63\xeb\x44\x6e\x1f\x44\xd2\xf6\x79\x49\x21\x44\x8d\x22\x79\x7b\xfa\xcb\xcf\x8e\x7b\x39\xcb\xea\x35\x52\xd9\x77\x29\x88\x73\xce\xaa\x9c\x6d\xe9\xc9\x1a\x69\xdd\xff\x3a\x59\x30\xbe\xee\x35\x8c\xbe\xe3\x18\x0b\xc9\xaa\x1b\xce\x2a\xb2\x24\x06\x9a\x3d\x96\x5b\x88\xae\x71\x6b\xa6\x9e\x70\x8c\xc0\x53\x08\x48\x2d\xd9\x2d\x2e\x38\x8a\x55\x10\x0d\x81\xd4\x44\x60\xc5\xf8\xa8\x58\x13\xba\x14\x82\xff\xed\x97\x32\x5d\x50\x3a\x39\x38\x40\xf7\xd2\xee\xa3\x2b\x3d\xfe\xc5\x7f\x93\x42\x5e\x30\x7e\x8d\x4f\xf2\x76\x10\xbf\x16\x0d\xc0\x52\xe0\xe4\x3d\x37\xa4\xee\xb7\x8e\xed\xd9\x97\x30\xca\x4b\x11\xb6\x80\x5c\x51\x89\x7c\x43\xca\x29\x94\x0f\x23\x6c\x25\x4e\x8a\xf1\xdb\xd4\x70\x93\xee\xaf\x1b\x38\x34\xde\xc0\xbe\x11\x27\xd3\xc3\xcd\x54\x4d\xba\xf7\x9b\xb1\x40\x0f\x2c\x97\xc3\x0a\x6d\x7e\x87\x06\x1e\x38\x38\xf4\xc0\x08\x9f\xed\xfa\x88\x98\x19\xf9\x00\x26\xfb\xa6\xe4\x0d\x29\x7d\xe3\x77\x7e\x6c\xbc\xeb\xf7\x24\xef\xe8\xd5\x7a\xfa\xbd\xa2\x66\xe0\x99\xd6\xf3\xd2\xfa\x31\x89\x7d\x87\xd2\xd6\xf4\x2d\x91\x38\xad\xa7\x9f\xdc\xdf\x9c\xdd\x62\xc5\xb6\x17\x25\x99\x66\x8f\xc5\x88\x80\x9b\xd5\xea\x92\x13\x23\xf4\x1f\xd9\xac\xaa\x90\xe6\x7f\xb2\x6a\x92\xcb\xb4\x90\x1c\x08\xf5\x98\x4c\xcb\x9c\x28\xa1\xa1\x45\x6e\x3b\x4b\x1b\x93\xc6\x7b\xda\xe6\x6c\x37\xdf\xc0\xdc\xb4\xac\xce\x7f\xa4\x94\x5f\xcd\x99\x2e\x3a\xb6\xeb\x52\x25\x1d\x0e\x96\xc5\xa7\x41\xbb\x76\xdf\xce\x30\xc3\xa6\x7b\x89\x72\x68\xe5\x63\x7b\xd4\xb5\xd4\xd6\x42\xa3\xa6\x13\xba\x3f\x30\x18\x1a\xee\x51\xed\x7d\x07\xab\x1a\xa6\x52\x7f\x82\xeb\xb6\xf5\x03\x9e\x9a\x86\x21\x72\x27\x4c\x63\x6c\xda\xa1\xdb\xed\x5e\x36\xae\xa4\x9d\x57\xde\x0c\xfa\x6f\x00\x00\x00\xff\xff\xae\xd4\x26\xa8\x92\x14\x00\x00") func staticConfigJsBytes() ([]byte, error) { return bindataRead(