From 50fd2238d0b3ed3ff238adab0ab8052f3fefa049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Thu, 1 Jun 2017 19:36:30 -0700 Subject: [PATCH 1/2] Add eslint config and run eslint if installed --- .eslintignore | 1 + .eslintrc.yaml | 27 +++++++++++++++++++++++++++ .travis.yml | 10 +++------- Makefile | 6 +++++- 4 files changed, 36 insertions(+), 8 deletions(-) create mode 100644 .eslintignore create mode 100644 .eslintrc.yaml diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 000000000..9a4c14fee --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +assets/static/lru.js diff --git a/.eslintrc.yaml b/.eslintrc.yaml new file mode 100644 index 000000000..753a3db0c --- /dev/null +++ b/.eslintrc.yaml @@ -0,0 +1,27 @@ +env: + browser: true + jquery: true +extends: + - eslint:recommended +rules: + indent: + - error + - 4 + linebreak-style: + - error + - unix + quotes: + - error + - double + array-bracket-spacing: + - warn + - always + block-spacing: + - warn + - always + brace-style: + - warn + - 1tbs + camelcase: warn + no-console: off + no-use-before-define: error diff --git a/.travis.yml b/.travis.yml index 043745934..a67f86434 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,15 +6,11 @@ go: go_import_path: github.com/cloudflare/unsee -# nodejs is needed so that we can install jshint -addons: - apt: - packages: - - nodejs - -# install jshint, it's used for linting js files (needs nodejs) +# install jshint & eslint, it's used for linting js files (needs nodejs) before_script: + - nvm install 6 - npm install jshint + - npm install eslint script: - make test diff --git a/Makefile b/Makefile index 3699b3f62..95aebe3d5 100644 --- a/Makefile +++ b/Makefile @@ -19,8 +19,9 @@ ifdef DEBUG DOCKER_ARGS = -v $(CURDIR)/assets:$(CURDIR)/assets:ro endif -# detect if jshint is installed +# detect if jshint and/or eslint is installed JSHINT := $(shell which jshint) +ESLINT := $(shell which eslint) .DEFAULT_GOAL := $(NAME) @@ -81,6 +82,9 @@ lint: .build/deps.ok ifneq ($(JSHINT),) @$(JSHINT) assets/static/*.js endif +ifneq ($(ESLINT),) + @$(ESLINT) assets/static/*.js +endif .PHONY: test test: lint bindata_assetfs.go From aadcaeb9b581d97ce232a20e7abd33558fdbb21a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Thu, 1 Jun 2017 20:24:47 -0700 Subject: [PATCH 2/2] Fix issues reported by eslint --- .eslintignore | 1 + Makefile | 2 +- assets/static/alerts.js | 13 +- assets/static/autocomplete.js | 60 ++-- assets/static/colors.js | 12 +- assets/static/config.js | 4 +- assets/static/filters.js | 24 +- assets/static/progress.js | 6 +- assets/static/querystring.js | 4 +- assets/static/sentry.js | 26 +- assets/static/silence.js | 454 +++++++++++++++---------------- assets/static/summary.js | 20 +- assets/static/templates.js | 60 ++-- assets/static/ui.js | 14 +- assets/static/unsee.js | 100 +++---- assets/static/watchdog.js | 4 +- assets/templates/alertgroup.html | 2 +- assets/templates/errors.html | 8 +- bindata_assetfs.go | 32 +-- 19 files changed, 420 insertions(+), 426 deletions(-) diff --git a/.eslintignore b/.eslintignore index 9a4c14fee..d25e0cbcc 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1 +1,2 @@ assets/static/lru.js +assets/static/jquery.typing-0.2.0.js diff --git a/Makefile b/Makefile index 95aebe3d5..94f9fef3b 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ ifneq ($(JSHINT),) @$(JSHINT) assets/static/*.js endif ifneq ($(ESLINT),) - @$(ESLINT) assets/static/*.js + @$(ESLINT) --quiet assets/static/*.js endif .PHONY: test diff --git a/assets/static/alerts.js b/assets/static/alerts.js index 2d532eb69..38da933ee 100644 --- a/assets/static/alerts.js +++ b/assets/static/alerts.js @@ -17,8 +17,7 @@ var Alerts = (function() { return Templates.Render("alertGroup", { group: this, silences: silences, - static_color_label: Colors.GetStaticLabels(), - alert_limit: 5 + alertLimit: 5 }); }; @@ -90,8 +89,8 @@ var Alerts = (function() { var label = ts.fromNow(); $(elem).find(".label-ts-span").text(label); $(elem).attr("data-ts-title", ts.toString()); - var ts_age = now.diff(ts, "minutes"); - if (ts_age < 3) { + var tsAge = now.diff(ts, "minutes"); + if (tsAge < 3) { $(elem).addClass("recent-alert").find(".incident-indicator").removeClass("hidden"); } else { $(elem).removeClass("recent-alert").find(".incident-indicator").addClass("hidden"); @@ -110,9 +109,9 @@ var Alerts = (function() { silences = apiResponse.silences; var summaryData = {}; - $.each(apiResponse.counters, function(label_key, counters){ - $.each(counters, function(label_val, hits){ - summaryData[label_key + ": " + label_val] = hits; + $.each(apiResponse.counters, function(labelKey, counters){ + $.each(counters, function(labelVal, hits){ + summaryData[labelKey + ": " + labelVal] = hits; }); }); Summary.Update(summaryData); diff --git a/assets/static/autocomplete.js b/assets/static/autocomplete.js index 1984a6495..0363c6e54 100644 --- a/assets/static/autocomplete.js +++ b/assets/static/autocomplete.js @@ -28,39 +28,39 @@ var Autocomplete = (function() { }; // this is used to generate quick filters for label modal - var generateHints = function(label_key, label_val) { - var hints = []; - if (label_key == "@state") { - // static list of hints for @silenced label - hints.push("@state=active"); - hints.push("@state=suppressed"); - hints.push("@state=unprocessed"); - hints.push("@state!=active"); - hints.push("@state!=suppressed"); - hints.push("@state!=unprocessed"); - } else { - // equal and non-equal hints for everything else - hints.push(label_key + "=" + label_val); - hints.push(label_key + "!=" + label_val); + var generateHints = function(labelKey, labelVal) { + var hints = []; + if (labelKey == "@state") { + // static list of hints for @silenced label + hints.push("@state=active"); + hints.push("@state=suppressed"); + hints.push("@state=unprocessed"); + hints.push("@state!=active"); + hints.push("@state!=suppressed"); + hints.push("@state!=unprocessed"); + } else { + // equal and non-equal hints for everything else + hints.push(labelKey + "=" + labelVal); + hints.push(labelKey + "!=" + labelVal); - // if there's space in the label generate regexp hints for partials - if (label_val.toString().indexOf(" ") >= 0) { - $.each(label_val.toString().split(" "), function(l, label_part){ - hints.push(label_key + "=~" + label_part); - hints.push(label_key + "!~" + label_part); - }); - } + // if there's space in the label generate regexp hints for partials + if (labelVal.toString().indexOf(" ") >= 0) { + $.each(labelVal.toString().split(" "), function(l, labelPart){ + hints.push(labelKey + "=~" + labelPart); + hints.push(labelKey + "!~" + labelPart); + }); + } - // if value is an int generate less / more hints - if ($.isNumeric(label_val)) { - var valAsNumber = parseInt(label_val); - if (!isNaN(valAsNumber)) { - hints.push(label_key + ">" + label_val); - hints.push(label_key + "<" + label_val); - } + // if value is an int generate less / more hints + if ($.isNumeric(labelVal)) { + var valAsNumber = parseInt(labelVal); + if (!isNaN(valAsNumber)) { + hints.push(labelKey + ">" + labelVal); + hints.push(labelKey + "<" + labelVal); + } + } } - } - return hints; + return hints; }; return { diff --git a/assets/static/colors.js b/assets/static/colors.js index 9cfd47b76..1ccfb81cb 100644 --- a/assets/static/colors.js +++ b/assets/static/colors.js @@ -1,8 +1,7 @@ /* exported Colors */ var Colors = (function() { - var colors, - staticColorLabels; + var colors; var specialLabels = { "@state: unprocessed": "label-default", @@ -32,8 +31,8 @@ var Colors = (function() { var style = ""; if (colors[key] !== undefined && colors[key][value] !== undefined) { var c = colors[key][value]; - style = "background-color: rgba(" + [c.background.red, c.background.green, c.background.blue, c.background.alpha].join(", ") + "); "; - style += "color: rgba(" + [c.font.red, c.font.green, c.font.blue, c.font.alpha].join(", ") + "); "; + style = "background-color: rgba(" + [ c.background.red, c.background.green, c.background.blue, c.background.alpha ].join(", ") + "); "; + style += "color: rgba(" + [ c.font.red, c.font.green, c.font.blue, c.font.alpha ].join(", ") + "); "; } return style; }; @@ -46,12 +45,7 @@ var Colors = (function() { return ($.inArray(key, Colors.GetStaticLabels()) >= 0); }; - var init = function(staticColors) { - staticColorLabels = staticColors; - }; - return { - Init: init, Update: update, Get: getStyle, GetClass: getClass, diff --git a/assets/static/config.js b/assets/static/config.js index 188f13d82..31cc6dfa7 100644 --- a/assets/static/config.js +++ b/assets/static/config.js @@ -84,8 +84,8 @@ var Config = (function() { // copy current filter button action new Clipboard(params.CopySelector, { text: function(elem) { - var baseUrl = [location.protocol, "//", location.host, location.pathname].join(""); - var query = ["q=" + Filters.GetFilters().join(",")]; + var baseUrl = [ location.protocol, "//", location.host, location.pathname ].join(""); + var query = [ "q=" + Filters.GetFilters().join(",") ]; $.each(options, function(name, option) { query.push(option.QueryParam + "=" + option.Get().toString()); }); diff --git a/assets/static/filters.js b/assets/static/filters.js index 6c13fe45d..5cd9148c5 100644 --- a/assets/static/filters.js +++ b/assets/static/filters.js @@ -30,21 +30,21 @@ var Filters = (function() { }; var init = function() { - var initial_filter; + var initialFilter; if ($(selectors.filter).data("default-used") == "false" || $(selectors.filter).data("default-used") === false) { // user passed ?q=filter string - initial_filter = $(selectors.filter).val(); + initialFilter = $(selectors.filter).val(); } else { // no ?q=filter string, check if we have default filter cookie - initial_filter = Cookies.get("defaultFilter.v2"); - if (initial_filter === undefined) { + initialFilter = Cookies.get("defaultFilter.v2"); + if (initialFilter === undefined) { // no cookie, use global default - initial_filter = $(selectors.filter).data("default-filter"); + initialFilter = $(selectors.filter).data("default-filter"); } } - var initial_filter_arr = initial_filter.split(","); + var initialFilterArr = initialFilter.split(","); $(selectors.filter).val(""); $(".filterbar :input").tagsinput({ typeaheadjs: { @@ -55,7 +55,7 @@ var Filters = (function() { source: Autocomplete.Autocomplete() } }); - $.each(initial_filter_arr, function(i, filter) { + $.each(initialFilterArr, function(i, filter) { $(selectors.filter).tagsinput("add", filter); addBadge(filter); }); @@ -90,8 +90,8 @@ var Filters = (function() { }); $(".filterbar").on("resize", function(){ - // hack for fixing padding since input can grow and change height - $("body").css("padding-top", $(".navbar").height()); + // hack for fixing padding since input can grow and change height + $("body").css("padding-top", $(".navbar").height()); }); }; @@ -120,8 +120,8 @@ var Filters = (function() { }; var setUpdating = function() { - // visual hint that alerts are reloaded due to filter change - $(selectors.icon).removeClass("fa-search fa-pause").addClass("fa-circle-o-notch fa-spin"); + // visual hint that alerts are reloaded due to filter change + $(selectors.icon).removeClass("fa-search fa-pause").addClass("fa-circle-o-notch fa-spin"); }; var updateDone = function() { @@ -129,7 +129,7 @@ var Filters = (function() { }; var setPause = function() { - $(selectors.icon).removeClass("fa-circle-o-notch fa-spin fa-search").addClass("fa-pause"); + $(selectors.icon).removeClass("fa-circle-o-notch fa-spin fa-search").addClass("fa-pause"); }; return { diff --git a/assets/static/progress.js b/assets/static/progress.js index f0e53a9af..343400740 100644 --- a/assets/static/progress.js +++ b/assets/static/progress.js @@ -33,13 +33,13 @@ var Progress = (function() { }; var start = function() { - var step_ms = 250; // animation step in ms - var steps = (Unsee.GetRefreshRate() * 1000) / step_ms; // how many steps we have + var stepMs = 250; // animation step in ms + var steps = (Unsee.GetRefreshRate() * 1000) / stepMs; // how many steps we have NProgress.set(0.0); Progress.ResetTimer(); timer = setInterval(function() { NProgress.inc(1.0 / steps); - }, step_ms); + }, stepMs); }; return { diff --git a/assets/static/querystring.js b/assets/static/querystring.js index d58fce885..6796c0203 100644 --- a/assets/static/querystring.js +++ b/assets/static/querystring.js @@ -17,7 +17,7 @@ var QueryString = (function() { var update = function(key, value) { /* https://gist.github.com/excalq/2961415 */ - var baseUrl = [location.protocol, "//", location.host, location.pathname].join(""), + var baseUrl = [ location.protocol, "//", location.host, location.pathname ].join(""), urlQueryString = document.location.search, newParam = key + "=" + value, params = "?" + newParam; @@ -37,7 +37,7 @@ var QueryString = (function() { }; var remove = function(key) { - var baseUrl = [location.protocol, "//", location.host, location.pathname].join(""), + var baseUrl = [ location.protocol, "//", location.host, location.pathname ].join(""), q = QueryString.Parse(); if (q[key] !== undefined) { delete q[key]; diff --git a/assets/static/sentry.js b/assets/static/sentry.js index f23497784..4d9f813f5 100644 --- a/assets/static/sentry.js +++ b/assets/static/sentry.js @@ -2,18 +2,18 @@ (function() { -// init sentry client if sentry dsn is set -if ($("body").data("raven-dsn")) { - var dsn = $("body").data("raven-dsn").replace("\/", "/"); - // raven itself can fail if invalid DSN is passed - try { - Raven.config(dsn, { - release: $("body").data("unsee-version") - }).install(); - } catch (error) { - var msg = "Sentry error: " + error.message; - $("#raven-error").text(msg).removeClass("hidden"); - } -} + // init sentry client if sentry dsn is set + if ($("body").data("raven-dsn")) { + var dsn = $("body").data("raven-dsn").replace("\/", "/"); + // raven itself can fail if invalid DSN is passed + try { + Raven.config(dsn, { + release: $("body").data("unsee-version") + }).install(); + } catch (error) { + var msg = "Sentry error: " + error.message; + $("#raven-error").text(msg).removeClass("hidden"); + } + } })(); diff --git a/assets/static/silence.js b/assets/static/silence.js index af29d8825..964511007 100644 --- a/assets/static/silence.js +++ b/assets/static/silence.js @@ -8,123 +8,123 @@ var Silence = (function() { var silenceFormData = function() { var values = $("#newSilenceForm").serializeArray(); var payload = { - matchers: [], - startsAt: "", - endsAt: "", - createdBy: "", - comment: "" + matchers: [], + startsAt: "", + endsAt: "", + createdBy: "", + comment: "" }; $.each(values, function(i, elem){ - switch (elem.name) { - case "comment": case "createdBy": - payload[elem.name] = elem.value; - break; - } + switch (elem.name) { + case "comment": case "createdBy": + payload[elem.name] = elem.value; + break; + } }); if ($("#startsAt").data("DateTimePicker")) { - payload.startsAt = $("#startsAt").data("DateTimePicker").date(); + payload.startsAt = $("#startsAt").data("DateTimePicker").date(); } if ($("#endsAt").data("DateTimePicker")) { - payload.endsAt = $("#endsAt").data("DateTimePicker").date(); + payload.endsAt = $("#endsAt").data("DateTimePicker").date(); } $.each($("#newSilenceForm .selectpicker"), function(i, elem) { - var label_key = $(elem).data("label-key"); + var labelKey = $(elem).data("label-key"); var values = $(elem).selectpicker("val"); if (values && values.length > 0) { - var pval; - var isRegex = false; - if (values.length > 1) { - pval = "^(?:" + values.join("|") + ")$"; - isRegex = true; - } else { - pval = values[0]; - } - payload.matchers.push({ - name: label_key, - value: pval, - isRegex: isRegex - }); + var pval; + var isRegex = false; + if (values.length > 1) { + pval = "^(?:" + values.join("|") + ")$"; + isRegex = true; + } else { + pval = values[0]; + } + payload.matchers.push({ + name: labelKey, + value: pval, + isRegex: isRegex + }); } }); return payload; }; var silenceFormCalculateDuration = function() { - // skip if datetimepicker isn't ready yet - if (!$("#startsAt").data("DateTimePicker") || !$("#endsAt").data("DateTimePicker")) return false; + // skip if datetimepicker isn't ready yet + if (!$("#startsAt").data("DateTimePicker") || !$("#endsAt").data("DateTimePicker")) return false; - var startsAt = $("#startsAt").data("DateTimePicker").date(); - var endsAt = $("#endsAt").data("DateTimePicker").date(); + var startsAt = $("#startsAt").data("DateTimePicker").date(); + var endsAt = $("#endsAt").data("DateTimePicker").date(); - var totalDays = (endsAt.diff(startsAt, "days")); - var totalHours = (endsAt.diff(startsAt, "hours")) % 24; - var totalMinutes = endsAt.diff(startsAt, "minutes") % 60; - $("#silence-duration-days").html(totalDays); - $("#silence-duration-hours").html(totalHours); - $("#silence-duration-minutes").html(totalMinutes); + var totalDays = (endsAt.diff(startsAt, "days")); + var totalHours = (endsAt.diff(startsAt, "hours")) % 24; + var totalMinutes = endsAt.diff(startsAt, "minutes") % 60; + $("#silence-duration-days").html(totalDays); + $("#silence-duration-hours").html(totalHours); + $("#silence-duration-minutes").html(totalMinutes); - var startsAtDesc = moment().to(startsAt); - startsAtDesc = startsAtDesc.replace("in a few seconds", "now"); - startsAtDesc = startsAtDesc.replace("a few seconds ago", "now"); - $("#silence-start-description").html(startsAtDesc); + var startsAtDesc = moment().to(startsAt); + startsAtDesc = startsAtDesc.replace("in a few seconds", "now"); + startsAtDesc = startsAtDesc.replace("a few seconds ago", "now"); + $("#silence-start-description").html(startsAtDesc); - var endsAtDesc = moment().to(endsAt); - endsAtDesc = endsAtDesc.replace("in a few seconds", "now"); - endsAtDesc = endsAtDesc.replace("a few seconds ago", "now"); - $("#silence-end-description").html(endsAtDesc); + var endsAtDesc = moment().to(endsAt); + endsAtDesc = endsAtDesc.replace("in a few seconds", "now"); + endsAtDesc = endsAtDesc.replace("a few seconds ago", "now"); + $("#silence-end-description").html(endsAtDesc); }; var silenceFormJSONRender = function() { - var d = "curl " + $("#silenceModal").data("silence-api") + - "\n -X POST --data " + - JSON.stringify(silenceFormData(), undefined, 2); - $("#silenceJSONBlob").html(d); + var d = "curl " + $("#silenceModal").data("silence-api") + + "\n -X POST --data " + + JSON.stringify(silenceFormData(), undefined, 2); + $("#silenceJSONBlob").html(d); }; var silenceFormUpdateDuration = function(event) { - // skip if datetimepicker isn't ready yet - if (!$("#startsAt").data("DateTimePicker") || !$("#endsAt").data("DateTimePicker")) return false; + // skip if datetimepicker isn't ready yet + if (!$("#startsAt").data("DateTimePicker") || !$("#endsAt").data("DateTimePicker")) return false; - var startsAt = $("#startsAt").data("DateTimePicker").date(); - var endsAt = $("#endsAt").data("DateTimePicker").date(); - var endsAtMinDate = $("#endsAt").data("DateTimePicker").minDate(); - var action = $(event.target).data("duration-action"); - var unit = $(event.target).data("duration-unit"); - var step = parseInt($(event.target).data("duration-step")); + var startsAt = $("#startsAt").data("DateTimePicker").date(); + var endsAt = $("#endsAt").data("DateTimePicker").date(); + var endsAtMinDate = $("#endsAt").data("DateTimePicker").minDate(); + var action = $(event.target).data("duration-action"); + var unit = $(event.target).data("duration-unit"); + var step = parseInt($(event.target).data("duration-step")); - // re-calculate step for low values - // if we have 5 minute step and current duration is 1 minute than clicking - // on the increment should give us 5 minute, not 6 minute duration - var totalValue = (endsAt.diff(startsAt, unit)); - switch (unit) { + // re-calculate step for low values + // if we have 5 minute step and current duration is 1 minute than clicking + // on the increment should give us 5 minute, not 6 minute duration + var totalValue = (endsAt.diff(startsAt, unit)); + switch (unit) { case "hours": - totalValue = totalValue % 24; - break; + totalValue = totalValue % 24; + break; case "minutes": - totalValue = totalValue % 60; - break; - } + totalValue = totalValue % 60; + break; + } - if (action == "increment") { - // if step is 5 minute and current value is 3 than set 5 minutes, not 8 - if (step > 1 && totalValue < step) { - step = step - totalValue; + if (action == "increment") { + // if step is 5 minute and current value is 3 than set 5 minutes, not 8 + if (step > 1 && totalValue < step) { + step = step - totalValue; + } + endsAt.add(step, unit); + } else { + // if step is 5 minute and current value is 3 than set 0 minutes + if (totalValue > 0 && step > 1 && totalValue < step) { + step = totalValue; + } + endsAt.subtract(step, unit); + if (endsAt < endsAtMinDate) { + // if decrement would result in a timestamp lower than allowed minimum + // then just reset it to the minimum + endsAt = endsAtMinDate; + } } - endsAt.add(step, unit); - } else { - // if step is 5 minute and current value is 3 than set 0 minutes - if (totalValue > 0 && step > 1 && totalValue < step) { - step = totalValue; - } - endsAt.subtract(step, unit); - if (endsAt < endsAtMinDate) { - // if decrement would result in a timestamp lower than allowed minimum - // then just reset it to the minimum - endsAt = endsAtMinDate; - } - } - $("#endsAt").data("DateTimePicker").date(endsAt); - silenceFormCalculateDuration(); + $("#endsAt").data("DateTimePicker").date(endsAt); + silenceFormCalculateDuration(); }; // modal form for creating new silences @@ -141,152 +141,152 @@ var Silence = (function() { elemLabels[l.split("=")[0]] = l.split("=")[1]; }); $.ajax({ - url: "alerts.json?q=alertname=" + elem.data("alertname"), - error: function(xhr, textStatus, errorThrown) { - var err = xhr.responseText || errorThrown || textStatus; - modal.find(".modal-body").html( - Templates.Render("silenceFormFatal", {error: err}) - ); - }, - success: function(data) { - var modal = $("#silenceModal"); - var labels = {}; - $.each(data.groups, function(i, group) { - $.each(group.alerts, function(j, alert) { - $.each(alert.labels, function(label_key, label_val) { - if (labels[label_key] === undefined) { - labels[label_key] = {}; - } - if (labels[label_key][label_val] === undefined) { - labels[label_key][label_val] = { - key: label_key, - value: label_val, - attrs: Alerts.GetLabelAttrs(label_key, label_val), - selected: elemLabels[label_key] == label_val - }; - } - }); - }); - }); - modal.find(".modal-body").html( - Templates.Render("silenceForm", {labels: labels}) - ); - $.each($(".selectpicker"), function(i, elem) { - $(elem).selectpicker({ - iconBase: "fa", - tickIcon: "fa-check", - width: "fit", - selectAllText: "", - deselectAllText: "", - noneSelectedText: "" + $(this).data("label-key") + ": ", - multipleSeparator: " ", - selectedTextFormat: "count > 1", - countSelectedText: function (numSelected) { - return "" + - $(elem).data("label-key") + ": " + numSelected + " values selected"; + url: "alerts.json?q=alertname=" + elem.data("alertname"), + error: function(xhr, textStatus, errorThrown) { + var err = xhr.responseText || errorThrown || textStatus; + modal.find(".modal-body").html( + Templates.Render("silenceFormFatal", {error: err}) + ); + }, + success: function(data) { + var modal = $("#silenceModal"); + var labels = {}; + $.each(data.groups, function(i, group) { + $.each(group.alerts, function(j, alert) { + $.each(alert.labels, function(labelKey, labelVal) { + if (labels[labelKey] === undefined) { + labels[labelKey] = {}; + } + if (labels[labelKey][labelVal] === undefined) { + labels[labelKey][labelVal] = { + key: labelKey, + value: labelVal, + attrs: Alerts.GetLabelAttrs(labelKey, labelVal), + selected: elemLabels[labelKey] == labelVal + }; + } + }); + }); + }); + modal.find(".modal-body").html( + Templates.Render("silenceForm", {labels: labels}) + ); + $.each($(".selectpicker"), function(i, elem) { + $(elem).selectpicker({ + iconBase: "fa", + tickIcon: "fa-check", + width: "fit", + selectAllText: "", + deselectAllText: "", + noneSelectedText: "" + $(this).data("label-key") + ": ", + multipleSeparator: " ", + selectedTextFormat: "count > 1", + countSelectedText: function (numSelected) { + return "" + + $(elem).data("label-key") + ": " + numSelected + " values selected"; + } + }); + }); + $(".datetime-picker").datetimepicker({ + format: "YYYY-MM-DD HH:mm", + icons: { + time: "fa fa-clock-o", + date: "fa fa-calendar", + up: "fa fa-chevron-up", + down: "fa fa-chevron-down", + previous: "fa fa-chevron-left", + next: "fa fa-chevron-right", + today: "fa fa-asterisk", + clear: "fa fa-undo", + close: "fa fa-close" + }, + minDate: moment(), + sideBySide: true, + inline: true + }); + UI.SetupTooltips($("#newSilenceForm")); + $(".select-label-badge").on("click", function() { + var select = $(this).parent().parent().find("select"); + if (select.selectpicker("val").length) { + // if there's anything selected deselect all + select.selectpicker("deselectAll"); + } else { + // else select all + select.selectpicker("selectAll"); } }); - }); - $(".datetime-picker").datetimepicker({ - format: "YYYY-MM-DD HH:mm", - icons: { - time: "fa fa-clock-o", - date: "fa fa-calendar", - up: "fa fa-chevron-up", - down: "fa fa-chevron-down", - previous: "fa fa-chevron-left", - next: "fa fa-chevron-right", - today: "fa fa-asterisk", - clear: "fa fa-undo", - close: "fa fa-close" - }, - minDate: moment(), - sideBySide: true, - inline: true - }); - UI.SetupTooltips($("#newSilenceForm")); - $(".select-label-badge").on("click", function() { - var select = $(this).parent().parent().find("select"); - if (select.selectpicker("val").length) { - // if there's anything selected deselect all - select.selectpicker("deselectAll"); - } else { - // else select all - select.selectpicker("selectAll"); - } - }); - // set endsAt minDate to now + 1 minute - $("#endsAt").data("DateTimePicker").minDate(moment().add(1, "minute")); - // set endsAt time to +1 hour - $("#endsAt").data("DateTimePicker").date(moment().add(1, "hours")); - // whenever startsAt changes set it as the minDate for endsAt - // we can't have endsAt < startsAt - $("#newSilenceForm").on("dp.change", "#startsAt", function(){ - if (!$("#startsAt").data("DateTimePicker")) return false; - var startsAt = $("#startsAt").data("DateTimePicker").date(); - // endsAt needs to be at least 1 minute after startsAt - startsAt.add(1, "minute"); - $("#endsAt").data("DateTimePicker").minDate(startsAt); - }); - $("#newSilenceForm").on("click", "a.silence-duration-btn", silenceFormUpdateDuration); - $("#newSilenceForm").on("show.bs.collapse, dp.change", function () { - silenceFormJSONRender(); - silenceFormCalculateDuration(); - }); - $("#newSilenceForm").on("change", function () { - silenceFormJSONRender(); - }); - $("#newSilenceForm").submit(function(event) { - var payload = silenceFormData(); - if (payload.matchers.length === 0) { - var errContent = Templates.Render("silenceFormError", {error: "Select at least on label"}); - $("#newSilenceAlert").html(errContent).removeClass("hidden"); - return false; - } - - var url = modal.data("silence-api"); - $.ajax({ - type: "POST", - url: url, - data: JSON.stringify(payload), - error: function(xhr, textStatus, errorThrown) { - // default to whatever error text we can get - var err = xhr.responseText || errorThrown || textStatus; - if (xhr.responseText) { - // if we have a reponse text try to decode it as JSON - // it should be error from Alertmanager (it we were able to connect) - try { - var j = JSON.parse(xhr.responseText); - if (j.error !== undefined) { - err = j.error; - } - } catch (error) { - // can't parse json, do nothing - } - } - - var errContent = Templates.Render("silenceFormError", {error: err}); + // set endsAt minDate to now + 1 minute + $("#endsAt").data("DateTimePicker").minDate(moment().add(1, "minute")); + // set endsAt time to +1 hour + $("#endsAt").data("DateTimePicker").date(moment().add(1, "hours")); + // whenever startsAt changes set it as the minDate for endsAt + // we can't have endsAt < startsAt + $("#newSilenceForm").on("dp.change", "#startsAt", function(){ + if (!$("#startsAt").data("DateTimePicker")) return false; + var startsAt = $("#startsAt").data("DateTimePicker").date(); + // endsAt needs to be at least 1 minute after startsAt + startsAt.add(1, "minute"); + $("#endsAt").data("DateTimePicker").minDate(startsAt); + }); + $("#newSilenceForm").on("click", "a.silence-duration-btn", silenceFormUpdateDuration); + $("#newSilenceForm").on("show.bs.collapse, dp.change", function () { + silenceFormJSONRender(); + silenceFormCalculateDuration(); + }); + $("#newSilenceForm").on("change", function () { + silenceFormJSONRender(); + }); + $("#newSilenceForm").submit(function(event) { + var payload = silenceFormData(); + if (payload.matchers.length === 0) { + var errContent = Templates.Render("silenceFormError", {error: "Select at least on label"}); $("#newSilenceAlert").html(errContent).removeClass("hidden"); - }, - success: function(data) { - if (data.status == "success") { - $("#newSilenceAlert").addClass("hidden"); - $("#newSilenceForm").html(Templates.Render("silenceFormSuccess", { - silenceID: data.data.silenceId - })); - } else { - var err = "Invalid response from Alertmanager API: " + JSON.stringify(data); - var errContent = Templates.Render("silenceFormError", {error: err}); - $("#newSilenceAlert").html(errContent).removeClass("hidden"); - } - }, - dataType: "json" - }); + return false; + } - event.preventDefault(); - }); - silenceFormCalculateDuration(); - silenceFormJSONRender(); + var url = modal.data("silence-api"); + $.ajax({ + type: "POST", + url: url, + data: JSON.stringify(payload), + error: function(xhr, textStatus, errorThrown) { + // default to whatever error text we can get + var err = xhr.responseText || errorThrown || textStatus; + if (xhr.responseText) { + // if we have a reponse text try to decode it as JSON + // it should be error from Alertmanager (it we were able to connect) + try { + var j = JSON.parse(xhr.responseText); + if (j.error !== undefined) { + err = j.error; + } + } catch (error) { + // can't parse json, do nothing + } + } + + var errContent = Templates.Render("silenceFormError", {error: err}); + $("#newSilenceAlert").html(errContent).removeClass("hidden"); + }, + success: function(data) { + if (data.status == "success") { + $("#newSilenceAlert").addClass("hidden"); + $("#newSilenceForm").html(Templates.Render("silenceFormSuccess", { + silenceID: data.data.silenceId + })); + } else { + var err = "Invalid response from Alertmanager API: " + JSON.stringify(data); + var errContent = Templates.Render("silenceFormError", {error: err}); + $("#newSilenceAlert").html(errContent).removeClass("hidden"); + } + }, + dataType: "json" + }); + + event.preventDefault(); + }); + silenceFormCalculateDuration(); + silenceFormJSONRender(); } }); diff --git a/assets/static/summary.js b/assets/static/summary.js index b5db01e29..5f6627341 100644 --- a/assets/static/summary.js +++ b/assets/static/summary.js @@ -6,14 +6,14 @@ var Summary = (function() { var summary; var render = function() { - var top_tags = []; + var topTags = []; $.each(summary, function(k, v) { - top_tags.push({ + topTags.push({ name: k, val: v }); }); - top_tags.sort(function(a, b) { + topTags.sort(function(a, b) { if (a.val > b.val) return 1; if (a.val < b.val) return -1; if (a.name > b.name) return -1; @@ -22,11 +22,11 @@ var Summary = (function() { }).reverse(); var tags = []; - $.each(top_tags.slice(0, 10), function(i, tag) { - var label_key = tag.name.split(": ")[0]; - var label_val = tag.name.split(": ")[1]; - tag.style = Colors.Get(label_key, label_val); - tag.cls = Colors.GetClass(label_key, label_val); + $.each(topTags.slice(0, 10), function(i, tag) { + var labelKey = tag.name.split(": ")[0]; + var labelVal = tag.name.split(": ")[1]; + tag.style = Colors.Get(labelKey, labelVal); + tag.cls = Colors.GetClass(labelKey, labelVal); tags.push(tag); }); @@ -38,8 +38,8 @@ var Summary = (function() { $(".navbar-header").popover({ trigger: "hover", delay: { - "show": 500, - "hide": 100 + "show": 500, + "hide": 100 }, container: "body", html: true, diff --git a/assets/static/templates.js b/assets/static/templates.js index 534aa3378..652ee304b 100644 --- a/assets/static/templates.js +++ b/assets/static/templates.js @@ -5,40 +5,40 @@ var Templates = (function() { var templates = {}, config = { - // popover with the list of most common labels - breakdown: "#breakdown", - breakdownContent: "#breakdown-content", + // popover with the list of most common labels + breakdown: "#breakdown", + breakdownContent: "#breakdown-content", - // reload message if backend version bump is detected - reloadNeeded: "#reload-needed", + // reload message if backend version bump is detected + reloadNeeded: "#reload-needed", - // errors - fatalError: "#fatal-error", - internalError: "#internal-error", - updateError: "#update-error", + // errors + fatalError: "#fatal-error", + internalError: "#internal-error", + updateError: "#update-error", - // modal popup with label filters - modalTitle: "#modal-title", - modalBody: "#modal-body", + // modal popup with label filters + modalTitle: "#modal-title", + modalBody: "#modal-body", - // modal popup with silence form - silenceForm: "#silence-form", - silenceFormSuccess: "#silence-form-success", - silenceFormError: "#silence-form-error", - silenceFormFatal: "#silence-form-fatal", - silenceFormLoading: "#silence-form-loading", + // modal popup with silence form + silenceForm: "#silence-form", + silenceFormSuccess: "#silence-form-success", + silenceFormError: "#silence-form-error", + silenceFormFatal: "#silence-form-fatal", + silenceFormLoading: "#silence-form-loading", - // label button - buttonLabel: "#label-button-filter", + // label button + buttonLabel: "#label-button-filter", - // alert group - alertGroup: "#alert-group", - alertGroupTitle: "#alert-group-title", - alertGroupAnnotations: "#alert-group-annotations", - alertGroupLabels: "#alert-group-labels", - alertGroupElements: "#alert-group-elements", - alertGroupSilence: "#alert-group-silence", - alertGroupLabelMap: "#alert-group-label-map" + // alert group + alertGroup: "#alert-group", + alertGroupTitle: "#alert-group-title", + alertGroupAnnotations: "#alert-group-annotations", + alertGroupLabels: "#alert-group-labels", + alertGroupElements: "#alert-group-elements", + alertGroupSilence: "#alert-group-silence", + alertGroupLabelMap: "#alert-group-label-map" }; var init = function() { @@ -59,9 +59,9 @@ var Templates = (function() { return "

Internal error: unknown template " + name + "

"; } try { - return t(context); + return t(context); } catch (err) { - return "
Failed to render template " + name + "

" + err + "

"; + return "
Failed to render template " + name + "

" + err + "

"; } }; diff --git a/assets/static/ui.js b/assets/static/ui.js index 365728936..09e9b593c 100644 --- a/assets/static/ui.js +++ b/assets/static/ui.js @@ -10,17 +10,17 @@ var UI = (function() { Unsee.Pause(); var modal = $(this); var label = $(event.relatedTarget); - var label_key = label.data("label-key"); - var label_val = label.data("label-val"); - var attrs = Alerts.GetLabelAttrs(label_key, label_val); - var counter = Summary.Get(label_key, label_val); + var labelKey = label.data("label-key"); + var labelVal = label.data("label-val"); + var attrs = Alerts.GetLabelAttrs(labelKey, labelVal); + var counter = Summary.Get(labelKey, labelVal); modal.find(".modal-title").html( Templates.Render("modalTitle", { - attrs: attrs, - counter: counter + attrs: attrs, + counter: counter }) ); - var hints = Autocomplete.GenerateHints(label_key, label_val); + var hints = Autocomplete.GenerateHints(labelKey, labelVal); modal.find(".modal-body").html( Templates.Render("modalBody", {hints: hints}) ); diff --git a/assets/static/unsee.js b/assets/static/unsee.js index 5f3f18b38..18f6026df 100644 --- a/assets/static/unsee.js +++ b/assets/static/unsee.js @@ -66,6 +66,21 @@ var Unsee = (function() { return version != responseVersion; }; + var updateIsReady = function() { + Progress.Complete(); + $(selectors.refreshButton).prop("disabled", true); + Counter.Hide(); + }; + + var updateCompleted = function() { + Counter.Show(); + Filters.UpdateCompleted(); + Progress.Complete(); + $(selectors.refreshButton).prop("disabled", false); + // hack for fixing padding since input can grow and change height + $("body").css("padding-top", $(".navbar").height()); + }; + var renderError = function(template, context) { Counter.Error(); Grid.Clear(); @@ -113,7 +128,7 @@ var Unsee = (function() { renderError("updateError", { error: "Backend error", message: resp.error, - last_ts: Watchdog.GetLastUpdate() + lastTs: Watchdog.GetLastUpdate() }); Unsee.WaitForNextReload(); } else { @@ -130,8 +145,8 @@ var Unsee = (function() { Watchdog.Pong(moment(resp.timestamp)); Unsee.WaitForNextReload(); if (!Watchdog.IsFatal()) { - $(selectors.errors).html(""); - $(selectors.errors).hide(""); + $(selectors.errors).html(""); + $(selectors.errors).hide(""); } } catch (err) { Counter.Unknown(); @@ -149,7 +164,7 @@ var Unsee = (function() { renderError("updateError", { error: "Backend error", message: "AJAX request failed", - last_ts: Watchdog.GetLastUpdate() + lastTs: Watchdog.GetLastUpdate() }); } Unsee.WaitForNextReload(); @@ -157,21 +172,6 @@ var Unsee = (function() { }); }; - var updateIsReady = function() { - Progress.Complete(); - $(selectors.refreshButton).prop("disabled", true); - Counter.Hide(); - }; - - var updateCompleted = function() { - Counter.Show(); - Filters.UpdateCompleted(); - Progress.Complete(); - $(selectors.refreshButton).prop("disabled", false); - // hack for fixing padding since input can grow and change height - $("body").css("padding-top", $(".navbar").height()); - }; - var pause = function() { Progress.Pause(); Filters.Pause(); @@ -220,40 +220,40 @@ var Unsee = (function() { $(document).ready(function() { - // wrap all inits so we can handle errors - try { - // init all elements using bootstrapSwitch - $(".toggle").bootstrapSwitch(); + // wrap all inits so we can handle errors + try { + // init all elements using bootstrapSwitch + $(".toggle").bootstrapSwitch(); - // enable tooltips, #settings is a dropdown so it already uses different data-toggle - $("[data-toggle='tooltip'], #settings").tooltip({ - trigger: "hover" - }); + // enable tooltips, #settings is a dropdown so it already uses different data-toggle + $("[data-toggle='tooltip'], #settings").tooltip({ + trigger: "hover" + }); - Templates.Init(); - UI.Init(); - Silence.Init(); - Unsee.Init(); + Templates.Init(); + UI.Init(); + Silence.Init(); + Unsee.Init(); - // delay initial alert load to allow browser finish rendering - setTimeout(function() { - Filters.SetFilters(); - }, 100); - } catch (error) { - Raven.captureException(error); - if (window.console) { - console.error("Error: " + error.stack); + // delay initial alert load to allow browser finish rendering + setTimeout(function() { + Filters.SetFilters(); + }, 100); + } catch (error) { + Raven.captureException(error); + if (window.console) { + console.error("Error: " + error.stack); + } + // templates might not be loaded yet, make some html manually + $("#errors").html( + "
" + + "

" + + "Internal error " + + "

" + + "

" + + error.message + + "

" + ).show(); } - // templates might not be loaded yet, make some html manually - $("#errors").html( - "
" + - "

" + - "Internal error " + - "

" + - "

" + - error.message + - "

" - ).show(); - } }); diff --git a/assets/static/watchdog.js b/assets/static/watchdog.js index 933c1279d..f39bb56bd 100644 --- a/assets/static/watchdog.js +++ b/assets/static/watchdog.js @@ -26,8 +26,8 @@ var Watchdog = (function() { var now = moment().utc().unix(); if (now - lastTs > maxLag) { $("#errors").html(Templates.Render("fatalError", { - last_ts: lastTs, - seconds_left: fatalCountdown + lastTs: lastTs, + secondsLeft: fatalCountdown })).show(); Counter.Unknown(); if (!inCountdown) { diff --git a/assets/templates/alertgroup.html b/assets/templates/alertgroup.html index c6219879a..cb353beea 100644 --- a/assets/templates/alertgroup.html +++ b/assets/templates/alertgroup.html @@ -209,7 +209,7 @@ <% var labelMap = {} %> <% var skipped = 0 %> <% _.each(group.alerts, function(alert, i) { %> - <% if (i > alert_limit - 1) { %> + <% if (i > alertLimit - 1) { %> <% skipped++ %> <% _.each(alert.labels, function(label_val, label_key) { %> <% var text = label_key + ': ' + label_val %> diff --git a/assets/templates/errors.html b/assets/templates/errors.html index 095078908..8124484b3 100644 --- a/assets/templates/errors.html +++ b/assets/templates/errors.html @@ -19,10 +19,10 @@

<% } %> - <% if (last_ts > 0) { %> + <% if (lastTs > 0) { %>

- Last successful update was <%= moment.unix(last_ts).fromNow() %> + Last successful update was <%= moment.unix(lastTs).fromNow() %>

<% } %> @@ -39,12 +39,12 @@

- Auto refresh is enabled but last update was <%= moment.unix(last_ts).fromNow() %> + Auto refresh is enabled but last update was <%= moment.unix(lastTs).fromNow() %>

This page will auto reload in - <%- seconds_left %> seconds + <%- secondsLeft %> seconds

diff --git a/bindata_assetfs.go b/bindata_assetfs.go index dbb73d715..e301acc62 100644 --- a/bindata_assetfs.go +++ b/bindata_assetfs.go @@ -138,7 +138,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _templatesAlertgroupHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdd\x6f\x1b\x37\x12\x7f\xcf\x5f\x31\xdd\xab\xbb\x16\xac\x95\x92\xb7\x83\xa0\xd5\x9d\xdb\x2b\x82\xc3\x25\x38\xa0\xcd\x3d\x05\x81\x41\xed\x52\x12\x2d\x6a\x77\x43\x72\xdd\x0a\x86\xff\xf7\x03\x3f\x96\xcb\x2f\xc9\x72\xe3\x36\x0f\xb1\x44\x0e\x87\x9c\xe1\x7c\xfc\x66\xa8\x25\xaf\x18\xe9\x04\x88\x63\x87\xcb\x0c\x75\x1d\x25\x15\x12\xa4\x6d\xe6\xf7\xbc\x6d\x32\x20\x75\x99\x21\x8a\x99\x28\xb6\xac\xed\xbb\x42\x10\x41\x71\xb6\x7a\x03\xb0\xbc\x02\xb2\x81\xeb\xff\xae\xef\x71\x25\x66\x7b\x7c\xe4\xd7\x8a\x64\x46\xd1\x1a\x53\x3e\x99\x51\xdc\x6c\xc5\x0e\x56\xf0\x76\x02\x8f\x70\x25\xd7\xa8\x55\x0f\x88\xc1\x86\x50\x81\x19\x87\x12\x3e\x7f\x71\xa6\xee\x66\x18\x55\x3b\x8f\xcf\x14\x36\x7d\x53\xc9\x13\x5d\xab\x81\xbb\x07\x44\xa7\xa0\x3f\xee\xf1\x51\xb2\x36\xcc\x66\x5d\xcf\x77\xd7\x76\x06\x6e\x20\x2f\x73\xb8\x01\xbb\x6c\x02\x4f\x93\xe0\x1c\x6a\xa7\x0f\xa4\xd9\x43\x09\xf9\x3f\xbe\x2a\xfa\x81\xdd\x7d\x4b\x9a\xeb\x7c\x9a\x8f\x6b\x78\x87\x1a\xa8\x28\xe2\xbc\xcc\xba\x9e\xd2\x82\xe2\x8d\x00\x57\x3d\x94\x34\xfb\x4c\x53\x03\x2c\x11\xec\x18\xde\x94\xd9\xf2\xaa\x74\x76\xba\x5a\x65\xa0\xd4\x58\x66\xea\xbb\x68\x41\xec\x08\xd7\x7c\x34\x5d\x36\x85\x1a\x09\x54\x88\x76\xbb\x95\x74\xa2\x6d\xa9\x20\x5d\xa6\x47\x3b\x8a\x2a\x7c\xc0\x8d\x90\x13\x9d\xdd\x0e\x60\x49\x86\xd3\x6d\x10\x6c\x90\x3e\xcd\xdc\x1e\x67\x8e\x8c\x1c\x73\x29\x48\x42\xa6\x35\xaa\xb7\x18\x94\x64\x8c\x6c\x77\x62\x94\xe4\xaa\xd0\x07\x9b\xa9\x43\xf2\xe1\x6e\xaf\x12\x0c\x6b\xf2\x60\x75\x84\x1a\x4c\x1d\x93\x31\x8a\xff\x03\x66\xe3\xdb\xc7\xad\x3e\xc4\xaf\x2d\x13\x1f\x51\xf7\xe3\xf1\x3f\xf8\xe8\x33\x09\x8d\x26\xe0\x64\xaf\x1f\x09\xa1\x8c\xd0\x30\x7c\x8f\xc5\x07\x49\x7e\x2b\x87\xf5\x4a\x79\x42\x63\x6e\xb3\x07\x44\x7b\x3c\x09\x19\x95\xf0\x09\x1f\x3a\x8a\x04\xe6\xb3\x5f\x70\x53\x63\x76\x9d\xaf\x7b\x21\xda\x46\xf1\xca\xa7\xf0\x88\x29\x3e\x2c\x20\xaf\xc9\x43\x3e\x05\xf9\xe5\x27\xa9\x9f\x05\xe4\x8a\xaf\xe6\x5e\x50\xc2\x45\x3e\xd5\x47\x5a\xe8\x3f\x66\xe3\x85\xfe\xf3\x34\x09\xb4\xe1\x0e\xc8\xaf\x80\x29\xc7\x81\xce\x9c\xdb\x18\xb7\xd1\xfc\xb2\xd5\x72\x5e\x93\x07\x8f\x83\xbd\x50\x33\x31\x0c\x2e\xe7\x3a\x4e\xac\xde\xbc\x79\x69\xc4\x40\x4d\xd3\x0a\x45\xc0\x87\xb8\x71\xe6\x1a\xd5\xca\x99\xb3\xc6\xbd\xcb\x71\xd8\x8d\x28\x8e\x88\xbf\x61\x4a\x41\xfe\x57\xf0\x03\x8c\xd4\x85\x1c\x1a\x2d\x30\xf0\x92\xaf\x3d\xe6\x8a\xaa\x22\xac\xa2\x18\x04\xfe\x5d\x14\x87\x5e\xe0\xda\xfa\xa9\xbc\xe5\x91\x9d\xb4\x09\xe5\xc5\x97\xfb\xe8\x3c\x30\x7f\x87\x99\xb1\xaa\xc0\xd4\x0b\x08\x49\x9e\xbf\x6b\xd7\x95\x1d\x21\x5c\x73\xfd\x0c\x07\xc2\x39\x69\xb6\x0e\x7b\xd0\xec\xbf\x8c\x8c\x1c\x77\x3e\x63\x17\x93\x6f\x34\x0c\xed\xab\x17\xdb\xc4\xf3\xae\x6d\x74\xeb\x46\x82\xcf\xd6\x89\xbf\x40\x59\x42\xdf\xd4\x78\x43\x1a\x5c\x7b\xfa\x7e\x95\x60\xf0\x92\x40\x20\xd5\x7b\xa1\xab\x8f\xda\x7f\x0d\x95\xcb\xfd\x71\x23\xac\xd2\xa5\xd8\x15\xe5\x77\xa4\xa9\xe5\xc2\x96\xc9\x34\x48\x9a\x8a\xd4\xb8\x11\x85\x1d\x2d\x6a\xd4\x6c\x31\xcb\xed\x41\x94\x09\xab\x5b\xe1\x02\x09\x0c\x65\x59\x42\xc6\xfb\xae\x63\x98\x73\x5c\x67\x52\xbd\x97\xf0\xe5\x7d\x55\x61\xce\x73\x2b\xa3\x8d\x47\xde\x26\x5b\xdc\x60\x26\x17\xfc\xef\x97\x0f\xfe\xcd\x21\x2f\xb8\x41\x18\xe2\x8a\x1a\x6f\x50\x4f\x45\x36\xba\xc0\x98\x91\x63\xde\xd2\xa9\x47\x4a\x81\xd8\x16\x8b\x32\xbb\x5b\x53\xd4\xec\xdd\x09\x1d\x14\xde\xb7\x3a\x75\x63\x93\xb9\x79\xdb\xb3\x0a\x3b\x74\xc9\xf0\x10\x4c\x5f\x9c\xcb\xf1\xef\x02\xb3\x06\xd1\x20\xa9\x83\xd9\x36\xca\xf1\xae\xd7\x5a\xef\x32\x9e\x44\x9a\xbd\x8b\xab\x7a\x46\xa7\x2a\xea\xbd\x9e\x6e\x7b\x46\x5f\xa6\xcc\xe4\xa2\xbf\x46\x81\x32\xd8\x4a\xe9\x1d\xd1\x5d\x2d\x86\x90\xf1\x6c\x98\xc8\xfe\xa9\x1c\x22\x9b\x82\xe3\x1e\x0e\x87\xd7\x89\x11\x8f\x7b\x7c\x5c\x40\xae\xf7\xca\xa7\x3a\x80\x2f\xdc\x2d\xf5\x7d\x5a\x9a\x05\x48\x60\xeb\xcc\x3f\x79\x62\x39\xee\x4c\x28\x6e\x2a\x5c\xff\x78\x1c\x70\x58\x59\x06\x40\xcc\xa8\x41\xc7\x57\x0f\xc0\xbf\x56\x1c\x37\x9c\x34\xa1\x83\xea\x67\x11\xaa\x4f\x44\x61\x1f\x15\xb9\x29\xf1\x84\x19\x9b\x18\x04\x55\xcf\x78\xcb\x8a\xae\x25\x8d\xc0\xcc\x31\x33\x69\xa4\x2a\xbe\xea\x8b\xf2\x67\x94\x0d\xea\x93\x6a\x23\x36\xa7\x76\x8b\x87\xc4\x0a\xa5\x8a\x06\x1d\xb0\x1b\x8a\xcc\x52\x3b\x97\x5e\x3a\xf8\xc3\xa1\xad\x11\x4d\xcd\x1b\x4f\xfb\x9b\xb9\xcb\x8f\x8a\xce\xc3\xac\x81\x67\xac\x15\x60\xa2\x88\xef\x2c\xe0\xf9\x55\xaf\x75\x0a\x93\x97\xa0\x1d\x70\x6a\x0e\xa7\x32\x70\x43\xd2\x85\xc1\xc5\x7c\x43\x5b\x6c\x3e\x09\x6e\x45\x3e\x1b\x1d\x52\xc7\xf2\x17\x72\x57\xf5\x5c\x20\x26\xf8\xad\x8c\x01\xa3\xaa\x62\xeb\x29\x04\x2f\xe4\x60\x16\x40\xb5\x90\x87\xe5\xe0\x21\x29\x0f\xaa\xc6\xd9\x10\x76\xa4\xae\x71\xa3\xa2\x84\x9f\x3c\xbd\x43\x8d\x98\xdd\x84\x29\x33\xf2\x0d\xb0\xc0\x58\x8a\x46\x05\xfc\x80\x28\x1d\x4e\x69\x66\x8a\xaa\x3d\x48\x3d\xea\x5a\x0e\x22\x70\x69\xcc\xa5\x86\xf5\x71\xa1\x4e\xa4\x98\xf8\xc8\x2e\x0c\x30\x4e\x00\x30\x83\xff\xfe\x57\x00\xeb\x83\x90\x63\xc8\xa0\x1c\x3e\xf1\xcf\x76\xa5\x1f\x84\x64\x40\x33\x53\x61\x5c\x59\xd3\xb6\xda\x7f\xed\x5b\x81\x4f\xc8\x98\x05\x75\xa2\xc3\x6b\x76\x4f\x18\x0a\x31\x88\x21\x74\x6b\xfd\x80\x5c\x57\xfc\x7e\x02\xf4\x57\xbf\x20\x5b\x8d\x56\x37\xec\x62\xce\x1d\x9d\x68\x48\x62\x56\x92\x54\xd1\x70\x11\x33\xd7\x73\xcd\xc8\xa6\x6d\x05\x66\x01\x9f\x8a\x08\x1c\x9d\x14\xad\xd7\x2c\x74\xa2\x17\x05\x13\xcf\x5d\x87\x73\x26\x1d\x36\x2d\x11\xc3\x48\x48\x83\x0b\xc5\x56\x2a\x5a\xaf\x43\x21\xe6\xa1\x14\xcb\x79\x28\xec\x72\x3e\x5a\xd1\x5f\x53\x26\x15\x07\xd4\xb9\xa0\x5d\x0d\xde\x32\xe6\xe4\xdf\xd1\xd3\xd4\xe4\x47\xd4\x85\x29\x36\x02\x79\x43\x92\xbd\x65\x4c\xa7\xd9\x47\x8d\x1a\xe4\xff\x53\x50\x20\xc3\xa9\x7b\x0c\xca\x70\x12\xef\x14\x76\x44\xf0\x61\x48\x7e\x1e\x92\xaf\x93\x87\xdd\x4d\x78\xcb\xc4\xf5\x58\xce\x4f\x61\x1d\x97\x6f\x48\x31\x82\x25\xac\xd5\x87\x09\x30\x2c\x7a\xd6\xc0\xbb\x34\xdd\x2a\xa4\x2b\x62\x42\x85\xee\x24\xa1\x96\xff\x24\x43\x45\xb7\x0c\xe9\x3c\x86\x66\xec\x6d\x20\xe6\x9b\x54\xe3\x6b\xdd\xd6\x47\xb0\x71\xde\x84\x5a\xdc\x21\x55\x6e\x64\x71\xf7\xc2\x27\xcd\xc2\xe8\xb7\x27\x5d\x87\x6b\x85\x13\x65\x39\x75\x23\x51\x90\x19\x8c\x83\x9f\x19\x2f\x4b\x78\x17\x23\x2b\x8f\xd5\x4d\x09\xd9\x90\xe2\x9f\x6d\x31\x9c\x5c\xcb\xc3\xc5\xe3\xb7\xe7\x25\x4c\xb5\x21\x83\x30\x5c\xf8\x1b\xbb\x67\xf2\x73\xec\xa0\x2e\xa6\xd0\xb5\x54\xc1\x70\x59\x66\xfa\xbb\xa2\xb0\x5f\x2a\xd4\xe4\x02\x7a\x8e\x55\x67\x80\xf1\xaa\x65\x18\x94\x0f\x4d\x60\x87\x19\x06\xc4\x81\x08\xa8\x5b\xcc\x25\xa1\xac\x70\x5b\x26\x60\xcd\x30\xda\x93\x66\xab\x8a\x3f\xda\xb6\x9d\x65\xf8\x1b\x11\x3b\xc8\x8d\x91\x6c\x10\xe5\x12\x9e\x4b\xfe\xf7\x5f\x7b\xcc\x8e\x70\xc0\x62\xd7\xd6\x96\xbc\x28\xbc\x73\x7f\xef\xf8\xef\x2d\x63\x8e\xff\x12\x83\xfd\x53\x8d\x4c\x79\xdf\x56\xda\x15\xfc\x1d\x7e\xf8\x61\xf4\x38\xdb\x4d\x7d\x17\xb6\x53\x23\xb5\x3f\x53\xe6\xc5\x29\xc8\x35\xcb\x9f\xda\xbe\x11\x50\x46\x1b\x17\xe3\x45\xc4\xe1\xd7\xb3\x55\xc3\x21\x36\xd8\xe1\xdf\x8d\x63\x05\x9a\xf8\x6a\xa5\xf7\x8b\xf9\x9e\x4a\x75\xe7\xf9\xf0\x14\xa3\x28\xad\xfa\xe6\x06\x5e\x5c\x50\x57\x9e\x48\x9e\xa7\x12\xaf\xd5\xce\xcd\x4d\x62\xf2\x75\x5a\xd4\x56\xd1\x63\x98\x96\xf6\x90\xd4\x72\xdc\x2f\x16\x8c\x1c\x22\x77\x1d\x19\xbf\xb8\xa0\x3d\xd5\xfe\x56\xfb\x08\xb4\x7d\x41\x0b\xdc\x9e\xe2\x94\x15\xfb\x45\x84\xda\xa1\x92\x17\x9e\x90\x44\xc7\x18\x47\x43\xa9\x7d\x12\x57\xef\x01\xf2\x0b\xae\xfc\x4f\x6b\x14\x7a\x7b\x9f\x45\x6f\x61\x8d\xec\x16\x14\x03\x6e\xf9\xd6\x92\x22\x5b\xbd\x49\x47\x7e\x4d\x69\x1f\xc4\x66\xa4\x1e\x3b\xe9\x3b\xc4\x77\xee\x9c\xfc\x3e\xe2\x3b\xa7\x5d\xa9\xd2\xab\xcc\x81\x3a\xcf\x9a\x6b\xce\x93\x7d\x60\xd5\xee\x50\x6e\x3e\x43\x95\x20\x0f\x38\x7a\x59\x5a\x5e\x25\x99\xba\x2d\x4f\xf7\x4a\x93\xac\xc7\xde\xe7\x85\xec\x6d\xe7\x33\xea\xf3\x26\x90\x84\x2d\x09\xf5\x37\x07\xf2\xc6\xa0\x63\x87\x51\xad\x52\x93\xac\xd1\x2a\xac\x7a\x19\xee\xdd\xa7\x8c\x4f\x5d\xdc\x7b\x29\xd3\x27\x59\xdf\x49\x03\x54\x12\x2e\xf4\x45\x9c\xb0\x16\x1f\x8c\x7e\x44\x1d\x94\xf0\xf8\x14\x35\x8a\x2c\x14\x71\xf3\x70\xf8\xd6\xab\x31\x84\xfb\xd4\x23\x07\xa6\x40\x62\xf0\x22\xf5\x4f\x60\xa5\x61\xc7\x1d\x25\x07\x22\xa0\x48\x84\xb3\x11\xab\x84\xb1\x35\xea\x87\x5e\xfa\xd0\x9c\x8e\xd0\x0a\x35\x96\xe0\x3d\x3c\xeb\x86\x9b\xe5\x73\x22\x20\xc7\x2f\x15\x77\xe7\x5f\x2a\x82\xf5\x83\xe2\x3f\xcb\x23\xc4\xcb\xc2\x69\xd3\x37\xb4\x1b\xf9\x90\x5e\xcb\xab\x01\xfd\xdb\xa7\x38\xf1\x8d\x48\xde\xb2\x54\x91\x32\x99\xb9\x12\x21\x28\x7a\x38\xd5\xd6\x21\x7d\xe8\x93\xd6\xe0\xa9\x66\x65\x12\xf1\xd8\x93\x58\x0e\x67\x14\xe0\xd2\x5c\xd4\x3d\x3d\xa5\x06\x57\x05\x23\xd3\x84\x1e\x4e\xa6\x00\x27\x8c\xa9\xfa\xa0\x84\x3c\x4f\x0a\x48\x60\x99\x7c\x73\x37\xb6\xee\x32\x38\x55\x63\xe4\xd1\xf1\xd3\x35\xca\x10\x5e\xd4\x97\xa8\xa0\xbe\x08\xc0\x0f\x47\x3f\x1f\x5e\x6e\xc7\x77\x5d\x19\x64\xd4\x84\xd1\x7c\x2a\xb5\x3f\xc7\x4e\xa5\xcb\x88\xd3\x14\x4e\x05\xaf\x4b\xf9\xfe\x6c\x9e\xc9\x2e\x3b\xe3\xb9\xf6\xf9\x09\x28\xfb\xdc\x01\x4c\x3f\x2d\x96\x6c\x68\x7c\x2d\xec\xa7\x13\x67\x4a\xe0\xd6\x00\xa6\x04\x03\x41\xd1\x16\xfd\xba\x40\x0a\xf9\xdd\xf7\x33\xc2\x7f\x3e\x74\xe2\xa8\x7f\xbe\x61\x9d\x70\x12\x85\xe9\x0b\x2e\xee\x23\xea\xa4\x80\x03\x8f\x05\x8c\x7d\x0b\x13\xb8\x17\xc3\x87\xe8\x97\x0e\x51\xa3\xe5\x0f\x01\x16\x8d\x0b\x35\xf4\x2a\xf4\xcf\x7e\xdc\x9f\x36\x59\xa8\x1a\x05\x16\xe9\xc1\xce\xac\x74\xe1\x27\xff\x71\x54\xa3\xf6\xc4\xb2\x01\xcf\x3f\x56\x06\x04\xe7\x53\xe0\xe2\x48\x65\xd8\xcb\x6d\xbc\x59\x4a\x0d\xca\x1d\x64\x6d\x62\x7c\x6f\x18\xd2\x9b\x5e\xad\x94\x96\x15\xbb\x59\x65\x86\xc6\xe7\x00\xc5\xd2\x74\xb8\x15\x89\x1a\xf0\x48\xd2\x8f\x1a\xe3\x83\x46\xa1\x09\x8c\x5e\x52\x04\x7b\x7c\x74\x1e\x3d\x86\x9f\x45\xa4\x28\x1f\x10\x75\x29\x87\x1f\x34\x04\xb4\x27\x9e\x36\xfc\x67\x0d\x6d\x25\xce\xa3\xc6\x08\xdc\xc7\x57\xbc\xe5\xdc\x51\xa0\x6b\x17\xff\x0f\x00\x00\xff\xff\x41\x85\xb0\xb6\xf0\x26\x00\x00") +var _templatesAlertgroupHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdd\x6f\x1b\x37\x12\x7f\xcf\x5f\x31\xdd\xab\xbb\x16\xac\x95\x92\xb7\x83\xa0\xd5\x9d\xdb\x2b\x82\xc3\x25\x38\xa0\xcd\x3d\x05\x81\x41\xed\x52\x12\x2d\x6a\x77\x43\x72\xdd\x0a\x86\xff\xf7\x03\x3f\x96\xcb\x2f\xc9\x72\xe3\x36\x0f\xb1\x44\x0e\x87\x9c\xe1\x7c\xfc\x66\xa8\x25\xaf\x18\xe9\x04\x88\x63\x87\xcb\x0c\x75\x1d\x25\x15\x12\xa4\x6d\xe6\xf7\xbc\x6d\x32\x20\x75\x99\x21\x8a\x99\x28\xb6\xac\xed\xbb\x42\x10\x41\x71\xb6\x7a\x03\xb0\xbc\x02\xb2\x81\xeb\xff\xae\xef\x71\x25\x66\x7b\x7c\xe4\xd7\x8a\x64\x46\xd1\x1a\x53\x3e\x99\x51\xdc\x6c\xc5\x0e\x56\xf0\x76\x02\x8f\x70\x25\xd7\xa8\x55\x0f\x88\xc1\x86\x50\x81\x19\x87\x12\x3e\x7f\x71\xa6\xee\x66\x18\x55\x3b\x8f\xcf\x14\x36\x7d\x53\xc9\x13\x5d\xab\x81\xbb\x07\x44\xa7\xa0\x3f\xee\xf1\x51\xb2\x36\xcc\x66\x5d\xcf\x77\xd7\x76\x06\x6e\x20\x2f\x73\xb8\x01\xbb\x6c\x02\x4f\x93\xe0\x1c\x6a\xa7\x0f\xa4\xd9\x43\x09\xf9\x3f\xbe\x2a\xfa\x81\xdd\x7d\x4b\x9a\xeb\x7c\x9a\x8f\x6b\x78\x87\x1a\xa8\x28\xe2\xbc\xcc\xba\x9e\xd2\x82\xe2\x8d\x00\x57\x3d\x94\x34\xfb\x4c\x53\x03\x2c\x11\xec\x18\xde\x94\xd9\xf2\xaa\x74\x76\xba\x5a\x65\xa0\xd4\x58\x66\xea\xbb\x68\x41\xec\x08\xd7\x7c\x34\x5d\x36\x85\x1a\x09\x54\x88\x76\xbb\x95\x74\xa2\x6d\xa9\x20\x5d\xa6\x47\x3b\x8a\x2a\x7c\xc0\x8d\x90\x13\x9d\xdd\x0e\x60\x49\x86\xd3\x6d\x10\x6c\x90\x3e\xcd\xdc\x1e\x67\x8e\x8c\x1c\x73\x29\x48\x42\xa6\x35\xaa\xb7\x18\x94\x64\x8c\x6c\x77\x62\x94\xe4\xaa\xd0\x07\x9b\xa9\x43\xf2\xe1\x6e\xaf\x12\x0c\x6b\xf2\x60\x75\x84\x1a\x4c\x1d\x93\x31\x8a\xff\x03\x66\xe3\xdb\xc7\xad\x3e\xc4\xaf\x2d\x13\x1f\x51\xf7\xe3\xf1\x3f\xf8\xe8\x33\x09\x8d\x26\xe0\x64\xaf\x1f\x09\xa1\x8c\xd0\x30\x7c\x8f\xc5\x07\x49\x7e\x2b\x87\xf5\x4a\x79\x42\x63\x6e\xb3\x07\x44\x7b\x3c\x09\x19\x95\xf0\x09\x1f\x3a\x8a\x04\xe6\xb3\x5f\x70\x53\x63\x76\x9d\xaf\x7b\x21\xda\x46\xf1\xca\xa7\xf0\x88\x29\x3e\x2c\x20\xaf\xc9\x43\x3e\x05\xf9\xe5\x27\xa9\x9f\x05\xe4\x8a\xaf\xe6\x5e\x50\xc2\x45\x3e\xd5\x47\x5a\xe8\x3f\x66\xe3\x85\xfe\xf3\x34\x09\xb4\xe1\x0e\xc8\xaf\x80\x29\xc7\x81\xce\x9c\xdb\x18\xb7\xd1\xfc\xb2\xd5\x72\x5e\x93\x07\x8f\x83\xbd\x50\x33\x31\x0c\x2e\xe7\x3a\x4e\xac\xde\xbc\x79\x69\xc4\x40\x4d\xd3\x0a\x45\xc0\x87\xb8\x71\xe6\x1a\xd5\xca\x99\xb3\xc6\xbd\xcb\x71\xd8\x8d\x28\x8e\x88\xbf\x61\x4a\x41\xfe\x57\xf0\x03\x8c\xd4\x85\x1c\x1a\x2d\x30\xf0\x92\xaf\x3d\xe6\x8a\xaa\x22\xac\xa2\x18\x04\xfe\x5d\x14\x87\x5e\xe0\xda\xfa\xa9\xbc\xe5\x91\x9d\xb4\x09\xe5\xc5\x97\xfb\xe8\x3c\x30\x7f\x87\x99\xb1\xaa\xc0\xd4\x0b\x08\x49\x9e\xbf\x6b\xd7\x95\x1d\x21\x5c\x73\xfd\x0c\x07\xc2\x39\x69\xb6\x0e\x7b\xd0\xec\xbf\x8c\x8c\x1c\x77\x3e\x63\x17\x93\x6f\x34\x0c\xed\xab\x17\xdb\xc4\xf3\xae\x6d\x74\xeb\x46\x82\xcf\xd6\x89\xbf\x40\x59\x42\xdf\xd4\x78\x43\x1a\x5c\x7b\xfa\x7e\x95\x60\xf0\x92\x40\x20\xd5\x7b\xa1\xab\x8f\xda\x7f\x0d\x95\xcb\xfd\x71\x23\xac\xd2\xa5\xd8\x15\xe5\x77\xa4\xa9\xe5\xc2\x96\xc9\x34\x48\x9a\x8a\xd4\xb8\x11\x85\x1d\x2d\x6a\xd4\x6c\x31\xcb\xed\x41\x94\x09\xab\x5b\xe1\x02\x09\x0c\x65\x59\x42\xc6\xfb\xae\x63\x98\x73\x5c\x67\x52\xbd\x97\xf0\xe5\x7d\x55\x61\xce\x73\x2b\xa3\x8d\x47\xde\x26\x5b\xdc\x60\x26\x17\xfc\xef\x97\x0f\xfe\xcd\x21\x2f\xb8\x41\x18\xe2\x8a\x1a\x6f\x50\x4f\x45\x36\xba\xc0\x98\x91\x63\xde\xd2\xa9\x47\x4a\x81\xd8\x16\x8b\x32\xbb\x5b\x53\xd4\xec\xdd\x09\x1d\x14\xde\xb7\x3a\x75\x63\x93\xb9\x79\xdb\xb3\x0a\x3b\x74\xc9\xf0\x10\x4c\x5f\x9c\xcb\xf1\xef\x02\xb3\x06\xd1\x20\xa9\x83\xd9\x36\xca\xf1\xae\xd7\x5a\xef\x32\x9e\x44\x9a\xbd\x8b\xab\x7a\x46\xa7\x2a\xea\xbd\x9e\x6e\x7b\x46\x5f\xa6\xcc\xe4\xa2\xbf\x46\x81\x32\xd8\x4a\xe9\x1d\xd1\x5d\x2d\x86\x90\xf1\x6c\x98\xc8\xfe\xa9\x1c\x22\x9b\x82\xe3\x1e\x0e\x87\xd7\x89\x11\x8f\x7b\x7c\x5c\x40\xae\xf7\xca\xa7\x3a\x80\x2f\xdc\x2d\xf5\x7d\x5a\x9a\x05\x48\x60\xeb\xcc\x3f\x79\x62\x39\xee\x4c\x28\x6e\x2a\x5c\xff\x78\x1c\x70\x58\x59\x06\x40\xcc\xa8\x41\xc7\x57\x0f\xc0\xbf\x56\x1c\x37\x9c\x34\xa1\x83\xea\x67\x11\xaa\x4f\x44\x61\x1f\x15\xb9\x29\xf1\x84\x19\x9b\x18\x04\x55\xcf\x78\xcb\x8a\xae\x25\x8d\xc0\xcc\x31\x33\x69\xa4\x2a\xbe\xea\x8b\xf2\x67\x94\x0d\xea\x93\x6a\x23\x36\xa7\x76\x8b\x87\xc4\x0a\xa5\x8a\x06\x1d\xb0\x1b\x8a\xcc\x52\x3b\x97\x5e\x3a\xf8\xc3\xa1\xad\x11\x4d\xcd\x1b\x4f\xfb\x9b\xb9\xcb\x8f\x8a\xce\xc3\xac\x81\x67\xac\x15\x60\xa2\x88\xef\x2c\xe0\xf9\x55\xaf\x75\x0a\x93\x97\xa0\x1d\x70\x6a\x0e\xa7\x32\x70\x43\xd2\x85\xc1\xc5\x7c\x43\x5b\x6c\x3e\x09\x6e\x45\x3e\x1b\x1d\x52\xc7\xf2\x17\x72\x57\xf5\x5c\x20\x26\xf8\xad\x8c\x01\xa3\xaa\x62\xeb\x29\x04\x2f\xe4\x60\x16\x40\xb5\x90\x87\xe5\xe0\x21\x29\x0f\xaa\xc6\xd9\x10\x76\xa4\xae\x71\xa3\xa2\x84\x9f\x3c\xbd\x43\x8d\x98\xdd\x84\x29\x33\xf2\x0d\xb0\xc0\x58\x8a\x46\x05\xfc\x80\x28\x1d\x4e\x69\x66\x8a\xaa\x3d\x48\x3d\xea\x5a\x0e\x22\x70\x69\xcc\xa5\x86\xf5\x71\xa1\x4e\xa4\x98\xf8\xc8\x2e\x0c\x30\x4e\x00\x30\x83\xff\xfe\x57\x00\xeb\x83\x90\x63\xc8\xa0\x1c\x3e\xf1\xcf\x76\xa5\x1f\x84\x64\x40\x33\x53\x61\x5c\x59\xd3\xb6\xda\x7f\xed\x5b\x81\x4f\xc8\x98\x05\x75\xa2\xc3\x6b\x76\x4f\x18\x0a\x31\x88\x21\x74\x6b\xfd\x80\x5c\x57\xfc\x7e\x02\xf4\x57\xbf\x20\x5b\x8d\x56\x37\xec\x62\xce\x1d\x9d\x68\x48\x62\x56\x92\x54\xd1\x70\x11\x33\xd7\x73\xcd\xc8\xa6\x6d\x05\x66\x01\x9f\x8a\x08\x1c\x9d\x14\xad\xd7\x2c\x74\xa2\x17\x05\x13\xcf\x5d\x87\x73\x26\x1d\x36\x2d\x11\xc3\x48\x48\x83\x0b\xc5\x56\x2a\x5a\xaf\x43\x21\xe6\xa1\x14\xcb\x79\x28\xec\x72\x3e\x5a\xd1\x5f\x53\x26\x15\x07\xd4\xb9\xa0\x5d\x0d\xde\x32\xe6\xe4\xdf\xd1\xd3\xd4\xe4\x47\xd4\x85\x29\x36\x02\x79\x43\x92\xbd\x65\x4c\xa7\xd9\x47\x8d\x1a\xe4\xff\x53\x50\x20\xc3\xa9\x7b\x0c\xca\x70\x12\xef\x14\x76\x44\xf0\x61\x48\x7e\x1e\x92\xaf\x93\x87\xdd\x4d\x78\xcb\xc4\xf5\x58\xce\x4f\x61\x1d\x97\x6f\x48\x31\x82\x25\xac\xd5\x87\x09\x30\x2c\x7a\xd6\xc0\xbb\x34\xdd\x2a\xa4\x2b\x62\x42\x85\xee\x24\xa1\x96\xff\x24\x43\x45\xb7\x0c\xe9\x3c\x86\x66\xec\x6d\x20\xe6\x9b\x54\xe3\x6b\xdd\xd6\x47\xb0\x71\xde\x84\x5a\xdc\x21\x55\x6e\x64\x71\xf7\xc2\x27\xcd\xc2\xe8\xb7\x27\x5d\x87\x6b\x85\x13\x65\x39\x75\x23\x51\x90\x19\x8c\x83\x9f\x19\x2f\x4b\x78\x17\x23\x2b\x8f\xd5\x4d\x09\xd9\x90\xe2\x9f\x6d\x31\x9c\x5c\xcb\xc3\xc5\xe3\xb7\xe7\x25\x4c\xb5\x21\x83\x30\x5c\xf8\x1b\xbb\x67\xf2\x73\xec\xa0\x2e\xa6\xd0\xb5\x54\xc1\x70\x59\x66\xfa\xbb\xa2\xb0\x5f\x2a\xd4\xe4\x02\x7a\x8e\x55\x67\x80\xf1\xaa\x65\x18\x94\x0f\x4d\x60\x87\x19\x06\xc4\x81\x08\xa8\x5b\xcc\x25\xa1\xac\x70\x5b\x26\x60\xcd\x30\xda\x93\x66\xab\x8a\x3f\xda\xb6\x9d\x65\xf8\x1b\x11\x3b\xc8\x8d\x91\x6c\x10\xe5\x12\x9e\x4b\xfe\xf7\x5f\x7b\xcc\x8e\x70\xc0\x62\xd7\xd6\x96\xbc\x28\xbc\x73\x7f\xef\xf8\xef\x2d\x63\x8e\xff\x12\x83\xfd\x53\x8d\x4c\x79\xdf\x56\xda\x15\xfc\x1d\x7e\xf8\x61\xf4\x38\xdb\x4d\x7d\x17\xb6\x53\x23\xb5\x3f\x53\xe6\xc5\x29\xc8\x35\xcb\x9f\xda\xbe\x11\x50\x46\x1b\x17\xe3\x45\xc4\xe1\xd7\xb3\x55\xc3\x21\x36\xd8\xe1\xdf\x8d\x63\x05\x9a\xf8\x6a\xa5\xf7\x8b\xf9\x9e\x4a\x75\xe7\xf9\xf0\x14\xa3\x28\xad\xfa\xe6\x06\x5e\x5c\x50\x57\x9e\x48\x9e\xa7\x12\xaf\xd5\xce\xcd\x4d\x62\xf2\x75\x5a\xd4\x56\xd1\x63\x98\x96\xf6\x90\xd4\x72\xdc\x2f\x16\x8c\x1c\x22\x77\x1d\x19\xbf\xb8\xa0\x3d\xd5\xfe\x56\xfb\x08\xb4\x7d\x41\x0b\xdc\x9e\xe2\x94\x15\xfb\x45\x84\xda\xa1\x92\x17\x9e\x90\x44\xc7\x18\x47\x43\xa9\x7d\x12\x57\xef\x01\xf2\x0b\xae\xfc\x4f\x6b\x14\x7a\x7b\x9f\x45\x6f\x61\x8d\xec\x16\x14\x03\x6e\xf9\xd6\x92\x22\x5b\xbd\x49\x47\x7e\x4d\x69\x1f\xc4\x66\xa4\x1e\x3b\xe9\x3b\xc4\x77\xee\x9c\xfc\x3e\xe2\x3b\xa7\x5d\xa9\xd2\xab\xcc\x81\x3a\xcf\x9a\x6b\xce\x93\x7d\x60\xd5\xee\x50\x6e\x3e\x43\x95\x20\x0f\x38\x7a\x59\x5a\x5e\x25\x99\xba\x2d\x4f\xf7\x4a\x93\xac\xc7\xde\xe7\x85\xec\x6d\xe7\x33\xea\xf3\x26\x90\x84\x2d\x09\xf5\x37\x07\xf2\xc6\xa0\x63\x87\x51\xad\x52\x93\xac\xd1\x2a\xac\x7a\x19\xee\xdd\xa7\x8c\x4f\x5d\xdc\x7b\x29\xd3\x27\x59\xdf\x49\x03\x54\x12\x2e\xf4\x45\x9c\xb0\x16\x1f\x8c\x7e\x44\x1d\x94\xf0\xf8\x14\x35\x8a\x2c\x14\x71\xf3\x70\xf8\xd6\xab\x31\x84\xfb\xd4\x23\x07\xa6\x40\x62\xf0\x22\xf5\x4f\x60\xa5\x61\xc7\x07\x72\x20\x02\x8a\x44\x34\x1b\xa1\x4a\x18\x5a\xa3\x76\xe8\xa5\xef\xcc\xe9\x00\xad\x40\x63\x09\xde\xbb\xb3\xee\xb7\x59\x3e\x27\xe2\x71\xfc\x50\x71\x77\xfe\xa1\x22\x58\x3f\xe8\xfd\xb3\x3c\x42\xbc\x2c\x9c\x36\x6d\x43\xbb\x91\x8f\xe8\xb5\xbc\x1a\xcf\xbf\x7d\x8a\xf3\xde\x08\xe4\x2d\x4b\x15\x28\x93\x89\x2b\x11\x81\xa2\x77\x53\x6d\x1c\xd2\x85\x3e\x69\x0d\x9e\xea\x55\x26\x01\x8f\x3d\x89\xe5\x70\x46\x01\x2e\xcd\x45\xcd\xd3\x53\x6a\x70\x55\x30\x32\x4d\xe8\xe1\x64\x06\x70\xa2\x98\x2a\x0f\x4a\xc8\xf3\xa4\x80\x04\x96\xc9\x27\x77\x63\xeb\x2e\x83\x53\x25\x46\x1e\x1d\x3f\x5d\xa2\x0c\xd1\x45\x7d\x89\xea\xe9\x8b\xf0\xfb\x70\xf4\xf3\xd1\xe5\x76\x7c\xd6\x95\x31\x46\x4d\x18\xcd\xa7\x32\xfb\x73\xec\x54\xb6\x8c\x38\x4d\xe1\x54\xec\xba\x94\xef\xcf\xe6\x95\xec\xb2\x33\x9e\xeb\x9e\x9f\x40\xb2\xcf\x1d\xc0\xb4\xd3\x62\xc9\x86\xbe\xd7\xc2\x7e\x3a\x71\xa6\x04\x6c\x0d\x50\x4a\x30\x10\xd4\x6c\xd1\x8f\x0b\xa4\x90\xdf\x7d\x3f\x23\xfc\xe7\x43\x27\x8e\xfa\xd7\x1b\xd6\x09\x27\x51\x94\xbe\xe0\xe2\x3e\xa2\x4e\x0a\x38\xf0\x58\xc0\xd8\xb6\x30\x81\x7b\x31\x7c\x88\x7e\xe8\x10\xf5\x59\xfe\x10\x5e\xd1\xb0\x50\x23\xaf\x42\xff\xea\xc7\xfd\x65\x93\x45\xaa\x51\x60\x91\x1e\xec\xcc\x4a\x17\x7e\xf2\xdf\x46\x35\x68\x4f\x2c\x1b\xe0\xfc\x63\x65\x30\x70\x3e\x05\x2e\x8e\x54\x86\xbd\xdc\xc6\x9b\xa5\xd4\xa0\xdc\x41\x96\x26\xc6\xf7\x86\x21\xbd\xe9\xd5\x4a\x69\x59\xb1\x9b\x55\x66\x68\x7c\x0d\x50\x2c\x4d\x83\x5b\x91\xa8\x01\x8f\x24\xfd\xa6\x31\xbe\x67\x14\x9a\xc0\xe8\x25\x45\xb0\xc7\x47\xe7\xcd\x63\xf8\x55\x44\x8a\xf2\x01\x51\x97\x72\xf8\x3d\x43\x40\x7b\xe2\x65\xc3\x7f\xd5\xd0\x56\xe2\xbc\x69\x8c\xb8\x7d\x7c\xc4\x5b\xce\x1d\x05\xba\x76\xf1\xff\x00\x00\x00\xff\xff\x63\x39\xae\xa0\xef\x26\x00\x00") func templatesAlertgroupHtmlBytes() ([]byte, error) { return bindataRead( @@ -158,7 +158,7 @@ func templatesAlertgroupHtml() (*asset, error) { return a, nil } -var _templatesErrorsHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x54\xcd\x8a\xdb\x4c\x10\xbc\xfb\x29\x7a\x05\x5e\xdb\xf0\x49\xde\xbd\xcb\x86\x8f\x9c\x02\x61\x4f\xb9\x85\xb0\xb4\x67\x5a\xf2\x2c\xa3\x19\x31\xdd\xb2\x1d\xc2\xbe\x7b\xd0\x8f\x6d\xf9\x47\x6c\xf0\x1a\x72\xf3\xb8\x47\x55\xd5\x5d\x35\x9d\xb2\x0a\xa6\x14\x90\x5f\x25\x2d\x22\x2c\x4b\x6b\x14\x8a\xf1\x6e\xfe\xc6\xde\x45\x60\xf4\x22\x0a\x64\x3d\xea\xd8\x11\x69\xd2\xd1\x72\x04\x90\x6a\xb3\x01\x65\x91\x79\x11\xbd\x55\xc5\xca\x4b\xf0\xae\xa9\x00\xa4\xeb\xe7\x7d\x49\x68\x27\xb1\x22\x27\x14\xba\x22\xc0\x0b\x6d\x61\x43\x81\x8d\x77\xa0\x49\x48\x09\xe9\xff\xa0\xa5\x30\x2e\x87\x24\x49\xba\x9b\xa9\xd9\xe3\x64\x08\x19\xc6\x81\xb2\x40\xbc\xae\x7f\x72\x69\x5c\x34\xef\xf8\xe6\xeb\xe7\x46\xd3\x5c\x9b\xcd\x72\x94\xce\xdb\x8e\x96\xa3\xd1\xe8\x6f\x9a\xab\x4a\x8d\x42\x31\x85\xe0\xc3\x67\x7b\x4b\xc7\x31\x34\x40\x30\x3e\xfe\x05\x26\x83\x69\x41\xcc\x98\xd3\x0c\x7e\x1f\x4b\xa7\x54\xd7\xf0\x9a\x3b\x65\xff\xd4\x72\x74\x68\x7d\xa8\xba\xff\xde\xcd\x6e\x18\x07\x0d\xef\x17\x8a\x2c\xb2\xbc\x0a\xc3\x12\x9e\xee\xa0\xea\x1b\xb2\x00\x57\x4a\x11\x73\x56\x59\x68\xa7\x0a\x5b\x64\x48\xc7\x0b\x28\x7c\x41\x4e\x92\xca\x99\xdd\x9e\x78\x96\x64\xc1\x17\x2f\x7e\x3b\x9d\xdd\xd2\xc7\x27\x5d\xcf\x50\xd0\xde\xc7\xf4\x2f\xc1\x88\x51\x68\x5b\xe7\x07\xb2\x4b\x3b\x65\xb1\x68\x54\xc4\xca\x04\x65\x09\x1a\x2c\x8d\x2e\xa7\x70\x1e\xe5\x8f\x3d\xe8\xcf\xff\xff\x4a\x3c\xec\x1f\x87\x61\x20\x87\x2b\x4b\x1a\x56\x95\x40\x3d\xec\x5b\xcd\xe8\x19\xd1\xa7\xfb\xbe\x36\x0c\x65\x1d\xbf\xad\xb1\x16\xb0\x65\xaf\x9f\x2f\x18\x77\x34\x8e\x4b\x74\xf5\xa8\x27\xdd\xf6\x50\xbe\xaa\x3b\x98\x9c\x58\x3d\x8e\x81\x49\x79\xa7\xf9\xd5\x52\x26\x30\x5e\xee\xcf\xbd\x04\xd4\x48\x17\x9a\x0e\xc1\xb8\x31\x00\xa6\x16\xe3\xee\x95\x81\xaf\x1d\xda\x3f\xcb\x40\xf7\xa8\x1d\x16\xe7\x3b\xa6\x9d\x72\x5d\x38\x79\xe3\x27\x2b\xe1\x83\x35\x35\xb8\x74\x06\x50\x1e\x1a\xb6\xc7\x47\x78\x18\xc6\x83\x0d\x06\x28\x38\x87\x05\x04\xdc\x26\x5c\x5a\x23\xd3\xc9\x74\x72\xbe\x0c\x3a\x5d\x9c\x27\x96\x5c\x2e\xeb\x2b\xfb\xea\x20\x90\xf3\x1f\x4f\x3f\x2f\xbe\x3f\x57\xf8\x7e\x25\xe1\xc3\x69\xfa\x13\x00\x00\xff\xff\x9b\xc1\xba\xd2\x20\x07\x00\x00") +var _templatesErrorsHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x54\xcd\x6e\xe2\x4c\x10\xbc\xf3\x14\x1d\x4b\x04\x90\x3e\x9b\xe4\x6e\x90\x3e\xed\x69\xa5\x28\xa7\xdc\x56\x7b\x68\x66\xda\xa6\xa3\xf1\x8c\x35\x3d\x06\x56\xab\xbc\xfb\xca\x3f\x80\xf9\xb1\xb2\x22\x48\x7b\x63\xe8\x71\x55\x75\x57\x4d\xa7\xa2\x3c\x97\x01\xc2\xaf\x92\x16\x11\x96\xa5\x61\x85\x81\x9d\x9d\xbf\x8b\xb3\x11\xb0\x5e\x44\x9e\x8c\x43\x1d\x5b\x22\x4d\x3a\x5a\x8e\x00\x52\xcd\x1b\x50\x06\x45\x16\xd1\x7b\x55\xac\x5c\xf0\xce\x36\x15\x80\x74\xfd\xbc\x2f\x05\xda\x85\x58\x91\x0d\xe4\xbb\x22\xc0\x2b\x6d\x61\x43\x5e\xd8\x59\xd0\x14\x48\x05\xd2\xff\x41\x4b\xc1\x36\x87\x24\x49\xba\x9b\x29\xef\x71\x32\x84\x0c\x63\x4f\x99\x27\x59\xd7\x3f\xa5\x64\x1b\xcd\x3b\xbe\xf9\xfa\xb9\xd1\x34\xd7\xbc\x59\x8e\xd2\x79\xdb\xd1\x72\x34\x1a\xfd\x4d\x73\x55\xa9\x31\x50\x4c\xde\x3b\xff\xd5\xde\xd2\x71\x0c\x0d\x10\x8c\x8f\x7f\x01\x67\x30\x2d\x48\x04\x73\x9a\xc1\xef\x63\xe9\x94\xea\x1a\x5e\x73\xa7\xec\x9f\x5a\x8e\x0e\xad\x0f\x55\xf7\xdf\xbb\xd9\x0d\xe3\xa0\xe1\xe3\x42\x91\x41\x09\x6f\x02\x4b\x78\xba\x83\xa8\x17\x94\x00\x52\x29\x45\x22\x59\x65\xa0\x1d\x2a\x6c\x51\x20\x1d\x2f\xa0\x70\x05\xd9\x90\x54\x96\x77\x1d\xef\x2c\xc9\xbc\x2b\x5e\xdd\x76\x3a\xbb\xa5\x8b\x2f\x7a\x9e\x61\x40\x73\x1f\xcb\xbf\x79\x0e\xac\xd0\xb4\xbe\x0f\x24\x97\x76\xca\x60\xd1\xa8\x88\x15\x7b\x65\x08\x1a\x2c\x8d\x36\x27\x7f\x1e\xe4\xcf\x2d\xe8\x8f\xff\xff\x2a\x38\xd8\x3f\x0d\x16\x20\x8b\x2b\x43\x1a\x56\x55\x80\x7a\xd6\x37\x7a\xd1\xf3\xa1\xcf\xf6\xb6\x66\x81\xb2\xce\xde\x96\x8d\x01\x6c\xc9\xeb\xb7\x0b\x6c\x8f\xbe\x49\x89\xb6\x9e\xf4\xa4\x5b\x1d\xca\x55\x75\x03\x93\x13\xa7\xc7\x31\x08\x29\x67\xb5\xbc\x50\x16\x60\xbc\xdc\x1f\x7b\xfe\xd7\x40\x17\x92\x0e\xb1\xb8\xd1\x7e\xae\xb5\xd8\x7b\x25\xe0\x7b\x87\xf6\xcf\x12\xd0\x3d\x68\x8b\xc5\xf9\x7e\x69\x87\x5c\x17\x4e\x1e\xf8\xc9\x3a\xf8\x64\x45\x0d\x2e\x9c\x01\x94\x87\x86\xed\xf1\x11\x1e\x86\xf1\x60\x83\x1e\x0a\xc9\x61\x01\x1e\xb7\x89\x94\x86\xc3\x74\x32\x9d\x9c\xaf\x82\x4e\x97\xe4\x89\x21\x9b\x87\xf5\x95\x65\x75\x10\x28\xf9\x8f\xa7\x9f\x17\xdf\x9f\x2b\xfc\xb8\x12\xf0\xe1\x34\xfd\x09\x00\x00\xff\xff\x0a\x81\x6f\x71\x1c\x07\x00\x00") func templatesErrorsHtmlBytes() ([]byte, error) { return bindataRead( @@ -298,7 +298,7 @@ func templatesSummaryHtml() (*asset, error) { return a, nil } -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") +var _staticAlertsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x6d\x6f\xdc\xb8\xf1\x7f\x9f\x4f\x31\xa7\xbf\x01\x6b\x13\x59\x72\x10\xfc\xd3\x62\xdd\x3d\xc0\xcd\xa1\x81\x71\xb9\x06\xb0\xe3\xbe\x71\x83\x82\x16\x67\x57\x8c\xb9\xa4\x40\x8e\xbc\xde\x1e\xf6\xbb\x17\x7c\xd0\xea\x71\xef\x72\x7d\xd1\x7d\x61\x4b\xe2\x3c\xfc\x66\x38\x9c\x07\x16\xaf\x61\x23\xf5\x23\x93\x16\x3e\xdd\xde\xff\xc2\x6a\x78\x5d\x80\xfb\x15\x05\x48\xd3\xe4\xdf\xec\xab\x1e\xc9\x56\x6f\x51\x51\x8f\x24\x7c\x70\x54\x7d\xb2\xeb\x86\x74\xa9\xb7\xb5\x44\xc2\x0c\x3e\x68\xa9\x8d\x75\xff\xd5\x5a\x6c\xdc\xff\x46\x11\x9a\x0c\x3e\x1a\xc1\x33\xf8\x82\xdb\x5a\x32\x42\x9b\xc1\x5d\xb3\xdd\x32\xb3\xcf\xe0\xfe\x26\x83\x7b\x65\x11\xe1\x75\xe1\x25\xe3\x4b\xad\x0d\x21\x87\x6b\x89\x86\xac\xfb\xfc\xcc\x4c\xfb\xb6\x82\x74\xdd\xa8\x92\x84\x56\xe9\x02\x7e\x7d\xf5\xca\xa1\x73\xeb\x56\x48\x54\x25\x3a\x8a\x5f\x0f\x99\xff\xec\x7e\x92\x3d\xa2\xfc\xc0\xca\x0a\x61\x05\x0a\x77\xd1\xf4\xf4\xed\xe5\xe5\xe5\xe2\x2a\xb0\xb7\x02\x83\x8e\x8f\x46\x37\x75\xba\x71\x7f\x7f\x62\xc4\x9c\x92\x56\xd8\x59\x8e\x2f\x84\x8a\xa7\x54\x09\x9b\x41\x47\x73\xe5\x49\x0e\x41\x5c\x27\x25\xaf\x8d\x26\x4d\xfb\x1a\xf3\x5b\x54\x1c\x0d\xac\x60\x80\xbe\x15\x6c\x90\x1a\xa3\x3a\xff\x44\xf2\x34\x61\x47\x59\x49\xd6\xa3\x77\x3f\xaf\x7d\x09\x1e\xca\x60\xa1\xf5\xc4\xf2\xf8\x34\x5c\xf7\x32\x3f\x89\xad\xa0\x25\xfc\xff\x71\xe5\xd0\x1a\x11\x9d\x52\x14\x50\x32\x29\x91\x03\x5b\x13\x9a\xa0\x0e\x76\xcc\x82\xf1\xd8\x90\xc3\x5a\x1b\xa0\x0a\x61\x2d\x8c\x25\x20\xb1\xc5\xd3\xf6\x5f\x73\x8e\xfc\x94\xf9\xf7\x37\xf9\x1d\x52\x53\x77\x9c\xf7\x37\xe9\x59\x9a\xfc\x5f\x02\x6f\xbc\x81\xb9\xe0\x8b\x11\xbe\x59\x2d\xf7\x35\x67\x84\xa7\xd4\x14\x05\x54\x82\x23\xd4\xba\xd6\xcf\x68\x2c\x08\xe5\xa5\x07\xdb\xba\x5d\x1e\x2a\x86\x37\x90\xc0\x03\x67\xc4\x2e\x7c\x30\x5d\x38\x4d\xab\xf3\xb5\x90\x84\xe6\xfc\x6b\xb2\xc8\xa3\xbc\x34\x71\xd2\x93\x36\xaa\xa2\x46\x83\x5b\xfd\x8c\xc0\xa4\x04\x94\xe8\x8e\x90\x85\xda\x08\xe7\x3a\x0d\xa5\x56\xe4\x4e\x59\x13\x70\x93\x86\xba\x31\x9b\x48\xfd\xec\x56\xa4\xb0\x84\xca\x81\x65\x8a\x43\xa5\xf5\x93\xed\x87\x23\x2b\xab\x89\xa3\xf2\xb5\x50\x3c\x4d\xf2\x9a\x29\x94\x17\x8f\x9a\xef\x33\x88\x2f\x15\x32\x2e\xd4\x26\x59\x64\x9d\x87\x44\xe6\x81\x2d\x46\xe1\x75\x96\xfa\xaf\x79\xc0\x9f\x46\xef\xb7\x91\x72\xca\x59\x8b\xbc\xa2\xad\x4c\xcf\xfc\x09\x69\xa3\x78\x11\xbf\x2e\x7a\x42\x26\x7c\xce\xc1\x69\x52\x31\x5b\x25\x59\xf8\xea\x9e\x47\xce\xac\x1b\x69\xd1\xc7\xdc\x23\xe3\x1b\xef\x30\x5b\xe9\x1d\x50\xc5\x28\x46\x68\xeb\x52\x17\xa9\x65\xc5\xd4\x06\x79\x06\x06\x6b\x64\x04\x82\x80\x76\xa2\xc4\xdf\xdc\xea\x1f\xa3\xb3\x8e\x0f\xad\xd7\xdc\x07\xaf\x76\x29\xd4\xc5\xb3\xc0\x9d\xcb\x53\x89\x77\xb7\xb0\x55\xba\xc8\xd7\x8c\xe3\xe7\x86\xd2\x77\x97\x97\xe1\xe5\x46\x75\xcf\x73\x0b\x5d\x44\x1f\xd3\x18\x47\x4b\x46\xef\x7d\x60\xf7\xe3\xd8\x1b\x77\xf3\xd3\x20\x1b\x45\xf0\x71\xe9\xbf\x88\xd3\xdf\x97\x44\x7a\xb3\x91\xb8\x3a\x27\xad\x25\x89\xda\x8b\x89\xcf\x33\x62\x86\xf1\xd8\x42\xfe\x5f\xc4\x63\xfb\xec\xea\x4c\x7e\x1b\x48\xc6\x38\x46\x09\xc4\x17\x0d\x6d\xe8\x17\x56\xff\x75\xff\x33\xee\xfb\xde\xde\xb2\xfa\x8b\xbe\xd3\x86\xfa\x28\x1c\xc3\x13\xee\x5d\x85\xf9\xfc\xf8\x0d\x4b\xca\xdd\x5b\x8f\xb6\x83\xe1\x16\x72\x27\xbc\x8f\xb3\x55\xe8\xf3\xe0\xc3\xd7\x89\xdf\x1c\xd3\xd0\x0f\x4f\xb8\x1f\xbb\x21\x08\xc8\xeb\xc6\x56\xe9\x70\x25\xea\x5d\xba\x3f\xd9\x64\xe5\x99\xc9\x06\x97\x70\x04\xfb\xf0\x84\xfb\xaf\x53\x32\xc2\x17\xf2\x12\x5c\x0c\x2c\xc1\xb9\x6f\xc8\x32\xe0\x38\x9c\xd8\x85\x58\xce\x02\xd6\xa9\xd7\x7d\x78\x5e\x13\x19\xdb\xf7\xb9\x83\x1d\x60\x8e\x9d\xee\xe9\x61\x35\x84\xe5\x29\x7b\xd9\xc1\x11\xb2\x28\xb3\x2b\xfa\xf9\x06\x29\xf5\xaf\x3d\x78\x62\x0d\x69\x20\xfd\x61\xb5\x82\x46\x71\x5c\x0b\x85\x7c\xd1\xe2\xf6\x6b\x3d\xd1\xad\xd8\xa1\xbf\x83\xab\xbc\xec\xa1\x1f\x4b\xc9\xac\x5d\x42\x12\x60\x87\xb3\xe8\xd2\xb8\x87\x1d\x3a\xa4\xfc\x23\xd2\x07\x47\xd6\xb7\x7a\x54\xc5\x69\x2f\x71\xd9\xa3\xef\x93\x76\x5e\xbf\x9a\xe9\x74\x72\xdb\x1a\x9d\x05\xec\xd3\xad\x89\x26\x8e\x77\xa6\x6a\xb6\x4c\x89\x7f\xe3\x17\xb1\x45\x4b\x6c\x5b\xdb\x53\xb5\xd4\x51\x2b\xbd\x83\x55\xec\x0b\xfb\x81\xee\x5a\x07\x9f\x79\x7d\x4f\xe0\xe5\x04\x74\xd6\x25\xec\x47\x04\x83\x92\x91\x78\xc6\x99\xcc\x91\xc7\xdc\x65\xbf\x27\x27\x38\x10\xbe\x27\x8c\x18\xda\x1c\x11\x6a\x49\x90\x11\xdb\xd6\x9b\xbb\xcf\xff\xfa\xf3\xfb\xcb\xb7\x3d\x98\xe3\xf0\x22\x9b\xaf\x8d\xde\xfe\x5d\xef\xd2\x11\x55\x2b\x37\x26\xb2\x16\xe2\x85\xad\x99\x72\x09\x11\x5f\xa6\x41\xd6\xe7\x73\xde\x4e\x93\x90\x50\xed\x05\x09\x92\xe8\x8a\x9c\xcd\x49\xdf\x91\x11\x6a\x33\x28\x8d\x9d\x65\xd7\x1b\xdf\xb5\xea\x5d\xce\xc5\x7a\x9d\x92\xcd\x20\xd9\x0a\xd5\x10\xda\x64\xc4\xe0\x62\x3a\x30\xfc\x05\xde\x8d\xfd\x34\xc0\xc2\x79\x88\xbc\xc4\x60\x89\x8a\x2e\x7c\x3b\x98\x1c\x8d\x13\xaa\x14\xdc\x7d\x17\x8a\x8b\x92\x91\x36\x49\x9b\x74\x23\x5f\x25\x38\x47\x35\x06\x70\x00\x74\xb5\xf9\xb4\xe2\x81\x8c\x3f\xa0\xbb\x03\x7c\x42\xf1\x7c\x63\x52\x14\xb0\x96\xcc\x56\x10\x54\x85\xae\xd7\xf6\x4b\x5e\xde\x07\xf1\x5b\x35\xfd\x8b\x2f\x82\x5d\xf5\xfe\x03\xef\xd3\x23\x16\x5a\xbd\xe3\x34\x73\x0c\x71\x56\x8b\x5b\xb4\xb5\x56\x76\x92\xff\x3c\x40\x3f\x4a\xc1\x0a\x2e\x87\x05\xc5\x17\xb7\x30\xf4\x0c\x8d\x8f\x2d\x65\x98\xd3\xba\xe9\x88\x8b\x92\x80\x59\x10\x74\x6e\x41\x21\xf2\xd8\xc7\x87\xa6\x5e\xa8\xcd\x51\x46\x6f\xa0\xea\x61\xcb\xdb\xcf\xa3\xd4\x6b\xc3\x3c\xe7\xa6\xa1\x08\xe6\xe8\xe9\x70\xb6\xfb\x32\xca\x30\x16\xf6\xab\x9d\x3f\x3e\x3f\xbb\x0c\xd7\x2e\x2e\x46\xf5\x3f\x88\x39\xc5\xfa\x0f\x26\x33\xa8\x04\x8d\xd9\xbc\x25\x1d\xb6\x87\x56\x4f\x57\x48\x5a\xf6\xaf\xb0\xf2\x02\xae\xbe\xab\xc4\xc5\xf9\x35\x4e\x1c\x69\x4f\xc5\xa0\x3b\x9e\xda\x1e\x36\x6c\x98\xdb\x66\x87\xcd\xc1\xee\xb7\xfd\xa0\x9b\x60\x67\xa7\xd4\xab\xe9\x6c\x68\x1f\x3a\xd6\x5c\x70\x67\x5f\xf7\xe1\x6a\x3a\x12\x86\x08\x7b\xd3\xa7\xca\xc3\xa9\xc9\x25\xaa\x0d\x55\x27\x46\x80\x38\xe4\xbb\x11\x2e\xed\x04\x8d\x9b\xb2\xbb\x2a\xe4\xd5\x41\xd4\x70\x61\xc8\x37\x5e\x4c\x5a\x1c\xc6\x6f\xc5\x14\x97\x6e\x12\x32\xc8\xf8\x1e\xf0\x45\x58\x72\x4d\x78\x30\x6d\xec\x61\xaf\xe2\x86\x70\x6b\xd3\x71\xdd\x88\x8c\xde\x9e\x39\xff\x6e\xa2\x6b\xa3\xcf\x06\xf4\xce\x6d\xd3\x3c\x1b\x38\x46\xbd\xc3\x34\xec\x8a\x22\xca\xb6\x24\xa4\x84\xda\xa0\x45\x45\x19\x94\x15\x96\x4f\x4e\x50\x1c\x4f\x26\x8c\x47\x1d\x7e\x04\x82\x1f\x56\x43\x23\x7c\x79\xb3\x48\x61\x40\x9a\x51\x3c\x50\xee\xe6\xa0\x90\x0b\xfc\x1c\xe4\x6f\x21\x82\x62\x3b\xcb\x18\x14\xc7\xb0\x1e\x85\x55\xfb\x3b\x0d\xa7\xf5\xa3\x7f\x99\x67\x6e\xf7\x9c\xcc\xa0\x7f\x1b\x81\xaf\x88\x6a\xbb\x2c\x8a\x8d\xa0\xaa\x79\xcc\x4b\xbd\x2d\x68\xf7\x68\x8b\x47\xad\xc9\x92\x61\x75\x21\xac\x6d\xd0\x16\x6f\xdf\xbf\xfb\xd3\xfb\x59\x29\x16\xc9\xf5\x31\xba\xa1\x74\xb6\x85\x99\xb7\xdc\x5f\x54\x9c\x32\xfc\x90\x41\xbc\x38\x9a\xac\x7c\x5f\x31\x3c\x6e\x8b\xb0\xb0\xd1\x0a\xb3\x76\xe0\x03\x41\x13\xe2\xfe\x2c\x98\x8e\xe3\x72\x06\xc3\xd0\xb3\xa7\xd1\x75\xb7\x12\xae\xdf\x69\x4b\x48\x5b\x19\x76\x78\x6e\x10\xb8\x56\x08\x3b\x41\xd5\x18\x18\x47\x89\xae\xae\xfc\xee\x69\x19\x57\xe3\x18\x7b\x2e\x83\x8d\xce\xb0\x3b\x85\xed\xd8\x3e\x3b\x19\x4d\x73\x26\x8f\x49\x73\xbc\x9f\x51\x4c\x98\x8f\xc2\x86\x1e\x2f\x21\xe6\x13\x79\x51\x00\xab\x6b\x54\xbc\x87\x0c\x84\x82\xb2\x6a\x54\xef\xae\xc5\x9d\xc9\x56\x78\xc8\x86\xf0\x23\x5c\x8e\xd5\xfb\x34\x74\xed\xc5\xa5\x67\x47\x7a\x5b\x4b\x51\x62\x7a\xe9\x83\x67\x91\x7f\xd3\x42\xa5\xc9\x3f\x55\xb2\x18\x77\x7d\xf3\x1b\x78\x18\xb8\x91\xc9\x1d\xdb\x5b\x30\xb8\x36\x68\xab\x49\x87\x7d\x24\x9d\xb6\xf2\xe9\x4c\x65\xfa\x7e\xcf\x9e\x38\x1d\x83\x5d\x76\x4e\xf2\x36\x8c\x99\xfb\xb7\xc4\xf9\x2d\xba\xf9\x64\x64\x7a\x1c\xdc\xb9\x61\x93\xee\xdb\x49\x0d\x17\xca\x6e\x0c\xfa\x5c\x7b\x9c\x89\x6f\xee\x92\x85\x9f\x8c\x16\x73\xc7\xda\x5f\x2a\xe7\x7f\x73\x64\x63\x89\x87\xb1\x6f\xdb\xde\x29\x4e\x47\xbd\x9b\x49\x9f\x07\x97\x83\xae\xad\x9b\xd3\xee\x7a\xd7\x07\xcb\xc1\x65\x42\x47\xf3\x11\xe9\xd3\x71\xde\x5d\xf6\x66\xdf\xa3\xe2\x83\x8f\xcd\xff\x04\x00\x00\xff\xff\xba\xd7\x92\x82\x9e\x17\x00\x00") func staticAlertsJsBytes() ([]byte, error) { return bindataRead( @@ -318,7 +318,7 @@ func staticAlertsJs() (*asset, error) { return a, nil } -var _staticAutocompleteJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x61\x8f\xe3\x34\x10\xfd\xde\x5f\x31\x8d\x0e\x91\xec\x2d\xc9\x02\xdf\x52\x72\xdc\x9d\x84\xe0\x24\xb4\x88\x03\x84\x10\x42\x27\x6f\x32\x69\xe6\xd6\xb1\xb3\xf6\xb8\xbb\x05\x85\xdf\x8e\x9c\x66\x1b\xa7\xdb\x2e\xd5\xf9\x4b\x9b\xc9\x7b\x33\xcf\xe3\xc9\x73\x76\x01\x6b\xa9\x6f\x84\xb4\xf0\x56\x6a\x5d\x35\xda\xa9\x0a\x2e\x32\x00\xc8\x32\xe0\x6d\x87\xa2\x41\x51\xa5\x1f\xed\x62\x91\x5d\x00\x3e\x74\xda\x30\x56\xf0\xc6\xb1\x2e\x75\xdb\x49\x64\x84\x8b\x6c\xb1\x11\x66\x1e\x2b\x20\xae\x9d\x2a\x99\xb4\x8a\x13\xf8\x67\xb1\x00\x00\xf0\x28\x11\xa0\x56\x53\x98\x14\x31\x14\x30\xe3\xc0\xb8\xc4\x3c\xb1\xc2\xfb\x40\x6c\x3c\xe1\xfc\xaa\x04\xbb\xf6\x57\x7d\x8b\x8a\xfe\x46\x93\x07\xc0\x94\x1f\xa3\x36\xbd\x6f\x88\xd1\x76\xa2\xc4\xcb\x19\xfb\xce\xa1\xd9\x7e\x32\xdb\x60\xab\x19\x73\x98\x2b\xf2\xcb\x19\x99\x43\x14\xee\x23\xfd\x68\xb5\xfa\x96\xd1\xb4\xc5\x67\x3f\xff\xf6\xdd\xfb\x3f\xa2\xcb\x27\xac\x7b\x92\x55\x29\x4c\x95\x43\x74\x12\x63\x04\xe3\x8f\xd4\x12\xbf\xdd\xe6\x10\x71\x63\x34\xb3\xc4\xe7\x80\xbf\x0b\xe2\x1c\xbe\xbe\xba\x9a\x41\xfa\x39\xc3\xba\xba\xa6\x92\x50\x71\x0e\x5f\x7e\xb5\x7f\xd5\x27\xab\xe1\x7f\x1f\x9c\x9c\x41\x8b\x67\x1d\x5d\x5a\x4a\x14\x26\x3e\x92\x62\x8d\x7c\x30\x3c\x47\x93\x19\x64\x67\xd4\xc1\x04\x85\xb9\xfc\xc8\x36\x64\x81\x2c\x38\x8b\x15\xb0\x86\x35\x2a\xf4\x5b\x87\x3b\x47\xe5\x2d\xd4\x24\x19\x8d\x85\x5a\x1b\x90\xe2\x06\x25\xb4\xba\x12\x32\x50\xb2\x83\xff\x40\x8a\x6d\xa8\x63\x00\x7f\xb8\xc5\xed\xe5\x8e\xf7\x61\x23\xe4\xa4\xcd\x53\x9b\x91\xf2\xe7\x5f\xab\x31\x4a\x35\x4c\x3c\x28\x0a\x88\x5e\x5b\x16\x8c\x51\xb8\xa9\x2c\x03\x1f\xa4\x12\x24\x59\x06\x5d\x8f\x89\xbc\xc2\xd7\x96\x24\xaa\x12\xab\x5d\xcd\x3d\x67\x40\xa4\x9d\xb3\x4d\x3c\xa6\x2c\x44\xc9\xb4\xc1\x28\x59\x3d\x07\xb2\xae\xeb\x0c\x5a\x8b\xd5\xff\x00\x9d\xea\x8c\x2e\xcf\x40\x2e\xcf\x2a\xbc\x3c\xbb\xf2\xf2\x78\xe9\x1e\x50\x5a\x9c\x77\x0d\xef\x9c\x90\x20\x54\x05\x4a\xab\x2f\x76\x4f\x53\xeb\x70\x83\x66\xcb\x0d\xa9\xf5\x40\x3d\x56\x72\x3a\x9a\x97\x10\x15\x11\xbc\x0c\x4e\xf6\xa8\xc6\x19\x61\xf9\x84\x11\x8a\xa3\x1a\xb8\x41\x83\x9f\x5b\x18\x8c\x02\x48\xf9\xc0\x38\x73\xfb\xa1\x34\xb8\xc6\x87\x2e\x90\xdd\x09\xc3\x24\xa4\xdd\xe7\x9a\x66\x68\x23\x64\xca\xfa\x17\x36\xa4\xd6\x71\x92\x92\xaa\xf0\xe1\xa7\x3a\x8e\x20\x4a\xe0\x55\x01\x57\xc9\xcc\x77\x5e\xa4\x28\xca\xe6\x38\xd5\x76\x92\x78\x20\x5e\x06\x03\xfe\x38\xd8\x5e\x42\x72\x68\x61\x27\xdb\xf6\xef\xd4\x85\x81\xb8\x3a\x93\xb8\x7c\x8e\xd8\x07\x4f\xfd\x61\x5f\x37\x42\x3a\xf4\x9f\xb8\x50\x40\x8a\xa7\x66\x82\x44\x6b\x21\x83\x56\x1b\xdc\xd5\x9d\x75\xf1\x45\x4a\xf6\xda\xb5\x68\xa8\x9c\xda\x92\xcc\xbb\xe6\xbf\xe3\x8d\x90\x6f\x3c\xf0\x06\x0d\x14\xfe\x40\x2c\xbe\x53\x1c\x1f\x9b\x8d\x5d\xe2\x25\xd9\x6b\x71\x1d\x07\xbc\x83\xac\xa7\xbb\xf0\xea\xd4\xd4\x3d\x47\xfa\xe6\x34\xa9\x5f\x1c\xfe\x7b\xfc\x1d\xbd\x73\xc8\x39\x37\xcd\xf1\xcd\x24\xf8\x9d\xf2\x17\x84\xbf\x90\xa7\x3b\xe1\xbd\x37\xf9\x7c\xe7\xf5\x53\x34\x34\xed\xfc\xd0\xc5\x27\xd8\xf7\xa1\xa9\xe6\x73\x8f\xdd\x4b\xe9\xe3\x24\x59\x2d\xfe\x0b\x00\x00\xff\xff\xbd\x2b\x43\x1d\x90\x08\x00\x00") +var _staticAutocompleteJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xdf\x93\xdb\x34\x10\x7e\xcf\x5f\xb1\xf1\x94\xc1\xbe\x1e\xf6\x01\x6f\x0e\x2e\x6d\x67\x18\xe8\xc0\x1c\x50\xa0\x0c\xc3\xf0\xa0\xb3\xd7\xf1\xb6\xb2\xe4\x93\x56\xb9\x0b\x8c\xf9\xdb\x19\x39\xa9\x7f\x5d\x72\xc9\xa1\xa7\x78\xfd\x7d\xab\x4f\xab\xcf\xbb\x49\x2e\x60\x2d\xf5\x8d\x90\x16\x5e\x4b\xad\x8b\x4a\x3b\x55\xc0\x45\x02\x00\x49\x02\xbc\x6d\x50\x54\x28\x8a\xf8\xbd\x5d\x2c\x92\x0b\xc0\xfb\x46\x1b\xc6\x02\x5e\x39\xd6\xb9\xae\x1b\x89\x8c\x70\x91\x2c\x36\xc2\x4c\x63\x19\x84\xa5\x53\x39\x93\x56\x61\x04\xff\x2c\x16\x00\x00\x1e\x25\x46\xa8\xd5\x10\x26\x45\x0c\x19\x4c\x38\xb0\x5f\x62\x9a\x58\xe1\xdd\x48\x6c\x38\xe0\xfc\x2a\x04\xbb\xfa\x57\xfd\x01\x15\xfd\x8d\x26\x1d\x01\x63\xfe\x18\xb5\xf1\x5d\x45\x8c\xb6\x11\x39\x5e\x4e\xd8\xb7\x0e\xcd\xf6\x7f\xb3\x0d\xd6\x9a\x31\x85\xa9\x22\xbf\x9c\x91\x29\x04\xe3\x73\xc4\xef\xad\x56\x5f\x33\x9a\x3a\xfb\xe4\xe7\xdf\xbe\x79\xfb\x47\x70\xf9\x80\x75\x47\xb2\xc8\x85\x29\x52\x08\x8e\x62\x8c\x60\xfc\x81\x6a\xe2\xd7\xdb\x14\x02\xae\x8c\x66\x96\xf8\x18\xf0\x77\x41\x9c\xc2\x97\x57\x57\x13\x48\x3b\x65\x58\x57\x96\x94\x13\x2a\x4e\xe1\xf3\x2f\xfa\x57\x6d\xb4\xea\x7e\xb7\xa3\x9b\x33\x68\xf1\xac\xab\x8b\x73\x89\xc2\x84\x07\x52\xac\x91\x67\xe6\x39\x98\xcc\x20\x3b\xa3\x66\x0e\x1a\xe7\xf2\x96\xad\xc8\x02\x59\x70\x16\x0b\x60\x0d\x6b\x54\xe8\x8f\x0e\xb7\x8e\xf2\x0f\x50\x92\x64\x34\x16\x4a\x6d\x40\x8a\x1b\x94\x50\xeb\x42\xc8\x91\x92\x1d\xfc\x3b\x52\x6c\xc7\x3a\x3a\xf0\xf7\xb8\xbd\xdc\xd1\xde\x09\x39\x56\xe6\xa9\xd5\x9e\xf2\xe7\x5f\xab\x3e\x4e\x25\xf4\x4c\xc8\x32\x08\x5e\x5a\x16\x8c\x41\x34\xf3\x48\x92\x80\x7f\x41\x39\x48\xb2\x0c\xba\xdc\x67\xf3\x32\x5f\x5a\x92\xa8\x72\x2c\x76\x3b\x4f\x78\x1d\x2a\x6e\x9c\xad\xc2\x7d\xea\x4c\xe4\x4c\x1b\x0c\xa2\xd5\x29\xa0\x75\x4d\x63\xd0\x5a\x2c\xce\x00\x3b\xd5\x18\x9d\x9f\x89\x5e\x9e\x2d\x62\xf9\x24\x15\xcb\x63\x32\x5a\x40\x69\xf1\x61\x4d\xf1\xd6\x09\x09\x42\x15\xa0\xb4\xfa\x6c\xf7\x34\x14\x16\x37\x68\xb6\x5c\x91\x5a\x77\xf4\x63\x9b\xf7\xf7\xf7\x1c\x82\x2c\x80\xe7\x83\x01\x8e\xea\x1d\x53\x96\x73\xce\x5c\x24\x95\xc0\x15\x1a\xfc\xd4\x42\xd7\x53\x80\x94\x0f\xec\xed\xd9\xfb\xd7\xe0\x1a\xef\x9b\x91\xfc\x46\x18\x26\x21\xed\x24\x5f\x6f\xb8\x77\x42\xc6\xac\x7f\x61\x43\x6a\x1d\x46\x31\xa9\x02\xef\x7f\x2c\xc3\x00\x82\x08\x5e\x64\x70\x35\x77\xa0\x5f\xcf\x62\x14\x79\x75\x90\x6f\x1b\x49\xdc\xb1\x2f\x47\xdf\xc4\xfe\x63\xf8\x49\x18\x8e\x1e\xa6\x7b\xac\x8e\xff\xf6\x45\xe9\xc8\xab\xa7\x90\x97\x27\xc9\xed\x2c\xd6\x1e\x2a\xfa\x46\x48\x87\xbe\x55\x08\x05\xa4\x78\xa8\x34\x48\xb4\x16\x12\xa8\xb5\xc1\x9d\x86\x07\x25\x7e\x16\x93\xbd\x76\x35\x1a\xca\xfb\x72\x45\x87\x4a\xea\x1b\xc3\x46\xc8\x57\x1e\x7d\x83\x06\x32\x7f\x6d\x16\xdf\x28\x0e\x8f\xd8\xe8\xe3\x16\x4b\xb2\xd7\xe2\x3a\x1c\x91\x0f\x6e\xf0\x48\x9d\x5e\x3c\x62\xd6\x13\xd4\xaf\x4e\x50\xdb\xc5\xe1\xa7\x76\xde\xab\xbb\xfc\xd3\x26\xbd\x7f\x33\x1c\xe5\x8d\xf2\x03\xc9\xff\x01\x18\x66\xd0\x5b\x3f\x54\xd2\xdd\x6c\x19\xa2\xe3\x21\x91\xce\xa7\xc6\x00\xfb\x76\xdc\xc4\xd3\x69\x4f\xef\xa5\xb4\x61\x14\xad\x16\xff\x05\x00\x00\xff\xff\x3c\x12\x04\x43\x00\x09\x00\x00") func staticAutocompleteJsBytes() ([]byte, error) { return bindataRead( @@ -358,7 +358,7 @@ func staticBaseCss() (*asset, error) { return a, nil } -var _staticColorsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xcb\x6e\xdb\x30\x10\xbc\xfb\x2b\xb6\x6c\x10\x48\x89\x62\xf7\x2c\x41\x45\x8b\x14\x08\x02\xf4\x16\xf4\x64\xe4\x40\x53\x2b\x99\x35\x43\x09\x24\xe5\xd4\x08\xfc\xef\x05\xa9\x17\x29\xab\x49\x75\x32\xf7\x35\x43\xee\xec\x7a\x73\x03\xf8\xa7\xa9\x95\xc1\x02\xee\x6b\x51\x2b\x0d\x37\x9b\xd5\x91\xaa\xe1\x94\x43\x54\xb6\x92\x19\x5e\xcb\x28\x86\xb7\xd5\x0a\x00\xc0\xfa\x99\xf3\x27\xee\x6c\x3f\x6d\xa8\xe1\xcc\x65\xfd\xa4\x3b\x14\x3a\x9b\x62\x75\x83\x8c\x53\xd1\xd9\x21\x87\xb7\x31\x8b\x7c\xb3\x79\x98\x42\x2b\x1b\x55\x33\xd4\x1a\x0b\x92\x02\x11\x36\xf4\xae\xc0\x92\xb6\xc2\x90\xe4\x32\x9e\x32\xc3\x8f\xe8\x85\x52\x59\xa1\x5a\x8a\xd4\x6d\xd3\xa8\x59\x61\xdd\x32\x8b\xd5\x87\x9f\x3d\xaa\x6d\x53\x50\x83\x90\xc3\x78\x6b\x77\xd1\x1f\xd4\xd0\xd8\xe3\xcd\x86\xd7\x19\xbd\xd9\x45\xa9\x0a\xcd\xbd\xa0\x5a\xfb\xc5\x0e\x78\x4a\xe0\x48\x45\x8b\x7e\x35\x1b\xed\x88\x41\x0e\x07\x3c\xc1\x2d\x58\xaa\x70\xdb\x45\x66\x63\x1c\x2f\xc1\x56\x80\x3c\x07\x42\x05\x2a\x23\xe9\x0b\x12\xbf\x92\xfd\x14\x9a\x56\xc9\xe1\xaa\x8d\xe2\x2f\x54\x9d\x48\x06\xb0\xd9\x0c\x9d\x00\x46\x35\x42\x59\x2b\x18\xcb\x74\x04\x12\x78\xdd\x73\xb6\x07\xae\xc1\xec\x11\x9c\xa3\x2e\xbb\xa8\x11\xe4\x0c\x28\x34\x3a\x36\x41\x67\xb7\xae\xc4\x33\x7c\xca\x73\x68\x65\x81\x25\x97\x58\xfc\x83\xdd\x52\x62\xb6\x84\xd0\xe9\x70\xfd\xa8\x9f\x9c\xc0\x5c\x82\x7d\x84\xf8\xfd\x6b\x73\x59\xd6\xe4\xa2\xe0\x7b\x19\xaf\x54\x49\x2e\x2b\x3f\x69\xa9\xa5\x4f\xe6\x24\xf0\xe3\x96\x6e\x36\x36\xb8\x93\x07\x14\xd4\xd0\xa4\x87\xc3\x02\xa8\x06\xa6\x35\x68\x57\x49\x1b\xc5\x65\x15\x48\x41\xf7\x10\x84\x84\xad\xef\x44\xb7\x3d\xe0\x69\xf6\xc6\x70\x7d\x0d\x9e\x73\xeb\xd8\x7c\xd0\x07\x37\xc3\x83\x80\x83\xbc\x2c\x88\x1b\xc9\xec\x28\x3b\x54\xaa\x6e\x65\x71\xe7\x72\x52\x50\xd5\x8e\x46\x56\xa6\x5b\xb6\x9e\xbc\x6b\x85\x45\x02\x81\xa5\x52\x88\x72\x66\xdb\x89\x16\x67\x26\x2a\x9a\x3d\x7d\x5e\xff\xae\xb9\x8c\x48\x02\x24\xb6\x83\x10\x67\x40\x96\x18\xdd\xe6\x40\x16\x78\x94\xb5\x34\x03\x03\xf7\x7b\xc4\x76\xa7\x01\xd5\x1d\xfe\x03\xef\xbc\x9a\xeb\xd6\x82\x2f\xce\xba\xa7\xcf\x60\xe4\xfd\x87\xef\x8b\x5c\x45\xe4\xb3\x1b\x29\x4d\xe2\xb5\x15\x47\x44\xba\xf5\xd9\xbd\xec\x9d\x13\xa4\xf5\xe9\x46\x70\x13\x11\xcb\xea\x02\x92\xfb\x13\x31\x13\xe4\x02\x66\x74\xb5\xe6\xf2\xbb\x52\xf4\xd4\x29\xb6\x9f\xab\x87\x90\x78\x14\xc7\xf0\x35\x87\x2f\x4b\x78\x92\x1b\x1f\xc6\x5b\xf8\xda\xc7\xbb\xf8\x23\x80\xdc\xb7\xe9\xb0\x72\xcf\x6e\x4a\x7f\x94\xdc\xa4\x0e\x6c\xda\xe5\xbf\xdc\x52\x4e\xfb\xe5\x3c\xd9\x1f\xd0\xa4\xe3\x4c\x06\x66\xb7\x78\xd3\x71\x05\x07\x3e\xff\xbe\xe9\xbc\x73\x53\x64\xb0\x71\xd2\xf0\xb9\xc7\x2b\x9c\xe3\x28\xce\x56\x7f\x03\x00\x00\xff\xff\xa8\xe0\xf8\x7d\x46\x07\x00\x00") +var _staticColorsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xdb\x3e\x0c\xbd\xe7\x53\xf0\xa7\x5f\x51\xd8\x6d\x9a\xec\x6c\xc3\xc3\x86\x0e\x28\x06\xec\x56\xec\x14\xf4\xc0\xc8\xb4\xa3\x45\x95\x0d\x49\x6e\x67\x14\xf9\xee\x83\xe4\x3f\xb1\x1c\xaf\x5d\x4e\xb1\x48\xbe\xf7\x44\x3d\x72\x7b\x03\xf4\xbb\xae\xb4\xa5\x1c\xee\x2b\x59\x69\x03\x37\xdb\xd5\x0b\xea\xe1\x2b\x83\xa8\x68\x14\xb7\xa2\x52\x51\x0c\x6f\xab\x15\x00\x80\x8b\x73\x1f\x4f\xcf\x07\xa6\x26\x2e\x50\xfe\xc0\x3d\x49\x57\xf7\xe6\x23\xee\xc7\xbe\x18\x8b\x96\x12\x68\x54\xad\x2b\x4e\xc6\x50\xce\x12\x60\xd2\xa5\xde\xe5\x54\x60\x23\x2d\x5b\x5f\xe6\x23\xb7\xe2\x85\x26\xa9\xa8\x4a\xd2\x4b\x99\xa6\xa9\x6b\x3d\x03\x36\x0d\x77\x5c\x7d\xfa\x69\x22\xb5\xa9\x73\xb4\x04\x19\x8c\x57\xf3\xb7\xf9\x86\x16\xe3\x89\x6e\x3e\xb4\x60\x8c\xa6\x17\x50\x25\xd9\x7b\x89\xc6\x4c\xc1\x8e\xd4\xae\xe1\x05\x65\x43\x53\x34\x97\xed\x85\x41\x06\x47\x6a\xe1\x16\x9c\x54\xb8\xed\x32\xd3\x31\x4f\x14\xe0\x10\x20\xcb\x80\xa1\x24\x6d\x15\x3e\x13\x9b\x22\xb9\x9f\x26\xdb\x68\x35\x5c\xb5\xd6\xe2\x19\x75\xcb\x52\x80\xed\x76\x78\x09\xe0\x68\x08\x8a\x4a\xc3\x08\xd3\x09\x58\xc3\xeb\x41\xf0\x03\x08\x03\xf6\x40\xe0\x03\x55\xd1\x65\x8d\x24\x27\x20\x69\xc8\xab\x09\x5e\x76\xe7\x21\x9e\xe0\xbf\x2c\x83\x46\xe5\x54\x08\x45\xf9\x5f\xd4\x2d\x15\xa6\x4b\x0c\x9d\xd9\x36\xdf\xcd\xa3\x45\x2b\xb8\x2f\x70\x4d\x88\xdf\xbf\xb6\x50\x45\xc5\x2e\x00\xdf\xab\x78\x45\xad\x84\x2a\xa7\x45\x4b\x4f\xfa\x68\x5b\x49\x1f\x3f\xe9\x76\xeb\x92\x3b\x7b\x40\x8e\x16\xd7\x3d\x1d\xe5\x80\x06\xb8\x31\x60\x3c\x92\xb1\x5a\xa8\x32\xb0\x82\xe9\x29\x18\x0b\x9f\xbe\x33\xdd\xee\x48\xed\xac\xc7\x70\x7d\x0d\x93\xe0\xce\xab\xf9\xe0\x1d\xfc\xa0\x0e\x06\x0e\xea\xd2\x20\x6f\x14\xb3\x47\x7e\x2c\x75\xd5\xa8\xfc\xce\xd7\x24\xa0\xcb\x3d\x46\xce\xa6\x3b\xe0\x9b\x73\x78\xa3\x29\x5f\x87\x27\xa5\x26\x52\xb3\xb3\xbd\x6c\x68\x76\x84\xb2\x3e\x20\x3c\x6d\x7e\x55\x42\x45\x6c\x0d\x2c\x76\xa3\x10\xa7\xc0\x96\x34\xdd\x66\xc0\x96\x94\x14\x95\xb2\x83\x06\xff\x7f\x64\xf7\x5f\x03\xaf\xff\xf8\x17\xc6\xd3\x6a\xee\x5d\x47\xbf\x38\xef\x13\x8f\x06\x63\x3f\x6d\x7e\x0f\x72\x15\xb1\xff\xfd\x58\x19\x16\x6f\x9c\x41\x22\x66\x7c\x75\xd7\xdd\x3b\x6f\x4a\x17\x33\xb5\x14\x36\x62\x4e\xd5\x05\xa5\x98\x4e\xc5\xcc\x94\x0b\x9c\xd1\xd5\x46\xa8\xaf\x5a\x63\xdb\xb9\xb6\x9f\xad\x87\x50\x78\x14\xc7\xf0\x39\x83\x4f\x33\xbe\x1e\xe3\x0c\xfa\xd3\xaf\xca\xa4\x5f\x99\xe7\xcd\xfb\x40\x36\x19\x27\x25\x38\xf6\xeb\x30\x19\x17\x63\x10\x9b\x2a\x48\xe6\xbd\x3c\x67\x06\x7b\x20\x09\x1b\x30\xca\x3d\xc5\x51\x9c\xae\xfe\x04\x00\x00\xff\xff\x7b\xff\xc2\x19\xc1\x06\x00\x00") func staticColorsJsBytes() ([]byte, error) { return bindataRead( @@ -378,7 +378,7 @@ func staticColorsJs() (*asset, error) { return a, nil } -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") +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\x8b\xd7\xed\xa1\xc8\x03\x2d\x9d\x6d\xb5\x32\xa9\x90\x94\x9d\x60\xf5\xff\x3e\xf0\x87\x2c\x8a\x92\xe5\xb4\xf3\x53\x44\x1e\x79\x77\x9f\xbb\xfb\xf0\x2e\xc9\x6b\x58\x96\x6c\x4e\x4a\x01\x97\x65\x51\xcd\x19\xe1\x39\xbc\x4e\x40\xfd\x92\x04\xb2\x66\x2d\xfe\x2c\x4e\x5c\x59\xc6\xbe\x14\x28\x1a\x49\x2d\xfb\x59\xc4\x99\x5e\x56\xb2\xae\xf0\x55\x51\x4a\xe4\x22\x82\x8f\x54\x20\x46\xf0\x47\x8d\xfc\x79\x26\x79\x41\x97\xf0\x3a\xd1\xa2\xf8\x54\x31\x2e\x31\x87\x4b\x46\x17\xc5\xf2\x43\x25\x0b\x46\xd5\xe6\x86\xf0\xee\xda\x14\xc2\x45\x4d\x33\xf5\x77\x38\x81\x7f\x4e\x4e\x94\xf6\x66\x05\x98\x16\xba\x2c\x89\x10\x61\x45\x38\x59\x0b\x25\x63\x6d\x04\xb9\x2a\x44\x6c\x4c\x87\x29\x98\x7d\xfb\x7d\xd1\x15\xd2\x26\xde\x29\x81\x56\xb0\x5d\xf3\x84\x67\x58\x62\x26\x19\x6f\x45\x9b\x15\x4f\xf0\x1a\x65\x2b\x73\x8d\x52\x22\x87\xaf\x5f\xa1\xe3\x0f\x38\x3f\x8e\xb2\xe6\x14\x4e\xc3\x8e\x9a\x49\x5c\x88\x30\x48\xb3\x15\x66\x5f\x30\x0f\x26\xad\x92\x5d\xcf\x30\xe9\xda\xd4\xd3\xb7\x21\xa5\xaf\xb2\xa7\x6b\xce\x98\x14\x92\x93\x6a\xb6\x2d\x64\xb6\x0a\x03\x21\x89\xc4\x20\x82\xd3\xb8\x22\x5c\xe0\x6f\xb3\x0f\xb7\xfa\xa2\x08\x24\xaf\x71\xc4\x9a\xf7\x99\x0d\xa0\x35\xc8\x7e\x7b\x00\xf8\xa7\x6e\x68\xe1\x38\xa1\xbf\xc6\x20\x53\xf9\x82\x25\xaa\xb0\xa9\xe3\x17\xe3\xce\x31\x1a\x06\x42\xfb\x75\xb9\x22\x74\x89\xbe\xb7\x41\xd4\x6a\xc2\x0d\x52\x19\xc1\x00\x66\xea\xa7\x74\xc6\x33\xb2\x41\x8d\xc5\xc5\xf0\xfe\xfb\x16\xf6\xae\xc4\xae\x0f\xdb\xce\x64\xb6\x93\xd0\x71\xc5\x99\x64\xf2\xb9\xc2\xf8\x77\x46\x72\x98\x0e\xa3\xa0\x10\xc8\x6a\xce\x91\xca\xbf\x48\x69\x71\x50\xd9\x16\x4e\x2e\x4e\x3a\x52\x1b\xbd\x6d\x4b\x39\x5e\xa2\x0c\x9d\x02\x71\x2c\x2a\x16\xa0\x6c\x86\x57\xd3\x29\xd4\x34\xc7\x45\x41\x31\xf7\x41\x68\x12\xce\xf3\x6e\xd7\x55\xf9\x08\x53\xb7\xfc\xe3\x3b\x95\x42\xa1\xa7\xeb\xf1\x93\x57\x83\x0f\x2f\x54\xdd\x3f\x38\x6c\x89\x52\xe2\x40\xf4\x6a\x3a\x14\x55\x27\x67\x7b\x3e\xd9\x38\x8d\x44\x48\xa5\x82\x1b\x21\x4f\x41\x03\xba\xe8\x82\xae\xd3\x2b\xf2\x0c\xc1\xa7\xaa\xe0\x28\x52\x78\xf7\xd3\x8f\x51\x67\xa7\x22\x72\x95\x42\x10\x9c\xf8\x79\xd4\xd8\x66\x09\xa4\xbd\xef\x16\xb7\xa9\x6b\xf1\x5e\x7a\x17\x4e\x54\x7a\xf4\xa9\xb8\x4b\xc2\xc3\xf4\xab\xf6\xcd\xa5\x02\xa6\xba\x84\xf7\xcb\x25\x23\xf9\x15\x67\xeb\xe6\xc1\x38\x90\xb4\xa7\x31\x92\x6c\x15\xda\x4b\x9c\xaa\xa3\x64\x8d\x91\xbd\x7c\xa8\xd6\x37\xa4\xac\x15\xd0\x46\x42\x17\x46\xe8\x15\x97\x4d\xdf\x1a\xc7\xb3\xa8\x8d\x65\x93\xc6\x1d\x36\x6b\x03\x3f\x04\xb4\x32\x85\xa3\xd0\x7c\x3b\xe8\x60\x92\xe8\x84\x82\x42\x00\x65\x52\xd1\x99\x04\xb6\xd8\xa3\xb6\x26\x55\x2f\x37\x38\xae\xd9\x06\xc3\x20\xc7\x05\xa9\x4b\x69\x5e\xd1\x78\xf3\xd6\x65\xfc\xef\xc2\xcd\x53\x60\x9d\xee\x95\xfd\x90\x8f\x85\x61\xe3\xbd\x9a\xf6\x8d\x75\x3d\xcd\x58\xf5\xdc\x70\x10\x2c\xb4\xdd\x30\xaf\xa5\x64\x14\x88\x3e\xb7\x17\xa6\xb8\x6d\xfb\x8e\x70\xff\x22\x57\xcf\x0d\x47\xfb\xc5\x20\xf1\x49\xa6\x0e\x29\x97\xb8\x1e\x0a\xa4\xb2\x75\x4e\x04\x7e\xe4\x8a\xe2\x3e\x41\xc9\x32\xa2\xbd\xd4\x15\x9a\xb1\x32\x82\x20\x49\x82\xa8\xdd\x58\x31\x21\x9d\x4f\x55\x5a\x0a\x43\x78\x88\x3f\xb3\x82\x86\x41\x30\x40\xea\x9a\xd1\x14\xd9\x68\x1d\xc1\xe3\x34\x80\x37\x4d\xb7\xa3\x18\xd7\xfe\x19\x4e\xec\x1d\x51\x30\x81\x87\xfe\x35\xdf\x15\xc4\xe6\xa7\xf5\xc7\x55\x2d\x9a\x0b\xdc\xde\xe5\x0d\x04\xda\x26\xbb\xa3\x1f\x81\x58\x32\x43\xbe\xba\xe2\xfd\xeb\x76\x03\x6b\xa7\x06\xe6\x78\x51\xd0\x42\xac\xc2\x49\xbc\x20\x39\x7e\xa8\x65\xf8\xc3\xf9\xb9\xf9\xb8\xa1\xe1\xbb\xf3\xf3\x81\xa3\x96\x80\x9a\x50\xbc\x81\xe0\x57\x65\x8f\x31\xda\x80\xf2\x7f\x1f\xd9\x6e\x95\xb9\x79\x25\x14\xa9\x0a\x94\xb2\xa0\x4b\x71\x20\xa3\x4e\x9b\x2c\x52\x0c\xdc\x7d\xe9\xb3\xb2\xc8\xbe\xb8\x4f\xfa\x10\xa1\xd8\x74\x9d\x1e\x89\xe3\xc5\x60\x45\x29\x3a\xef\xd7\x6b\x64\x2f\xf5\x73\x19\x46\xc9\x1d\x86\x08\x7e\x28\x44\x07\x3c\xfe\x86\x68\xf9\x38\x1b\x26\x7b\x29\xd0\xf7\x4a\xfa\x1b\x91\x36\xaf\x89\x39\xea\xf3\xb5\xdb\x1f\xdc\x5b\x0e\x7c\xf4\x11\xdf\x17\x2a\xc7\xd2\xe3\x7c\xdf\x9b\x95\x94\x95\x48\x93\x64\x59\xc8\x55\x3d\x8f\x33\xb6\x4e\xe4\x76\x2e\x92\x7d\xaf\x97\x14\x42\xd4\x28\x92\xb7\xe7\xbf\xfc\xec\xb8\x97\xb3\xac\x5e\x23\x95\x5d\x97\x82\x38\xe7\xac\xca\xd9\x96\x9e\xad\x91\xd6\xdd\xaf\xb3\x05\xe3\xeb\x4e\xd3\xe8\x3b\x8e\xb1\x90\xac\xba\xe3\xac\x22\x4b\x62\xa0\x39\x60\xb9\x85\xe8\x16\xb7\x66\xf2\x09\x87\x48\x3c\x85\x80\xd4\x92\xdd\xe3\x82\xa3\x58\x05\x51\x1f\x48\x4d\x04\x56\x8c\x0f\x8a\x35\xa1\x4b\x21\xf8\xdf\x61\x29\xd3\x09\xa5\xa3\xc3\x03\xb4\xaf\xed\x21\xba\xd2\x23\x60\xfc\x37\x29\xe4\x15\xe3\xb7\xf8\x24\xef\x7b\xf1\xdb\xa3\x01\x58\x0a\x1c\xbd\xe7\x8e\xd4\xdd\xf6\x71\x7f\xf6\x25\x8c\xf2\x52\x84\x2d\x20\x37\x54\x22\xdf\x90\x72\x0c\xe5\xe3\x08\x5b\x89\xb3\x62\xf8\x36\x35\xe0\xa4\x87\xeb\x06\x8e\x8d\x38\x70\x68\xcc\xc9\xf4\x80\x33\x56\x93\xee\xfd\x66\x34\xd0\x43\xcb\x75\xbf\x42\x9b\xdf\xb1\xa1\x07\x8e\x0e\x3e\x30\xc0\x67\xbb\x2e\x22\x66\x4e\x3e\x82\xc9\xa1\x49\x79\x43\x4a\xdf\xf8\x9d\x1f\x1b\xef\xfa\x03\xc9\x3b\x78\xb5\x9e\x80\x6f\xa8\x19\x7a\xc6\xf5\xbc\xb4\x7e\x4c\x62\xcf\x50\xda\x9a\xbe\x27\x12\xc7\xf5\x74\x93\xfb\x9b\xb3\x5b\xac\xd8\xf6\xaa\x24\xe3\xec\xb1\x18\x10\x70\xb3\x5a\x5d\x72\x66\x84\xfe\x23\x9b\x55\x15\xd2\xfc\x4f\x56\x8d\x72\x99\x16\x92\x3d\xa1\x0e\x93\x69\x99\x33\x25\xd4\xb7\xc8\x6d\x69\x69\x63\xd2\x70\x5f\xdb\x9c\x6d\x67\x1c\x98\x9a\xb6\xd5\xf9\xaf\x94\xf2\xab\x39\xd3\x46\xc7\x76\x5d\xaa\xa4\xc3\xde\xb2\xf8\xd4\x6b\xd7\x1e\xf6\x73\x4c\xbf\xf1\x5e\xa2\xec\x5b\xf9\xb8\x3f\xea\x5a\x6a\x6b\xa1\x51\xd3\x0a\x3d\x1c\x19\x0e\x0d\xf7\xa8\x16\xbf\x85\x55\x0d\x54\xa9\x3f\xc5\xb5\xdb\xfa\x01\x4f\x4d\xc3\x10\xb9\x53\xa6\x31\x36\x6d\xd1\x6d\x77\xaf\x1b\x57\xd2\xd6\x2b\x6f\x0e\xfd\x37\x00\x00\xff\xff\x8c\xec\x39\xaf\x96\x14\x00\x00") func staticConfigJsBytes() ([]byte, error) { return bindataRead( @@ -438,7 +438,7 @@ func staticFaviconIco() (*asset, error) { return a, nil } -var _staticFiltersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x5b\x73\xd4\xb8\x12\x7e\xcf\xaf\xe8\xa3\x43\x11\x1b\x66\x3c\x84\xf3\x72\xca\x60\xb6\xd8\x50\x50\x5b\xb5\xec\x85\x14\xbb\x8f\x94\xc6\x6a\xdb\x4a\x3c\x92\x91\xe4\x49\xb2\x30\xff\x7d\x4b\xb2\x7c\xf7\x24\xa1\x76\xf1\x93\xed\xee\x56\x7f\xea\x7b\x6f\x9e\x40\x5e\xca\x2d\x2d\x35\xe8\x82\x9e\xc1\x93\x0d\xd8\x67\xb3\x71\x9f\xd1\xa5\x3e\x39\x19\xb0\xbc\xae\x8d\x4c\xe5\xae\x2a\xd1\xe0\x0a\xce\xa5\xbc\xe2\xa8\x57\xf0\x7b\x8d\xea\xf6\xc2\x28\x2e\xf2\x15\x7c\x14\x1a\x11\x9e\x6c\x9c\x20\xde\x54\x52\x19\x64\xf0\x96\x97\x06\x95\xb6\xff\xf7\x54\x75\x9f\x09\x04\x59\x2d\x52\xc3\xa5\x08\x42\xf8\x72\x72\x62\x95\x5b\x06\x8d\x25\xa6\x46\x3a\x96\x2f\xee\xaf\x7d\x32\x27\x16\x03\xf9\x6f\xf3\x46\x56\x1d\x89\xa7\x52\xf4\x84\xb5\xfd\x24\x8e\x78\x78\xd1\x9f\x4a\x19\xfb\x91\xb2\x1c\x21\x81\x4e\xad\xc1\x1b\x13\x0e\x74\x3c\x8a\x90\xa6\x45\xf0\x28\x20\xba\xa2\x22\x32\x34\x27\xe1\xaa\x67\xe7\x2b\x30\x34\x1f\x0a\x38\xed\x19\x04\x8f\x02\x4b\x88\xec\x79\x41\x08\x49\x02\xd3\x93\xdb\xc7\x22\x49\x8b\x2b\x5d\xef\x20\x71\x66\x6e\x30\xbc\x98\x31\xfa\x13\x2b\x85\x15\x0a\x16\x90\x97\x16\x11\xa4\x25\xd5\x3a\x39\xdd\xba\x8b\x18\x9a\xaf\xdd\xdb\x29\x70\x96\x9c\xda\xcf\x54\xd6\xc2\x9a\x80\xc0\xd3\x56\xcd\x53\x20\xa7\xc0\xa8\xa1\x0d\xef\xda\xb2\x4e\xc8\xaf\x5e\x6e\xec\xe9\xaf\xc8\x04\xc7\xa1\xfb\x3a\x78\xca\xd0\xa0\x75\xc5\xa8\x19\x99\x73\x78\x61\xef\xe5\xe8\xa3\xe5\xe2\x22\x0f\x42\x2f\xea\x43\xcc\x4b\x97\x32\xa5\x56\x16\xb4\x04\x6e\x4e\x35\x20\xd5\xb7\x60\xa4\xb5\x8d\x42\xe0\xa6\x93\x19\x04\x5a\x74\x81\x26\x20\x9f\xc9\xaa\xd3\xf2\x0e\x8d\x7f\x0d\xc2\xe8\x52\x72\x11\x90\x15\x09\x27\x2a\x15\x96\x92\x32\xa0\x25\x2a\xa3\x3b\x82\x8b\xd9\xe8\x83\xa3\x05\x0b\xd7\xe4\x82\x9b\x63\x97\x6c\xe9\x9c\x96\x9f\x9a\xe0\x1b\x68\x6c\xe2\xa2\x0b\xe6\xa8\x61\x08\x23\xeb\x8b\x80\x30\xcc\x68\x5d\x9a\x75\xad\x91\x11\x17\x32\x24\xa3\xa5\x46\x02\x5f\xbf\xc2\x37\x88\x25\xe0\xc4\xa6\xb1\x66\x2d\xac\x51\x41\x45\xb5\x46\x06\x3f\x7c\x4e\x9a\x73\x40\x3b\x0b\x8e\x03\x78\x74\x03\x48\x16\xd5\xef\x69\x19\x0c\xc2\xe3\x00\x58\x6a\x9c\x2b\x15\x72\xa6\x6b\x05\x69\x81\xe9\x95\xb5\xc7\x35\x42\x41\xf7\x08\xfe\x16\x3e\xa7\x21\x75\xc5\xe4\x6e\x4c\xbe\xe0\x44\xb9\x75\xbd\x97\x6f\x5c\x1e\xed\x9f\x4f\x03\xd7\x9a\x7e\x7a\x42\x92\x40\x2d\x18\x66\x5c\x20\x5b\xca\xcc\x06\x7c\x03\x65\x65\x8d\xe7\x2b\x5f\x0b\x76\x26\xf0\x20\xb3\x8d\xbd\xe6\x2b\xd7\xf1\x34\x3b\xb9\x23\xb4\x3e\x51\x65\xb5\x8c\x7f\x46\xba\x2a\xb9\x71\xd1\xde\x1f\x7a\xcc\x7f\x64\xcc\x44\x3c\x71\x4b\x15\xc4\x5c\x54\xb5\x21\xa1\xad\x79\xda\xbd\x07\x63\x13\x99\xdb\x0a\x69\x81\x94\x5d\xea\x78\xc1\x7a\x3b\x2e\x7e\x46\x91\x9b\x22\x86\xb3\xd5\x8c\x5a\x70\x61\x62\x30\xaa\xc6\x39\xad\xe4\x3b\x6e\x62\x38\x7b\x3e\x27\x09\xba\xc3\x18\x08\x1d\x74\x1e\x32\xe7\xd2\xb2\x56\x29\xc6\xa3\x06\x15\x0d\x3f\x82\xf0\x9e\xaa\x06\x7d\xe9\x9f\x9b\x7c\x5c\xff\xbd\x39\x27\x16\x58\x32\x78\x6f\x48\x42\x19\x23\x9d\xe8\xd8\xf7\x6d\x57\x0a\x66\xd4\xc3\xb0\x7a\x2d\x29\x90\x22\x20\xdc\xe0\xee\x35\x63\xc8\xc0\xbe\x7d\xc0\x9d\xdc\xa3\xd3\xd5\x42\xc6\x3d\x8a\x59\x23\x6a\xab\xe6\xc5\xa0\x6a\xbe\x98\x66\x32\x65\x0c\x7c\x3b\x01\xdf\x6f\x24\x08\xbc\xb6\x6d\x67\x96\x6c\x4e\x4d\x64\x63\xc4\x55\xb2\x0e\x16\x59\xca\xb4\xee\xce\x8d\x94\x65\xbe\xb3\xf1\xdc\x69\x85\x81\x99\x33\x99\xd6\x9a\x4c\x8a\xbe\x36\xb2\x82\xeb\x02\x45\x53\x0f\xb9\xb6\x91\xcc\x45\x0e\x5c\x80\x29\xb0\x2d\x41\x5b\xaa\x46\x99\xb1\x95\xd2\x68\xa3\x68\xb5\xee\x14\xd8\xe4\x70\xa2\x93\xcc\xd0\x86\x2a\x13\xdf\x63\xf2\xb1\xa1\xae\xf0\xf6\x5c\x32\x84\xff\x24\xf0\x7f\x78\xfc\x18\x66\x7f\xcf\xfe\x17\xfa\xc6\xf4\x1b\xad\x35\x4e\xdd\x73\x58\x4d\x10\xc8\xea\xbb\x01\xf8\x93\x72\xf3\x56\xaa\x5f\xf0\xc6\x8c\x9b\xe4\x11\x30\x0c\x4b\x7a\x1b\xc3\xd9\xb3\x67\xcf\x96\xbd\xb8\xd9\x40\xc6\x6f\x60\x2b\xd9\x2d\x54\x94\x31\xe7\x8c\x0c\x04\x22\x43\xb6\x02\x67\x6b\xd8\xf1\xbc\x30\x80\x82\xd5\x15\xd4\xda\xb2\xec\xa4\x42\x30\x05\x15\x70\x06\x25\x17\xf8\x00\x77\x6d\xb9\x9d\x9c\xde\xfc\xfa\xfe\xa2\xde\x1a\x85\xf8\x5e\x32\x9e\xf1\x71\x82\xcc\x53\x99\x58\x64\x24\x8c\x52\xad\x03\xe2\x01\xae\x8d\xac\xc8\xca\xa9\x12\x74\xbf\xa5\x8a\x84\x51\x81\x16\x63\x10\x4e\x72\x76\x70\x90\xc3\x11\x19\xb3\x6e\x01\xd9\x94\x4d\x0b\x2a\x72\x84\x2b\xbc\xad\x14\x6a\xfd\x5d\xb1\x2c\x17\x7b\x0f\x44\xa1\xe6\x7f\xe1\x48\xff\x50\xfd\x66\x03\x05\x4d\xaf\x20\x93\xca\xfa\xcb\xba\xa0\xf5\x96\xe6\x22\x45\xef\xa8\x94\x0a\xc8\x95\xbc\x06\x2a\x18\xf8\xbb\x35\x68\x4e\xfe\xed\x8b\x0c\xa7\xb2\xbc\x2b\x5d\xc7\x66\x33\x85\xa6\x56\xe2\xbe\x9a\x61\x8b\x8f\x26\x0b\x63\x5f\x33\x2c\xba\x3a\x35\x52\xd1\x9c\xf1\x86\x1a\xba\xb0\x38\xf4\xc4\x07\x75\x8d\xd9\xb6\xd1\x8c\xe8\xa3\x9d\xe3\x72\x71\xe7\x68\xb3\xd9\x6d\x10\x7e\x12\x68\x56\x8e\x24\x69\x57\x87\x66\xf4\x68\x87\x7e\x12\x2e\x9d\x01\xfd\xa6\x51\x98\x5d\xd9\x1e\x55\x70\xa3\x23\x23\x9b\x69\x7b\xe4\x8c\x29\x00\x2f\xc0\xf5\x1f\xb4\xe4\xcc\x4d\x59\xb6\xcd\x1f\xd3\x35\xd0\x57\x51\x85\xc2\x04\x61\x44\x19\x3b\xb7\x6b\x4d\x40\x4a\xba\xc5\x72\xcd\x45\x26\x49\x18\x29\xd7\xcc\x46\x14\x66\xa3\x6b\x36\x3e\x75\x71\xb2\x34\x92\x7e\x8b\xe2\xf6\xf8\x25\xd5\x0d\xa8\x23\x8a\x67\x7f\xc7\x7f\x0e\x0b\x15\x62\xb2\x99\xbe\x6d\x67\xc8\xe3\xab\xe9\x43\x46\x8c\xc1\x2e\x39\x54\xa0\xd1\xb4\x6b\xd8\x72\xb6\x6c\x36\xb0\xe7\xba\xa6\xa5\x9b\xd4\x6c\x95\x35\x7e\x4d\x02\xbb\x85\x35\xb9\x80\x0c\x58\xed\xa6\x80\x76\x6c\x77\xd9\x7e\x32\xc7\x67\x17\xf0\x89\x15\x33\xba\xd6\x48\x55\x5a\x40\x46\xd7\x95\xed\x69\x64\xe8\x80\x8c\xae\x53\xae\xd2\x12\xd7\x72\x2d\xa4\x69\xd8\x74\xc5\xc5\x52\x6a\x36\xab\xe3\x1b\x29\x8e\x2e\x9f\xf7\x83\x59\xd6\x76\x14\x5c\x83\x7d\x09\x8c\x46\xe3\x5a\xf4\x32\x94\x7f\x02\xa4\xd5\x39\x46\xe2\xe1\x8d\x81\xf8\x5a\xd7\x1b\xe0\x27\x61\x67\x6a\x3b\xcc\xf6\xcd\xf9\x75\x1b\x66\x71\x1f\x71\x3d\xb5\x9f\x05\x63\x6f\xe0\x9e\xf6\x6e\x40\xeb\x0b\x6f\x4f\xff\x30\xa8\x95\xf1\xa8\x72\xf6\x3c\x2e\x00\xf1\xdc\x8f\xe4\x2c\x1e\x78\x71\xc2\xc4\x45\x1e\x0f\x43\xb6\x27\x3b\x43\xc7\x9d\xc9\x3b\x13\x1c\x5c\x89\xfa\x3b\x00\x00\xff\xff\x32\xf6\x56\xa8\xcf\x12\x00\x00") +var _staticFiltersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\xdd\x73\xd4\x36\x10\x7f\xcf\x5f\xb1\x55\x19\x62\xc3\x9d\x8f\xd0\x97\x8e\xc1\x74\xd2\x30\x30\x9d\x29\xfd\x20\x43\xfb\xac\xb3\xd6\xb6\x12\x9f\x64\x24\xf9\x92\x14\xee\x7f\xef\x48\x96\xbf\x7d\x24\x3c\xc4\x4f\xb6\x77\x57\xfb\xd3\x7e\xef\xe6\x19\xe4\xa5\xdc\xd2\x52\x83\x2e\xe8\x19\x3c\xdb\x80\x7d\x36\x1b\xf7\x19\x5d\xe9\x93\x93\x01\xcb\x79\x6d\x64\x2a\x77\x55\x89\x06\x57\x70\x21\xe5\x35\x47\xbd\x82\xbf\x6b\x54\x77\x97\x46\x71\x91\xaf\xe0\x93\xd0\x88\xf0\x6c\xe3\x04\xf1\xb6\x92\xca\x20\x83\x77\xbc\x34\xa8\xb4\xfd\xbf\xa7\xaa\xfb\x4c\x20\xc8\x6a\x91\x1a\x2e\x45\x10\xc2\x97\x93\x13\xab\xdc\x32\x68\x2c\x31\x35\xd2\xb1\x7c\x71\x7f\xed\x93\x39\xb1\x18\xc8\x8f\xcd\x1b\x59\x75\x24\x9e\x4a\xd1\x13\xd6\xf6\x93\x38\xe2\xe1\x55\x7f\x2a\x65\xec\x57\xca\x72\x84\x04\x3a\xb5\x06\x6f\x4d\x38\xd0\xf1\x24\x42\x9a\x16\xc1\x93\x80\xe8\x8a\x8a\xc8\xd0\x9c\x84\xab\x9e\x9d\xaf\xc0\xd0\x7c\x28\xe0\xb4\x67\x10\x3c\x09\x2c\x21\xb2\xe7\x05\x21\x24\x09\x4c\x4f\x6e\x1f\x8b\x24\x2d\xae\x75\xbd\x83\xc4\x99\xb9\xc1\xf0\x6a\xc6\xe8\x4f\xac\x14\x56\x28\x58\x40\x5e\x5b\x44\x90\x96\x54\xeb\xe4\x74\xeb\x2e\x62\x68\xbe\x76\x6f\xa7\xc0\x59\x72\x6a\x3f\x53\x59\x0b\x6b\x02\x02\xcf\x5b\x35\xcf\x81\x9c\x02\xa3\x86\x36\xbc\x6b\xcb\x3a\x21\xbf\x79\xbd\xb1\xa7\xbf\x21\x13\x1c\x87\xee\xeb\xe0\x29\x43\x83\xd6\x15\xa3\x66\x64\xce\xe1\x85\xbd\x97\xa3\x4f\x96\x8b\x8b\x3c\x08\xbd\xa8\x0f\x31\x2f\x5d\xca\x94\x5a\x59\xd0\x12\xb8\x39\xd5\x80\x54\xdf\x81\x91\xd6\x36\x0a\x81\x9b\x4e\x66\x10\x68\xd1\x25\x9a\x80\x7c\x26\xab\x4e\xcb\x7b\x34\xfe\x35\x08\xa3\x2b\xc9\x45\x40\x56\x24\x9c\xa8\x54\x58\x4a\xca\x80\x96\xa8\x8c\xee\x08\x2e\x66\xa3\x8f\x8e\x16\x2c\x5c\x93\x0b\x6e\x8e\x5d\xb2\xa5\x73\x5a\x36\xea\x07\x0a\x9b\xb0\xe8\x62\x39\x6a\x82\x33\x8c\xac\x2b\x02\xc2\x30\xa3\x75\x69\xd6\xb5\x46\x46\x5c\xc4\x90\x8c\x96\x1a\x09\x7c\xfd\x0a\xdf\x21\x96\x80\x13\x9b\x86\x9a\x35\xb0\x46\x05\x15\xd5\x1a\x19\xfc\xf2\x39\x69\xce\x01\xed\x0c\x38\x8e\xdf\xe1\x05\x20\x59\xd4\xbe\xa7\x65\x30\x08\x8e\x03\x60\xa9\x71\xae\x53\xc8\x99\xaa\x15\xa4\x05\xa6\xd7\xd6\x1c\x37\x08\x05\xdd\x23\xf8\x4b\xf8\x8c\x86\xd4\x95\x92\x6f\x42\xf2\xd5\x26\xca\xad\xdf\xbd\x78\x43\x8c\xf6\x2f\xa7\x51\x6b\x0d\x3f\x39\x20\x49\xa0\x16\x0c\x33\x2e\x90\x2d\x65\x65\x03\xbd\x01\xb2\xb2\x96\xf3\x55\xaf\x85\x3a\x13\x78\x88\xcd\xc6\x1e\xf3\x45\xeb\x78\x86\x9d\x1c\x8f\xaa\x73\x65\x75\x8c\x7e\x45\xba\x2a\xb9\x71\x51\xde\x9f\x78\xcc\x73\x64\xcc\x44\x3c\x71\x4b\x15\xc4\x5c\x54\xb5\x21\xa1\xad\x75\xda\xbd\x07\x63\xf3\x98\xbb\x0a\x69\x81\x94\x5d\xe9\x78\xc1\x72\x3b\x2e\x7e\x47\x91\x9b\x22\x86\xb3\xd5\x8c\x5a\x70\x61\x62\x30\xaa\xc6\x39\xad\xe4\x3b\x6e\x62\x38\x7b\x39\x27\x09\xba\xc3\x18\x08\x1d\x74\x1c\x32\xe7\xd2\xb2\x56\x29\xc6\xa3\xc6\x14\x0d\x3f\x82\xf0\x9e\x6a\x06\x7d\xc9\x9f\xda\x7b\x5c\xf5\xbd\x31\x27\xf7\x5f\x32\x77\x6f\x46\x42\x19\x23\x9d\xe8\xd8\xed\x6d\x2f\x0a\x66\xd4\xc3\xb0\x66\x2d\x29\x90\x22\x20\xdc\xe0\xee\x9c\x31\x64\x60\xdf\x3e\xe2\x4e\xee\xd1\xe9\x6a\x21\xe3\x1e\xc5\xac\xfd\xb4\xb5\xf2\x72\x50\x2b\x5f\x4d\x33\x98\x32\x06\xbe\x89\x80\xef\x32\x12\x04\xde\xd8\x66\x33\xcb\x32\xa7\x26\xb2\x11\xe2\x0a\x58\x07\x8b\x2c\xe5\x58\x77\xe7\x46\xca\x32\x7f\xb3\xdd\x7c\xd3\x0a\x03\x33\x67\x32\xad\x35\x99\x94\x7a\x6d\x64\x05\x37\x05\x8a\xa6\x0c\x72\x6d\xe3\x98\x8b\x1c\xb8\x00\x53\x60\x5b\x7a\xb6\x54\x8d\xf2\x62\x2b\xa5\xd1\x46\xd1\x6a\xdd\x29\xb0\xa9\xe1\x44\x27\x79\xa1\x0d\x55\x26\xbe\xc7\xe4\x63\x43\x5d\xe3\xdd\x85\x64\x08\x3f\x24\xf0\x33\x3c\x7d\x0a\xb3\xbf\x67\x3f\x85\xbe\x1d\xfd\x45\x6b\x8d\x53\xf7\x1c\x56\x13\x04\xb2\x7a\x34\x00\xff\x52\x6e\xde\x49\xf5\x07\xde\x9a\x71\x6b\x3c\x02\x86\x61\x49\xef\x62\x38\x7b\xf1\xe2\xc5\xb2\x17\x37\x1b\xc8\xf8\x2d\x6c\x25\xbb\x83\x8a\x32\xe6\x9c\x91\x81\x40\x64\xc8\x56\xe0\x6c\x0d\x3b\x9e\x17\x06\x50\xb0\xba\x82\x5a\x5b\x96\x9d\x54\x08\xa6\xa0\x02\xce\xa0\xe4\x02\x1f\xe0\xae\x2d\xb7\xf3\xd2\xdb\x3f\x3f\x5c\xd6\x5b\xa3\x10\x3f\x48\xc6\x33\x3e\x4e\x90\x79\x2a\x13\x8b\x8c\x84\x51\xaa\x75\x40\x3c\xc0\xb5\x91\x15\x59\x39\x55\x82\xee\xb7\x54\x91\x30\x2a\xd0\x62\x0c\xc2\x49\xce\x0e\x0e\x72\x38\x22\x63\xd6\x2d\x20\x9b\xb2\x69\x41\x45\x8e\x70\x8d\x77\x95\x42\xad\x1f\x15\xcb\x72\xa9\xf7\x40\x14\x6a\xfe\x1f\x8e\xf4\xcf\xda\x78\x41\xd3\x6b\xc8\xa4\xb2\x1e\xb3\x4e\x68\xfd\xa5\xb9\x48\xd1\xbb\x2a\xa5\x02\x72\x25\x6f\x80\x0a\x06\xfe\x76\x0d\x9e\x47\xb8\xcc\x70\x1e\xcb\xbb\xf2\x75\x6c\x2a\x53\x68\x6a\x25\xee\xab\x1b\xb6\x00\x69\xb2\x30\xf0\x35\x63\xa2\xab\x55\x23\x15\xcd\x19\x6f\xa9\xa1\x0b\x2b\x43\x4f\x7c\x50\xe7\x98\xed\x19\xcd\x70\x3e\xda\x36\xae\x16\xb7\x0d\xf0\x19\xed\x76\x87\xe6\xf4\xa8\x59\x36\x92\xa4\x5d\x1a\x9a\xc9\xa3\x1d\xf7\x49\xb8\x74\x06\xf4\x3b\x46\x61\x76\x65\x7b\x54\xc1\x8d\x8e\x8c\x6c\xe6\xec\x91\x33\xa6\x00\xbc\x00\xd7\xff\xd0\x92\x33\x37\x63\xd9\x46\x7f\x4c\xd7\x40\x5f\x45\x15\x0a\x13\x84\x11\x65\xec\xc2\x2e\x34\x01\x29\xe9\x16\xcb\x35\x17\x99\x24\x61\xa4\x5c\x43\x1b\x51\x98\x8d\xaf\xd9\xf4\xd4\xc5\xc9\xd2\x38\xfa\x3d\x8a\xdb\xe3\x97\x54\x37\xa0\x8e\x28\x9e\xfd\x1d\xff\x39\x2c\x54\x89\xc9\x4e\xda\x8d\x90\xc7\x97\xd2\x87\x8c\x19\x83\x2d\x72\xa8\x40\xa3\x69\x17\xb0\x63\xd9\xb2\xd9\xc0\x9e\xeb\x9a\x96\x6e\x5a\xb3\xb5\xd6\xf8\x15\x09\xec\x06\xd6\x64\x03\x32\x60\xb5\x9b\x05\xda\xa1\xdd\x65\xfc\x22\x46\xbb\x7e\x4f\x2c\x99\xd1\xb5\x46\xaa\xd2\x02\x32\xba\xae\x6c\x6f\x23\x43\x27\x64\x74\x9d\x72\x95\x96\xb8\x96\x6b\x21\x4d\xc3\xa6\x2b\x2e\x96\xd2\xb3\x59\x1c\xdf\x4a\x71\x74\xf5\xbc\x1f\xcc\xb2\xb6\xa3\xe0\x1a\xec\x4b\x60\x34\x1a\xd7\xaa\x1f\x03\x4a\xab\x75\x8c\xc5\x03\x1c\x43\xf1\x15\xaf\xd7\xfb\x9b\xb0\xb3\xb5\x1d\x6a\xfb\x36\x7d\xde\x06\x5b\xdc\xc7\x5d\x4f\xed\xa7\xc2\xd8\x9b\xb8\xa7\xbd\x1f\xd0\xfa\xf2\xdb\xd3\x3f\x0e\x2a\x66\x3c\xaa\x9f\x3d\x8f\x0b\x43\xbc\xf0\xa3\x39\x8b\x07\x7e\x9c\x30\x71\x91\xc7\xc3\xc0\xed\xc9\xce\xd4\x71\x67\xf4\xce\x04\x07\x57\xa8\xfe\x0f\x00\x00\xff\xff\xeb\x84\xe7\x17\xcf\x12\x00\x00") func staticFiltersJsBytes() ([]byte, error) { return bindataRead( @@ -1358,7 +1358,7 @@ func staticManagedJsUnderscoreMinMap() (*asset, error) { return a, nil } -var _staticProgressJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x4d\x8f\xd3\x30\x10\xbd\xe7\x57\x0c\x7b\x72\xaa\x55\xe2\x22\x71\x49\xd5\x13\x07\xb4\x17\xb4\x2a\x70\x46\x26\x3b\x69\x8d\xe2\x71\xe4\x71\x5a\x10\xca\x7f\x47\x76\xbe\xb7\xad\x40\xda\x39\x25\x7e\xe3\x37\x6f\x66\x9e\xf3\x0d\x1c\x6b\xfb\x43\xd5\x0c\x9f\x9f\x9d\x3d\x3a\x64\x86\x4d\x0e\x21\xf2\x1c\xa8\x19\xce\xb2\x9f\x9c\x24\x8b\xe4\x6f\xc4\x88\xb0\xc9\xe3\x21\xfe\x6a\xac\xf3\xf8\x02\x0b\x86\xe4\xac\xdc\xfc\xbf\x07\x51\xb5\x54\x7a\x6d\x49\xa4\xf0\x27\x49\x02\x7f\xc8\xf0\xda\xa0\xdb\xcd\xff\x9a\xb4\x87\x3d\xac\x92\x61\x88\x49\x60\x56\x5a\xaa\xf4\xb1\x75\x28\x66\x34\x84\xd1\xa4\x4d\x6b\x0a\x90\x99\xdc\x3e\xae\x20\x3e\xd9\xcb\x97\x46\x13\xa1\x2b\xa0\x52\x35\xe3\x1a\x47\xc5\x9a\x8e\x05\x3c\xd4\x9a\x50\xb9\x87\x09\xec\xd2\x5d\xfc\xee\x16\x2a\x1d\x32\xfa\xaf\x41\xfa\x3d\xad\xba\x02\x11\x7b\x83\x77\xfb\x7d\x5f\x6f\x09\x87\x28\x6b\x54\xee\x89\x3c\xba\xb3\xaa\xfb\xe4\xa1\xd4\x18\x7e\xac\x10\xae\xcf\x50\x77\xa5\xa7\xb4\xa6\xa9\xd1\xe3\x3d\x35\xd3\xe0\x0e\x93\x70\xb1\xa8\x35\x0f\xf6\xc5\x12\x8a\x1b\x0d\x37\xaa\xe5\xb7\xb3\x33\x7a\x21\x33\x79\x83\x9f\xbd\x72\x77\xf7\xde\x27\x60\xf3\xdd\x04\x23\xbd\xff\x20\x77\xc1\x9a\x8a\xb4\x51\x21\x37\x62\xa0\x09\x0c\x5f\x5d\x89\xce\x8b\x5e\xcd\x3e\xa1\x3f\x60\xe5\x90\x4f\x07\xe5\x51\xa4\xb0\x81\xad\x94\x32\x85\x7c\x24\x8f\xb4\x27\x7b\x01\xa3\xe8\xf7\x70\xfd\x82\x70\x52\x67\xfc\x67\x33\xff\x31\x87\x71\x9b\x8c\x7e\xda\xfa\xcd\x7e\xd7\x75\x34\x95\x62\x9b\xc9\x41\x26\x2f\x08\xbb\xc7\x51\xf9\xab\x89\x3a\xf4\xad\xa3\x05\xe3\x13\x69\x5f\xc4\xb7\x35\x9b\xfe\x39\xac\xb4\xe8\x37\x3b\x9f\x7e\x1c\x9c\x54\x4c\x9e\x9a\xb1\xd8\x56\xd1\xef\xea\xd5\x69\x6c\xb6\x58\xbc\x8b\x49\x4f\x27\xd2\x74\x97\xfc\x0d\x00\x00\xff\xff\xb5\xfc\x55\x24\x67\x04\x00\x00") +var _staticProgressJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x86\x3d\x39\xd5\x2a\x71\x91\xb8\xa4\xea\x89\x03\xda\x03\x68\x55\xe0\x03\x4c\x76\xd2\x1a\x25\xe3\xc8\xe3\xb4\x20\x94\x7f\x47\x76\xd2\xd8\xdd\xb6\x02\x69\xe7\x94\xf8\x8d\xdf\xbc\x99\x79\x2e\x57\xb0\x6f\xcd\x0f\xd5\x32\x7c\x79\xb6\x66\x6f\x91\x19\x56\x25\xf8\x28\x4b\xa0\x7e\x3e\x2b\x7e\x72\x96\x25\xc9\xdf\x89\x11\x61\x55\x86\x43\xfc\xd5\x1b\xeb\xf0\x05\x12\x86\xec\xa8\x6c\xfc\xdf\x82\x68\x06\xaa\x9d\x36\x24\x72\xf8\x93\x65\x9e\xdf\x67\x38\xdd\xa1\xdd\xc4\x7f\x4d\xda\xc1\x16\x2e\x92\x61\x8e\x45\x60\x51\x1b\x6a\xf4\x7e\xb0\x28\x22\xea\xa3\xd3\xa4\xbb\xa1\xab\x40\x16\x72\xfd\x78\x01\xf1\xc1\x9c\xbe\xf6\x9a\x08\x6d\x05\x8d\x6a\x19\x2f\x71\x54\xac\x69\x5f\xc1\x43\xab\x09\x95\x7d\x58\xc0\x31\xdf\x84\xef\x31\x51\x69\x91\xd1\x7d\xf3\xd2\xef\x69\xd5\x0d\x88\xd0\x1b\xbc\xdb\x6e\xa7\x7a\x29\xec\xa3\x6e\x51\xd9\x27\x72\x68\x8f\xaa\x9d\x92\xe7\x52\xe7\x70\xe7\x0a\xfe\x7a\x84\xc6\x2b\x3d\xb5\xe9\xfa\x16\x1d\xde\x53\xb3\x0c\x6e\xb7\x08\x17\x49\xad\x38\xd8\x17\x43\x28\x6e\x34\xdc\xab\x81\xdf\xce\xce\xe8\x84\x2c\xe4\x0d\x7e\x76\xca\xde\xdd\xfb\x94\x80\xfd\x67\xef\xa3\xf7\x1f\xe4\xc6\x3b\x53\x91\xee\x94\x4f\x0d\x10\x68\x82\x8e\xaf\x6e\x04\xe3\x05\xab\x16\x9f\xd0\xed\xb0\xb1\xc8\x87\x9d\x72\x28\x72\x58\xc1\x5a\x4a\x99\x43\x39\x73\x07\xd6\x83\x39\x41\xa7\xe8\xf7\x7c\xfb\x84\x70\x50\x47\xfc\x67\x2b\xff\x31\x85\xf3\x2e\x19\xdd\xb2\xf3\x9b\xdd\x5e\xd6\xd1\x54\x8b\x75\x21\x67\x95\x9c\x10\x8e\x8f\xb3\xf0\x57\xe3\xb4\xe8\x06\x4b\x09\xe1\x13\x69\x57\x85\x87\x15\x1d\xff\xec\xf7\x59\x4d\x6b\x8d\xa7\x1f\x67\x1b\x55\x8b\xa1\x22\x16\xba\xaa\xa6\x45\xbd\x3a\x0d\xbd\x56\xc9\xa3\x58\xf4\x8c\x22\xcf\x37\xd9\xdf\x00\x00\x00\xff\xff\xf7\xa0\x2f\x9a\x64\x04\x00\x00") func staticProgressJsBytes() ([]byte, error) { return bindataRead( @@ -1378,7 +1378,7 @@ func staticProgressJs() (*asset, error) { return a, nil } -var _staticQuerystringJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4b\x6f\xe3\x36\x10\xbe\xfb\x57\x4c\x89\xc0\x90\x6c\x41\x8a\x8b\xb6\x40\xed\x0a\x39\xf5\x50\xa0\x40\x53\x07\x39\x69\xb5\x00\x23\x8d\x2d\xae\x69\x52\x26\x29\x3f\x10\xf8\xbf\x2f\xa8\x97\x45\xc5\x58\xec\x1e\x96\x27\x9b\x9c\xf9\xe6\x9b\x6f\x1e\x8a\x66\x80\xe7\x52\x2a\x83\x39\xfc\x5f\xa1\xba\xbc\x18\xc5\xc4\x16\x66\xd1\xe4\x48\x95\x73\x15\x83\xb7\xa9\x44\x66\x98\x14\x9e\x0f\xef\x93\x09\x00\x80\x35\x2a\xa9\xd2\x08\x31\x38\xaf\xd0\x1e\x6b\x70\xa4\x4a\x43\x0c\x49\x1a\xf4\xd7\xf6\x14\x54\x17\x2b\xc7\xf0\x00\x31\xe4\x32\xab\xf6\x28\x4c\xf8\xba\xfe\x37\xd4\x25\x67\xc6\x23\x4f\xc4\x4f\x16\xe9\xcd\x96\x6d\xc0\x3b\xc0\x2f\x71\x0c\x95\xc8\x71\xc3\x04\xe6\xc3\x98\xf6\x58\xa8\x43\xe7\x3f\x25\xfe\xca\x79\xdd\x48\x05\x9e\x8d\xc8\x20\x86\xc7\x15\x30\xf8\x0b\x0e\x21\x47\xb1\x35\xc5\x0a\xd8\x7c\x3e\x86\xeb\xf8\x5a\xd4\x84\xa5\x1d\x70\x3c\x06\x6e\x33\xd1\x89\x35\x4e\x1e\xd3\x14\xe2\xda\x2f\xd4\x9c\x65\xe8\x2d\xfc\xf0\x8b\x64\xe2\x8e\xe3\x75\xf2\xf1\x97\x42\x53\x29\x51\xe3\x35\xc6\xd7\xd5\x4d\xf5\xaa\xcc\xa9\x71\x64\xdf\xe1\x25\x80\x23\xe5\x15\x0e\xd9\x47\x33\x28\x8c\x29\xf5\x32\x8a\xb6\x4c\x9b\x70\xcb\x4c\x51\xbd\x85\x99\xdc\x47\x78\xce\x28\x3f\x44\xbf\xfe\xf9\xc7\xe2\xb7\xc5\xef\xb6\xe6\xc3\x62\xbc\x51\x8d\xaf\x8a\xdb\xc2\x71\x99\x51\x1b\x22\x2c\x95\x34\x32\x93\x3c\x00\x12\x45\x24\x80\xfe\xa1\x90\xda\x0c\xfe\x96\xd4\x14\x82\xee\x31\x6d\xd3\x25\xbe\x5b\xfa\x4a\x71\xb7\xb5\xfa\xaa\xf7\x10\x1a\xa9\xca\x0a\xd7\x4d\xe0\xe9\x99\x2a\xba\x87\x18\x76\x78\x81\x39\x90\x98\xc0\xbc\xc9\xd9\xb5\x2c\xad\x99\x6d\x3a\xf2\x64\x2d\x3a\xc7\x56\xbf\x5a\x97\x08\xfe\xd9\x80\x29\x10\x48\x13\x8a\x80\x6e\xd8\xe0\x99\x69\xa3\x03\xfb\x26\xe0\xad\x62\x3c\xef\xe0\x36\x4a\xee\x81\x19\xa7\x0f\xdd\x54\xc6\x7d\x63\x85\xdc\xe1\x65\x8d\x5b\x3c\x43\x6c\x79\xc0\x1a\xb7\x7f\x9f\x4b\x8f\x78\xc9\xa7\xa7\x69\xea\x5b\x7a\x6d\x32\xc9\xe7\x69\x3a\xb3\x8d\xe1\x40\x34\x44\x6b\x06\x2d\x35\xa0\x5c\x21\xcd\x2f\x41\xd7\x04\x03\x4a\xf7\x69\x85\x7b\x6a\xb2\xc2\xeb\x98\xf8\xf5\xec\x88\x8a\xf3\x7b\x7d\xde\x6b\x37\xc2\x50\x58\x72\x9a\x61\x8f\x12\x00\x79\x58\x0c\xd5\x1d\xb7\x34\x20\xd7\x08\xef\x36\x83\xff\x4c\x81\xea\xc4\x34\x06\x40\xf3\x1c\x98\x01\x23\x01\x45\x0e\x72\x03\x07\x1b\xa3\x15\xff\x7b\xc9\x58\xb9\xa6\x6e\x65\x9d\xd0\x77\xa6\xe9\xc4\x44\x2e\x4f\x61\xc1\xb4\x91\xea\xd2\x65\xf3\x62\xa8\x41\xef\xfd\x1a\x00\x21\x41\xdf\xf3\xf3\x36\xae\xff\x71\xee\x14\xee\xe5\x71\x3c\x77\xe3\x8d\xf7\x33\x67\xc7\x6e\xb6\x61\x59\x9e\xed\xfa\xf5\xfc\xd1\x76\x4c\x76\x78\x49\xbf\xbd\x22\x73\xe4\x68\x10\x1a\x53\x57\xbf\x1f\xd3\xaa\x99\xb1\x87\xb0\xd6\xcc\x3b\xf8\x03\x2e\x57\x47\xbf\x76\xa1\xdd\x68\xd4\xdc\x97\xcd\x17\xe4\x96\xe5\x0b\x9a\x65\xdb\xda\xb7\xcb\x75\xad\xfb\xb2\xd5\xbf\x87\xbd\x7a\x36\xdc\xd7\x00\x00\x00\xff\xff\x3d\x56\x51\x89\xc7\x06\x00\x00") +var _staticQuerystringJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x5b\x8f\xda\x3a\x10\x7e\xe7\x57\xcc\xb1\x56\x28\x81\x28\x59\x8e\xce\xa9\x54\x68\xb4\x4f\x7d\xa8\x54\xa9\x5b\x56\xfb\x94\xa6\x92\x37\x19\x88\x8b\xb1\x83\xed\x70\xd1\x8a\xff\x5e\x39\x17\x88\xb3\xa8\x6a\x1f\xea\x27\xb0\x67\xbe\xf9\xe6\x9b\x4b\xa2\x09\xe0\xb1\x94\xca\x60\x0e\x5f\x2b\x54\xa7\x27\xa3\x98\x58\xc3\x24\x1a\xed\xa9\x72\xae\x62\xf0\x56\x95\xc8\x0c\x93\xc2\xf3\xe1\x75\x34\x02\x00\xb0\x46\x25\x55\x1a\x21\x06\xe7\x15\xda\x63\x0d\xf6\x54\x69\x88\x21\x49\x83\xcb\xb5\x3d\x05\xd5\xc5\xc2\x31\xdc\x41\x0c\xb9\xcc\xaa\x2d\x0a\x13\x3e\x2f\x3f\x87\xba\xe4\xcc\x78\xe4\x81\xf8\xc9\x2c\xbd\xda\xb2\x15\x78\x3b\xf8\x27\x8e\xa1\x12\x39\xae\x98\xc0\xbc\x1f\xd3\x1e\x0b\xb5\xeb\xfc\xc7\xc4\x5f\x38\xaf\x2b\xa9\xc0\xb3\x11\x19\xc4\x70\xbf\x00\x06\x1f\x60\x17\x72\x14\x6b\x53\x2c\x80\x4d\xa7\x43\xb8\x8e\xaf\x45\x4d\x58\xda\x01\xc7\x43\xe0\x36\x13\x9d\x58\xe3\xe4\x3e\x4d\x21\xae\xfd\x42\xcd\x59\x86\xde\xcc\x0f\x7f\x48\x26\x6e\x38\x9e\x47\x6f\x7f\x29\x34\x95\x12\x35\x5e\x63\x7c\x5e\x5c\x55\xaf\xca\x9c\x1a\x47\xf6\x0d\x9e\x02\xd8\x53\x5e\x61\x9f\x7d\x34\x81\xc2\x98\x52\xcf\xa3\x68\xcd\xb4\x09\xd7\xcc\x14\xd5\x4b\x98\xc9\x6d\x84\xc7\x8c\xf2\x5d\xf4\xef\xfb\x77\xb3\xff\x66\xff\xdb\x9a\xf7\x8b\xf1\x42\x35\x3e\x2b\x6e\x0b\x07\x5c\x66\xd4\xc6\x08\x4b\x25\x8d\xcc\x24\x0f\x80\x44\x11\x09\xae\x0f\x85\xd4\xa6\xf7\xb7\xa4\xa6\x10\x74\x8b\x90\xb6\x09\x13\xdf\x2d\x7e\xa5\xb8\xdb\x5c\x97\xba\x5f\x30\x34\x52\x95\x15\xae\x9b\xc0\xc3\x23\x55\x74\x0b\x31\x6c\xf0\x04\x53\x20\x31\x81\x69\x93\xb5\x6b\x59\x5a\x33\xdb\x76\xe4\xc1\x5a\x74\x8e\xad\x82\xb5\x32\x11\x7c\x5a\x81\x29\x10\x48\x13\x8a\x80\x6e\xd8\xe0\x91\x69\xa3\x03\xfb\x26\xe0\xa5\x62\x3c\xef\xe0\x56\x4a\x6e\x81\x19\xa7\x13\xdd\x54\x86\x9d\x63\xa5\xdc\xe0\x69\x89\x6b\x3c\x42\x6c\x79\xc0\x12\xd7\x1f\x8f\xa5\x47\xbc\xe4\xdb\xc3\x38\xf5\x2d\xbd\x36\x99\xe4\xfb\x38\x9d\xd8\xd6\x70\x20\x1a\xa2\x35\x83\x96\x1a\x50\xae\x90\xe6\xa7\xa0\x6b\x83\x1e\xa5\xdb\xb4\xc2\x2d\x35\x59\xe1\x75\x4c\xfc\x7a\x7a\x44\xc5\xf9\xad\x4e\xbf\x68\x37\xc0\x50\x58\x72\x9a\xe1\x05\x25\x00\x72\x37\xeb\xab\x3b\x6c\x6a\x40\xae\x11\x5e\x6d\x06\x5f\x4c\x81\xea\xc0\x34\x06\x40\xf3\x1c\x98\x01\x23\x01\x45\x0e\x72\x05\x3b\x1b\xa3\x15\xff\x77\xc9\x58\xb9\xc6\x6e\x65\x9d\xd0\x37\xe6\xe9\xc0\x44\x2e\x0f\x61\xc1\xb4\x91\xea\xd4\x65\xf3\x64\xa8\x41\xef\xf5\x1c\x00\x21\xc1\xa5\xeb\xa7\x6d\x5c\xff\xed\xe4\x29\xdc\xca\xfd\x70\xf2\x86\x3b\xef\xef\x4e\x8f\xdd\x6e\xfd\xc2\x3c\xda\x15\xec\xf9\x83\x0d\x99\x6c\xf0\x94\xfe\x7a\x4d\xe6\xc8\xd1\x20\x34\xa6\xae\x82\x7f\xa6\x56\x33\x65\x77\x61\xad\x9a\xb7\xf3\x7b\x5c\xce\x8e\x82\xed\x52\xbb\xd2\xa8\xb9\xcf\x9b\xaf\xc8\x35\xcb\x27\x34\xf3\xb6\xb9\xaf\x97\xcb\x5a\xf9\x79\x5b\x81\x0b\xec\xd9\xb3\xe1\x7e\x06\x00\x00\xff\xff\xbb\xf6\x67\x94\xcb\x06\x00\x00") func staticQuerystringJsBytes() ([]byte, error) { return bindataRead( @@ -1398,7 +1398,7 @@ func staticQuerystringJs() (*asset, error) { return a, nil } -var _staticSentryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x8f\xe3\x20\x10\x85\x7b\x7e\xc5\x13\x97\x02\x72\x89\xe9\x13\xa5\xba\xab\xaf\xb8\xb4\xdb\x10\x33\x76\x58\xe1\x71\xc4\x10\x6b\xa3\x95\xff\xfb\x0a\x3b\xab\x2d\x56\x5a\x2a\x98\x79\xbc\xf9\xe6\xb9\x2d\xfa\x34\x5e\x7c\x12\xfc\xf7\x13\x31\xb6\x0e\xf5\x38\x87\x5c\xdf\xcd\xab\x28\x65\xba\x3b\xb7\x25\x8e\x6c\x2c\xde\x95\x72\x0e\x91\x63\x81\x10\x97\xfc\x40\x9b\x22\x71\x41\xec\x3e\x0b\x41\x18\x51\x20\x54\x54\xec\x60\x36\x46\x5f\xc6\xf0\xd0\xb6\x09\xbe\x78\xa3\x17\xdf\x7d\x10\xd6\xb6\xda\x01\x93\xcf\xcb\x9f\x13\x7e\x90\x36\x99\x6e\xc9\xb7\x64\xf4\x8b\xd3\x3b\x68\xa7\xed\x51\x7d\x71\x22\x16\xa1\xd4\xa1\xf5\x8c\xce\xc7\x54\x71\x22\x4f\x3e\xc5\x80\xbf\xe7\x7f\x95\xe7\xe6\x45\x28\x28\xa0\x32\xd6\xb9\x58\x57\x6e\xda\x91\xbb\xd8\x9b\x20\xbc\x7b\xd6\x81\x4c\x89\xbc\xd0\xe1\x1b\xd2\x9d\x85\x68\x3f\x51\x96\x38\xb2\xb6\x8b\x7c\xb6\x4d\x64\x29\x3e\x25\xb3\x40\xcd\x68\x7d\x69\xaf\x30\x94\xf3\x98\xed\xd3\xb4\xae\x39\x48\x8f\x13\xf4\x79\x0d\x6a\x69\x1f\xa0\xf1\x7b\xbd\x36\x03\x89\xf8\x9e\x8e\x8b\x7e\x63\xf4\xaf\x35\x80\xa5\xa9\x6d\x53\xe8\xad\x98\x41\xfa\x1a\xc6\x30\x4e\xf4\x27\x79\x11\xa3\xaf\x31\x04\xe2\x35\x8f\x59\xcd\x4a\xcd\xb6\x72\x7c\x04\x00\x00\xff\xff\xee\x4f\x3c\x0e\xdb\x01\x00\x00") +var _staticSentryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x31\x8f\xe2\x30\x10\x85\xfb\xfc\x8a\x91\x8f\xc2\xe6\x20\xe9\x41\x54\x77\xf5\x15\x47\x7b\xcd\x10\x4f\xc2\x9c\x9c\x09\xf2\x98\x68\xd1\x2a\xff\x7d\xe5\x04\x58\x60\xa5\x7d\x45\x14\x7b\xe6\x3d\x7f\x7a\xd5\x12\xda\xd0\x1f\x30\x28\xfc\xc5\x81\x04\x96\x15\x64\x55\x15\xc4\x7c\x2e\xff\x6b\x51\xd8\xe6\x2c\x75\xe2\x5e\xac\x83\xf7\xa2\xb8\xce\x59\x38\x81\x92\xa4\x78\x81\x3a\x30\x49\x02\x6e\x6e\x17\x5e\x05\x58\x41\x29\x4d\xeb\xdc\x80\x5d\x58\x73\xe8\xfd\xc5\xb8\xd2\x63\x42\x6b\xa6\xfc\xb5\x57\x31\x2e\xc7\xc2\x55\x03\xc6\xc9\xbd\x83\x6f\x0c\x65\xa4\x53\xc0\x9a\xac\xf9\x57\x99\x15\x98\xca\xb8\xed\x3d\xe1\xc6\x0e\x9c\x94\x42\x03\x35\x0a\x34\xc8\x21\x53\xb0\x0c\x18\xd8\xc3\xef\xfd\x9f\xcc\x77\x42\x55\xf2\x77\x67\x26\xff\x24\xc9\x9a\x4a\x29\xeb\x5e\x1a\x6e\xad\x57\x59\xbd\xcc\xb3\x22\x05\x42\xa5\xcd\x17\xe0\xb3\x28\xd1\x7a\xa0\xa8\xdc\x8b\x71\x4f\xc6\xd1\x95\x2c\x9a\x30\x04\xfb\x80\x3e\x42\x8d\xa9\x3e\x82\xa5\x18\xfb\xe8\x5e\x1e\xcb\xd5\x74\xda\xc2\x0e\xcc\x7e\xae\x79\x5a\xdb\x80\x81\x9f\xf3\x6f\xd9\x91\x2a\xb6\xb4\x7d\xf2\x2d\xac\xf9\x31\x97\x37\x2d\x19\x57\x26\x7a\x4b\xb6\xd3\x36\x17\xd9\xf5\x03\xfd\x0a\xa8\x6a\xcd\x91\xbd\x27\x79\xec\x72\x2c\xe6\x6f\x31\xba\xcc\xf9\x11\x00\x00\xff\xff\x25\x7e\x61\xb1\x2f\x02\x00\x00") func staticSentryJsBytes() ([]byte, error) { return bindataRead( @@ -1418,7 +1418,7 @@ func staticSentryJs() (*asset, error) { return a, nil } -var _staticSilenceJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x1b\x6b\x93\xdb\xb6\xf1\xbb\x7f\xc5\x86\x75\x63\x2a\x96\x28\x3b\x6d\x33\x1d\xd9\x72\xc6\xce\x35\xcd\x75\xe2\xc4\x93\x3b\xb7\xf5\xb8\x6e\x07\x47\xae\x44\xdc\x41\x00\x03\x80\xd2\xa9\xce\xfd\xf7\x0e\x1e\x7c\x3f\x24\xf9\xf1\xad\xf8\xe0\x13\xc1\xdd\xc5\xbe\xb0\x8b\x5d\xd0\xf3\xaf\x60\xcd\xc4\x15\x61\x0a\x36\x62\x83\x5c\xc3\x57\x73\x30\x63\x3e\xf7\x13\xd1\xb5\xba\x77\xaf\x06\xf6\x9c\xa1\xd4\x6a\x0a\x97\xb8\xc9\x18\xd1\xa8\xa6\xf0\x9a\x2b\xc4\x29\xbc\x3e\x87\xaf\xe6\x16\x16\x6f\x33\x21\x35\x26\x70\x41\x19\xf2\x18\xcd\xfc\x96\xc8\xf2\x71\x09\xe1\x2a\xe7\xb1\xa6\x82\x87\x13\x78\x7f\xef\x9e\x59\xd1\x00\x28\x07\xf0\xbd\x90\x9b\x33\xa2\x09\x2c\xa1\x01\x07\x7e\x18\xd0\x2d\x61\x39\x2a\x58\xc2\xfd\x30\xf8\x1d\xc7\xdd\x45\x85\x1a\x4c\x22\x85\x92\x12\x46\xff\x8b\xcf\xa5\x24\xfb\x70\xf2\xa4\x81\x9b\x91\x3d\x13\x24\x81\x65\x8d\x26\xc0\x86\xe8\x38\x45\xa9\x16\xf0\xf6\xdd\xb4\x36\xaf\x34\x91\x5a\x3d\xd7\x0b\x08\x82\xfa\x3c\xf2\xa4\x67\x36\x96\x48\x34\x26\x2f\xf6\x9d\x17\x62\x63\xf4\x69\xa6\xcb\xd9\xbb\x8a\xaf\xfb\x11\x92\x38\x0d\x9d\x58\xd3\x4a\x6e\x3a\x05\x64\xb8\x99\xd4\x39\x05\xb5\xa3\x3a\x4e\x21\x34\x6f\x22\x4e\x36\x38\x69\x48\x62\x56\x23\x0a\x21\xf0\x6b\x06\x8b\xe2\xb9\x60\x2e\x58\x34\xc1\xa1\xd0\xc9\xdb\x92\xe4\x3b\x58\xda\x95\x23\xcb\xd2\x93\x36\xfc\x95\x44\x72\xd3\x98\xbd\xab\xc4\xaa\xe9\x9b\xae\x20\x34\x26\x2a\xb4\x18\x4c\xa2\x84\x68\x12\x06\x67\x44\xe3\x25\xdd\xe0\x2b\x1a\xdf\xa0\x0c\x26\x4d\x11\x3c\x3b\x51\x81\xe6\x0d\x7d\x90\x8a\x99\xc6\xba\xbd\xef\x3a\x9c\x38\xbb\x9d\xc8\x87\x43\xf2\x5c\x1c\xa0\x30\xc2\x83\xb7\x72\xd7\x67\x21\x52\xc8\x30\xd6\x99\xa7\xd1\xe3\x01\x2d\x13\x1b\x47\x66\xe4\x0a\xd9\x7f\x6e\x70\x6f\x19\xb3\x50\x9e\x27\xfb\x66\x76\x83\xfb\x60\xf2\xa4\x83\x56\xdb\x3b\x0e\xa7\xbe\x76\x18\x6c\x09\x6b\x63\x19\xdd\x79\xac\x2f\xbf\xf4\xf8\x11\x43\xbe\xd6\x29\x3c\x83\x47\x1d\xf7\x73\xdb\x6c\x4b\x58\xdb\x6f\xcc\x3c\x55\xbf\xe0\x1a\x6f\xcd\xee\x26\x4c\x75\x5c\xab\x5a\xab\x5a\xe1\x71\x77\x05\x6b\x9d\x2d\x61\xb0\x84\xe0\xdf\xe1\xb7\x8b\x00\x1e\x16\x8c\x5d\x0b\xca\xc3\xe0\xb7\x60\x02\x0f\x21\x98\xdc\x0f\x3a\xce\x6b\x56\x29\x99\xd0\xb2\xeb\xde\x77\x80\x4c\xe1\xd8\x9a\x6e\xa9\xb7\x8f\xde\x75\x50\x5b\xcf\x85\x07\x15\xe1\x25\xca\x72\x95\x86\x7d\x94\xcd\xae\x5b\x54\x36\x9d\xf6\x80\xd8\x55\x17\x96\x87\xbe\xd7\x5e\xa8\x45\xf1\xa3\xcd\x5a\xcb\xaa\xfd\x3b\x56\xa2\xce\x25\x2f\xf8\x76\xf3\x77\x4f\x7a\x83\xf4\x77\x84\xc5\xb9\xc9\x02\x67\xb9\x24\xc6\x59\xfb\x23\xf6\x7c\x0e\xea\x86\x66\xc6\xb2\x66\x6b\x68\xba\x41\xe7\x6b\x40\x15\x7f\xa0\x41\x22\x49\xf6\xb0\x47\xed\xe1\x8d\x07\x7c\x71\xd4\x76\x87\xdf\x7e\x83\x2f\x8e\xda\xd4\x5e\x2a\xef\x71\xf7\x0a\x75\x4a\xf8\xc8\x08\x63\x48\x7c\x50\x70\xa8\xe1\x6b\xa1\x09\x3b\x23\x7b\xb3\x25\x43\x87\x1f\x25\x74\xb5\x0a\x0b\x66\xa6\x10\x24\x64\xaf\x82\x49\x63\x59\x8b\xf6\x83\xc8\xe5\x18\x5e\x6a\xde\x1b\x05\xfc\x1e\xbe\xfe\x63\x07\xfb\x25\xe5\xb9\xb6\xa1\x60\x00\x7d\xe3\x00\x02\x83\xff\xcd\xa3\x02\xdf\x2a\xca\xb9\xc1\x2c\xf1\xa6\x9f\x39\x0e\xa3\x54\x6f\x58\x58\x4a\x34\x19\x45\xf1\xcc\xd5\x70\xac\x38\xe3\x48\x25\x4b\x35\x34\x2f\xc7\xa4\xd7\xb2\x67\xa8\x62\x58\xfa\xf3\x4c\x38\x89\xb4\x28\x25\x2c\x57\x6a\xc1\xd6\x1f\x23\x89\x19\x23\x31\x86\x01\xe5\x40\x60\x85\x3b\x50\x18\x0b\x9e\xa8\x60\x0a\x01\x17\xbb\xe0\x34\x2a\x0d\x12\x40\xd6\xa2\x43\xa6\x2e\xb6\xa5\x31\x4b\x50\xc5\x92\x66\x46\xfe\x42\xee\x3a\xf1\xa6\xdc\xce\x94\x3d\x52\xbb\x17\xe5\x32\x0d\xb8\xea\xe1\x04\x79\x0f\x52\x38\x4d\x56\xe4\x49\x9f\xa4\x15\xe1\xc9\x68\x34\xfa\xdb\xc5\xcf\x3f\xfd\x82\x3c\x41\xd9\x1f\x86\x0c\xb8\x39\xf4\x05\x71\x2e\x19\x98\x7c\x51\x5b\xfc\xa5\x48\x4c\xda\xf3\xbb\xb6\xe0\x88\x64\xd4\x64\x91\x32\x36\x06\xff\xe2\xe6\xcf\xec\x9f\xf0\xea\xe7\x8b\x4b\x98\xcd\x0c\xb8\x21\x55\x42\x18\x26\x22\xa5\x25\xe5\x6b\xba\xda\x87\xad\x13\x6d\x38\x99\x42\xce\x13\x5c\x51\x8e\xc9\x14\xbe\xee\x53\x83\xa1\xf0\x82\x89\xab\x42\xfc\x64\x5c\xea\xd7\x59\x32\x10\x80\x71\x8b\x5c\xff\x3f\x0a\x9f\x84\xfe\x92\x72\x03\x7b\x24\x95\x8d\x83\x6e\x12\x22\xb1\x37\xc4\x7d\x67\x81\x48\x13\xb9\x46\x5d\x10\x29\xe3\x98\x83\x0b\x1a\xb8\x39\xa7\xfa\x30\xa6\x81\x6a\xe2\x29\x8d\x19\x2c\x21\x23\x52\xe1\x39\xd7\xe1\x01\x02\x06\xdc\x26\x93\xca\x35\x24\xce\xe2\x22\x9b\x3b\x72\x2b\x21\x81\x89\x9d\x3f\xe9\x54\x90\x74\x05\x3b\x84\x94\x6c\x11\xfe\x04\x2e\x18\x3b\x04\xc2\x13\x88\x73\x29\x4d\x19\x59\x2c\x05\x54\xc1\xe3\x02\x4a\xa7\x84\x43\xcc\x68\x7c\x43\xf9\xba\x22\x28\x38\xe8\x14\x81\xf2\x58\xa2\xad\x41\x55\x2a\x72\x96\xc0\x9a\x6e\x11\x72\x55\xae\x32\x05\x2e\x34\x7c\x53\x50\x2b\x96\x68\xe7\xb4\xbf\x1b\x7e\x87\x33\xa2\x51\x5e\x95\x47\x8b\x4a\xca\xce\xd6\xce\x7b\xae\x5e\x72\xf9\xa9\x5e\x2b\x35\x56\xa8\x3d\xd4\xb3\x2b\x74\xcb\x23\x47\xae\xc8\x5c\xc7\x11\xac\xd2\x6d\x87\xe0\xdd\xbd\xda\x1e\x2d\xfc\x6d\x09\x41\xa9\xc2\xa0\x2e\x8b\xb3\x99\x35\x11\xad\xb4\xd9\x30\x97\xb5\xb1\x79\xfb\x07\x67\x24\x85\xba\x04\x54\x4e\xef\x7f\x6e\x14\x52\x96\xda\x33\x78\x6c\xca\x81\x1a\xd7\x4f\xed\x32\xcd\xc3\xba\xf7\x4d\xfb\x67\x56\x03\xee\xab\x8f\xbc\xc9\x48\x92\xd8\x15\xbc\xb5\x4a\xb1\xdb\xa7\xf2\x0f\x94\xec\x51\x21\x59\x43\xa4\x9a\x18\xcf\xe0\x91\x11\xec\x74\x21\x8f\x92\x4e\xe5\x57\x5a\x92\x58\xf7\x89\xe8\x58\xf1\xa1\xec\x69\x33\x28\x35\x57\x74\xb2\x27\x58\x6c\x9a\x9d\xdd\x33\x12\x55\xce\x34\xd8\xcc\x6d\x22\xbc\xd2\x64\x93\x99\x6d\x8c\xd2\xc9\x4f\x98\x79\x48\x8c\x06\xe8\x26\xdf\x34\x09\xea\x14\x39\x5c\xe7\xca\x24\x03\xa3\x28\xaa\x41\x0b\xbb\x39\xbb\xe0\x65\xb8\x6d\xf0\xd8\x15\xfb\xae\x96\xe1\x8e\x8a\xca\xad\x53\xca\x58\xb9\x11\xb6\x52\xa3\xed\x5a\x25\x84\x99\xd8\xb5\xb1\x01\xcc\x76\x3c\x28\x5f\x03\x37\xe7\x10\x47\x4a\x55\x69\x14\x75\x9e\xd5\xab\xf0\x91\x86\x93\x23\xbc\xec\x39\x33\x54\x32\x5b\x98\x48\xf0\x30\x50\xa9\xd8\x45\x57\x2a\xb2\x33\xc1\x74\x30\x29\xbb\x61\x3b\x68\xd1\x2b\x92\xab\x46\xdf\xa0\x22\xb9\xa2\x3c\x09\x03\x47\x6d\x76\x25\x92\x7d\x71\x38\xe8\x14\x81\x65\x5f\x2e\x72\x47\xa1\xf2\x2c\x63\xe4\xfb\x51\x90\x84\xf2\x75\x30\x85\xf7\x77\x93\x06\x6a\x4f\x97\x00\x19\x6e\x6a\xb9\x48\xa2\x21\x9b\x5c\xba\x8c\xd2\x0f\xfe\xa3\xa9\x5d\x4d\x35\xf1\xfe\xae\x09\xe0\xfb\x1e\xb6\x9f\x54\x6b\x50\x98\x43\xbc\xca\x18\xd5\x61\x30\x6d\xf7\x3c\x58\x5f\xc9\x5f\x2d\xf2\x96\x15\x98\xcb\x60\xf2\xf6\xd1\xbb\x77\xb0\x84\xc6\xd4\xe3\x56\x65\xde\x2e\x7e\xef\x47\xe4\x9a\xdc\x76\x0a\xf1\x5c\xb2\x05\x04\xc4\x76\x39\xa3\x6b\x25\xf8\xb7\xbf\x2e\xed\x93\xa9\xce\x97\xe6\xd0\x58\x13\xa2\x7c\x11\x4c\xda\xe5\x38\x4a\x29\xe4\xa2\x92\xe8\x36\x95\x53\xd0\x78\xab\x2f\x34\xd1\xb9\x9a\x3a\x80\xcb\x54\x8a\x1d\xef\x6f\x6e\x58\xa5\x4a\x73\x96\xbd\x4d\x65\x24\x51\x65\x82\x2b\xbc\xc4\x5b\x6d\xce\x5b\x35\x74\xf3\x58\x51\xee\x6b\x76\x9c\xea\x44\x70\xc8\x91\xbe\x27\xda\xba\xf5\x7b\x2f\x26\x4a\xd9\x72\x28\x37\x26\x9d\xee\x48\x5b\x4f\x2a\x8f\x63\x54\xaa\xa6\x29\xa3\xda\x61\x8d\x1c\xb3\x0d\x9b\x18\x6c\xc8\x29\xdd\xf0\xae\x69\x56\x8d\xd6\x52\xe4\x59\xab\xfb\x6a\xe7\xfa\xf9\xa9\xa1\x5b\xa8\x88\xf8\xe6\x78\x89\x7f\x3d\x05\x3b\x37\x8c\x5f\xa3\x61\x21\x23\xc7\x6e\x8d\x46\xd5\x10\xf2\xbd\xa1\x2d\xe9\xdd\x1b\xcd\x61\xd2\x08\xf3\x3b\xa5\x20\xf0\x0e\x96\xcb\x65\x55\x7f\x1c\x26\x62\x46\x0f\x91\x01\x4d\xd6\x47\xbb\x0b\x76\x14\x7b\x6f\x4b\xf9\x3e\x0d\xa7\x0d\x7a\x47\x91\x30\xe3\x06\xf7\x07\xba\x70\x7d\xc3\x77\xe6\xca\x15\x8f\xc5\x23\x5a\x4b\xb5\xf0\xd7\x2a\xd1\x5f\x51\xdb\xf0\xf6\xdc\xcc\xf6\x5b\xfe\x58\xc2\xae\xa7\x8b\xc9\xa2\x11\x34\xeb\xae\x50\x11\x3d\x82\xe4\x47\x59\xbc\x1d\x7b\x0f\xbd\xe9\x9f\xfd\xe4\x51\xcc\x04\x30\xe7\x34\xde\x70\xea\xb8\x20\x06\x8d\x4e\xfe\xc9\x9d\xfb\x92\x44\x5f\xf7\x7d\xd8\x4b\x69\x2c\xf8\x0b\xa2\x70\x01\xc1\x8a\x04\xc3\x6e\xa0\x69\x7c\x73\x1e\x0b\x6e\xe1\x66\x71\x8a\xf1\xcd\x08\xf4\x8e\x26\x3a\x35\xa0\x54\x8f\x40\x39\x16\x9f\x33\x66\xd2\xcf\x02\x82\xa7\x14\x62\x46\x94\x5a\x3e\x58\x11\x28\x56\x99\xa9\x5f\x73\x22\x71\x26\x1e\x3c\x7b\x3a\xa7\xcf\x46\xc8\x25\x78\x88\xe0\xd1\xa4\xb8\xe0\x78\xe1\x5d\xbd\xa0\xa5\x32\x5b\x67\x5a\x72\xd6\xae\xce\xba\x33\x46\x95\xf6\x3f\x13\x5c\x91\x9c\xe9\x07\xcf\x5c\x1b\x48\xa7\x54\xf5\x5c\x9d\xc0\x43\x08\x16\xf0\x74\x6e\x08\x8e\x31\xb1\xc9\x99\xa6\x19\xc3\x0b\xcc\x88\x24\xda\x64\xc4\x00\x0e\xaa\xd3\x31\x6c\x1c\x91\x18\xb6\x63\x91\x73\x6d\xca\x8d\x11\x44\x0b\xd3\x14\xb7\xf0\x36\x08\x79\xbe\x29\x5e\x8d\x07\x4c\xdf\x85\x39\x4a\x51\x3b\x22\x39\xe5\x6b\xab\xa8\xd1\x08\x30\x78\xff\xe4\x94\x68\xf4\x5c\x63\xd0\x4c\x16\xf7\x50\x85\x36\x0a\x3d\x0f\x47\x9a\xfe\x18\x73\x4a\x0c\x31\xfb\xb5\xe8\x7e\xcd\xb2\x7a\xdd\x51\xf5\xc3\x06\xf6\xe0\xaa\x30\xd4\x9b\x37\x6f\xde\xcc\x5e\xbe\x9c\x9d\x9d\xc1\x0f\x3f\x2c\x36\x9b\x01\x7b\x99\xfd\xaa\x16\x23\x86\x30\x2b\xda\x4d\x6a\x77\x10\x13\xf1\xcd\x4c\x8c\x6d\x1a\xa2\x6b\xe0\x84\x21\x4f\x88\x1c\x81\xcf\xb3\x0a\x3a\xc5\xad\x14\x7c\x96\x67\x63\xf4\xc5\x8e\x77\x30\xcc\xe4\x08\x4e\x26\x71\x4b\x45\xae\x3a\x78\x0c\x57\x63\xf1\x84\xbb\x9d\xda\xc4\x91\x74\x9d\x8e\x21\x69\x91\x90\x7d\x89\x45\x94\x46\x49\xd5\x58\x6c\x8b\x19\x12\x59\x22\xe4\x3c\x19\x53\x6f\xcc\x84\x6a\x98\x43\x61\xd0\xef\x6e\xfd\x34\x7c\x2f\x70\x51\x76\xdc\xfb\xc1\x14\x4d\xf0\xc5\xfe\x82\x26\xb8\xb0\x37\x8f\x03\xbe\xc3\x19\xe5\x1e\xe2\x68\xdf\x7e\x7d\x1e\x5d\x98\x82\xf6\x52\x08\x13\x8e\x54\xcf\x35\x73\xed\x06\xa9\x3e\xaa\x2c\x36\x73\x1b\xf7\x8a\x24\x6b\x0c\x26\xb6\x94\xb5\x0d\xbb\x7a\x09\x3b\x14\x5c\x5c\x45\x6d\xa8\xd8\xf3\xb9\x8b\xa9\x19\x91\xee\xfe\xa1\xfc\xe1\x12\xb8\x03\xec\x3f\xb5\xfb\x16\x93\x85\xe8\xbb\x9b\xf6\xf7\xc2\xc3\x41\xce\xf5\x46\x74\x8a\x12\x1f\x28\x20\x7c\xaf\x53\xca\xd7\x65\xa0\x29\xf3\x0f\x10\x36\x74\xf6\xe9\x5d\xbd\x96\xb7\x86\x38\x1f\xb9\x39\xf6\x9c\xd9\xf7\x1f\xb6\xfe\xe1\xd5\x8f\x76\x96\xf9\xdc\xb6\xc2\x7c\x17\xc7\x3b\x2f\x68\x01\x5c\xec\xe0\x61\xd9\xb3\xed\x77\x96\xa3\x1b\xe3\xe5\xed\x13\x49\x92\xf0\x71\x79\x9f\x38\xe0\x86\x4d\x9e\x4c\x78\x34\x0c\x3d\x7c\x0c\xa9\xc8\xe5\x07\x72\x92\xf4\xb2\x51\xdc\x8a\x0e\x70\xb1\x4b\x91\xe3\x16\x6b\xd7\x12\x71\x4a\xf8\xda\xe6\x2a\xdb\x15\x23\xaa\xe8\x8a\x59\xb5\xad\x44\x71\x7f\x30\x40\x0f\x21\x26\xfc\x81\x76\x5d\xf3\xb2\xbb\x57\x50\x1f\x10\xad\xf3\x55\x93\xd9\x8d\x49\x16\x39\x5e\x82\x29\xd4\xee\x49\xea\xdb\xb3\xdf\xf7\x8e\xbf\xce\x69\x5f\xd3\xf4\x51\xfb\x04\x77\x36\x1d\x2d\x79\xbd\x70\xc4\x44\x19\xc3\x5f\x21\x10\x0d\x0c\x89\xd2\xd5\x1d\x02\x59\xe9\x9a\x5d\xfa\x43\xac\x7f\xd9\x71\xba\xfe\x95\x4f\xf1\xe7\xce\xbd\x71\x7d\x0c\x9e\x38\xfa\x2d\x59\xc4\xd5\x80\x44\x9d\x3b\xee\x2b\xcd\x83\xe9\xf0\x2d\xdf\x69\x0b\x15\xbd\xc8\x58\x30\x46\x32\x85\x53\xa8\x3b\x51\x75\x7e\x1c\x8e\xa7\xbd\x97\xac\x43\x96\x3c\xae\x65\xfb\x71\xaa\xfb\x4c\xcc\x9f\xc0\x86\xca\xaf\x36\x54\x87\xe3\x7d\xdd\x6a\x34\x3f\x3b\xec\xdc\x0a\x0f\x69\xd2\x6c\xda\xce\x07\x44\xfe\xab\xa8\xe5\x72\xd9\xf7\xe5\x55\x7b\x55\x94\xf2\x3b\xc1\x35\x72\xb3\x4f\x47\xcb\xe1\xbf\x48\x29\x64\xad\xa9\x17\x5c\xf8\x24\x55\x6c\x42\xc1\x5d\x51\x10\x0c\xd7\xf3\x5d\x7d\xd9\xce\x46\x79\x95\x5f\x32\x33\x89\x24\x6e\xc4\x16\xbf\x33\xd5\x47\x18\xa4\x34\x49\x90\x0f\x6d\x51\x37\x0e\x47\xa5\xda\xcd\x58\x9f\x2a\x72\xc9\xec\x17\x11\x09\x61\x7d\xf7\xfc\x43\x34\x07\x3a\xc5\xd5\xd0\xfb\xcc\x9c\x1c\x5f\xfd\x7c\x71\x39\x76\x1e\x97\x6c\x61\xfe\x19\x3d\xe1\x93\x45\xfb\x0b\x02\x6f\xfe\x91\xbe\xcf\xc7\xb7\x9a\xab\x31\x9f\x83\x2f\x8d\x4d\x04\xde\xa5\x44\xdb\x3c\x68\x29\x58\x9a\x3e\x97\xc1\x1a\xfb\x83\x6f\x31\x3e\x61\xf7\xba\x1a\x66\x3b\xb4\xc9\x1d\xd3\x1b\x6c\xde\x5a\x13\x90\x68\xd1\x9d\x40\x5a\xee\x8d\xac\x09\xc6\x22\x41\x9f\xdc\x8d\x0d\x8e\xa2\x5a\x5e\x56\x5f\xa1\x57\xd2\x4a\x8a\x8d\x6b\xe7\x6d\x08\x27\x6b\x94\x10\x52\xab\xb5\x1d\x4a\x04\x72\xc5\xec\xa1\x26\x16\x9c\x63\xac\xfb\xda\x4d\xcd\x61\xb8\x3b\xa6\x73\x69\xf4\x7d\x0d\x4b\xe7\x3d\xf6\x3b\x80\xae\xa6\x0e\xb5\xf0\xc0\xab\xf8\x3a\x72\xa2\x7c\x71\x7a\x0f\x16\xbc\xd1\x3d\x89\x63\x56\x3c\xd4\x2a\x36\x67\xea\x98\xb8\xef\x9d\x0d\xcd\xe3\x18\x99\xcf\xfd\x91\xcb\xea\x02\xae\x95\xe0\x53\x48\xcc\xf1\xd6\xd6\x02\x87\xd7\x1c\x85\x18\x0c\x33\x6e\x7c\x5c\xdc\xb5\x97\x29\xe3\x9a\xfb\x3c\x21\x76\xa0\xb2\x85\x13\xaf\x69\xaa\x61\x9c\xc9\x5e\xac\x28\xbb\xb9\xed\x37\x0a\x9e\x52\x70\xd8\x8c\xfd\x42\x92\x24\x39\x21\x67\x74\xe9\xf8\xfc\x6d\x75\x35\x6a\x96\x0b\xcf\xe8\xf4\x28\x7f\xf3\x88\xe7\x67\x0b\x1b\xc6\x23\x27\xb6\x9f\x4c\x0e\xf5\xce\xfb\x2b\x91\x1a\xc0\x78\x55\x59\x8c\x2a\xe8\x06\xe7\x7c\x4b\x18\xb5\x1f\x04\xb8\x58\xd7\x8d\x4b\xcf\x5f\x9d\xbb\xbe\x5c\x2b\xe3\x58\xcb\x1e\x52\xea\x67\x77\xf1\xcf\x77\x8e\x18\xdb\xdc\x23\x5b\xc0\xa8\xe5\xd2\x65\x7a\x13\x4d\xfa\x9b\x43\xee\x0c\x39\xf0\xca\x5d\xa4\x67\xd2\xfe\x3d\x73\x69\xf6\x94\x83\xe8\xe9\xe7\xea\xa3\xcf\xbe\x4d\x8d\x34\x64\xb8\xeb\xfd\xc0\xc1\x29\xba\xf7\x13\x87\xbe\xff\xa9\x50\x5d\xdb\xda\xb6\xd0\xb1\xdf\x38\xc4\x29\x65\x89\x44\x1e\x16\x66\x6e\xf3\xee\xbe\x9c\xf8\x07\xa1\xfa\x7b\x21\x7f\xc2\x5b\xfd\x0b\x9a\xd3\x52\xe3\x7f\x5f\xb4\x3e\x12\xf1\xc7\xc8\x8a\xc7\x73\x4e\xf5\xa2\xf3\x2d\x48\x89\x73\x37\x31\xd4\xfe\x17\x00\x00\xff\xff\x93\x73\x3f\x56\x2a\x35\x00\x00") +var _staticSilenceJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x5f\x73\x1b\x37\x92\x7f\xf7\xa7\xe8\xcc\xf9\xe2\x61\x4c\x8e\xec\xdc\x5d\xea\x8a\x36\x9d\xb2\xa3\xcb\x45\xbb\x71\xe2\x8a\xe4\xec\xba\xbc\xde\x2a\x68\xa6\x49\x42\x02\x81\x09\x80\x11\xc5\x75\xf4\xdd\xb7\xf0\x67\x86\x98\xe1\xfc\xa3\xec\xec\xd3\xe2\x21\x16\x31\xdd\x3f\x74\x37\xba\x1b\x40\x03\x39\xf9\x0a\x56\x4c\x5c\x12\xa6\x60\x23\x36\xc8\x35\x7c\x75\x02\xa6\x9d\x9c\xf8\x8e\xe4\x4a\x3d\x78\x10\x90\xbd\x64\x28\xb5\x9a\xc2\x05\x6e\x72\x46\x34\xaa\x29\xbc\xe5\x0a\x71\x0a\x6f\xcf\xe0\xab\x13\x4b\x8b\xb7\xb9\x90\x1a\x33\x38\xa7\x0c\x79\x8a\xa6\xff\x86\xc8\xea\xe7\x02\xe2\x65\xc1\x53\x4d\x05\x8f\x27\xf0\xf1\xc1\x03\x33\xa2\x21\x50\x8e\xe0\x7b\x21\x37\xa7\x44\x13\x58\x40\x8d\x0e\x7c\x33\xa4\x37\x84\x15\xa8\x60\x01\x0f\xe3\xe8\x3f\x38\x6e\xcf\xf7\xac\xd1\x24\x51\x28\x29\x61\xf4\x1f\xf8\x52\x4a\xb2\x8b\x27\xcf\x6a\xbc\x39\xd9\x31\x41\x32\x58\x04\x98\xa6\x6d\x88\x4e\xd7\x28\xd5\x1c\xde\x7f\x98\xd6\xbe\x28\x4d\xa4\x56\x2f\xf5\x1c\xa2\xa8\xfe\x05\x79\xd6\xda\x9f\x4a\x24\x1a\xb3\x57\xbb\x96\x4f\x62\x63\x2c\x6b\x3e\x54\xfd\x77\x7b\x09\x1f\x26\x48\xd2\x75\xec\x14\x9c\xee\x2d\x40\xa7\x80\x0c\x37\x93\xba\xcc\x6a\x4b\x75\xba\x86\xd8\x7c\x4a\x38\xd9\xe0\xa4\xa1\x54\x4a\x14\x42\xe4\xc7\x8c\xe6\xe5\xef\x52\xbc\x68\x5e\xa3\x36\xcd\x9b\xe7\x7d\x05\xf9\x01\x16\x76\xe8\xc4\xca\xf4\xec\x80\xe1\x52\x22\xb9\xae\x77\xdf\xed\x35\x0b\x8c\x4f\x97\x10\x9b\xf9\x2a\xcd\x19\x4d\x92\x8c\x68\x12\x47\xa7\x44\xe3\x05\xdd\xe0\x1b\x9a\x5e\xa3\x8c\x26\x4d\x25\xbc\x48\x49\xc9\xe8\xe7\x7d\x10\xc7\x74\x63\x38\xfd\x77\x07\xb2\xb8\x09\x3c\x5a\x12\xc7\xe6\xe5\x18\xc0\xe8\x91\xc2\x4f\xf6\xa1\x13\x43\xa2\x90\x61\xaa\x73\x8f\xd1\xe2\x08\x0d\xc9\x8c\x67\x33\x72\x89\xec\xcf\xb8\xb3\x72\x59\x22\x2f\x92\xfd\x30\xbb\xc6\x5d\x34\x79\x76\xc0\x15\xc4\x92\xe3\x09\x87\x8e\xa3\x1b\xc2\x9a\x5c\xc6\x78\x9e\xeb\xcb\x2f\x3d\x7f\xc2\x90\xaf\xf4\x1a\x5e\xc0\x93\xa6\x68\xe5\x40\xf9\x0d\x61\x87\xee\x63\xbe\x50\xf5\x0b\xae\xf0\xd6\x44\x3c\x61\xaa\xc5\xc7\xf6\x23\xee\xc7\x79\xda\x36\x8e\x9d\xa4\x1b\xc2\x60\x01\xd1\xdf\xe3\x6f\xe7\x11\x3c\x2e\x05\xbc\x12\x94\xc7\xd1\xef\xd1\x04\x1e\x43\x34\x79\x18\x1d\x8e\x62\x47\xaa\x44\xd1\xb2\xcd\xdb\xef\x00\x99\xc2\xfe\x91\xdd\x80\xef\x9f\x7c\x68\x61\xef\x8a\xb7\xa4\x4c\x3f\x49\x5e\xa8\x75\xdc\x8e\x6f\xc2\x71\x5e\x4d\xf3\xb4\x95\xc6\x0e\x3e\xb7\xa2\xb4\x13\x78\x0d\xe7\xe5\x1f\x87\x32\x4e\xc6\x44\xb3\x44\x5d\x48\x5e\x8a\xef\xfa\xef\x9e\xb5\x66\xf3\xef\x08\x4b\x0b\xb3\x5c\x9c\x16\x92\x18\x27\xee\x4a\xed\x27\x27\xa0\xae\x69\x6e\xa6\xdb\x04\x8d\xa6\x1b\x74\x6e\x08\x54\xf1\x47\x1a\x24\x92\x6c\x07\x3b\xd4\xb5\x38\xfe\x62\x54\x32\x80\xdf\x7f\x87\x2f\x46\x85\xbc\xd7\xcc\xbb\x62\x6d\xed\xf8\xe4\x0c\x64\x40\xee\x95\x3c\x6a\x08\x5a\x68\xc2\x4e\xc9\xce\x44\x6d\xec\x10\x92\x8c\x2e\x97\x71\x29\xd0\x14\xa2\x8c\xec\x54\x34\x69\x0c\x6d\x19\x7f\x10\x85\xec\xe3\x5c\x9b\xef\xc6\x10\xff\x09\x5f\xff\x77\x0b\xff\x6b\xca\x0b\x6d\x33\x46\x07\xc0\xc6\x11\x44\x06\xe1\x9b\x27\xc1\xda\x66\x4c\xe6\xdc\x62\x96\x79\x57\x98\x39\x39\x93\xb5\xde\xb0\xb8\xd2\x6b\x32\xc0\xe4\x45\x0c\xb8\xac\x52\x43\x6c\x95\x60\x01\xa3\xd7\xa6\x69\xe2\x52\x9d\x53\x54\x29\x2c\xfc\x76\x28\x9e\x24\x5a\x54\x9a\x06\xa3\x35\xa8\xc3\x9f\x89\xc4\x9c\x91\x14\xe3\x88\x72\x20\xb0\xc4\x2d\x28\x4c\x05\xcf\x54\x34\x85\x88\x8b\x6d\x74\x2c\x4e\x0d\x04\xc8\x4a\xb4\x00\x85\xea\x5b\x94\x59\x86\x2a\x95\x34\x37\x76\x28\xf5\x0f\xe1\x9b\xfa\xbb\xa9\x6d\xd1\xde\x7d\x08\x86\xaa\x51\xee\x7f\x1c\xa5\xf7\x20\xc6\xb1\x3a\x23\xcf\xda\x34\xde\x43\x4f\x7a\x33\xd6\x9f\xce\x7f\xfe\xe9\x17\xe4\x19\xca\xbe\x5d\xa8\xd9\x43\x46\x69\x21\x19\x98\x65\x26\x18\xfe\xb5\xc8\xcc\xaa\xe9\x63\xba\x94\x89\xe4\xd4\x2c\x3e\x41\x6e\x8d\xfe\xc6\xcd\x3f\xb3\xbf\xc2\x9b\x9f\xcf\x2f\x60\x36\x33\x0c\x06\x2c\xa0\x31\xa2\x24\x4a\x4b\xca\x57\x74\xb9\x8b\x1b\x9b\xe4\x78\x32\x85\x82\x67\xb8\xa4\x1c\xb3\x29\x7c\xdd\x6e\x0e\x83\xf1\x8a\x89\xcb\xd2\x0c\x59\xbf\xf6\x6f\xf3\xac\x23\x59\xe3\x0d\x72\xfd\xef\x8c\x7d\x4f\x80\xd7\x94\x1b\xea\x91\x38\x1b\x47\xdd\x84\x22\xa9\x9f\x94\x87\x6e\x36\x12\x4d\xe4\x0a\x75\x09\x53\xe5\x3a\x47\x17\x35\xb8\x0b\x4e\xf5\x30\xaf\xa1\x6a\x72\x2a\x8d\x39\x2c\x20\x27\x52\xe1\x19\xd7\xf1\x00\x84\x21\xb7\xcb\x4f\xe8\x2a\x12\x67\x69\xb9\x17\x70\x80\x4b\x21\x81\x89\xad\xdf\x32\x85\xb4\x74\x09\x5b\x84\x35\xb9\x41\xf8\x1f\x70\x89\xdb\xb1\x10\x9e\x41\x5a\x48\x69\xce\xab\xe5\x70\x40\x15\x3c\x2d\xa9\xf4\x9a\x70\x48\x19\x4d\xaf\x29\x5f\x85\x90\x82\x83\x5e\x23\x50\x9e\x4a\xb4\xc7\x5d\xb5\x16\x05\xcb\x60\x45\x6f\x10\x0a\x55\x8d\x33\x05\x2e\x34\x7c\x53\xe2\x95\x83\x1c\xae\x84\xbf\x1a\xa9\xbb\x57\x52\x63\xc6\x70\x05\x2e\x4f\x6b\xb6\x3f\x08\x22\x77\x28\x73\x6b\x5a\xfd\x40\x56\x1b\x25\xf8\x51\x5f\x99\xe1\xf0\x14\xe6\x20\xcb\xf5\x6e\x2c\x68\xb8\x58\xb7\x80\xde\x3d\xa8\x45\x71\xe9\x89\x0b\x88\x2a\x93\x46\xcd\x4d\xb9\x9b\x49\x3b\x71\x74\x6f\xe1\xda\x24\xda\xb9\x37\x5f\xff\xcb\x4d\x9d\x42\x5d\x11\x2a\x37\x17\xff\x7b\x70\xfe\xb0\x88\x2f\xe0\xa9\x39\x81\x04\x3a\x3c\xb7\x43\xb5\x9d\x0c\xbc\xff\xda\x7f\x66\x01\x4b\xd7\x5e\x17\xaa\x65\x29\x21\x59\x66\xc7\xf3\x33\x1a\x18\xa4\xed\x30\x70\x4f\x8d\x9f\x94\x1a\x1f\xa8\x1a\xa8\xf7\x02\x9e\x18\x85\xef\xab\xfc\x51\x5a\xab\xe2\x52\x4b\x92\xea\x76\xd5\x4b\xe1\x7c\x6a\x7c\x5e\x4f\x71\x6d\x32\x38\xbb\x64\x58\x06\xdf\xd6\xc6\x9e\x44\x55\x30\x0d\x76\x8f\x60\x56\x0f\xa5\xc9\x26\x37\x29\x01\xa5\xb3\x0d\x61\xe6\x47\x66\xac\x43\x37\xc5\xa6\x0d\x56\xaf\x91\xc3\x55\xa1\xcc\x72\x63\x4c\x49\x35\x68\x61\x43\xbd\x8b\xa9\x4a\xe8\x35\xa9\x3b\x8f\x3d\xb5\x35\x75\x54\xfe\x3f\xd8\x25\xf5\x1d\x87\xe2\xc6\x72\x6c\xcb\x6f\x19\x61\x26\x3b\x6e\x6c\x8a\xb4\x05\x1b\xca\x57\xc0\xcd\x2e\xc8\x41\xa9\xfd\xd2\x8d\xba\xc8\xc3\xea\x41\xcf\x9e\xc5\x01\x2f\x5a\x76\x2b\x7b\x59\x2d\x4d\x22\x78\x1c\xa9\xb5\xd8\x26\x97\x2a\xb1\x3d\xd1\xb4\x67\x23\x60\x9a\x2d\x05\x26\x6f\x48\xa1\x6a\xab\xd6\x1e\x72\x49\x79\x16\x47\x0e\x6d\x76\x29\xb2\x5d\xb9\x21\x39\x98\xa0\xaa\xc0\x98\xb8\x6d\x58\xb5\x8b\x32\xfa\xfd\x28\x48\x46\xf9\x2a\x9a\xc2\xc7\xbb\x49\x8d\xb5\xa5\xbc\x81\x0c\x37\xc1\x8a\x27\xd1\xc0\x66\x17\x6e\xd5\x6a\x27\xff\xd1\x1c\xb0\xcd\xf9\xe6\xe3\x5d\x9d\xc0\xd7\x6b\x6c\x35\x2c\xa8\xac\x98\x03\x85\xca\x19\xd5\x71\x34\x6d\xd6\x6a\x58\x5b\x28\xec\x07\x79\xcf\x4a\xce\x45\x34\x79\xff\xe4\xc3\x07\x58\x40\xad\xeb\x69\xa3\x88\xd0\x3c\x9c\x3f\x4c\xc8\x15\xb9\x6d\xa9\x17\x14\x92\xcd\x21\x22\xb6\x60\x9b\x5c\x29\xc1\xbf\xfd\x6d\x61\x7f\x71\xb2\xc1\x85\xd9\xb0\x06\x6a\x54\x1f\xa2\xc9\x61\xd1\x00\xa5\x14\x72\xbe\xd7\xea\x76\x2d\xa7\xa0\xf1\x56\x9f\x6b\xa2\x0b\x35\x75\x04\x17\x6b\x29\xb6\xbc\xab\x26\x63\x4d\x2b\xcd\x6e\xfa\x76\x2d\x13\x89\x2a\x17\x5c\xe1\x05\xde\x6a\xb3\xcb\x0b\x00\xcc\xcf\x3d\x76\x7b\x8d\xe6\x58\x67\x72\xad\xd7\xa5\xbe\x27\xda\x3a\xf8\x47\xaf\x2c\x4a\xd9\x70\xad\xb2\x4d\x5a\x8a\x3a\x87\x36\x53\x45\x9a\xa2\x52\x81\xd5\x8c\xa1\xfb\xac\x33\x26\x30\x9b\x3c\xac\xcb\x51\xcb\xe6\x1d\xd6\x8c\x9d\xac\xa4\x28\xf2\x46\x49\xd9\xf6\x75\x49\x15\x00\x58\xba\x84\xf8\xea\x7f\x85\x70\x35\x05\xdb\xd7\x87\x10\xa0\x58\xda\xc4\x09\x1d\xa0\x54\xf5\x2c\xa7\xcf\xaf\xa4\x35\x66\x9a\xcd\x2c\x3e\xcc\xc7\x90\x07\xf8\x00\x8b\xc5\x62\x7f\x1c\x1a\x83\x62\xda\x21\x4a\xa7\x3d\xc3\x76\x58\xca\x1b\x23\xe2\xfb\x52\xc7\xcf\x24\x6c\x88\x37\x12\xc2\xb4\x6b\xdc\x0d\x15\x12\xdb\x9a\x2f\x2e\x96\x63\x8e\x67\x24\x5a\x4b\x35\xf7\xf7\x47\xc9\xff\xa3\xb6\xe9\xef\xa5\xe9\x6d\x9b\xff\xf1\xc0\xae\x58\x8d\xd9\xbc\x96\x54\x03\x87\xa8\x40\x47\x41\x7e\xf2\xbc\x37\xf3\xf3\x98\x6f\x5d\xfd\xf7\xcb\x73\x03\x99\xce\x24\x39\xe7\x44\x7e\x1e\xd5\xf8\x44\x07\xb5\x3b\x8b\xa3\xef\x28\x6a\x30\x6d\x97\x0d\xfd\xfe\x4b\x53\xc1\x5f\x11\x85\x73\x88\x96\x24\xea\x77\x11\x4d\xd3\xeb\xb3\x54\x70\x4b\x3b\x4b\xd7\x98\x5e\x0f\x70\x6c\x69\xa6\xd7\x86\x9c\xea\x01\x4a\x27\xf2\x4b\xc6\xcc\xf2\x35\x87\xe8\x39\x85\x94\x11\xa5\x16\x8f\x96\x04\xca\xd1\x66\xea\xb7\x82\x48\x9c\x89\x47\x2f\x9e\x9f\xd0\x17\x03\x90\x19\x0e\x81\x1e\x05\xc7\x05\xc7\x73\x1f\x18\x25\x9e\xca\xed\xa9\xd8\x42\xda\x79\x77\xb3\x3f\x63\x54\x69\xff\x67\x86\x4b\x52\x30\xfd\xe8\x85\x2b\x67\xe9\x35\x55\x2d\x37\x48\xf0\x18\xa2\x39\x3c\x3f\x31\x80\x43\x82\x6c\x0a\xa6\x69\xce\xf0\x1c\x73\x22\x89\x36\x2b\x6b\x04\xa3\xcc\xeb\x04\x37\x0e\x4b\x8c\xf8\xa9\x28\xb8\x36\x47\x9e\x01\x66\x4b\x57\x57\xbd\xf4\x4a\x88\x79\xb1\x29\x3f\x8d\x49\xb7\xbe\xaa\x34\xca\x74\x5b\x22\x39\xe5\x2b\x6b\xba\x51\x89\xa6\xf3\x82\xce\x99\xd7\xcc\x40\x20\xae\xe9\x2c\x2f\xea\x4a\xfb\x94\x33\xd0\x9f\xb1\xba\xb3\xd5\xb1\xd9\xc8\x44\x7c\x59\xe3\x9b\xe5\xe1\x69\x67\x5f\xf5\xeb\x89\xe0\x65\x39\x95\xef\xde\xbd\x7b\x37\x7b\xfd\x7a\x76\x7a\x0a\x3f\xfc\x30\xdf\x6c\x7a\x66\xd4\x44\xbc\x9a\x0f\x4c\x95\x19\xdd\x86\xb9\x8d\x3d\x26\xd2\xeb\x99\x18\x0a\x37\xa2\x03\x16\xc2\x90\x67\x44\x0e\xf0\x14\xf9\x9e\x63\x8d\x37\x52\xf0\x59\x91\x0f\x8d\x23\xb6\xfc\x80\xcb\x74\x0e\xf0\xe5\x12\x6f\xa8\x28\xd4\x01\x2f\xc3\xe5\x50\x76\xe2\x2e\xde\xeb\x7c\x92\xae\xd6\x43\x8c\x5a\x64\x64\x57\x71\x12\xa5\x51\x52\x35\x94\x35\x53\x86\x44\x56\x4c\x05\xcf\x86\x4c\x9f\x32\xa1\x6a\xd3\xa5\x30\xea\x76\xd1\x6e\x2c\x5f\x1d\x9d\x57\x77\x13\xdd\xa4\x8a\x66\xf8\x6a\x77\x4e\x33\x9c\xdb\x4b\xdd\x1e\x7f\xe3\x8c\x72\x4f\x75\x54\x6c\xbc\x3d\x4b\xce\xcd\x21\xfc\x42\x08\x93\xf0\x54\xcb\x95\x7e\xed\x2e\x2e\x6c\xfb\x95\x74\xe6\xd2\xc0\x25\xc9\x56\x18\x4d\xec\x01\xdc\x96\x31\xc3\x83\x77\x5f\xe2\x72\xb5\x00\x83\x64\xcf\x11\x2e\x7f\xe7\x44\xba\xbb\x9b\xea\x0f\xb7\xa1\x70\x84\x5d\xa7\x0b\x28\xcb\x6c\x96\xaa\xed\x49\x80\xbf\x88\x1f\x4a\xa4\xae\xea\xa3\xd7\x28\xf1\x91\x02\xc2\x77\x7a\x4d\xf9\xaa\x4a\x62\xd5\xca\x07\x84\xf5\xef\xd0\x5a\x25\x09\xd6\xcd\x3e\x4d\x7a\x2f\xed\x03\x49\x2d\xd5\xa7\xc8\x33\x4e\x9a\xa3\x5c\xeb\xe4\xc4\x96\x07\x7d\xc5\xca\xbb\x3d\x68\x01\x5c\x6c\xe1\x71\x55\xf5\xee\x72\xad\xd1\xd7\x0c\xd5\x1d\x1f\xc9\xb2\xf8\x69\x75\x8b\xdb\xe9\xb6\x75\xb9\x4c\x12\x36\x42\x3d\x7e\x0a\x6b\x51\xc8\x7b\x4b\x93\xb5\x8a\x52\xde\x48\x77\x4a\xb2\x5d\x23\xc7\x1b\x0c\xae\x7b\xd2\x35\xe1\x2b\xbb\x5a\xda\x7a\x20\x51\x65\x3d\xd0\x9a\x6f\x29\xca\x3b\x99\x4e\x44\x84\x94\xf0\x47\xda\xdd\x40\x54\x55\xce\x12\xbf\x53\xc1\x83\xc7\x68\x26\x8a\xb3\x3c\x71\xf2\x44\x53\x08\xee\xa0\xc2\xb0\xee\xf6\xcd\xf1\x17\x66\xcd\x8b\xb0\x2e\xc4\xcf\x72\x2f\xd6\x62\x33\x6f\x25\x8e\x98\x29\xe3\x0c\x97\x08\x44\x03\x43\xa2\xf4\xfe\x76\x86\x2c\x75\x30\x4f\xdd\x49\xdb\x13\x1c\xb8\x63\xb7\x04\xc7\x78\x7b\xcb\x1d\x7e\xd8\x7a\xf6\x40\xed\x33\x5c\xe6\xe9\x88\x24\x07\xaf\x0e\x2e\x35\x8f\xa6\xdd\xf7\xab\xc7\x0e\x55\xd6\x64\x53\xc1\x18\xc9\x15\x4e\x21\x74\xaf\xfd\x6e\xb7\x2f\x33\xb7\x5e\x75\xf7\xcd\xee\x98\xf2\xf5\xa7\x1b\xf1\x0f\x54\xe2\x28\x61\x54\x71\xb9\xa1\x3a\xee\xaf\x76\x87\xad\xfe\xae\xf4\xe0\x8e\xbe\x7f\x8d\x3d\x78\x01\xe6\x9f\xb8\x2d\x16\x8b\xf6\xc7\x74\xcd\x91\x51\xca\xef\x04\xd7\xc8\x4d\x34\xf7\x1e\xfe\xff\x4f\x4a\x21\x83\x32\x67\x74\xee\x17\xbb\x32\x4c\x05\x77\x07\x9a\xa8\xaf\x8e\x71\x68\x37\x5b\xd7\xa9\x1e\x59\x54\xe2\x4c\x12\x89\x1b\x71\x83\xdf\x99\xb3\x53\x1c\xad\x69\x96\x21\xef\x0b\x61\xd8\x1f\xbb\x06\x72\x58\x70\x17\xd9\x66\x92\x42\x32\xfb\x6e\x25\x23\xac\xed\x15\x46\x4f\x12\xe9\xaa\xa7\x87\x4d\xef\x72\xb3\x87\x7d\xf3\xf3\xf9\xc5\xd0\xa9\x41\xb2\xb9\xf9\xcf\xe0\x79\x84\xcc\x9b\x2f\x3d\xbc\x5b\x0c\xd4\xc2\x3e\x47\x71\x3e\x6c\x27\x27\xe0\xcb\x00\x26\x83\x6f\xd7\x44\xdb\x75\xd5\xa2\x58\x5c\xbf\x32\xc2\x0a\xbb\x93\x77\xd9\x3e\x6b\xd5\x3f\x6c\x26\x6c\x9a\x90\x63\x2b\xa8\xf5\xb7\x05\x04\x24\x5a\x08\xa7\x9c\x96\x3b\xa3\x77\x86\xa9\xc8\xd0\x6f\x1c\xcc\xbc\x8c\x46\xae\x1e\x15\x5c\xa2\x37\xda\x52\x8a\x8d\x2b\x7c\x6e\x08\x27\x2b\x94\x10\x53\x6b\xc5\x2d\x4a\x04\x72\xc9\xec\xc6\x29\x15\x9c\x63\xaa\xdb\x4b\x71\xcd\x66\xa4\x1c\x5f\xeb\x35\xb3\x70\x05\x0b\xe7\x5f\xf6\xfd\xc6\xa1\xed\x86\x4d\x5e\x36\x63\xfa\xab\xc4\xa9\xf6\xc5\x7d\x2a\xd8\x65\x73\x8e\xe1\xa1\xc6\x8f\x3f\x5c\x76\xb7\x54\x90\x12\xf7\x32\xde\xa0\x8f\x17\xed\xe4\xc4\x6f\xfb\xac\x9d\xe0\x4a\x09\x3e\x85\xcc\x6c\xb6\xed\xb9\x65\xdc\xd8\x23\x4a\xc8\x63\x43\xe7\x9e\x79\xdd\x5e\x5f\x0d\xdb\xf4\x8f\x4b\xe2\x3d\x27\x77\x38\xfa\x7a\x2c\x6c\xc6\xfd\xec\x75\x96\xb2\xa9\xc2\xbe\x3e\xf1\x68\x07\x6f\x4f\x8e\x53\x9b\x64\xd9\x51\x2a\xb6\xa3\xf9\x1d\x84\xb5\x61\xef\x94\x9d\x7b\xa1\xa7\x47\x84\x8d\x67\x3f\x3b\x9d\xdb\x25\x23\x71\x86\xf0\x9d\xd9\x38\xe7\xec\x3a\x45\xd5\x88\xc6\x9c\x97\xcb\xb6\x4f\xf2\xd1\x19\xbf\x21\x8c\xda\x47\x1d\x2e\xa7\x1e\xe6\xbe\x97\x6f\xce\x5c\x75\xb3\xb1\xda\xd9\xf9\x1f\x67\xf0\x7f\x49\x68\xc0\x1f\x1a\x1e\x30\x7c\x8f\x34\xbc\x63\xb8\x70\xbb\x10\x93\xa3\x7a\x4a\x68\xe1\x13\xbc\x66\x73\x4f\x22\x72\x69\xff\x3d\x75\xcb\xfe\xb1\x1b\xe8\xfb\x9c\x0c\x46\xef\xdc\xeb\x36\xaa\xe9\x72\xd7\xfa\x60\xc5\x99\xbf\xf5\xc9\x4a\xdb\xff\x31\xb3\xbf\x74\xb7\xc5\xb2\xb1\x6f\x56\xd2\x35\x65\x99\x44\x1e\x97\x93\xdf\x94\xdd\xbd\x84\xf9\x0b\xa1\xfa\x7b\x21\x7f\xc2\x5b\xfd\x0b\x9a\xbd\x5c\xed\xff\x02\x6a\x3c\xfa\xf1\xdb\xde\xbd\x8c\x67\x9c\xea\xf9\xc1\xdb\x9e\x8a\xe7\x6e\x62\xd0\xfe\x19\x00\x00\xff\xff\x0d\xe0\xf7\x2e\xc3\x37\x00\x00") func staticSilenceJsBytes() ([]byte, error) { return bindataRead( @@ -1438,7 +1438,7 @@ func staticSilenceJs() (*asset, error) { return a, nil } -var _staticSummaryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x3d\x6f\xdb\x30\x10\xdd\xfd\x2b\x0e\x44\x07\x29\x56\x14\x79\xe8\x42\xc7\x5d\x3c\x04\x45\x97\x22\x4d\xbb\x04\x41\x40\x59\x17\x4b\x30\x45\x0a\xe4\x49\xa9\x11\xf8\xbf\x17\x94\x65\x7d\xd0\x71\x91\x0e\xd5\x12\xe7\xf8\xde\xf1\x8e\xef\xde\xdd\x5c\xc1\x56\xea\x54\x48\x0b\x6b\x2d\xb5\xb1\x11\x3c\x60\x59\x49\x41\x68\xe1\xea\x66\x36\xbb\xb9\x02\xfc\x5d\x69\x43\x98\xc1\x8f\xba\x2c\x85\xd9\xbb\x78\x23\x4c\xff\xef\x0a\x82\x97\x5a\x6d\xa8\xd0\x2a\x08\xe1\x6d\x36\x03\x00\x70\x00\x7b\x04\x2c\x87\x88\x41\x95\xa1\x81\x15\x4c\x08\xd0\x7d\x0e\x41\xba\x7a\x26\xb1\xb5\xb0\x82\xc7\xa7\x65\x7f\xf4\x29\x46\xb1\xc9\x83\x2e\x63\x34\xf0\x77\x11\x34\xe3\x1c\xee\x3b\xe5\x88\xab\xda\xe6\xc1\xf4\xcc\x7d\x4a\x94\xc8\x61\x17\x9d\x1d\x34\x42\x72\x68\x26\xe1\x43\x38\x14\x31\xfe\xdd\xdf\x61\xb5\xa1\xa1\x7f\x11\x41\xea\x97\x53\xbc\x40\x20\xe2\x46\x48\xf8\x02\xa9\xfb\x1b\x82\x41\xaa\x8d\x82\xc5\xf2\x02\xf0\xd6\x03\x5e\xbf\x8b\x74\x7d\xb4\x39\xdd\x8f\x8f\x60\x6f\x7d\xac\x07\xed\xa2\xc9\xb8\xe5\xd8\x60\x83\xc6\x62\x10\x76\x3a\xf6\x4a\x5d\x54\x69\x78\x1b\x59\x6c\x30\x48\x22\x58\x24\xe1\x48\xb3\x22\x72\x64\xff\x99\x5c\x4e\x29\x52\x94\xcf\x3b\x74\x43\x45\x62\xdb\x16\x1b\xdb\x4a\x16\x14\x30\x0e\x2c\x7c\x4c\x9e\x96\x17\x48\xee\xd9\x2e\x90\x16\x1e\xc9\x81\x2c\xed\x25\xc2\xaa\x9b\xfa\xf8\x0e\x29\xe8\x2f\x8f\x86\x94\xe1\x39\x73\x23\xed\x84\xb7\x96\xc2\xda\x0f\x92\xbb\x91\x74\xdd\x4f\xc7\x6a\xe6\x49\xd0\x9b\x30\xbe\x6f\x2d\x13\xb0\xd4\xa0\xd8\x65\xfa\x55\xad\xb5\x22\x54\xc4\x22\x78\x73\x19\x79\x9b\xf7\x34\x9a\x87\x91\xd9\x0a\x55\xd0\x25\xab\xd9\xde\xbb\x6f\x87\x91\x7e\x01\x8b\x95\x68\x52\x61\xae\x73\x14\x19\x1a\x16\xc6\x95\xae\x74\x83\xc6\xb3\x11\x99\x62\xbb\x45\xc3\x81\xe5\xee\x94\x4d\xbd\x94\xa1\x14\x7b\x0e\xbe\xf3\x98\xcd\xf5\x2b\xe3\xf0\x39\x49\x7c\xef\xb1\xbc\xc8\x90\x71\x58\x24\xc9\xd4\x7e\x53\xe0\x46\x2b\x12\x85\x6a\x2f\x4e\x75\xb6\xf7\xee\xcd\xa9\x94\x1c\xc8\xd4\x38\x8d\x57\x52\x6c\xb0\x44\x45\x2d\x8d\x48\x97\x1e\x91\x0a\x92\xc8\x81\x3d\xe8\xea\x28\x9f\x65\xe7\x17\xb7\xfc\xe3\x06\xf3\xd8\x9d\x58\xfc\x6f\xb2\x39\xbd\x0e\xe1\xd9\x2e\x19\x0b\x56\x57\x99\x20\x1c\x4b\x96\x09\x12\xef\xcb\xe6\x4e\xce\x33\x18\xb4\xf8\x8f\x9a\x1f\x1b\x0a\xde\x29\xc7\x8d\xea\x38\x57\xfb\x30\xdf\xfa\x09\xff\xe5\xf6\xd3\x74\x79\x3b\x07\x9e\x50\x30\x07\xe7\x3e\x98\xf7\xe8\xe1\x4e\xb7\x92\xba\x6a\x1e\xe5\x13\xac\x56\x2b\xa8\x55\x86\x2f\x85\xc2\xcc\x5f\x0b\x63\xdc\x78\x5f\x1d\x00\xa5\xc5\x8b\xe0\xf9\x7c\x04\x3d\x6b\x6d\x8b\xb4\xd6\xb5\xa2\xff\xd3\x5e\xe7\xe1\xa1\x98\xe9\xdb\x76\xc7\x43\xee\xaf\xaa\x20\xde\xda\x75\x98\xab\x9f\xed\x2c\xf0\x6e\x26\x86\xf8\xbd\x53\x98\x1f\x85\x1e\xa2\xdf\x6b\x9b\xf3\x56\xb0\x21\x76\xe7\x70\xa7\x46\xfb\x02\x0e\x41\x18\x2e\x67\x7f\x02\x00\x00\xff\xff\x0e\x64\x06\x75\xf7\x07\x00\x00") +var _staticSummaryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x3d\x6f\xdb\x30\x10\xdd\xfd\x2b\x0e\x44\x07\x29\x56\x14\x79\xe8\x42\x47\x5d\x3c\x04\x45\x97\x22\x4d\xbb\x04\x19\x28\xeb\x62\x09\xa1\x48\x81\x3c\x29\x35\x0c\xff\xf7\x82\xb2\xac\x4f\xbb\x48\x87\x72\xb1\x7c\x7c\xef\x78\xc7\x77\x8f\x77\x37\xb0\x93\x3a\x11\xd2\xc2\x46\x4b\x6d\x6c\x00\x4f\x58\x94\x52\x10\x5a\xb8\xb9\x5b\x2c\xee\x6e\x00\x7f\x97\xda\x10\xa6\xf0\xa3\x2a\x0a\x61\xf6\x2e\x5e\x0b\xd3\xfd\x8d\xc1\x7b\xad\xd4\x96\x72\xad\x3c\x1f\x0e\x8b\x05\x00\x80\x03\xd8\x13\x60\xdd\x47\x0c\xaa\x14\x0d\xc4\x30\x22\x40\xbb\x1c\x82\x74\xf9\x24\x76\x16\x62\x78\x7e\x59\x77\x3b\x9f\x42\x14\xdb\xcc\x6b\x13\x06\x3d\xfd\x2d\x80\x7a\x98\xc2\xad\x36\x45\x58\x56\x36\xf3\xc6\x5b\x6e\x29\x51\x20\x87\xb7\x60\xb6\x51\x0b\xc9\xa1\x1e\x85\x8f\x7e\x5f\xc3\xf0\xfb\x7c\x84\xd5\x86\xfa\xe6\x45\x00\xc9\xb4\x98\xfc\x15\x3c\x11\xd6\x42\xc2\x17\x48\xdc\xaf\x0f\x06\xa9\x32\x0a\x56\xeb\x2b\xc0\xfb\x09\xf0\xf6\x22\xd2\xb5\xd1\xe4\x74\x1f\x1f\xc1\xde\x4f\xb1\x13\x68\x1b\x8d\x86\x1d\x87\x06\x6b\x34\x16\x3d\xbf\x15\xb1\x93\xe9\xaa\x46\xdd\xd5\xc8\x7c\x8b\x5e\x14\xc0\x2a\xf2\x07\x82\xe5\x81\xe3\x4e\x6f\xc9\xa5\x94\x22\x41\xf9\x0d\xdd\x3c\x91\xd8\x35\xa5\x86\xb6\x94\x39\x79\x8c\x03\xf3\x9f\xa3\x97\xf5\x65\xce\x2f\x21\xaf\x71\x56\x13\x8e\x03\x59\xda\x4b\x84\xb8\x9d\xf7\xf0\x01\xc9\x3b\x1f\x1d\x74\x09\xfd\x39\x6f\x2b\xed\x88\xb5\x91\xc2\xda\x0f\x51\xdb\x51\x74\x7d\x8f\xc7\x69\x31\xb9\xfb\xce\x7a\xe1\x63\x63\x14\x8f\x25\x06\xc5\x5b\xaa\xdf\xd5\x46\x2b\x42\x45\x2c\x80\x83\xcb\xc8\x9b\xbc\xe7\x91\x3c\x0e\x2c\x96\xab\x9c\xae\x19\xcc\x76\x8e\x3d\x1c\x07\xc2\x79\x2c\x54\xa2\x4e\x84\xb9\xcd\x50\xa4\x68\x98\x1f\x96\xba\xd4\x35\x9a\x89\x7d\xc8\xe4\xbb\x1d\x1a\x0e\x2c\x73\xbb\x6c\xec\xa1\x14\xa5\xd8\x73\x98\x3b\x8e\xd9\x4c\xbf\x33\x0e\x9f\xa3\x68\xee\x3a\x96\xe5\x29\x32\x0e\xab\x28\x1a\x5b\x6f\x0c\xdd\x6a\x45\x22\x57\xcd\xe1\x89\x4e\xf7\x93\xb3\x33\x2a\x24\x07\x32\x15\x8e\xe3\xa5\x14\x5b\x2c\x50\x51\x43\x23\xd2\xc5\x84\x48\x39\x49\xe4\xc0\x9e\x74\x79\x52\xd0\xb2\xf9\xc1\x0d\xff\xf4\x76\x4d\xd8\xad\x60\xfc\x6f\xd2\x39\xcd\x8e\xfe\xec\x1d\x19\x8a\x56\x95\xa9\x20\x1c\xca\x96\x0a\x12\x97\xa5\x73\x3b\xf3\x0c\x06\x2d\xfe\xa3\xee\xa7\x86\xbc\x0b\xe5\xb8\x71\x1d\xe6\xba\x30\xe4\x93\x67\xdb\x39\xb0\x33\xf0\x12\x9c\xfb\x60\xd9\xa1\xfb\x33\xdd\x7b\xd4\x56\xf3\x2c\x5f\x20\x8e\x63\xa8\x54\x8a\xaf\xb9\xc2\x74\xfa\x28\x0c\x71\xc3\xc7\xea\x08\x28\x2d\x5e\x05\x2f\x97\x03\xe8\xac\xb5\x1d\xd2\x46\x57\x8a\xfe\x4f\x7b\xad\x8f\xfb\x62\xc6\x77\xdb\x6e\xf7\xb9\xbf\xaa\x9c\x78\x63\xd9\x7e\xae\x7e\x36\xb3\xc0\xdb\x99\xe8\xe3\x8f\x4e\x61\x7e\x12\xba\x8f\x7e\xaf\x6c\xc6\x1b\xc1\xfa\xd8\x83\xc3\x9d\x1b\xed\x0a\x38\x7a\xbe\xbf\x5e\xfc\x09\x00\x00\xff\xff\xd3\xb3\xc8\x37\xf1\x07\x00\x00") func staticSummaryJsBytes() ([]byte, error) { return bindataRead( @@ -1458,7 +1458,7 @@ func staticSummaryJs() (*asset, error) { return a, nil } -var _staticTemplatesJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x06\x6a\x80\xc8\x1b\xcb\x42\xae\xbb\x2b\x03\x6d\x91\x2d\x02\xa4\x3d\x34\xe9\xa9\x28\x02\x4a\x1c\xd9\xcc\x52\xa4\x40\x8e\xbc\x59\x04\xfe\xf7\x82\xa4\x2c\x51\xd2\x2a\xeb\xdb\x3c\xbd\x37\x33\x7c\x43\x0f\xf3\x1b\x38\x4a\x5d\x32\x69\xe1\x2b\xdc\xe4\xe0\x7e\x79\x0e\x9d\xe2\x68\x6c\xa5\x0d\xee\xbf\xd9\xcd\x26\xbf\x01\xfc\xde\x6a\x43\xc8\xe1\x0b\x36\xad\x64\x84\x16\x6e\xf2\xcd\x99\x99\x08\x28\x20\xad\x3b\x55\x91\xd0\x2a\xdd\xc2\x8f\xcd\xc6\x65\x73\x14\x8a\x28\x3f\x2e\x3b\x8f\xbb\x5f\xa5\x55\x2d\x8e\x0e\x1c\x20\x5f\xbe\xd5\xad\x3e\xa3\x81\x27\x41\x27\xa0\x13\x82\x14\x96\x40\xd7\xd0\x68\x4b\x50\xe9\xa6\xd1\x0a\x24\x2b\x51\xda\x48\x58\x1a\x64\x8f\x5c\x3f\xa9\x5b\x48\x7e\x19\x82\x64\xf7\x12\xe5\x77\xad\x08\x15\x4d\x98\x59\x15\xc0\x64\xb7\x99\xb6\x63\x50\x6a\xc6\xa1\x41\x6b\xd9\x11\x41\xd4\x50\xb2\xea\x11\x15\x87\x33\x1a\x2b\xb4\x82\xb2\x6b\x5a\x10\x16\x38\x12\x56\x84\x3c\xd2\x07\xf1\x5f\x88\x1c\xb9\x2b\x17\xe2\x4c\x79\x60\x51\x0a\x8d\xd1\x26\x3e\x54\xcd\x88\xc9\x0f\x0e\x75\x62\x1f\x65\x9e\x34\x39\x97\x50\x84\x46\x45\xc4\x2b\xf0\x02\xb7\x6b\x39\x23\x1c\x98\x21\x1c\x78\xd3\x76\x1a\xcd\x99\x74\xe3\xe8\xda\x30\x0c\x6f\x3a\xd4\x42\x12\x4e\xda\xf4\xc4\x2f\x82\x24\xba\x9c\x3e\xca\xc8\x85\x93\xd2\x1e\xff\x4d\xf3\xe7\x91\x54\x6a\xfe\xfc\x7a\x59\x2b\x24\xaa\x0a\xa1\xd6\xa6\x89\xa8\x3d\xfc\xa0\x4d\xe3\x32\xf6\x61\xe6\x58\x93\xba\x11\xef\x73\x57\x55\x68\xed\x9c\x9e\xd9\x80\xaf\xc9\x06\xbb\x26\xa2\xa5\xb9\x91\xe4\xc1\xcd\x6a\x21\xf1\x13\x5c\x93\x7c\xd2\x8c\x0b\x75\x5c\x88\x64\xc0\x17\x3e\x85\x69\x94\x1d\x91\x56\xf1\x2d\xf7\xc0\x27\xf7\xd1\xa5\xf2\xac\x2c\x80\x59\x18\xdd\x22\x13\x93\x68\x08\x8e\x46\x77\x6d\xf4\xc1\xa3\x7f\x38\xd0\xe5\xf1\x51\xe6\x39\x93\x03\x8c\xac\xe1\x02\x44\xd4\x17\xae\xc1\x28\xf8\x55\x29\x4d\xcc\x2d\x0c\x3b\x97\xb1\xf1\xd3\x8a\xd8\x1f\x70\xa1\x0b\x6b\x61\x45\xf2\x41\x62\x83\x8a\x16\x22\xec\xf1\x15\xd9\xe7\x30\x8c\xb9\xaa\x9f\xd1\xcf\xda\xfb\x93\xcd\xad\x0b\x0d\x66\x0d\x6b\x93\x41\x76\xb9\x1b\x77\xa5\x50\x82\xa0\x80\xc9\x22\xbd\xf2\xde\xec\x91\x55\xa7\x34\xac\xcd\xdd\xc8\x51\xac\xc1\x1d\x58\x94\x58\x91\x36\xdb\xc9\x3a\x05\x20\xf3\x3c\x43\x3c\x7a\xdd\xc9\xff\x3a\xf5\x7f\x50\xc0\xd7\xfd\x15\x4b\xdf\xa4\x43\xb2\xfd\x89\x1a\x99\x6e\xb7\x77\x93\x0c\x17\xa8\x18\x55\x27\x48\xd1\x2c\xea\x41\xd8\xec\x56\x4b\xdc\xfb\x7f\x48\x9a\x3c\x30\x21\x91\x03\x69\x68\x99\xb1\x38\x14\x87\x04\xde\x81\xab\x0f\xef\x20\xf1\xc1\x50\xf7\xee\x95\x9c\xae\xf0\xac\xa7\xd1\xcf\xfe\x4b\xec\xab\x41\xf7\xa6\x5d\x1f\xab\xd8\xe1\xe0\x9e\x5f\xfe\xdf\x29\x3e\x8c\x7f\xba\xa0\x98\x5b\x35\x56\x15\x35\xa4\x04\x45\x51\xf8\x07\xb3\x16\x0a\xf9\xdc\x8c\x99\x11\xff\xa8\x47\xa5\x9f\xd4\xd2\x80\xd9\x59\x0c\x52\x67\x14\x24\xf7\x5c\x9c\xa1\x92\xcc\xda\xe2\xed\xb7\xae\x29\x35\x19\xad\xde\x1e\xee\x4f\xef\x0f\x1f\xfb\x15\x1f\xde\x8c\x5b\xe8\xd6\x52\x3b\x6f\xef\xf3\xd3\xfb\xc3\x7d\xce\xc5\xf9\x90\x8c\x95\x46\xc7\xe6\x77\xa4\xaf\x4f\xe9\xd5\x96\x48\xb4\x3a\xfa\x57\x9a\x1e\x2f\x41\x98\xc5\x4a\xa7\xae\xd1\xf6\xe0\x20\x34\x26\xf4\xde\x1e\x7e\xd6\xff\x75\xca\x7d\xf9\xb1\xa3\x8f\x4a\xd0\xad\xff\x43\x8d\xff\xd0\xbf\x7d\xe9\xdb\xd9\x75\x18\xf2\x5c\xb6\xe9\xf6\x6e\xf3\x7f\x00\x00\x00\xff\xff\xfd\x4a\xee\x1e\x16\x09\x00\x00") +var _staticTemplatesJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x8f\xdb\x36\x10\xbd\xfb\x57\x0c\xd4\x00\x91\x37\x96\x85\x5c\xd7\x96\x81\xb6\xc8\x16\x01\xd2\x1e\x9a\xf4\x54\x14\x01\x25\x8e\x6c\x66\x29\x52\x20\x47\xde\x2c\x02\xff\xf7\x82\xa4\xac\x0f\xda\xde\x8d\x6e\xf3\xf8\xde\xcc\xf0\x0d\x45\xe6\x77\xb0\x97\xba\x64\xd2\xc2\x57\xb8\xcb\xc1\x7d\x79\x0e\x9d\xe2\x68\x6c\xa5\x0d\xae\xbf\xd9\xc5\x22\xbf\x03\xfc\xde\x6a\x43\xc8\xe1\x0b\x36\xad\x64\x84\x16\xee\xf2\xc5\x91\x99\x09\x50\x40\x5a\x77\xaa\x22\xa1\x55\xba\x84\x1f\x8b\x85\xcb\xe6\x28\x34\xa1\xfc\x38\xad\x3c\xee\xbe\x4a\xab\x5a\xec\x1d\x38\x40\x7d\x03\xad\x6e\xf5\x11\x0d\x3c\x09\x3a\x00\x1d\x10\xa4\xb0\x04\xba\x86\x46\x5b\x82\x4a\x37\x8d\x56\x20\x59\x89\xd2\xce\xa4\xa5\x41\xf6\xc8\xf5\x93\xba\x87\xe4\x97\x21\x48\x56\xd7\x49\xbf\x6b\x45\xa8\x68\xc6\xcd\xaa\x00\x26\xab\x45\xdc\x94\x41\xa9\x19\x87\x06\xad\x65\x7b\x04\x51\x43\xc9\xaa\x47\x54\x1c\x8e\x68\xac\xd0\x0a\xca\xae\x69\x41\x58\xe0\x48\x58\x11\xf2\x59\x86\x20\xff\x0b\x91\x23\x77\x25\x43\x9c\x29\x0f\x5c\x29\x87\xc6\x68\x33\xdf\x5e\xcd\x88\xc9\x0f\x0e\x77\x09\x7c\x94\x79\x5a\xb4\x43\xa1\x08\x8d\x9a\x50\xcf\xc0\x55\x76\xd7\x72\x46\x38\x70\x43\x38\x30\xe3\xb6\x1a\xcd\x99\x74\x03\xea\xda\x30\x1e\x3f\x06\xa8\x85\x24\x8c\xda\xf5\xd4\x2f\x82\x24\xba\xbc\x3e\xca\xc8\x85\x51\x03\x7e\xe5\x37\xcd\x9f\x47\x5a\xa9\xf9\xf3\xcf\x14\xb7\x42\xa2\xaa\x10\x6a\x6d\x9a\x19\xb9\x5f\x78\xd0\xa6\x71\x59\xfb\x30\x73\xbc\xa8\xfa\x84\xf9\xb9\xab\x2a\xb4\x36\x16\x64\x36\xe0\xb7\x85\x83\x79\x33\xd9\x35\xb3\x27\xa2\x07\x37\xbf\x0b\x91\x9f\xea\x6d\xd1\x27\xcd\xb8\x50\xfb\x0b\x99\x0c\xf8\x15\xcf\xc2\x7c\xca\x8e\x48\xab\xf9\x7f\xe0\xa1\x4f\x6e\xd9\xa5\xf3\xbc\x2c\x80\x59\x18\xe7\x95\x6c\x4c\xa2\x21\xd8\x1b\xdd\xb5\xb3\x25\x8f\xff\xe1\x60\x97\xcb\x47\x99\x67\x45\x5b\x19\x79\xc3\xc1\x98\x90\xaf\x1e\x8f\x51\xf2\xab\x52\x9a\x98\xbb\x60\x6c\x2c\x64\xe3\xd2\x4d\xb9\xdf\xea\x85\x32\x5c\x23\x37\x45\x1f\x24\x36\xa8\xe8\x42\x86\x3d\x7e\x53\xf8\x39\x8c\x27\xd6\xf5\x53\x7b\xb9\xc9\x3f\x59\x6c\x63\x68\x33\x6b\x58\x9b\x0c\xc2\xd3\x66\xbc\x63\x85\x12\x04\x05\xcc\x2e\xe0\x33\xef\xcd\x1a\x59\x75\x48\xc3\x75\xbb\x1a\x39\x8a\x35\xb8\x02\x8b\x12\x2b\xd2\x66\x19\x5d\xc3\x64\x9e\x23\xc4\xa3\xe7\xbb\xfc\x5f\xa7\xfe\x0f\x0a\xf8\xba\x3e\x63\xe9\x9b\x74\x48\xb6\x3e\x50\x23\xd3\xe5\x72\x33\xcb\x70\x82\x8a\x51\x75\x80\x14\xcd\x45\x3d\x08\x2f\x82\xd5\x12\xd7\xfe\xcf\x49\x93\x07\x26\x24\x72\x20\x0d\x2d\x33\x16\x87\xe2\x90\xc0\x3b\x70\xf5\xe1\x1d\x24\x3e\x18\xea\x6e\x5e\xc9\xe9\x0a\x47\x3d\x8d\x7e\xf6\x2b\x53\x5f\x0d\xba\xb7\xf0\xfc\xc8\x4d\x1d\x0e\xee\xf9\xe7\xe2\x3b\x4d\x37\xe3\x9f\x3c\x28\x62\xab\xc6\xaa\xa2\x86\x94\xa0\x28\x0a\xff\xd0\xd6\x42\x21\x8f\xcd\x88\x8c\xf8\x47\x3d\x2a\xfd\xa4\x2e\x0d\x88\xf6\x62\x90\x3a\xa3\x20\xd9\x72\x71\x84\x4a\x32\x6b\x8b\xb7\xdf\xba\xa6\xd4\x64\xb4\x7a\xbb\xdb\x1e\xde\xef\x3e\xf6\x4f\x41\x78\x5f\xee\xa1\xbb\x95\xda\x79\xbb\xcd\x0f\xef\x77\xdb\x9c\x8b\xe3\x2e\x19\x2b\x8d\x8e\x5d\x9e\x91\xbe\x03\x4a\xcf\xc6\x4c\x64\x2f\x0c\xff\x95\xc6\xc7\x83\x10\xe6\x71\xa3\x5b\xd7\x6c\xbb\x73\x10\x1a\x13\xfa\x6f\x77\x2f\xed\xe1\x3c\xe9\xbe\xfc\xd8\xd3\x47\x25\xe8\xde\xff\x54\xe3\x7f\xfa\xb7\x2f\x7d\x1f\x1d\x89\x21\xcf\x69\x99\x2e\x37\x8b\xff\x03\x00\x00\xff\xff\xa9\xf8\x9f\x5f\x52\x09\x00\x00") func staticTemplatesJsBytes() ([]byte, error) { return bindataRead( @@ -1478,7 +1478,7 @@ func staticTemplatesJs() (*asset, error) { return a, nil } -var _staticUiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x4d\x6f\xe3\x36\x13\xbe\xe7\x57\x0c\xf4\xe6\x20\x07\xb2\xec\xb7\x40\x2f\x0a\x5c\x20\x05\xba\xd9\x00\xdb\xa2\xd8\x4d\xd0\x43\x51\x14\xb4\x39\xb6\x08\x53\xa4\x40\x8e\xec\x35\x76\xf3\xdf\x0b\x0e\x25\x5b\x96\xe5\xcd\xa2\x87\xf2\x90\xd0\xe2\x7c\x3c\x33\xf3\xcc\x90\xb3\x3b\xd8\x68\xbb\x14\xda\xc3\x83\x46\x47\x3e\x83\x87\x86\xec\xca\x56\xb5\x46\xc2\x0c\xde\x29\x4d\xe8\x7c\x06\x9f\x9a\xaa\x12\xee\x90\xc1\x33\x56\xb5\x16\x84\x3e\x83\x17\xe3\x11\xe1\x6e\x76\x73\x33\xbb\x03\xfc\x5c\x5b\x47\x28\xe1\xe5\x29\x7c\xda\x09\x17\x76\x0b\x48\xd7\x8d\x59\x91\xb2\x26\x9d\xc0\x97\x9b\x1b\x00\x80\xd9\x0c\xf6\x25\x1a\x68\x3c\x3a\x58\x69\xb5\xda\x82\x35\x20\xcc\x01\x44\x00\x01\x5a\x2c\x51\x43\x65\xa5\xd0\x50\xdb\xba\xa9\x61\xaf\xa8\x04\x01\x5a\x79\x02\xbb\x86\xda\x7a\xaf\x96\x1a\x3b\x6b\x6b\x46\x09\x7b\xa5\x35\xf8\xd2\xee\x33\xa0\x52\x79\xe8\x3c\x83\xf2\xc1\x97\x04\xb2\xe0\x91\x9a\x1a\xa8\x14\x14\x1d\xb0\x89\x00\x96\x0f\x7e\x65\x9f\x0b\x38\xc3\x0c\xed\xba\x4d\x93\xff\x31\x34\x96\x4a\x26\xb9\x35\x69\x12\xdc\xe5\x4b\x9f\xb3\xb1\x24\x3b\x69\xe2\x0e\x0d\xf5\xd5\xc3\xe2\x8c\xe5\xbf\x8b\xc6\x63\x3a\xb9\x3f\x3b\x0a\x18\xaa\xd6\xfd\x6d\x1a\xf0\x8f\x08\xc4\xcc\x04\x01\x36\x9f\x3b\x0c\xa5\x90\xcf\xc2\x6d\x90\xae\xc9\xff\xbd\xc5\x03\x2c\xe2\x3e\x97\x82\x44\x9a\xf0\x7e\xba\xc5\x43\x72\x55\x69\xc7\x48\x2e\x95\x76\x21\xf4\x4b\x25\x41\xe4\x3c\x2c\x5a\x1a\xe5\x8f\x48\x1f\x82\xf8\x43\xf8\x9c\x1e\x61\x64\x27\xe3\x23\x36\x56\xb6\x31\xa1\x8e\x8b\x8e\x6d\xc1\xcc\xf7\x28\x73\xde\xf2\xb5\x32\x32\x4d\x62\x25\xa6\xa4\x48\x63\x32\xc9\x4b\xaa\x74\x7a\x26\x1c\xd6\x91\xc4\xf9\x47\x34\x12\x5d\x9a\xb0\xd6\x33\x2b\x65\x83\xa2\xc5\xc5\x01\x16\xf1\x5f\x36\x72\xde\x82\x2f\xba\xcd\x85\xc8\xeb\xe4\xec\xd3\x48\xfc\xa5\x32\xc4\x39\xec\xb5\x60\xfe\x88\x06\x9d\x20\x7c\x1f\x0e\xff\x65\x32\x96\x56\x1e\xae\xe4\xe2\x4a\x26\x7e\x0e\x1a\x19\x7c\x61\x48\x45\x44\xf6\xed\x00\x6e\x4f\xa9\x17\x4b\x4e\x7d\x68\x0f\xee\xee\x24\x83\x23\x92\x86\xc8\x9a\x69\x6c\xd8\xb3\x76\xd1\x58\x0d\xbb\xa5\xcb\x4b\xdb\xde\x4c\x7b\x8d\x55\x4e\x91\xee\x2d\x2d\xe3\xe9\x54\xd4\x35\x1a\x19\xe8\xd9\xe0\x90\xa0\x30\xd6\xbd\x0c\x28\x4d\x4a\x25\x47\xe5\xdb\xc9\x97\x3f\x48\x19\xb7\x69\x74\x34\x10\x7d\xed\xfd\xee\xef\x47\x87\x45\xa9\xa4\x44\x33\x3a\x2e\x86\xb1\xbf\x39\x0e\xbe\xc1\xf9\x55\xa9\xb4\x74\x68\xd2\x49\xee\xb0\xb2\xbb\x8b\x59\x73\x9d\x22\x6f\xaa\xc6\x09\xf6\x87\x50\xf4\xce\xba\xdf\xf0\x33\x7d\x44\x6d\x85\x4c\x47\xd2\xf0\x7a\x7f\x1c\xf7\x28\x56\x65\x3b\xdc\x37\xce\x36\x35\x94\x62\x87\x3c\xd0\xcd\x16\x36\x2d\xc3\x25\xac\xad\x03\x45\x19\x2c\x1b\x82\x3d\x42\x28\x0d\x28\x82\xc6\x90\xd2\x9d\x29\xbe\x34\x4a\xbb\x43\xe7\x21\xfc\x8d\xb3\x3c\x5a\xf5\x36\x88\x4b\x8b\xde\x24\x04\xe4\x84\x2f\x81\x4a\x84\x97\xa7\xf3\x31\xff\x18\xa4\x3f\x28\xb3\x7d\xcf\x16\x16\xd7\x69\x18\x19\x17\xab\x57\xd9\xc6\x23\x9a\x01\x71\x87\x85\x6b\x8b\xd5\x65\x97\x83\x9e\x32\xbc\x29\x47\xfb\x13\x88\x84\x4f\x95\x2f\xd3\x49\x2e\x8c\xaa\x04\x61\x7a\xc9\x7c\x5b\x8b\x95\xa2\x43\x01\xff\x9f\xcf\xcf\x29\x97\xc1\x0f\xf3\xf9\x55\xde\x0d\x00\x6b\x14\x3b\xfc\x6f\x01\x7f\x27\xdc\x1e\x3f\x82\x6f\x10\x5a\x43\x00\x8f\x61\x0a\x2a\xe3\x43\xf5\xfb\x9c\xa9\x85\x41\x1d\xcb\xcd\x37\x7d\xe3\x11\xc8\x5a\x4d\xaa\xf6\x9d\x21\x61\xe4\xf1\x8a\xb7\x1e\x47\xca\xfe\xdc\x6a\xf4\xab\xce\xf6\x7f\x19\x96\x3e\x0f\xac\x3d\x9d\xb5\x09\xfa\x33\x4c\x9d\x29\xd9\xcd\x46\xe3\xa2\x75\xff\x57\x32\xe9\x25\x58\x65\x30\x36\xcd\xba\xca\xb4\x3a\x23\x09\x8c\xa9\x55\xd6\x14\xb0\x16\xda\x63\x16\x22\xf2\xda\xee\x3d\x48\xbb\x37\x5d\xb0\xc0\x9d\xd9\x3e\x5d\xfa\x4b\xa2\x16\x87\x62\xf4\xf6\x02\x7e\x17\x15\xf0\xe3\x7c\x3e\x76\x79\x01\xf7\xda\xb0\x72\xb1\x7a\x17\x9f\x78\xcc\x14\xc7\x78\xc2\x8d\x98\x26\xed\xec\x81\xaf\x5f\x8f\x07\x71\x3c\x93\xef\xe6\xd2\x88\x25\xa7\x36\x9b\x70\x67\x26\xdc\xd0\xc9\x9b\x93\xb5\xa3\xcc\xb1\xa4\xfc\xdc\xe0\xba\xf2\x63\xf3\x6a\x1f\x8f\xb4\x7d\x94\xb9\x1f\x11\xe9\x28\xd2\x97\xe8\x7b\x56\x46\xd1\xb5\x47\xe2\xe9\x19\x99\x0e\x34\x1d\x52\xe3\x4c\x4f\xf4\xc9\x28\x2a\xd8\xd8\x29\x33\x9f\x86\x41\x15\x97\x71\x0e\xa4\x3b\xb4\xc5\x48\x04\x47\x00\xaf\x93\x00\xe7\x9f\x00\x00\x00\xff\xff\x7b\x4a\x88\xa8\xef\x0b\x00\x00") +var _staticUiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\xcd\x6e\xe3\x36\x10\xbe\xe7\x29\x06\x6a\x0e\x74\x20\xcb\x6e\x81\x5e\x14\xb8\x40\x0a\x74\xb3\x41\xb7\x45\xb1\x9b\xb4\x87\xa2\x07\xda\x1c\x5b\x44\x28\x52\x20\x47\xf6\x1a\xbb\x79\xf7\x82\xa4\x24\xcb\xb2\x94\x14\x3d\x2c\x0f\x09\x2d\xce\xcf\x37\x33\xdf\x0c\xb9\xb8\x81\x9d\x32\x6b\xae\x1c\xdc\x29\xb4\xe4\x52\xb8\xab\xc9\x6c\x4c\x59\x29\x24\x4c\xe1\x9d\x54\x84\xd6\xa5\xf0\xa9\x2e\x4b\x6e\x8f\x29\x3c\x62\x59\x29\x4e\xe8\x52\x78\xd2\x0e\x11\x6e\x16\x57\x57\x8b\x1b\xc0\xcf\x95\xb1\x84\x02\x9e\x1e\xfc\xa7\x3d\xb7\x7e\xb7\x02\xb6\xad\xf5\x86\xa4\xd1\x6c\x06\x5f\xae\xae\x00\x00\x16\x0b\x38\x14\xa8\xa1\x76\x68\x61\xa3\xe4\xe6\x19\x8c\x06\xae\x8f\xc0\x3d\x08\x50\x7c\x8d\x0a\x4a\x23\xb8\x82\xca\x54\x75\x05\x07\x49\x05\x70\x50\xd2\x11\x98\x2d\x54\xc6\x39\xb9\x56\xd8\x5a\xdb\x06\x94\x70\x90\x4a\x81\x2b\xcc\x21\x05\x2a\xa4\x83\xd6\x33\x48\xe7\x7d\x09\x20\x03\x0e\xa9\xae\x80\x0a\x4e\xd1\x41\x30\xe1\xc1\x86\x83\xdf\x82\xcf\x15\x9c\x61\x86\x66\x5d\xb3\xe4\xbb\x00\x2d\x48\x25\xb3\xcc\x68\x96\x78\x77\xd9\xda\x65\xc1\x58\x92\x9e\x34\x71\x8f\x9a\xfa\xea\x7e\x85\x8c\x65\x7f\xf0\xda\x21\x9b\xdd\x9e\x1d\x79\x0c\x65\xe3\xfe\x9a\x79\xfc\x23\x02\x31\x33\x5e\x20\x98\xcf\x2c\xfa\x52\x88\x47\x6e\x77\x48\x53\xf2\xbf\xe2\x11\x56\x71\x9b\x09\x4e\x9c\x25\x61\x3f\x7f\xc6\x63\x32\xa5\xf3\x67\xc0\x71\xa9\xb3\xf7\x81\x5f\xea\x70\x22\xeb\x60\xd5\x90\x28\xbb\x47\xfa\xe0\xc5\xef\xfc\x67\xd6\x82\x48\x3b\xd3\x23\x16\x36\xa6\xd6\xbe\x86\xab\x96\x69\xde\xc8\xdb\xaa\x21\x63\xd9\x56\x6a\xc1\x92\x58\x83\x39\x49\x52\x98\xcc\xb2\x82\x4a\xc5\xce\x84\xfd\xea\xe8\x9b\x7d\x44\x2d\xd0\xb2\x24\x68\x3d\x06\xa5\x74\x50\xae\x76\x85\xf0\xf2\xf8\x2f\x1d\x95\x68\xe0\xe7\xed\xe6\x42\xe8\x65\x76\xf6\x69\x24\x03\x85\xd4\x14\x72\xd8\x6b\xc0\xec\x1e\x35\x5a\x4e\xf8\xde\x1f\xfe\xaf\x74\xac\x8d\x38\x4e\x64\x63\x22\x17\x3f\x7b\x8d\x14\xbe\x04\x40\x79\xc4\xf5\x3a\xfc\xeb\x53\xf2\xf9\x3a\x24\xdf\xb7\x46\xe8\xec\x24\x85\x0e\x49\x4d\x64\xf4\x3c\x36\xeb\x59\xab\x28\x2c\x87\x9d\xd2\x66\xa5\x69\xed\x40\x79\x85\x65\x46\x91\xea\x0d\x29\xe3\xe9\x9c\x57\x15\x6a\xe1\xc9\x59\xe3\x90\x9e\x30\xd6\xb9\x01\x10\x4b\x0a\x29\x46\xe5\x9b\xa9\x97\xdd\x09\x11\xb7\x2c\x3a\x1a\x88\xbe\xf4\x7e\xf7\xf7\xa3\x83\xa2\x90\x42\xa0\x1e\x1d\x15\xc3\xd8\xdf\x1c\x05\xaf\xb0\x7e\x53\x48\x25\x2c\x6a\x36\xcb\x2c\x96\x66\x7f\x31\x67\xa6\x29\xf2\xa6\x6a\x9c\x5e\x7f\x71\x49\xef\x8c\xfd\x1d\x3f\xd3\x47\x54\x86\x0b\x36\x92\x86\x97\xdb\x6e\xd4\x23\xdf\x14\xcd\x60\xdf\x59\x53\x57\x50\xf0\x3d\x86\x61\xae\x9f\x61\xd7\xf0\x5b\xc0\xd6\x58\x90\x94\xc2\xba\x26\x38\x20\xf8\xd2\x80\x24\xa8\x35\x49\xd5\x9a\x0a\x17\x46\x61\xf6\x68\x1d\xf8\xbf\x71\x8e\x47\xab\xce\x78\x71\x61\xd0\xe9\x84\x80\x2c\x77\x05\x50\x81\xf0\xf4\x70\x3e\xe2\xef\xbd\xf4\x07\xa9\x9f\xdf\x07\x0b\xab\x69\x1a\x46\xc6\xc5\xea\x95\xa6\x76\x88\x7a\x40\xdc\x61\xe1\x9a\x62\xb5\xd9\x0d\x41\xcf\x03\xbc\x79\x88\xf6\x27\xe0\x49\x38\x95\xae\x60\xb3\x8c\x6b\x59\x72\x42\x76\xc9\x7c\x53\xf1\x8d\xa4\x63\x0e\xdf\x2f\x97\xe7\x94\x4b\xe1\x87\xe5\x72\x92\x77\x03\xc0\x0a\xf9\x1e\xbf\x2d\xe0\xff\x08\xb7\xc7\x0f\xef\x1b\xb8\x52\xe0\xc1\xa3\x9f\x81\x52\x3b\x5f\xfd\x3e\x67\x2a\xae\x51\xc5\x72\x87\x5b\xbe\x76\x08\x64\x8c\x22\x59\xb9\xd6\x10\xd7\xa2\xbb\xde\x8d\xc3\x91\xb2\x3f\x36\x1a\xfd\xaa\x07\xfb\xbf\x0c\x4b\x9f\x79\xd6\x9e\xce\x9a\x04\xfd\xed\xa7\xce\x9c\xcc\x6e\xa7\x70\xd5\xb8\xff\x27\x99\xf5\x12\x2c\x53\x18\x9b\x66\x6d\x65\x1a\x9d\x91\x04\xc6\xd4\x4a\xa3\x73\xd8\x72\xe5\x30\xf5\x11\x39\x65\x0e\x0e\x84\x39\xe8\x36\x58\x08\x9d\xd9\x3c\x5b\xfa\x4b\xa0\xe2\xc7\x7c\xe2\xfe\xf2\x8f\x94\x1c\x7e\x5c\x2e\xc7\x2f\x2f\xdf\x6b\xc3\xca\xc5\xea\x5d\x7c\x0a\x63\x26\xef\xe2\xf1\x37\x22\x4b\x9a\xd9\x03\x5f\xbf\x76\x07\x71\x3c\x93\x6b\xe7\xd2\x88\x25\x2b\x77\x3b\x7f\x63\x26\xa1\xa1\x93\x37\x27\x6b\x4b\x99\xae\xa4\xe1\xb1\x11\xea\x1a\x1e\x9a\x93\x7d\x3c\xd2\xf6\x51\xe6\x76\x44\xa4\xa5\x48\x5f\xa2\xef\x59\x6a\x49\x53\x0f\xc4\xd3\x13\x92\x0d\x34\x2d\x52\x6d\x75\x4f\xf4\x41\x4b\xca\x83\xb1\x53\x66\x3e\x0d\x83\xca\x2f\xe3\x1c\x48\xb7\x68\xf3\x91\x08\x3a\x00\x2f\x33\x0f\xe7\xdf\x00\x00\x00\xff\xff\x09\x55\x16\x86\xeb\x0b\x00\x00") func staticUiJsBytes() ([]byte, error) { return bindataRead( @@ -1498,7 +1498,7 @@ func staticUiJs() (*asset, error) { return a, nil } -var _staticUnseeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x59\xef\x6e\xdc\x36\x12\xff\x9e\xa7\x98\x28\x01\x2c\x25\xb2\x36\x46\x91\xfb\xb0\x8e\x7b\x48\x82\x24\xe7\x43\x91\x06\x76\x7d\x3d\xe0\x70\x28\xb8\xd2\xec\x2e\x6d\x2e\xa9\x92\xd4\xae\x17\xc1\x3e\x46\xd1\xf7\xeb\x93\x1c\xf8\x47\x12\xf5\xcf\xeb\x1c\x8a\xf2\x43\x62\x91\x33\xc3\xe1\x70\xe6\xc7\x99\xd9\xd9\x0b\x58\x31\xb1\x20\x4c\xc1\x15\xd9\x22\x87\x17\x33\x30\x63\x36\x03\x69\xbe\xb3\x5b\xf5\x24\xa0\xd9\x88\x0d\x72\xed\x89\x66\x33\xff\x6d\x88\x42\xaa\xb7\x0c\xa5\x56\x29\xbc\xad\xb4\xc8\xc5\xa6\x64\xa8\x31\x85\xf7\x82\x09\xa9\xcc\xff\x7c\x49\x57\xe6\xff\x8a\x6b\x94\x29\x7c\x92\xb4\x48\xe1\x23\x65\x1a\xcd\xfa\x17\x29\x56\x12\x95\x4a\xe1\x9a\x32\xe4\x39\xa6\x70\x5d\x6d\x36\x44\xee\x53\xf8\x09\x37\x25\x23\x1a\x55\x0a\x37\x97\x29\xfc\x4c\x74\xbe\x2e\xc4\x0a\x5e\xcc\xac\x02\x78\x5f\x0a\xa9\xb1\x80\x1b\xae\x10\xcd\xec\x96\x48\xff\x71\x01\xf1\xb2\xe2\xb9\xa6\x82\xc7\x09\x7c\x7d\xf2\xc4\x1c\xc1\x2c\x6b\xba\x41\x09\x17\xb0\x24\x4c\xe1\x79\x33\xbd\x45\xa9\xa8\xe0\xc3\x05\x89\x4b\x89\x6a\x7d\x69\x94\xdf\x12\x06\x17\x70\xf6\xfa\xbc\x15\xa7\x90\x61\xae\x85\x54\x70\x01\x5f\xed\xac\x19\x9e\xe9\x5d\xa5\xb5\xe0\x73\x88\x9e\xf9\x89\x28\x6d\x48\x50\x4a\x21\x95\x59\x73\x7f\x45\x76\xe5\x10\x88\xa6\x9c\x6a\xa3\x4f\x78\x8c\x9a\xbb\xb6\x5a\x76\xc9\xa9\x8e\x13\xcf\x65\x86\xb3\xb7\x9b\x6f\xe9\xdd\x4a\xb9\xbf\xf6\xea\x9a\x7d\x73\x51\xee\x4f\x15\x6a\x4d\xf9\x4a\x9d\xee\xa8\x5e\x9f\x2e\xed\xad\x04\x5a\x9a\x71\x4d\xb6\x18\xf2\x29\xb2\xc5\xd3\x02\x97\xa4\x62\x7a\x9c\xe3\x0a\x15\xea\x90\x45\x9a\x89\x66\xaf\xa8\x21\x3e\x24\xe7\x7d\xc5\x7f\x10\xa4\xe8\x1d\xc8\x3a\x4e\x73\xd2\x46\x2d\xe7\x25\x83\x79\xe3\x5f\x83\xc9\xd0\x37\x07\x8b\xde\x17\x07\xf3\xb5\xbf\xb9\x85\xef\x5e\xa5\xf0\xb7\x57\x2f\xce\x5e\x27\xe7\x26\x16\x14\x6a\xd8\xd5\x0e\xa9\x05\x9c\xbd\x86\x0d\xe5\x95\x46\xd5\xaa\xfe\x3c\x6e\xdc\x23\xeb\xb8\x44\x92\xe5\x8c\xe6\x77\xf1\xe8\xdd\x9a\x41\x97\x10\x3f\x7d\x80\xbd\x94\xa2\x8c\xa3\x82\x2a\xb2\x60\x58\x44\x49\x9f\xdf\x0c\x1b\x08\xd9\x15\x32\x6f\xd1\x70\xed\xd0\xf9\x92\xa8\x2b\xc9\x43\xcf\x0f\x2f\x27\xf4\xc9\x15\xea\x2b\xa7\xc9\x15\xd1\x38\xe5\x9d\x5e\x5e\x2f\x74\x86\xd2\xd4\xa4\x34\x85\xb9\xe0\x85\x0a\x85\xda\x60\x74\x64\x25\x91\x0a\x2f\xb9\x6e\xc8\x5a\xa5\x8d\xe1\xa8\xfa\x4c\x3e\xc7\x86\x76\x60\x97\xd9\xcc\x50\x94\x44\x29\x2c\x9c\x34\xaa\x80\xf2\x5c\x48\x89\xb9\x86\x4a\xa1\x8f\x68\xd8\x12\x56\x61\xd7\x4a\x6e\x73\xef\xa7\x9f\x50\xff\x58\x5a\x5d\xa3\x3a\xb8\x13\x33\xd9\xb7\xf4\x11\x85\x5a\xa5\xf4\x9a\xe8\x13\x05\x84\x29\x01\x0b\x21\xef\xb0\xb0\xea\xf8\x40\x83\xb3\xd7\x03\x3e\xaf\x90\xc1\xa3\xf1\xbb\x3d\xf4\x01\x29\x40\x31\xc3\x7c\x3e\xc4\x13\x1b\xba\xf1\xc8\xcd\x73\xc4\x42\xdd\x94\x2b\x49\x8a\xce\x4d\x49\x54\xa5\xe0\x0a\xff\xe5\x00\x34\x3c\x9f\x39\x7a\x83\xab\x17\x1e\x59\xfb\x06\x68\x81\xb7\x27\xe9\xfc\x31\x2e\xda\x77\xb9\x5a\xda\xd3\x09\x71\xe1\x89\x24\xf2\x02\xe5\x07\x83\xbe\xe1\x81\xb4\x7f\x74\x52\xc8\x05\xd7\x78\xaf\x43\x8d\x6b\x30\xb2\x5c\x03\xd4\x79\xcf\x90\x0c\x67\xff\x41\x0b\x0c\x27\xc3\xb0\x76\xd8\x9f\x64\x6b\xbd\x61\x71\xf3\xdc\x65\x57\x56\xb5\x11\x55\x8e\x88\x51\x6b\xb1\x8b\x3b\x98\xea\xd4\xbd\xe1\x77\x5c\xec\xf8\x18\x7c\xde\x94\x05\xd1\x18\x7f\x0d\xa1\xb8\x10\x79\x65\x5f\x7a\x4d\x35\x33\xb7\x1d\xc5\x7f\xfc\xfe\x1b\xfc\x08\x7f\xfc\xfe\x5b\x12\xb5\x74\x95\xe5\x7d\xef\x71\xb5\x18\x73\x9b\x35\xe1\x05\xc3\x81\x91\x51\xca\xd0\xac\x36\x19\xc9\x72\x52\xea\x4a\xe2\x87\xfb\x1c\xcb\x86\xaa\x1b\xda\x3b\xca\x0b\xb1\xcb\x72\xc1\x95\x60\x03\x5f\xf2\xd3\xce\x1c\x86\x3b\x53\x9a\xe4\x77\xc9\xb8\xc3\x34\xb7\x1f\x47\xd4\x58\x89\x13\x66\x3f\xa3\xb4\x27\x96\x93\x0d\xce\xcd\x83\x9d\x99\xbf\xba\x4f\xdd\x06\x95\x22\x2b\xbf\xec\x3f\xd2\x1e\x6c\xec\xec\xea\xe8\xa3\xa7\x50\xff\x44\x37\x28\x2a\x3d\xfd\x16\x38\x1c\xff\x99\x50\xfd\x51\xc8\xcf\x78\xaf\x87\x90\x7e\x48\xe1\xf5\xab\x57\x23\xe6\xaf\x86\x01\xdb\x05\xea\xc0\x08\xd2\x8a\xfd\x8c\x58\x60\x61\x6c\xf0\xad\x7a\x32\x91\x13\xb3\x90\xc9\x31\xfd\xbe\x7b\x35\xaa\xa0\x96\x74\xb5\x42\xe9\x8e\x34\xa5\xa6\xf3\xb3\x4b\x75\x85\xa4\xd8\x77\x42\x29\x23\xb7\xe4\xbe\x97\xe7\x54\x92\xcd\x21\x22\x36\x2b\xcd\x6e\x95\xe0\x7f\xff\xf5\x22\x82\x97\xcd\x33\xff\x09\xb5\xff\x33\x4e\xb2\x5b\x41\x79\x1c\xa5\x51\xd2\xbd\x34\x55\xe5\x39\x2a\x35\xef\xe2\xdc\x18\x78\xd7\x21\x76\xed\x38\xfa\xf0\x0f\xde\x71\x43\xf8\xb4\xb2\x32\x0f\x55\xa3\x2f\x82\x3b\xb4\x23\x1e\x11\x78\x00\x64\x0a\xad\x5c\x2b\xca\xfa\xfb\x94\x9c\x07\x30\x20\x1c\x1d\x57\x70\x06\x1f\x8f\x86\x70\xd8\x8d\xe7\x10\xbd\x23\xf9\x1d\xf2\xc2\x7d\xf7\x92\xc1\x70\x34\xd1\xd2\xaa\x3d\x4d\xcc\x88\xd2\xbf\x68\x35\x6f\xf3\xb0\x4f\xa8\x7f\x20\x4a\x7b\xc8\x4a\x46\x39\x0f\x13\xe7\x7b\x44\x14\x35\x22\x9c\x79\xc7\x8f\x3d\x9b\x79\x77\xfc\xc5\x79\x58\x9c\x98\x14\x22\x2f\x2b\x58\x23\xd9\xee\x41\x09\xa0\x1a\x76\x94\x31\x58\x30\x91\xdf\xc1\x42\x8a\x9d\x42\x09\x4b\x29\x36\x40\xca\x92\xed\x29\x5f\x41\xae\x14\xe4\x6b\xc2\x57\xa8\xa6\xb6\xa1\xfc\xd6\x24\x22\x9a\xf2\x3d\x14\xc8\xc8\x1e\x16\xa8\x77\x88\x1c\x48\x51\xbc\x67\xc4\x38\x1b\x90\x85\xd8\x22\x10\x5e\x0c\xb4\x52\xc2\xa6\x14\xa0\xd7\x58\xeb\x30\xb5\xd3\x9a\x18\x19\x56\x9f\x1c\x4d\x32\x2b\x71\x69\x93\x20\xbd\x16\x0a\xbd\xe4\x71\x3d\x1f\x03\x0c\xe1\xd0\x72\xff\xc0\x2a\x1c\x79\x98\xc6\x46\x1d\xd6\xee\x3e\xdf\x91\x62\x85\xca\x85\x85\xab\x4d\xd4\x11\x7e\x57\xa8\xd6\xdb\x59\xc6\xdc\x4e\x1d\xe1\x73\x65\x6f\xc8\x77\x84\x61\xe2\xb5\x9c\x1a\x8d\xd7\x7f\x11\x7c\x15\xbb\xd2\xdb\xa9\x67\x4a\x58\xa5\xc9\xa6\x4c\x8e\x88\xf8\x06\x9f\x0f\x87\x2d\x3e\xda\xe2\x47\x7d\x24\x9a\xb0\x78\x12\xa8\xda\x31\x99\xd9\x44\xd1\x91\x2d\x27\x78\x4d\xe6\x74\x94\xf7\x30\xb9\x7a\x80\xdc\x9c\x02\xfa\xe9\xc6\xd8\x78\x24\x4c\xd6\x23\xc8\x6b\x7a\x69\xca\xd8\xf8\x3f\x2e\x62\xfc\x54\xf6\xa1\x1f\x83\xac\x6e\x05\xd0\x05\x55\x8f\xd2\x0f\xc6\xe7\x23\x8e\xef\xca\x94\xa5\x71\x06\x27\x12\x76\xc4\xd4\x2b\xd2\xbc\xca\xf5\x43\x8e\x05\xec\xd0\x01\x8a\xa3\xf1\x90\x3f\x26\x4d\x09\x28\x04\x3f\xd1\x06\xcf\x80\xe3\x0e\x04\x1f\xd2\x7d\xa3\x33\xfe\xb5\xcf\x58\xf4\xf6\x9f\x6f\xff\x0d\x12\x7f\xad\x50\x69\x58\x12\x6a\x8a\xf1\xbf\xe2\x45\x1b\x7a\xc7\x23\x5d\xec\xf0\x60\x79\xdf\x49\xb4\x8e\xf6\x9e\x6a\x28\x9b\x2a\x6e\x1e\xee\x59\xa4\xa0\x65\x85\x23\xc5\x4a\x58\x2f\x0d\x95\x6b\xf0\x73\x4a\xbd\x26\x21\xeb\xd5\x42\xf5\x3b\x71\x33\x0d\xc3\x7f\xda\xc9\x5c\xa5\xdb\xf2\xda\x37\x36\xbf\x83\xa5\x90\xb0\xa4\xf7\x26\x01\x28\x49\x51\x98\xff\x15\x35\x6f\x2e\xe5\x65\xa5\x21\x27\x1c\x56\x52\xec\xec\x7b\xee\xb2\x03\x58\x23\x5d\xad\x75\xa0\x45\xb4\x10\xc5\x3e\x4a\xb2\x5c\xa9\x38\xf2\x52\x4e\xb5\x28\xa3\xd4\x2c\x66\x9c\x6c\x17\x44\x46\x49\xe6\x18\xe3\x64\xc4\x92\x25\xa9\xd4\x64\x4d\xd0\x18\xe1\x8b\xa1\x1a\xb3\xe0\x60\xc1\xc4\xa8\xeb\xab\x3e\x9d\x2a\xf3\x73\x53\x1a\xd7\xed\x07\x47\xdc\xf3\xcc\x91\xc6\x6c\xeb\xb0\xdd\xba\x5d\x55\x9b\x49\xf5\x8d\x2e\xc3\x16\x0d\xa9\xb4\xe8\xb5\x69\xfa\x1a\x3e\xc2\x3f\x46\x13\xc3\x49\xab\xc0\x23\xda\x16\xe3\x7d\x97\x3f\xc5\xa6\xed\x26\xb5\x65\x83\x5c\x2d\xec\x0d\xa6\x1e\x3b\x3e\x75\xba\x71\x71\x02\x2f\xe0\x6c\xbc\x68\x5b\x32\xa2\xd6\x53\x17\x60\x08\x16\x2b\xb8\x30\xde\xf8\xcc\x52\xd6\xce\xba\x20\xf9\xdd\x4a\x8a\x8a\x17\xa7\x36\xc3\x8a\x3a\xd1\xd5\x23\x2e\xa8\x2a\x19\xd9\x47\x29\x44\x36\x8f\x8e\x92\x8c\x70\xba\xb1\x29\x61\xc7\x0a\xad\x54\x9b\xc9\xcd\x21\x7a\xb6\x5c\x2e\xa3\x5e\xed\x99\x4e\x3f\x7f\xcf\x63\xbd\xa6\x6a\x4a\xfc\xe8\x16\x8b\x55\xef\xbd\x35\x96\x1a\x2a\xce\x05\xc7\xf0\x90\x7d\xc8\xf5\xde\xd1\x6e\x78\xc9\xa9\x9e\xdb\xc6\x7f\xfb\x88\x58\xbf\x9a\xbb\x98\x6d\x67\x07\x40\x3f\xf7\x71\xd1\x92\xd4\xf3\x9d\x12\xbb\x5d\xee\x5e\xf7\xbc\xd7\xda\x6d\xe9\xae\x7b\x74\x6a\x82\xee\xa3\xb9\xbd\xb9\xf3\x8d\xe6\x94\x87\xc4\xf6\xf2\x9f\xc7\x75\x4b\x29\xc9\x6c\xba\x30\xf8\x71\x66\x36\x83\x9d\x24\x25\x10\xc6\xec\xf9\x95\xc9\x0e\x76\x68\x21\xd1\xe5\x5a\xfe\x17\x93\x27\x61\x0d\x61\xab\x24\xaa\x2d\x17\x32\x34\x1b\x28\xa8\x94\xc1\xd5\x85\x10\x5a\x69\x49\xca\xeb\x1d\xd5\xb9\xd3\xc8\xe0\xa3\x16\xab\x15\xc3\x28\xc9\x7a\x04\xcd\x6f\x0e\xb3\x19\x20\x37\x40\x0e\x5a\x08\xa6\x69\xa9\x52\x78\x56\xff\x74\x61\x6a\x3d\x02\x85\x14\x65\x21\x76\xdc\x17\x7b\x75\x0a\x54\x29\x54\x50\xd0\xe5\x12\x25\x72\x0d\x05\xd1\xe4\xd4\x6d\x57\xef\xfe\x9f\x60\xee\xe2\xc4\xcb\x3f\xf9\x6f\xb0\x41\x94\x64\x7e\x3a\xf0\x43\x7f\x83\x73\x88\xd6\x62\x8b\xd2\xff\x54\x54\x2b\xdc\xb6\x0d\xc3\x1f\x30\x6e\x2e\x3b\x9f\xfe\xc7\xb5\x2e\x89\x0d\xfb\xce\x2f\x48\xb3\x99\x2f\x35\x8d\x59\x29\x61\x60\xcb\x49\xb0\xcd\x19\x2d\x8c\x9d\xc5\xae\xad\x68\x29\xa7\x6a\xed\x53\x2e\xca\x5d\x4c\x1c\x2b\x08\x6b\xb8\xbc\x0e\xba\x30\x3e\x2a\x5c\x14\x99\x8f\x03\x04\x99\x7b\xdb\xda\x98\x6e\x13\x8a\x1a\xf9\x1e\x6e\x12\x76\x1b\x84\xd1\x07\x9f\xf7\xc1\x4b\xe7\x5c\x9d\x76\xe1\xa1\x36\x48\xdd\x85\x55\xb0\x31\x2f\x2a\x70\xa1\x61\x81\xd6\x26\x58\xc0\x1e\x75\x0a\x1b\x72\x87\xa0\xc4\x06\xc1\x94\x3b\xb0\x21\xbc\x22\x8c\xed\xeb\x6b\xaf\x7f\xe2\xf3\xd5\x90\x57\x27\x7a\x53\xd0\x2d\xe4\xa6\x90\xbf\x38\xb9\xad\x36\x0b\xa1\xa5\xe0\x27\xdf\x47\xf0\xb2\xa1\x58\x9f\xd5\x04\x1a\xef\xf5\x69\x8e\x06\xed\x3b\x24\x97\xbe\x75\xe9\xd3\xed\x37\xb4\x66\x58\x12\x58\x92\x53\xbc\xcf\x19\xd9\xd8\xbe\xdc\x69\x4e\x65\x6e\xdc\xda\x48\x2a\x4c\x72\x21\x4f\x66\x9d\xdd\x66\xeb\xb3\xce\x77\xa0\x5f\x67\xfb\x37\x65\x40\xe6\x2c\xe7\x53\xe2\x50\x58\xf9\xfd\x9b\x59\x41\xb7\xfe\x5f\xe7\xb4\x61\x8b\xfa\x60\xe0\xe1\xfc\xc9\xff\x02\x00\x00\xff\xff\xcb\x6a\xaf\x27\x94\x1e\x00\x00") +var _staticUnseeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x19\xed\x6e\xdc\x36\xf2\x7f\x9e\x62\xaa\x14\xb0\x94\xca\x52\x8c\x22\xf7\x63\x1d\xf7\x90\x06\x4d\xce\x87\x22\x0d\xec\xf8\x7a\xc0\xe1\x70\xe0\x4a\xb3\x12\x6d\x8a\x54\x49\x6a\xd7\x8b\x60\x1f\xa3\xe8\xfb\xf5\x49\x0e\xfc\xd0\xea\xdb\x76\xee\x7a\xc7\x1f\xf6\x8a\x9c\x19\x0e\x87\xf3\xcd\xf4\x05\x14\x4c\xac\x09\x53\x70\x45\xb6\xc8\xe1\x45\x0a\x66\xa4\x29\x48\xf3\x9d\xdc\xaa\x67\x3d\x98\x4a\x54\xc8\xb5\x07\x4a\x53\xff\x6d\x80\xfa\x50\x6f\x18\x4a\xad\x62\x78\xd3\x68\x91\x89\xaa\x66\xa8\x31\x86\xb7\x82\x09\xa9\xcc\x7f\xbe\xa1\x85\xf9\xdf\x70\x8d\x32\x86\xf7\x92\xe6\x31\xbc\xa3\x4c\xa3\x59\xff\x28\x45\x21\x51\xa9\x18\xae\x29\x43\x9e\x61\x0c\xd7\x4d\x55\x11\xb9\x8f\xe1\x13\x56\x35\x23\x1a\x55\x0c\x37\x97\x31\xfc\x4c\x74\x56\xe6\xa2\x80\x17\xa9\x65\x00\xef\x6b\x21\x35\xe6\x70\xc3\x15\xa2\x99\xdd\x12\xe9\x3f\x2e\x20\xdc\x34\x3c\xd3\x54\xf0\x30\x82\xcf\xcf\x9e\x99\x23\x98\x65\x4d\x2b\x94\x70\x01\x1b\xc2\x14\x9e\x1f\xa7\xb7\x28\x15\x15\x7c\xba\x20\x71\x23\x51\x95\x97\x86\xf9\x2d\x61\x70\x01\x67\xaf\xce\x3b\x72\x0a\x19\x66\x5a\x48\x05\x17\xf0\xd9\xce\x9a\xe1\x91\xbe\x6f\xb4\x16\x7c\x05\xc1\x73\x3f\x11\xc4\x47\x10\x94\x52\x48\x65\xd6\xdc\xaf\xc0\xae\x1c\x7a\xa4\x29\xa7\xda\xf0\xd3\x3f\x46\x8b\xdd\x4a\x2d\xb9\xe4\x54\x87\x91\xc7\x32\xc3\xc9\xdb\xcd\x77\xf0\x6e\xa5\xde\x5f\x7b\x76\xcd\xbe\x99\xa8\xf7\xa7\x0a\xb5\xa6\xbc\x50\xa7\x3b\xaa\xcb\xd3\x8d\xbd\x95\x1e\x97\x66\x5c\x93\x2d\xf6\xf1\x14\xd9\xe2\x69\x8e\x1b\xd2\x30\x3d\x8f\x71\x85\x0a\x75\x1f\x45\x9a\x89\xe3\x5e\xc1\x11\xf8\x10\x9d\x8f\x19\xff\x51\x90\x7c\x74\x20\xab\x38\xc7\x93\x1e\xd9\x72\x5a\x32\x99\x37\xfa\x35\x99\xec\xeb\xe6\x64\xd1\xeb\xe2\x64\xbe\xd5\x37\xb7\xf0\xed\xcb\x18\xfe\xf4\xf2\xc5\xd9\xab\xe8\xdc\xd8\x82\x42\x0d\xbb\x56\x21\xb5\x80\xb3\x57\x50\x51\xde\x68\x54\x1d\xeb\x5f\x87\x47\xf5\x48\x06\x2a\x11\x25\x19\xa3\xd9\x5d\x38\x7b\xb7\x66\xd0\x0d\x84\x5f\x3d\x80\x5e\x4b\x51\x87\x41\x4e\x15\x59\x33\xcc\x83\x68\x8c\x6f\x86\x35\x84\xe4\x0a\x99\x97\x68\x7f\xed\x30\xf8\x92\xa8\x1b\xc9\xfb\x9a\xdf\xbf\x9c\xbe\x4e\x16\xa8\xaf\x1c\x27\x57\x44\xe3\x92\x76\x7a\x7a\x23\xd3\x99\x52\x53\x8b\xd4\x14\x66\x82\xe7\xaa\x4f\xd4\x1a\xa3\x03\xab\x89\x54\x78\xc9\xf5\x11\xac\x63\xda\x08\x8e\xaa\x0f\xe4\x43\x68\x60\x27\x72\x49\x53\x03\x51\x13\xa5\x30\x77\xd4\xa8\x02\xca\x33\x21\x25\x66\x1a\x1a\x85\xde\xa2\x61\x4b\x58\x83\x43\x29\xb9\xcd\xbd\x9e\xbe\x47\xfd\x53\x6d\x79\x0d\x5a\xe3\x8e\xcc\xe4\x58\xd2\x8f\x30\xd4\x31\xa5\x4b\xa2\x4f\x14\x10\xa6\x04\xac\x85\xbc\xc3\xdc\xb2\xe3\x0d\x0d\xce\x5e\x4d\xf0\x3c\x43\xc6\x1f\xcd\xdf\xed\x61\xec\x90\x7a\x5e\xcc\x20\x9f\x4f\xfd\x89\x35\xdd\x70\xe6\xe6\x39\x62\xae\x6e\xea\x42\x92\x7c\x70\x53\x12\x55\x2d\xb8\xc2\xbf\x39\x07\xda\x3f\x9f\x39\xfa\xd1\xaf\x5e\x78\xcf\x3a\x16\x40\xe7\x78\x47\x94\xce\x9f\xa2\xa2\x63\x95\x6b\xa9\x7d\xb5\x40\xae\x7f\xa2\xa6\xce\x89\xc6\x4b\x75\x85\x24\xdf\x3f\xea\x68\xdf\x7a\xef\xd1\xbf\xdf\xa7\x1b\x68\x0c\x5a\x36\x38\xf0\x76\xce\xab\xfd\x85\xe6\x38\x27\x6e\xc7\x5c\xbb\x69\xbe\xc4\x5e\x4b\xe6\xba\x14\xbb\x39\x97\x76\x33\x24\xd3\x07\xf9\xc3\x4e\xe6\xae\xb5\xc3\x4d\x53\x28\x49\x76\x07\x1b\x21\x61\x43\xef\x29\x2f\xa0\x26\x79\x6e\xfe\x2b\xca\x33\x04\xca\xeb\x46\x43\x46\x38\x14\x52\xec\x80\xf0\x1c\xb2\x92\xf0\x02\xa1\x44\x5a\x94\xba\xc7\x45\xb0\x16\xf9\x3e\x88\x92\x4c\xa9\x30\xf0\x54\x4e\xb5\xa8\x83\xd8\x2c\x26\x9c\x6c\xd7\x44\x06\x51\xe2\x10\xc3\x68\x46\x92\x12\x79\x8e\xf2\x07\x13\x64\xfb\x52\xd4\x3e\xb7\x88\x21\x13\x5c\xe3\xbd\x9e\x13\xab\xc5\x9a\x04\x97\xb7\x0c\xc9\x74\xb6\x7f\x93\x63\x11\xba\x10\x1f\x25\xa5\xae\x58\x78\xcc\x6a\x92\x2b\xcb\xda\x0c\x2b\x8f\x90\x51\xa3\xdb\x6e\xd9\xbd\xe1\x77\x5c\xec\xf8\x5c\x94\x74\x8a\x10\x7e\xee\x47\xdc\x5c\x64\x8d\x4d\xe8\x34\xd5\xcc\x18\x75\x10\xfe\xfe\xdb\xaf\xf0\x13\xfc\xfe\xdb\xaf\x51\xd0\xc1\x35\xf3\x4a\xd4\x17\x72\x49\x78\xce\x70\x22\x64\x94\xb2\x2f\x56\x9b\x73\x26\x19\xa9\x75\x23\xf1\x87\xfb\x0c\xeb\x23\xd4\xd0\x83\xef\x28\xcf\xc5\x2e\xc9\x04\x57\x82\x4d\x5c\x86\x9f\x76\xe2\x30\xd8\x89\xd2\x24\xbb\x8b\xe6\xfd\xc2\xf1\xf6\xc3\x80\x1a\x29\x71\xc2\xec\x67\x10\x8f\xc8\x72\x52\xe1\xca\xe4\x65\x89\xf9\x35\xcc\x68\x2a\x54\x8a\x14\x7e\xd9\x7f\xc4\xa3\xe8\xb0\xb3\xab\xb3\xb9\x8d\x42\xfd\x89\x56\x28\x1a\xbd\x1c\xf2\x5d\xb8\xfe\x99\x50\xfd\x4e\xc8\x0f\x78\xaf\xa7\x91\xfb\x10\xc3\xab\x97\x2f\x67\xbd\xc5\xc4\x2f\x0f\xe3\x71\x4f\x08\xd2\x92\xfd\x80\x98\x5b\xeb\xfd\xfc\xa5\x7c\x32\x91\x11\xb3\x90\xc8\x39\xfe\xbe\x7d\x39\xcb\xa0\x96\xb4\x28\x50\xba\x23\x2d\xb1\x39\x70\xc8\x03\x53\x4a\xc8\x2d\xb9\x1f\xa5\xb3\x8d\x64\x2b\x08\x88\x2d\x3e\x92\x5b\x25\xf8\x9f\x7f\xb9\x08\xe0\x9b\xa3\xeb\x7b\x8f\xda\xff\x0c\xa3\xe4\x56\x50\x1e\x06\x71\x10\x0d\x2f\x4d\x35\x59\x86\x4a\xad\x86\xe1\x6c\x2e\x46\x1f\x1d\xad\xc3\x18\x47\x79\xf0\x8a\xdb\x8f\x92\x96\x56\xe2\x23\xd2\x6c\xe0\x77\x87\x76\xc0\x33\x04\x0f\x80\x4c\xa1\xa5\x6b\x49\x59\x7d\x5f\xa2\xf3\x80\x0f\xe8\x8f\x81\x2a\x38\x81\xcf\x5b\x43\x7f\xd8\x8d\x57\x10\x7c\x4f\xb2\x3b\xe4\xb9\xfb\x1e\xe5\xfc\xfd\x71\xb4\x96\x8e\xed\x65\x60\x46\x94\xfe\xa4\x56\x5d\xb6\xfd\x1e\xf5\x8f\x44\x69\xef\xb1\xa2\x59\xc4\xc3\xc2\xf1\x9e\x60\x44\x47\x12\x4e\xba\xf3\xa7\x4e\x53\xaf\x8d\xff\x72\x0a\x16\x46\x26\x51\xcc\xea\x06\x4a\x24\xdb\x3d\x28\x01\x54\xc3\x8e\x32\x06\x6b\x26\xb2\x3b\x58\x4b\xb1\x53\x28\x61\x23\x45\x05\xa4\xae\xd9\xde\xc4\xbb\x4c\x29\x1f\xda\xd4\xd2\x36\x94\xdf\x9a\x74\x53\x53\xbe\x87\x1c\x19\xd9\xc3\x1a\xf5\x0e\x91\x03\xc9\xf3\xb7\x8c\x18\x5d\x03\xb2\x16\x5b\xb4\x81\x72\xcc\x95\x12\x36\x71\x04\x5d\x62\xcb\xc3\xd2\x4e\x25\x31\x34\x2c\x3f\x19\x9a\x92\x45\xe2\xc6\xa6\xba\xba\x14\x0a\x3d\xe5\x79\x3e\x9f\xe2\x17\xfa\x43\xcb\xfd\x03\xab\xf0\x48\x5c\x9a\x1b\xad\x55\xbb\xfb\xfc\x9e\xe4\x05\x2a\x67\x15\xae\x02\x55\x8f\xe0\xbb\x76\x44\xbb\x9d\x45\xcc\xec\xd4\x23\x78\xae\xb9\xd1\xc7\x7b\x04\x61\x21\x58\x2e\x8d\xa3\xd6\x7f\x14\xbc\x08\x5d\x83\xc5\xb1\xa7\x69\x85\x4a\x93\xaa\x8e\x1e\x21\xf1\x05\x3a\xdf\x1f\xb6\xc4\xec\x4a\x5c\xf5\x8e\x68\xc2\xc2\x45\x3f\xd5\x1f\x8b\xa9\x4d\x10\x3c\xb2\xe9\x22\xb6\x49\x9e\x1e\xc5\x3e\x2c\xae\x1e\x20\x33\x27\x81\x71\xc6\x31\x37\x9e\xe8\x29\xdb\xd1\x4b\x6d\x46\x99\xca\xdc\xf8\x0f\x2e\x63\xfe\x54\x36\xd6\xcf\xb9\xad\x61\xad\x37\xf4\xab\xde\x51\x3f\x68\xa3\x4f\x38\xbe\x2b\x48\x37\x46\x21\x1c\x49\xd8\x11\x53\x99\x4a\x5b\x29\xf9\x58\x8e\x39\xec\xd0\x39\x15\x07\xe3\xbd\xfe\x1c\x35\x25\x20\x17\xfc\x44\x1b\x9f\x06\x1c\x77\x20\xf8\x14\xee\x0b\x15\xf2\xff\x1b\xc9\x82\x37\x7f\x7d\xf3\x77\x90\xf8\x4b\x83\x4a\xc3\x86\x50\x5b\xfb\xfc\xef\x83\xda\x54\x39\x9e\xa8\x61\x87\x07\xfb\x38\x35\x69\xd4\x62\xba\x78\xac\x0c\x3f\x1a\xa8\xb9\xb2\x72\xb2\x60\xee\xce\x75\x56\xbf\x5a\x2a\xf4\x33\x53\x35\xb5\x0d\x08\x07\x3c\x62\x79\xa6\x35\xdb\x9d\x64\x58\xd2\xa9\xa6\x5a\x64\xdf\xf0\x32\x6d\xd2\x90\x46\x8b\x51\xa3\x66\xcc\xe1\x13\x8a\xe6\xd9\xa4\x61\x51\x2a\xf0\x84\xc6\xc5\x7c\xe7\xe5\x0f\x91\x69\xb7\x49\x2b\xd9\x5e\x1c\xef\x77\x07\x63\xaf\x54\xef\x07\xfd\xb8\x30\x82\x17\x70\x36\x9f\xcf\x6f\x18\x51\xe5\xd2\x05\x18\x80\x75\x01\x17\xa6\x44\x7f\x6e\x21\xdb\x0a\x7e\x4d\xb2\xbb\x42\x8a\x86\xe7\xa7\x36\xfa\x06\x83\x42\x77\x04\x9c\x53\x55\x33\xb2\x0f\x62\x08\x6c\x8e\x15\x44\x09\xe1\xb4\xb2\xe9\xc2\x40\x0a\x1d\x55\x1b\xe5\x57\x10\x3c\xdf\x6c\x36\xc1\xa8\x2c\x89\x97\xdd\xe2\xd7\xa1\x2e\xa9\x5a\x22\x3f\xbb\xc5\xba\x18\xf9\x61\x23\xa9\x29\xe3\x5c\x70\xec\x1f\x72\x6c\x8b\x5e\x3b\xba\x0d\x2f\x39\xd5\x2b\xdb\xfa\xef\x9c\x8b\xd5\xab\x95\xb3\xd9\x6e\x76\xe2\x01\x56\xde\x2e\x3a\x90\x76\x7e\x50\x7d\x75\xcb\xc3\xeb\x5e\x8d\x9a\xbb\x1d\xdc\xf5\x08\x4e\x2d\xc0\xbd\x33\xb7\xb7\x72\xba\x71\x3c\xe5\x21\xb2\xdd\xfc\xaf\xc3\xb6\xdb\x10\x25\x36\x8c\xcc\x3c\xcf\xa4\x29\xec\x24\xa9\x81\x30\x66\x25\xa0\x4c\xdc\xd8\xa1\xed\x14\xb9\x28\xec\x5f\x4d\x2c\xf4\x30\xc7\xb4\x99\x34\xd5\x16\x17\x19\x9a\x8d\x14\x34\xca\x24\xe1\x6b\x21\xb4\xd2\x92\xd4\xd7\x3b\xaa\xb3\xb2\xaf\x70\x89\x16\x45\xc1\x30\x88\x92\x11\xd0\xe0\x05\x22\x4d\x01\x39\x59\x33\x93\x34\x0b\xa6\x69\xad\x62\x78\xde\x3e\x66\x98\xba\x80\x40\x2e\x45\x9d\x8b\x1d\xf7\x85\x41\x1b\x2a\x1b\x85\x0a\x72\xba\xd9\xa0\x44\xae\x21\x27\x9a\x9c\xba\x2d\xfb\x5c\xfc\xa3\x37\x7f\x71\xe2\xf7\x38\xf9\x67\x6f\x93\x20\x4a\xfc\xf4\x48\x37\xfd\xcd\xae\x20\x28\xc5\x16\xe5\xf0\x65\xe5\xf8\xd1\x75\x9c\xc6\x4f\x1c\x37\x97\xd3\x77\x15\xf7\x0c\x37\x05\xb5\x2e\x62\xf2\xde\x94\xa6\xbe\x6c\x31\xe2\xa7\x84\x81\x2d\x4d\xc0\xd6\xf9\x5a\x98\xfb\x10\xbb\xae\x3a\xa2\x9c\xaa\xd2\x87\x6e\xca\x8b\x2f\x6a\x3c\xb4\x6e\xf6\xba\x57\xd8\x0f\x7a\x0f\x67\x9d\xab\x82\x5e\x3e\x28\x9e\xd8\x83\x12\xff\x4d\x17\x2a\xf8\xc1\x67\x16\xf0\x8d\x53\xd2\x07\x7a\x52\x69\x0a\x6d\xcb\x4f\x41\x45\x8b\x52\x03\x17\x1a\xd6\x68\xa5\x86\x39\xec\x51\xc7\x50\x91\x3b\x04\x25\x2a\x04\x93\x5a\x43\x45\x78\x43\x18\xdb\x0f\xfc\xa5\x7f\x3a\xf4\xd9\x77\x8f\xbd\xe0\x75\x4e\xb7\x90\x99\xf2\xf1\xe2\xe4\xb6\xa9\xd6\x42\x4b\xc1\x4f\xbe\x0b\xe0\x9b\x01\x54\x79\xd6\x02\x69\xbc\xd7\xa7\x19\x9a\x58\x32\x01\xbb\xf4\x7d\x33\x9f\xe8\xbd\xa6\x2d\xd2\x86\xc0\x86\x9c\xe2\x7d\xc6\x48\x65\x9b\x42\xa7\x19\x95\x99\x31\x14\x43\x2d\x37\x85\xaf\x3c\x49\x27\xbb\xa6\xe5\xd9\x64\xae\xc7\xef\x80\x95\xd7\xf5\x08\xd4\x49\xd7\x27\x66\x63\xc2\xf5\x77\xaf\xd3\x9c\x6e\xfd\xdf\xce\x1c\x86\x3d\xd3\x83\x71\x4b\xe7\xcf\xfe\x1d\x00\x00\xff\xff\x77\x7c\x66\xc5\x0e\x1f\x00\x00") func staticUnseeJsBytes() ([]byte, error) { return bindataRead( @@ -1518,7 +1518,7 @@ func staticUnseeJs() (*asset, error) { return a, nil } -var _staticWatchdogJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcf\x6b\xdb\x30\x14\xbe\xe7\xaf\x78\x73\x0b\x93\x83\xe3\x78\x97\x1e\x1c\xb2\x4b\xd9\x4a\xa1\xb0\x51\x52\x76\x2c\xaa\xfd\x9c\x68\x55\xa4\x20\x3d\x37\x81\x92\xff\x7d\xc8\x71\x64\xd9\x75\x56\x1d\x42\xac\xef\x7b\xdf\xfb\xa9\x37\x9f\xc2\x5a\xea\x17\x2e\x2d\x6c\xf5\x16\x15\xc1\x74\x0e\x00\x30\x9f\xb7\xdf\xe9\x5f\x3b\x99\x04\xac\x5b\xad\x2a\xb1\x4e\xe0\x56\xd7\x8a\xd0\x24\xb0\xc2\xed\x4e\x72\x42\x0b\xd3\x79\xc3\xc4\xc3\x4e\x1b\xc2\x12\xfe\x70\x2a\x36\xa5\x5e\x3b\xe0\x8d\x9b\xee\x7b\x09\xac\xaa\x55\x41\x42\x2b\x16\xc3\xfb\x64\xe2\x3c\x3a\x86\x45\x89\x05\x69\x63\x61\x09\xef\xcd\xad\x3b\x85\x73\x55\xea\xbd\xca\x21\xba\x32\x28\x35\x2f\x67\xc5\xc9\x7d\xd4\x90\x8e\x8b\x4e\x42\x72\x4b\x2b\x67\x9f\x2d\xfc\xdd\x96\x1f\x1e\xf8\x3a\x20\x09\x75\x7b\xd6\x84\x25\x54\x5c\x5a\xec\xd8\x15\x27\x2e\x43\xfc\x26\x1b\x80\x8f\x4d\x0c\x2b\xb1\x45\xf3\x3f\x73\x34\x03\x8a\xe7\x90\xbb\x5f\x89\xe2\xd5\x61\x61\x25\xce\x29\x8b\x0a\xd8\x39\x93\xe5\x12\xb2\x18\x0c\x52\x6d\x54\xab\xd1\x76\xa8\xd4\xea\x2b\x81\xe1\xc2\x22\x70\x05\x68\x8c\x36\xce\x94\xd7\xa4\x0d\x56\x06\xed\x06\x84\x85\x52\x58\xfe\x22\xb1\xec\xa9\x7f\x39\x35\x32\xbd\x43\xfa\xb5\x6b\xfc\x47\x81\x59\x14\x3b\x80\xc5\x23\x7e\x5d\xfc\x4a\xef\x61\xd9\x0e\x08\x8b\xd3\x9a\x0a\xf7\xab\xc4\x81\xc5\x8b\x9e\x17\x47\x9c\x9d\x7b\xf2\xbd\x6d\x44\x98\xa8\x3b\xd7\x2c\xba\x6a\x62\xb7\x51\x9c\x6e\x68\x2b\x99\x9f\xa9\xf4\x11\x55\x89\x86\x45\x4d\x55\x7f\x38\x52\x94\x0c\xcc\xdd\x71\x1e\x9e\xc9\xe6\xad\xab\xe4\x03\xc1\x62\xa1\x55\x69\x9f\x25\x56\x94\x0f\x5a\xdc\x23\x1f\xe3\x38\xb5\x1b\xbd\x0f\x33\x71\xa7\xed\x68\xfa\xa4\x5e\x95\xde\xab\x21\xdc\x94\x34\x18\xab\x61\x8e\xee\x5c\x1c\xac\x0f\xa4\xfe\x80\x59\x24\xf7\x57\xd7\xc4\x46\x87\xa5\x57\x08\x5d\x70\x47\x48\x4f\xef\x64\x18\x66\x93\x61\x02\x37\x19\x4c\xe1\x5b\x96\x65\x23\xf0\xd8\xfc\x5a\xa4\x7b\xf7\xfd\xc6\xe5\xe7\x21\x5c\x33\xff\x8c\x53\xff\x74\xe3\x94\xf0\x40\x6c\x36\xeb\x17\x61\x3c\xbc\x0b\x91\xf5\x5f\x2d\x99\x1a\xfb\x9c\xa3\xff\x3a\x02\x4a\x8b\x83\xf8\x2e\x3e\x7a\x4f\xa8\x80\x0d\xcb\x1f\x43\x21\x91\x1b\x5f\xff\x21\x7c\x41\x21\xac\xdf\x98\x44\x0f\xef\x34\x8e\x1f\xd6\x99\x50\x82\xc2\x25\x21\xda\x36\x24\x40\x5a\xa2\xe1\xaa\xc0\xb0\x0f\xa7\x07\xe6\xaa\x73\x46\x3b\xf1\xb0\x89\x7e\x01\x25\x70\x56\xec\x4f\x44\x18\x43\xbd\x2b\x39\x61\xb3\x54\x7d\x1c\x64\x43\xb7\x7e\xe9\x92\x1d\x59\x06\xa1\xd6\x1a\xa9\x2f\x14\xca\x9c\x76\x4d\xab\x36\x6a\xfb\xd3\x15\xef\x13\xf3\xa0\xcf\x7d\x8d\x16\xef\x0c\xee\x95\xa0\xbc\x29\x71\xb7\x30\x7e\x6b\xb5\xce\x7d\xca\xdd\xfd\x1d\xd2\x03\xb7\xf4\xd4\x00\xf9\x29\x8f\x0e\xbd\xb7\x4d\x64\xb9\x8f\xd1\x3b\x3e\xb2\x38\x5e\x4c\xfe\x05\x00\x00\xff\xff\x4e\x64\x6d\xcc\x67\x07\x00\x00") +var _staticWatchdogJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcf\x6f\xa3\x3a\x10\xbe\xe7\xaf\x98\x47\x2b\x3d\x13\x11\xc2\xbb\xf4\x40\x94\x77\xa9\x76\xab\x4a\x95\x76\x55\xa5\xda\xb3\x0b\x43\xe2\xad\x63\x47\xf6\xd0\x44\xaa\xf2\xbf\xaf\x0c\xc4\x18\x4a\xb6\x3e\xb4\xc1\xdf\x37\xdf\xfc\xf4\x2c\xe7\xb0\x95\xfa\x95\x4b\x0b\x7b\xbd\x47\x45\x30\x5f\x02\x00\x2c\x97\xdd\x77\xfa\xdb\xce\x66\x01\xeb\x5e\xab\x4a\x6c\x13\xb8\xd7\xb5\x22\x34\x09\x6c\x70\x7f\x90\x9c\xd0\xc2\x7c\xd9\x30\xf1\x74\xd0\x86\xb0\x84\x5f\x9c\x8a\x5d\xa9\xb7\x0e\x78\xe7\xa6\xff\x5e\x03\xab\x6a\x55\x90\xd0\x8a\xc5\xf0\x31\x9b\x39\x8f\x8e\x61\x51\x62\x41\xda\x58\x58\xc3\x47\x73\xeb\x4e\xe1\x5c\x95\xfa\xa8\x72\x88\x6e\x0c\x4a\xcd\xcb\x45\xd1\xba\x8f\x1a\xd2\x79\xd5\x4b\x48\x6e\x69\xe3\xec\xb3\x95\xbf\xdb\xf3\xd3\x13\xdf\x06\x24\xa1\xee\x2f\x9a\xb0\x86\x8a\x4b\x8b\x3d\xbb\xe2\xc4\x65\x88\xdf\x65\x23\xf0\xb9\x89\x61\x23\xf6\x68\xfe\x66\x8e\x66\x44\xf1\x1c\x72\xf7\x1b\x51\xbc\x39\x2c\xac\xc4\x25\x65\x51\x01\xbb\x64\xb2\x5e\x43\x16\x83\x41\xaa\x8d\xea\x34\xba\x0e\x95\x5a\xfd\x4b\x60\xb8\xb0\x08\x5c\x01\x1a\xa3\x8d\x33\xe5\x35\x69\x83\x95\x41\xbb\x03\x61\xa1\x14\x96\xbf\x4a\x2c\x07\xea\xff\xb4\x8d\x4c\x1f\x90\x7e\x1c\x1a\xff\x51\x60\x16\xc5\x0e\x60\xf1\x84\x5f\x17\xbf\xd2\x47\x58\x77\x03\xc2\xe2\xb4\xa6\xc2\xfd\x55\xe2\xc4\xe2\xd5\xc0\x8b\x23\x2e\x2e\x3d\xf9\xbf\x6b\x44\x98\xa8\x3b\xb7\x2c\xba\x69\x62\xb7\x51\x9c\xee\x68\x2f\x99\x9f\xa9\xf4\x19\x55\x89\x86\x45\x4d\x55\xbf\x39\x52\x94\x8c\xcc\xdd\x69\x3d\xe4\xdd\xff\xe4\x13\x6e\xb1\xd0\xaa\xb4\x4f\x58\x51\x3e\x6a\xf0\x80\x7b\x8e\xe3\xd4\xee\xf4\x31\xcc\xc3\x9d\xae\x9f\xe9\x8b\x7a\x53\xfa\xa8\xc6\x70\x53\xd0\x60\xa8\xc6\x19\xba\x73\x75\xac\x3e\x91\x86\xe3\x65\x91\xdc\x4f\x5d\x13\x9b\x1c\x95\x41\x19\x74\xc1\x1d\x21\x6d\x5f\xc9\x38\xcc\x26\xc3\x04\xee\x32\x98\xc3\x7f\x59\x96\x4d\xc0\x53\xd3\x6b\x91\x1e\xdd\xf7\x3b\x97\x5f\x87\x70\xcb\xfc\x23\x4e\xfd\xc3\x8d\x53\xc2\x13\xb1\xc5\x62\x58\x84\xe9\xf0\xae\x44\x36\x7c\xb3\x64\x6a\x1c\x72\xce\xfe\xeb\x0c\x28\x2d\x8e\xe2\xbb\xfa\xe4\x3d\xa1\x02\x36\x2e\x7f\x0c\x85\x44\x6e\x7c\xfd\xc7\xf0\x15\x85\xb0\x7e\x53\x12\x03\xbc\xd7\x38\x7f\x5a\x66\x42\x09\x0a\x57\x84\xe8\xda\x90\x00\x69\x89\x86\xab\x02\xc3\x3e\xb4\xcf\xcb\x55\xe7\x82\xf6\xe2\x61\x13\xfd\xfa\x49\xe0\xa2\x38\x9c\x88\x30\x86\xfa\x50\x72\xc2\x66\xa5\xfa\x38\xc8\x86\x6e\xfd\xca\x25\x3b\xb1\x0a\x42\xad\x2d\xd2\x50\x28\x94\x69\x37\x4d\xa7\x36\x69\xfb\xdd\x15\xef\x0b\xf3\xa0\xcf\x43\x8d\x0e\xef\x0d\x1e\x95\xa0\xbc\x29\x71\xbf\x2f\x7e\x6a\xb5\xcd\x7d\xca\xfd\xfd\x03\xd2\x13\xb7\xf4\xd2\x00\x79\x9b\x47\x8f\x3e\xda\x26\xb2\xdc\xc7\xe8\x1d\x9f\x59\x1c\xaf\x66\x7f\x02\x00\x00\xff\xff\x51\xa2\xf9\xc4\x65\x07\x00\x00") func staticWatchdogJsBytes() ([]byte, error) { return bindataRead(