diff --git a/pkg/api/api.go b/pkg/api/api.go index 66f9c25..f7373d0 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -125,9 +125,37 @@ func GetTableRows(c *gin.Context) { Offset: offset, SortColumn: c.Request.FormValue("sort_column"), SortOrder: c.Request.FormValue("sort_order"), + Where: c.Request.FormValue("where"), } res, err := DbClient.TableRows(c.Params.ByName("table"), opts) + if err != nil { + c.JSON(400, NewError(err)) + return + } + + countRes, err := DbClient.TableRowsCount(c.Params.ByName("table"), opts) + if err != nil { + c.JSON(400, NewError(err)) + return + } + + numFetch := int64(opts.Limit) + numOffset := int64(opts.Offset) + numRows := countRes.Rows[0][0].(int64) + numPages := numRows / numFetch + + if numPages*numFetch < numRows { + numPages++ + } + + res.Pagination = &client.Pagination{ + Rows: numRows, + Page: (numOffset / numFetch) + 1, + Pages: numPages, + PerPage: numFetch, + } + serveResult(res, err, c) } diff --git a/pkg/api/helpers.go b/pkg/api/helpers.go index 79d457a..60a28ff 100644 --- a/pkg/api/helpers.go +++ b/pkg/api/helpers.go @@ -47,7 +47,7 @@ func parseIntFormValue(c *gin.Context, name string, defValue int) (int, error) { return defValue, fmt.Errorf("%s must be a number", name) } - if num < 1 { + if num < 1 && defValue != 0 { return defValue, fmt.Errorf("%s must be greated than 0", name) } diff --git a/pkg/client/client.go b/pkg/client/client.go index b9961b5..d7ad76b 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -21,6 +21,7 @@ type Client struct { // Struct to hold table rows browsing options type RowsOptions struct { + Where string // Custom filter Offset int // Number of rows to skip Limit int // Number of rows to fetch SortColumn string // Column to sort by @@ -99,6 +100,10 @@ func (client *Client) Table(table string) (*Result, error) { func (client *Client) TableRows(table string, opts RowsOptions) (*Result, error) { sql := fmt.Sprintf(`SELECT * FROM "%s"`, table) + if opts.Where != "" { + sql += fmt.Sprintf(" WHERE %s", opts.Where) + } + if opts.SortColumn != "" { if opts.SortOrder == "" { opts.SortOrder = "ASC" @@ -118,6 +123,16 @@ func (client *Client) TableRows(table string, opts RowsOptions) (*Result, error) return client.query(sql) } +func (client *Client) TableRowsCount(table string, opts RowsOptions) (*Result, error) { + sql := fmt.Sprintf(`SELECT COUNT(1) FROM "%s"`, table) + + if opts.Where != "" { + sql += fmt.Sprintf(" WHERE %s", opts.Where) + } + + return client.query(sql) +} + func (client *Client) TableInfo(table string) (*Result, error) { return client.query(statements.PG_TABLE_INFO, table) } diff --git a/pkg/client/result.go b/pkg/client/result.go index 4c700ee..8c05da4 100644 --- a/pkg/client/result.go +++ b/pkg/client/result.go @@ -11,9 +11,17 @@ import ( type Row []interface{} +type Pagination struct { + Rows int64 `json:"rows_count"` + Page int64 `json:"page"` + Pages int64 `json:"pages_count"` + PerPage int64 `json:"per_page"` +} + type Result struct { - Columns []string `json:"columns"` - Rows []Row `json:"rows"` + Pagination *Pagination `json:"pagination,omitempty"` + Columns []string `json:"columns"` + Rows []Row `json:"rows"` } // Due to big int number limitations in javascript, numbers should be encoded diff --git a/pkg/data/bindata.go b/pkg/data/bindata.go index 9a46ad5..1d0a3b0 100644 --- a/pkg/data/bindata.go +++ b/pkg/data/bindata.go @@ -84,7 +84,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _staticCssAppCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x59\x6d\x6f\xdb\xb6\x13\x7f\x9f\x4f\xa1\x7f\x83\x3f\xba\x15\x95\x6b\x5b\x76\x12\x3b\xd8\x80\x61\x68\xbf\xc4\x30\x04\x94\x78\x8e\x88\xc8\xa2\x26\x51\x49\x9c\x61\xdf\x7d\xc7\x07\x49\x24\x45\xc6\xee\xd0\xea\x4d\x2d\x92\x77\xc7\x7b\xf8\xdd\xef\x94\xeb\x23\x61\x75\xf2\xf7\x55\x92\x50\xd6\x35\x15\x39\xed\x93\x9a\xd7\x70\x7f\xf5\xcf\xd5\xd5\x75\x4d\x9e\xd5\x52\xc3\x3b\x26\x18\xaf\xf7\xc9\x81\xbd\x02\xbd\xc7\x57\x82\x37\xfb\x64\x29\xff\x57\xc1\x41\xec\x93\xf5\x76\xd9\xbc\xca\x9f\x2d\x7b\x2c\x85\x59\x2a\x41\xff\x18\xd6\x72\x52\x3c\x3d\xb6\xbc\xaf\xe9\x3e\xb9\xbe\xdd\x6d\xef\x76\x87\x49\x51\x5f\x29\x5d\x47\xd2\x3e\x32\xd4\x64\x8e\x34\x84\x52\x56\x3f\x8e\xbf\x7d\x91\xa3\xd5\x79\xc5\x8b\x27\x47\x5a\xc5\x2e\x11\x78\xa8\x38\x41\x79\xf2\x16\xb6\xfc\xcd\x4e\x2f\x57\xac\x86\xd4\x7f\x79\xe0\xb5\x48\x3b\xf6\x06\xfb\x64\x95\xcd\xc5\x26\xab\x8d\x7e\x59\xf0\x8a\xb7\x78\x55\x7a\x53\x14\xb0\x1e\x4f\xbe\x8c\x77\x50\x5e\x1a\x0d\x4c\x56\xe6\x58\xdf\x76\xf2\x5c\xc3\x59\x2d\xa0\x0d\x5d\x53\x1a\xd6\xa1\x0d\xe2\x54\xc1\x10\x31\xfb\x5d\x2a\x4e\x0d\xf8\xa1\x54\x3e\xd9\x1f\x58\x8b\xbb\x8a\x92\x55\xd4\xf2\x4f\xaa\xc3\xa8\x9c\xe2\xee\x2f\xf9\x33\xb4\x6a\xe7\x70\x9d\xc3\xe1\xe0\x6d\x5a\x74\x50\x41\x21\x80\x7a\xe9\xd2\x42\x45\x04\x7b\x86\x59\xf0\x95\x88\x49\xe2\xd2\xf3\x44\x4c\xfc\x3e\x87\x03\x6f\xc1\x58\x83\xce\xa9\xd1\xe6\x8f\xc9\xc7\x7b\x47\x2b\xc9\x3b\x5e\xf5\x42\x6b\xe5\x42\xf0\xe3\x3e\x49\x8d\x6f\xcd\x35\xef\x83\x79\x6a\xf6\xbc\x30\xca\x5f\x3a\xfc\xb9\x5c\xfe\x3f\x6c\x79\xc4\x3a\xdf\xb5\x39\x6f\x29\xb4\xc6\xb5\x53\x2c\x3a\x46\x21\x27\x6d\xac\xb4\x50\xbd\x28\xad\x8a\xb2\x22\x33\xd4\x9d\x29\x27\x73\xb7\xf1\xe7\xab\x4c\x4a\x95\x85\x46\x33\xbe\x9a\x5f\x60\x27\x1f\xd7\x92\x85\x60\xa2\x02\xcf\x20\xdb\x8d\x53\xb9\x1b\xeb\x06\xdf\x38\xf5\x91\x65\x6e\x91\x66\xa1\xe2\xb8\x73\xde\x19\xe7\xac\xd6\x6e\xc5\x6c\xb7\xdb\x59\xb9\xe4\xbc\xa2\xc1\xea\x9b\xdf\x64\x31\xa2\x9a\x63\xdf\x36\x02\x22\x41\x5c\xf2\xf2\xdd\xd5\xbb\xf1\xf5\x52\xf6\xbc\x10\x24\xaf\xa0\x4b\x65\x15\xbe\xe3\x4a\x3b\xf1\xec\x68\x3a\x61\x1e\x42\xbb\xca\xcc\x0b\x59\x84\x08\x55\x2f\x28\xab\x17\xfc\x7d\xdd\x8b\x97\x96\x34\xca\x82\x31\xb1\x4d\xb4\xbe\x4b\x8a\xce\x89\xae\x21\xf5\x02\x11\xa9\xc5\x5a\x4b\x29\xc1\x1d\xa4\x83\x39\x70\x9c\x75\x88\x16\x67\xd0\x44\x09\x6d\xe1\xd0\x42\x57\xba\xcd\x87\xd5\x2a\x62\x16\x9a\x5f\x62\x9f\x2d\xca\x00\xba\x72\xf3\x04\x2a\xa9\x71\xfb\x26\x0a\xb1\x5e\xb4\x03\xed\x30\x66\xc9\xb5\xfe\xf1\x39\xb9\xee\xe0\xaf\x1e\xea\x02\x3a\x1d\xff\x21\xed\x65\x9e\x21\xbc\x2f\xfd\x2c\x5a\x47\x9d\x96\xb2\x1a\x81\xee\x48\x64\xfa\xfc\x27\x9c\x18\x23\x9f\x85\xc1\xe2\xcb\x27\x03\x11\x2a\x05\x11\xf8\x12\xcc\x50\x46\xb1\x57\x6d\xe4\x73\xff\xe9\x8b\xbd\xa9\x1d\xf1\x31\xb4\x2d\x06\x3c\xe7\x6f\x76\x3e\x53\xd3\xd3\xbb\xb9\xea\x4a\x9b\x50\x0c\x2d\x77\x30\xef\x46\x3e\xd2\xda\xf3\x52\x0c\x0f\x19\x83\x27\x41\x2c\x1a\xbc\xcb\xf2\xc4\x97\x6f\x98\x89\x83\x4d\xeb\x8d\x1b\xb8\xe1\xf7\x84\x9d\x12\x39\x25\x49\x58\xbb\x29\x4c\xe1\x40\xfa\x4a\xd8\x29\x7c\xfb\xed\xf6\xeb\xed\xb7\xe4\x7f\xec\xd8\xf0\x56\x90\x5a\x5c\x6e\x97\x2c\x27\xa7\xd9\x6f\xbe\xc9\x47\x15\x12\x56\x91\xc9\xb9\xe5\x1c\xc1\x97\x7e\x2e\x5f\xc2\xe7\xbc\xfd\xa3\x5f\x2e\xa6\x36\x7e\x03\x8a\x90\x3c\xcf\x88\x77\xaa\x1f\x2f\xfb\x75\xe3\xba\x0e\x2b\xad\x64\x02\x52\x74\x4d\xa1\x14\xcb\xa4\x75\x6d\xf7\x19\x50\xb0\x6f\x39\x19\x09\x37\xf2\x91\xaf\x71\x5f\xfe\xc4\x44\xaa\x73\xeb\xc8\xb9\x28\x95\xe9\xa8\x9b\x91\x8a\x21\xda\xd2\x80\xa3\x2c\x20\xd5\x54\xc3\x49\xf7\x95\x7c\x42\xee\xb5\x29\xb1\x03\x89\xf3\xad\xa3\x68\xbf\x7b\x5b\x39\x18\x81\xed\x11\x9b\x74\xe5\x3a\xa9\xa3\x0b\x5c\xaa\xcb\x39\x3d\xbd\x3b\x5e\xb8\xc0\x36\xe2\x9c\x87\x64\x43\x3f\x8d\xf7\x49\x56\x37\xbd\x70\x50\x66\xbd\xdd\xfa\xdb\x4b\x46\x29\xd4\xf6\x01\x05\x4e\x0d\xf8\x3c\x6d\xe2\xb4\xd6\x56\x52\xc8\xc5\x2e\x10\x0a\xdd\x4d\x46\x1f\xae\x62\x14\x64\xc0\x4d\x7d\x37\x8d\xb2\x12\x6f\xaf\x29\xa5\x41\x55\x8b\x5c\x04\x28\x4e\xe6\xc9\x0f\x55\xc4\x38\xb4\x78\x65\x11\x18\x6b\x3c\x3e\xa6\xad\x9c\x8a\x4f\x21\x7f\x49\xa8\x74\xe0\xf8\xce\xba\xbe\x68\x49\x8d\x79\x24\xb9\x83\x7d\xdc\xea\x23\xbb\xdd\x2e\x30\x85\xb9\x09\xba\x1a\xb1\x22\xe0\x82\xb4\x69\x19\x6e\x3f\xd9\x84\x7b\xc4\x41\xc8\xb7\x1b\x70\x90\xd1\xbc\x89\x08\xb3\x86\x9d\xc8\x35\x3c\x64\xf0\x14\x6e\x36\x9b\xd9\x58\x73\xc6\xee\xc0\x7c\x75\xb3\xd9\x2d\x33\x08\x88\x1f\x16\x50\xe4\x4c\xe6\x35\x32\x8f\xf6\xf4\xd0\xb4\xfc\x11\xa9\x50\x17\x1a\xe9\x67\x6e\xbe\x28\x73\x06\xe5\x84\x90\xb8\xdf\x0e\xbc\xe8\xb5\x4e\xde\x0b\x29\x56\xf6\xab\x50\x96\xc4\x1d\x12\xf1\xbd\x0c\xd9\x6a\xbb\x89\xfb\xd1\xf4\xbf\xd8\xf1\x3c\xcf\xe3\x2a\x2b\x12\x1a\x85\x6d\x44\x91\x27\xf1\x4a\x03\x80\x84\x29\xfd\x7c\x42\x5b\x6f\x6f\x2e\x00\xab\x33\x9f\x26\x42\x58\xa6\x6d\x59\x1c\xfa\x4a\xb7\xd7\x69\x82\x90\xab\x18\x79\x74\x45\x37\xf5\x20\x97\xab\x9c\xed\xc5\xe6\xfc\x02\x8e\x8d\x38\x25\xc2\x9e\x62\x35\x72\x4c\x24\x67\x50\x25\xda\x7d\x2d\x4a\xed\xc4\x9f\xe0\x19\xea\x9f\x93\x5f\xfd\x93\x67\x4e\x71\x4a\xa3\x87\x62\xd3\xf7\x28\xa8\xb4\x0b\x5f\x79\x63\x4a\x3b\x07\x52\x2d\xd0\x01\x02\x3b\xd8\x39\x2e\x90\x24\x2f\xf4\xc9\x67\xed\x7d\xca\xc9\xb2\x2c\x3a\x98\x5e\xdc\xc9\x27\xe3\x55\x3a\x3e\x43\xa0\x6f\x64\xf2\x71\xb6\xff\x21\xa7\xaf\xf4\xc8\x29\xfc\xf2\x21\x6f\xf9\x4b\x07\x1f\xfe\x44\x11\x36\x80\xcc\x79\x8d\x2b\x94\xc8\xc7\xb3\x41\xb5\x61\x8c\x87\x16\x33\x04\xc1\x75\xba\x1f\x3d\x73\xc6\x76\x7d\xc0\xcd\x87\xb5\x7c\xfc\xc0\x4f\x4c\x29\xa4\x2b\xbb\xbb\xdd\xd0\x5b\x0f\x65\xad\xd1\x6c\x46\x6a\x47\xc1\xd4\xc1\xd0\x8c\x64\x37\x3a\x54\x78\x2b\xc1\x0a\x52\xa5\x18\x82\x47\x4c\xfe\x23\x36\xfa\x0a\xee\xcf\x27\x36\x95\x44\xd9\xe0\xc2\xeb\x40\x5f\xb2\xed\x58\xbb\xaf\xd3\x77\x85\x55\x8c\x4d\x60\x81\xc2\xab\x48\xa7\x05\xa8\x2a\xd6\x74\xac\x9b\xd1\xca\xa6\x45\xfd\x6a\x72\xb1\x32\xa9\xef\xd0\xb3\xda\x5f\x53\x5e\x63\x0a\xbc\xc5\x56\xba\xf0\x82\x19\x7c\xbc\xab\xa9\xd1\xb9\x1e\x90\x64\xf0\x9c\x02\x4c\x63\xb7\x6a\x7c\x72\x44\xd8\x27\xbd\xa4\x42\x05\xe6\xf0\xcc\x4b\x72\x27\xf6\x46\xe2\x48\xc1\xd6\xe7\x05\x31\x38\xf8\x4e\x95\x60\x7f\x3c\xfb\x6c\xcb\x9f\x7d\x55\xf3\xbe\x1c\x6d\x7d\xf0\xaa\x79\x5a\xb4\xbc\x89\x04\x70\x0a\x34\x76\x2c\xcc\xd8\x07\xd5\x37\xdd\x19\x74\xe7\xf0\x23\x33\x22\x8f\x36\x17\xbc\xae\x41\x75\x91\x87\x17\x56\x63\x57\x53\x87\xdf\x70\x98\xa2\xf0\x8a\x19\x72\x1f\xa6\xb4\x21\x5a\x78\xf6\xfb\x4f\xb0\x6d\x04\x46\x4e\xa0\x4c\x3c\x4c\x86\xc5\x68\xb5\x91\x73\x67\x75\xaa\xd5\x77\x7d\x03\xf3\x08\xc9\x08\xc7\xbe\xfe\x77\xe7\x8c\xa2\xe2\x1d\x3c\x84\xdd\x18\xb8\x9b\xb5\x11\xda\x96\xb7\x91\x7d\x8b\x9c\xf3\x27\xd4\xf8\x14\xe4\x3e\x72\xc3\x24\x08\x0b\x44\x08\xcc\x21\xbd\xd5\x64\xc6\xcd\x72\xde\x96\xa7\x09\xc6\x4a\x85\xed\xd0\x2f\x83\x12\xcb\x95\x6e\xcc\xb2\x7e\x0c\xe4\x14\x30\xc0\xb1\x7a\x3b\x72\x21\x49\xc5\xe5\x3c\x25\x69\xbe\x71\xb0\xd1\x33\xc4\x7f\xbd\x75\xdb\xcf\x40\x97\xed\xf6\x53\xcb\x11\xbe\x8a\x1b\x24\xeb\x37\x00\xea\xfa\x93\x88\xdd\x03\x07\x65\xc3\x47\x1f\x42\x59\xdf\x8d\x9f\xcc\x14\xec\x44\x96\x0c\x5c\x85\x56\xdf\xb5\xaa\x59\x94\x50\x35\x7a\x6c\x0c\x93\x16\xff\x78\x51\xc2\x11\x52\x79\x8b\xe6\x92\x30\x77\x65\x7c\xaf\x55\xb3\xab\x81\xa9\x7f\xf9\x94\xa4\x3f\xec\x9f\x84\x5d\x14\xf8\x5b\x01\xc9\xef\x0a\x6b\xd8\x1b\xd1\xe4\x53\x2f\xfc\x58\x4d\x57\xc8\x25\xe0\xe1\xb1\x17\x98\x6a\x9f\x13\xeb\x47\x5a\x80\x81\x78\x1f\x82\x22\x6d\x76\xa0\xcc\x4a\x86\x26\x28\xa9\x24\x45\x01\x19\xea\x6f\x09\x7e\x4f\x3e\x7b\x4e\xfa\xdf\x3b\xf4\x6f\x00\x00\x00\xff\xff\xe6\x37\x12\x67\x88\x1c\x00\x00") +var _staticCssAppCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x59\xeb\x6e\xe3\xb8\x15\xfe\x9f\xa7\x50\xd7\x28\xb6\x1d\x8c\x3c\xb6\x65\x25\x63\x07\x2d\x50\x14\x3b\x2f\x51\x14\x01\x25\x52\x11\x11\x59\x54\x25\x2a\x8e\x53\xf4\xdd\x7b\x78\x11\x45\x52\xa4\xed\x5d\x4c\xf4\x27\x12\xc9\xc3\x73\xfd\xce\xc5\xab\x13\xa2\x6d\xf2\xdf\x87\x24\xc1\x74\xe8\x1a\x74\x39\x26\x2d\x6b\xc9\xf3\xc3\xff\x1e\x1e\x56\x2d\x7a\x97\x4b\x1d\x1b\x28\xa7\xac\x3d\x26\x15\xfd\x20\xf8\x19\x3e\x71\xd6\x1d\x93\x8d\xf8\xaf\x21\x15\x3f\x26\xbb\x7c\xd3\x7d\x88\xd7\x9e\xbe\xd6\x5c\x2f\xd5\x44\xbd\x4c\x6b\x05\x2a\xdf\x5e\x7b\x36\xb6\xf8\x98\xac\x9e\x0e\xf9\xf7\x43\x35\x5f\x34\x36\xf2\xae\x13\xea\x5f\x29\xdc\xa4\x8f\x74\x08\x63\xda\xbe\x9a\x77\x9f\xa4\xe1\xba\x68\x58\xf9\xe6\x50\x6b\xe8\x3d\x04\xab\x86\x21\xa0\x27\xa4\xb0\xe9\xef\x0f\x6a\xb9\xa1\x2d\x49\xfd\x8f\x15\x6b\x79\x3a\xd0\x4f\x72\x4c\xb6\xd9\x92\x6c\xb2\xdd\xab\x8f\x25\x6b\x58\x0f\xa2\xe2\xc7\xb2\x24\x3b\x73\xf2\x6c\x64\x90\x5a\x32\x0c\x26\x5b\x7d\x6c\xec\x07\x71\xae\x63\xb4\xe5\xa4\x0f\x89\x29\x18\x1b\x80\x07\x7e\x69\xc8\x64\x31\xfb\x5b\xca\x2f\x1d\xf1\x4d\x29\x75\x72\xac\x68\x0f\xbb\xca\x9a\x36\xd8\xd2\x4f\xaa\xcc\x28\x95\xe2\xee\xaf\xd9\x3b\xe9\xe5\xce\x49\x9c\xaa\xaa\xbc\x4d\xeb\x81\x34\xa4\xe4\x04\x7b\xee\xd2\x93\x06\x71\xfa\x4e\x16\xc6\x97\x24\x66\x8a\x1b\x4f\x13\x31\xf2\xc7\x82\x54\xac\x27\x9a\x1b\x50\x4e\x0b\x3c\xff\x9a\xfc\xfa\xec\xdc\x8a\x8a\x81\x35\x23\x57\xb7\x32\xce\xd9\xe9\x98\xa4\x5a\xb7\x5a\xcc\xe7\xa0\x9f\xea\x3d\x67\x8a\xd9\x79\x80\xd7\xcd\xe6\xcf\x61\xce\x23\xdc\xf9\xaa\x2d\x58\x8f\x49\xaf\x55\x3b\xdb\x62\xa0\x98\x14\xa8\x8f\x85\x16\x5c\xcf\x6b\x2b\xa2\x2c\xcb\x4c\x71\xa7\xc3\x49\xcb\x66\x5e\x3f\x84\x53\x4a\x2f\xd4\x37\xc3\xa7\xa5\x00\x07\xf1\xb8\x9c\xac\x39\xe5\x0d\xf1\x18\xb2\xd5\x38\x87\xbb\xe6\x6e\xd2\x8d\x13\x1f\x59\xe6\x06\x69\x16\x0a\x8e\xef\xce\x37\xad\x9c\xed\xce\x8d\x98\x3c\xcf\x17\xe1\x52\xb0\x06\x07\xa3\x6f\x29\xc9\xda\xa0\x9a\xc3\x5f\x1e\x01\x91\x20\x2e\x79\xfe\xee\xde\xbb\xf7\xef\xc5\xf4\x7d\xcd\x51\xd1\x90\x21\x15\x51\x78\x45\x95\xb6\xe3\xd9\xd6\x74\xcc\x3c\x99\x76\x9b\xe9\x0f\x22\x08\x01\xaa\xce\x40\x6b\xe4\xec\xfa\xdd\xeb\x73\x8f\x3a\xc9\x81\x71\x6c\x6d\xad\xdf\x45\x45\xf9\xc4\xd0\xa1\x76\x0d\x88\xd4\x43\xac\xa5\x18\xc1\x0e\x34\x90\x25\x70\xdc\x54\x88\x22\xa7\xd1\x44\x12\xed\x49\xd5\x93\xa1\x76\x93\x0f\x6d\xa5\xc5\x2c\x34\xbf\x87\x3f\x9b\x94\x06\x74\xa9\xe6\x19\x54\x52\xad\xf6\x7d\x14\x62\x3d\x6b\x07\xd2\x61\x8c\x93\x95\x7a\xf9\x9a\xac\x06\xf2\x9f\x91\xb4\x25\x19\x94\xfd\x27\xb7\x17\x7e\x06\xf0\xbe\xf1\xbd\x68\x17\x55\x5a\x4a\x5b\x00\xba\x13\x12\xee\xf3\x87\x70\xc2\x58\x3e\x0b\x83\xc5\xb7\x2f\x1a\x22\xa4\x0b\x02\xf0\x25\xe0\xa1\x14\x43\xae\xda\x8b\xe7\xf9\xcb\x37\x7b\x53\x6f\xf0\x31\xb4\x2d\x06\x3c\xb7\x25\xbb\xed\xa9\xe9\xe5\xaa\xaf\xba\xd4\x66\x14\x03\xce\x1d\xcc\x7b\x14\x8f\xe0\xf6\x36\x15\x5d\x87\x18\xe3\x09\x10\x8b\x1a\xef\x3e\x3f\xf1\xe9\xeb\xca\xc4\xc1\xa6\xdd\xde\x35\xdc\xf4\x3e\x63\xa7\x40\x4e\x51\x24\xec\x5c\x17\xc6\xa4\x42\x63\xc3\x6d\x17\x7e\xfa\xf1\xf4\xdb\xd3\x8f\xe4\x4f\xf4\xd4\xb1\x9e\xa3\x96\xdf\xcf\x97\x08\x27\x27\xd9\xef\x7f\x88\x47\x06\x12\x44\x91\xf6\xb9\xcd\x12\xc1\x37\xbe\x2f\xdf\x53\xcf\x79\xfb\x8d\x5e\xee\x2e\x6d\xfc\x04\x14\x29\xf2\x3c\x26\xae\x44\x3f\x08\xfb\xdb\xde\x55\x1d\x44\x5a\x4d\x39\x49\x41\x35\xa5\xbc\x58\x38\xad\xcb\xbb\x5f\x01\x05\xf3\x96\xe3\x91\xe4\x51\x3c\xe2\x33\xec\x2b\xde\x28\x4f\x95\x6f\x9d\x18\xe3\xb5\x64\x1d\xee\xa6\xa8\xa1\x80\xb6\x38\xa0\x28\x0b\x48\x55\xa9\xe1\xb8\xfb\x56\x3c\x21\xf5\xda\x25\xb1\x03\x89\xcb\xad\x86\xb4\x9f\xbd\x2d\x1f\x8c\xc0\xb6\xc1\x26\x15\xb9\x8e\xeb\xa8\x00\x17\xd7\x15\x0c\x5f\xae\xb6\x17\x2e\xb0\x19\x9c\xf3\x90\x6c\xca\xa7\xf1\x3c\x49\xdb\x6e\xe4\x0e\xca\xec\xf2\xdc\xdf\x5e\x53\x8c\x49\x6b\x1f\x90\xe0\xd4\x11\xbf\x4e\x9b\x6b\x5a\x6b\x2b\x2a\xc5\xe2\x10\x30\x85\xca\x26\x46\x87\xdb\x58\x09\x32\xe1\xa6\x92\x4d\xa1\xac\xc0\xdb\x15\xc6\x38\x78\xd5\xba\xe0\x81\x12\x27\xf3\xe8\x87\x22\xc2\x34\x2d\x5e\x58\x04\xda\x1a\xaf\x1e\x53\x5c\xce\xc1\x27\x91\xbf\x46\x58\x28\xd0\x7c\xb3\xc4\xe7\x3d\x6a\xc1\x8f\x44\xed\x60\x1f\xb7\xf2\xc8\xe1\x70\x08\x74\x61\xae\x83\x6e\x0d\x56\x04\x54\x90\x76\x3d\x85\xed\x17\xbb\xe0\x36\x38\x48\x8a\x7c\x4f\x1c\x64\xd4\x5f\x22\xc4\xac\x66\x27\x22\x86\x87\x0c\xde\x85\xfb\xfd\x7e\xd1\xd6\xdc\xe0\x3b\xd0\x5f\x3d\xee\x0f\x9b\x8c\x04\xc8\x4f\x0b\x01\x92\x2b\x28\x3c\xfa\xcb\x4b\xd7\xb3\x57\xa8\x84\x86\x50\x47\xbf\xd0\xf2\x5d\x8e\x33\xdd\x8d\x10\x8a\xab\xad\x62\xe5\xa8\xee\x64\x23\x17\x64\x45\xba\x0a\x39\x49\x5c\x1f\x11\xd5\x0b\x8b\x6d\xf3\x7d\x5c\x8d\x3a\xfd\xc5\x8e\x17\x45\x11\xbf\xb2\x41\xa1\x4e\xd8\x06\x14\x71\x12\x44\x9a\xf0\x23\x5c\xd1\x2f\x1b\xb4\x5d\xfe\x78\x07\x56\xdd\x98\x4c\x84\xa0\xac\x43\x70\x62\xae\x0a\x17\x16\x0e\x33\xe8\xf5\x6c\x3e\xf6\x2c\xc0\x29\xde\x96\x04\xa0\xcd\x43\x2e\x2b\xb6\x09\x59\xda\x5f\xae\xcb\x8a\x4a\x60\x9b\x9d\xa8\x2c\xd1\xd6\xf0\xbf\x74\xfb\x96\x43\x1f\xa7\xcd\xea\xd6\xf5\xfe\x89\x8a\x36\x90\xc9\x07\x7b\xe7\xe4\xe6\xc1\x8a\x3b\x74\xd6\x64\xbc\x68\x5a\x0b\x51\xf6\xd3\xbc\x1b\x55\x3b\x2f\xaa\x76\x0b\xd3\x4f\x0d\xf1\x14\x68\x12\x11\xa3\x2c\xca\x2a\x63\xae\x31\xdc\x5a\x74\xb6\x73\x70\xb6\x75\x57\xbc\xbb\x41\xa0\x79\x33\x51\x3d\x17\xb9\x71\xee\xd6\x20\xc9\x78\x52\x9a\x9c\x38\xca\x37\x57\x15\xaf\xce\xa9\x57\xe7\xdc\xe6\xea\xb9\x39\xb1\x7b\x92\x4e\xad\xd1\x26\x22\x64\x50\x13\x41\xc9\xef\x76\x9e\x3f\x9e\x8b\xc2\x61\xe5\xa9\xfc\x46\x8a\xfc\x7e\x93\x35\x8d\x93\x21\x6d\xdd\xb0\xae\x38\x2d\xb8\xeb\xee\x08\xc3\x69\x50\x20\x02\x38\xd8\x8d\x07\xbc\xd6\x4b\xf6\xbb\x40\x38\xdc\x15\x55\x82\x17\xc8\x7d\x20\xe4\x10\x0b\x90\x9b\xcd\x88\x3e\xbf\x26\xa7\x8e\x5f\x12\x6e\x8f\xf1\x54\xb0\xce\x2a\x9a\xae\xe2\xfd\xb1\xe5\xb5\x4a\x23\x7f\x21\xef\xa4\xfd\x6b\xf2\x77\xff\xe4\x8d\x53\x0c\xe3\xe8\xa1\xd8\xf8\xd1\x10\xaa\x6d\x6f\x93\xc8\x3d\x27\xde\x28\x32\x23\x72\x20\x07\x47\x05\x02\x93\x43\x33\xef\x9d\x37\xcb\xce\xb2\x2c\x0a\x7d\x77\xb7\x32\x33\xf3\x32\x21\xbf\x93\x40\xe1\x9c\x89\xc7\xd9\xfe\x2f\x31\x7e\x4a\x4f\x0c\x93\xbf\xfd\x52\xf4\xec\x3c\x90\x5f\xfe\x0d\x24\xec\x0a\x6a\xd9\xd8\xb9\x44\x91\x78\x3c\x1e\x64\x1f\x02\xf6\x50\x64\x26\x23\xb8\x4a\xf7\xad\xa7\xcf\xd8\xaa\x0f\xa8\xb9\xda\x89\xc7\x37\xfc\xdc\x2a\x86\xee\xca\xbe\x3f\xed\xf1\x93\x57\x66\x5a\xb3\xa9\x45\x57\x6f\x08\x63\xa7\x88\xcc\x50\xf6\xa8\x4c\x05\x52\x71\x5a\xa2\x26\x05\x13\xbc\x82\xf3\x9f\xa0\xd3\x69\xc8\xf3\x6d\xc7\xc6\x62\x52\xa0\x2b\xa3\x8f\xa9\x7f\xcb\x72\x03\x97\x1f\xf3\x60\x75\x1b\x6b\xa7\xa0\x98\x20\x1f\x3c\x9d\x17\x48\xd3\xd0\x6e\xa0\x83\x84\x69\xbb\xaf\xee\x7a\xb8\xff\x41\x8c\x6e\x2c\x4f\x1a\x07\xd0\xac\xd2\xd7\xec\xd7\xe0\x02\x9f\xb1\x95\x21\xbc\xa0\x27\x3f\x9e\x68\x72\x76\xd8\x8e\x4d\xe3\x68\x4e\x96\x8c\x9a\x6f\x59\xf9\x8b\x19\xc9\x31\x19\x45\x2f\x58\x82\x0f\x2f\xb4\x24\x76\x42\x73\x80\x1c\x2a\x50\xfb\x7b\x46\x0c\xa6\x92\x39\x12\xec\x5f\x0f\xbe\xda\xf4\x17\x3f\x2b\x78\xa3\xf3\xdc\x07\xaf\x96\xa5\x65\xcf\xba\x88\x01\x8d\xa1\xd7\x95\x90\xdc\x2e\x6f\xa7\xba\xcf\xf7\xb1\xf5\x99\x02\x56\x59\x38\xbf\x38\x94\xdf\x75\x2a\x56\xbd\xce\xd3\xde\x6f\x5f\x92\xf4\xa7\xfd\x09\xab\x3f\xac\xa0\x33\x81\xb8\x7c\x91\xfd\x91\x3b\x6a\x3c\x38\x6d\xb0\x9e\x84\x1a\xcb\x40\xf5\xd9\x12\xd9\x2d\xbc\x9c\x69\x0b\xd5\xab\x3c\xfc\x99\xc2\xff\xe4\x03\xe2\xc0\x2d\xb7\xcd\xe4\x22\x94\xcb\x6f\x8e\xf9\x83\xed\x41\x60\xb2\x48\x30\xe5\x2f\x33\x63\xb1\xe9\x89\x5b\xc2\x28\xb9\x7e\xd7\x4f\x1d\x5e\xed\x62\x92\x8e\x7f\xff\xd5\x71\x52\xd9\xb0\x81\xbc\x84\xd5\x18\x90\xcd\xda\x48\xfa\x9e\xf5\x91\x7d\xeb\x82\xb1\x37\xb8\xf1\x2d\xd8\xe3\x8a\x0d\x33\x21\x80\x01\xce\x21\x52\x06\xbb\xa6\x7c\xdc\x2c\xdb\xaf\x79\x50\x65\xb9\x82\xa9\x59\x83\x14\xeb\xad\xf2\x7e\x81\x12\x1a\x58\x4b\x32\x25\x1d\xf9\xd5\xf4\x3c\x62\xe2\x62\x3a\x1e\xa5\x60\x7d\xcf\x64\xff\x5d\x1e\x2c\x7a\x9c\x24\xdb\x8a\x49\x6d\x13\x67\x48\xa0\x54\x20\x75\xa9\xc9\xb7\x9d\xe9\xa7\xcb\xa6\xd9\x3e\xc2\x74\x1c\xcc\x2f\x23\x12\x5c\x23\x4b\x1a\x94\x43\xab\x57\xb9\xea\xd6\x35\x69\x3a\xd5\x46\x85\x4b\x33\xff\x78\x59\x93\x13\xb1\xaa\xce\x1b\x66\x1e\xea\xf8\x5e\x2b\x66\xb7\xd3\x40\xe6\xa7\xc3\x0c\x10\xfc\x47\x49\x92\x7f\x4a\xac\xa1\x9f\x48\x0d\x19\xd4\xc2\xcf\xbd\xe9\x01\x2a\x26\xf2\xf2\x3a\x72\x70\xb5\xaf\x89\xf5\x92\x96\x44\x27\x32\x1f\x82\x22\xc5\xc4\x34\x1a\x91\x34\x54\x19\x96\x8a\xd2\x2f\x40\x43\xfe\x64\xbc\xc0\xf7\x5b\xe7\x84\xfe\xbd\x43\xff\x0f\x00\x00\xff\xff\xc3\x57\x42\x93\x6f\x22\x00\x00") func staticCssAppCssBytes() ([]byte, error) { return bindataRead( @@ -99,7 +99,7 @@ func staticCssAppCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/app.css", size: 7304, mode: os.FileMode(420), modTime: time.Unix(1452220753, 0)} + info := bindataFileInfo{name: "static/css/app.css", size: 8815, mode: os.FileMode(420), modTime: time.Unix(1452280798, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -284,7 +284,7 @@ func staticImgIconPng() (*asset, error) { return a, nil } -var _staticIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x5a\xdb\x72\xdb\x36\x13\xbe\xcf\x53\xe0\xe7\x7f\x5b\x8a\x93\xa4\x9d\xa9\x3d\x12\xdb\xd4\xf6\x4c\xd2\x71\x1a\x27\x4a\x32\xe9\x95\x06\x22\x21\x11\x36\x78\x08\x00\x4a\x76\x9e\xbe\xbb\x00\x28\x92\xa2\x28\x53\xb6\xd5\xfa\x22\x16\x4e\xfb\x61\xcf\x0b\x80\x19\xff\xef\xfc\xc3\xd9\xe7\xbf\xaf\x2e\x48\xa2\x53\x11\xbe\x18\xe3\x0f\x11\x34\x5b\x4e\x3c\x96\x79\xe4\x36\x15\xa7\xad\x5e\xa6\x26\x5e\xa2\x75\x71\x1a\x04\xeb\xf5\x7a\xb4\x7e\x3d\xca\xe5\x32\x78\x79\x72\x72\x12\xdc\x22\xad\x87\x18\x8c\xc6\xe1\x0b\x42\xc6\x9a\x6b\xc1\xc2\x62\xb9\x66\xf3\x71\x60\x3b\x38\x9c\x32\x4d\x49\x94\x50\xa9\x98\x9e\x78\xa5\x5e\xf8\xbf\x7a\xf5\x04\xa2\xfb\xec\x7b\xc9\x57\x13\xef\x9b\xff\xe5\x8d\x7f\x96\xa7\x05\xd5\x7c\x2e\x98\x47\xa2\x3c\xd3\x2c\x03\xaa\x77\x17\x13\x16\x2f\x59\x0f\xdd\x99\x5d\xe6\x5f\x02\xeb\x25\x5d\x36\x09\x41\x0e\x43\x23\x78\x76\x43\x24\x13\x13\x4f\xe9\x3b\xc1\x54\xc2\x98\xf6\x48\x22\xd9\x62\xe2\x05\x4a\xc3\x86\x51\x10\x29\x15\xcc\xf3\x5c\x2b\x2d\x69\x31\x82\x9e\x17\x8e\x03\x24\x3c\x08\x61\x01\x5b\xfb\x74\xcd\x54\x9e\xb2\x07\x83\xd0\x62\x1f\x03\x1c\xc4\xf3\x88\xbe\x2b\x18\xb4\x53\x10\x38\xb8\xf5\xed\x58\x1b\x89\xa7\xcb\x00\xc7\x47\xf0\xc7\x23\x81\x41\x51\x91\xe4\x85\x76\xc4\x9a\xdd\xea\xe0\x9a\xae\xa8\x1d\xf5\x88\x92\x51\x4d\x7e\xad\x82\xeb\xef\x25\x93\x77\xa3\x6b\xc3\x89\x5d\xf4\x00\x14\x1a\xb1\x27\x80\xf0\x8b\xa5\xfa\x2e\x1e\x0b\xb4\x31\xb0\x6f\x7c\xe4\x56\xa7\x2c\x2b\x1f\xcd\x1d\x98\xab\x0d\x31\x0e\x6c\x58\x8c\xe7\x79\x7c\x67\x10\x63\xbe\x22\x3c\x9e\x78\x29\xe5\xd6\x27\x1b\x63\x19\x5d\xb9\x21\x18\x2c\x45\xd5\x34\x46\x37\x0b\x34\x85\x78\x98\x39\xaf\xf6\xc2\x4f\xf9\x5a\xa1\x67\xf4\x2d\x04\x01\xcb\x48\x97\x12\x02\x66\x5a\x35\xf7\xad\xe7\x59\xcc\x6e\x19\x08\xf0\xce\x36\xf6\xad\x05\x26\x50\x7f\x3c\xd3\xb0\xfe\xac\xee\xec\xa3\x31\x5e\x04\x51\x29\xa8\x82\x84\xa2\x98\x60\x91\x66\x31\x30\xf7\xf1\x92\x7c\xc4\xb9\x7d\xc4\x09\x57\x3a\x07\xf2\xf0\xad\x6d\xec\x5b\x4b\x23\xcd\x57\x5c\xc3\xe2\x37\xae\x75\x8f\x28\x19\x70\xc2\x21\x72\x50\x12\xd7\x6e\x52\x8c\x03\xb4\x46\xd5\xa1\x2e\xbe\xfe\xef\x19\x10\x16\x73\xdd\xc4\xa8\xe4\x9b\xeb\x8c\xc0\x3f\x3f\x66\x0b\x5a\x0a\x6d\xda\x2a\x05\xef\xe0\xd5\x8a\x05\x25\x0b\xea\x2f\x45\x3e\x67\xe8\x34\x3c\x24\x17\x80\x45\x9a\x3c\x50\xe7\x22\x01\xf8\xc8\x96\xb7\x28\x1e\xb3\x39\x95\xb5\xc7\xe0\x84\x43\x36\x82\x29\x5f\x80\xaa\xbc\x86\xd8\x8d\x15\x6b\xf0\xfd\xc6\xd4\x16\x39\x66\x6d\xd2\x70\xd1\xcd\xa2\x2d\xde\x63\x0a\x3b\x51\x55\xb1\x3f\x56\x05\xcd\xaa\x15\x51\x29\x25\xa6\xe3\xcd\x1a\xc3\xb5\x1b\x9d\x35\x29\x91\x6a\x6b\x9f\x26\x10\x28\x5b\x42\x8e\xb4\xf4\xae\x33\xb3\x12\x42\xfa\x43\x56\x27\xde\x27\x3b\x4c\xec\x30\xb1\x82\x6f\x73\x5b\x01\x19\x66\xbb\xdb\x36\x94\xbc\x89\xc1\xda\x4d\x4c\x5c\x37\x83\xb2\x9e\x57\x50\x80\x58\x16\x75\x97\xb4\x10\xdb\x9d\x6d\x63\xf9\x3c\x5b\xe4\x32\xa5\xd6\x0d\x1f\x68\x32\x2f\xfc\x8c\x58\xe4\x5d\x8d\xb5\x4b\xa8\x2d\x5d\x83\x9f\x4f\xf9\x0f\x76\xea\xb4\x5e\x07\x86\xce\x35\x15\x33\x05\x73\x1b\x2b\xb5\xe3\xa8\x22\x3f\x07\x63\x12\xb5\x13\x03\xed\x3c\x04\xc2\xa4\x9c\x1e\x0c\x93\x97\x86\x80\x5c\x28\x0d\x85\x10\x72\x0a\x91\x90\x1a\xbb\x40\x38\x0a\xa1\x5a\x62\xf2\xec\x01\x1a\x66\xc0\x5d\xf1\x88\x29\xbe\x1d\x8c\x38\xca\xb3\xa2\xdc\x17\x83\x05\x93\x5d\x9b\xda\x40\x81\x34\x97\xba\x9c\x19\x76\xcd\xd8\xc0\xa1\x26\x59\xa8\x4e\xac\xe2\xd6\xae\x76\xcd\x4b\xad\x31\x37\x99\x10\x2a\xa1\xb1\xa2\xa2\xc4\xb8\x29\x33\x9b\x7a\x3b\x69\x4b\xa5\xe6\xa7\x90\xa0\x51\x9c\x0e\x06\xa2\xb3\xdb\x42\x60\xe2\xa8\x76\xb8\xb0\xfd\xfd\xbb\xb8\x1c\xd9\xdd\xa5\xd2\x86\x51\xc3\xac\x90\xf9\x12\x22\x18\x24\xbd\x12\x0c\x92\x07\x59\x53\xae\x7f\x22\x66\x92\x70\x45\xa0\x68\x45\xa5\xe6\xd9\x72\x34\x1a\x75\x34\xd6\xd6\x59\x51\x0a\xe1\x4b\xbe\x4c\xf4\x96\xda\xf6\x88\x76\xad\xf2\x5a\xae\x3f\xa7\x1f\xfe\x3a\x54\x9c\x3d\xd8\x91\x5a\x6d\xa0\xcf\xa6\x5f\x9f\x10\x19\xce\xef\x1b\xe4\x6f\xef\x2f\x0f\x36\x41\xc7\xf3\xda\x03\xf7\xe4\x38\xe4\x20\x2f\xf5\x81\x41\x60\xc2\xd5\xe5\x7b\x05\x5c\x29\xaf\x95\x2c\x31\x1e\x4c\xe3\x80\x48\x75\x8d\xe6\x19\xac\x2e\xda\xb3\x35\xe4\x98\x7c\xdd\x3c\x90\x55\x55\x6c\xb3\xc6\x87\x8b\x0b\xfa\x56\x1d\x67\xe3\xe4\x65\x75\xcf\x81\xd6\xe6\x7c\x80\xb9\x17\x12\x10\x96\x25\x6c\x6e\x58\xc7\x8e\x9f\xe4\x92\xff\x80\x03\x1c\x15\xde\x36\x0f\x66\xf1\x6e\x25\xe1\xd1\xd3\x8f\xa0\x6e\xee\xca\x16\xb5\x3d\xfd\xa5\xcc\xcb\x82\x6c\x5a\x68\xdb\x86\x00\x6e\x6c\xcd\x75\x94\x6c\x27\x0b\xeb\x31\x5b\xee\x83\xc9\x1b\xca\x5b\x94\xb0\x94\xf5\x9d\x6b\x3a\x62\xb8\xe5\xe1\xd4\xfc\x8e\x03\x0b\x76\xc0\x76\x9a\x66\x31\x95\x71\xef\x41\xca\x9c\xee\x58\x77\xdf\x8a\x0e\x0e\xbb\xb6\xb5\x6b\xef\xdd\xde\x5b\xf7\x13\x19\x34\xbb\x3d\x9e\x60\x44\xb3\xfa\xec\xb5\x87\x31\x77\x77\xc9\x36\xa8\x00\x23\xf9\x2f\x5f\x75\xb3\x90\xa0\x73\x26\xc2\x0b\xb4\x39\x51\x4c\xae\xe0\xe7\xcb\xa7\x4b\xa2\x9c\x5a\xed\xf4\xbe\x24\x80\x4e\xd3\x76\x3e\xbc\x39\x80\x63\x76\x54\x57\x4a\x18\xcb\x68\x0a\x44\xd8\xec\xa0\x16\x15\x4a\xc2\x44\xe1\xcf\x45\x1e\xdd\x78\x21\x32\x63\x8f\x19\xa7\xa4\xc8\x95\xc6\xcc\x7c\x1a\x04\x25\xf0\x7a\x5a\xc0\xea\x75\x2e\xe3\xdf\x13\x98\x38\x2d\x72\xa9\x83\x78\xfe\x9b\x52\x22\xcd\x63\x36\xc1\x3f\xe3\xa0\x78\x50\x9e\xb9\xd7\x34\xce\xf6\x83\x8d\x43\xe0\x2a\x78\x03\x25\xee\xa6\x53\x3f\x8d\x86\xb7\x0c\xf5\x9a\x38\x1d\xfa\x66\xd6\x0b\xff\x70\xd4\x3b\x0d\xb2\xc3\xd2\x27\x5d\xed\xda\x8b\xd0\x20\x43\x35\x78\x85\xf3\x8b\xa1\x1b\xa6\xc5\x83\x7d\x74\x90\xf0\x6f\xc1\xba\x8f\x10\xbc\xeb\xac\x28\x6e\xb1\x9c\xa1\xd7\xf4\x78\xee\xc0\xea\x74\x1c\x79\xbf\x80\x6f\x63\x98\x1c\x43\x66\x8c\x9b\xe7\x28\xf3\x95\x0b\xe5\x27\x92\xb9\xca\x0c\x1b\xb9\xeb\x81\xe7\x27\xfb\xb9\xbb\xa4\x1e\xc3\xde\xf1\xfc\x39\x4a\x7c\x05\xa9\xfa\x18\xd2\x62\x09\xe8\x91\x17\xae\x07\x11\x4b\x72\x11\x33\x39\xf1\x7e\xf9\xf9\xf5\xab\xff\x58\x05\xd3\xe9\xe5\xbf\x93\xcc\xa1\x1c\x76\xe8\x01\x21\x2f\x70\xb6\x3a\xb1\xc7\x5c\xd9\x13\xaf\x6b\x8c\x03\x3b\x7f\x2f\xa1\xc4\x57\x71\x09\xc7\xa4\xea\x9d\xad\xf9\xe2\xe6\x26\x07\x83\xc1\xe1\x83\x2f\xee\xfc\x05\x5c\x9a\xbc\xb0\xd1\xe9\x03\x38\xac\x38\xf5\x99\xb5\xaf\xc4\xab\xe4\xc1\x47\xaf\x81\x1e\xf0\x96\x1c\xa5\xb4\x01\xe7\xcf\xb6\xb6\xa1\xd0\x58\xdf\x8e\x22\xf4\x73\x2d\x6e\x28\xf4\x13\x17\xb8\xb6\xe0\xf7\x54\xb7\x56\xee\xb3\xa1\x44\x9f\x85\x4e\x8e\x54\x06\xf6\x38\xff\xe3\x54\xd1\xa7\x99\x5d\x77\x7d\x26\x65\x5e\x7b\x23\x15\x4c\xc2\x9d\x12\xff\xfa\x31\xcd\x96\x78\xc3\xde\x97\x88\x7a\xb4\x3b\xe4\x52\xd7\xbe\xf5\xaa\x72\x9e\x72\xdd\xb9\xe5\x9a\xdb\x55\xeb\xe9\xad\xfa\x28\x31\xe4\x2a\x0d\x77\x30\x56\x5d\xc9\x45\xae\x9a\x1f\x37\xaa\x37\x8e\xfe\x0d\xab\x1b\x7d\x78\x46\xb3\x88\x89\xe1\xd7\xe7\xaa\x83\xba\xd9\xfd\xec\xd2\xb0\x84\x7d\x4d\x9f\xb9\xef\x6e\x33\xfc\xf0\x56\xbd\xbb\x94\x1b\xe7\x8c\x65\x5e\x00\xb3\x99\x6f\xa6\xdd\x6b\x4a\x63\x29\x31\xef\xbd\xcd\x4f\x31\xf8\x78\xe0\xdb\x97\x50\xf3\x08\x69\x0e\x1c\x66\xd0\x5e\x52\xdd\xf3\x5d\x78\x61\xa6\x88\xce\x09\xbe\xe0\xe1\x17\x96\xd6\x97\x9e\x83\x51\xf1\xe1\xae\x01\x7a\x36\xfd\xfa\x78\x4c\x7c\xb2\x6b\x60\x7e\x7b\x7f\xb9\x03\x73\xa3\x2a\xbe\xe2\xb1\xf5\xda\x81\x7b\x6a\x59\x66\x11\xd5\xf8\xb9\xc0\xb5\xec\x77\x93\x83\x18\x8f\xa1\xc0\x23\xc4\xb9\xf9\xdd\x05\x50\x3d\xa5\x3b\x17\x00\x77\x32\x1f\x41\xc7\x81\xfd\x5f\x07\xff\x04\x00\x00\xff\xff\xe2\x74\xc9\xc8\x86\x20\x00\x00") +var _staticIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xcc\x1a\x5d\x73\xdb\xb8\xf1\xfd\x7e\x05\xca\xce\xe4\xa9\x34\x27\x97\x76\xa6\x71\x25\xb5\xa9\xe3\x99\xb8\xd5\x25\xb9\x28\xb9\x49\x9f\x34\x10\x09\x49\xb0\x41\x82\x01\x40\xc9\xbe\x5f\xdf\x5d\x00\xa4\xf8\x29\x53\xfe\x68\xfd\x90\x18\x04\x76\x17\xfb\xbd\x0b\x40\x93\x3f\xbc\xff\x74\xf1\xf5\x3f\x9f\x2f\xc9\xd6\xa4\x62\xf6\xd3\x04\xff\x10\x41\xb3\xcd\x34\x60\x59\x40\x6e\x53\x71\xde\xf8\xca\xf4\x34\xd8\x1a\x93\x9f\x47\xd1\x7e\xbf\x3f\xdb\xbf\x39\x93\x6a\x13\xbd\x7e\xfb\xf6\x6d\x74\x8b\xb8\x01\xd2\x60\x34\x99\xfd\x44\xc8\xc4\x70\x23\xd8\x2c\xdf\xec\xd9\x6a\x12\xb9\x0f\x9c\x4e\x99\xa1\x24\xde\x52\xa5\x99\x99\x06\x85\x59\x87\x7f\x0d\x0e\x0b\x48\x3d\x64\x3f\x0a\xbe\x9b\x06\xdf\xc3\x6f\xef\xc2\x0b\x99\xe6\xd4\xf0\x95\x60\x01\x89\x65\x66\x58\x06\x58\x57\x97\x53\x96\x6c\xd8\x00\xde\x85\x03\x0b\xe7\xc0\x7a\x41\x37\x75\x44\x90\xc3\xe2\x08\x9e\xdd\x10\xc5\xc4\x34\xd0\xe6\x4e\x30\xbd\x65\xcc\x04\x64\xab\xd8\x7a\x1a\x44\xda\xc0\x86\x71\x14\x6b\x1d\xad\xa4\x34\xda\x28\x9a\x9f\xc1\x57\x30\x9b\x44\x88\x78\x12\x85\x35\x6c\x1d\xd2\x3d\xd3\x32\x65\x0f\x26\x42\xf3\x63\x0c\x70\x10\x2f\x20\xe6\x2e\x67\x30\x4e\x41\xe0\xe8\x36\x74\x73\x4d\x4a\x3c\xdd\x44\x38\x7f\x06\xff\x05\x24\xb2\x54\x74\xac\x78\x6e\x3c\xb2\x61\xb7\x26\xba\xa6\x3b\xea\x66\x03\xa2\x55\x7c\x40\xbf\xd6\xd1\xf5\x8f\x82\xa9\xbb\xb3\x6b\xcb\x89\x03\x7a\x00\x15\x1a\xb3\x27\x20\x11\xe6\x1b\xfd\x43\x3c\x96\x50\x65\xe0\xd0\xfa\xc8\xad\x49\x59\x56\x3c\x9a\x3b\x30\x57\x93\xc4\x24\x72\x61\x31\x59\xc9\xe4\xce\x52\x4c\xf8\x8e\xf0\x64\x1a\xa4\x94\x3b\x9f\xac\xcd\x65\x74\xe7\xa7\x60\xb2\x10\xe5\xd0\x1a\xdd\x02\x18\x0a\xf1\xb0\xf4\x5e\x1d\xcc\xbe\xc8\xbd\x46\xcf\x18\x02\x04\x01\x8b\xd8\x14\x0a\x02\x66\x51\x0e\x8f\xc1\xf3\x2c\x61\xb7\x0c\x04\xb8\x72\x83\x63\xb0\xc0\x04\xea\x8f\x67\x06\xe0\x2f\x0e\x1f\xc7\x70\xac\x17\x41\x54\x0a\xaa\x21\xa1\x68\x26\x58\x6c\x58\x02\xcc\xfd\x3a\x27\xbf\xe2\xda\x31\xe4\x2d\xd7\x46\x02\xfa\xec\x83\x1b\x1c\x83\xa5\xb1\xe1\x3b\x6e\x00\xf8\x9d\x1f\xdd\x23\x4a\x06\x9c\x70\x88\x1c\x94\xc4\x8f\xeb\x18\x93\x08\xad\x51\x7e\x50\x1f\x5f\x7f\x0c\x2c\x11\x96\x70\x53\xa7\x51\xca\xb7\x32\x19\x81\x7f\x61\xc2\xd6\xb4\x10\xc6\x8e\x75\x0a\xde\xc1\x4b\x88\x35\x25\x6b\x1a\x6e\x84\x5c\x31\x74\x1a\x3e\x23\x97\x40\x8b\xd4\x79\xa0\xde\x45\x22\xf0\x91\x96\xb7\x68\x9e\xb0\x15\x55\x07\x8f\xc1\x05\x4f\xd9\x0a\xa6\x43\x01\xaa\x0a\x6a\x62\xd7\x20\xf6\xe0\xfb\xb5\xa5\x16\x3a\x66\x6d\x52\x73\xd1\x0a\xa8\xc5\x7b\x42\x61\x27\xaa\x4b\xf6\x27\x3a\xa7\x59\x09\x11\x17\x4a\x61\x3a\xae\x60\x2c\xd7\x7e\x76\x59\xc7\x44\xac\xd6\x3e\x75\x42\xa0\x6c\x05\x39\xd2\xe1\xfb\x8f\xa5\x93\x10\xd2\x1f\xb2\x3a\x0d\xbe\xb8\x69\xe2\xa6\x89\x13\xbc\xcd\x6d\x49\xc8\x32\xdb\xdd\xb6\xa6\xe4\x2a\x06\x0f\x6e\x62\xe3\xba\x1e\x94\x87\x75\x0d\x05\x88\x65\x71\x17\xa4\x41\xb1\xf9\xd1\x36\x56\xc8\xb3\xb5\x54\x29\x75\x6e\xf8\x40\x93\x05\xb3\xaf\x48\x8b\x5c\x1d\x68\xf5\x09\xd5\xd2\x35\xf8\xf9\x82\xff\xce\xce\xbd\xd6\x0f\x81\x61\xa4\xa1\x62\xa9\x61\xad\xb2\x52\x33\x8e\x4a\xf4\xf7\x60\x4c\xa2\x7b\x69\xa0\x9d\xc7\x90\xb0\x29\x67\x80\x86\xcd\x4b\x63\x88\x5c\x6a\x03\x85\x10\x72\x0a\x51\x90\x1a\xbb\x84\x70\x16\x42\xb5\xc0\xe4\x39\x40\x68\x9c\x01\xfb\xe2\x11\x53\x7c\x33\x18\x71\x96\x67\x79\x71\x2c\x06\x73\xa6\xba\x36\x75\x81\x02\x69\x2e\xf5\x39\x73\xd6\x35\x63\x8d\x0e\xb5\xc9\x42\x77\x62\x15\xb7\xf6\xb5\x6b\x55\x18\x83\xb9\xc9\x86\x50\x01\x83\x1d\x15\x05\xc6\x4d\x91\xb9\xd4\xdb\x49\x5b\x3a\xb5\x7f\x72\x05\x1a\xc5\xe5\x68\x24\x75\x76\x9b\x0b\x4c\x1c\xe5\x0e\x97\xee\xfb\xf8\x2e\x3e\x47\x76\x77\x29\xb5\x61\xd5\xb0\xcc\x95\xdc\x40\x04\x83\xa4\x9f\x05\x83\xe4\x41\xf6\x94\x9b\x3f\x11\xbb\x48\xb8\x26\x50\xb4\xe2\xc2\xf0\x6c\x73\x76\x76\xd6\xd1\x58\x53\x67\x79\x21\x44\xa8\xf8\x66\x6b\x5a\x6a\x3b\x22\xda\xb5\x96\x07\xb9\xfe\xb5\xf8\xf4\xf1\x54\x71\x8e\xd0\x8e\xf5\xae\x22\x7d\xb1\xf8\xed\x09\x29\x43\xff\x5e\x51\xfe\xfe\xcb\xfc\x64\x13\x74\x3c\xaf\x39\x71\x4f\x8e\x43\x0e\x64\x61\x4e\x0c\x02\x1b\xae\x3e\xdf\x6b\xe0\x4a\x07\x8d\x64\x89\xf1\x60\x07\x27\xb1\x91\xd3\x0d\xcf\x3a\x09\x16\x33\x65\x55\x26\xb8\x30\x4c\xc1\x66\x2e\xa2\xaa\x12\x6f\xf3\x86\x5b\x6c\xf2\x69\x53\xc8\x82\x51\x15\x6f\x7b\xea\x89\xeb\x70\xaa\x7a\x28\x45\x91\x66\x04\xf7\xb3\x4d\xa7\x92\xc2\x66\x21\x0b\x74\x04\xcf\xed\xdb\xc2\x6b\x9a\x48\xe6\xc8\x6e\x69\x64\xa8\x46\x14\x40\xa6\x93\xc8\xcd\x1f\x05\xce\xa4\x59\x7a\x84\x57\x19\xfb\xdb\x28\x1c\x88\x41\x6a\x55\xf1\x6a\x63\xc6\x60\x84\x25\x06\xec\x84\x48\x23\xb7\x11\x36\xd2\x5f\x89\x51\x7b\x38\x70\xb7\x81\x18\xbb\x01\xbf\x01\x57\x9a\x5f\xfd\xfb\x72\x14\x38\x77\xf0\x57\xa3\x11\x32\xc8\x31\x00\xbf\x20\x1f\xbf\xcd\xe7\xa3\xad\xe1\xb0\x3e\x7e\xfa\x3a\x88\xd6\xeb\x34\xf5\xf0\xc7\x93\x4a\x15\x31\x0d\xc7\x21\x90\x8c\x63\xb6\x95\x22\x61\x6a\x1a\x38\xcf\x25\xbe\x2f\x6f\x04\xfe\xc4\xa5\x90\x76\xb2\xf0\xe5\xa0\x4c\x1c\x10\xba\xe2\x2e\xac\xc2\xc6\xed\xae\x8b\x55\xca\x21\xdc\xdf\xe1\xe2\x24\x72\x84\x46\xd0\x6e\x36\xca\x70\xc6\xd5\xcc\x54\xb4\x3b\xcd\x1c\x54\x7a\xd7\x70\x61\x2b\xd7\xde\x63\x12\xa1\xd4\xfd\x09\x07\xc9\x6f\x94\x2c\x5a\xbd\x94\xe7\xa9\x99\x3f\x8f\x73\x98\x2b\xb6\x0b\x73\x7b\xd3\x90\x70\x8d\xf9\x08\x72\x45\x39\xea\x72\x4c\xb3\x0d\xf4\x79\x82\xad\xcd\x10\xdb\x0f\x64\x03\x38\xc0\x9b\x95\x6c\x03\xd4\x39\xaa\xbe\xec\x8a\x2f\x04\x8f\x6f\x88\x91\x7e\x15\xbb\x22\xe2\x20\x9e\x6c\xf3\x0c\x5c\xcd\xe9\x60\x40\x5e\x5f\x63\x87\xec\xd4\xac\x25\x35\x33\x95\xc7\x07\xaf\x5f\x68\x23\xed\x70\x1a\xbc\xae\x7d\x69\xfc\xec\x64\x64\xd7\xf1\xd9\xe6\x55\xb1\x58\xaa\x44\x57\xed\x9e\x6d\x0c\xc7\xb7\x77\x7e\x50\x3f\xb8\x1f\x4e\x7a\xcb\x3d\x34\xa6\x72\x5f\x3f\xc5\x57\xa9\xbe\x84\x09\xc1\x87\xb1\x21\x39\x34\x67\x93\xed\xeb\xf2\x72\x0c\x46\xd5\xa1\xd2\x96\x21\x88\x50\xe6\x02\xb6\x19\xbd\x5b\xa9\xf8\xef\x10\xc1\x90\xa5\xdb\x3c\x58\xe0\x7e\x0d\x62\x16\x08\x63\xd0\x61\x5f\x8b\xd9\x0e\x06\x52\x8d\xd0\xaa\x35\x01\xfc\xdc\x9e\x9b\x78\xdb\xae\x3b\xbd\xfe\x82\xc6\x81\x24\x10\x6f\x59\xca\x86\xbc\xa7\x23\x86\x07\x9f\x2d\xec\xdf\x3e\xe7\xbc\x67\x3b\x43\xb3\x84\xaa\x64\xd0\x5d\xed\x95\x00\xeb\xee\x5b\xe2\xcd\x16\x7e\xd4\x1b\x18\xbd\x2d\xcf\xe1\x7b\xab\xa2\xfa\xe7\x80\x27\x58\xd1\xfa\x52\x4f\x0d\xde\x9a\xbb\x0b\xd2\x26\x2a\xc0\x48\xe1\xeb\x9f\xbb\xad\xab\xa0\x2b\x26\x66\x97\x68\x73\xa2\x99\xda\xc1\x9f\x6f\x5f\xe6\x44\x7b\xb5\xba\xe5\x63\x9d\xe3\x91\xd2\xd1\x52\x5d\xa1\x60\x2e\xa3\x29\x20\xe1\xb0\x43\x35\x2f\xa9\x6c\x99\xc8\xc3\x95\x90\xf1\x4d\x30\x43\x66\xdc\xd9\xf4\x9c\xe4\x52\x1b\x6c\xe7\xcf\xa3\xa8\x00\x5e\xcf\x73\x80\xde\x43\xb4\xfe\x63\x0b\x0b\xe7\xb9\x54\x26\x4a\x56\x7f\xd7\x5a\xa4\x32\x61\x53\xfc\x6f\x12\xe5\x0f\x6a\x4e\xef\x35\x8d\xb7\xfd\x68\xe3\x90\x95\x94\x37\x50\x08\x6f\x3a\x87\x2e\xab\xe1\x96\xa1\xde\x10\xaf\xc3\xd0\xae\x06\xb3\x7f\x7a\xec\x5e\x83\xf4\x58\xfa\x6d\x57\xbb\xad\x1e\xf1\x98\xa1\x6a\xbc\xf6\x75\x0e\xc3\x5a\x3c\xd9\x47\x47\x09\xff\x01\xac\xfb\x08\xc1\xbb\xce\x6a\x7b\xfb\xcd\x12\xbd\x66\xc0\x73\x47\x1e\x69\x9e\x47\xde\x6f\xe0\xdb\x18\x26\xcf\x21\x33\xc6\xcd\x4b\x94\xf9\xb3\x0f\xe5\x27\x92\xb9\xcc\x0c\x95\xdc\x87\x89\x97\x27\xfb\x7b\x7f\xb3\xf9\x1c\xf6\x4e\x56\x2f\x51\xe2\xcf\x90\xaa\x9f\x43\x5a\x2c\x01\x63\x8e\x31\x7f\xf9\xf3\x9b\x9f\xff\xcf\x2a\x58\x2c\xe6\xff\x9b\x64\x0e\xe5\xb0\x83\xdf\x39\x46\xfa\x33\x48\x30\xf3\x83\xfe\xb3\x67\x0f\xa2\xc2\xa7\x54\x05\x6d\x52\xf9\x38\x53\x7f\xa6\xf1\x8b\xa3\x89\x41\xf3\xc1\xd7\x70\x3a\xb4\xe7\xd9\xda\xc7\x10\x81\xd3\x8a\xd3\x90\x59\x87\x4a\xbc\xde\x3e\xb8\xf5\x1a\xe9\x01\x1f\xc8\xb3\x94\x36\xe0\xfc\xc5\xd6\x36\x14\x1a\xeb\xdb\xb3\x08\xfd\x52\x8b\x1b\x0a\xfd\xc4\x05\xae\x29\xf8\x3d\xd5\xad\x91\xfb\x5c\x28\xd1\x17\xa1\x93\x67\x2a\x03\x47\x9c\xff\x71\xaa\x18\xd2\x4c\xdf\x59\x9f\x29\x25\x0f\xde\x48\x05\x53\x70\xa6\xc4\xff\xc3\x04\xaf\x56\x54\xf5\x44\xd3\x9b\x88\x06\xb4\x3b\xe6\x50\xd7\x3c\xf5\xfa\xbb\xb5\xf6\x29\xd7\x9e\xae\x1a\xef\x35\xe5\x4b\xf6\x98\xa3\xb4\xbd\x69\xf3\x95\x46\x48\x5d\x7f\x11\x2f\xef\x38\x86\x37\x2c\x4f\xf4\xb3\x0b\x9a\xc5\x4c\x8c\x3f\x3e\x97\x1f\x87\x9b\xba\xf6\xb5\x4b\xcd\x12\xee\x09\x76\xe9\x7f\xac\xb1\xc4\x5f\x6b\x94\xf7\x2e\x45\xe5\x9c\x89\x92\x39\x30\x9b\x85\x76\xd9\xdf\xa6\xd4\x40\x89\x7d\x24\xac\xbf\xdf\xdb\x8b\xa4\xf2\xb2\x9f\xdd\xba\x86\xc3\x4e\xba\x43\xaa\x7f\xf3\x99\x5d\xda\x25\xbc\x49\xc3\x67\x1f\x7c\x96\x6f\xfc\x3c\xe0\x64\xaa\xf8\xda\x53\x23\x7a\xb1\xf8\xed\xf1\x34\xf1\x9d\xa7\x46\xf3\xfb\x2f\xf3\x1e\x9a\x95\xaa\xf8\x8e\x27\xce\x6b\x47\xee\x69\x54\x91\xc5\xd4\xe0\x1b\xb3\x1f\xb9\xc7\xf6\x93\x18\x4f\xa0\xc0\x23\x89\xf7\xf6\x6f\x1f\x81\xf2\xfd\xd5\xbb\x00\xb8\x93\xfd\xe5\xcc\x24\x72\x3f\x55\xfb\x6f\x00\x00\x00\xff\xff\x44\xb9\xfe\xfb\xbb\x26\x00\x00") func staticIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -299,7 +299,7 @@ func staticIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/index.html", size: 8326, mode: os.FileMode(420), modTime: time.Unix(1452220918, 0)} + info := bindataFileInfo{name: "static/index.html", size: 9915, mode: os.FileMode(420), modTime: time.Unix(1452283625, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -344,7 +344,7 @@ func staticJsAceJs() (*asset, error) { return a, nil } -var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x3c\xfd\x72\xe4\xb6\x6f\xff\xfb\x29\x78\x4a\xe6\xac\x6d\x6c\xd9\x77\xe9\x6f\x3a\xb3\x6b\x3b\x75\x1c\x67\x72\x6d\x92\x4b\x6d\xa7\xd3\x19\xd7\xe3\xd1\x4a\xf4\xae\x72\x5a\x69\x23\x71\xfd\xd1\x8b\xdf\xa0\x0f\xd0\xe7\xeb\x93\x14\x20\xf8\x29\x51\xbb\x7b\xf9\xe8\x5d\x7b\x99\xd8\x12\x09\x82\x20\x00\x02\x20\x40\xf9\x3e\x6d\x18\xcf\x0b\x51\x37\x93\x1d\x7c\xce\xea\xaa\xe2\x99\xe0\x39\x3b\x66\x77\x69\xd9\x72\x6a\x9e\xd6\xf5\xbb\x45\xda\xbc\x6b\xa1\xf9\xfd\xf3\x64\x67\xe7\x6e\x55\x65\xa2\xa8\x2b\x96\x2e\x8b\xb3\xb4\x2c\xe3\x05\x17\xf3\x3a\xdf\x63\xcb\x54\xcc\xf1\x67\x93\x2e\xda\x3d\x96\x4d\x47\xec\xfd\x0e\x63\x9f\x27\xe9\x2f\xe9\x63\x8c\x8f\x8c\xad\x9a\x72\xcc\xa2\x03\x18\x19\xb1\x2f\x68\x80\x6c\x27\x14\x63\xf5\x9b\xda\xb2\x34\x9b\xf3\x31\x91\x42\x2d\x79\x2a\xd2\xb1\x9e\x40\xb6\xb4\xab\x2c\xe3\x6d\x0b\x50\x8a\xa8\x18\x61\x68\x62\x89\x63\x4a\x0d\x13\xf9\xfe\x4c\x83\x78\xd3\xd4\x8d\x33\xe4\x71\xde\xec\xb1\x56\xa4\x62\x05\x64\xf7\xc6\xff\xf2\x2f\x2b\xde\x3c\x25\x30\x6b\xcb\xff\xe9\xf2\xed\x8f\x08\x9e\x34\xbc\x5d\xd6\x55\xcb\xaf\xf8\xa3\x18\x69\xec\xf0\xf3\x19\x9e\x9f\x1d\x16\xcd\xb8\xb8\x4a\xa7\x25\x6f\x63\x64\x47\xef\xdf\x7b\xc3\xc3\x08\x20\xa3\x3d\x60\x8d\x90\xe0\xf0\xf8\xfe\x59\xf2\x70\x02\x78\x7b\xe8\x2e\xea\x87\x36\x96\x90\x7b\xac\x5e\x0a\xc5\xed\x61\x74\x07\xc8\x6d\xf9\x08\xbf\xa3\x83\x06\x86\x47\xce\xc8\xe0\x1c\x97\xa2\x59\x65\x62\xd5\x70\x3d\x11\xad\x60\x8b\x39\xd6\xd3\xfe\xa6\xca\xf9\x23\x6f\x7d\xac\xdb\xd3\x5e\xd0\xf0\x0d\x0c\x3a\x03\xe1\x88\x26\x2d\x2a\xe1\x4d\xb4\xed\x24\x99\x1d\x3e\x3c\xd1\x77\x45\x0b\x7b\xe7\x29\x28\xd9\xc0\x44\x73\x02\x1f\xc6\xf7\xb5\xde\x68\x01\x8c\x01\x7c\x66\x5f\x0e\x63\xbc\xe4\xbf\xae\x78\x95\x05\xb5\x2f\x80\xb1\xd5\xe0\x3e\x46\x8b\x12\x3a\xeb\x9c\xcb\xfd\x10\xff\x8a\x3f\x69\xa3\x34\x1c\xd4\xa4\x62\x0f\x20\x9a\xfa\x21\x99\x8a\x3a\x55\xbd\xfe\x5e\x00\xb1\x65\x2b\xe1\x0e\xb7\x46\xc2\xd0\xb2\xac\x5b\x22\x46\x02\x20\x21\x4c\x3e\x8d\xe9\x17\x53\x64\x75\x10\x2f\x4b\x90\xd5\x96\x88\x15\xf4\x76\xa8\xcb\x3a\xcd\xd5\x06\x56\xd6\x2c\x8e\x3e\x23\x95\x61\x65\x11\x8d\xc0\x10\x2c\xea\x7b\x1e\xc3\x30\xe8\xb4\xbb\x3d\x68\x8e\xf0\x39\xb9\xab\x9b\x73\x30\x6c\x16\xa2\x10\x7c\x61\x0d\x0e\xe0\x3f\x2a\x8b\x93\xa3\x76\x99\x56\x27\x47\x05\xcb\xca\xb4\x6d\x8f\x77\xef\x52\xb0\x83\xfb\x72\xe2\xdd\x93\xa3\x83\xe2\x84\xa1\xc2\xe2\x50\xd4\x57\x76\x74\x40\xf0\x07\x30\x14\x88\x4a\x97\x4b\x5e\xe5\x57\xb5\xa1\x35\xd2\x26\x4a\xfe\xee\x1a\x29\x5c\xa4\x55\x15\xbb\x4e\xa3\x0f\xe1\xa5\xda\x21\x7f\xcd\x6a\xc1\xfa\xdf\x37\x75\xb5\xdf\x14\xb3\xb9\xf8\xb0\x55\x5b\x4d\x5e\xbb\x70\xde\x66\xe9\x92\x7f\x27\x16\x65\x0c\xdb\x9d\xc8\x2a\xee\x18\xbe\xb0\x17\xc7\xac\x5a\x95\x25\xfb\xed\x37\xa6\x5e\x57\x60\x79\xee\x8a\x8a\xe7\x9a\x7e\xa5\xf7\xe4\x20\x60\x25\x79\x71\x7f\x80\x84\x08\x70\x0a\x12\x61\x32\x47\xd4\x34\xf5\x8e\xdd\x28\x91\x5c\xaf\x5e\x2c\xce\xb2\x7b\x82\x3f\xd5\x7a\x22\x9f\xc8\x55\xd5\x21\x13\x27\x97\xbe\x1b\x1c\x72\x5e\x67\xab\x05\xaf\x44\x92\x35\x3c\x15\xfc\xbc\xe4\xf8\x16\x47\x40\x0a\x2d\x9d\x27\x05\x78\xf5\xe6\xbb\xab\x1f\xbe\x07\x70\x18\x3e\xb1\x74\xf0\x24\x9b\x17\x65\xfe\x23\xec\xe9\x36\x29\x79\x35\x13\x73\x76\x7c\x7c\xcc\x0e\xd9\x57\x2c\x8a\xd8\xd8\x03\xb8\x3e\xbc\x49\x2a\x78\xf8\xd7\xb4\x5c\xf1\x9e\x93\x3b\x5b\x35\x0d\x4c\x2c\xb5\x3f\xf6\xac\xc2\xe7\x8e\x12\x26\xa9\x10\x0d\x10\x07\x9a\xb1\x9f\xd1\x88\x68\x84\x1c\x8e\x3a\x6b\x06\xf7\xca\x3d\x64\x88\x05\x1a\x57\xa5\x40\x34\x92\xfb\x0e\xae\x05\xd0\x85\x7b\x5b\x77\x49\x01\x98\x37\xd2\xdb\x33\xe4\x76\x1c\xf1\xc5\x52\x3c\x05\x7b\xaa\x7a\x3f\x6b\xea\x65\xd4\xd1\x91\x25\x6f\x40\x89\x17\x92\x98\x53\xd2\x61\xe5\x50\x52\xf9\xb6\xc7\x78\x69\x35\x87\xda\x80\x8b\x2c\x02\xf7\x59\x65\x20\x93\x08\x17\xe8\xb4\xe7\xbc\xe4\xd0\xaa\x95\x08\x25\xb9\x80\x10\x26\x9d\xa1\x3c\xa3\xd3\x86\xb3\xa7\x7a\x05\x81\x8d\x7a\x78\x48\x2b\xc1\x44\x2d\x35\x5f\x61\x41\xdd\x27\x5f\xe5\x79\x2d\xf6\x55\x44\xca\x8e\x84\xbc\x00\x17\x76\x57\x34\x8b\x58\xe1\x1e\x8d\x94\x40\x8c\x32\xb6\x0f\x85\x80\x9d\x49\x38\x35\x35\x59\xda\x72\x87\xf4\xb1\xda\xa7\x9e\xe9\x8e\xae\x2e\x7e\xfe\xf1\xec\xf4\xea\x9c\x5d\x9d\x7e\xfd\xfd\x39\x73\xfc\xfe\x40\x14\x46\x24\x49\x83\x20\x63\xaf\x11\x4b\x4b\xde\x08\xb7\x65\x62\x40\x5d\xd9\xeb\xd6\x67\xf3\x34\x05\x3d\x7f\x37\x71\x68\x55\xec\x0c\x53\xfa\xcd\xc5\xdb\x9f\xfe\x1a\x2a\x5d\xc7\xe0\xb7\x3a\x96\xf4\x77\x2f\x0a\x7c\x54\xdd\x08\xb3\x28\xd4\x11\x54\xc2\x54\x80\x8a\xf0\x32\x41\x8a\xe2\x88\x5a\x22\x83\x45\x42\x15\xb0\x8f\xd3\x05\xaa\x92\xd1\x8b\x04\x97\x4e\xc0\x2e\x28\x39\xbd\x63\xed\xb6\xc9\xb7\xff\x7c\xf1\x26\x8e\x2e\xcf\xbf\x3f\x3f\xbb\x62\x7f\xc7\xbe\xbd\x78\xfb\x83\x65\x9c\x37\x11\x04\xf2\xa8\xae\x73\x21\x96\xe3\x03\x19\x3d\x29\x3c\x65\x0d\x9a\x03\xcc\x4d\xe6\xe0\x70\x65\x30\x05\x2e\x98\xbc\xf9\x57\x44\xc4\xb1\xa5\x07\xfb\x5f\x6a\x9a\xa9\x5d\x2f\x00\x7b\xe4\x28\xd9\x2c\x9f\xdc\xf9\x61\x36\x66\x89\xaf\xc1\xf2\xc7\x40\x12\xd8\x80\xdb\x69\x99\x56\xef\x2c\x57\x00\x02\xbc\x50\xb6\x72\xc4\x61\xd8\xfd\xec\xed\xf4\x16\x58\x7e\x0a\x62\x7e\x88\xf3\xa2\xe1\xce\xb6\xa0\x9d\xc2\xba\xcd\x5a\x58\xa7\x97\x67\x46\x52\xda\xc2\xbf\xfc\xec\xf1\xf5\xdf\xbe\x7e\x3d\x89\x5c\xa9\x7e\x73\x3e\x08\x79\xa6\x21\xc1\xc5\xa4\x60\xe5\xba\x50\x51\x9f\xdc\xe9\x0a\x4c\x33\xa9\x94\xb2\x8c\x7b\x72\x09\x67\x75\xb9\x5a\x54\xf4\xfc\xb6\xc9\x79\xa3\xcd\xb1\xab\x81\xca\x5c\xa9\x81\x5a\xdf\x69\x55\xe8\x94\x45\x73\x72\x24\xf2\x93\xf3\x8b\x8b\xb7\x17\x63\xa9\x02\x1e\x28\x4a\xe7\xe8\x00\x81\xf0\x87\xef\x7b\x8d\x99\x9e\x68\x6c\x8e\xe5\x4e\xf3\xdc\x37\xc4\x13\xc7\x93\x1a\xd3\x24\x0d\x98\x9e\x10\x0f\x2b\x01\xd2\x7e\xac\x61\x54\x56\x37\x79\x0b\xba\x04\xae\xf9\x2f\x24\x87\x0e\xc7\x25\x1e\x80\x49\x10\xd8\x80\x64\xa9\x06\xe2\xae\x24\x36\x93\xcc\x6f\xfb\x71\x0f\x74\xe8\x45\xe0\xea\xe0\x55\xba\x5a\x2b\x30\xe7\xcc\x89\x53\x7d\x01\xa8\x8f\xc0\x1f\xab\x20\x01\xad\xf4\x3d\xdf\x95\x41\xd5\xf1\x2e\xca\x03\x31\x80\x14\xe4\x33\x79\x41\xc4\xb5\x5f\xa3\xc4\xe5\x96\x31\xf2\x47\x80\x13\x67\xc8\xcb\x6a\xda\x2e\x27\x1a\x84\x34\xde\x51\x16\x12\xed\xfc\x24\xb2\xa7\x5a\x30\xab\x70\x06\x0f\x13\xd8\xa7\xc8\x9d\xab\x8b\xe9\x79\xe4\xb1\x0b\x99\xd8\xe7\x15\xb4\xba\xde\xb1\x31\x7c\x67\x68\x36\x58\x5c\x30\xd8\xfc\x04\x04\x9d\x44\x48\x7e\x82\xe1\x97\x9c\xda\x09\x97\x00\xe8\xba\xb8\x51\x6b\xc2\x7e\xa0\x27\x07\x7a\xd4\xaa\xa4\x0c\x69\x7c\x23\x87\x5a\xc5\x8e\x26\x96\x5a\xa9\x75\x73\x9e\xe6\x7a\x65\xad\x5e\x1a\xb6\x1d\x89\x69\x9d\x3f\xd1\x70\x89\x4f\x76\xd5\x53\x6c\x1b\xd2\x44\xcf\xec\xb8\xd1\x53\x5c\xe4\x36\xe0\xa9\xd2\x7b\xb6\x2a\x21\xf8\x4e\x5a\x70\x72\x98\x99\x31\x51\xb8\xd2\x5a\xdb\x3e\x51\x63\x64\x80\x9c\xbb\x9a\xed\xc2\x78\xf3\xce\xeb\x07\xe9\x26\xf5\x39\x96\x26\x76\x0e\xb6\x41\x3f\xe9\xe8\xfe\xf5\x8d\x64\x8f\x94\x0a\x09\xc5\x77\xa8\x52\xba\xab\xaa\x9d\x17\x77\x22\xbe\x96\x09\x94\x37\x10\x9c\x16\x28\x8f\x57\x94\x69\x01\xe9\x24\xea\xc4\xa6\x5f\x45\x01\x21\x8b\x48\x17\xcb\x1b\x93\x57\x91\xbf\x1c\x7b\xf7\x9e\xa9\x7d\x36\x66\xd7\x51\x91\x63\xe8\xa7\x8f\x8b\x91\x19\x1e\xdd\xec\x49\x0a\xc6\x44\xae\x92\x25\xeb\xf0\x3b\x92\xae\xed\x56\x1f\xce\x1d\x2b\x51\x54\xcb\x15\x78\xd7\x64\x5e\xe4\xc6\x69\x63\x7b\xbd\x12\xd4\x61\x59\x7c\x07\xc1\xfb\x26\x03\xe3\x84\x97\xfd\x83\x08\xca\xc2\x4b\x8e\x10\x13\x91\xd7\xca\x9b\xf7\x62\x6c\x63\xc3\x11\xc0\x46\xef\xec\x50\xf3\x9f\x82\x97\xe8\xa7\x92\xa3\xf3\x21\x2d\x60\x29\xb9\xf2\x17\x03\x96\xae\x9b\xa3\x41\xdc\x03\xf1\x52\x90\x8d\x3a\x39\xa3\xb0\x3b\x22\x53\x59\xb8\x8f\xcb\x5d\x37\x2b\xf4\x91\x39\xec\x92\xf2\xa1\x5c\x76\xb3\x53\x9f\x28\xa7\xdf\x54\x77\xf5\xc7\x62\xf1\xba\x14\x9f\x0e\x2d\x0f\x0a\x20\x50\xa5\xb9\x82\x8c\x87\xe5\x27\x72\xdc\x3e\x42\x62\xac\x2a\xcf\xe2\xc0\x9e\x04\x17\xe9\x32\x92\x84\x22\x6a\x91\x96\xb7\x6d\xf1\x1f\x5c\x67\x00\xe4\xb9\xc1\x36\xf7\x46\x60\x7f\x7f\x80\x69\xed\xc1\xcb\xcd\xd5\x1f\x60\x9b\x7b\x23\xd0\xf0\x81\xb6\xac\xf0\x98\xed\x8c\xb0\xcd\xbd\x11\xf2\x14\x50\x54\x33\x0d\x1f\xfd\x5c\xbd\xab\xea\x87\x6a\xf3\xc6\x12\x98\x77\x58\x13\x7f\x7e\xb4\x9d\x26\x73\xe5\xb4\xc5\xde\x83\x2f\x5d\x14\x62\xcc\x5e\x1d\x1e\x12\x81\xb7\xe4\x48\xc6\xbd\xc8\xf9\x56\x06\x52\x63\x27\x8a\x1a\xd2\x94\xce\xd6\x1b\x0a\xc2\x27\x6b\xf7\xb3\x90\xa9\x10\x67\xd7\x3a\x5b\xaf\x9f\xe7\x98\xa2\x04\xf9\x1f\x76\x56\x83\xe2\xb4\xa9\xff\x8f\x2c\x3b\x4b\xc8\x87\xda\xc8\x56\x8f\xfc\x04\x2d\xa4\x8c\xba\x7e\x4a\x2b\x5e\x2a\xfe\x06\x57\x40\x11\x0d\x25\xf1\x64\x95\xce\x1e\x63\x77\x7c\xba\xad\x41\xf2\xa8\xf6\x22\x45\x4d\x78\x97\x96\x33\x2a\xfa\xc1\xeb\x46\x82\x32\x03\xaa\x34\xb5\x67\x68\x1d\x88\x35\xa6\x75\x28\x82\x7c\xc7\x9f\x06\x62\xc8\xe5\xaa\x9d\xc7\xd7\xd0\xaf\xa2\x44\x78\xba\x59\x13\x1d\xda\x63\x8a\x8e\x11\x71\x0f\x15\xd3\x95\x90\xbb\xe7\x1e\x33\x98\x10\x1d\x3a\x33\x50\x8c\x48\xf8\xfe\xb0\x66\x84\x44\x8e\x99\xc3\xfb\x42\x6c\x96\x7a\xaa\x00\x87\x58\x6c\xfa\xd7\x30\xb8\xaf\xea\x7f\xea\x7a\x9a\x95\x2a\xb5\x6c\xa3\xbc\x4a\x29\x61\xcc\x1e\xfb\x4c\x95\x5e\xe0\x29\x6b\xef\xe1\xe7\x2f\x2d\xe6\x4f\x3f\x7b\x5c\xa0\x5b\x5d\xc2\x9e\xc1\xc4\x75\x8b\x08\x30\xa6\x87\x1d\xcc\x8d\x56\x4b\x84\xb7\x00\x33\x83\x2d\xd7\x3a\x4a\xbf\xe3\x67\xb3\x3e\x4f\x40\xd2\x8b\x58\xed\x18\x59\xa5\xa0\xe3\x0f\x56\x6a\x63\x99\x6c\xb6\x7d\x32\x97\x1d\x8f\xac\x0d\x93\x58\x42\x46\xec\xf7\xae\x41\x16\xaf\x1d\x46\xf7\x96\xe1\x4a\xa2\x63\x04\x43\xf5\xb2\x2d\xe5\xfd\xbf\x47\x73\xd8\x0e\x6d\x63\x89\x4c\x2e\x84\x98\x2e\xea\xef\xeb\x07\xde\x9c\x81\x93\x88\x47\x14\xd4\xbc\xbd\x8b\x23\x5d\xad\x1b\x61\x05\x66\xff\x95\x57\x3a\xda\x6c\x7d\x8d\x79\x90\x36\x07\xfd\xd7\x41\x4c\x95\x92\xdf\x72\x00\x1a\x91\x17\x3a\x28\x14\x35\x07\x07\xec\x82\xdf\x01\xd6\x39\x33\x35\xbe\x56\x20\x91\x94\x4c\x7d\x48\x5b\x06\x33\xf1\x9c\xd5\x8d\x2a\x1e\xe4\x9d\x65\x40\xa0\x98\xcd\xe3\x06\xf3\xed\x9a\xd2\x50\xaa\x38\x98\x28\x0e\x5d\x20\x00\x01\x9e\x13\x0b\xfe\x6f\x6c\xb7\x4f\x7d\x4b\xf5\x2b\xc5\xff\x8f\xb6\xd4\xef\x8e\x4a\xa8\xde\x70\x55\xc7\x74\xd4\xb1\x51\xdf\x9f\x20\xe7\x40\x32\xf5\x4f\x2c\x1e\xd8\x12\x41\xff\x72\x82\x4e\xd5\x62\xad\x20\x50\x2a\xd8\xa5\x52\xc1\x2e\xad\x61\x53\x0c\xe6\xd5\x11\x5c\xde\x15\x55\x21\xce\x25\x5f\x9c\x68\xf9\xa1\x29\x94\xe5\xbe\x2a\x16\x1c\xa4\xc6\xa8\x9c\x6c\xa3\x39\x68\x48\x33\x9e\xe0\x4b\x1c\x01\x5a\x51\x2f\xbc\x6d\xac\x58\x0d\x64\x7d\x0b\xc7\x83\x4b\x38\xde\xc5\xaf\xbe\x74\xa3\x41\x4c\xe7\xcf\xf9\x82\xc7\x11\xe0\xc1\x5c\xe4\x02\x7e\xd6\x8b\x1a\xf3\xb9\x51\x07\xf0\x12\xd4\xe8\xa7\xa6\xa8\xc4\x0f\x69\x33\x03\x53\x62\xf5\xd1\x75\x94\x6d\x8b\xdb\x60\x84\x03\x7e\x00\x56\x12\x62\x3c\x73\x1c\x2c\x67\xed\xaf\x65\xb4\x6e\x00\x30\x4d\xd2\xf8\x7a\x1d\xd0\xcf\x2d\xbf\xac\xef\x10\xb6\x8d\x95\xb9\xb1\xc0\x59\xbd\x58\xa4\x55\xde\x4a\x9d\x55\xcf\xf1\x35\xe9\x10\x46\xff\x63\x16\xc1\xd6\x53\x3c\xa2\xe0\x6d\x0a\x22\xfd\x67\xfe\x34\x36\xa6\x16\x84\x04\x60\x67\xa2\x29\xf7\xcf\xe1\x4c\xd5\x44\x3a\xc8\x5b\xa4\x19\x76\x10\x5a\xd5\x47\x36\x57\x5d\x09\x03\x5f\xeb\xdc\x08\x23\x92\x9c\x28\xd4\x84\x3c\x8e\xa5\xde\x63\x1e\x71\xca\x22\x6c\x4f\xe0\x10\x71\x1f\x48\x98\x71\x0f\x0e\x69\x37\x1e\x67\x61\x5c\x94\xcd\xd3\x6a\x86\xe1\xaf\x41\xe5\x96\x23\x7a\xea\xea\x54\x23\xe0\xdc\xd6\xa8\xd6\x00\x9c\xe7\x65\x43\x5a\x8f\xba\xa1\x46\xf7\xa6\x46\x3f\x98\xa5\xe5\x25\x10\x99\xce\x38\x6a\xc8\x1b\xc1\x17\x71\xb4\x9c\x3d\xf0\xa9\x66\x64\x30\x5e\x23\x0e\xe1\x39\xfe\x70\xe4\x64\xea\x5d\x93\xe5\xa1\x9e\x85\x50\xcb\x91\xc6\x76\xb1\x97\x2f\x99\x67\xc4\x4e\xac\x0d\xb3\x3b\x89\x48\xb0\xf6\xc5\xaa\x2f\xf2\x89\x82\x4d\xb9\x44\x32\x78\xae\xa1\x00\xbd\x86\x7d\xd8\x08\x08\xea\xae\xea\xba\x14\xc5\x52\x67\x21\xe9\xf8\x7c\x5f\xcc\x52\xc4\xb4\x6a\x79\x73\x3a\xc3\x4b\x1d\x26\x0a\x7a\x7b\xc9\xfe\x0d\x42\xa0\x93\x9e\xf7\x34\xf9\x01\x51\x88\x52\x9e\x6e\xf4\x14\x63\xf6\xdf\xff\xf9\x5f\x5f\x90\xa6\x3b\xae\xc1\xc4\x53\x1b\xc6\x29\x3f\xb1\xe3\x95\x7e\xb6\x98\x14\x55\xfb\x77\xcd\x4a\x03\xa3\x00\xdf\xfc\x63\xea\x25\x17\xa2\xa8\x66\xad\x2d\x57\xd8\x7b\x73\x41\x57\x0e\x41\xdd\x37\x35\xab\x6a\x81\x02\x60\x69\xf5\xe4\xdc\x68\x05\xc6\x3f\xf0\xdd\x7b\xce\x66\xd8\x5d\xd1\xcd\x50\xb3\x2b\xdc\xab\x00\x66\xc3\x19\x6f\x66\xb4\x1e\x41\xdf\x4e\x7f\x01\xf2\x12\x38\x98\xb6\x34\x79\x40\x89\x24\x29\x40\xbe\x3b\x7f\xc5\x66\x65\x3d\x4d\x4b\xd4\x5c\x05\xe4\xde\xb7\x45\x54\x2a\xf4\x50\xd1\x29\x7a\x7d\x06\x27\x42\x30\x0c\x10\x9a\x02\x23\x0c\x3c\x5e\xe7\x84\xb5\xb7\x4e\x7c\x6c\xcf\xe3\xb7\xf6\xb6\xa0\xba\x95\x14\x99\x18\x5c\x62\x3e\x05\xde\x48\x77\xa8\xd0\x58\x2c\x47\xd4\xc0\xe4\xb1\xf9\x78\x17\x2f\x62\x51\x4b\xa7\xbc\x15\x9e\xac\x3b\x07\x92\x9e\xde\xa7\x45\x29\x03\x6a\x03\xa8\x80\x64\x79\x2f\x98\x07\x08\x91\x82\x5e\x1f\x81\xb1\xe8\x48\x55\x47\xf5\xf6\x81\x14\x12\xfe\xe7\x1d\xbb\xe6\xc4\x65\x97\x1b\x83\x05\xaa\xa1\x5d\x70\x37\x94\x73\x4a\x9e\x1d\x79\x50\x34\xe2\x60\xef\x5e\xa8\xb2\x0a\x0f\x91\x57\x35\x73\x62\x0b\x8c\x9e\x6c\x48\xd6\xc1\x0b\x9d\x80\x14\x18\xa4\xcc\xa4\xbc\x5e\x04\x2e\x1c\x07\x00\xa1\x16\x72\x7f\xd6\xd4\xab\xe5\xbe\xba\xdb\x30\x5d\x09\x01\x61\x17\x95\x99\xbd\xa4\x63\x64\xd0\xb4\x2d\xcd\xeb\x4f\x08\xad\x7a\x42\x13\x0b\xd2\x84\x10\xe1\xb5\x02\x3c\x5a\xda\xe4\xde\x6d\x27\x19\xdb\x11\x9e\xe5\xec\x16\xdf\x2c\x02\x0d\x83\xe1\xa8\x85\x91\x97\x61\x7a\x30\x68\x27\x2d\x0c\xbe\x05\xf0\x40\xec\x8b\x77\x66\xf4\xe5\x16\x70\xb2\xcb\xba\xc2\x54\xb5\x46\x0d\x00\x0f\x35\x52\xe8\x30\x8d\xc6\xe6\x53\xc6\x2c\xfe\x7c\xea\x2d\x93\x16\x8a\x84\x85\x62\x5e\xa6\x17\x10\xfd\xed\xef\xbf\x7c\x1d\x79\xe6\x42\x05\xbf\x78\x1f\x15\xa3\x7f\x15\x00\xcb\xc5\x80\xea\x8e\xe9\x5e\x7c\x2b\xeb\xc8\xff\x88\x2f\x3a\x14\xa6\x1e\x44\x8b\x71\x31\xbe\x00\x81\xf0\xf8\x15\x48\x00\x19\x4e\x45\xff\xb6\x0c\xd8\x6d\x5c\x8d\x74\x87\x30\x31\x4c\x6f\xfd\x8a\x6c\x24\x09\xd0\xf9\x1a\xf3\x23\x1e\xc4\xab\xd7\xff\x90\x1c\xc2\x7f\xaf\x34\x84\xb3\x7a\x42\x09\x6e\xd3\x1b\xa1\xc8\x01\xf8\x63\xff\xc4\x8e\x0b\xc7\x62\x7b\x88\x60\xb5\x55\x9c\x4b\x92\x00\x2d\x37\xc5\xe7\xb1\xbe\xe3\x88\x87\x9e\x34\x7f\xea\x86\x11\xb6\x78\x61\xf2\xe8\x14\xf1\x94\x45\xf6\x0e\x7c\x8c\xb4\x2b\xce\x90\x7e\xd5\x62\x34\x21\x03\x60\x4e\xbf\xbd\x14\x72\x07\x61\x18\x9d\x93\x35\x9f\x04\xd0\x99\xda\xe8\x96\xd4\x99\x52\x70\x98\x3a\xaf\x08\xe8\xa1\x1c\x5c\xac\xad\x7d\x4e\x7a\xe8\x4c\x01\x7c\x33\x75\xfe\xa5\x81\x30\x75\x2a\xc0\xea\x21\x1b\x42\xa7\xf2\xa2\x13\x05\x14\x58\xac\x49\x3d\xfb\x38\x7b\xe8\x7a\x09\xed\x49\x1f\x9d\x4d\xb2\x76\x09\xec\xa1\xeb\x24\x6e\x27\x9a\xba\x1d\x37\x1a\x1a\xe2\x3e\x9d\x7f\xbd\xb3\x83\x33\xd6\x06\x45\x9b\xc6\x7b\x21\xbe\xeb\x4f\xda\xfb\x4d\xa3\xcd\xc9\x3e\x92\xc0\x1d\x04\x98\xb5\xd8\x1e\x03\x41\x77\x50\x50\xc6\x63\x4b\x0c\x12\xb8\x83\xc0\x26\x2b\x5c\x24\x91\x68\x42\xa8\x9c\x01\x4c\x34\x43\xf7\x62\x4c\xe4\x29\x40\xad\x87\xee\xc2\x6c\x45\xc4\xdc\x25\x82\xbb\x5e\xcc\x56\xf9\xf0\xae\x25\xcc\x93\x98\x22\x43\x7b\xbd\x8b\x9e\x73\xf7\x26\xb9\xa7\xcb\xd2\x7a\x8c\x32\x50\xb0\x1f\xa5\x5f\xd9\xf5\xed\xd6\x2e\xc4\x0e\x69\x4b\x94\xee\x6a\x4a\x77\x5d\x77\xf3\xc2\x22\xd8\x18\x91\x4a\x92\x90\x0c\x38\xb4\x24\xb6\x8a\x89\x97\xce\xe4\x8d\x45\x8b\x60\x08\x52\x5d\x58\x1c\x8a\x7b\x86\x87\x9d\xda\x51\xf2\xd7\xda\x32\x71\x18\xcd\x7a\xf9\xe4\xd3\xd2\x8a\x28\x87\x18\x1b\xaf\xbb\x0f\x1c\x6d\xb5\x12\x00\x6b\xe1\xdc\xc1\x1f\x45\x0a\x5e\x24\x0a\xc7\xe7\x01\x56\xa2\xd8\xa4\x14\xd1\x75\xba\x37\xf1\x0d\x5e\x79\xc5\x5f\x69\x9c\x14\x92\x04\x97\x77\xd3\x08\x9d\x8b\x4a\x13\x40\x71\xc5\x91\x79\x95\xdf\x0d\x68\xc6\x62\xa5\x82\x90\xe8\x26\xa7\x2c\x53\x37\x8b\x7d\x54\x83\xa6\x2e\xed\x90\x0c\xbb\x1e\x8a\x5c\xea\xab\xa6\xcc\x69\x1c\xb9\x5a\x24\x51\x27\xed\xb2\xc4\xcc\xd3\xbf\x57\x0e\x2f\x8e\xd9\x97\x8e\x5a\x28\xda\x08\xcf\x9c\xe3\x57\x18\xc8\xf0\xd7\x87\x87\xcb\xc7\x4e\x7a\xdd\x63\x86\x1e\xa8\x28\x58\xa4\x8f\xfb\xc1\xd1\x8e\x78\xcd\x07\x02\xde\xee\x2b\x8b\x21\x13\x60\xb2\xf3\x5b\xde\x8c\xeb\x7f\xcf\xf2\x01\x03\xd7\x1b\x11\xb6\xf1\x0b\x87\x3d\x1b\xaa\x13\x2a\x29\xe0\x91\x91\x49\x20\x1e\xf1\xdb\xe9\x32\xcd\x10\xcb\xa4\x4d\x78\x14\x10\x21\xad\x54\xe9\x13\xb8\x0f\x27\x88\x31\xd3\x40\xb7\x0a\xe4\x16\x61\x54\xd6\xa9\xcd\xea\x25\x04\x9f\xc4\x64\xd9\x52\x57\x98\x21\x71\x72\x4d\x6a\xd4\x1e\xe3\x56\x29\xe4\x77\x27\x25\x3d\xa3\x0a\xf3\x84\x26\x33\xa7\x28\xa9\xe4\xf2\x6c\xe7\x9d\x51\x14\xae\xeb\xc3\x1b\xb3\x7c\x77\x84\xfa\xb0\xc1\xbd\xdd\x9e\x9a\x4a\x33\x81\x6d\xf5\x1d\x46\xf0\xd4\xe5\x7c\x0c\xf4\x89\xe9\xd7\x47\x56\xb0\x35\x77\x9c\xec\x21\xd6\x33\xc2\xb2\x36\x76\x1b\xdc\xad\x3d\x3e\xf6\xcb\x5e\x81\xa2\x97\x1b\x0e\xe5\x85\x18\x0e\xf4\x82\xb6\xdd\x7c\xb1\xec\x97\x05\xb3\xb2\x6e\xdd\x98\xb1\x7f\xd8\xee\x38\xa7\x50\x76\xa9\x1b\x6a\x0d\xe2\x5c\x4b\xe5\xd0\xa9\x3f\xc8\xdf\xde\x31\x7e\x73\xe2\x56\x4b\x5c\x1e\x4c\xd7\x9c\xeb\x3a\x0c\x0a\x1d\xdf\x75\xbd\x2a\x0a\xef\x22\x7b\x54\x5f\x4f\x95\xeb\x30\x3d\xea\x7a\x1e\x68\xfd\x29\xb4\x03\xd3\x3b\x87\xfe\xe1\x15\x6d\xc8\x85\x6c\x21\xd9\xcd\x18\xbc\x9d\xaf\x93\x2b\x43\x7e\xc5\xf6\x93\x62\xd2\xf7\x59\x06\xce\xc9\xc8\x38\xd9\x79\xf9\x61\x49\x9b\x61\xf5\xc7\x7c\x5a\xd2\x23\x8e\xfa\x89\xc6\xce\x2e\x08\x41\xab\xa4\x8d\x81\x77\x33\x5a\xf8\xcf\x0d\x93\x0c\x09\x3a\xd3\xb3\x2d\x11\x5d\xa4\x9b\x88\xd8\x44\x74\x3b\xff\x30\x7a\xdb\xf9\xa7\x40\x6a\x17\xd4\x8f\x40\x87\xac\x83\x9b\x6e\x0c\xef\x46\xef\xa8\xa2\xae\xee\x75\x9c\x84\x4e\x77\x99\x5d\x49\x60\xf8\xad\xc5\xfa\xc3\x05\x7e\x7e\x7b\x6c\x53\xb7\xd7\x38\xee\xc6\xde\xa0\x38\x9b\xf3\xec\x1d\x22\xb4\x89\xe9\xaa\x7c\x62\x10\x7f\xcb\x0c\x10\x84\xf9\x66\x46\x44\x95\x60\xe3\x0b\x7f\xd6\xc1\x9c\xa6\x1e\x60\x38\xd6\xdd\xfb\xb4\x11\x20\x28\xc2\x6d\x6b\x19\x1b\x58\x06\x50\xfa\x6d\x51\x96\x98\x69\xd6\x84\xf2\x9c\x59\x5c\x48\xa8\x74\x05\xc6\x8e\xfb\xc9\x4a\x49\x0a\xbe\x3b\x4e\xda\x4f\x55\x4a\x08\x7c\xf7\x21\x9c\x44\x25\x2d\xa7\x35\xb7\x43\xc3\x39\x49\xc2\xa3\xda\x7c\x48\x93\x94\x94\x30\x68\x1c\xa6\xa9\x77\xd1\x20\x68\x17\x25\x30\xbc\xae\xf1\x3f\x18\x0e\x28\xe5\x6a\x57\xd3\x45\x21\x82\xca\xc5\x93\x65\xc3\xef\x21\xa2\xf8\x86\xbe\x5a\x33\x46\x5e\xfe\xdd\x10\x69\x04\x1d\x2f\x20\xbf\x25\x86\x80\x25\x8e\xb4\x7d\x74\x72\xb9\x32\x29\x1a\xcc\x7b\x3b\x1a\x8a\x79\xc6\x60\xb6\x35\x20\xdf\xce\x82\x64\x19\xa7\xb3\x97\x55\xd2\x3b\x7c\x13\x46\xdd\x7f\x56\xd7\x56\x1f\xd2\x42\x24\x49\x62\x8c\x73\xff\xcf\x0a\xa8\xb9\xe4\x9f\x15\x90\x7f\xe5\x04\x97\xe4\xde\xd0\xc3\x3f\x19\x62\x29\x1e\x9a\x9b\x2a\xf3\x6a\x72\xc5\x0c\xa7\x8a\xa2\x3e\xda\x5b\x76\xcb\x52\x2c\xf4\xd7\x5b\x1c\xfb\x13\x62\x85\x9c\xc3\x41\xd6\x31\x46\xcf\xea\xb7\x77\xe8\xf7\xe7\x41\x46\xd9\x69\xb6\xfc\x24\x76\x88\xac\x40\x6c\xe4\xc0\x51\xa8\x7b\xab\x55\xdc\x23\xbf\xdb\xd9\x19\xbb\xa0\x24\x5b\x68\x75\xcf\xee\x16\x70\x2f\x72\x60\x73\xb0\x5e\xfb\xa1\x17\x5f\x5d\xa9\x0f\x09\x6f\x50\x74\xeb\x62\xd3\x81\x2f\xf3\xc2\xc2\xd9\xea\x0a\xda\xce\x1f\x65\xf7\x00\xb3\xcd\xb5\x36\xf8\xff\x7f\x02\x00\x00\xff\xff\xa0\x4b\xa3\x69\x74\x48\x00\x00") +var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x3c\xed\x72\xdc\x46\x72\xff\xf9\x14\x23\xd8\x25\x62\x23\x72\x29\xca\xb9\x4a\x15\x97\xa4\x43\xd3\x74\x59\x39\xd9\x74\x44\x3a\x95\x2a\x86\xc5\xc2\x02\x43\x2e\x2c\x2c\xb0\x06\xb0\xa4\x78\x32\xdf\x20\x0f\x90\xe7\xcb\x93\xa4\x3f\xe6\x13\x18\xec\xae\x64\xfb\xec\x9c\xaf\x4e\x5c\xcc\xf4\xf4\xf4\xcc\xf4\xf4\x37\x70\x9f\xd4\x42\x66\x79\x5b\xd5\x93\x2d\xfc\x9d\x56\x65\x29\xd3\x56\x66\xe2\x48\xdc\x26\x45\x23\xb9\x79\x5a\x55\xef\xe6\x49\xfd\xae\x81\xe6\x0f\x4f\xdc\x96\xc9\xdb\x64\x59\xb4\x37\x75\xf5\xd0\xdc\x14\xf9\x3c\x6f\xa1\x73\xff\xe5\xcb\xc9\x16\x75\xdf\xe6\x45\x2b\xeb\xf3\x45\x9b\x57\x25\x0d\xdb\x12\x22\x92\x3f\x2f\x93\x22\x3a\x10\xf4\x5f\x74\x24\xb6\xbf\x3e\xb9\x3c\xd9\x8e\x76\xb0\xaf\xac\xda\x1b\xd3\x1f\x3d\xf3\x3b\xef\x6a\x99\x00\x3a\x1e\x1a\x1d\xeb\x3e\xe1\x76\xc2\x68\xe8\x8f\x8e\xfd\x91\x85\x6c\x1a\x3d\xa3\x88\x0e\x7b\x7d\x3c\x8a\xfa\x3a\x03\xf3\x77\xd2\x0e\x7c\xf3\xfa\xaf\x67\x5e\x77\xee\xf6\x47\xaf\x7b\xfd\xe5\xb2\x28\xec\xf0\xd7\x17\xe2\xfb\x1f\xdf\xbc\xb1\x2b\x35\xdd\xd4\x75\x7e\xc9\xdd\x5b\xb0\xb7\x5b\xb7\xcb\x32\xc5\x5d\x13\x8d\x6c\xdf\xc2\xe6\xbe\xc1\xbd\x8d\xcb\xe5\x7c\x44\x9b\x58\x54\x69\x52\x5c\xc0\x89\x25\x77\x72\x0c\x20\xaf\x5b\x39\x8f\x23\x7b\x0a\xd1\x8e\x40\xd8\xc9\xd6\x93\x83\xea\xce\x45\xc5\x78\x6a\xd9\x2e\xeb\x52\x2c\x92\xba\x91\xaf\xcb\x36\xf6\xf0\xde\x05\xf0\x8e\xc4\x2f\xbf\x04\x4e\xbd\x3f\xd3\x0f\xc9\x5d\x5e\x26\xf8\x74\x7e\x7b\x0b\x14\xaa\x09\x91\x2b\x16\x80\x5c\x00\x37\x7c\x1e\x47\xe3\x74\x59\xd7\xb2\x6c\x77\xb1\x2d\x1a\x8d\xb3\xa4\x4d\xe2\x88\x1f\x26\x0a\x5c\xb3\x95\x4f\xfe\xc4\x52\x1f\x13\xc2\x5d\xb1\x3f\x12\xff\xc4\xd0\x21\x6a\x64\x73\x5a\x2d\x61\x89\x48\x34\xfd\xb2\x04\x0d\xcf\x80\xbd\xb0\x91\xd0\x67\xb6\xc8\x8c\x17\x7b\x42\xaf\x1d\x20\xf3\x5b\x11\xe3\xf9\x68\x12\x46\xe2\x50\x74\xa6\x12\x88\xea\xc5\x0b\xc4\xfb\xb4\x65\xc9\x87\x46\x9f\xde\x64\x91\x9f\x26\x45\x11\xcf\x65\x3b\xab\xb2\x1d\x98\xba\x9d\xe1\xbf\x75\x32\x6f\x76\x44\x3a\x65\x6c\x9f\x8f\x93\x9f\x92\xf7\x31\x23\x5e\xd6\x05\x70\xfd\x1e\x8c\x8c\xc4\x0b\x1e\x40\xed\x8c\xe2\x40\xfd\xe5\xb6\x34\x49\x67\xf2\x80\x6f\x36\xb7\xe0\xae\x1f\xe8\x09\xa8\xa5\x59\xa6\x29\xdc\x0b\x80\x52\x44\xc5\x08\xa3\x97\x01\x38\xa6\xdc\x30\xa1\xe7\x27\x1e\x24\xeb\xba\xaa\x9d\x21\xef\x67\xf5\x8e\x68\xda\xa4\x5d\x02\xd9\xbd\xf1\x3f\xfd\xfb\x52\xd6\x8f\x63\xda\xd7\x7f\xbb\x38\xff\x1e\xc1\xc7\xb5\x6c\x16\x20\x2a\xe4\xa5\x7c\xdf\x8e\x34\x76\xdc\xaf\x3e\x83\x5d\x26\x53\xb8\xba\x31\x6e\x47\xef\xbf\x0f\x66\x0f\x23\x80\x84\xcb\x10\xed\xb5\x04\x0e\x3f\x3f\x3c\xd1\x1e\x4e\x00\x6f\x0f\x1d\x9e\x7e\x4c\x90\x3b\xa2\x5a\xb4\x6a\xb7\x87\xd1\xed\xe1\x6e\xd3\x4f\xf8\x1b\xed\xe1\x79\x47\xce\xc8\xe0\x1c\x17\x6d\xbd\x4c\xe1\xe0\xa5\x9e\x88\x57\xb0\xc1\x1c\xab\x69\x7f\x5d\x66\xf2\xbd\x6c\x7c\xac\x9b\xd3\x9e\xf3\xf0\x35\x1b\x74\x0a\x87\xd3\xd6\x49\x5e\xb6\xde\x44\x9b\x4e\x92\xda\xe1\xc3\x13\x7d\x9b\x37\x20\x80\x1e\x83\x27\x1b\x98\x68\xc6\xe0\xc3\xf8\xbe\xd2\x7a\x2b\x80\x31\x80\xcf\xa8\xb9\x61\x8c\x17\xa0\xa2\x64\x99\x06\xb9\x2f\x80\xb1\xd1\xe0\x3e\x46\x8b\x12\x3a\xab\x4c\xd2\x7d\x88\x7f\xc6\x7f\x3d\xe1\xfc\x00\x47\x53\x3d\x8c\xa7\x6d\x95\xa8\x5e\xff\x2e\xc0\xb1\xa5\xcb\xd6\x1d\x6e\x85\x84\xa1\x65\x51\x35\x4c\x0c\x01\x20\x21\x82\x7e\x1d\xf0\x1f\xa1\xc8\xea\x20\x5e\x14\x70\x56\x1b\x22\x56\xd0\x9b\xa1\x2e\xaa\x24\x53\x17\x58\x49\xb3\x38\xfa\x8c\x59\x06\xc4\x27\x28\x82\x5a\xce\xab\x7b\x19\xb3\x6c\xb5\xb7\x3d\x28\x8e\xf0\xf7\xf8\xb6\xaa\xcf\x40\xb0\x59\x88\x1c\x54\x97\x15\x38\x80\xff\xb0\xc8\x8f\x0f\x9b\x45\x52\x1e\x1f\xe6\x22\x2d\x92\xa6\x39\xda\xbe\x4d\x40\x0e\xee\xd2\xc4\xdb\xc7\x87\x7b\xf9\xb1\x40\x86\xc5\xa1\xc8\xaf\xe2\x70\x8f\xe1\xf7\x60\x28\x10\x95\x2c\x16\xb2\xcc\x2e\x2b\x43\x6b\xa4\x45\x14\xfd\xed\x0a\x29\x5c\xa4\x65\x15\xbb\x4e\xc3\x0f\xe1\xa5\xda\x21\xbf\xcf\x6a\x41\xfa\xdf\xd7\x55\xb9\x5b\xe7\x77\xb3\xf6\xe3\x56\x6d\x39\x79\xe5\xc2\x65\x93\x26\x0b\xf9\x6d\x3b\x2f\x62\xb8\xee\x4c\x16\xea\x47\x78\x10\x60\xd3\xa1\xd9\x83\x66\x84\x7a\x5c\x82\xe4\xb9\xcd\x4b\x99\x69\xfa\x15\xdf\xb3\x82\x80\x95\x64\xf9\xfd\x1e\x12\xd2\x82\x52\x20\x84\xe3\x19\xa2\x1e\x75\x15\x69\x44\xeb\xd5\x8b\xc5\x59\xb6\x8f\xf1\x5f\xb5\x9e\xc8\x27\x72\x59\x76\xc8\xd4\xd6\x80\x04\x6d\x9f\x55\xe9\x72\x0e\x76\xc9\x38\x25\xb3\xf2\xac\x90\xf8\x14\x47\x40\x0a\x2f\x5d\x8e\x73\x30\x92\xeb\x6f\x2f\xbf\x7b\x03\xe0\x30\xdc\xb1\x47\xe4\x38\x9d\xe5\x45\xf6\x3d\xdc\xe9\x66\x5c\xc8\xf2\xae\x9d\x89\xa3\xa3\x23\xf1\x52\x7c\x29\xa2\x48\x1c\x78\x00\x57\x2f\xaf\xc7\x25\xfc\xf8\x8f\xa4\x58\xca\x9e\x92\x3b\x65\xf3\x88\xb8\xdf\x37\xd9\x3e\x77\x98\x70\x9c\xb4\x6d\x0d\xc4\x01\x67\xec\x2a\x83\x8a\x0d\xb5\xa8\xb3\x66\x50\xaf\xd2\x43\x86\x58\xa0\x11\x8c\x39\x44\x43\xbb\xef\xe0\x9a\x03\x5d\x78\xb7\x75\x17\x1d\x80\x79\x62\xbe\x3d\xc5\xdd\x8e\x23\x39\x5f\xb4\x8f\xc1\x9e\xb2\xda\x4d\xeb\x6a\x11\x75\x78\x64\x21\x6b\x60\xe2\x39\x11\x73\xc2\x3c\xac\x14\x4a\x42\x4f\x3b\x42\x16\x96\x73\xb8\x0d\x76\x51\x44\xa0\x3e\xcb\x14\xce\x24\xc2\x05\x3a\xed\x99\x2c\x24\xb4\x6a\x26\xc2\x93\x9c\x83\x09\x83\xa6\x21\xf4\x9e\xd4\x52\x3c\x56\x4b\x30\x6c\xd4\x8f\x87\x04\x2c\xb8\xb6\x22\xce\x57\x58\x90\xf7\x59\x57\x79\x5a\x4b\x7c\x19\x31\xb3\x23\x21\xcf\x40\x85\xdd\xe6\xf5\x3c\x56\xb8\x47\x23\x75\x20\x86\x19\x9b\x87\xbc\x85\x9b\xc9\x38\x35\x35\x69\xd2\x48\x87\xf4\x03\x75\x4f\x3d\xd1\x1d\x5d\xbe\xfd\xf1\xfb\xd3\x93\xcb\x33\x71\x79\xf2\xd5\x9b\x33\xe1\xe8\xfd\x01\x2b\x8c\x49\x22\x81\x40\xb6\xd7\x48\x24\x85\xac\x5b\xb7\x65\x62\x40\xdd\xb3\xd7\xad\x4f\xe6\xd7\x14\xf8\xfc\xdd\xc4\xa1\x55\x6d\x67\x98\xd2\xaf\xdf\x9e\xff\xf0\xfb\x50\xe9\x2a\x06\xbf\xd5\x91\xa4\x9f\xbc\x28\xd0\x51\x55\xdd\x9a\x45\x91\x8b\x0a\x4c\x98\xa0\xf1\x2f\x0b\xe5\x7d\x70\x4b\x64\xb0\x28\x47\x56\x96\xc9\x1c\x59\xc9\xf0\xc5\x18\x97\xce\xc0\x2e\x28\x2b\xbd\x23\xad\xb6\x59\xb7\xff\xf8\xf6\x75\x1c\x5d\x9c\xbd\x39\x3b\xbd\x04\x07\xe1\x9b\xb7\xe7\xdf\xd9\x8d\xf3\x26\x02\x43\x1e\xd9\x75\xd6\xb6\x8b\x83\x3d\xb2\x9e\x14\x1e\xf4\xcc\x70\x73\xc7\x33\x50\xb8\x64\x4c\x81\x0a\x66\x6d\xfe\x25\x13\x71\x64\xe9\xc1\xfe\xe7\x9a\x66\x6e\xd7\x0b\xc0\x1e\x1a\x45\xcd\xf4\xcb\x9d\x1f\x66\x13\x96\xf8\x0a\x24\x7f\x0c\x24\x81\x0c\xb8\x99\x16\x49\xf9\xce\xee\x0a\x40\x80\x16\x4a\x97\xce\x71\x98\xed\x7e\xf2\x6e\x7a\x03\x5b\x7e\x02\xc7\xfc\x10\x67\x79\x2d\x9d\x6b\xc1\x37\x45\x74\x9b\xf5\x61\x9d\x5c\x9c\x9a\x93\xd2\x12\xfe\xf9\x67\xef\x5f\xfd\xe5\xab\x57\x93\xc8\x3d\xd5\xaf\xcf\x06\x21\x4f\x35\xa4\x72\x59\xbb\x50\x51\x9f\xdc\xe9\x12\x44\x33\xb3\x94\x92\x8c\x3b\xb4\x84\xd3\xaa\x58\xce\x4b\xfe\x7d\x5e\x67\xb2\xd6\xe2\xd8\xe5\x40\x25\xae\xd4\x40\xcd\xef\xbc\x2a\x54\xca\x6d\x7d\x7c\xd8\x66\xc7\x67\x6f\xdf\x9e\xbf\x3d\x20\x16\xf0\x40\xf1\x74\x0e\xf7\x10\x08\xff\xf1\x75\xaf\x11\xd3\x13\x8d\xcd\x91\xdc\x49\x96\xf9\x82\x78\xe2\x68\x52\x23\x9a\x48\x80\xe9\x09\xd1\x59\x09\x90\xf6\x7d\x05\xa3\xd2\xaa\xce\x1a\xe0\x25\x50\xcd\xbf\x23\x39\x1c\x6b\x2a\x30\x30\xc4\x07\x81\x0d\x48\x96\x6a\xe0\xdd\x25\x62\x53\xda\xfc\xa6\x6f\xf7\x40\x87\x5e\x04\xae\x0e\x1e\x49\xd5\xda\x03\x73\x7c\x4e\x9c\xea\x05\xa0\x3e\x04\x7d\xac\x8c\x04\x94\xd2\xf7\x72\x9b\x8c\xaa\xa3\x6d\x3c\x0f\xc4\x00\xa7\x40\xbf\x59\x0b\x22\xae\xdd\x0a\x4f\x9c\xae\x8c\x39\x7f\x04\x38\x76\x86\x3c\x2f\xa7\xcd\x62\xa2\x41\x98\xe3\x1d\x66\xe1\xa3\x9d\x1d\x47\xd6\xab\x05\xb1\x0a\x3e\x78\x98\xc0\x3e\x45\xee\x5c\x5d\x4c\x4f\x23\x6f\xbb\x70\x13\xfb\x7b\x05\xad\xae\x76\xac\xcd\xbe\x0b\x14\x1b\x22\xce\x05\x5c\x7e\x06\x82\x4e\x26\x24\x3b\x46\xf3\x8b\xa6\x76\xcc\x25\x00\xba\xca\xaf\xd5\x9a\xb0\x1f\xe8\xc9\x80\x1e\xb5\x2a\x3a\x43\x1e\x5f\xd3\x50\xcb\xd8\xd1\xc4\x52\x4b\x5c\x37\x93\x49\xa6\x57\xd6\xe8\xa5\x61\xdb\x61\x3b\xad\xb2\x47\x1e\x4e\xf8\xa8\xab\x9a\x62\xdb\x10\x27\x3e\xf9\x81\x33\x6b\x3d\xc5\x79\x66\x0d\x9e\x32\xb9\x17\xcb\x02\x8c\xef\x71\x03\x4a\x0e\x03\x9d\xc6\x0a\x57\x5c\x6b\xdb\x27\x6a\x0c\x19\xc8\x99\xcb\xd9\x2e\x8c\x37\xef\xac\x7a\x20\x35\xa9\xfd\x58\x9e\xd8\x71\x6c\x83\x7a\xd2\xe1\xfd\xab\x6b\xda\x1e\x3a\x15\x3e\x14\x5f\xa1\xd2\xe9\x2e\xcb\x66\x96\xdf\xb6\xf1\x95\x09\x4c\xe5\x78\x1e\xfb\x1c\x69\x81\xd3\x19\x2b\x8f\x4d\x3f\xb6\x39\x98\x2c\x6d\x32\x5f\x5c\x9b\xb8\x0a\xfd\x71\xe4\xdd\x07\xa1\xee\xd9\x81\xb8\x8a\xf2\x0c\x4d\x3f\xed\x2e\x46\x66\x78\x74\xbd\x43\x14\x1c\x30\xb9\xea\x2c\x45\x67\xbf\x23\x52\x6d\x37\xda\x39\x77\xa4\x44\x5e\x2e\x96\xa0\x5d\xc7\xb3\x3c\x33\x4a\x1b\xdb\xf1\xb4\xa1\x79\x01\xb6\x62\x1c\xd1\xf5\xc4\x69\x6f\x31\x44\xba\x46\xc6\x38\x16\x66\xdf\x17\xc1\xe3\xf0\xe2\x23\x36\xec\xa7\x14\x7a\xcf\xcc\x36\x62\x1c\x01\xac\x01\x2f\x5e\xea\x23\x60\xfb\x25\xfa\xa1\x90\xa8\x7f\x98\x11\x44\xc2\xda\xfc\xd9\x80\xb0\xeb\x86\x69\x10\xf7\x80\xc9\x14\xdc\x49\x1d\x9f\x51\xd8\x9d\x53\x53\x81\xb8\x3f\x7c\x83\xdd\xd8\xd0\x1f\xbc\xc9\x2e\x29\x1f\xbb\xd1\x6e\x8c\xea\xcf\xbb\xd9\xaf\xcb\xdb\xea\x8f\xda\xe5\x55\xb1\x3e\x6d\x63\xee\xe5\x40\xa0\x8a\x77\x05\xf7\x1e\x83\xff\x34\x6e\x17\x21\xd1\x68\x25\xa7\x1c\xb6\x67\x8c\x8b\x74\xf7\x92\xcf\xa5\xad\xda\xa4\xb8\x69\xf2\xbf\x49\x1d\x0a\x20\x07\xc2\x36\xf7\x46\x60\x7f\x7f\x80\x69\xed\xc1\xd3\x15\xeb\x0f\xb0\xcd\xbd\x11\x94\x00\x49\x31\xc2\xef\x8d\xb0\xcd\xbd\x11\xe4\x0e\xe4\xe5\x9d\x86\x8f\x7e\x2c\xdf\x95\xd5\x43\x69\x8f\x7b\xcb\xe5\xb7\x6f\x28\x81\xc6\x4c\xdc\x61\x85\xe5\x02\xe6\x92\x2a\xcd\x02\x8a\x62\x61\x12\x2e\xd6\x6d\x7e\xd6\x6d\x14\x6b\x92\x2e\x3b\x62\xdf\x7d\x6e\xa8\xc1\xac\x61\xba\x6c\x5b\xf0\x40\xd4\x30\xa6\x7f\x5f\x54\xb7\x62\xdf\x61\x6a\xe0\x79\x79\x4f\xa8\x77\xc4\xb8\x04\x18\x3d\x0d\xdf\x85\x2c\x6f\x70\x61\xa4\x5c\xcc\xef\x30\x9f\x05\x48\x65\x5b\xde\xa5\xd7\xae\x90\xe8\xea\x81\x34\x7d\x18\x7b\x36\x6a\x9b\x3a\xfd\xe2\x18\x53\x49\x1f\xfa\x0b\x0a\x2e\x42\x9d\xdc\x96\x67\xcc\xad\x1f\xe6\xaf\xfd\x69\x80\x14\x45\x2a\x52\x24\x9e\x3f\xef\x2e\x44\x1c\x0e\x2d\xcd\x21\x63\xf5\x11\x0c\x52\xff\x31\x27\xa7\x4f\xeb\x33\xbe\x8c\xca\x7f\xd0\x2c\xe2\x90\xd8\xb9\x18\x2b\x16\xcc\x32\x6a\xa8\x53\xec\x2b\xbb\x2c\xc0\x91\xdd\x3d\xc2\x08\x0e\xb0\x28\xe7\xc5\x06\xf8\x60\x48\x9f\xb5\x18\xf4\x5b\xe1\xfc\xfd\xdd\x45\x2f\x4e\x88\xe9\x25\x95\x4b\x17\x9c\x6b\xd4\x19\x66\x3f\x7f\xc9\x49\xb9\x8a\xb2\xaf\x07\x06\xa0\x9f\x97\x55\x19\x3f\x58\xd9\x0d\x9b\x7f\x07\xae\xbf\x6b\x3b\xc9\x05\x3a\x10\x76\x0f\x90\xa8\x89\xa6\x8a\x53\xfd\x86\x2e\x8d\x09\x59\x89\xbb\x1a\xb5\x44\xe5\xcb\xc1\x71\xdd\x27\x85\xa1\x72\xc1\x14\x06\xc0\xf9\xd1\x07\x27\xad\x7b\xe0\x83\x6b\x4d\x4c\x60\x86\xb4\xbd\x3d\x71\xb2\x58\x14\x8f\x8a\x3e\x90\xbc\xa2\x2a\xe1\x11\x0e\x86\xe9\x10\xb9\x9e\x49\x66\xea\xc0\x18\x54\xd1\x89\xd7\x4e\x35\x54\x0b\xd7\x58\x7f\x98\xc9\x1a\x0f\xfe\x4a\x59\xe5\xde\xa8\x1d\xaf\x51\x15\x40\x5c\x19\x3c\xd7\xe0\x6e\x2c\x8a\x24\x95\x71\x84\xd5\x02\x70\xa3\x54\x17\x2d\x62\x44\x83\xaf\xc7\x3f\x55\x79\x19\x47\x22\xd2\xf6\x06\x1e\xfc\x55\x44\xf3\x46\xd7\x18\xa4\xc1\x5f\x3d\xdb\x87\x72\x98\x6c\xf4\x70\x22\x72\x48\xfd\xba\xd6\x47\x3f\xe6\x3b\xc5\xbb\x2a\x3f\xdd\x70\x7f\xc8\xdb\xd9\xae\xbd\x70\x66\x11\x1d\x5b\x6a\x28\xb6\x32\x59\x69\xa0\xb5\x14\xe1\x66\x98\xae\x1e\x24\x0d\xec\xe8\xbd\x95\x66\x94\x4d\xc6\xfe\x41\x17\x3a\xb8\xc2\x46\x53\xc5\x83\xb6\x86\xf6\x7f\xbd\xa1\xe9\xf0\x85\x5d\xea\x0a\x8b\xb8\x6f\xe9\xfe\x2a\x53\x95\xfc\xe0\x1f\x92\x52\x16\x6a\x7f\x83\xcb\x65\x1f\x93\xd3\x2a\x54\x86\x64\x03\x8b\x9d\xa5\x5b\xcb\x70\x78\xe9\xd1\xa8\x47\xc6\x29\x17\x34\xc1\xe3\x5a\x5a\x52\x03\xaa\xb6\xaf\x67\xec\x3a\x10\x2b\xcc\xdb\x21\x77\xfe\x9d\x7c\x1c\x70\xe8\x17\xcb\x66\x16\x5f\x41\xbf\x72\xd9\xe1\xd7\xf5\x0a\x57\x5d\x0d\x75\x1c\x76\xbc\xc4\x39\x28\x44\xba\xbe\xf7\x98\x4e\x02\x57\xdd\x99\x81\x1d\x76\xc6\xf7\x11\x2e\x8c\x3d\x6e\xeb\xbd\x84\xce\x1a\x93\x38\xf7\x79\xbb\xfe\xb8\x13\x05\x38\xb4\xc1\xa6\x7f\xc5\xf6\x0e\xf3\xe9\x6f\xb0\x9a\x7a\xa9\x72\xde\x9b\xf0\xac\xe2\x45\x18\xb3\x23\x3e\x53\x39\x70\xf8\x95\x36\xf7\xf0\xef\x4f\x0d\x26\xb2\x3e\x7b\x3f\x2f\x42\x56\x14\x5c\x48\x69\x98\x99\x10\xde\x00\xcc\x5d\x8d\xc5\x6a\x96\xd7\xb7\xfc\xb4\xc2\xe7\x63\x38\xe5\x79\xac\x2e\x0a\xa5\x8b\x59\x79\x61\xc9\x4c\x4c\x59\x3f\xdb\x47\x49\xc5\x78\x64\x45\x17\x61\x09\xc9\xae\x4f\x5d\x03\x55\x11\x39\xdb\xdc\x5b\x86\x7b\x0e\x1d\xd9\x17\x2a\x5c\xd8\xf0\xb4\xff\x7e\x34\x87\xc5\x8f\xc7\x53\x5e\xe8\xd0\x91\xbc\xee\x96\xb7\xd5\x9b\xea\x41\xd6\xa7\xa0\x19\xe2\x11\xbb\x94\xe7\xb7\x71\xa4\x8b\x26\x46\x98\x08\xdf\xdd\xf7\x32\xf8\xeb\x45\xae\x11\x0c\x24\x6d\x50\x69\xed\xc5\x9c\xb0\xfe\x25\xab\xd1\x5a\x21\x5e\xdd\xcb\x15\x35\x60\x0b\xbd\x95\xb7\x80\x75\x26\x4c\xa9\x45\xd3\x22\x91\x9c\xd3\x7a\x48\x1a\x01\x33\xc9\x4c\x54\xb5\xca\xe1\x66\x9d\x65\x80\x9b\x9e\xce\xe2\x1a\xd3\x9e\x9a\xd2\x50\xc6\x2e\x98\xaf\x0b\xd5\x71\xc1\xf1\x9d\xf1\x16\xfc\xff\xb8\x6c\x7f\xf6\x0b\xd5\x2f\xd8\xf9\x87\xb9\x50\x9f\x6c\x88\x70\xd2\xf7\xb2\x8a\x39\xcc\x64\x0d\xbd\xdf\xe0\x94\x03\xee\xd9\x6f\x98\xc1\xb5\x79\xda\x7e\x85\xd8\x64\xcb\x26\x6c\x03\xf9\xda\x6d\xce\xd7\x6e\xf3\x1a\xd6\x99\x5d\x5e\x32\x37\x9c\x0c\xf5\x22\x51\x3a\xa3\xb1\xb9\x61\x69\x4a\x00\xc8\xd6\x09\xec\x24\x1f\xae\xb5\xdb\x85\x76\xec\x3a\xec\xf3\x64\x59\xd5\x01\xee\xba\x96\x54\x20\x14\x1d\x56\xe4\x78\x09\x32\x86\x8e\xb6\xb7\x8d\xa3\x77\xcc\x4a\x53\x59\x4f\x87\x7b\x0c\x77\x6c\xe4\x36\xa5\xc3\x80\x52\x0c\x1c\x18\xaa\x2d\xa5\x54\x25\x54\x70\x05\xb3\x9a\x83\x0a\x94\xd8\x8d\x62\xd3\x8b\x92\x24\x57\x2f\xaf\x55\x54\x42\x3d\x4c\xc2\x6b\xed\x92\xcf\xd9\xad\x58\x16\x2b\x44\x67\x5e\xe6\xed\x19\xb1\xac\xe3\xbb\x3c\xd4\xb9\x52\xa8\x97\xf9\x5c\x56\x4b\x8c\x95\x60\x09\x94\xb5\xad\xa1\x01\xfc\xce\x31\x3e\x80\xd1\xbc\x6c\xda\x6a\xee\xc9\x57\x75\x0b\x80\x63\xbe\x01\x3f\xeb\x22\xff\x9b\x8c\xf7\xbf\x70\x6d\x73\x4c\x77\xcf\xe4\x1c\x5c\x57\xc0\x83\xb9\xba\x39\xfc\x5b\xcd\x2b\xcc\x77\x46\x1d\xc0\x0b\xb8\xdf\x3f\x80\xd3\xdd\x7e\x97\xd4\xb0\xd8\xd8\x0a\x0a\xd7\x7e\x69\x1a\xe4\x96\x11\x0e\xf8\x0e\xb8\x9c\x11\xa3\x1f\xba\xb7\xb8\x6b\x7e\x2e\xa2\x55\x03\x80\x03\x89\xc6\x57\xab\x80\x7e\x6c\xe4\x45\x75\x8b\xb0\x4d\xac\xf4\x80\x05\x4e\xab\xf9\x3c\x29\xb3\x86\xc4\x89\xfa\x1d\x5f\xf1\x51\x23\x43\x1f\x88\x08\x64\xa2\xda\x23\xb6\xa7\xa7\x70\xdb\xfe\x2a\x1f\x0f\x0c\x43\xc0\xfd\x01\xb0\xd3\xb6\x2e\x76\xcf\x4a\x8c\x56\x68\xbb\x7b\x9e\xa4\xd8\xc1\x68\x55\x1f\x9f\xa8\x2a\x99\x06\x13\xc8\xa9\x98\x66\x92\x1c\xc7\xc0\x58\xa2\x0e\x1f\xec\x08\x8f\x38\x25\xaa\x37\x27\x70\x88\xb8\x8f\x24\xcc\xe8\x6d\x87\xb4\x6b\x6f\x67\x61\x5c\x94\xce\x92\x92\xe2\xb4\x06\x95\x2b\x11\x7a\xec\xea\x64\xeb\xc1\x8b\xae\x55\x6b\x00\xce\x13\x06\x21\xae\x47\xde\x50\xa3\x7b\x53\x0f\xbd\x3f\xb1\xb8\x7b\x90\x53\xbd\x91\x41\x33\x9a\x77\x08\xdf\x70\x79\xe9\x06\xec\x5d\x6d\x12\x7e\x85\xc2\x45\x6d\x62\x9f\x3c\xe4\xf9\x73\xe1\xe9\x97\x63\x2b\x14\xed\x4d\x62\x12\xac\xe8\xb7\xec\x8b\xfb\xc4\xe2\x8c\x96\xc8\xba\xc8\x7b\x9d\x20\xcb\xe0\x1e\xd6\x2d\xd8\xda\x97\x55\x55\xb4\xf9\x42\xe7\xe7\x38\x98\x71\x9f\xdf\x61\xe0\x64\xbc\x6c\x64\x7d\x72\x87\x45\x8f\xc6\x3c\x3d\xbf\x10\xff\x09\xb6\xe9\x71\xcf\xac\x31\xc2\xae\xcd\xdb\x82\x1c\x4e\x3d\xc5\x81\xf8\xdf\xff\xfe\x9f\x17\xcc\xe9\x8e\xd6\x36\x86\xee\x9a\x71\x43\xf1\xe8\x75\x93\x22\x6b\x7f\xd2\xac\x3c\x30\x0a\xec\x9b\x1f\x39\xb8\x90\x6d\x9b\x97\x77\x8d\x4d\xe7\xdb\xba\xf2\xa0\xc6\x03\x6b\xfb\xeb\x4a\x94\x55\x8b\x07\x20\x92\xf2\xd1\x79\x81\x0a\x36\xfe\x41\x6e\xdf\x4b\x71\x87\xdd\x25\xbf\x39\xe1\xeb\x49\xaf\x74\xc8\x35\x34\x0c\xd7\x23\xe8\xf9\xf4\x27\x54\x1c\xef\xe4\x63\xc3\x93\x07\x98\x88\x48\x01\xf2\xdd\xf9\x4b\x71\x57\x54\xd3\xa4\x40\xce\x55\x40\xee\xeb\x5d\x88\x4a\xa9\x42\xe5\x36\xa0\x41\x26\xc0\x4d\x07\xc1\x00\x3e\x03\x86\x51\x35\xbc\x60\x05\xd8\x38\x9a\xcd\x86\x48\x6e\x6c\x35\xbd\x56\xca\x46\xc9\x72\x70\x16\xf6\x86\x2c\x15\x85\xc6\x62\xe9\x2a\xef\x63\x47\x4d\xbb\xe5\x1f\xe1\xc9\xba\x73\x20\xe9\xc9\x7d\x92\x17\xe4\xe9\x18\x40\x05\x44\xfa\x3e\x18\x9a\x09\x91\x82\x06\x19\x02\x63\x51\x0e\x57\xe5\xa8\xa7\x8f\xa4\x90\xf1\x3f\x6d\xd9\x35\x8f\xdd\xed\x72\x8d\xe3\x40\xb5\x50\x17\xdc\x37\x92\xdc\x22\x1b\x97\x00\x36\x14\x1d\xec\xdd\x82\x63\xcb\xf0\x2d\x46\xcb\x1d\xdb\x02\x0d\x5b\x6b\x2d\x77\xf0\x42\xa7\x8e\xbd\x1b\xd3\x14\x55\xb8\x7e\xcd\xcb\x40\xee\xde\xd5\xd5\x72\xb1\xab\x6a\xff\x54\xfe\x86\xcb\xb0\xbc\x40\xb4\x7d\xff\xab\x69\x0a\xf5\xb6\x98\x3b\x21\xb4\xea\x09\x8d\x99\xce\x13\x82\xf1\xdd\xb4\xa0\xd1\x92\x3a\xf3\xaa\x81\xc9\xec\x66\x3c\x8b\xbb\x1b\x7c\xb2\x08\x34\x0c\x7a\x0a\x16\x86\x8a\x45\x7b\x30\x28\x27\x2d\x0c\x3e\x05\xf0\x80\x5b\x82\x35\xa5\xba\xf8\x13\x94\xec\xa2\x2a\x31\x9b\xa4\x51\x03\xc0\x43\x85\x14\x3a\x9b\xc6\x63\xb3\xa9\x10\x16\x7f\x36\xf5\x96\xa9\x92\x66\x40\x58\xd8\x88\x56\x0b\x88\xfe\xf2\xcf\x5f\xbc\x8a\x3c\x71\xa1\xfc\x12\x7c\x5f\x03\xdd\x32\xe5\x9b\xd0\x62\x80\x75\x0f\x38\x3f\xd6\x50\x9d\xd5\xbf\xe2\x83\xf6\x52\xb8\x07\xd1\xa2\xcb\x82\x0f\x40\x20\xfc\xfc\x12\x4e\x00\x37\x9c\x8b\xe2\x9a\x22\x20\xb7\xe9\xdd\x3a\x54\x87\x30\x31\x4c\x6f\xf5\x0a\x35\xf2\x09\x70\xe0\x03\xc3\x56\x1e\xc4\xfe\xab\x7f\x19\xbf\x84\xff\xed\x6b\x08\x67\xf5\x8c\x12\xd4\xa6\x37\x42\x91\x03\xf0\x47\x7e\x28\x05\x17\x8e\xc5\x68\x21\x82\xd5\x55\x71\x5e\x22\x00\x68\xba\x14\x9f\xc7\xfa\x1d\x00\xf4\x47\x93\xec\xb1\x6b\x46\xd8\x9c\xbe\x49\x48\xb0\xc5\x53\xe4\xe9\x3b\xd0\x31\x24\x57\x9c\x21\xfd\xc4\xe2\x68\xc2\x02\xc0\x84\x25\x7a\xd1\xff\x0e\xc2\x30\x3a\x27\x87\x31\x09\xa0\x33\x85\x43\x1b\x52\x67\xea\xa4\xc2\xd4\x79\xe5\x31\x1e\xca\xc1\xc5\xda\xaa\xa0\x49\x0f\x9d\x29\x10\x5b\x4f\x9d\x5f\x54\x17\xa6\x4e\x19\x58\x3d\x64\x43\xe8\x54\xb0\x7a\xa2\x80\x02\x8b\x35\xd9\x00\x1f\x67\x0f\x5d\x2f\xc7\x30\xe9\xa3\xb3\x91\xef\x2e\x81\x3d\x74\x9d\x68\xfa\x44\x53\xb7\xe5\x5a\x43\x43\xbb\xcf\xa1\x09\xcf\x77\x70\xc6\x5a\xa3\x68\xdd\x78\xcf\xc4\x77\xf5\x49\x73\xbf\x6e\xb4\x09\xba\x44\x04\xdc\x41\x80\xe1\xa4\xcd\x31\x30\x74\x07\x05\x87\xa2\x36\xc4\x40\xc0\x1d\x04\x36\x8e\xe4\x22\x89\xda\x3a\x84\xca\x19\x20\xda\x7a\xa8\x6e\xd4\x58\x9e\x2d\xb0\xf5\x50\xad\xe8\x46\x44\xcc\x5c\x22\xa4\xab\xc5\x6c\xba\x14\xdf\x45\x80\x79\xc6\x26\xef\xd3\x5c\x6d\xa3\xe6\xdc\xbe\x1e\xdf\xf3\xcb\x44\x7a\x8c\x12\x50\x70\x1f\x49\xaf\x6c\xfb\x72\x6b\x1b\x6c\x87\xa4\x61\x4a\xb7\x35\xa5\xdb\xae\xba\x79\x66\x11\xac\xb5\x48\x89\x24\x24\x03\x9c\x96\xb1\xad\x95\xc6\xa2\x6c\xaa\xe8\xb7\x08\x86\x20\x55\x41\xff\x90\xdd\x33\x3c\xec\xc4\x8e\xa2\x3f\x2b\x2b\x39\xc2\x68\x56\x9f\x4f\x36\x2d\xec\x11\x65\x60\x63\xe3\xeb\x60\x03\xae\xad\x66\x02\xd8\x5a\xf0\x3b\xe4\xfb\x36\x01\x2d\x12\x85\xed\xf3\xc0\x56\xe2\xb1\xd1\x29\xa2\xea\x74\xdf\x54\x33\x78\xe9\x15\x38\xc5\x71\x74\x48\x04\x4e\xb5\xdb\x8c\xce\x45\xa5\x09\x50\x31\x2b\xf3\x48\x61\x2b\xbd\xb1\x18\xa7\x62\x24\xba\xc9\xc9\x96\x55\xf5\x7c\x17\xd9\xa0\xae\x0a\x3b\x24\xc5\xae\x87\x3c\x23\x7e\xd5\x94\x39\x8d\x23\x97\x8b\x08\xf5\xb8\x59\x14\x18\x79\xfa\xaf\xd2\xd9\x8b\x23\xf1\x85\xc3\x16\x8a\x36\xc6\x33\x93\xf8\x96\x22\x6e\xf8\xab\x97\x2f\x17\xef\xa3\x6e\x14\xd0\xd9\x0c\x3d\x50\x51\x30\x4f\xde\xef\x06\x47\x3b\xc7\x6b\x5e\xa0\xf3\x6e\x5f\x91\x0f\x89\x00\x93\x36\xd9\xb0\x72\xbc\xff\xbe\xe7\x47\x0c\x5c\x2d\x44\xc4\xda\x37\x00\x77\xac\xa9\xce\xa8\xe8\x80\x47\x23\x3b\x7c\x4d\x21\xe0\x64\xe0\x1a\x29\x04\x9d\x5a\xd4\xa1\xad\x25\xd9\xf1\xbe\x05\x4b\x6a\xa9\xb2\xd6\x70\x4a\x77\x58\x92\xa4\x81\x6e\x14\xc8\x0d\xc2\xa8\xe8\x54\x93\x56\x0b\x30\x52\xf9\x30\xa8\xa5\x2a\x31\x92\xe2\xc4\xa4\xd4\xa8\x1d\x21\x7b\x91\x59\xfa\x0f\x59\x5d\x8e\x79\x32\xe3\x6d\xd1\x65\x20\x1f\xd0\xf3\x65\x14\x2e\x1b\xaf\x1d\x79\x23\xd4\x0b\x82\xee\x5b\x62\x89\x29\x12\x60\xb0\x8d\xde\x67\x0c\x7a\x67\xce\x4b\xb5\x7f\x32\x3e\xfc\xfd\x19\x71\x25\x83\xad\x28\x11\xb6\xce\xae\x27\xac\x29\xb9\x79\x13\xbc\xd5\xbd\x7d\xec\xe7\x2d\x03\x59\x4b\x17\x3b\xd6\x2e\x9a\x62\x34\x44\xdd\x2c\xa7\xfc\xa9\x95\xbe\xa6\x96\x54\xfd\x09\x6b\xf9\x9a\xdf\x3b\x8b\x3f\xf6\xd2\xa9\x77\xa3\x58\xcd\xeb\x7d\xbb\x05\x5b\x5e\x6f\x7f\xa7\x8c\xce\x2a\x7b\x53\x88\x17\x1c\xe5\x57\xd3\xd9\x51\x1c\x8a\x74\xaf\x84\x3b\xd8\xab\xad\x73\x65\x7a\xa8\xbe\xed\xda\xfa\x64\x54\xdc\x46\xf1\x43\x13\xe5\x24\xff\xdc\xb1\x02\x3a\x45\x53\x0b\x99\xe6\xb7\xba\x5a\x4f\x38\xf1\x52\xab\x27\x57\xaa\xf8\xce\xa9\x8d\x39\xfe\xbc\xab\x3e\x5e\xb3\x9a\x23\xdc\x4f\xc1\x2c\x6a\xf0\xd8\xfb\x74\x25\xa2\x94\x0f\x5c\xd8\xa3\xbf\xb3\xe3\x17\x5d\xba\x9b\xc3\xb8\x60\xe1\xfc\x03\xd4\x9c\x9f\xe0\x5f\xcb\x09\x0c\xe9\x7d\x01\x48\x7f\x71\x46\x75\x0d\xdc\x1c\x5f\xc2\x74\x8f\x3e\x1c\x97\xf7\xac\xcc\xfb\xa4\x70\x38\xa8\x1b\x7e\xb8\xe2\x0f\x1b\xed\x38\x5f\x31\xb2\x87\x0e\xc0\x23\x5c\xab\x9f\xd9\xeb\x95\x69\xf2\x0d\x26\xd4\x51\xb4\x3a\xca\xe5\x0d\x25\xe1\x11\x88\x8e\xd9\xe5\xaa\x98\x12\xbd\x98\xb9\x6b\x93\x88\x2b\x8f\xbe\x5f\x77\xba\x23\x82\x95\xa5\x86\xd6\x75\x9c\xe7\xa5\x32\xdd\x62\xea\xb5\x2c\xa8\xb8\x62\xb3\x0f\x24\x29\x8d\x86\x75\xd7\x62\xed\x37\x95\x1a\xaf\x30\x85\x07\x1d\xeb\xf9\x36\x67\x4d\x4d\xe0\x0b\x97\x49\x03\xdb\xa1\xba\xe8\xbd\x4c\x3b\x04\x05\x00\x4d\xed\x07\x59\x99\xd3\xd6\xbf\x23\xa0\xb9\xc4\x71\x39\x34\xf2\xe3\xee\xfd\xda\xa4\x70\xbf\xa7\x8e\xdd\x73\x73\x11\xfc\x96\xe7\xb6\x9e\xf4\x4d\xf6\x7f\xd7\xd9\xff\x4d\x2b\xfd\x57\x4b\x8d\x1e\x5d\x47\x1d\x99\xb5\xe9\x29\x75\xf6\x14\x73\x55\xc3\xc1\x94\xa0\xff\x64\x3e\x42\xe7\x17\x08\xa4\x45\xd5\xb8\x71\x99\x7e\x40\xbb\xa3\x1d\x42\x19\x9c\x6e\x38\x63\x10\xe7\x3a\x99\x11\x8c\xac\x07\x6d\x93\x5e\xa8\x7c\x7d\x72\xd4\x93\xbe\x2b\x62\xa7\x9d\x0d\x0a\x85\xc8\xf5\xf9\x0c\xb1\xbc\x09\x87\xaf\xa6\xca\x75\x4a\x87\x74\x03\x7b\x79\xab\x23\xbd\x1d\x98\x5e\xac\xf7\x57\xaf\x68\x4d\xbe\x61\x13\x6d\xb0\x16\x83\x67\x35\xeb\x04\xc6\x90\xef\x66\xfb\x99\x31\xf9\x1b\x21\x06\xce\xc9\x7a\x38\x19\x70\xfa\xb8\x41\x93\x62\x85\x85\xf9\xbc\x41\x8f\x38\xee\x67\x1a\x3b\xb7\x20\x04\xad\x12\x23\x06\xde\xcd\x1a\xe1\x7f\x6e\x28\xc2\x90\xa0\xb3\x29\x9b\x12\xd1\x45\xba\x8e\x88\x75\x44\x37\xb3\x8f\xa3\xb7\x99\xfd\x19\x48\xed\x82\xfa\x51\x9e\x21\xe9\xe0\xa6\xf4\x36\x30\xd4\xd4\xcb\x0a\x1d\xab\xbd\x67\xa7\x33\x98\x6f\x79\x87\x02\x78\xf8\x09\xa8\x23\x9b\x1e\xbd\xc2\x71\xd7\xb6\x7c\xf4\x74\x26\xd3\x77\x88\xd0\x26\x7f\xf1\x65\x9a\x59\xd2\x50\x96\x05\x0c\x2e\x33\x23\xa2\x1a\x63\xe3\x33\x7f\xd6\xc1\xbc\xa1\x1e\xe0\xaa\x34\xef\xee\xf3\x45\x18\x8d\xe9\xda\xc6\x1d\xa7\xc0\x5b\x06\x50\xfa\x4d\x5e\x14\x98\xcd\xd5\x84\xca\x4c\x58\x5c\x48\x28\xa9\x02\x23\xc7\xfd\x84\x20\x91\x82\xcf\x8e\x83\xeb\xa7\x03\x09\x02\x9f\x7d\x08\x27\x19\xc8\xcb\x69\xcc\xab\x2c\xe1\xbc\x1f\xe3\x51\x6d\x3e\xa4\x49\xfc\x11\x0c\x0a\x87\x69\xe2\x55\x59\x06\xe5\x22\x01\xc3\xe3\x0a\xfd\x83\xae\xf4\xa7\x79\xb0\x86\xeb\x58\x08\x3a\x5a\x80\xbe\x67\x05\x16\x83\xb6\xbe\x5d\xe3\x94\x13\x8f\xc1\xdc\xb2\xc3\xa1\x98\xcb\x0b\x66\x34\x03\xe7\xdb\x59\x10\x95\x4a\x74\xee\xb2\x7e\x31\x30\x58\x06\xac\x5e\x5d\x55\xbe\xdd\x43\x92\xb7\xe3\xf1\xd8\x08\xe7\xfe\xa7\xed\xd4\x5c\xf4\x69\x3b\xfa\xd2\x26\x2e\xc9\x7d\x35\x01\x3f\x5b\x69\x29\x1e\x9a\x9b\xab\xdf\xd4\xe4\x6a\x33\x22\xdf\x4e\x46\x44\xdd\xd2\x0f\x11\xfa\x20\xaf\x23\x7f\x42\x5b\xc1\x35\x87\x16\x59\x47\x18\x3d\xa9\xbf\x9e\xab\xe5\xcf\x83\x1b\x65\xa7\xd9\xf0\xb3\x4c\x43\x64\x05\x6c\x23\x07\x8e\x6d\xcd\x1b\xcd\xe2\x1e\xf9\xdd\xce\xce\xd8\x39\x27\xb2\x42\xab\x7b\x72\xaf\x80\x5b\x2c\x89\xcd\xc1\x9a\xa8\x8f\x7d\xdf\xc7\x3d\xf5\xa1\xc3\x1b\x3c\xba\x55\xb6\xe9\xc0\xd7\x61\xc2\x87\xb3\x51\xfd\xfd\xd6\xaf\xdd\xee\x81\xcd\x36\x85\xa9\xf0\xff\xff\x0b\x00\x00\xff\xff\x98\x60\x9f\x15\x47\x5a\x00\x00") func staticJsAppJsBytes() ([]byte, error) { return bindataRead( @@ -359,7 +359,7 @@ func staticJsAppJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/app.js", size: 18548, mode: os.FileMode(420), modTime: time.Unix(1452220956, 0)} + info := bindataFileInfo{name: "static/js/app.js", size: 23111, mode: os.FileMode(420), modTime: time.Unix(1452284119, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/static/css/app.css b/static/css/app.css index 0df1ca8..c8af50d 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -263,7 +263,6 @@ border-color: #64903e; } - #input .actions #query_progress { display: none; float: left; @@ -300,8 +299,90 @@ overflow: auto; } -#output.full { +#pagination { + display: none; + position: absolute; + width: 100%; + height: 50px; + padding: 10px; top: 0px; + left: 0px; + background: #fff; + border-bottom: 1px solid #eee; + box-shadow: 0 1px 3px 0px #f1f1f1; +} + +#pagination .pager-container { + float: right; +} + +#pagination .filters { + float: left; + font-size: 12px; +} + +#pagination .filters span { + display: inline-block; + float: left; + font-weight: bold; + line-height: 32px; + height: 32px; + margin: 0px 8px; + color: #999; +} + +#pagination .filters select { + font-size: 12px; + width: 100px; + float: left; + line-height: 30px; + height: 30px; + margin-right: 8px; + outline: none; +} + +#pagination .filters select.column { + width: 150px; +} + +#pagination .filters select.filter { + width: 100px; +} + +#pagination .filters input { + float: left; + width: 200px; + height: 30px; + line-height: 30px; + margin-right: 8px; + font-size: 12px; +} + +#pagination .filters .btn-primary { + border-color: #7eb54e; + color: #7eb54e; + background: #fff; + outline: none; + float: left; + margin-right: 8px; +} + +#pagination .filters .btn-default { + float: left; + outline: none; +} + +#pagination .btn-group { + float: right; +} + +#pagination .current-page { + float: right; + font-size: 12px; + margin-right: 12px; + color: #999; + line-height: 32px; + height: 32px; } #results { @@ -394,6 +475,20 @@ max-width: none; } +.full #output { + top: 0px !important; +} + +.with-pagination #output { + top: 50px !important; +} + +.with-pagination #pagination { + display: block; +} + +/* -------------------------------------------------------------------------- */ + #custom_query { height: 193px; margin-top: 12px; diff --git a/static/index.html b/static/index.html index 36ca072..24f7456 100644 --- a/static/index.html +++ b/static/index.html @@ -75,6 +75,35 @@
+ diff --git a/static/js/app.js b/static/js/app.js index 5ccb0c6..06fdff0 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1,6 +1,45 @@ var editor; var connected = false; var bookmarks = {}; +var default_rows_limit = 100; + +var filterOptions = { + "equal": "= 'DATA'", + "not_equal": "!= 'DATA'", + "greater": "> 'DATA'" , + "greater_eq": ">= 'DATA'", + "less": "< 'DATA'", + "less_eq": "<= 'DATA'", + "like": "LIKE 'DATA'", + "ilike": "ILIKE 'DATA'", + "null": "IS NULL", + "not_null": "IS NOT NULL" +}; + +function setRowsLimit(num) { + localStorage.setItem("rows_limit", num); +} + +function getRowsLimit() { + return parseInt(localStorage.getItem("rows_limit") || default_rows_limit); +} + +function getPaginationOffset() { + var page = $(".current-page").data("page"); + var limit = getRowsLimit(); + return (page - 1) * limit; +} + +function getPagesCount(rowsCount) { + var limit = getRowsLimit(); + var num = parseInt(rowsCount / limit); + + if ((num * limit) < rowsCount) { + num++; + } + + return num; +} function apiCall(method, path, params, cb) { $.ajax({ @@ -180,7 +219,7 @@ function showQueryHistory() { setCurrentTab("table_history"); $("#input").hide(); - $("#output").addClass("full"); + $("#body").prop("class", "full"); $("#results").addClass("no-crop"); }); } @@ -198,7 +237,7 @@ function showTableIndexes() { buildTable(data); $("#input").hide(); - $("#output").addClass("full"); + $("#body").prop("class", "full"); $("#results").addClass("no-crop"); }); } @@ -216,7 +255,7 @@ function showTableConstraints() { buildTable(data); $("#input").hide(); - $("#output").addClass("full"); + $("#body").prop("class", "full"); $("#results").addClass("no-crop"); }); } @@ -237,6 +276,39 @@ function showTableInfo() { $("#table_rows_count").text(data.rows_count); $("#table_encoding").text("Unknown"); }); + + buildTableFilters(name); +} + +function updatePaginator(pagination) { + if (!pagination) { + $(".current-page").data("page", 1).data("pages", 1); + $("button.page").text("1 of 1"); + $(".prev-page, .next-page").prop("disabled", "disabled"); + return; + } + + $(".current-page"). + data("page", pagination.page). + data("pages", pagination.pages_count); + + if (pagination.page > 1) { + $(".prev-page").prop("disabled", ""); + } + else { + $(".prev-page").prop("disabled", "disabled"); + } + + if (pagination.pages_count > 1 && pagination.page < pagination.pages_count) { + $(".next-page").prop("disabled", ""); + } + else { + $(".next-page").prop("disabled", "disabled"); + } + + $("#total_records").text(pagination.rows_count); + if (pagination.pages_count == 0) pagination.pages_count = 1; + $("button.page").text(pagination.page + " of " + pagination.pages_count); } function showTableContent(sortColumn, sortOrder) { @@ -247,13 +319,37 @@ function showTableContent(sortColumn, sortOrder) { return; } - getTableRows(name, { limit: 100, sort_column: sortColumn, sort_order: sortOrder }, function(data) { - buildTable(data, sortColumn, sortOrder); - setCurrentTab("table_content"); + var opts = { + limit: getRowsLimit(), + offset: getPaginationOffset(), + sort_column: sortColumn, + sort_order: sortOrder + }; + var filter = { + column: $(".filters select.column").val(), + op: $(".filters select.filter").val(), + input: $(".filters input").val() + }; + + // Apply filtering only if column is selected + if (filter.column && filter.op) { + var where = [ + filter.column, + filterOptions[filter.op].replace("DATA", filter.input) + ].join(" "); + + opts["where"] = where; + } + + getTableRows(name, opts, function(data) { $("#results").attr("data-mode", "browse"); $("#input").hide(); - $("#output").addClass("full"); + $("#body").prop("class", "with-pagination"); + + buildTable(data, sortColumn, sortOrder); + setCurrentTab("table_content"); + updatePaginator(data.pagination); }); } @@ -265,12 +361,13 @@ function showTableStructure() { return; } - getTableStructure(name, function(data) { - setCurrentTab("table_structure"); - buildTable(data); + setCurrentTab("table_structure"); + + $("#input").hide(); + $("#body").prop("class", "full"); - $("#input").hide(); - $("#output").addClass("full"); + getTableStructure(name, function(data) { + buildTable(data); $("#results").addClass("no-crop"); }); } @@ -280,7 +377,7 @@ function showQueryPanel() { editor.focus(); $("#input").show(); - $("#output").removeClass("full"); + $("#body").prop("class", "") } function showConnectionPanel() { @@ -299,7 +396,7 @@ function showConnectionPanel() { }); $("#input").hide(); - $("#output").addClass("full"); + $("#body").addClass("full"); }); } @@ -309,7 +406,7 @@ function showActivityPanel() { apiCall("get", "/activity", {}, function(data) { buildTable(data); $("#input").hide(); - $("#output").addClass("full"); + $("#body").addClass("full"); }); } @@ -333,7 +430,7 @@ function runQuery() { $("#run, #explain, #csv, #json, #xml").prop("disabled", false); $("#query_progress").hide(); $("#input").show(); - $("#output").removeClass("full"); + $("#body").removeClass("full"); if (query.toLowerCase().indexOf("explain") != -1) { $("#results").addClass("no-crop"); @@ -369,7 +466,7 @@ function runExplain() { $("#run, #explain, #csv, #json, #xml").prop("disabled", false); $("#query_progress").hide(); $("#input").show(); - $("#output").removeClass("full"); + $("#body").removeClass("full"); $("#results").addClass("no-crop"); }); } @@ -388,6 +485,21 @@ function exportTo(format) { win.focus(); } +function buildTableFilters(name) { + getTableStructure(name, function(data) { + if (data.rows.length == 0) { + $("#pagination .filters").hide(); + } + + $("#pagination select.column").html(""); + + for (row of data.rows) { + var el = $("