diff --git a/assets/static/grid.js b/assets/static/grid.js index d70c1d680..ad9f14932 100644 --- a/assets/static/grid.js +++ b/assets/static/grid.js @@ -11,21 +11,6 @@ var Grid = (function() { var grid; - // when user switches to a different tab but keeps unsee tab open in the background - // some browsers (like Chrome) will try to apply some forms of throttling for the JS - // code, to ensure that there are no visual artifacts (like state alerts not removed from the page) - // redraw all alerts if we detect that the user switches from a different tab to unsee - var setupPageVisibilityHandler = function() { - // based on https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API - if (typeof document.hidden !== "undefined" && typeof document.addEventListener !== "undefined") { - document.addEventListener("visibilitychange", function() { - if (!document.hidden) { - Grid.Redraw(); - } - }, false); - } - }; - var init = function() { grid = $(selectors.alerts).masonry({ itemSelector: selectors.incident, @@ -39,7 +24,6 @@ var Grid = (function() { opacity: 1 } }); - setupPageVisibilityHandler(); }; var clear = function() { diff --git a/assets/static/unsee.js b/assets/static/unsee.js index 19cafee26..534906b3a 100644 --- a/assets/static/unsee.js +++ b/assets/static/unsee.js @@ -9,6 +9,7 @@ var Unsee = (function() { var timer = false; var version = false; var refreshInterval = 15; + var hiddenAt = false; var selectors = { refreshButton: "#refresh", @@ -16,6 +17,36 @@ var Unsee = (function() { instanceErrors: "#instance-errors", }; + // when user switches to a different tab but keeps unsee tab open in the background + // some browsers (like Chrome) will try to apply some forms of throttling for the JS + // code, to ensure that there are no visual artifacts (like state alerts not removed from the page) + // redraw all alerts if we detect that the user switches from a different tab to unsee + var setupPageVisibilityHandler = function() { + // based on https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API + if (typeof document.hidden !== "undefined" && typeof document.addEventListener !== "undefined") { + document.addEventListener("visibilitychange", function() { + if (document.hidden) { + // when tab is hidden set a timestamp of that event + hiddenAt = moment().utc().unix(); + } else { + // when user switches back check if we have a timestamp + // and if autorefresh is enable + if (hiddenAt && Config.GetOption("autorefresh").Get()) { + // get the diff to see how long tab was hidden + var diff = moment().utc().unix() - hiddenAt; + if (diff > refreshInterval) { + // if it was hidden for more than one refresh cycle + // then manually refresh alerts to ensure everything + // is up to date + Unsee.Reload(); + } + } + hiddenAt = false; + } + }, false); + } + }; + var init = function() { Progress.Init(); @@ -39,6 +70,8 @@ var Unsee = (function() { } return false; }); + + setupPageVisibilityHandler(); }; var getRefreshRate = function() { diff --git a/bindata_assetfs.go b/bindata_assetfs.go index 32ef6c270..931d47ec5 100644 --- a/bindata_assetfs.go +++ b/bindata_assetfs.go @@ -458,7 +458,7 @@ func staticFiltersJs() (*asset, error) { return a, nil } -var _staticGridJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x26\x6a\x11\xd8\x0b\x47\x4a\x81\x9e\x14\xf8\xb0\xd8\x06\xc9\x16\x05\xba\xa8\xd1\xe6\x18\xd0\xe2\x93\x44\x2c\x45\x0a\xe4\xc8\xae\x13\xf8\xdf\x0b\x4a\xb2\x25\x6b\xe5\x66\x79\x12\x87\x8f\x6f\x86\xf3\x66\x46\xc9\x1d\x15\xda\xee\x84\xf6\xf4\x60\x4d\xae\x0a\xba\x4b\x16\x8b\xe4\x8e\xf0\x6f\x6d\x1d\x43\xd2\x27\xa7\x64\x30\xee\x85\xeb\xbe\x37\xb4\xcc\x1b\x93\xb1\xb2\x66\xb9\xa2\xef\x8b\x05\x11\x51\x38\xf5\xd0\xc8\xd8\x3a\x4f\x1b\xfa\xde\x5a\xc3\x12\x1a\x8e\x7d\x4a\xd1\x4f\xdd\x57\xb4\xbe\x1c\x29\x93\x29\x09\xc3\x29\x45\xf1\xf9\x7b\x74\x5c\x38\x25\xb7\xea\x1b\x5c\x38\x0f\x9b\x77\x3e\xec\x7a\xc4\xe9\xc3\xe0\x39\x1c\xf6\xdb\x24\xa1\x43\x09\x43\x8d\x87\x23\x7f\x50\x9c\x95\xf0\xc4\x96\x04\x49\x95\xe7\x70\x30\x4c\x2c\x76\xb4\x6b\x98\x9e\x81\xda\x53\x63\x3c\xd0\xda\x6c\x0d\x43\xca\x10\x97\xa0\x9d\xc8\x9e\x0b\x67\x1b\x23\xcf\xbc\xde\x56\xa0\x9d\xb3\x07\x0f\xe7\x69\xa9\xd5\x33\xe8\xa1\x74\xb6\xc2\x8a\x0e\x4a\x6b\x62\x77\x6c\x3d\xd5\xb5\x3e\x76\xe8\xdc\xba\xca\x93\xcd\x89\x4b\x67\x99\xb5\x32\x45\xb0\xb5\x0e\x7e\xdf\x9e\x89\x33\x2b\xb1\x0e\x37\x61\x7c\xe3\x40\x5c\x0a\x0e\x10\x07\x12\x0e\x64\x2c\xed\x95\x6f\x84\x26\xe1\x58\xe5\x22\xe3\xb3\x77\xcf\x82\xd1\x67\x98\x8c\x65\x72\xa8\xec\x1e\x92\x72\x67\xab\xd6\x49\x2d\x0a\xac\xce\x7e\x1c\xa4\x13\x07\x12\x5a\x9f\xef\xa8\x9c\x0e\x20\x09\x46\xc6\x17\xb7\x93\xdc\xb5\x5c\xd3\xec\xb1\xed\xd2\x36\x12\x9f\x9b\xfa\x49\x14\xf8\x47\x79\xb5\x53\x5a\xf1\xf1\xb3\x30\x52\xc3\xd1\x86\xae\xea\xe5\x2c\x6f\x92\xd0\x4e\x78\x48\xb2\x86\x4a\xe6\xda\xa7\x49\x22\xb1\x87\xb6\x35\x5c\x5c\xd9\x6f\x4a\x6b\x11\x5b\x57\x24\x30\xef\xfe\xde\x26\xd2\x66\x3e\xf9\x82\x5d\x72\xff\xf4\x98\x04\x4f\x5f\x07\x57\x5f\xef\x9f\x1e\x87\xb2\xca\x69\xc9\xc7\x1a\x36\x27\x69\xb3\xa6\x82\xe1\xb8\x54\x52\xc2\xd0\x9b\xcd\x86\xa2\xc6\x48\xe4\xca\x40\x46\xf4\xf6\x2d\x4d\x91\x42\xca\x8f\x7b\x18\xfe\x43\x79\x86\x81\x9b\xde\x19\x3f\x21\xac\x9b\x17\x97\xd1\xfe\x12\x5f\x56\x0a\x53\x20\x5a\xcf\x67\x62\x1c\xf8\x9b\x49\xc8\x73\xb8\xb0\x42\x2b\xc6\x7f\xb5\x82\x2e\x57\x1f\x5e\x40\x4e\x57\x96\xd3\x9a\x72\xa1\x3d\x46\xc0\xd3\x8b\x26\x52\x46\xf1\x2d\xad\x8a\xae\xf1\x7f\x5e\x5e\x7a\x3c\xee\x2a\x68\x15\x57\xc2\x5b\xe3\x8e\xcb\xeb\x30\x15\xa3\xda\xf6\xd8\x74\x98\x0c\x97\x36\x5f\x5f\xa1\x33\xab\x9b\xca\x7c\x51\x92\xcb\x31\xf8\x32\x00\xae\xd1\x35\x5c\x06\xc3\x4f\xd6\xab\x10\x68\x4a\xec\x1a\x5c\x43\xd8\x09\xd3\x9d\xfe\xd6\x38\xd1\xa1\xa2\xf7\xf1\xaf\xe3\xe9\x13\x56\x97\xe3\x2d\x1f\x35\xd2\x99\x44\xdb\x5a\x64\x8a\x8f\x29\xbd\x9f\xa4\xf3\x6a\xdb\xca\xac\xf1\x63\x96\x5f\x16\xf3\x12\x9d\x46\xba\xdc\xee\xa3\xb3\xcc\x63\xcd\x32\x0d\x71\xb3\xc1\x42\xfa\x2e\xf2\x44\xdd\x68\x88\xd6\x57\x22\x9e\xe5\x58\x8d\x22\x98\x3d\x8f\xbb\xeb\x73\x31\xf4\x53\xe5\x55\x41\x68\x71\xb4\x0d\x47\xb3\x2c\x81\x7f\xcc\x02\x8d\xea\x15\xcf\x69\x61\x2f\xf9\x44\x5d\xc3\xc8\xff\xe3\x0b\xdd\xd6\xfd\xf3\xe2\x4f\xe0\x3f\xeb\x16\x14\x75\xf7\xd8\xd6\xd1\x2a\x98\x97\xab\x69\x03\xb6\x61\xd4\x0e\x01\xd6\x71\x0e\x41\xf5\x66\xc8\xeb\xb8\xda\xd8\x08\xda\x63\x8e\xab\xf3\x38\xa5\xea\xac\xb3\x4c\x2f\x3b\x97\x51\xf9\x5b\x02\x38\x70\xe3\xcc\x24\x7b\x05\xf8\x91\x51\x7d\xd4\x08\xa3\xc6\xcf\x09\x52\x2a\x89\x5b\x9c\x73\x73\x20\xe0\xe7\xca\xc3\x97\xf6\x66\x71\xcc\xf1\x04\xfc\x94\xa7\x7f\xc3\x70\xf1\xd1\x28\x4e\xdb\x89\x35\xb4\xe2\x43\xe8\x85\xb4\x6b\x89\xc1\xfa\x59\x49\xa4\xed\x63\x06\xdb\xb6\xb4\x87\xb4\x0d\x6c\xb0\x75\xa3\x34\xed\xab\x79\xb0\xdf\xb7\x3a\xa4\x7d\x3d\x8d\xf1\xa1\xfe\xd2\xbe\x6e\x07\x7b\x48\xab\x4f\x3b\x49\x2e\x6f\x38\xad\xc2\x8b\xfe\x0b\x00\x00\xff\xff\x20\x4a\x5e\x31\x6c\x09\x00\x00") +var _staticGridJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xb1\x6e\xdb\x30\x10\xdd\xfd\x15\x07\xb5\x83\x64\xb8\x72\x0a\x74\x62\xe0\xa1\x48\x8b\x34\x53\x8b\x7a\xe8\xcc\x88\x67\x8b\x00\x45\x0a\x24\xe5\xd4\x0d\xfc\xef\xc5\x91\x8a\x28\xd9\x72\x12\x4e\xe4\xbb\xc7\xa7\x77\xbc\x3b\xad\x97\xb0\x57\xe6\x91\x2b\x07\x77\x46\xef\xe4\x1e\x96\xeb\xc5\x62\xbd\x04\xfc\xdb\x1a\xeb\x51\xc0\xbd\x95\x82\xc0\x03\xb7\x71\xbf\x81\x7c\xd7\xe9\xca\x4b\xa3\xf3\x02\x9e\x17\x0b\x00\x00\x8a\x3a\x54\x58\x79\x63\x1d\x6c\xe0\x39\xa0\xb4\xb8\x42\xeb\x1d\x83\xec\x43\xdc\x65\xab\x21\x24\x75\x25\x05\x6a\xcf\x20\x2b\x5f\xf6\xa3\xf0\xde\x4a\xb1\x95\xff\xd0\x52\x9c\x0e\x9f\x1c\x9d\x7a\xc6\xe9\x36\x7d\x99\x82\xa3\xa3\xd4\xd2\xc3\x06\x26\x2e\xc7\xa2\xb0\x81\x8f\xf9\xe0\xb6\x8c\xbe\x8a\xb2\xe1\xce\x68\x7b\xcc\x13\x39\x98\xf4\xd8\x6c\x7b\x2e\x4b\x39\x0e\x86\x57\x13\x76\x65\x54\xd7\xe8\x3f\x52\xf8\x7a\x4c\x1e\x52\x99\xb2\x5b\xb4\x15\x6a\xff\xcb\x38\x49\x46\x19\x78\xdb\xe1\x94\xe2\x2d\xd7\x31\xfa\xad\xb3\x3c\xb2\xb2\x9b\xf2\xcb\xf8\x1d\x69\xd5\x52\x08\xd4\x5b\x7f\x54\xc8\x60\x9a\x01\x2d\xd3\xf2\x4a\xfa\x23\x83\x9b\x49\xe8\x34\x15\x39\x48\x27\x1f\x15\xbe\xad\xf2\x79\xaa\x32\x9c\x4e\xc5\xed\x45\x71\x2a\x85\xdc\xbe\x56\x8e\xe1\xe1\x33\x8b\x8d\x39\x60\xb6\x9a\x94\xe7\xe5\xa1\x8b\x5e\x9b\xd6\x6c\xbc\x8c\xd7\xf3\x19\x0f\x16\x85\xe5\x4f\xef\x33\xa1\xf8\xd1\x74\x3e\x9b\x55\x21\xfd\xb1\x0a\x2a\x6c\xde\x91\x4e\xa0\x5d\xea\xf1\xb6\x45\x2d\x5e\xd3\x93\x3b\xc8\xe3\x5c\x96\xf7\xe8\x7f\xb6\x81\x94\xc5\x7b\xde\xb4\x59\x41\x70\x5e\x14\x67\xb5\x0a\x36\x5a\x8b\x44\x8b\x9a\xc9\x54\x0f\xa3\x98\xfa\x0a\xde\x00\x95\xc3\x39\xad\xf8\xc5\x73\xa9\x88\xce\x2a\x5d\xe4\x4a\x63\xe4\xae\x15\xc0\xa2\xef\xac\x3e\x7b\xbd\x3d\xfa\x07\x8f\xcd\x77\x85\x0d\x6a\xef\xe6\x0a\x52\x4b\x81\xd7\x34\xe7\x26\x9c\xf8\x73\xed\xe1\x6a\x73\xb5\x39\xe6\x74\x88\x7f\xae\xd3\xe7\x90\x2e\x3e\x68\xe9\x59\xf8\x17\xa5\x21\xbb\xa3\x59\x60\x71\x24\x12\xfa\x43\x0a\x64\x21\x99\x84\x6d\x6b\xf3\xc4\x82\xb1\x84\xfd\x0e\x5d\xcc\xfa\x6e\x4e\xf8\xd7\x50\x07\xd6\xf7\xd3\x98\x4f\xfd\xc7\xfa\xbe\x4d\x38\x3d\xab\x63\xb1\x24\x43\x0e\xa7\x82\x32\xfa\x1f\x00\x00\xff\xff\x0f\x6c\x55\xd9\x10\x06\x00\x00") func staticGridJsBytes() ([]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\xcc\x1a\xed\x6e\xdc\x36\xf2\x7f\x9e\x62\xa2\x04\x88\x94\xca\x5a\x1b\x45\xee\xc7\x3a\xce\x21\x0d\x9a\x9c\x0f\x45\x5a\xd8\xcd\xf5\x80\xa2\x38\x70\xa5\xd9\x15\x63\x8a\x54\x49\x6a\xd7\x8b\xc0\x8f\x51\xf4\xfd\xfa\x24\x07\x7e\xe8\x5b\xda\xdd\xa4\xc5\xe1\xf8\xc3\x5e\x91\x33\xc3\xe1\x70\x38\x5f\xe4\xe2\x39\x6c\x98\x58\x11\xa6\xe0\x86\x6c\x91\xc3\xf3\x05\x98\xb6\x58\x80\x34\xdf\xc9\x47\xf5\xa8\x03\x53\x88\x02\xb9\xf6\x40\x8b\x85\xff\x36\x40\x5d\xa8\xd7\x0c\xa5\x56\x31\xbc\xae\xb4\x48\x45\x51\x32\xd4\x18\xc3\x1b\xc1\x84\x54\xe6\x3f\x5f\xd3\x8d\xf9\x5f\x71\x8d\x32\x86\x77\x92\x66\x31\xbc\xa5\x4c\xa3\x19\xff\x41\x8a\x8d\x44\xa5\x62\xb8\xa5\x0c\x79\x8a\x31\xdc\x56\x45\x41\xe4\x3e\x86\x1f\xb1\x28\x19\xd1\xa8\x62\xf8\x70\x1d\xc3\x4f\x44\xa7\x79\x26\x36\xf0\x7c\x61\x19\xc0\xfb\x52\x48\x8d\x19\x7c\xe0\x0a\xd1\xf4\x6e\x89\xf4\x1f\x57\x10\xae\x2b\x9e\x6a\x2a\x78\x18\xc1\xa7\x47\x8f\xcc\x12\xcc\xb0\xa6\x05\x4a\xb8\x82\x35\x61\x0a\x2f\x9b\xee\x2d\x4a\x45\x05\x1f\x0f\x48\x5c\x4b\x54\xf9\xb5\x61\x7e\x4b\x18\x5c\xc1\xc5\x8b\xcb\x96\x9c\x42\x86\xa9\x16\x52\xc1\x15\x7c\xb2\xbd\xa6\x79\xa4\x6f\x2a\xad\x05\x5f\x42\xf0\xc4\x77\x04\x71\x03\x82\x52\x0a\xa9\xcc\x98\xfb\xd5\x19\xa2\x5c\x69\xc2\x53\xfc\xb6\x01\xa9\x7b\xce\x7a\xb0\x0f\x1d\x3e\x28\xa7\xda\x30\xdf\x5d\x73\x4d\xaf\x16\x71\x72\xcd\xa9\x0e\x23\x8f\x65\x9a\xdb\x1c\xd7\xdf\xc2\xbb\x91\x72\x7f\xeb\xd7\x66\x38\x48\x45\xb9\x3f\x53\xa8\x35\xe5\x1b\x75\xb6\xa3\x3a\x3f\x5b\xdb\x2d\xec\xf0\x6d\xda\x2d\xd9\x62\x17\x4f\x91\x2d\x9e\x65\xb8\x26\x15\xd3\xd3\x18\x37\xa8\x50\x77\x51\xa4\xe9\x68\xe6\x0a\x1a\xe0\x87\xe8\x72\xc8\xf8\x77\x82\x64\x83\x05\x59\x2d\x6b\x56\xda\xb0\xe5\x54\x6a\xd4\x6f\x94\x71\xd4\xd9\x55\xe4\xd1\xa0\x57\xdc\x51\x7f\xad\x9c\x6e\xe0\xeb\xf3\x18\xfe\x76\xfe\xfc\xe2\x45\x74\x69\x0e\x8e\x42\x0d\xbb\x5a\x7b\xb5\x80\x8b\x17\x50\x50\x5e\x69\x54\x2d\xeb\x4f\xc3\x46\x97\x92\x9e\xfe\x44\x49\xca\x68\x7a\x17\x4e\xee\xad\xd5\x97\x35\x84\x8f\x0f\xa0\x97\x52\x94\x61\x90\x51\x45\x56\x0c\xb3\x20\x1a\xe2\x9b\x66\x4f\x4d\x72\x83\xcc\x4b\xb4\x3b\xf6\xd0\xfb\x92\xa8\x2b\xc9\xbb\xc7\xa4\xbb\x39\x5d\x9d\xdc\xa0\xbe\x71\x9c\xdc\x10\x8d\x73\xda\xe9\xe9\x0d\xce\xd9\x98\x9a\x9a\xa5\xa6\x30\x15\x3c\x53\x5d\xa2\xf6\xe4\x3a\xb0\x92\x48\x85\xd7\x5c\x37\x60\x2d\xd3\x46\x70\x54\xbd\x27\xef\x43\x03\x3b\x92\xcb\x62\x61\x20\x4a\xa2\x14\x66\x8e\x1a\x55\x40\x79\x2a\xa4\xc4\x54\x43\xa5\xd0\x1f\x7f\xd8\x12\x56\x61\x5f\x4a\x6e\x72\xaf\xa7\xef\x50\x7f\x5f\x5a\x5e\x83\xda\x12\x44\xa6\x73\x28\xe9\x23\x0c\xb5\x4c\xe9\x9c\xe8\x67\x0a\x08\x53\x02\x56\x42\xde\x61\x66\xd9\xf1\x07\x0d\x2e\x5e\x8c\xf0\x3c\x43\xc6\x78\x4d\xef\xed\xc3\xd0\x7a\x75\x4c\x9e\x41\xbe\x1c\xdb\x13\x7b\x74\xc3\x89\x9d\xe7\x88\x99\xfa\x50\x6e\x24\xc9\x7a\x3b\x25\x51\x95\x82\x2b\xfc\x97\xb3\xb6\xdd\xf5\x99\xa5\x37\x46\xf8\xca\x9b\xe1\xa1\x00\x5a\x2b\x3d\xa0\x74\x79\x8a\x8a\x0e\x55\xae\xa6\xf6\x78\x86\x5c\x77\x45\x55\x99\x11\x8d\xd7\xea\x06\x49\xb6\x3f\x6a\x68\xdf\x78\xeb\xd1\xdd\xdf\xd3\x0f\x68\x0c\x5a\x56\xd8\xb3\x76\xce\xaa\xfd\x83\x66\x38\x25\x6e\xc7\x5c\x3d\x69\x36\xc7\x5e\x4d\xe6\x36\x17\xbb\x29\x93\xf6\xa1\x4f\xa6\x0b\xf2\x97\xad\xcc\x6d\x6b\x8b\xbb\x58\x40\x4e\xd2\x3b\x58\x0b\x09\x6b\x7a\x4f\xf9\x06\x4a\x92\x65\xe6\xbf\xa2\x3c\x45\xa0\xbc\xac\x34\xa4\x84\xc3\x46\x8a\x1d\x10\x9e\x41\x9a\x13\xbe\x41\xc8\x91\x6e\x72\xdd\xe1\x22\x58\x89\x6c\x1f\x44\x49\xaa\x54\x18\x78\x2a\x67\x5a\x94\x41\x6c\x06\x13\x4e\xb6\x2b\x22\x83\x28\x71\x88\x61\x34\x21\x49\x89\x3c\x43\x69\x1d\x6f\x57\x8a\xda\x07\x22\x31\xa4\x82\x6b\xbc\xd7\x53\x62\xb5\x58\x23\xe7\xf2\x86\x21\x19\xf7\x76\x77\x72\x28\x42\xe7\xe3\xa3\x24\xd7\x05\x0b\x9b\x10\x28\xb9\xb1\xac\x4d\xb0\x72\x84\x8c\x1a\xec\x76\xcd\xee\x07\x7e\xc7\xc5\x8e\x4f\x79\x49\xa7\x08\xe1\xa7\xae\xc7\xcd\x44\x5a\xd9\xe8\x4f\x53\xcd\xcc\xa1\x0e\xc2\x3f\x7e\xff\x0d\xbe\x87\x3f\x7e\xff\x2d\x0a\x5a\xb8\x6a\x5a\x89\xba\x42\xce\x09\xcf\x18\x8e\x84\x8c\x52\x76\xc5\x6a\x03\xd4\x24\x25\xa5\xae\x24\x7e\x7b\x9f\x62\xd9\x40\xf5\x2d\xf8\x8e\xf2\x4c\xec\x92\x54\x70\x25\xd8\xc8\x64\xf8\x6e\x27\x0e\x83\x9d\x28\x4d\xd2\xbb\x68\xda\x2e\x34\xbb\x1f\x06\xd4\x48\x89\x13\x66\x3f\x83\x78\x40\x96\x93\x02\x97\x26\x88\x4b\xcc\xaf\x7e\x44\x53\xa0\x52\x64\xe3\x87\xfd\x47\x3c\xf0\x0e\x3b\x3b\x3a\x19\xdb\x28\xd4\x3f\xd2\x02\x45\xa5\xe7\x5d\xbe\x73\xd7\x3f\x11\xaa\xdf\x0a\xf9\x1e\xef\xf5\xd8\x73\x3f\xc4\xf0\xe2\xfc\x7c\xd2\x5a\x8c\xec\x72\xdf\x1f\x77\x84\x20\x2d\xd9\xf7\x88\x99\x3d\xbd\x9f\x3e\x97\x4f\x26\x52\x62\x06\x12\x39\xc5\xdf\xd7\xe7\x93\x0c\x6a\x49\x37\x1b\x94\x6e\x49\x73\x6c\xf6\x0c\x72\xef\x28\x25\xe4\x23\xb9\x1f\x84\xb3\x95\x64\x4b\x08\x88\xcd\x54\x92\x8f\x4a\xf0\xbf\xff\x7a\x15\xc0\x57\x8d\xe9\x7b\x87\xda\xff\x0c\xa3\xe4\xa3\xa0\x3c\x0c\xe2\x20\xea\x6f\x9a\xaa\xd2\x14\x95\x5a\xf6\xdd\xd9\x94\x8f\x6e\x0c\xad\xc3\x18\x7a\x79\xf0\x8a\xdb\xf5\x92\x96\x56\xe2\x3d\xd2\xa4\xe3\x77\x8b\x76\xc0\x13\x04\x1f\x00\x99\xc2\x19\x3c\x33\x9b\x9d\xa0\x2a\x95\x96\x48\x0a\x95\xa4\x8e\x47\x95\x68\xa1\x8d\x8f\xbf\xba\x82\xf3\xb9\x69\xc1\x19\x6a\x2e\xa0\xc6\x37\x41\xac\x09\x38\xd6\x84\x32\xc8\x89\xcc\x66\xf1\x0e\x98\x9b\x61\xeb\x5a\xaf\x7e\x0e\xe4\x8d\x61\x10\x1c\xc0\xee\xe9\xad\xd3\x8e\xe9\xa3\x3b\x6c\xd6\x32\x2c\x21\x78\x4b\x8c\x20\xd0\xe1\x1c\xc4\xf0\x67\x5a\x2d\xe1\x67\x08\xde\x0b\xd8\x09\x79\x67\x3c\x96\xcd\x84\x0b\xc2\xc9\x06\x4d\xbc\x2a\xb7\x28\x61\x2d\x2a\x9e\x05\xf0\xcb\x61\x8a\x8c\x28\xfd\xa3\x5a\xb6\x59\xc4\x3b\xd4\xdf\x11\xa5\xbd\x25\x8e\x66\x91\x1f\x0e\x48\xe4\x04\x23\xd1\x23\xe5\x34\xe8\x90\xae\xe4\x48\x98\xce\xf7\xf0\x0a\xce\xe1\x88\xb2\xec\x10\x72\xb2\x45\x50\xa2\x30\xae\xda\xe1\x35\x24\x63\x48\x73\xac\xdd\x3e\xa1\x0c\x33\x10\x1c\xd5\x2c\xc1\x43\x4c\x79\xfc\x57\x87\xf5\x17\x9a\x44\xd9\x29\x96\x49\xd8\x7f\xfe\x65\x5e\x78\x60\x55\xaa\x37\x63\x83\x9a\x28\x21\x3b\x46\x8f\xc4\xb0\x8a\x0e\xcf\xec\xd6\x10\x12\xeb\x2d\xe0\x25\xac\xec\x8f\xa8\x8e\x44\xcf\x2e\x0e\x33\xd2\x47\x7f\x35\x44\x3f\x01\xdb\x43\x9e\x1f\x86\x3c\xa4\x4d\x60\x6d\x2b\x92\x34\x1f\xee\x44\x23\x97\xb8\x35\x8d\x34\x6e\x24\x7d\x92\x68\x20\xac\xc1\x9d\xa7\x86\xc7\x57\x57\x10\x04\xc7\x76\xb4\x21\xd0\x6c\x4d\x59\xa9\xbc\xa1\x75\x64\x39\x30\x4a\x6e\x47\xa3\xc7\x04\x72\xcc\x64\x1d\x9d\x7f\x14\xe0\x05\x3d\x3a\x47\xad\x57\xdd\x1a\x09\x2c\xdb\x9f\xc7\x17\x3f\x6f\x58\x4c\x3b\xb0\xf8\x83\xee\xa6\x6e\x7f\xce\xa0\xcf\xef\xcc\x62\xe1\xdd\xff\x7f\x9c\x47\x0f\x23\x93\x99\xa7\x65\x65\x0c\xcd\x76\x0f\x4a\x00\xd5\xb0\xa3\x8c\xc1\x8a\x89\xf4\x0e\x56\x52\xec\x94\x31\xc6\x52\x14\x40\xca\x92\xed\x8d\xb9\x4e\x95\xf2\xb9\xc4\xbc\xa4\x4c\xba\xcd\x3f\x9a\x1c\x5f\x53\xbe\x87\x0c\x19\xd9\xc3\x0a\xf5\x0e\x91\x03\xc9\xb2\x37\x8c\x18\x07\x0f\x64\x25\xb6\x68\xb3\x93\x21\x67\x4a\xd8\x6c\x1d\x74\x8e\x35\x1f\x87\x66\xb3\x46\x93\x58\xbe\x52\x34\x6e\x56\xe2\xda\xd6\x18\x74\x2e\x14\x7a\xea\xf3\xfc\x9e\x12\x94\x0d\x9b\x96\xfb\x13\x94\xec\x50\x72\x30\xd7\xea\xf0\xca\x39\x9e\x6f\x48\xb6\x41\xe5\xac\x87\x2b\x05\xaa\x13\x68\xb8\x42\x72\x3d\xad\x45\x4e\x6d\xd7\x09\xb8\xae\x34\xdd\xc5\x3d\x01\x69\x26\x83\x39\xd4\x1a\xb7\xfd\x83\xe0\x9b\xd0\x95\xc9\x1d\xab\x9a\x16\xa8\x34\x29\xca\xe8\x04\x32\x9f\xe9\xb0\xbb\xcd\xd6\x00\xdb\x1a\xa4\xb2\xc1\x4c\x38\x1b\x48\x0e\xdb\x6c\xfe\x79\xf0\x84\x1e\xa5\x60\xb2\xdc\x93\x28\x1c\xb1\xc2\x90\x9a\x95\xc1\x30\x45\x9c\x6b\x9f\x11\x73\xd6\xad\x93\x93\x0e\x52\xcc\xb9\xf6\x85\x9b\x35\xbf\x52\x9b\xb0\x1d\x8e\xcd\x4e\x8a\xb8\x1a\xc7\x0c\xab\x4a\x03\x17\xdc\xd6\x2d\x7d\x8c\x1a\xff\x3f\x85\xec\x26\x1e\x73\xd1\xdb\xf5\x89\x51\xd9\x97\x05\x20\x47\x54\xe6\x4f\x45\x1f\x03\xfe\x3f\x2b\xfe\x38\xa0\x0b\xa7\x26\x3a\xa9\x2d\x30\x9f\x16\x2a\x74\x42\x84\x01\xd7\xff\x93\xf4\x62\x9c\xb2\xf6\x7a\x1e\xfa\x19\x92\xcf\xca\x0e\x3a\xb1\x13\x14\xf5\xcb\x14\xd4\x15\xd9\xd7\x6d\x42\x08\x3b\xa2\x80\x30\x69\xab\xbf\xbe\x3e\x81\x59\x73\xe4\x1c\x8c\x4f\x0b\xa7\xa8\x29\x01\x99\xe0\xcf\xb4\x09\x19\x80\xe3\xce\x64\x3b\x93\x35\x81\xcf\xb0\xe1\x5f\x94\xf0\xd6\xc9\xee\x37\x24\xbd\x43\x9e\x1d\x4d\x77\x7b\xa9\xee\xeb\x7f\xbe\xfe\x37\x48\xfc\xb5\x42\xa5\xbd\x0a\x1d\xcc\x6c\xbf\x28\xab\x9d\x52\xb9\xb1\xee\x9c\xa8\x7c\x0f\xa3\x0a\x5b\xb7\xd0\x54\x92\x4a\xcd\xd6\xc1\x9a\x92\xf7\x0f\x06\x6a\xaa\x5e\x3e\x1a\x30\x1b\xe8\xee\x97\x1f\xcf\xdd\x60\xa4\x0c\x89\xac\x6f\x56\x1c\xf0\x80\xe5\x89\x0b\xea\x76\x25\xfd\x5a\xb5\xaa\x8a\x59\xf6\x0d\x2f\xe3\xdb\x27\x52\x69\x31\xb8\x81\x1a\x72\x78\xc2\x6d\xc0\xa4\x37\x9a\x95\x0a\x9c\x70\x23\x33\x7d\xa5\xf4\x97\xc8\xb4\x9d\xa4\x96\x6c\x27\x46\xee\x5e\x7b\xc6\x5e\xa9\xde\xf5\x2e\x1a\xc3\x08\x9e\xc3\xc5\x74\xa1\x72\xcd\x88\xca\xe7\x36\xc0\x00\xac\x36\x70\x05\x4f\xc3\xe0\x89\x85\xac\xaf\x26\x56\x24\xbd\xdb\x48\x51\xf1\xec\xcc\x46\xb2\x41\xaf\x82\x3f\x00\xce\xa8\x2a\x19\xd9\x07\x31\x04\x36\x97\x09\xa2\x84\x70\x5a\xd8\x10\xbc\x27\x85\x96\xaa\x8d\x98\x97\x10\x3c\x59\xaf\xd7\xc1\xa0\xde\x1a\xcf\x5b\xd4\xa7\xa1\xce\xa9\x9a\x23\x3f\x39\xc5\x6a\x33\x30\xe1\x46\x52\x63\xc6\x4d\x0c\xd2\x5d\xe4\xf0\x2c\x7a\xed\x68\x27\xbc\xe6\x54\x2f\xed\x9b\x86\xd6\xb8\x58\xbd\x5a\xba\x33\xdb\xf6\x8e\x2c\xc0\xd2\x9f\x8b\x16\xa4\xee\xef\x95\x95\xdb\xe1\xfe\x76\x2f\x07\xb7\xd6\x2d\xdc\xed\x00\x4e\xcd\xc0\xbd\x35\xbb\xb7\x74\xba\xd1\xac\xf2\x21\xb2\xcf\x14\x9e\x86\xf5\x35\x4a\x94\x58\x5f\x32\xf1\x48\xc5\x44\x72\x92\x94\x40\x18\xb3\x12\x50\xc6\x79\xec\xd0\x5e\x81\xb9\x28\xd5\xbf\x1d\xb1\xd0\xfd\xdc\xcd\x66\xab\x54\x5b\x5c\x64\x68\x26\x52\x50\x29\x93\xec\xae\x84\xd0\x4a\x4b\x52\xde\xee\xa8\x4e\xf3\xae\xc2\x25\x5a\x6c\x36\x0c\x83\x28\x19\x00\xf5\x9e\x56\x2c\x16\x80\x9c\xac\x98\x49\x4a\x05\xd3\xb4\x54\x31\x3c\xa9\x5f\x69\x98\x08\x93\x40\x26\x45\x99\x89\x1d\xf7\x09\x78\xed\x2f\x2b\x85\x0a\x32\xba\x5e\xa3\x44\xae\x21\x23\x9a\x9c\xb9\x29\xbb\x5c\xfc\xdc\xe9\xbf\x7a\xe6\xe7\x78\xf6\x4b\x67\x92\x20\x4a\x7c\xf7\x40\x37\xfd\xce\x2e\x21\xc8\xc5\x16\x65\xff\xc9\x48\xf3\xd1\x56\x5a\x86\x6f\x37\x3e\x5c\x8f\x1f\x8c\xb8\xc7\x48\x63\x50\x6b\x22\x46\x0f\x69\x16\x0b\x5f\x1a\x30\xe2\xa7\x84\x81\x4d\xff\xc1\x5e\x60\x68\x61\xf6\x43\xec\xda\x2a\x04\xe5\x54\xe5\xde\x7f\x53\xde\x9e\xa1\x53\x92\xf7\xda\xcc\xde\x76\x6e\x2c\x7a\x97\x2a\x17\xad\xa9\x82\x4e\xde\x24\x4e\xbc\x5c\x13\x7f\xe6\x7a\x2d\xf8\xd6\x87\x17\xf0\x95\x53\xd2\x03\x97\x6d\x8b\x05\xd4\x77\x99\x0a\x0a\xba\xc9\x4d\xae\xa2\x61\x85\x56\x6a\x98\xc1\x1e\x75\x0c\x05\xb9\xab\x6b\xc8\xba\x60\x50\x10\x5e\x11\xc6\xf6\x3d\x7b\xe9\x1f\x45\x4d\x55\xdc\x82\x97\x19\xdd\x42\xca\x88\x52\x57\xcf\x3e\x56\xc5\x4a\x68\x29\xf8\xb3\x57\x01\x7c\x35\x80\xcb\x2f\x6a\x30\x8d\xf7\xfa\x2c\x45\xe3\x4f\x26\x00\xaf\xfd\xb5\xa0\x8f\xf9\x5e\xd2\x1a\x6d\x4d\x60\x4d\xce\xf0\x3e\x65\xa4\xb0\x77\x5e\x67\x29\x95\xa9\x39\x2e\x86\x5e\x46\xf8\x06\xe5\xb3\xc5\xc4\xcc\x8b\xfc\x62\xa2\xb7\xc3\x77\x8f\xa1\x97\xe5\x08\xd8\x49\xda\x47\x6a\x63\xf2\xe5\xab\x97\x8b\x8c\x6e\xfd\xdf\xf6\x70\xf4\xaf\x86\x1f\x8c\x91\xba\x7c\xf4\xdf\x00\x00\x00\xff\xff\x83\x8d\xff\x68\x22\x28\x00\x00") +var _staticUnseeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x3a\xdd\x8e\xdb\xb6\xd2\xf7\x79\x8a\x89\x12\x24\x76\xea\x95\x76\x51\xe4\xbb\xf0\xc6\xf9\x90\x06\x49\xba\x45\x91\x06\xd9\xa6\x3d\x40\x51\x14\xb4\x34\x96\x98\xa5\x48\x95\xa4\xec\xf5\x09\xf6\x31\x8a\xbe\x5f\x9f\xe4\x80\x14\x25\x53\xbf\x76\xd2\xe2\xe0\xf0\x62\xd7\x22\x67\x86\xc3\xe1\x70\xfe\xc8\xe8\x09\xa4\x4c\xac\x09\x53\xf0\x9e\x6c\x91\xc3\x93\x08\x4c\x8b\x22\x90\xe6\x3b\xfc\xa8\xee\x79\x30\xb9\xc8\x91\x6b\x07\x14\x45\xee\xdb\x00\xf9\x50\x2f\x18\x4a\xad\x16\xf0\xa2\xd4\x22\x16\x79\xc1\x50\xe3\x02\x5e\x0a\x26\xa4\x32\xff\xf9\x86\xa6\xe6\x7f\xc9\x35\xca\x05\xbc\x91\x34\x59\xc0\x6b\xca\x34\x9a\xf1\x77\x52\xa4\x12\x95\x5a\xc0\x35\x65\xc8\x63\x5c\xc0\x75\x99\xe7\x44\xee\x17\xf0\x23\xe6\x05\x23\x1a\xd5\x02\x3e\x5c\x2d\xe0\x67\xa2\xe3\x2c\x11\x29\x3c\x89\x2c\x03\x78\x5b\x08\xa9\x31\x81\x0f\x5c\x21\x9a\xde\x2d\x91\xee\x63\x05\xb3\x4d\xc9\x63\x4d\x05\x9f\xcd\xe1\xd3\xbd\x7b\x66\x09\x66\x58\xd3\x1c\x25\xac\x60\x43\x98\xc2\xcb\xa6\x7b\x8b\x52\x51\xc1\xfb\x03\x12\x37\x12\x55\x76\x65\x98\xdf\x12\x06\x2b\xb8\x78\x7a\x18\xcd\x68\x92\x20\x7f\xa1\x0f\x78\xcd\x90\x42\x86\xb1\x16\x52\xc1\x0a\x3e\xd9\x5e\xd3\x1c\xb9\x6f\x4a\xad\x05\x5f\x42\xf0\xc0\x75\x04\x8b\x06\x04\xa5\x14\x52\x99\xb1\xea\x97\x37\x44\xb9\xd2\x84\xc7\xf8\xaa\x01\xa9\x7b\xce\x5a\xb0\x77\x8e\x8f\x28\x82\x5d\x86\x1c\x4a\x85\x12\xd4\x8e\xea\x38\x43\x05\x5a\x00\x81\x84\x6e\x36\x28\xcd\xf6\x6a\xb2\x86\x75\xa9\xe1\x06\xb1\x50\x50\x5a\xf1\x99\x3e\x51\x20\x07\xca\x41\x67\x08\x6b\x12\xdf\xa4\x52\x94\x3c\xa9\xe9\x2a\x91\x23\xac\xa5\xd8\x29\x94\x0a\x66\x8c\xde\x20\xbc\xcc\xa4\xc8\x71\x0e\x3b\xca\x18\x68\xb9\xb7\x33\x15\x05\xdb\x57\xd0\x1b\x21\x73\x05\x62\x03\x3a\x93\x42\x6b\x46\x79\x6a\xfa\xec\x04\xdf\x5d\xd7\x84\x63\x91\xe0\xc2\x60\x22\x57\xa5\x44\xd0\x19\xd1\x06\x44\x22\x10\x89\xc0\x05\x6c\xa9\x2a\x09\x03\x22\x35\xdd\x90\x58\xd7\xb3\x2b\x4d\x34\x02\xb1\xda\x08\x5c\x68\x90\x98\x8b\x2d\x26\xb0\x91\x22\xb7\x93\x14\x24\xc5\x79\x3d\x8f\xc4\x44\x92\x1d\x10\xc6\x6a\x1c\xba\x81\x1d\x42\x82\x1a\x63\xdd\x4c\xdb\x91\x9d\xa5\xd5\x95\x9e\x16\x95\xd8\xbc\xbd\xd7\x65\xf1\x8e\xa4\xf8\x13\x55\x74\x4d\x19\xd5\xfb\x6f\x09\x4f\x58\xa5\x79\xbe\x5e\xd6\x3b\x1b\x45\xb0\x26\x0a\x13\x10\x1c\x32\xad\x0b\xb5\x8c\xa2\x04\xb7\xc8\x44\x81\x32\xcc\xc5\xbf\x29\x63\x24\x14\x32\x8d\x90\x9f\x7d\xb8\x8e\x12\x11\xab\xe8\x67\x5c\x47\x2f\xde\x5d\x45\x66\xa6\xdf\x0e\x53\xfd\xf6\xe2\xdd\xd5\x41\x65\x36\x30\xd3\xfb\x02\xc5\x06\x12\x11\x97\xf6\x00\x57\x5a\x0b\xf7\x57\x2b\x08\x4a\x9e\xe0\x86\x72\x4c\x02\x78\xf4\x08\xba\x90\x24\x49\x5e\x6d\x91\xeb\xef\xa9\xd2\xc8\x51\x76\x71\xfc\x25\x98\x36\x8a\x38\x0b\xb6\x0d\x7f\x71\x46\x78\x8a\xc1\x62\x58\x12\x3e\xe3\x1d\x8e\x87\xc0\x7c\x35\x37\x7b\x41\x95\x3b\x94\x66\x13\x80\xd8\xf3\xae\x34\xc9\x8b\x4a\xf1\x88\x06\x34\x7c\x0d\xd2\xf1\x4e\x73\x65\xea\x66\xf3\xb0\xd4\xb1\xf9\xcb\xe9\xed\x6c\x7e\xd9\xc3\xba\x03\x64\x0a\x8f\xb0\xd5\xd6\x20\x73\x94\x20\xce\x30\xbe\x71\x0a\x97\x91\x2d\xfa\x8c\x8e\xd1\x22\x3c\x31\x18\xa4\xd4\xc2\x19\x0d\xb3\x58\xe4\x64\xcd\x70\x10\xc7\x48\xb0\x59\xd2\xa3\x47\xce\x14\x87\x6f\x50\xff\x50\x58\xb1\x07\x1e\xad\x60\x6e\x06\x66\xf3\x31\x19\x3b\x26\x52\xac\x4e\x85\x39\x00\x46\xef\x8d\xb1\xc8\xc4\x0e\x98\xe0\xa9\x95\xff\x8e\xd4\x1b\x30\x4a\xc6\x9c\x10\x8b\x3f\x22\x66\x38\x6b\x76\xa2\x2f\x71\x7f\x71\x96\xc8\xf3\xae\x89\x9e\x5a\x81\x5b\x05\xdd\x00\xd5\x1e\xab\xd6\x0c\xe5\xa2\xb2\x36\x1c\x04\xc7\x9a\x28\xc4\xfb\x78\x44\xbc\x1e\x3d\x6d\xb6\x39\x27\xbc\x24\x8c\xed\x1b\x54\x67\x56\x0e\xa6\x0c\xb7\x28\xf7\x3a\xa3\x3c\x3d\xca\xa0\x82\xb2\x30\x98\x09\xd1\xd3\xb3\xc7\x82\x2b\xc1\x30\xa4\x7c\x23\x66\xc1\x7b\x64\x82\x24\xc1\x80\xa6\xfa\xcd\xba\xc8\xb0\x82\x1d\xd2\xea\xba\xdd\x0d\x8e\xf4\x7b\xdb\x3d\x77\x8b\xca\x17\x7a\x84\xef\x5a\x5e\xc9\xec\x3f\xe5\x54\x8f\xd9\xc2\x3a\x24\x08\xaf\x38\xd5\x86\xbf\x66\xc4\x69\xb0\xed\x6f\x6f\xf2\x4b\x51\xec\xaf\x9d\xc7\x35\x7e\x31\x16\xc5\xfe\x4c\xa1\xd6\x94\xa7\xea\x6c\x47\x75\x76\xb6\xb1\x21\x87\xe7\x4d\x4d\xbb\x26\x5b\xf4\xf1\x14\xd9\xe2\x59\x82\x1b\x52\x32\x3d\x8c\xf1\x1e\x15\x6a\x1f\x45\x9a\x8e\x66\xae\xe0\xb0\x68\x4f\x00\x8e\xf1\xef\x9d\xc0\xbd\x7e\x1b\x15\x35\x2b\x6d\xd8\xaa\x42\xa0\x5e\xbf\x09\x9e\x7a\x9d\x7e\xe0\xd5\x1b\x74\x81\x56\xaf\xbf\x0e\xa6\xaa\x81\xaf\xcf\x17\xf0\x7f\xe7\x4f\x2e\x9e\xce\x2f\xad\x73\x47\x73\x3a\x5c\xb4\xa5\x05\x5c\x3c\x85\x9c\xf2\x52\xa3\x3a\xb0\xfe\x70\xd6\x44\x38\x61\x2b\xaa\x99\x87\x31\xa3\xf1\xcd\x6c\xd4\xba\x9b\xa3\x7b\x7f\x02\xbd\x90\xa2\x98\x05\x09\x55\xc6\xb2\x25\xc1\xa0\x49\x9a\x52\xe1\xb6\x3a\x4a\xd4\xa5\xe4\x7e\x58\x57\x6f\x4e\xf3\x31\xee\xae\x6b\xd2\xbe\xea\xa6\xa8\xdf\x57\x0c\xbf\x37\x01\xc7\x88\x12\xbb\x69\x3b\xb6\xa9\x4f\x4d\x8d\x52\x53\x18\x0b\x9e\x28\x9f\xa8\x0d\x48\x2b\xb0\x82\x48\x85\x57\x5c\x37\x60\x97\x2d\x97\x4f\xd5\x5b\xf2\x76\x66\x60\x7b\xe2\xab\xec\x5f\x41\x94\x09\x37\x2c\x35\xaa\x80\xf2\x58\x48\x69\x02\x9f\x52\xa1\x8b\x5d\x61\x4b\x58\xd9\xb6\x3e\x6e\xf2\xbe\x27\xe9\x78\x91\xcb\xde\x86\x4f\x30\x74\x60\xca\xf8\xe7\xc7\x0a\x08\x53\x02\xd6\x42\xde\x60\x62\xd9\x71\xe7\x11\x2e\x9e\xf6\xf0\x1c\x43\x75\x4c\xde\x57\x81\xbb\x6e\xe8\xed\x45\xf2\x06\xf9\xb2\x6f\x76\xec\x09\x1f\xda\x79\x8e\x98\xa8\x0f\x45\x2a\x49\xd2\xda\x29\x89\xaa\x10\x5c\xe1\x4f\x55\x12\xe1\xaf\xcf\x2c\xbd\xc9\x2d\x56\x2e\x4b\xe8\x0a\xe0\x90\x7c\x74\x28\x5d\x9e\xa2\xc9\x5d\x95\xab\xa9\xdd\x1f\x21\xe7\xaf\xa8\x2c\x8c\x83\xb9\x52\xef\x91\x24\xfb\xa3\xf6\xf8\xa5\x33\x32\xfe\xfe\x9e\x7e\x8e\x17\xa0\x65\x89\x2d\xa3\x58\x19\xbf\x6f\x69\x82\x43\xe2\xae\x98\xab\x27\x4d\xc6\xd8\xab\xc9\x5c\x67\x62\x37\x64\xf9\x3e\xb4\xc9\xf8\x20\xff\xd8\xca\xba\x0e\x2f\x8a\x20\x33\x71\x9e\x89\x2b\x36\xf4\xd6\x64\x3a\x05\x49\x12\xf3\x5f\x51\x1e\x23\x50\x5e\x94\x1a\x62\xc2\x21\x95\x62\x67\x63\xbb\x2a\x2c\x86\x0c\x69\x9a\x69\x8f\x8b\x60\x2d\x92\x7d\x30\x0f\x63\xa5\x66\x81\xa3\x72\xa6\x45\x11\x2c\xcc\x60\xc8\xc9\x76\x4d\x64\x30\x0f\x2b\xc4\xd9\x7c\x40\x92\x12\x79\x82\xd2\x66\x8d\xbe\x14\xb5\xcb\xaf\x17\x26\x8a\xd0\x78\xab\x87\xc4\x6a\xb1\x7a\x3e\xe8\x25\x43\xd2\xef\xf5\x77\xb2\x2b\xc2\x2a\x41\x9d\x87\x99\xce\xd9\xac\xc9\xec\xc3\xf7\x96\xb5\x01\x56\x8e\x90\x51\x9d\xdd\xae\xd9\xfd\xc0\x6f\xb8\xd8\xf1\x21\x67\x5a\x29\xc2\xec\x93\xef\x98\x9b\x0c\x43\x53\xcd\xcc\xa1\x0e\x66\x7f\xfd\xf9\x07\xfc\x00\x7f\xfd\xf9\xc7\x3c\x38\xc0\x95\xc3\x4a\xe4\x0b\x39\xb3\x2e\xa3\x27\x64\x94\xd2\x17\xab\xad\xbb\x84\x31\x29\x74\x29\xf1\xd5\x6d\x8c\x45\x03\xd5\xb6\xe0\x3b\xca\x13\xb1\x0b\x5d\x7c\xd7\x35\x19\x75\xd8\x67\xc5\x61\xb0\x43\xa5\x49\x7c\xd3\x8b\xb9\x2a\xbb\xd0\xec\xfe\x2c\xa0\x46\x4a\x9c\x30\xfb\x19\x2c\x3a\x64\x39\xc9\x71\x09\x86\x9c\xf9\xd5\x0e\x7c\x72\x54\x8a\xa4\x6e\xd8\x7d\x2c\x3a\xde\x61\x67\x47\x07\x43\x20\x85\xfa\x47\x9a\xa3\x28\xf5\x78\x64\x50\x79\xf5\x9f\x09\xd5\xaf\x85\x7c\x8b\xb7\xba\xef\xe0\xef\x16\xf0\xf4\xfc\x7c\xd0\x5a\xf4\xec\x72\xdb\x1f\x7b\x42\x90\x96\xec\x5b\xc4\xc4\x9e\xde\x4f\x9f\xcb\x27\x13\x31\x31\x03\xa1\x1c\xe2\xef\xeb\xf3\x41\x06\xb5\xa4\x69\x8a\xb2\x5a\xd2\x18\x9b\x2d\x83\xdc\x3a\x4a\x21\xf9\x48\x6e\x3b\x51\x6f\x29\xd9\x12\x82\x2a\xcf\x08\x3f\x2a\xc1\xff\xff\xf7\x55\x00\x5f\x35\xa6\xef\x0d\x6a\xf7\x73\x36\x0f\x3f\x0a\xca\x67\xc1\x22\x98\xb7\x37\x4d\x95\x71\x8c\x4a\x2d\xdb\xee\x6c\xc8\x47\x37\x86\xb6\xc2\x18\xca\x1c\x8c\xe2\xfa\x5e\xd2\xd2\x0a\x9d\x47\x1a\xcd\x2d\xdd\xd6\x7d\x76\x82\x6d\x66\xb3\x13\x94\x85\xd2\x12\x49\xae\xc2\xb8\xe2\x51\x85\x5a\x68\xe3\xe3\x57\x2b\x38\x3f\x92\xd2\x72\x01\x35\xbe\xad\xe4\x28\x84\x0d\xa1\x0c\x32\x22\x93\x51\xbc\x09\x73\xd3\x6d\xbe\xf5\x6a\x17\xf0\x9c\x31\x0c\xa6\xf2\xb5\x96\xde\x56\xda\x31\x7c\x74\xbb\xcd\x5a\x86\x25\x04\xaf\x89\x11\x04\x56\x38\x93\x18\xee\x4c\xab\x25\xfc\x02\xc1\x5b\x01\x3b\x21\x6f\x8c\xc7\xb2\x05\xde\x9c\x70\x92\xa2\x89\x57\xe5\x16\x25\x6c\x44\xc9\x93\x00\x7e\x9d\xa6\xc8\x88\xd2\x3f\xaa\xe5\x21\xd9\x78\x83\xfa\x7b\xa2\xb4\xb3\xc4\xf3\xf1\xcc\x73\x42\x22\x27\x18\x89\x16\xa9\x4a\x83\xa6\x74\x25\x43\xc2\x74\xb6\x87\xe7\x70\x0e\x47\x94\xa5\xae\xd7\xd8\x82\x66\x8d\xd7\x90\x5c\xb8\xc2\x8e\x75\xfb\x84\x32\x5b\xcf\x43\x35\x59\xc4\x18\x63\xca\xe1\x3f\x9f\xd6\x5f\x68\xf2\xe9\x4a\xb1\x14\xac\xe0\x97\x5f\xa7\xd3\xff\xce\x8c\x0d\x6a\xa8\x84\xf4\x8c\x1e\x59\xc0\x7a\x3e\x3d\x73\xb5\x86\x19\xb1\xde\x02\x9e\xc1\xda\xfe\x98\xd7\x91\xe8\xd9\xc5\x34\x23\x6d\xf4\xe7\x5d\xf4\x13\xb0\x1d\xe4\xf9\x34\xe4\x94\x36\x81\xb5\xad\x48\xe2\xac\xbb\x13\x8d\x5c\xbc\x42\x25\x5d\x34\x92\x3e\x49\x34\x30\xab\xc1\x2b\x4f\x5d\xd5\x4f\x7b\x65\xd3\x51\x02\xcd\xd6\x14\xa5\xca\x1a\x5a\x47\x96\x03\xa3\xa5\x9b\x66\xf4\x98\x40\x8e\x99\xac\xa3\xf3\xf7\x02\xbc\xa0\x45\xe7\xa8\xf5\xaa\x5b\x23\x81\xe5\xe1\xe7\xf1\xc5\x8f\x1b\x16\xd3\xa6\x2a\x5e\x53\xee\xa6\x6e\x7f\xcf\xa0\x8f\xef\x4c\x14\x39\xf7\xff\x5b\xe5\xd1\x67\x73\x93\x99\xc7\x45\x69\x0c\xcd\x76\x0f\x4a\xd8\xaa\x25\x65\x0c\xd6\x4c\xc4\x37\xf5\xf5\x8b\xbb\x94\x28\x0a\xb6\x37\xe6\x3a\x56\xca\xe5\x12\xe3\x92\x32\xe9\x36\xff\x68\xef\x39\x28\xdf\x43\x82\x8c\xec\x61\x8d\x7a\x87\xc8\x81\x24\xc9\x4b\x46\x8c\x83\x07\xb2\x16\x5b\xb4\xd9\x49\x97\x33\x25\x0e\x57\x24\x8e\x8f\xa9\xd9\x5c\x91\xdb\xf0\x15\xa3\x71\xb3\x12\x37\xac\xba\x67\x11\x0a\x1d\xf5\x71\x7e\x4f\x09\xca\xba\x4d\xcb\xfd\x09\x4a\x36\x95\x1c\x8c\xb5\x3a\xbc\xaa\x1c\xcf\x37\x24\x49\x51\x55\xd6\xa3\xaa\x18\xaa\x13\x68\x54\xf7\xa3\xf5\xb4\x16\x39\xb6\x5d\x27\xe0\x56\x37\xae\x3e\xee\x09\x48\x23\x19\xcc\x54\x6b\xdc\xf6\x3b\xc1\xd3\x99\xab\xd5\x5b\x56\x9b\xcb\x8a\xf9\x09\x64\x3e\xd3\x61\xfb\xcd\x96\x0a\x0f\xa5\x4a\x65\x83\x99\xe9\x4b\x0a\xbf\x8d\xe6\x9f\x93\x27\xf4\x28\x05\x93\xe5\x9e\x44\xe1\x88\x15\x86\xd8\xac\x0c\xba\x29\xe2\x58\xfb\x8c\x98\xb3\x6e\x5e\x4e\xda\x49\x31\xc7\xda\x17\x6e\xd6\xf8\x4a\x6d\xc2\x36\x1d\x9b\x9d\x14\x71\x35\x8e\xd9\x5e\x56\x73\xc1\x6d\xdd\xd2\xc5\xa8\x8b\xff\xa5\x90\xdd\xc4\x63\x55\xf4\x76\x75\x62\x54\xf6\x65\x01\xc8\x11\x95\xf9\x5b\xd1\x47\x87\xff\xcf\x8a\x3f\x26\x74\xe1\xd4\x44\x27\xb6\x05\xe6\xd3\x42\x05\x2f\x44\xe8\x70\xfd\x5f\x49\x2f\xfa\x29\x6b\xab\xe7\xae\x9d\x21\xb9\xac\x6c\xd2\x89\x9d\xa0\xa8\x5f\xa6\xa0\x55\x91\x7d\x73\x48\x08\xed\x15\x28\x61\xd2\x56\x7f\x5d\x7d\x02\x93\xe6\xc8\x55\x30\x2e\x2d\x1c\xa2\xa6\x04\x24\x82\x3f\xd6\x26\x64\x00\x8e\x3b\x93\xed\x0c\xd6\x04\x3e\xc3\x86\x7f\x51\xc2\x5b\x27\xbb\xdf\x90\xf8\x06\x79\x72\x34\xdd\x6d\xa5\xba\x2f\xbe\x7b\xf1\x2f\x90\xf8\x7b\x89\x4a\x3b\x15\x9a\xcc\x6c\xbf\x28\xab\x1d\x52\xb9\xbe\xee\x9c\xa8\x7c\x77\xbd\x0a\x9b\x5f\x68\x2a\x48\xa9\x46\xeb\x60\x4d\xc9\xfb\x9d\x81\x1a\xaa\x97\xf7\x06\xec\x13\x12\xfb\x6c\xea\xfe\xd8\x0d\x46\xcc\x90\xc8\xfa\x66\xa5\x02\xee\xb0\x3c\xf0\xee\x0a\x06\x6f\x86\x25\xaa\x32\x1f\x65\xdf\xf0\xf2\x45\xef\x18\x4e\xb8\x0d\x18\xf4\x46\xa3\x52\x81\x13\x6e\x64\x86\xaf\x94\xfe\x11\x99\x1e\x26\xa9\x25\xeb\xc5\xc8\xfe\xed\xe8\xc2\x29\xd5\x9b\xd6\x45\xe3\x6c\x0e\x4f\xe0\x62\xb8\x50\xb9\x61\x44\x65\x63\x1b\x60\x00\xd6\x29\xac\xe0\xe1\x2c\x78\x60\x21\xeb\xab\x89\xc3\x1b\xb1\x33\x1b\xc9\x06\xad\x0a\x7e\x07\x38\xa1\xaa\x60\x64\x1f\x2c\x20\xb0\xb9\x4c\x30\x0f\x09\xa7\xb9\x0d\xc1\x5b\x52\x38\x50\xb5\x11\xf3\x12\x82\x07\x9b\xcd\x26\xe8\xd4\x5b\x27\xde\x12\x3d\x9c\xe9\x8c\xaa\x31\xf2\x83\x53\xac\xd3\x8e\x09\x37\x92\xea\x33\x6e\x62\x10\x7f\x91\xdd\xb3\xe8\xb4\xe3\x30\xe1\x15\xa7\x7a\x69\x9f\x3e\x1c\x8c\x8b\xd5\xab\x65\x75\x66\x0f\xbd\x3d\x0b\xb0\x74\xe7\xe2\x00\x52\xf7\xb7\xca\xca\x87\xe1\xf6\x76\x2f\x3b\xb7\xd6\x07\xb8\xeb\x0e\x9c\x1a\x81\x7b\x6d\x76\x6f\x59\xe9\x46\xb3\xca\xbb\xb9\x7d\xcd\xf0\xb0\x79\xa8\x35\x0f\xad\x2f\x19\x78\x7b\x69\x22\x39\x49\x0a\xfb\xde\xce\x48\x40\x19\xe7\xb1\x43\x7b\x05\x56\x45\xa9\xee\xe1\xa3\x85\x6e\xe7\x6e\x36\x5b\xa5\xda\xe2\x22\x43\x33\x91\x82\x52\x99\x64\x77\x2d\x84\x56\x5a\x92\xe2\xda\xbe\xaf\xf2\x15\x2e\xd4\x22\x4d\x19\x06\xf3\xb0\x03\xd4\x7a\x81\x11\x45\xee\x09\x15\x68\x21\x98\xa6\x85\x5a\xc0\x83\xfa\x31\x87\x89\x30\x09\x24\x52\x14\x89\xd8\x71\x97\x80\xd7\xfe\xb2\x54\xa8\xbc\x87\x80\x09\xd1\xe4\xac\x9a\xd2\xe7\xe2\x17\xaf\x7f\xf5\xd8\xcd\xf1\xf8\x57\x6f\x92\x60\x1e\xba\xee\x8e\x6e\xba\x9d\x5d\x42\x90\x89\x2d\xca\xf6\xcb\x92\xe6\xe3\x50\x69\xe9\x3e\xf1\xf8\x70\xd5\x7f\x57\x52\xbd\xb1\xed\x83\x5a\x13\xd1\x7b\x6f\x13\x45\xae\x34\x60\xc4\x4f\x89\x7b\x29\x09\xf6\x02\x43\x0b\xb3\x1f\x62\x77\xa8\x42\x50\x4e\x55\xe6\xfc\xb7\xff\xc6\xe9\x94\xe4\xbd\x36\xb3\xd7\xde\x8d\x45\xeb\x52\xe5\xe2\x60\xaa\xc0\xcb\x9b\xc4\x89\x97\x6b\xe2\xef\x5c\xaf\x05\xaf\x5c\x78\x01\x5f\x55\x4a\x3a\x71\xd9\x16\x45\x50\xdf\x65\x2a\xc8\x69\x9a\x69\xfb\x16\x75\x8d\x56\x6a\x98\xc0\x1e\xf5\x02\x72\x72\x53\xd7\x90\x75\xce\x9a\xa7\x63\x2d\x7b\xe9\x5e\xf4\x0e\x55\xdc\x82\x67\x09\xdd\x42\xcc\x88\x52\xab\xc7\x1f\xcb\x7c\x2d\xb4\x14\xfc\xf1\xf3\x00\xbe\xea\xc0\x65\x17\x35\x98\xc6\x5b\x7d\x16\xa3\xf1\x27\x03\x80\x57\xee\x5a\xd0\xc5\x7c\xcf\x68\x8d\xb6\x21\xb0\x21\x67\x78\x1b\x33\x92\xdb\x3b\xaf\xb3\x98\xca\xd8\x1c\x17\x43\x2f\x21\x3c\x45\xf9\x38\x1a\x98\x39\xca\x2e\x06\x7a\x3d\xbe\x5b\x0c\x3d\x2b\x7a\xc0\x95\xa4\x5d\xa4\xd6\x27\x5f\x3c\x7f\x16\x25\x74\xeb\xfe\x1e\x0e\x47\xfb\x6a\xf8\xce\x18\xa9\xcb\x7b\xff\x09\x00\x00\xff\xff\xba\x71\x60\x45\xf9\x2e\x00\x00") func staticUnseeJsBytes() ([]byte, error) { return bindataRead(