diff --git a/pkg/api/api.go b/pkg/api/api.go index 0e7ccc8..957dc0b 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -196,20 +196,27 @@ func HandleQuery(query string, c *gin.Context) { return } - q := c.Request.URL.Query() + format := getQueryParam(c, "format") + filename := getQueryParam(c, "filename") - if len(q["format"]) > 0 && q["format"][0] == "csv" { - filename := fmt.Sprintf("pgweb-%v.csv", time.Now().Unix()) - if len(q["filename"]) > 0 && q["filename"][0] != "" { - filename = q["filename"][0] - } - - c.Writer.Header().Set("Content-disposition", "attachment;filename="+filename) - c.Data(200, "text/csv", result.CSV()) - return + if filename == "" { + filename = fmt.Sprintf("pgweb-%v.%v", time.Now().Unix(), format) } - c.JSON(200, result) + if format != "" { + c.Writer.Header().Set("Content-disposition", "attachment;filename="+filename) + } + + switch format { + case "csv": + c.Data(200, "text/csv", result.CSV()) + case "json": + c.Data(200, "applicaiton/json", result.JSON()) + case "xml": + c.XML(200, result) + default: + c.JSON(200, result) + } } func GetBookmarks(c *gin.Context) { diff --git a/pkg/api/helpers.go b/pkg/api/helpers.go index 931a5b4..c03f839 100644 --- a/pkg/api/helpers.go +++ b/pkg/api/helpers.go @@ -22,6 +22,17 @@ type Error struct { Message string `json:"error"` } +func getQueryParam(c *gin.Context, name string) string { + result := "" + q := c.Request.URL.Query() + + if len(q[name]) > 0 { + result = q[name][0] + } + + return result +} + func assetContentType(name string) string { ext := filepath.Ext(name) result := mime.TypeByExtension(ext) diff --git a/pkg/client/client.go b/pkg/client/client.go index 7967c28..318437d 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -1,8 +1,6 @@ package client import ( - "bytes" - "encoding/csv" "fmt" "reflect" @@ -21,13 +19,6 @@ type Client struct { ConnectionString string } -type Row []interface{} - -type Result struct { - Columns []string `json:"columns"` - Rows []Row `json:"rows"` -} - // Struct to hold table rows browsing options type RowsOptions struct { Limit int // Number of rows to fetch @@ -205,51 +196,6 @@ func (client *Client) query(query string, args ...interface{}) (*Result, error) return &result, nil } -func (res *Result) Format() []map[string]interface{} { - var items []map[string]interface{} - - for _, row := range res.Rows { - item := make(map[string]interface{}) - - for i, c := range res.Columns { - item[c] = row[i] - } - - items = append(items, item) - } - - return items -} - -func (res *Result) CSV() []byte { - buff := &bytes.Buffer{} - writer := csv.NewWriter(buff) - - writer.Write(res.Columns) - - for _, row := range res.Rows { - record := make([]string, len(res.Columns)) - - for i, item := range row { - if item != nil { - record[i] = fmt.Sprintf("%v", item) - } else { - record[i] = "" - } - } - - err := writer.Write(record) - - if err != nil { - fmt.Println(err) - break - } - } - - writer.Flush() - return buff.Bytes() -} - // Close database connection func (client *Client) Close() error { if client.db != nil { diff --git a/pkg/client/result.go b/pkg/client/result.go new file mode 100644 index 0000000..fcda930 --- /dev/null +++ b/pkg/client/result.go @@ -0,0 +1,65 @@ +package client + +import ( + "bytes" + "encoding/csv" + "encoding/json" + "fmt" +) + +type Row []interface{} + +type Result struct { + Columns []string `json:"columns"` + Rows []Row `json:"rows"` +} + +func (res *Result) Format() []map[string]interface{} { + var items []map[string]interface{} + + for _, row := range res.Rows { + item := make(map[string]interface{}) + + for i, c := range res.Columns { + item[c] = row[i] + } + + items = append(items, item) + } + + return items +} + +func (res *Result) CSV() []byte { + buff := &bytes.Buffer{} + writer := csv.NewWriter(buff) + + writer.Write(res.Columns) + + for _, row := range res.Rows { + record := make([]string, len(res.Columns)) + + for i, item := range row { + if item != nil { + record[i] = fmt.Sprintf("%v", item) + } else { + record[i] = "" + } + } + + err := writer.Write(record) + + if err != nil { + fmt.Println(err) + break + } + } + + writer.Flush() + return buff.Bytes() +} + +func (res *Result) JSON() []byte { + data, _ := json.Marshal(res.Format()) + return data +} diff --git a/pkg/client/result_test.go b/pkg/client/result_test.go new file mode 100644 index 0000000..7a58e67 --- /dev/null +++ b/pkg/client/result_test.go @@ -0,0 +1,46 @@ +package client + +import ( + "encoding/json" + "testing" + + "github.com/stretchr/testify/assert" +) + +func Test_CSV(t *testing.T) { + result := Result{ + Columns: []string{"id", "name", "email"}, + Rows: []Row{ + Row{1, "John", "john@example.com"}, + Row{2, "Bob", "bob@example.com"}, + }, + } + + expected := "id,name,email\n1,John,john@example.com\n2,Bob,bob@example.com\n" + output := string(result.CSV()) + + assert.Equal(t, expected, output) +} + +func Test_JSON(t *testing.T) { + result := Result{ + Columns: []string{"id", "name", "email"}, + Rows: []Row{ + Row{1, "John", "john@example.com"}, + Row{2, "Bob", "bob@example.com"}, + }, + } + + output := result.JSON() + obj := []map[string]interface{}{} + err := json.Unmarshal(output, &obj) + + assert.NoError(t, err) + assert.Equal(t, 2, len(obj)) + + for i, row := range obj { + for j, col := range result.Columns { + assert.Equal(t, result.Rows[i][j], row[col]) + } + } +} diff --git a/pkg/data/bindata.go b/pkg/data/bindata.go index 8bb3b9a..38f806b 100644 --- a/pkg/data/bindata.go +++ b/pkg/data/bindata.go @@ -98,7 +98,7 @@ func staticCssAppCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/app.css", size: 6750, mode: os.FileMode(420), modTime: time.Unix(1449270061, 0)} + info := bindataFileInfo{name: "static/css/app.css", size: 6750, mode: os.FileMode(420), modTime: time.Unix(1447730426, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -118,7 +118,7 @@ func staticCssBootstrapCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/bootstrap.css", size: 109518, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/css/bootstrap.css", size: 109518, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -138,7 +138,7 @@ func staticCssFontAwesomeCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/font-awesome.css", size: 21984, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/css/font-awesome.css", size: 21984, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -158,7 +158,7 @@ func staticFontsFontawesomeOtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/fonts/FontAwesome.otf", size: 85908, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/fonts/FontAwesome.otf", size: 85908, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -178,7 +178,7 @@ func staticFontsFontawesomeWebfontEot() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.eot", size: 56006, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.eot", size: 56006, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -198,7 +198,7 @@ func staticFontsFontawesomeWebfontSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.svg", size: 287007, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.svg", size: 287007, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -218,7 +218,7 @@ func staticFontsFontawesomeWebfontTtf() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.ttf", size: 112160, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.ttf", size: 112160, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -238,7 +238,7 @@ func staticFontsFontawesomeWebfontWoff() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.woff", size: 65452, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/fonts/fontawesome-webfont.woff", size: 65452, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -258,7 +258,7 @@ func staticImgIconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/img/icon.ico", size: 104736, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/img/icon.ico", size: 104736, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -278,12 +278,12 @@ func staticImgIconPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/img/icon.png", size: 7945, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/img/icon.png", size: 7945, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _staticIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x19\xdd\x6f\xdb\xb6\xf3\xbd\x7f\x05\x7f\xfa\xbd\x4e\x16\xda\x6e\xc0\x12\xd8\xde\xba\x24\x40\x0b\x04\x58\xda\xb4\xc3\xf6\x64\xd0\x12\x6d\x31\xa1\x44\x95\xa4\x6c\xa7\x7f\xfd\xee\x48\xca\xd6\xa7\xa3\x24\x4d\x97\x87\xc4\xfc\xb8\x3b\xde\xf7\x91\xa7\xe9\xff\xce\xff\x3c\xfb\xfc\xcf\xd5\x05\x49\x4d\x26\xe6\xaf\xa6\xf8\x43\x04\xcd\xd7\xb3\x80\xe5\x01\xd9\x65\xe2\xb4\x31\xcb\xf5\x2c\x48\x8d\x29\x4e\xa3\x68\xbb\xdd\x4e\xb6\x6f\x27\x52\xad\xa3\xd7\x27\x27\x27\xd1\x0e\x71\x03\xa4\xc1\x68\x32\x7f\x45\xc8\xd4\x70\x23\xd8\xbc\x58\x6f\xd9\x72\x1a\xb9\x09\x2e\x67\xcc\x50\x12\xa7\x54\x69\x66\x66\x41\x69\x56\xe1\xaf\xc1\x61\x03\xa9\x87\xec\x6b\xc9\x37\xb3\xe0\xef\xf0\xcb\xbb\xf0\x4c\x66\x05\x35\x7c\x29\x58\x40\x62\x99\x1b\x96\x03\xd6\x87\x8b\x19\x4b\xd6\x6c\x00\xef\xcc\x81\x85\x97\xc0\x7a\x49\xd7\x75\x44\x90\xc3\xe2\x08\x9e\xdf\x12\xc5\xc4\x2c\xd0\xe6\x4e\x30\x9d\x32\x66\x02\x92\x2a\xb6\x9a\x05\x91\x36\x70\x60\x1c\xc5\x5a\x47\x4b\x29\x8d\x36\x8a\x16\x13\x98\x05\xf3\x69\x84\x88\x0f\xa2\xb0\x82\xa3\x43\xba\x65\x5a\x66\xec\xd1\x44\x68\x71\x8c\x01\x0e\xe2\x05\xc4\xdc\x15\x0c\xc6\x19\x08\x1c\xed\x42\xb7\xd6\xa4\xc4\xb3\x75\x84\xeb\x13\xf8\x17\x90\xc8\x52\xd1\xb1\xe2\x85\xf1\xc8\x86\xed\x4c\x74\x43\x37\xd4\xad\x06\x44\xab\xf8\x80\x7e\xa3\xa3\x9b\xaf\x25\x53\x77\x93\x1b\xcb\x89\x03\x7a\x04\x15\x1a\xb3\xef\x40\x22\x2c\xd6\xfa\xab\x78\x2a\xa1\xbd\x81\x43\xeb\x23\x3b\x93\xb1\xbc\x7c\x32\x77\x60\xae\x26\x89\x69\xe4\xc2\x62\xba\x94\xc9\x9d\xa5\x98\xf0\x0d\xe1\xc9\x2c\xc8\x28\x77\x3e\x59\x5b\xcb\xe9\xc6\x2f\xc1\x62\x29\xaa\xa1\x35\xba\x05\x30\x14\xe2\x61\xe1\xbd\x3a\x98\x7f\x92\x5b\x8d\x9e\x31\x04\x08\x02\x96\xb1\x29\x15\x04\xcc\x75\x35\x3c\x06\xcf\xf3\x84\xed\x18\x08\xf0\xc1\x0d\x8e\xc1\x02\x13\xa8\x3f\x9e\x1b\x80\x3f\x3b\x4c\x8e\xe1\x58\x2f\x82\xa8\x14\x54\x43\x42\xd1\x4c\xb0\xd8\xb0\x04\x98\xfb\x78\x49\x3e\xe2\xde\x31\xe4\x94\x6b\x23\x01\x7d\xfe\xde\x0d\x8e\xc1\xd2\xd8\xf0\x0d\x37\x00\xfc\xce\x8f\xee\x11\x25\x07\x4e\x38\x44\x0e\x4a\xe2\xc7\x75\x8c\x69\x84\xd6\xa8\x26\xd4\xc7\xd7\xff\x03\x4b\x84\x25\xdc\xd4\x69\x54\xf2\x2d\x4d\x4e\xe0\x2f\x2c\x14\x04\xa7\xba\xb3\x63\x9d\x81\x77\xf0\x0a\x62\x45\xc9\x8a\x86\x6b\x46\x15\xfa\x0c\x9f\x93\x0b\x20\x45\xea\x2c\x50\xef\x21\x11\xb8\x48\xcb\x59\x34\x4f\xd8\x12\x31\x2b\xb6\x70\xc3\x13\xb6\x72\xe9\x50\x80\xa6\x82\x9a\xd4\x35\x88\x2d\xb8\x7e\x6d\xab\x85\x8e\x49\xbb\xb1\x0b\xfb\x2d\xae\x13\x0a\x87\x50\xcd\x3c\xe7\x53\x5d\xd0\xbc\x82\x88\x4b\xa5\x30\x11\xef\x61\x2c\xc3\x7e\x75\x51\xc7\x44\xac\xd6\x39\x75\x42\xa0\x66\x05\xd9\xd1\xe1\xfb\xc9\xc2\x09\x07\x89\x0f\xb9\x9c\x05\x9f\xdc\x32\x71\xcb\xc4\xc9\xdc\xe6\xb6\x22\x64\x99\xed\x1e\x5b\xd3\xef\x3e\xfa\x0e\x0e\x62\x23\xba\x1e\x8e\x87\x7d\x0d\xa5\x87\xe5\x71\x17\xa4\x41\xb1\x39\x69\xdb\x29\xe4\xf9\x4a\xaa\x8c\x3a\x07\x7c\xb4\xb5\x3e\x23\x2d\xf2\xe1\x40\xab\x4f\xa8\x96\xae\xc1\xc3\xaf\xf9\x37\x76\xea\xb5\x7e\x08\x09\x23\x0d\x15\x0b\x0d\x7b\x7b\x2b\x35\x23\xa8\x42\x3f\x07\x63\x12\xdd\x4b\x03\xed\x3c\x86\x84\x4d\x36\x03\x34\x6c\x46\x1a\x43\xe4\x42\x1b\x88\x32\xc8\x26\x44\x41\x52\xec\x12\xc2\x55\x08\xd2\x12\xd3\xe6\x00\xa1\x71\x06\xec\x0b\x45\x4c\xee\xcd\x38\xc4\x55\x9e\x17\xe5\xb1\xf0\x2b\x98\xea\xda\xd4\x05\x0a\x24\xb8\xcc\x67\xcb\x79\xd7\x8c\x35\x3a\xd4\xe6\x09\xdd\x89\x55\x3c\xda\x57\xad\x65\x69\x0c\x66\x25\x1b\x42\x25\x0c\x36\x54\x94\x18\x37\x65\xee\x92\x6e\x27\x61\xe9\xac\x9e\xb7\xfc\x8d\x61\x04\x75\xb6\x2b\x04\x56\xb5\xea\x84\x0b\x37\x3f\x7e\x4a\xc2\x56\xb4\x14\x66\xfc\x29\xb1\xde\xec\x4f\x38\x97\xdb\x5c\x48\x9a\x90\xb3\xeb\xbf\xc6\x1c\xd0\x3c\xa1\xd2\xb7\x55\xf4\xa2\x50\x72\x0d\x39\x02\x74\x79\x25\x18\xa4\x27\xb2\xa5\xdc\xfc\x44\xec\x26\xe1\x9a\x40\x41\x8c\x4b\xc3\xf3\xf5\x64\x32\xe9\xda\xa4\xb9\x70\x4f\xf4\xe3\xa1\xb2\x34\x0f\x74\x0f\xeb\xc8\x3e\x13\x6a\x90\x48\x07\x8d\x34\x82\x9e\x62\x07\x0f\xf0\x61\x3f\xa8\xdf\x4b\x0e\x85\x6c\xb1\x85\xe8\x93\xdb\xfa\x25\xa5\xca\xef\x7b\x98\x10\x2e\xf3\xa8\x93\x83\x07\x4e\xd3\xd7\xd5\xdd\x1f\x46\xfb\x9a\x89\x59\x09\x42\x13\x13\x36\x0e\xf7\xac\xe3\x24\x4c\xa5\xe2\xdf\xe0\x52\x43\x45\xd0\xe6\xc1\x02\xf7\x2b\x09\xaf\x63\x61\x0c\x15\xa5\x2f\x8e\x0e\xbe\x10\xae\x95\x2c\x0b\xb2\x1f\xa1\x5f\xd4\x04\xf0\x6b\x5b\x6e\xe2\xb4\x1d\x46\xce\xed\x5a\x3e\x88\x69\x0d\x12\x7f\x9c\xb2\x8c\x75\x7c\x6e\xef\x6c\x2d\x31\x3c\xf8\xfc\xda\xfe\x4e\x23\x47\xec\x01\xc7\x19\x9a\x27\x54\x25\x43\x07\x12\x7b\xe3\x61\xdd\x73\x2b\x3c\xb8\x00\xba\x51\xdf\xd9\xfd\xde\x7b\x98\xa7\xaa\x1e\x3b\x43\x9e\x60\x45\x73\xfa\x1c\xb4\x87\x35\x77\x17\xa4\x4d\x54\x80\x91\xc2\xd7\x6f\x5a\x30\x98\xe9\xe9\x92\x89\xf9\x05\xda\x9c\x68\xa6\x36\xf0\xf3\xe5\xd3\x25\xd1\x5e\xad\x6e\xbb\x8d\x54\xcf\x24\xe8\x34\x4d\xe7\xc3\xdb\x34\x38\x66\x47\x75\xa5\x82\xb5\x9c\x66\x80\x84\xc3\x0e\xd5\xa2\xa2\x92\x32\x51\x84\x4b\x21\xe3\xdb\x60\x8e\xcc\xb8\x02\x7c\x4a\x0a\xa9\x0d\x66\x14\x78\x34\x97\xc0\xeb\x69\x01\xd0\x5b\xa9\x92\xdf\x53\xd8\x38\x2d\xa4\x32\x51\xb2\xfc\x4d\x6b\x91\xc9\x84\xcd\xf0\xdf\x34\x2a\x5a\x5a\x19\x97\x67\xee\x35\x8d\xb7\xfd\x68\xe3\x10\x78\x1e\xdd\x42\xf2\xbf\xed\x54\x16\xab\xe1\x96\xa1\xde\x12\xaf\xc3\xd0\xee\x06\xf3\x3f\x3c\x76\xaf\x41\x7a\x2c\x7d\xd2\xd5\xae\x7b\x1c\x8c\x32\x54\x8d\x57\xa8\xec\x16\x6f\x9c\x16\x1f\xec\xa3\xa3\x84\x7f\x0f\xd6\x7d\x82\xe0\x5d\x67\x45\x71\x8b\xf5\x02\xbd\x66\xc0\x73\xdb\xa5\xf3\x87\xca\xfb\x05\x7c\x1b\xc3\xe4\x39\x64\xc6\xb8\x79\x89\x32\x5f\xf9\x50\xfe\x4e\x32\x57\x99\x61\x2f\xf7\x61\xe1\xe5\xc9\x7e\xee\x9f\x6f\xcf\x61\xef\x64\xf9\x12\x25\xbe\x82\x54\xfd\x1c\xd2\x62\x09\x18\x90\x17\x2e\xce\x31\x4b\xa5\x48\x98\x9a\x05\xbf\xfc\xfc\xf6\xcd\x7f\xac\x82\xeb\xeb\xcb\x1f\x93\xcc\xa1\x1c\x76\xf0\x81\x82\x2c\x70\xb7\xba\xf6\x27\x5c\xbb\x1b\xaf\x1f\x4c\x23\xb7\x7f\x2f\xa2\xc2\x4e\xb1\x82\x6b\x52\xd5\x7b\xaa\x77\xa1\xfc\xe6\x68\x62\x70\xf9\xe0\xab\xbb\x70\x55\x0a\x60\xb9\x36\x19\x22\xf0\xb0\xe2\x34\x64\xd6\xa1\x12\xaf\xd3\x47\x5f\xbd\x46\x7a\xc0\x7b\xf2\x2c\xa5\x0d\x38\x7f\xb1\xb5\x0d\x85\xc6\xfa\xf6\x2c\x42\xbf\xd4\xe2\x86\x42\x7f\xe7\x02\xd7\x14\xfc\x9e\xea\xd6\xc8\x7d\x2e\x94\xe8\x8b\xd0\xc9\x33\x95\x81\x23\xce\xff\x34\x55\x0c\x69\xa6\xef\xad\xcf\x94\x92\x07\x6f\xa4\x82\x29\x78\x53\xe2\xff\x30\xa1\xf9\x9a\xa9\x7d\x1f\xaa\x37\x11\x0d\x68\x77\xcc\xa3\xae\xf9\xea\xd5\xe5\x32\xe3\xa6\xf3\xca\xb5\xaf\xab\x46\x53\xaa\x6a\xd4\x8f\x79\x4a\xc3\x1b\x8c\x55\x4f\x72\x21\x75\xbd\xe1\x5f\xf5\x38\x86\x0f\xac\x5e\xf4\xf3\x33\x9a\xc7\x4c\x8c\x7f\x3e\x57\x13\xd4\x4d\x7f\xdb\xa5\x66\x09\xd7\x67\x5e\xf8\x6f\x51\x0b\xfc\x18\x55\xf5\x5d\xca\xbd\x73\x26\x4a\x16\xc0\x6c\x1e\xda\x6d\xdf\x4d\xa9\x81\x12\xdb\x09\xad\x7f\x9e\xc0\xe6\x41\xe8\x7a\x84\xb6\x3d\x87\x17\x8e\xf9\x85\xfd\x25\x46\x62\xd7\x0c\x3f\x31\x34\xbe\x74\x88\x7d\xe7\x1c\x78\xe3\x89\xb3\x7c\x63\x7f\xf8\x04\xa3\xca\x3c\xa6\x06\x9b\xd1\x7e\xe4\xba\xf2\x3d\x87\x0c\x13\x49\xa0\x48\x22\x89\x73\xfb\xdb\x47\xa0\x6a\xd4\x7a\x35\x82\x49\xec\xc7\xb5\x69\xe4\xbe\x66\xff\x1b\x00\x00\xff\xff\x01\x11\xeb\xf8\xde\x1e\x00\x00") +var _staticIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x59\x59\x73\xdb\xb6\x13\x7f\xcf\xa7\xc0\x9f\xff\xd7\x52\x9c\x24\xed\x4c\xed\x91\xd4\xa6\xb6\x67\x92\x8e\xdb\x38\x51\x92\x49\x9f\x34\x10\x09\x89\xb0\xc1\x23\x00\x28\xc9\xf9\xf4\xdd\x05\x40\xf1\x12\x65\xca\x47\xea\x07\x5b\xb8\xf6\x87\xbd\x17\x00\xc7\xff\x3b\x7f\x7f\xf6\xe9\x9f\xab\x0b\x12\xeb\x44\x4c\x5f\x8c\xf1\x87\x08\x9a\xae\x26\x1e\x4b\x3d\xb2\x4d\xc4\x69\xa3\x97\xaa\x89\x17\x6b\x9d\x9f\x06\xc1\x66\xb3\x19\x6d\x5e\x8f\x32\xb9\x0a\x5e\x9e\x9c\x9c\x04\x5b\xa4\xf5\x10\x83\xd1\x68\xfa\x82\x90\xb1\xe6\x5a\xb0\x69\xbe\xda\xb0\xc5\x38\xb0\x1d\x1c\x4e\x98\xa6\x24\x8c\xa9\x54\x4c\x4f\xbc\x42\x2f\xfd\x5f\xbd\x6a\x02\xd1\x7d\xf6\xad\xe0\xeb\x89\xf7\xd5\xff\xfc\xc6\x3f\xcb\x92\x9c\x6a\xbe\x10\xcc\x23\x61\x96\x6a\x96\x02\xd5\xbb\x8b\x09\x8b\x56\xac\x87\xee\xcc\x2e\xf3\x2f\x81\xf5\x82\xae\xea\x84\x20\x87\xa1\x11\x3c\xbd\x21\x92\x89\x89\xa7\xf4\xad\x60\x2a\x66\x4c\x7b\x24\x96\x6c\x39\xf1\x02\xa5\x61\xc3\x30\x08\x95\x0a\x16\x59\xa6\x95\x96\x34\x1f\x41\xcf\x9b\x8e\x03\x24\x3c\x0a\x61\x09\x5b\xfb\x74\xc3\x54\x96\xb0\x7b\x83\xd0\xfc\x10\x03\x1c\xc4\xf3\x88\xbe\xcd\x19\xb4\x13\x10\x38\xd8\xfa\x76\xac\x89\xc4\x93\x55\x80\xe3\x23\xf8\xe7\x91\xc0\xa0\xa8\x50\xf2\x5c\x3b\x62\xcd\xb6\x3a\xb8\xa6\x6b\x6a\x47\x3d\xa2\x64\x58\x91\x5f\xab\xe0\xfa\x5b\xc1\xe4\xed\xe8\xda\x70\x62\x17\xdd\x03\x85\x86\xec\x11\x20\xfc\x7c\xa5\xbe\x89\x87\x02\xed\x0c\xec\x1b\x1f\xd9\xea\x84\xa5\xc5\x83\xb9\x03\x73\x35\x21\xc6\x81\x0d\x8b\xf1\x22\x8b\x6e\x0d\x62\xc4\xd7\x84\x47\x13\x2f\xa1\xdc\xfa\x64\x6d\x2c\xa5\x6b\x37\x04\x83\x85\x28\x9b\xc6\xe8\x66\x81\xa6\x10\x0f\x73\xe7\xd5\xde\xf4\x63\xb6\x51\xe8\x19\x7d\x0b\x41\xc0\x22\xd4\x85\x84\x80\x99\x95\xcd\x43\xeb\x79\x1a\xb1\x2d\x03\x01\xde\xd9\xc6\xa1\xb5\xc0\x04\xea\x8f\xa7\x1a\xd6\x9f\x55\x9d\x43\x34\xc6\x8b\x20\x2a\x05\x55\x90\x50\x14\x13\x2c\xd4\x2c\x02\xe6\x3e\x5c\x92\x0f\x38\x77\x88\x38\xe6\x4a\x67\x40\x3e\x7d\x6b\x1b\x87\xd6\xd2\x50\xf3\x35\xd7\xb0\xf8\x8d\x6b\xdd\x21\x4a\x0a\x9c\x70\x88\x1c\x94\xc4\xb5\xeb\x14\xe3\x00\xad\x51\x76\xa8\x8b\xaf\xff\x7b\x06\x84\x45\x5c\xd7\x31\x4a\xf9\x16\x3a\x25\xf0\xe7\xe7\x12\x82\x53\xde\x9a\xb6\x4a\xc0\x3b\x78\xb9\x62\x49\xc9\x92\xfa\x2b\x46\x25\xfa\x0c\x9f\x92\x0b\x80\x22\x75\x16\xa8\xf3\x90\x00\x5c\xa4\xe5\x2c\x8a\x47\x6c\x81\x94\x25\x5b\x38\xe1\x80\x8d\x5c\xca\x17\xa0\x29\xaf\x26\x75\x6d\xc5\x06\x5c\xbf\x36\xd5\x22\xc7\xa4\xdd\x98\x85\xf9\x16\xd7\x11\x85\x4d\xa8\x62\x8e\xf3\xb1\xca\x69\x5a\xae\x08\x0b\x29\x31\x11\xef\xd6\x18\x86\xdd\xe8\xbc\x4e\x89\x54\xad\x7d\xea\x40\xa0\x66\x09\xd9\xd1\xd2\xbb\xce\xdc\x0a\x07\x89\x0f\xb9\x9c\x78\x1f\xed\x30\xb1\xc3\xc4\xca\xdc\xe6\xb6\x04\x32\xcc\x76\xb7\xad\xe9\x77\x17\x7d\x95\x83\x98\x88\xae\x87\x63\x35\xaf\xa0\xf4\xb0\x34\xec\x2e\x69\x20\x36\x3b\x6d\x3b\xf9\x3c\x5d\x66\x32\xa1\xd6\x01\xef\x6d\xad\x4f\x88\x45\xde\x55\x58\xfb\x84\x6a\xe9\x1a\x3c\x7c\xc6\xbf\xb3\x53\xa7\xf5\x2a\x24\x74\xa6\xa9\x98\x2b\x98\xdb\x59\xa9\x19\x41\x25\xf9\x39\x18\x93\xa8\xbd\x18\x68\xe7\x21\x10\x26\xd9\xf4\x60\x98\x8c\x34\x04\xe4\x42\x69\x88\x32\xc8\x26\x44\x42\x52\xec\x02\xe1\x28\x04\x69\x81\x69\xb3\x07\x68\x98\x01\xf7\x85\x22\x26\xf7\x66\x1c\xe2\x28\x4f\xf3\xe2\x50\xf8\xe5\x4c\x76\x6d\x6a\x03\x05\x12\x5c\xe2\xb2\xe5\xb4\x6b\xc6\x1a\x0e\x35\x79\x42\x75\x62\x15\xb7\x76\x55\x6b\x51\x68\x8d\x59\xc9\x84\x50\x01\x8d\x35\x15\x05\xc6\x4d\x91\xda\xa4\xdb\x49\x58\x2a\xa9\xe7\x2d\x77\x62\x18\x80\xce\xb6\xb9\xc0\xaa\x56\xee\x70\x61\xfb\x87\x77\x89\xd8\x92\x16\x42\x0f\xdf\x25\x54\xeb\xdd\x0e\x67\xb3\x2f\x8f\x86\x7b\xad\xb2\x8a\xf5\x3f\x67\xef\xff\x1e\x82\xdc\x84\x2e\x0d\x68\x2c\x37\xcf\x65\xb6\x82\xa4\x03\xc6\xb9\x12\x0c\xf2\x1d\xd9\x50\xae\x7f\x22\x66\x92\x70\x45\xa0\xc2\x86\x85\xe6\xe9\x6a\x34\x1a\x75\x8d\xdc\x1c\xb8\x23\x9d\xe0\xa6\x59\xa1\x8f\xf4\x37\x13\x19\x2e\xb5\x2a\x90\x48\x79\x8d\xbc\x84\xae\x67\x1a\x47\x04\x85\x6b\xd4\x0f\x3a\x55\x65\x9c\x6f\x20\x9c\xb3\x4d\xfd\xd4\x53\x16\x8c\xdd\x1a\x1f\x6e\x07\xa8\x93\xca\xa5\xc7\xf1\xcb\xf2\x32\x01\xad\x5d\x11\xc6\x34\x07\xb1\x8e\x15\x00\x9b\x3b\xd6\xb1\xe3\xc7\x99\xe4\xdf\xe1\x94\x44\x85\xd7\xe6\xc1\x2c\xde\xaf\x24\x3c\xdf\xf9\x21\x94\xa8\x7d\x81\x59\xf9\x82\xbf\x92\x59\x91\x93\x5d\x0b\xfd\xa2\x26\x80\x1b\xdb\x70\x1d\xc6\xed\xb8\xb4\xfe\xd6\x72\x3e\xcc\x93\x50\x49\xc2\x98\x25\xac\xe3\x73\x3b\x67\x6b\x89\xe1\x96\x4f\x67\xe6\x77\x1c\x58\xb0\x23\xb6\xd3\x34\x8d\xa8\x8c\xfa\x36\x24\xe6\x08\xc5\xba\xfb\x96\x74\x70\xa2\xb4\xad\x7d\x7b\xef\xf7\xde\xaa\x1f\xcb\x7a\xec\xf4\x79\x82\x11\xcd\xea\xb3\xd7\x1e\xc6\xdc\xdd\x25\x6d\x50\x01\x46\xf2\x5f\xbe\x6a\xad\xc1\xd2\x41\x17\x4c\x4c\x2f\xd0\xe6\x44\x31\xb9\x86\x9f\xcf\x1f\x2f\x89\x72\x6a\xb5\xd3\x6d\xa2\x7a\x0a\x41\xa7\x69\x3a\x1f\x1e\xcf\xc1\x31\x3b\xaa\x2b\x24\x8c\xa5\x34\x01\x22\x6c\x76\x50\xf3\x12\x25\x66\x22\xf7\x17\x22\x0b\x6f\xbc\x29\x32\x63\x2b\xfa\x29\xc9\x33\xa5\x31\xa3\xc0\x2d\xbc\x00\x5e\x4f\x73\x58\xbd\xc9\x64\xf4\x7b\x0c\x13\xa7\x79\x26\x75\x10\x2d\x7e\x53\x4a\x24\x59\xc4\x26\xf8\x6f\x1c\xe4\x2d\xad\x0c\xcb\x33\x77\x9a\xc6\xd9\x7e\xb0\x71\x08\xdc\xb7\x6e\xa0\x9a\xdc\x74\x4a\x95\xd1\x70\xcb\x50\xaf\x89\xd3\xa1\x6f\x66\xbd\xe9\x1f\x8e\x7a\xaf\x41\xf6\x58\xfa\xa4\xab\x5d\x7b\xdb\x18\x64\xa8\x1a\xaf\x70\x54\x30\x74\xc3\xb4\x78\xb4\x8f\x0e\x12\xfe\x2d\x58\xf7\x01\x82\x77\x9d\x15\xc5\xcd\x57\x73\xf4\x9a\x1e\xcf\x6d\xd7\xcc\x1f\x2a\xef\x67\xf0\x6d\x0c\x93\xa7\x90\x19\xe3\xe6\x39\xca\x7c\xe5\x42\xf9\x91\x64\x2e\x33\xc3\x4e\xee\x6a\xe0\xf9\xc9\x7e\xee\xee\x83\x4f\x61\xef\x68\xf1\x1c\x25\xbe\x82\x54\xfd\x14\xd2\x62\x09\xe8\x91\x17\x4e\xe2\x21\x8b\x33\x11\x31\x39\xf1\x7e\xf9\xf9\xf5\xab\xff\x58\x05\xb3\xd9\xe5\x8f\x49\xe6\x50\x0e\x3b\xf4\x80\x90\xe5\x38\x5b\x1e\xf7\x23\xae\xec\x89\xd7\x35\xc6\x81\x9d\xbf\x93\x50\xe2\xd3\xb3\x84\x63\x52\xf9\x98\x55\x7f\xd6\x72\x93\x83\xc1\xe0\xf0\xc1\x97\xb7\xfe\xb2\x10\xc0\x72\xad\xd3\x07\x70\x5c\x71\xea\x33\x6b\x5f\x89\x57\xf1\xbd\x8f\x5e\x03\x3d\xe0\x2d\x79\x92\xd2\x06\x9c\x3f\xdb\xda\x86\x42\x63\x7d\x7b\x12\xa1\x9f\x6b\x71\x43\xa1\x1f\xb9\xc0\x35\x05\xbf\xa3\xba\x35\x72\x9f\x0d\x25\xfa\x2c\x74\xf2\x44\x65\xe0\x80\xf3\x3f\x4c\x15\x7d\x9a\xd9\x77\xd7\x67\x52\x66\x95\x37\x52\xc1\x24\xdc\x29\xf1\xbf\x1f\xd1\x74\xc5\xe4\xee\x61\x6b\x6f\x22\xea\xd1\xee\x90\x4b\x5d\xf3\xd6\xab\x8a\x45\xc2\x75\xe7\x96\x6b\x6e\x57\x8d\x57\xae\xf2\xe5\x7f\xc8\x55\x1a\xee\x60\xac\xbc\x92\x8b\x4c\xd5\xbf\x20\x94\x6f\x1c\xfd\x1b\x96\x37\xfa\xe9\x19\x4d\x43\x26\x86\x5f\x9f\xcb\x0e\xea\x66\xff\xb3\x4b\xcd\x12\xf6\xe1\x7a\xee\x3e\x6e\xcd\xf1\xeb\x56\xf9\xee\x52\xec\x9c\x33\x92\x59\x0e\xcc\xa6\xbe\x99\x76\xaf\x29\xb5\xa5\xc4\x3c\xad\xd6\xbf\x77\xe0\xe3\x81\x6f\x1f\x1d\xcd\x7b\x9f\x39\x70\x98\x41\x7b\x49\x75\xcf\x68\xd3\x0b\x33\x45\x74\x46\xf0\x25\x0d\xbf\x63\x34\x3e\xa7\x1c\x8d\x8a\x8f\x7e\x35\xd0\xb3\xd9\x97\x87\x63\x6e\xf1\xbb\x75\x85\xf9\xf5\xaf\xcb\x3d\x98\x3b\x55\xf1\x35\x8f\xac\xd7\x0e\xdc\x53\xcb\x22\x0d\xa9\xc6\x97\x79\xd7\xb2\x9f\x28\x8e\x62\x3c\x82\x02\x8f\x10\xe7\xe6\x77\x1f\x40\xf9\x6a\xed\x5c\x00\xdc\xc9\x7c\x69\x1c\x07\xf6\xd3\xfe\xbf\x01\x00\x00\xff\xff\xaf\xde\x28\x37\xeb\x1f\x00\x00") func staticIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -298,7 +298,7 @@ func staticIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/index.html", size: 7902, mode: os.FileMode(420), modTime: time.Unix(1449274360, 0)} + info := bindataFileInfo{name: "static/index.html", size: 8171, mode: os.FileMode(420), modTime: time.Unix(1451952730, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -318,7 +318,7 @@ func staticJsAcePgsqlJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/ace-pgsql.js", size: 53342, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/js/ace-pgsql.js", size: 53342, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -338,12 +338,12 @@ func staticJsAceJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/ace.js", size: 327872, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/js/ace.js", size: 327872, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x3c\x6d\x72\xe3\xc6\x72\xff\x75\x8a\x59\xd8\xb5\x02\x63\x09\xd2\xee\xcb\xab\x54\x91\x92\x9c\xb5\xac\x57\xde\xc4\xf6\x3a\x92\xfc\x2a\x55\x8a\x4a\x05\x02\x23\x12\x5e\x10\xa0\x81\xa1\x3e\xb2\xd6\x0d\x72\x80\x9c\x2f\x27\x49\xf7\xf4\x7c\x02\x03\x92\xf2\xda\xb5\xfb\xd6\x65\x89\x18\x74\xf7\xf4\xf4\xf7\xf4\x0c\x75\x97\x36\x8c\xe7\x85\xa8\x9b\xc9\x0e\x7e\xce\xea\xaa\xe2\x99\xe0\x39\x3b\x66\xb7\x69\xd9\x72\x1a\x9e\xd6\xf5\xfb\x45\xda\xbc\x6f\x61\xf8\xc3\xd3\x64\x67\xe7\x76\x55\x65\xa2\xa8\x2b\x96\x2e\x8b\xd3\xb4\x2c\xe3\x05\x17\xf3\x3a\xdf\x63\xcb\x54\xcc\xf1\x67\x93\x2e\xda\x3d\x96\x4d\x47\xec\xc3\x0e\x63\x5f\x26\xe9\x2f\xe9\x43\x8c\x1f\x19\x5b\x35\xe5\x98\x45\x07\x80\x19\xb1\xaf\x08\x41\x8e\x13\x89\xb1\xfa\x4d\x63\x59\x9a\xcd\xf9\x98\x58\xa1\x91\x3c\x15\xe9\x58\x4f\x20\x47\xda\x55\x96\xf1\xb6\x05\x28\xc5\x54\x8c\x30\x34\xb1\xa4\x31\xa5\x81\x89\x7c\x7e\x22\x24\xde\x34\x75\xe3\xa0\x3c\xcc\x9b\x3d\xd6\x8a\x54\xac\x80\xed\x1e\xfe\x2f\xff\xb1\xe2\xcd\x63\x02\xb3\xb6\xfc\xdf\x2e\xde\xfd\x88\xe0\x49\xc3\xdb\x65\x5d\xb5\xfc\x92\x3f\x88\x91\xa6\x0e\x3f\x9f\xe0\xf3\x93\x23\xa2\x19\x17\x97\xe9\xb4\xe4\x6d\x8c\xe2\xe8\xfd\xfb\x60\x64\x18\x01\x64\xb4\x07\xa2\x11\x12\x1c\x3e\x7e\x78\x92\x32\x9c\x00\xdd\x1e\xb9\xf3\xfa\xbe\x8d\x25\xe4\x1e\xab\x97\x42\x49\x7b\x98\xdc\x01\x4a\x5b\x7e\x84\xdf\xd1\x41\x03\xe8\x91\x83\x19\x9c\xe3\x42\x34\xab\x4c\xac\x1a\xae\x27\xa2\x15\x6c\x31\xc7\x7a\xde\xdf\x56\x39\x7f\xe0\xad\x4f\x75\x7b\xde\x0b\x42\xdf\x20\xa0\x53\x50\x8e\x68\xd2\xa2\x12\xde\x44\xdb\x4e\x92\x59\xf4\xe1\x89\xbe\x2b\x5a\xf0\x9d\xc7\xa0\x66\x03\x13\xcd\x09\x7c\x98\xde\x37\xda\xd1\x02\x14\x03\xf4\x8c\x5f\x0e\x53\xbc\xe0\xbf\xae\x78\x95\x05\xad\x2f\x40\xb1\xd5\xe0\x3e\x45\x4b\x12\x5e\xd6\x39\x97\xfe\x10\xff\x8a\x3f\xc9\x51\x1a\x0e\x66\x52\xb1\x7b\x50\x4d\x7d\x9f\x4c\x45\x9d\xaa\xb7\xbe\x2f\x80\xda\xb2\x95\x70\xd1\x6d\x90\x30\xbc\x2c\xeb\x96\x98\x91\x00\xc8\x08\x93\x9f\xc6\xf4\x8b\x29\xb6\x3a\x84\x97\x25\xe8\x6a\x4b\xc2\x0a\x7a\x3b\xd2\x65\x9d\xe6\xca\x81\x55\x34\x8b\xa3\x2f\xc8\x64\x58\x59\x44\x23\x08\x04\x8b\xfa\x8e\xc7\x80\x06\x2f\xad\xb7\x07\xc3\x11\x7e\x4e\x6e\xeb\xe6\x0c\x02\x9b\x85\x28\x04\x5f\xd8\x80\x03\xf4\x8f\xca\xe2\xe4\xa8\x5d\xa6\xd5\xc9\x51\xc1\xb2\x32\x6d\xdb\xe3\xdd\xdb\x14\xe2\xe0\xbe\x9c\x78\xf7\xe4\xe8\xa0\x38\x61\x68\xb0\x88\x8a\xf6\xca\x8e\x0e\x08\xfe\x00\x50\x81\xa9\x74\xb9\xe4\x55\x7e\x59\x1b\x5e\x23\x1d\xa2\xe4\xef\x6e\x90\xc2\x45\x5a\x53\xb1\xeb\x34\xf6\x10\x5e\xaa\x45\xf9\x73\x56\x0b\xd1\xff\xae\xa9\xab\xfd\xa6\x98\xcd\xc5\xf3\x56\x6d\x2d\x79\xed\xc2\x79\x9b\xa5\x4b\xfe\x9d\x58\x94\x31\xb8\x3b\xb1\x55\xdc\x32\x7c\x60\x2f\x8e\x59\xb5\x2a\x4b\xf6\xdb\x6f\x4c\x3d\xae\x20\xf2\xdc\x16\x15\xcf\x35\xff\xca\xee\x29\x41\xc0\x4a\xf2\xe2\xee\x00\x19\x11\x90\x14\x24\xc1\x64\x8e\xa4\x69\xea\x1d\xeb\x28\x91\x5c\xaf\x5e\x2c\xce\xb2\x7b\x82\x3f\xd5\x7a\x22\x9f\xc9\x55\xd5\x61\x13\x27\x97\xb9\x1b\x12\x72\x5e\x67\xab\x05\xaf\x44\x92\x35\x3c\x15\xfc\xac\xe4\xf8\x14\x47\xc0\x0a\x2d\x9d\x27\x05\x64\xf5\xe6\xbb\xcb\x1f\xbe\x07\x70\x40\x9f\x58\x3e\x78\x92\xcd\x8b\x32\xff\x11\x7c\xba\x4d\x4a\x5e\xcd\xc4\x9c\x1d\x1f\x1f\xb3\x43\xf6\x35\x8b\x22\x36\xf6\x00\xae\x0e\xaf\x93\x0a\x3e\xfc\x3d\x2d\x57\xbc\x97\xe4\x4e\x57\x4d\x03\x13\x4b\xeb\x8f\xbd\xa8\xf0\xa5\x63\x84\x49\x2a\x44\x03\xcc\x81\x65\xec\x67\x84\x11\x8d\x50\xc2\x51\x67\xcd\x90\x5e\xb9\x47\x0c\xa9\xc0\xe0\xaa\x14\x48\x46\x4a\xdf\xa1\xb5\x00\xbe\xd0\xb7\xf5\x2b\xa9\x00\xf3\x44\x76\x7b\x8a\xd2\x8e\x23\xbe\x58\x8a\xc7\xe0\x9b\xaa\xde\xcf\x9a\x7a\x19\x75\x6c\x64\xc9\x1b\x30\xe2\x85\x64\xe6\x0d\xd9\xb0\x4a\x28\xa9\x7c\xb2\x56\x43\xcf\x20\x41\x16\x41\xea\xac\x32\xd0\x47\x84\x8b\x73\xc6\x73\x5e\x72\x18\xd5\x06\x84\x5a\x5c\x40\xf9\x92\xce\x50\x97\xd1\x9b\x86\xb3\xc7\x7a\x05\x45\x8d\xfa\x70\x9f\x56\x82\x89\x5a\x5a\xbd\xa2\x82\x76\x4f\x79\xca\xcb\x58\xec\xeb\x88\x0c\x1d\x19\x79\x01\xe9\xeb\xb6\x68\x16\xb1\xa2\x3d\x1a\x29\x65\x18\x43\x6c\xef\x0b\x01\x5e\xe9\xae\x00\xeb\xad\x96\x3b\xac\x8f\x95\x8f\x7a\x61\x3b\xba\x3c\xff\xf9\xc7\xd3\x37\x97\x67\xec\xf2\xcd\x37\xdf\x9f\x31\x27\xe7\x0f\x54\x60\xc4\x92\x0c\x06\xb2\xee\x1a\xb1\xb4\xe4\x8d\x70\x47\x26\x06\xd4\xd5\xbb\x1e\x7d\x32\x9f\xa6\x60\xe3\xef\x27\x0e\xaf\x4a\x9c\x61\x4e\xbf\x3d\x7f\xf7\xd3\x9f\xc3\xa5\x9b\x14\xfc\x51\x27\x8a\xfe\xee\x45\x41\x7e\xaa\x1b\x61\x16\x85\x36\x72\x5b\x80\x77\xa6\x0b\x34\x12\xa3\xf1\x24\x6b\xef\x22\x07\x86\x72\xd8\xb1\xce\xc2\x94\xaa\x7f\x3e\x7f\x1b\x47\x17\x67\xdf\x9f\x9d\x5e\xb2\x7f\x62\x7f\x3b\x7f\xf7\x83\x95\x85\xe1\x00\xb1\xa1\x2e\x47\x0b\x9c\x0b\xb1\x1c\x1f\xc8\x62\x48\xd1\x29\x6b\x30\x06\x90\x57\x32\x87\xfc\x29\x6b\x23\xc8\xa8\x94\x9c\xbf\x46\xbf\x48\xc5\x31\x30\xf2\x52\x73\x78\x8c\xa8\x86\x5d\x00\x7f\x29\x41\xe5\xb0\xfc\xe4\x4e\x0a\x53\x58\x86\x6b\x08\xde\x31\xb0\x01\x6e\x7c\x33\x2d\xd3\xea\x7d\x64\x18\x04\x08\x48\x24\xd9\xca\x91\xaa\x91\xda\x93\xe7\xac\x2d\x48\xee\x0d\x68\xeb\x3e\xce\x8b\x86\x3b\xd6\x4d\x06\xcf\xba\xc3\x5a\xe6\x6f\x2e\x4e\x8d\xc0\x75\x90\x7e\xf9\xc5\xc3\xeb\xbf\x7e\xf3\x7a\x12\xb9\xca\xf9\xf6\x6c\x10\xf2\x54\x43\x42\x96\x48\x21\x50\x75\xa1\xa2\x3e\xbb\xd3\x15\x44\x57\xb2\x0c\x15\xdc\xf6\xe4\x12\x4e\xeb\x72\xb5\xa8\xe8\xf3\xbb\x26\xe7\x8d\x8e\xa8\xae\x21\xa9\xa8\xa3\x10\xb5\xd9\xd2\xaa\x30\xaf\x8a\xe6\xe4\x48\xe4\x27\x67\xe7\xe7\xef\xce\xc7\x52\xed\x1e\x28\x2a\xe7\xe8\x00\x81\xf0\x87\x9f\x3e\x4d\xa4\x9d\x68\x6a\x4e\xf0\x4d\xf3\xdc\x8f\xa5\x13\x27\x19\x9a\x08\x23\xe3\x90\x9e\x10\xf7\x1b\x01\xd6\x7e\xac\x01\x2b\xab\x9b\xbc\x65\xb7\x35\x64\xd7\x3f\x91\x1d\xda\xdf\x96\xb8\x87\x25\x45\xe0\x00\xb2\xa5\x06\x48\xba\x92\xd9\x4c\x0a\xbf\xed\x97\x2e\xf0\x42\x2f\x02\x57\x07\x8f\x32\x5b\x5a\x85\x39\xdb\x46\x9c\xea\x2b\x20\x7d\x04\x29\x55\xe5\x79\x0c\xb6\x77\x7c\x57\xd6\x45\xc7\xbb\xa8\x0f\xa4\x00\x5a\x90\x9f\x29\x91\x21\xad\xfd\x1a\x35\x2e\x3d\xc6\xe8\x1f\x01\x4e\x1c\x94\x97\xd5\xb4\x5d\x4e\x34\x08\x59\xbc\x63\x2c\xa4\xda\xf9\x49\x64\x37\xa6\x10\x1d\x61\x1b\x1d\x66\xb0\xcf\x91\x3b\x57\x97\xd2\xd3\xc8\x13\x17\x0a\xb1\x2f\x2b\x18\x75\x93\x5c\x63\xe4\xce\x40\xd5\x0d\x8b\x0b\x06\xbe\x4f\x40\xf0\x92\x18\xc9\x4f\xb0\x82\x92\x53\x3b\x15\x0f\x00\x5d\x15\xd7\x6a\x4d\xf8\x1e\xf8\xc9\x81\x1f\xb5\x2a\xa9\x43\xc2\x6f\x24\xaa\x35\xec\x68\x62\xb9\x95\x56\x37\xe7\x69\xae\x57\xd6\xea\xa5\xe1\xd8\x91\x98\xd6\xf9\x23\xa1\x4b\x7a\xf2\x55\x3d\xc5\xb1\x21\x4b\xf4\xc2\x8e\x5b\x00\xc5\x45\x6e\x6b\x96\x2a\xbd\x63\xab\x12\xea\xe7\xa4\x85\x5c\x85\xcd\x15\x53\x48\x2b\xab\xb5\xe3\x13\x85\x23\x6b\xdc\xdc\xb5\x6c\x17\xc6\x9b\x77\x5e\xdf\xcb\x6c\xa7\xb7\xa2\x34\xb1\xb3\x37\x0d\xa6\x3b\xc7\xf6\xaf\xae\xa5\x78\xa4\x56\x48\x29\x7e\x5e\x94\xda\x5d\x55\xed\xbc\xb8\x15\xf1\x95\xec\x81\xbc\x85\xfa\xb2\x40\x7d\xbc\xa2\x66\x09\x68\x27\x51\x9b\x2e\xfd\x28\x0a\xa8\x3c\x44\xba\x58\x5e\x9b\xd6\x88\xfc\xe5\xc4\xbb\x0f\x4c\xf9\xd9\x98\x5d\x45\x45\x8e\xd5\x9b\xde\xf1\x45\x06\x3d\xba\xde\x93\x1c\x8c\x89\x5d\xa5\x4b\xd6\x91\x77\x24\xd3\xd9\x8d\xde\x5f\x3b\x51\xa2\xa8\x96\x2b\xa8\x30\x93\x79\x91\x9b\xdc\x8b\xe3\xf5\x4a\xd0\x0b\x2b\xe2\x5b\xa8\xbf\x37\x05\x18\xa7\x42\xec\xef\x25\x50\x17\x5e\x7f\x83\x84\x88\xb2\x56\xa9\xbb\x57\x26\x9b\x18\x8e\x00\xb6\x00\x67\x87\x5a\xfe\x54\x83\x44\x3f\x95\x1c\x93\x0f\x59\x01\x4b\x29\x7d\xbf\x18\x88\x74\xdd\x36\x0b\xd2\x1e\x28\x7b\x82\x62\xd4\xfd\x15\x45\xdd\x51\x99\x6a\xa4\x7d\x5a\xe9\xba\x8d\x9d\x4f\x2c\x61\x97\x95\xe7\x4a\xd9\x6d\x30\x7d\xa6\x92\x7e\x5b\xdd\xd6\x9f\x4a\xc4\xeb\xba\x74\xba\xb2\x3c\x28\x80\x41\xd5\xa9\x0a\x0a\x1e\x96\x9f\x48\xbc\x7d\x84\xc4\x52\x55\x6e\xa7\x41\x3c\x09\x2e\xd2\x15\x24\x29\x45\xd4\x22\x2d\x6f\xda\xe2\xbf\xb9\xde\xc4\xcb\xf2\xdf\x0e\xf7\x30\xf0\x7d\x1f\xc1\x8c\xf6\xe0\xa5\x73\xf5\x11\xec\x70\x0f\x03\x03\x1f\x58\xcb\x0a\x77\xca\x0e\x86\x1d\xee\x61\xc8\xca\xbf\xa8\x66\x1a\x3e\xfa\xb9\x7a\x5f\xd5\xf7\xd5\x66\xc7\x12\xd8\x3a\x58\x53\x7f\x7e\x32\x4f\x93\xed\x6e\x72\xb1\x0f\x90\x4b\x17\x85\x18\xb3\x57\x87\x87\xc4\xe0\x0d\x25\x92\x71\xaf\x72\xbe\x91\x85\xd4\xd8\xa9\xa2\x86\x2c\xa5\xe3\x7a\x43\x45\xf8\x64\xad\x3f\x0b\xd9\xcd\x70\xbc\xd6\x71\xbd\x7e\xab\x62\x8a\x1a\xe4\x1f\x9d\xac\x06\xd5\x69\xbb\xf7\x9f\x58\x77\x96\x91\xe7\xc6\xc8\x56\x63\x7e\x86\x11\x52\x56\x5d\x3f\xa5\x15\x2f\x95\x7c\x83\x2b\xa0\x8a\x86\xfa\x70\xf2\xa0\xcd\x6e\x63\x77\x7c\xbe\x6d\x40\xf2\xb8\xf6\x2a\x45\xcd\x78\x97\x97\x53\x3a\xb7\x83\xc7\x8d\x0c\x65\x06\x54\x59\x6a\x2f\xd0\x3a\x10\x6b\x42\xeb\x50\x05\xf9\x9e\x3f\x0e\xd4\x90\xcb\x55\x3b\x8f\xaf\xe0\xbd\xaa\x12\xe1\xd3\xf5\x9a\xea\xd0\x6e\x53\x74\x8d\x88\x3e\x54\x4c\x57\x42\x7a\xcf\x1d\x36\x21\xa1\x3a\x74\x66\xa0\x1a\x91\xe8\x7d\xb4\x65\x84\x54\x8e\xcd\xbf\xbb\x42\x6c\xd6\x7a\xaa\x00\x87\x44\x6c\xde\xaf\x11\x70\xdf\xd4\xff\xd0\xf5\x34\x2b\x75\x5a\xb2\x8d\xf1\x2a\xa3\x04\x9c\x3d\xf6\x85\x3a\x3d\x81\x4f\xd8\x7f\x1a\x25\x4b\x70\x13\x6c\x37\xb7\x88\x83\x65\x3c\x38\x2d\x37\x86\x2c\x69\xdc\x00\xcc\x0c\xbc\xac\x75\xec\x7c\xc7\x6f\x5a\x7d\x99\x80\x72\x17\xb1\x72\x12\x79\xb6\x40\x3b\x1e\x3c\x5f\x8d\x65\x8b\xd8\xbe\x93\x1d\xe8\x78\x64\xc3\x96\xa4\x12\x8a\x5b\xcf\x60\x5b\x9e\x32\x3b\xe2\xec\x71\xee\xca\xbb\x13\xea\x42\x07\x5b\x5b\x6a\xf5\x4f\x65\x33\x1c\x60\xb6\x09\x31\xa6\xc9\x41\xa2\x15\xf5\xf7\xf5\x3d\x6f\x4e\x21\xfa\xc7\x23\xaa\x56\xde\xdd\xc6\x91\x3e\x49\x1b\xe1\xe9\xc8\xfe\x2b\xef\x58\x67\x73\x58\x35\x7e\x2f\x83\x09\x26\xa6\x83\x98\x4e\x31\x7e\xcb\x01\x68\x44\xe9\xe5\xa0\x50\xdc\x1c\x1c\xb0\x73\x7e\x0b\x54\xe7\xcc\x9c\xbf\xb5\x02\x99\xa4\x96\xe8\x7d\xda\x32\x98\x89\xe7\xac\x6e\x54\x63\x3f\xef\x2c\x03\x2a\xc0\x6c\x1e\x37\xd8\x0f\xd7\x9c\x86\x5a\xb9\xc1\x46\x6e\xe8\x70\x1f\x74\x76\x46\x22\xf8\x6c\xfd\xe8\x33\xf4\x95\xfe\x59\xed\x3f\xb6\xaf\xfc\xee\x3a\x82\x1a\xfd\x97\xf5\xe9\xc5\xdf\x9d\x22\xed\x0f\x50\x65\xa0\xf7\xf9\xb1\xfd\x7d\xdb\xc5\xef\xdf\x01\xd0\xed\xd4\x81\x76\xfe\x2e\xb5\xf3\x77\x89\xf1\x4d\x75\x92\xd7\xeb\x77\xa5\x55\x54\x85\x38\x93\xc2\x70\x84\x75\xdf\x14\x2a\xee\x5e\x16\x0b\x0e\x7a\x62\x74\x6a\x6b\x2b\x2e\x18\x48\x33\x9e\xe0\x43\x1c\x01\x59\x51\x2f\x3c\x8f\x74\x53\x4e\xdb\xa2\x11\x82\xfe\xb9\xf8\x01\xd6\x18\x47\x80\x79\x80\x05\xfb\xc1\x72\xd6\xfe\x5a\x7a\x85\x5c\x17\x01\x56\x73\x01\xfb\xb7\xf8\xf5\x3a\xa0\x9f\x5b\x7e\x51\xdf\x22\x6c\x1b\x2b\xff\xb6\xc0\x59\xbd\x58\xa4\x55\xde\x4a\xf3\x51\x9f\xe3\x2b\xd2\x28\x96\xce\x63\x16\x81\xe1\x2b\xe6\xa9\xf2\x99\x82\xac\xff\x9d\x3f\x8e\x4d\x38\x03\xe9\x01\xd8\xa9\x68\xca\xfd\x33\xd8\x90\x34\x91\xae\x90\x16\x69\x86\x2f\x88\xac\x7a\x47\x71\x4d\x5d\x89\x82\x14\xe6\xdc\x88\x22\x96\x9c\x12\xce\xd4\x0b\x4e\x34\xdc\x63\x1e\x73\xca\x1f\xb7\x67\x70\x88\xb9\x67\x32\x66\x42\xb0\xc3\xda\xb5\x27\x59\xc0\x8b\xb2\x79\x5a\xcd\xb0\x76\x34\xa4\xdc\x5e\x7e\xcf\x8e\x9c\x56\x3e\x6c\x7a\x1a\x35\x1a\x80\xf3\x32\x59\xc8\x1c\xd1\x36\x14\x76\x6f\x6a\xcc\x35\x59\x5a\x5e\x00\x93\xe9\x8c\xa3\x85\xbc\x15\x7c\x11\x47\xcb\xd9\x3d\x9f\x6a\x41\x06\x2b\x1f\x92\x10\x6e\x82\x0f\x47\x4e\x9b\xdb\x0d\x20\x1e\xe9\x59\x88\xb4\xc4\x34\x91\x84\xbd\x7c\xc9\xbc\x90\x72\x62\x23\x8a\x62\xa1\xd5\x2c\x58\xc7\xb7\xe6\x8b\x72\xa2\xb2\x4d\x2e\x91\xc2\x8f\xeb\xc1\x60\xd7\x17\x73\x88\x78\x50\x2b\x5d\xd6\x75\x29\x8a\xa5\x6e\xe1\xd1\xde\xf3\xae\x98\xa5\x48\x69\xd5\xf2\xe6\xcd\x0c\x2f\x35\x98\x4a\xe3\xdd\x05\xfb\x4f\x28\x33\x4e\x7a\xe9\xca\x6c\xae\x45\x21\x4a\xb9\x35\xd0\x53\x8c\xd9\xff\xfd\xcf\xff\x7e\x45\x96\xee\x44\x69\x53\xb3\x6c\xc0\x53\x21\x7b\xc7\x3b\x37\xd9\x62\x52\x34\xed\xdf\x35\x2b\x21\x46\x01\xb9\xf9\x7b\xbc\x0b\x2e\x44\x51\xcd\x5a\xdb\xeb\xb7\xf7\xc6\x82\x89\x14\x0a\xa7\x6f\x6b\x56\xd5\x02\x15\xc0\xd2\xea\xd1\xb9\xd1\x09\x82\xbf\xe7\xbb\x77\x9c\xcd\xf0\x75\x45\x37\x23\x8d\x57\xb8\xc7\xe1\xc6\xe1\x4c\x6e\x31\x56\x8f\xa0\xef\xa6\xbf\x00\x7b\x09\xec\xea\x5a\x9a\x3c\x60\x44\x92\x15\x60\xdf\x9d\xbf\x62\xb3\xb2\x9e\xa6\x25\x5a\xae\x02\x72\xef\x9b\x22\x29\x95\xf8\x55\x05\x88\x09\x98\xc1\x76\x0a\x02\x03\x94\x7f\x20\x08\x03\x8f\xd7\x19\x61\xed\xad\x53\x83\xda\xcd\xec\x8d\xbd\x2d\xa7\x6e\xe5\x44\xa6\xce\x95\x94\xdf\x80\x6c\x64\x9e\x52\x64\x2c\x95\x23\x1a\x60\x72\xcf\x79\xbc\x8b\x17\x91\x68\xa4\x73\x36\x14\x9e\xac\x3b\x07\xb2\x9e\xde\xa5\x45\x29\x8b\x56\x03\xa8\x80\xe4\xd9\x58\x70\x13\x1d\x62\x05\xd3\x31\x02\xe3\x89\x1d\x1d\xd9\xa9\xa7\x67\x72\x48\xf4\x9f\x76\xec\x9a\x13\x57\x5c\x6e\x39\x14\x38\x4a\xec\x82\xbb\x55\x95\x73\x5e\xd8\xd1\x07\x95\x09\x0e\xf5\xee\x85\x22\x6b\xf0\x50\x07\x55\x33\x27\xe9\x63\x2d\x63\x0b\xa4\x0e\x5d\x78\x09\x44\x41\x40\x2a\x4c\xca\x2b\x36\x90\xc2\x11\x01\x18\xb5\x90\xfb\xb3\xa6\x5e\x2d\xf7\xd5\xc5\x80\xe9\x4a\x08\x28\x82\xe8\x8c\xd6\xeb\xd8\x45\x86\x4c\xdb\xd2\xbc\xfe\x84\x30\xaa\x27\x34\x95\x19\x4d\x08\xf5\x56\x2b\x20\xa3\xa5\x4d\xee\xdd\xf8\x91\x95\x16\xd1\x59\xce\x6e\xf0\xc9\x12\xd0\x30\x58\x19\x5a\x18\x79\x21\xa4\x07\x83\x71\xd2\xc2\xe0\x53\x80\x0e\x94\xa1\x00\x63\x6e\x83\x40\x92\x5d\xd6\x15\xf6\x79\x35\x69\x00\xb8\xaf\x91\x43\x47\x68\x84\x9b\x4f\x19\xb3\xf4\xf3\xa9\xb7\x4c\x5a\x28\x32\x16\xaa\x40\x99\x5e\x40\xf4\xd7\x7f\xfe\xcb\xeb\xc8\x0b\x17\xaa\x14\xc5\xfb\x98\x58\x88\xab\x72\x54\x2e\x06\x4c\x77\x4c\xf7\xc2\x5b\x79\x08\xfb\xaf\xf8\xa0\x0b\x53\x7a\x83\x64\xb1\x4a\xc5\x07\x60\x10\x3e\x7e\x0d\x1a\x40\x81\xd3\x89\x79\x5b\x06\xe2\x36\xae\x46\xa6\x43\x98\x18\xa6\xb7\x79\x45\x0e\x92\x06\x68\x0f\x8b\x9d\x06\x0f\xe2\xd5\xeb\x7f\x49\x0e\xe1\xbf\x57\x1a\xc2\x59\x3d\x91\x84\xb4\xe9\x61\x28\x76\x00\xfe\xd8\xdf\x15\xe3\xc2\xf1\xa4\x3a\xc4\xb0\x72\x15\xe7\x92\x20\x40\x4b\xa7\xf8\x32\xd6\x77\xfc\x70\xff\x91\xe6\x8f\xdd\x32\xc2\x76\xfe\x4d\x13\x9a\x2a\x9e\xb2\xc8\xde\x43\x8e\x91\x71\xc5\x41\xe9\xb7\xfc\x47\x13\x0a\x00\x66\xbb\xd9\xeb\xbf\x76\x08\x86\xc9\x39\x2d\xe7\x49\x80\x9c\x39\x58\xdc\x92\x3b\x73\x8e\x1a\xe6\xce\x3b\x41\xf3\x48\x0e\x2e\xd6\x1e\x1c\x4e\x7a\xe4\xcc\xe9\xf1\x66\xee\xfc\x13\xf7\x30\x77\xaa\xc0\xea\x11\x1b\x22\xa7\x9a\x8a\x13\x05\x14\x58\xac\xe9\xdb\xfa\x34\x7b\xe4\x7a\xdd\xe0\x49\x9f\x9c\xed\x50\x76\x19\xec\x91\xeb\x74\x3d\x27\x9a\xbb\x1d\xb7\x1a\x1a\x92\x3e\xed\x46\xbd\xbd\x83\x83\x6b\x8b\xa2\x4d\xf8\x5e\x89\xef\xe6\x13\xb9\xf1\x5f\x8b\xed\x6d\xb2\x3b\xe8\x76\xc7\xee\x92\x88\x44\x13\x22\xe4\x20\x30\xd1\x0c\x5d\xe7\x30\x35\x9f\x00\x83\x1a\xba\xc2\xb1\x15\x13\x73\x97\x09\xee\xe6\x0f\x7b\x38\x85\xf7\x01\x61\x9e\xc4\xf4\xc6\xdb\xab\x5d\xcc\x59\xbb\xd7\xc9\x1d\x5d\xd3\xd5\x38\x2a\x34\x80\x27\xc8\x88\xbe\xeb\x47\x8c\x5d\xc8\xda\x69\x4b\x9c\xee\x6a\x4e\x77\xdd\x40\xff\xc2\x12\xd8\x58\x0b\x4a\x96\x90\x0d\xd8\x2e\x24\xf6\xf0\x0d\xef\x4a\xc9\x8b\x76\x96\xc0\x10\xa4\xba\x67\x37\x54\x71\x0c\xa3\xbd\xb1\x58\xf2\xd7\xda\xd3\xcd\x30\x99\xf5\xfa\xc9\xa7\xa5\x55\x51\x0e\xd5\x2d\x5e\xb4\x1e\xd8\x54\x6a\x23\x00\xd1\x42\xc5\xcf\x1f\x44\x0a\xf1\x3b\x0a\x57\xc6\x01\x51\xa2\xda\xa4\x16\x31\x69\xb9\x77\xc0\x0d\x5d\x79\xb9\x5c\x59\x9c\x54\x92\x04\x97\x57\xaa\x88\x9c\x4b\x4a\x33\x40\x19\xfd\xc8\x3c\xca\x1b\xeb\x5a\xb0\xd8\x6d\x27\x22\x7a\xc8\x39\x4d\xa8\x9b\xc5\x3e\x9a\x41\x53\x97\x16\x25\xc3\x57\xf7\x45\x2e\xed\x55\x73\xe6\x0c\x8e\x5c\x2b\x92\xa4\x93\x76\x59\x62\x33\xe6\xbf\x2a\x47\x16\xc7\xec\x2f\x8e\x59\x28\xde\x88\xce\x9c\xe3\xfd\x7f\x14\xf8\xeb\xc3\xc3\xe5\x43\xa7\x79\xec\x09\x43\x23\x2a\x0e\x16\xe9\xc3\x7e\x10\xdb\x51\xaf\xb9\x9a\xee\x79\x5f\x59\x0c\x85\x00\xd3\x7b\xde\xf2\x42\x57\xff\x9b\x14\xcf\x40\x5c\x1f\x44\xd8\xc6\xbb\xf5\x7b\xb6\x48\x26\x52\x52\xc1\x23\xa3\x93\x40\x25\xe0\x8f\xd3\x1d\x90\x21\x91\xc9\x98\xf0\x20\xa0\x36\x59\xa9\x13\x3b\x90\x3e\xd4\xee\x63\xa6\x81\x6e\x14\xc8\x0d\xc2\xa8\x7e\x4f\x9b\xd5\x4b\x28\xfb\x48\xc8\x72\xa4\xae\xb0\x37\xe1\x74\x79\x14\xd6\x1e\xe3\xd6\x28\xa4\x0d\xcb\x4d\x93\x57\xfc\x2b\xd0\xab\xc3\x6b\xb3\xba\x89\x83\xa1\x6e\xcd\x4b\xa3\xe7\x09\xb1\x37\x92\x4e\x8f\xdd\x3d\x7d\x10\x4a\xf0\x1b\x6f\xfa\x07\xf7\x34\xce\x57\x4d\x3e\x33\x1b\xfa\xc4\x46\xb4\xe6\xfa\x8d\xdd\x22\x7a\x81\x56\x9e\xee\xdc\x04\x3d\xb2\x27\xc7\xfe\xc1\x4d\xe0\xd8\xc6\x2d\x36\xf2\x42\x0c\x97\x51\xc1\xf8\x6d\xbe\x0f\xeb\x1f\x6c\x65\x65\xdd\xba\x15\x59\x7f\x2b\xdb\x49\x40\xa1\xde\x4d\xb7\x90\x19\xa4\xb9\x96\xcb\xa1\x3d\x75\x50\xbe\xbd\x4d\xf2\xe6\xb6\xa8\xd6\xb8\xdc\xf6\xad\xd9\x35\x75\x04\x14\xda\x1c\xeb\x83\x99\x28\xec\x45\x76\x23\xbc\x9e\x2b\x37\x29\x7a\xdc\xf5\xb2\xcc\xfa\x3d\x5e\x07\xa6\xb7\xcb\xfb\xe8\x15\x6d\xe8\x34\x6c\xa1\xd9\xcd\x14\x3c\xcf\xd7\xad\x8b\xa1\xdc\x61\xdf\x93\x61\xd2\x37\x80\x0c\x9c\xd3\xef\x70\x7a\xdf\xf2\x3b\x0f\x6d\x36\xe7\x0b\xfb\x2d\x9b\x1e\x73\xf4\x9e\x78\xec\x78\x41\x08\x5a\xb5\x44\x0c\xbc\xdb\x2f\xc2\x7f\x6e\x29\x64\x58\xd0\x7d\x94\x6d\x99\xe8\x12\xdd\xc4\xc4\x26\xa6\xdb\xf9\xf3\xf8\x6d\xe7\x9f\x03\xab\x5d\x50\xbf\xca\x1c\x8a\x0e\x6e\x33\x2f\xec\x8d\xde\x76\x44\xdd\x2a\xeb\x24\x09\xdd\x4c\x32\x5e\x49\x60\xf8\x35\x80\xf5\x1b\x08\xfc\x72\xe7\xb1\x6d\x8c\x5e\x21\xde\xb5\xbd\x03\x70\x3a\xe7\xd9\x7b\x24\x68\xdb\xbe\x55\xf9\xc8\xa0\xc6\x96\xfd\x15\x28\xe5\xcd\x8c\x48\x2a\xc1\xc1\x17\xfe\xac\x83\x1d\x43\x8d\x60\x24\xd6\xf5\x7d\x72\x04\x28\x7c\xd0\x6d\xad\x60\x03\xcb\x00\x4e\xff\x56\x94\x25\xf6\x71\x35\xa3\x3c\x67\x96\x16\x32\x2a\x53\x81\x89\xe3\x7e\x2b\x50\xb2\x82\xcf\x4e\x92\xf6\x1b\x81\x12\x02\x9f\x7d\x08\xa7\x0d\x48\xcb\x69\xcd\xc5\xc5\x70\xc7\x8f\xe8\xa8\x31\x1f\xd2\xb4\xfc\x24\x0c\x06\x87\x69\xea\x9d\xa8\x07\xe3\xa2\x04\x86\xc7\x35\xf9\x07\xcb\x01\x65\x5c\xed\x6a\xba\x28\x44\xd0\xb8\x78\xb2\x6c\xf8\x1d\x54\x14\xdf\xd2\x17\xaa\x4c\x90\x97\x7f\x95\x42\x06\x41\x27\x0b\xc8\x6f\xaa\x42\xc1\x12\x47\x3a\x3e\x3a\x9d\x52\xd9\x72\x0c\x76\x95\x1d\x0b\xc5\x2e\x5e\xb0\x97\x19\xd0\x6f\x67\x41\xf2\x90\xa4\xe3\xcb\xaa\xa5\x1c\xbe\xd8\xa1\xae\xe6\xaa\x1b\x95\xf7\x69\x21\x92\x24\x31\xc1\xb9\xff\xa5\x75\x35\x97\xfc\xd2\xba\xfc\x1b\x1a\xb8\x24\xf7\xf2\x18\xfe\x41\x0a\xcb\xf1\xd0\xdc\x74\x25\x42\x4d\xae\x84\xe1\x9c\x51\xa8\xef\x93\x2d\xbb\x87\x3e\x2c\xf4\xb7\x41\x9c\xf8\x13\x12\x85\x9c\xc3\x21\xd6\x09\x46\x4f\xea\xb7\xb7\xb1\xf7\xe7\x41\x41\xd9\x69\xb6\xfc\xd2\xe5\x10\x5b\x81\xda\xc8\x81\xa3\x52\xf7\x46\x9b\xb8\xc7\x7e\xf7\x65\x07\x77\x41\x2d\xac\xd0\xea\x9e\x5c\x17\x70\xef\x2f\xe0\x70\xf0\x34\xf4\xb9\x77\x32\x5d\xad\x0f\x29\x6f\x50\x75\xeb\x6a\xd3\x81\x2f\x8d\x85\x95\xb3\xd5\x25\xaa\x9d\x8f\x15\xf7\x80\xb0\xcd\xc5\x2c\xf8\xff\xff\x03\x00\x00\xff\xff\x55\xac\x95\x87\xd2\x46\x00\x00") +var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x3c\xff\x72\xe4\x36\x6f\xff\xfb\x29\x78\x4a\xe6\x2c\x37\xb6\xec\xbb\xaf\xdf\x74\x66\xd7\x76\xea\x38\xfe\x26\xd7\x26\xb9\xd4\x76\x3a\x9d\x71\x3d\x1e\xad\x44\xef\x2a\xd6\x4a\x1b\x89\xeb\x1f\xbd\xf8\x0d\xfa\x00\x7d\xbe\x3e\x49\x01\x82\x3f\x25\x6a\x77\x9d\x4b\x7a\x37\xdf\x65\x62\x4b\x24\x00\x82\x00\x08\x80\x20\xe5\xfb\xb4\x61\x3c\x2f\x44\xdd\x8c\xb7\xf0\x39\xab\xab\x8a\x67\x82\xe7\xec\x88\xdd\xa6\x65\xcb\xa9\x79\x52\xd7\x77\xf3\xb4\xb9\x6b\xa1\xf9\xc3\xf3\x78\x6b\xeb\x76\x59\x65\xa2\xa8\x2b\x96\x2e\x8a\xd3\xb4\x2c\xe3\x39\x17\xb3\x3a\xdf\x65\x8b\x54\xcc\xf0\x67\x93\xce\xdb\x5d\x96\x4d\x76\xd8\x87\x2d\xc6\xbe\x4c\xd2\x5f\xd2\xc7\x18\x1f\x19\x5b\x36\xe5\x88\x45\xfb\x80\x19\xb1\xaf\x08\x41\xb6\x13\x89\x91\xfa\x4d\x6d\x59\x9a\xcd\xf8\x88\x58\xa1\x96\x3c\x15\xe9\x48\x0f\x20\x5b\xda\x65\x96\xf1\xb6\x05\x28\xc5\x54\x8c\x30\x34\xb0\xa4\x31\xa1\x86\xb1\x7c\x7f\x26\x24\xde\x34\x75\xe3\xa0\x3c\xce\x9a\x5d\xd6\x8a\x54\x2c\x81\xed\x1e\xfe\x2f\xff\xb6\xe4\xcd\x53\x02\xa3\xb6\xfc\x5f\x2e\xde\xff\x88\xe0\x49\xc3\xdb\x45\x5d\xb5\xfc\x92\x3f\x8a\x1d\x4d\x1d\x7e\x3e\xc3\xf3\xb3\x23\xa2\x29\x17\x97\xe9\xa4\xe4\x6d\x8c\xe2\xe8\xfd\xfb\x60\x64\x18\x01\x64\xb4\x0b\xa2\x11\x12\x1c\x1e\x3f\x3c\x4b\x19\x8e\x81\x6e\x8f\xdc\x79\xfd\xd0\xc6\x12\x72\x97\xd5\x0b\xa1\xa4\x3d\x4c\x6e\x1f\xa5\x2d\x1f\xe1\x77\xb4\xdf\x00\x7a\xe4\x60\x06\xc7\xb8\x10\xcd\x32\x13\xcb\x86\xeb\x81\x68\x06\x1b\x8c\xb1\x9a\xf7\x77\x55\xce\x1f\x79\xeb\x53\xdd\x9c\xf7\x82\xd0\xd7\x08\xe8\x14\x94\x23\x9a\xb4\xa8\x84\x37\xd0\xa6\x83\x64\x16\x7d\x78\xa0\xef\x8a\x16\xd6\xce\x53\x50\xb3\x81\x81\x66\x04\x3e\x4c\xef\x1b\xbd\xd0\x02\x14\x03\xf4\xcc\xba\x1c\xa6\x78\xc1\x7f\x5d\xf2\x2a\x0b\x5a\x5f\x80\x62\xab\xc1\x7d\x8a\x96\x24\x74\xd6\x39\x97\xeb\x21\xfe\x15\x7f\xd2\x42\x69\x38\x98\x49\xc5\x1e\x40\x35\xf5\x43\x32\x11\x75\xaa\x7a\xfd\xb5\x00\x6a\xcb\x96\xc2\x45\xb7\x4e\xc2\xf0\xb2\xa8\x5b\x62\x46\x02\x20\x23\x4c\x3e\x8d\xe8\x17\x53\x6c\x75\x08\x2f\x4a\xd0\xd5\x86\x84\x15\xf4\x66\xa4\xcb\x3a\xcd\xd5\x02\x56\xde\x2c\x8e\xbe\x20\x93\x61\x65\x11\xed\x80\x23\x98\xd7\xf7\x3c\x06\x34\xe8\xb4\xab\x3d\xe8\x8e\xf0\x39\xb9\xad\x9b\x33\x70\x6c\x16\xa2\x10\x7c\x6e\x1d\x0e\xd0\x3f\x2c\x8b\xe3\xc3\x76\x91\x56\xc7\x87\x05\xcb\xca\xb4\x6d\x8f\xb6\x6f\x53\xf0\x83\x7b\x72\xe0\xed\xe3\xc3\xfd\xe2\x98\xa1\xc1\x22\x2a\xda\x2b\x3b\xdc\x27\xf8\x7d\x40\x05\xa6\xd2\xc5\x82\x57\xf9\x65\x6d\x78\x8d\xb4\x8b\x92\xbf\xbb\x4e\x0a\x27\x69\x4d\xc5\xce\xd3\xd8\x43\x78\xaa\x16\xe5\xcf\x99\x2d\x78\xff\xfb\xa6\xae\xf6\x9a\x62\x3a\x13\x2f\x9b\xb5\xb5\xe4\x95\x13\xe7\x6d\x96\x2e\xf8\x77\x62\x5e\xc6\xb0\xdc\x89\xad\xe2\x96\xe1\x0b\x7b\x75\xc4\xaa\x65\x59\xb2\xdf\x7e\x63\xea\x75\x09\x9e\xe7\xb6\xa8\x78\xae\xf9\x57\x76\x4f\x01\x02\x66\x92\x17\xf7\xfb\xc8\x88\x80\xa0\x20\x09\x26\x33\x24\x4d\x43\x6f\xd9\x85\x12\xc9\xf9\xea\xc9\xe2\x28\xdb\xc7\xf8\x53\xcd\x27\xf2\x99\x5c\x56\x1d\x36\x71\x70\x19\xbb\x21\x20\xe7\x75\xb6\x9c\xf3\x4a\x24\x59\xc3\x53\xc1\xcf\x4a\x8e\x6f\x71\x04\xac\xd0\xd4\x79\x52\x40\x54\x6f\xbe\xbb\xfc\xe1\x7b\x00\x07\xf4\xb1\xe5\x83\x27\xd9\xac\x28\xf3\x1f\x61\x4d\xb7\x49\xc9\xab\xa9\x98\xb1\xa3\xa3\x23\x76\xc0\xbe\x66\x51\xc4\x46\x1e\xc0\xd5\xc1\x75\x52\xc1\xc3\xbf\xa7\xe5\x92\xf7\x82\xdc\xe9\xb2\x69\x60\x60\x69\xfd\xb1\xe7\x15\xbe\x74\x8c\x30\x49\x85\x68\x80\x39\xb0\x8c\xbd\x8c\x30\xa2\x1d\x94\x70\xd4\x99\x33\x84\x57\xee\x11\x43\x2a\xd0\xb8\x2c\x05\x92\x91\xd2\x77\x68\xcd\x81\x2f\x5c\xdb\xba\x4b\x2a\xc0\xbc\x91\xdd\x9e\xa2\xb4\xe3\x88\xcf\x17\xe2\x29\xd8\x53\xd5\x7b\x59\x53\x2f\xa2\x8e\x8d\x2c\x78\x03\x46\x3c\x97\xcc\x9c\x90\x0d\xab\x80\x92\xca\xb7\x5d\xc6\x4b\x6b\x39\xd4\x06\x52\x64\x11\x84\xcf\x2a\x03\x9d\x44\x38\x41\xa7\x3d\xe7\x25\x87\x56\x6d\x44\xa8\xc9\x39\xa4\x30\xe9\x14\xf5\x19\x9d\x34\x9c\x3d\xd5\x4b\x48\x6c\xd4\xc3\x43\x5a\x09\x26\x6a\x69\xf9\x8a\x0a\xda\x3e\xc5\x2a\x2f\x6a\xb1\xaf\x23\x32\x76\x64\xe4\x15\x84\xb0\xdb\xa2\x99\xc7\x8a\xf6\xce\x8e\x52\x88\x31\xc6\xf6\xa1\x10\xb0\x32\x89\xa6\xe6\x26\x4b\x5b\xee\xb0\x3e\x52\xeb\xd4\x73\xdd\xd1\xe5\xf9\xcf\x3f\x9e\x9e\x5c\x9e\xb1\xcb\x93\x6f\xbe\x3f\x63\x4e\xdc\x1f\xc8\xc2\x88\x25\xe9\x10\x64\xee\xb5\xc3\xd2\x92\x37\xc2\x6d\x19\x1b\x50\x57\xf7\xba\xf5\xd9\x3c\x4d\xc0\xce\xef\xc6\x0e\xaf\x4a\x9c\x61\x4e\xbf\x3d\x7f\xff\xd3\x9f\xc3\xa5\x1b\x18\xfc\x56\xc7\x93\xfe\xee\x49\x41\x8c\xaa\x1b\x61\x26\x85\x36\x82\x46\x98\x0a\x30\x11\x5e\x26\xc8\x51\x1c\x51\x4b\x64\xa8\x48\xa8\x02\xd6\x71\x3a\x47\x53\x32\x76\x91\xe0\xd4\x09\xd8\x05\xa5\xa0\x77\xa4\xc3\x36\xc5\xf6\x9f\xcf\xdf\xc5\xd1\xc5\xd9\xf7\x67\xa7\x97\xec\x1f\xd8\xdf\xce\xdf\xff\x60\x05\xe7\x0d\x04\x89\x3c\x9a\xeb\x4c\x88\xc5\x68\x5f\x66\x4f\x8a\x4e\x59\x83\xe5\x80\x70\x93\x19\x04\x5c\x99\x4c\x41\x08\xa6\x68\xfe\x35\x31\x71\x64\xf9\xc1\xfe\xd7\x9a\x67\x6a\xd7\x13\xc0\x1e\x89\x25\x9b\xe5\x93\x3b\x3e\x8c\xc6\x2c\xf3\x35\x78\xfe\x18\x58\x02\x1f\x70\x33\x29\xd3\xea\xce\x4a\x05\x20\x20\x0a\x65\x4b\x47\x1d\x46\xdc\xcf\xde\x4a\x6f\x41\xe4\x27\xa0\xe6\x87\x38\x2f\x1a\xee\x2c\x0b\x5a\x29\xac\xdb\xac\x95\x75\x72\x71\x6a\x34\xa5\x3d\xfc\xeb\x2f\x1e\xdf\xfe\xf5\x9b\xb7\xe3\xc8\xd5\xea\xb7\x67\x83\x90\xa7\x1a\x12\x42\x4c\x0a\x5e\xae\x0b\x15\xf5\xd9\x9d\x2c\xc1\x35\x93\x49\x29\xcf\xb8\x2b\xa7\x70\x5a\x97\xcb\x79\x45\xcf\xef\x9b\x9c\x37\xda\x1d\xbb\x16\xa8\xdc\x95\x42\xd4\xf6\x4e\xb3\xc2\xa0\x2c\x9a\xe3\x43\x91\x1f\x9f\x9d\x9f\xbf\x3f\x1f\x49\x13\xf0\x40\x51\x3b\x87\xfb\x08\x84\x3f\xfc\xd8\x6b\xdc\xf4\x58\x53\x73\x3c\x77\x9a\xe7\xbe\x23\x1e\x3b\x91\xd4\xb8\x26\xe9\xc0\xf4\x80\xb8\x59\x09\xb0\xf6\x63\x0d\x58\x59\xdd\xe4\x2d\xd8\x12\x84\xe6\x3f\x91\x1d\xda\x1c\x97\xb8\x01\x26\x45\x60\x03\xb2\xa5\x1a\x48\xba\x92\xd9\x4c\x0a\xbf\xed\xe7\x3d\xd0\xa1\x27\x81\xb3\x83\x57\x19\x6a\xad\xc2\x9c\x3d\x27\x0e\xf5\x15\x90\x3e\x84\x78\xac\x92\x04\xf4\xd2\xf7\x7c\x5b\x26\x55\x47\xdb\xa8\x0f\xa4\x00\x5a\x90\xcf\x14\x05\x91\xd6\x5e\x8d\x1a\x97\x4b\xc6\xe8\x1f\x01\x8e\x1d\x94\xd7\xd5\xa4\x5d\x8c\x35\x08\x59\xbc\x63\x2c\xa4\xda\xd9\x71\x64\x77\xb5\xe0\x56\x61\x0f\x1e\x66\xb0\xcf\x91\x3b\x56\x97\xd2\xf3\x8e\x27\x2e\x14\x62\x5f\x56\xd0\xea\x46\xc7\xc6\xc8\x9d\xa1\xdb\x60\x71\xc1\x60\xf1\x13\x10\x74\x12\x23\xf9\x31\xa6\x5f\x72\x68\x27\x5d\x02\xa0\xab\xe2\x5a\xcd\x09\xfb\x81\x9f\x1c\xf8\x51\xb3\x92\x3a\x24\xfc\x46\xa2\x5a\xc3\x8e\xc6\x96\x5b\x69\x75\x33\x9e\xe6\x7a\x66\xad\x9e\x1a\xb6\x1d\x8a\x49\x9d\x3f\x11\xba\xa4\x27\xbb\xea\x09\xb6\x0d\x59\xa2\xe7\x76\xdc\xec\x29\x2e\x72\x9b\xf0\x54\xe9\x3d\x5b\x96\x90\x7c\x27\x2d\x04\x39\xac\xcc\x98\x2c\x5c\x59\xad\x6d\x1f\x2b\x1c\x99\x20\xe7\xae\x65\xbb\x30\xde\xb8\xb3\xfa\x41\x86\x49\xbd\x8f\xa5\x81\x9d\x8d\x6d\x30\x4e\x3a\xb6\x7f\x75\x2d\xc5\x23\xb5\x42\x4a\xf1\x03\xaa\xd4\xee\xb2\x6a\x67\xc5\xad\x88\xaf\x64\x01\xe5\x1d\x24\xa7\x05\xea\xe3\x0d\x55\x5a\x40\x3b\x89\xda\xb1\xe9\x57\x51\x40\xca\x22\xd2\xf9\xe2\xda\xd4\x55\xe4\x2f\xc7\xdf\x7d\x60\x6a\x9d\x8d\xd8\x55\x54\xe4\x98\xfa\xe9\xed\x62\x64\xd0\xa3\xeb\x5d\xc9\xc1\x88\xd8\x55\xba\x64\x1d\x79\x47\x32\xb4\xdd\xe8\xcd\xb9\xe3\x25\x8a\x6a\xb1\x84\xe8\x9a\xcc\x8a\xdc\x04\x6d\x6c\xaf\x97\x82\x3a\xac\x88\x6f\x21\x79\x5f\xe7\x60\x9c\xf4\xb2\xbf\x11\x41\x5d\x78\xc5\x11\x12\x22\xca\x5a\x45\xf3\x5e\x8e\x6d\x7c\x38\x02\xd8\xec\x9d\x1d\x68\xf9\x53\xf2\x12\xfd\x54\x72\x0c\x3e\x64\x05\x2c\xa5\x50\xfe\x6a\xc0\xd3\x75\x6b\x34\x48\x7b\x20\x5f\x0a\x8a\x51\x17\x67\x14\x75\x47\x65\xaa\x0a\xf7\x69\xa5\xeb\x56\x85\x3e\xb1\x84\x5d\x56\x5e\x2a\x65\xb7\x3a\xf5\x99\x4a\xfa\x5d\x75\x5b\x7f\x2a\x11\xaf\x2a\xf1\xe9\xd4\x72\xbf\x00\x06\x55\x99\x2b\x28\x78\x98\x7e\x22\xf1\xf6\x10\x12\x73\x55\xb9\x17\x07\xf1\x24\x38\x49\x57\x90\xa4\x14\x51\x8b\xb4\xbc\x69\x8b\xff\xe2\xba\x02\x20\xf7\x0d\xb6\xb9\x87\x81\xfd\x7d\x04\xd3\xda\x83\x97\x8b\xab\x8f\x60\x9b\x7b\x18\xe8\xf8\xc0\x5a\x96\xb8\xcd\x76\x30\x6c\x73\x0f\x43\xee\x02\x8a\x6a\xaa\xe1\xa3\x9f\xab\xbb\xaa\x7e\xa8\xd6\x2f\x2c\x81\x75\x87\x15\xf9\xe7\x27\x5b\x69\xb2\x56\x4e\x4b\xec\x03\xc4\xd2\x79\x21\x46\xec\xcd\xc1\x01\x31\x78\x43\x81\x64\xd4\xcb\x9c\x6f\x64\x22\x35\x72\xb2\xa8\x21\x4b\xe9\x2c\xbd\xa1\x24\x7c\xbc\x72\x3d\x0b\x59\x0a\x71\x56\xad\xb3\xf4\xfa\x75\x8e\x09\x6a\x90\x7f\x74\xb0\x1a\x54\xa7\x2d\xfd\x7f\x62\xdd\x59\x46\x5e\xea\x23\x5b\x8d\xf9\x19\x7a\x48\x99\x75\xfd\x94\x56\xbc\x54\xf2\x0d\xce\x80\x32\x1a\x2a\xe2\xc9\x53\x3a\xbb\x8d\xdd\xf2\xf9\xb6\x0e\xc9\xe3\xda\xcb\x14\x35\xe3\x5d\x5e\x4e\xe9\xd0\x0f\x5e\xd7\x32\x94\x19\x50\x65\xa9\x3d\x47\xeb\x40\xac\x70\xad\x43\x19\xe4\x1d\x7f\x1a\xc8\x21\x17\xcb\x76\x16\x5f\x41\xbf\xca\x12\xe1\xe9\x7a\x45\x76\x68\xb7\x29\x3a\x47\xc4\x35\x54\x4c\x96\x42\xae\x9e\x7b\xac\x60\x42\x76\xe8\x8c\x40\x39\x22\xd1\xfb\x68\xcb\x08\xa9\x1c\x2b\x87\xf7\x85\x58\xaf\xf5\x54\x01\x0e\x89\xd8\xf4\xaf\x10\x70\xdf\xd4\xff\xd0\xf9\x34\x4b\x75\xd4\xb2\x89\xf1\x2a\xa3\x04\x9c\x5d\xf6\x85\x3a\x7a\x81\xa7\xac\xbd\x87\x9f\xbf\xb4\x68\x4b\xc9\x02\x56\x0b\x96\xac\x5b\x44\xc5\x6c\x1e\xd6\x2e\x37\xf6\x2c\x49\xdd\x00\xcc\x14\x16\x5b\xeb\x98\xfb\x96\x5f\xc7\xfa\x32\x01\x1d\xcf\x63\xb5\x56\xe4\xf9\x04\x6d\x7c\xf0\x8c\x36\x96\x65\x66\xdb\x27\xab\xd8\xf1\x8e\xf5\x5e\x92\x4a\xc8\x7d\xbd\x9c\x7b\x79\x60\xed\x08\xb7\x37\x01\x57\xfa\x1d\xc7\x17\x3a\x23\xdb\x50\xc7\xff\x1f\xdc\x86\xbd\xce\x26\x7e\xc7\x54\x3e\x48\xd0\xa2\xfe\xbe\x7e\xe0\xcd\x29\x84\x84\x78\x87\x52\x98\xf7\xb7\x71\xa4\xcf\xe6\x76\xf0\xbc\x65\xef\x8d\x77\x50\xb4\xde\xd7\x1a\x67\x20\x3d\x0c\x46\xab\xfd\x98\xce\x45\x7e\xcb\x01\x68\x87\x62\xce\x7e\xa1\xb8\xd9\xdf\x67\xe7\xfc\x16\xa8\xce\x98\x39\xd1\x6b\x05\x32\x49\xa5\xd3\x87\xb4\x65\x30\x12\xcf\x59\xdd\xa8\xa3\x82\xbc\x33\x0d\x48\x0b\xb3\x59\xdc\x60\x75\x5d\x73\x1a\x2a\x0c\x07\xcb\xc2\xa1\xeb\x02\xa0\xba\x33\x12\xc1\xe7\xbe\xb8\x3e\xdf\x05\xd4\x3f\x0b\xfe\xbb\x58\x40\xbf\x3b\xe3\xa0\xb3\x84\xcb\x3a\xa6\x6d\x8c\xcd\xe8\xfe\x00\xdd\x06\x0a\xa5\x7f\xe0\xc1\x80\x2d\xff\xf7\x2f\x1e\xe8\x32\x2c\x9e\x03\x04\x8e\x01\xb6\xe9\x18\x60\x9b\xe6\xb0\x2e\xbf\xf2\xce\x08\x5c\xd9\x15\x55\x21\xce\xa4\x5c\x9c\x4c\xf8\xa1\x29\x94\x87\xbe\x2c\xe6\x1c\xb4\xc6\xe8\xa8\xd8\x66\x6a\xd0\x90\x66\x3c\xc1\x97\x38\x02\xb2\xa2\x9e\x7b\x8b\xd6\x8d\x51\x6d\x8b\x96\x09\xd6\xc0\xc5\x0f\x30\xc7\x38\x02\xcc\x7d\x4c\xf4\xf7\x17\xd3\xf6\xd7\xd2\x4b\x00\xbb\x08\x30\x9b\x0b\xd8\xf7\xc5\x6f\x57\x01\xfd\xdc\xf2\x8b\xfa\x16\x61\xdb\x58\xad\x7d\x0b\x9c\xd5\xf3\x79\x5a\xe5\xad\x34\x26\xf5\x1c\x5f\x91\x72\x31\xe5\x1e\xb1\x08\x56\x83\x62\x9e\x32\xa6\x09\xc8\xfa\x5f\xf9\xd3\xc8\x78\x3c\x90\x1e\x80\x9d\x8a\xa6\xdc\x3b\x83\x8d\x4c\x13\xe9\xcc\x6a\x9e\x66\xd8\x41\x64\x55\x1f\xb9\x3e\x75\x0f\x0b\x82\x9d\x73\x0d\x8b\x58\x72\x52\x3f\x93\x67\x38\x0e\x73\x97\x79\xcc\xa9\x45\xba\x39\x83\x43\xcc\xbd\x90\x31\xe3\xa5\x1d\xd6\xae\x3d\xc9\x02\x5e\x94\xcd\xd2\x6a\x8a\x39\xa7\x21\xe5\x9e\x01\xf4\xec\xc8\x39\x02\x80\xcd\x52\xa3\x5a\x03\x70\x5e\xb0\x0b\x99\x23\xda\x86\xc2\xee\x0d\x8d\xe1\x28\x4b\xcb\x0b\x60\x32\x9d\x72\xb4\x90\x77\x82\xcf\xe3\x68\x31\x7d\xe0\x13\x2d\xc8\x60\xaa\x44\x12\xc2\xcd\xf3\xc1\x8e\x53\x1e\x77\x7d\x89\x47\x7a\x1a\x22\x2d\x31\x8d\x53\x61\xaf\x5f\x33\xcf\xbb\x1c\x5b\xe7\xa2\x58\x68\x35\x0b\x76\xe1\x5b\xf3\x45\x39\x51\x9e\x27\xa7\x48\x9e\xc8\x5d\xc1\x60\xd7\x17\x33\xf0\x7f\x90\x55\x5d\xd6\x75\x29\x8a\x85\x2e\xfd\xd1\x9e\xf5\xbe\x98\xa6\x48\x69\xd9\xf2\xe6\x64\x8a\x37\x29\x4c\x32\xf2\xfe\x82\xfd\x07\x64\x22\xc7\xbd\x50\x66\x36\xe5\xa2\x10\xa5\xdc\x52\xe8\x21\x46\xec\x7f\xff\xfb\x7f\xbe\x22\x4b\x77\x7c\xb6\x49\x6b\xd6\xe0\x29\x07\xbe\xe5\x9d\xb7\x6c\x30\x28\x9a\xf6\xef\x1a\x95\x10\xa3\x80\xdc\xfc\xbd\xe1\x05\x17\xa2\xa8\xa6\xad\x3d\x23\xb0\x97\xd5\x82\xd1\x15\x72\xab\x6f\x6b\x56\xd5\x02\x15\xc0\xd2\xea\xc9\xb9\x46\x0a\x82\x7f\xe0\xdb\xf7\x9c\x4d\xb1\xbb\xa2\xeb\x98\x66\x55\xb8\xe7\xef\x66\xc1\x99\x30\x63\xac\x1e\x41\xdf\x4f\x7e\x01\xf6\x12\xd8\x0d\xb6\x34\x78\xc0\x88\x24\x2b\xc0\xbe\x3b\x7e\xc5\xa6\x65\x3d\x49\x4b\xb4\x5c\x05\xe4\x5e\x72\x45\x52\x2a\x1b\x50\x49\x22\x86\x63\x06\xdb\x30\x70\x0c\x90\x21\x82\x20\x0c\x3c\xde\xa1\x84\xb9\xb7\x4e\x9a\x6a\x37\xc1\x37\xf6\x8a\x9e\xba\x0a\x14\x99\x54\x58\x52\x3e\x01\xd9\xc8\x38\xa5\xc8\x58\x2a\x87\xd4\xc0\xe4\x5e\xf5\x68\x1b\x6f\x3f\x51\x4b\xe7\x4c\x29\x3c\x58\x77\x0c\x64\x3d\xbd\x4f\x8b\x52\xe6\xb5\x06\x50\x01\xc9\x33\xb5\xe0\xe6\x3b\xc4\x0a\x86\x63\x04\xc6\x93\x3e\x3a\xea\x53\x6f\x2f\xe4\x90\xe8\x3f\x6f\xd9\x39\x27\xae\xb8\xdc\xe4\x28\x70\x04\xd9\x05\x77\x73\x2c\xe7\x9c\xb1\xa3\x0f\x4a\x13\x1c\xea\xdd\x5b\x4c\xd6\xe0\x21\x25\xaa\xa6\x4e\xd0\xc7\xb4\xc6\xe6\x4a\x1d\xba\xd0\x09\x44\x41\x40\xca\x4d\xca\x3b\x3d\x10\xc2\x11\x01\x18\xb5\x90\x7b\xd3\xa6\x5e\x2e\xf6\xd4\x85\x82\xc9\x52\x08\xc8\x87\xe8\x6c\xd7\xab\xf4\x45\x86\x4c\xdb\xd2\xb8\xfe\x80\xd0\xaa\x07\x34\x49\x1a\x0d\x08\xa9\x57\x2b\x20\xa2\xa5\x4d\xee\x5d\x31\x92\x49\x17\xd1\x59\x4c\x6f\xf0\xcd\x12\xd0\x30\x98\x27\x5a\x18\x79\x03\xa5\x07\x83\x7e\xd2\xc2\xe0\x5b\x80\x0e\x24\xa5\x78\x51\x45\xdf\x28\x81\x20\xbb\xa8\x2b\xac\x0f\x6b\xd2\x00\xf0\x50\x23\x87\x8e\xd0\x08\x37\x9f\x30\x66\xe9\xe7\x13\x6f\x9a\x34\x51\x64\x2c\x94\x8c\x32\x3d\x81\xe8\xaf\xff\xf8\x97\xb7\x91\xe7\x2e\x54\x56\x8a\x97\x40\x31\x2d\x57\x99\xa9\x9c\x0c\x98\xee\x88\x2e\xa3\xb7\xf2\xf0\xf6\x9f\xf1\x45\xe7\xa8\xd4\x83\x64\x31\x61\xc5\x17\x60\x10\x1e\xbf\x06\x0d\xa0\xc0\xe9\xa4\xbd\x2d\x03\x7e\x1b\x67\x23\xc3\x21\x0c\x0c\xc3\xdb\xb8\x22\x1b\x49\x03\xb4\xcd\xc5\xd2\x84\x07\xf1\xe6\xed\x3f\x25\x07\xf0\xdf\x1b\x0d\xe1\xcc\x9e\x48\x42\xd8\xf4\x30\x14\x3b\x00\x7f\xe4\x6f\x9c\x71\xe2\x78\xc2\x1d\x62\x58\x2d\x15\xe7\x66\x22\x40\xcb\x45\xf1\x65\xac\x2f\x16\xe2\x6e\x24\xcd\x9f\xba\x69\x84\x3d\x31\x30\xc5\x6b\xca\x78\xca\x22\xbb\x83\x18\x23\xfd\x8a\x83\xd2\x3f\x2a\xd8\x19\x93\x03\x30\x5b\xd1\x5e\xdd\xb6\x43\x30\x4c\xce\x29\x55\x8f\x03\xe4\xcc\x81\xe4\x86\xdc\x99\xf3\xd7\x30\x77\xde\xc9\x9b\x47\x72\x70\xb2\xf6\xc0\x71\xdc\x23\x67\x4e\x9d\xd7\x73\xe7\x9f\xd4\x87\xb9\x53\x09\x56\x8f\xd8\x10\x39\x55\x8c\x1c\x2b\xa0\xc0\x64\x4d\xbd\xd7\xa7\xd9\x23\xd7\xab\x22\x8f\xfb\xe4\x6c\x65\xb3\xcb\x60\x8f\x5c\xa7\x5a\x3a\xd6\xdc\x6d\xb9\xd9\xd0\x90\xf4\x69\x63\xea\xed\x1d\x1c\x5c\x9b\x14\xad\xc3\xf7\x52\x7c\x37\x9e\xb4\xf7\xeb\xb0\xcd\x96\x3b\x92\xc0\x1d\x02\xaa\x90\xb0\x21\x05\x82\x26\x12\x46\x00\xa6\x06\xe0\x12\x89\x44\x13\x22\xe5\x20\x30\xd1\x0c\x5d\x25\x31\x79\xa3\x00\xa3\x1c\xba\x3e\xe2\x6b\x61\x80\x89\x99\xcb\x04\x77\x63\x90\x3d\x18\xc3\xeb\x89\x30\x4e\x62\xea\xf2\xed\xd5\x36\xc6\xbd\xed\xeb\xe4\x9e\xee\x17\x6b\x1c\xe5\x5e\x60\x35\xc9\xa8\xb0\xed\x7b\x9d\x6d\x88\xfc\x69\x4b\x9c\x6e\x6b\x4e\xb7\xdd\x60\xf1\xca\x12\x58\x9b\x4f\x4a\x96\x90\x0d\xd8\x72\x24\xf6\xe0\x0f\xef\x69\xc9\x4b\x7e\x96\xc0\x10\xa4\xba\xe3\x37\x94\xb5\x0c\xa3\x9d\x58\x2c\xf9\x6b\xe5\xc9\x6a\x98\xcc\x6a\xfd\xe4\x93\xd2\xaa\x28\x87\x0c\x19\x6f\x88\x0f\x6c\x4c\xb5\x11\x80\x68\x61\xd7\xc0\x1f\x45\x0a\x31\x20\x0a\x67\xd7\x01\x51\xa2\xda\xa4\x16\x31\xf0\xb9\x97\xd7\x0d\x5d\x79\x2b\x5e\x59\x9c\x54\x92\x04\x97\xd7\xb9\x88\x9c\x4b\x4a\x33\x40\x59\xc1\xa1\x79\x95\x57\xed\xb5\x60\xb1\xc4\x4f\x44\x74\x93\x73\x92\x51\x37\xf3\x3d\x34\x83\xa6\x2e\x2d\x4a\x86\x5d\x0f\x45\x2e\xed\x55\x73\xe6\x34\xee\xb8\x56\x24\x49\x27\xed\xa2\xc4\x82\xce\x7f\x56\x8e\x2c\x8e\xd8\x5f\x1c\xb3\x50\xbc\x11\x9d\x19\xc7\x0f\x17\x50\xe0\x6f\x0f\x0e\x16\x8f\x9d\x1a\xb5\x27\x0c\x8d\xa8\x38\x98\xa7\x8f\x7b\x41\x6c\x47\xbd\xe6\x4e\xbd\xb7\xfa\xca\x62\xc8\x05\x98\x12\xf7\x86\x97\xc9\xfa\x9f\x80\xbc\x00\x71\xb5\x13\x61\x6b\x3f\x0a\xd8\xb5\x89\x36\x91\x92\x0a\xde\x31\x3a\x09\x64\x13\x7e\x3b\xdd\x3f\x19\x12\x99\xf4\x09\x8f\x02\xf2\x9b\xa5\x3a\x2d\x04\xe9\x43\xfe\x3f\x62\x1a\xe8\x46\x81\xdc\x20\x8c\xaa\x19\xb5\x59\xbd\x80\xd4\x91\x84\x2c\x5b\xea\x0a\xeb\x1b\x4e\xa5\x48\x61\xed\x32\x6e\x8d\x42\x7e\xaa\x51\xd2\x33\x9a\x30\x4f\x68\x30\xb3\x07\x92\x46\x2e\x77\x66\xde\x0e\x43\xd1\xba\x3a\xb8\x36\xd3\x77\x31\xd4\xb7\x00\xee\x85\xf0\xd4\x1c\xce\x12\xd8\x46\x9f\x2e\x04\xf7\x4c\xce\xf7\x33\x9f\x99\x7d\x7d\x62\x03\x5b\x71\x2d\xc8\x6e\x41\x3d\x27\x2c\x0f\x98\x6e\x82\xab\xb5\x27\xc7\xfe\xd9\x51\xe0\xe4\xc8\x4d\x66\xf2\x42\x0c\xa7\x69\x41\xdf\x6e\x3e\xf2\xf5\xcf\xd6\xb2\xb2\x6e\xdd\x8c\xaf\xbf\x55\xee\x04\xa7\x50\x6d\xa8\x9b\x28\x0d\xd2\x5c\xc9\xe5\xd0\x9e\x3d\x28\xdf\xde\x26\x7c\x7d\xd9\x55\x6b\x5c\x6e\x2b\x57\xec\xca\x3a\x02\x0a\x6d\xbe\xf5\x31\x50\x14\x5e\x45\x76\xa3\xbd\x9a\x2b\x37\x60\x7a\xdc\xf5\x22\xd0\xea\x3d\x64\x07\xa6\xb7\x8b\xfc\xe8\x19\xad\xa9\x64\x6c\xa0\xd9\xf5\x14\xbc\x95\xaf\x4b\x23\x43\x71\xc5\xf6\x93\x61\xd2\x27\x4d\x06\xce\xa9\xa7\x38\xb5\x75\xf9\x2d\x46\x9b\xcd\xf8\xdc\x7e\x36\xd4\x63\x8e\xfa\x89\xc7\xce\x2a\x08\x41\xab\x92\x8b\x81\x77\xeb\x51\xf8\xcf\x4d\x93\x0c\x0b\xba\x4e\xb3\x29\x13\x5d\xa2\xeb\x98\x58\xc7\x74\x3b\x7b\x19\xbf\xed\xec\x73\x60\xb5\x0b\xea\x67\xa0\x43\xde\xc1\x2d\x16\x86\x57\xa3\xb7\x55\x51\xb7\xdd\x3a\x41\x42\x17\xab\xcc\xaa\x24\x30\xfc\x3c\x61\xf5\xe6\x02\xbf\x58\x3d\xb2\x85\xd7\x2b\xc4\xbb\xb6\xd7\x10\x4e\x67\x3c\xbb\x43\x82\xb6\xac\x5c\x95\x4f\x0c\xf2\x6f\x59\xbf\x81\x34\xdf\x8c\x88\xa4\x12\x6c\x7c\xe5\x8f\x3a\x58\x91\xd4\x08\x46\x62\xdd\xb5\x4f\x0b\x01\x92\x22\x5c\xb6\x56\xb0\x81\x69\x00\xa7\x7f\x2b\xca\x12\xeb\xc4\x9a\x51\x9e\x33\x4b\x0b\x19\x95\xa1\xc0\xf8\x71\xbf\xd4\x28\x59\xc1\x77\x27\x48\xfb\x85\x46\x09\x81\xef\x3e\x84\x53\x66\xa4\xe9\xb4\xe6\x42\x65\xb8\xa2\x48\x74\x54\x9b\x0f\x69\x4a\x8a\x12\x06\x9d\xc3\x24\xf5\xce\xef\x83\x7e\x51\x02\xc3\xeb\x8a\xf8\x83\xe9\x80\x32\xae\x76\x39\x99\x17\x22\x68\x5c\x3c\x59\x34\xfc\x1e\x32\x8a\x6f\xe9\x43\x2f\xe3\xe4\xe5\x9f\xda\x90\x4e\xd0\x89\x02\xf2\xf3\x5b\x48\x58\xe2\x48\xfb\x47\xa7\x12\x2b\x4b\x9a\xc1\xaa\xb5\x63\xa1\x58\x25\x0c\xd6\x4a\x03\xfa\xed\x4c\x48\x1e\xc2\x74\xd6\xb2\x2a\x59\x87\x2f\x95\xa8\x2b\xc3\xea\xa6\xe7\x43\x5a\x88\x24\x49\x8c\x73\xee\x7f\x89\xaf\xc6\x92\x5f\xe2\xcb\x3f\x0c\x82\x53\x72\x2f\xb5\xe1\x5f\xd9\xb0\x1c\x0f\x8d\x4d\x17\x30\xd4\xe0\x4a\x18\xce\x19\x88\xfa\xce\x6d\xd1\x3d\x54\x62\xa1\x3f\x78\xe2\xf8\x9f\x90\x28\xe4\x18\x0e\xb1\x8e\x33\x7a\x56\xbf\xbd\x4d\xbf\x3f\x0e\x0a\xca\x0e\xb3\xe1\x57\xa4\x43\x6c\x05\x72\x23\x07\x8e\x52\xdd\x1b\x6d\xe2\x1e\xfb\xdd\xce\x0e\xee\x9c\x4a\x64\xa1\xd9\x3d\xbb\x4b\xc0\xbd\x1f\x81\xcd\xc1\xd3\xd6\x97\xde\x15\x75\xb5\x3e\xa4\xbc\x41\xd5\xad\xca\x4d\x07\x3e\x66\x0b\x2b\x67\xa3\x7b\x5c\x5b\x1f\x2b\xee\x01\x61\x9b\xbb\x61\xf0\xff\xff\x05\x00\x00\xff\xff\xb6\x36\x59\x97\xa7\x47\x00\x00") func staticJsAppJsBytes() ([]byte, error) { return bindataRead( @@ -358,7 +358,7 @@ func staticJsAppJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/app.js", size: 18130, mode: os.FileMode(420), modTime: time.Unix(1449274360, 0)} + info := bindataFileInfo{name: "static/js/app.js", size: 18343, mode: os.FileMode(420), modTime: time.Unix(1451952596, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -378,7 +378,7 @@ func staticJsBootstrapContextmenuJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/bootstrap-contextmenu.js", size: 5300, mode: os.FileMode(420), modTime: time.Unix(1449270061, 0)} + info := bindataFileInfo{name: "static/js/bootstrap-contextmenu.js", size: 5300, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -398,7 +398,7 @@ func staticJsJqueryJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/jquery.js", size: 84245, mode: os.FileMode(420), modTime: time.Unix(1431980121, 0)} + info := bindataFileInfo{name: "static/js/jquery.js", size: 84245, mode: os.FileMode(420), modTime: time.Unix(1447730003, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/static/index.html b/static/index.html index 339ed06..9354445 100644 --- a/static/index.html +++ b/static/index.html @@ -61,7 +61,8 @@
- + +
Please wait, query is executing...
@@ -197,7 +198,9 @@