diff --git a/internal/backend/api/user.go b/internal/backend/api/user.go index 41b5b21..4cc3a05 100644 --- a/internal/backend/api/user.go +++ b/internal/backend/api/user.go @@ -19,7 +19,7 @@ func (h *Handler) SelectUsers(w http.ResponseWriter, r *http.Request, ps httprou // Fetch from database users := []model.User{} err := h.db.Select(&users, - `SELECT id, username, name FROM user ORDER BY name`) + `SELECT id, username, name, admin FROM user ORDER BY name`) checkError(err) // Return list of users @@ -31,9 +31,6 @@ func (h *Handler) SelectUsers(w http.ResponseWriter, r *http.Request, ps httprou // InsertUser is handler for POST /api/user func (h *Handler) InsertUser(w http.ResponseWriter, r *http.Request, ps httprouter.Params) { - // Make sure session still valid - h.auth.MustAuthenticateUser(r) - // Decode request var user model.User err := json.NewDecoder(r.Body).Decode(&user) @@ -48,8 +45,39 @@ func (h *Handler) InsertUser(w http.ResponseWriter, r *http.Request, ps httprout panic(fmt.Errorf("username must not empty")) } - // Generate password - user.Password = randomString(10) + // Generate password if needed + if user.Password == "" { + user.Password = randomString(10) + } + + // Start transaction + // Make sure to rollback if panic ever happened + tx := h.db.MustBegin() + + defer func() { + if r := recover(); r != nil { + tx.Rollback() + panic(r) + } + }() + + // Prepare statements + stmtCountAdmin, err := tx.Preparex(`SELECT COUNT(id) + FROM user WHERE admin = 1`) + checkError(err) + + stmtInsert, err := tx.Preparex(`INSERT INTO user + (username, name, password, admin) VALUES (?, ?, ?, ?)`) + checkError(err) + + // If admin already exists, make sure session still valid + var nAdmin int + err = stmtCountAdmin.Get(&nAdmin) + checkError(err) + + if nAdmin > 0 { + h.auth.MustAuthenticateUser(r) + } // Hash password with bcrypt password := []byte(user.Password) @@ -57,11 +85,13 @@ func (h *Handler) InsertUser(w http.ResponseWriter, r *http.Request, ps httprout checkError(err) // Insert user to database - res := h.db.MustExec(`INSERT INTO user - (username, name, password) VALUES (?, ?, ?)`, - user.Username, user.Name, hashedPassword) + res := stmtInsert.MustExec(user.Username, user.Name, hashedPassword, user.Admin) user.ID, _ = res.LastInsertId() + // Commit transaction + err = tx.Commit() + checkError(err) + // Return inserted user w.Header().Add("Content-Encoding", "gzip") w.Header().Add("Content-Type", "application/json") @@ -97,6 +127,9 @@ func (h *Handler) DeleteUsers(w http.ResponseWriter, r *http.Request, ps httprou stmtDelete, err := tx.Preparex(`DELETE FROM user WHERE id = ?`) checkError(err) + stmtCountAdmin, err := tx.Preparex(`SELECT COUNT(id) FROM user WHERE admin = 1`) + checkError(err) + // Delete from database for _, id := range ids { var username string @@ -110,6 +143,15 @@ func (h *Handler) DeleteUsers(w http.ResponseWriter, r *http.Request, ps httprou h.auth.MassLogout(username) } + // Make sure at least one admin exists + var nAdmin int + err = stmtCountAdmin.Get(&nAdmin) + checkError(err) + + if nAdmin == 0 { + panic(fmt.Errorf("at least one admin must exists")) + } + // Commit transaction err = tx.Commit() checkError(err) @@ -135,8 +177,10 @@ func (h *Handler) UpdateUser(w http.ResponseWriter, r *http.Request, ps httprout } // Update user in database - h.db.MustExec(`UPDATE user SET username = ?, name = ? WHERE id = ?`, - user.Username, user.Name, user.ID) + h.db.MustExec(`UPDATE user + SET username = ?, name = ?, admin = ? + WHERE id = ?`, + user.Username, user.Name, user.Admin, user.ID) // Return updated user w.Header().Add("Content-Encoding", "gzip") diff --git a/internal/backend/auth/auth.go b/internal/backend/auth/auth.go index 490e5b5..7edebf1 100644 --- a/internal/backend/auth/auth.go +++ b/internal/backend/auth/auth.go @@ -46,50 +46,32 @@ func (auth *Authenticator) Login(username, password string) (string, model.User, defer tx.Rollback() // Prepare statements - stmtGetUserCount, err := tx.Preparex(` - SELECT COUNT(id) FROM user`) - if err != nil { - return "", emptyUser, fmt.Errorf("failed to prepare query: %w", err) - } - stmtGetUser, err := tx.Preparex(` - SELECT id, username, name, password + SELECT id, username, name, password, admin FROM user WHERE username = ?`) if err != nil { return "", emptyUser, fmt.Errorf("failed to prepare query: %w", err) } - // Get count of user - var nUser int - err = stmtGetUserCount.Get(&nUser) - if err != nil { - return "", emptyUser, fmt.Errorf("failed to get user count: %w", err) - } - - // Get user from database + // Fetch user from database var user model.User - if nUser > 0 { - err = stmtGetUser.Get(&user, username) - if err != nil && err != sql.ErrNoRows { - return "", emptyUser, fmt.Errorf("failed to get user: %w", err) - } + err = stmtGetUser.Get(&user, username) + if err != nil && err != sql.ErrNoRows { + return "", emptyUser, fmt.Errorf("failed to get user: %w", err) + } - if err == sql.ErrNoRows { - return "", emptyUser, fmt.Errorf("user doesn't exist") - } + if err == sql.ErrNoRows { + return "", emptyUser, fmt.Errorf("user doesn't exist") + } - err = bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(password)) - if err != nil { - return "", emptyUser, fmt.Errorf("username and password don't match") - } + // Make sure its password matched. + err = bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(password)) + if err != nil { + return "", emptyUser, fmt.Errorf("username and password don't match") } // Save user to session manager expTime := time.Duration(0) - if user.ID == 0 { - expTime = 15 * time.Minute - } - session, err := auth.sessionManager.RegisterUser(user, expTime) if err != nil { return "", emptyUser, fmt.Errorf("failed to register user: %w", err) diff --git a/internal/backend/backend.go b/internal/backend/backend.go index aa559cc..5aede56 100644 --- a/internal/backend/backend.go +++ b/internal/backend/backend.go @@ -39,7 +39,7 @@ func ServeApp(db *sqlx.DB, port int) error { return fmt.Errorf("failed to create authenticator: %w", err) } - uiHdl, err := ui.NewHandler(auth) + uiHdl, err := ui.NewHandler(db, auth) if err != nil { return fmt.Errorf("failed to create UI handler: %w", err) } @@ -54,6 +54,7 @@ func ServeApp(db *sqlx.DB, port int) error { router.GET("/", uiHdl.ServeIndex) router.GET("/login", uiHdl.ServeLogin) + router.GET("/register", uiHdl.ServeRegister) router.GET("/js/*filepath", uiHdl.ServeJsFile) router.GET("/res/*filepath", uiHdl.ServeFile) router.GET("/css/*filepath", uiHdl.ServeFile) diff --git a/internal/backend/ui/assets-prod.go b/internal/backend/ui/assets-prod.go index b3b7848..4b73550 100644 --- a/internal/backend/ui/assets-prod.go +++ b/internal/backend/ui/assets-prod.go @@ -21,11 +21,11 @@ var assets = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2020, 3, 5, 7, 26, 9, 520145794, time.UTC), + modTime: time.Date(2020, 3, 24, 1, 56, 48, 237117311, time.UTC), }, "/css": &vfsgen۰DirInfo{ name: "css", - modTime: time.Date(2020, 3, 17, 7, 19, 28, 896793890, time.UTC), + modTime: time.Date(2020, 3, 24, 2, 2, 24, 427111290, time.UTC), }, "/css/_chartist.css": &vfsgen۰CompressedFileInfo{ name: "_chartist.css", @@ -55,6 +55,13 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x55\x6d\x6e\xdb\x30\x0c\xbd\x8a\x57\xa0\x40\x53\x54\x81\xb3\xa1\x03\x26\x5f\x62\x40\x0f\x10\xc8\x96\x6c\x73\x91\x44\x83\xa2\xf3\x51\x23\x77\x1f\xfc\x51\xd7\x72\xdb\x0d\xfd\x39\xec\x4f\x10\x92\xe2\xd3\x23\xf9\x28\xdf\x77\x39\x92\x36\x24\x4e\xa0\xb9\x96\x69\x26\x4e\x26\x3f\x00\x8b\x1c\xcf\x22\xc0\x33\xf8\x4a\x4e\x27\x72\x3c\x67\xef\x7b\x4b\xf4\x2c\x4a\xe5\xc0\x5e\xe4\xcd\x13\xb6\x54\x98\xe4\x49\xf9\x90\xfc\x24\xbc\x79\x08\xca\x07\x11\x0c\x41\x99\x39\x45\x15\x78\x99\x66\x8d\xd2\xba\x07\x49\x33\x36\x67\x16\xda\x14\x48\x8a\x01\xbd\xf4\xe8\xcd\xb5\x66\x67\xbb\x5c\x15\x87\x8a\xb0\xf5\x5a\x14\x68\x91\xe4\x51\xd1\x9d\x10\xaa\x69\x44\x5e\x6d\xae\x5b\x8b\x15\xf8\x4e\x43\x68\xac\xba\xc8\x05\xef\x6c\xf6\xb9\x20\x4a\x6b\xce\x4b\x5f\x6f\x47\x45\x22\x81\xf1\x2c\x8f\x86\x18\x0a\x65\xa3\x98\x06\x32\xc5\x44\x8b\x5c\x1f\x9c\x10\x45\x69\xf1\x24\x0b\xb4\xad\xf3\x89\xc7\x13\xa9\x26\xfb\xc8\x3f\x76\x76\x97\xa6\xc7\x53\x56\x1b\xa8\x6a\x1e\x8c\x3a\x73\xea\x2c\x96\xc1\xde\x8e\x0e\xe0\xd1\xd0\x00\x58\x83\xd6\xc6\x4f\x25\xef\xf7\x39\xea\xcb\x3f\x50\xf8\x12\x50\x59\xa8\xbc\x2c\x8c\x67\x43\xaf\x60\x91\x77\x30\x04\xb0\x71\x61\x3e\xb8\x40\x68\x54\x71\x78\x03\xb0\x74\xfe\x6a\x03\x43\x79\x11\x05\x7a\xee\x0b\x9b\xdc\xab\x26\xce\xd2\xdb\x91\x71\xc9\xf0\x13\x8b\xbe\xc7\x95\xbb\xf9\x0a\xb9\x4b\xd2\xec\xe5\xcf\x3c\x01\x43\x84\xf4\xf0\x62\x95\x48\xee\x23\xb9\x4e\x6c\x7a\xc9\x8e\x7b\x12\xe0\xd9\xc8\xed\x0f\x32\x6e\xd4\x7e\xd4\x83\x17\x72\xdb\xc7\x3e\x3e\xae\x98\xdc\x35\xe7\x24\xa0\x05\x9d\x8c\x90\xa3\x7b\xf3\x2a\xac\xdb\x85\x94\xbe\x3d\xa6\xcd\x79\x25\xa5\xdb\x98\xf7\x2c\x9d\xdc\x62\x71\xc8\xa2\xe5\xb2\x86\x78\xe4\xbf\x99\xb6\x55\xe4\xc8\x8c\x6e\xe8\xd7\x35\xaa\xf8\x7f\x50\xe0\xac\x1e\xd5\x32\x46\xe5\x27\xf7\xd2\x23\xdf\x49\xab\x02\x8b\xa2\x06\xab\x37\x5d\xdc\xb1\x61\x88\x73\x8e\xc5\x0a\xbb\x77\x47\xf6\x75\x1a\xd9\xf0\x36\x0e\x49\x49\x3a\x29\x33\xf9\x02\xae\x41\x62\xe5\x79\x06\x02\xdf\xb4\xdc\x39\xf0\xf3\x9b\x1d\x3d\x24\xb7\x4b\x5d\xac\x15\x17\xeb\x2b\xd6\xe9\x30\xf3\xbf\x48\xee\x8d\x62\x63\x56\x52\x0a\x87\xcf\x22\x18\x3b\xce\xee\xa3\xa5\x70\x0a\xfc\x66\x9d\xfa\xc9\xac\xbc\x65\x46\xdf\x0d\x8c\x98\x94\x0f\xfd\x50\x64\xdb\x34\x86\x0a\x15\xcc\x58\xfa\x69\xdc\x81\xef\x69\xba\xca\x4b\x42\xa3\x7c\x87\x2d\x5b\xf0\x66\xfc\xe8\x6c\x15\x33\x41\xde\x0e\x14\xe2\x15\xf9\x73\x1b\xdf\xae\xf1\x92\xb5\x05\x7f\x98\xba\x1b\x5d\xb1\xdf\xf7\x91\x6e\x45\xf3\x13\xa9\xb2\xee\xc5\xf9\xf0\x4e\xa0\xc4\xa2\x0d\xdd\xba\x75\x42\x2b\x3a\x6c\xae\xbf\x03\x00\x00\xff\xff\x84\xf0\x52\x1c\xf2\x07\x00\x00"), }, + "/css/_register.css": &vfsgen۰CompressedFileInfo{ + name: "_register.css", + modTime: time.Date(2020, 3, 24, 2, 15, 50, 177096861, time.UTC), + uncompressedSize: 2194, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x55\xdb\x6e\xdb\x30\x0c\xfd\x15\xaf\x40\x81\xa6\xa8\x02\x67\x43\x07\x4c\xfe\x89\x01\xfd\x80\x40\xb6\x69\x9b\x8b\x24\x1a\x14\x9d\x4b\x8d\xfc\xfb\xe0\x4b\x13\x3b\x97\x0d\x7d\x1c\xf6\x12\x44\xa4\x79\x7c\x48\x9e\x23\x3f\xb7\x29\x71\x0e\xac\x76\x98\x4b\xa5\xe3\x44\xed\x20\xdd\xa0\xa8\x94\xf6\x2a\xe0\x3b\xfa\x52\x8f\x4f\xa4\xb4\x4f\x6e\x47\x0b\xf2\xa2\x0a\xe3\xd0\x1e\xf4\xc3\x1b\x35\x9c\x41\xf4\x66\x7c\x88\x7e\x32\x3d\xbc\x04\xe3\x83\x0a\xc0\x58\x24\xce\x70\x89\x5e\xc7\x49\x6d\xf2\xbc\x03\x89\x13\x81\xbd\xa8\x1c\x32\x62\x23\x48\x5e\x7b\xf2\x70\xac\xc4\xd9\x36\x35\xd9\xa6\x64\x6a\x7c\xae\x32\xb2\xc4\x7a\x6b\xf8\x49\x29\x53\xd7\x2a\x2d\x17\xc7\x25\x43\x89\x41\x80\xdb\x1c\x43\x6d\xcd\x41\x4f\xa8\x27\xa7\x98\x0b\xaa\xb0\xb0\x9f\xc6\xba\xf3\xac\x4f\x62\x04\x2f\x7a\x0b\x2c\x98\x19\x3b\xcb\xe5\xc8\x90\x8d\xcc\xd8\x75\xc9\x11\x51\x15\x96\x76\x3a\x23\xdb\x38\x1f\x79\xda\xb1\xa9\x93\x7b\xf1\x61\xb8\xab\x38\xde\xee\x92\x0a\xb0\xac\xa4\x3f\x54\x89\x33\x7b\x35\x4d\x76\xe7\xd9\x03\xb4\x05\xee\x01\x2b\xcc\x73\xf0\xe7\xae\xd7\xeb\x94\xf2\xc3\x3f\xd0\xfb\x14\xd0\x58\x2c\xbd\xce\xc0\x0b\xf0\x19\x6c\x16\xed\x0f\x0a\x05\x5c\x38\x3d\x38\x41\xa8\x4d\xb6\xb9\x02\x98\x06\x7f\x35\x41\xb0\x38\xa8\x8c\xbc\x74\x8d\x8d\xe1\x8b\x39\x9e\x04\xb8\x62\x70\x51\xff\x33\x97\x7e\x87\xab\x57\xa7\x57\xe8\x55\x14\x27\x1f\x7f\xa6\x4b\x00\x66\xe2\x97\x49\xa0\x20\x76\xf7\xa4\x3b\x72\xea\xe4\x3b\x78\x26\xe0\x3b\xe8\xe5\x0f\x06\x37\xf8\x60\x36\x89\x0f\x8a\xcb\xd7\x2e\x3f\xd8\x4d\xaf\xea\x7d\x14\xc8\x62\x1e\x0d\x90\x43\x78\x71\x56\xd8\xe3\x44\x53\xdf\x5e\xe3\x7a\x7f\xa1\xa9\xc7\x2b\xf6\x27\x0d\xa5\x96\xb2\x4d\x32\xf3\x9a\x05\x96\xa1\x85\xc5\x68\x5e\x95\x92\x08\xb9\x7e\x70\xc7\xcb\xbe\xff\x07\x35\x9e\x94\x64\x1a\xa1\xcb\x09\x44\xcf\xda\x93\x3c\x69\x6b\x82\xa8\xac\x42\x9b\x2f\xda\xf9\xdc\xfa\x6d\x4e\xcb\x2c\x95\xd4\xde\x5c\xdf\xd7\x71\x7d\xfd\x9d\xd9\xd7\x45\xf1\xa8\xd5\xe8\x0b\xba\x9a\x58\x8c\x97\x29\x96\xa0\x58\xf8\xb8\xd1\x85\xea\xbb\x72\x99\x2e\xb9\x57\xe2\xb8\xe3\xb3\x2a\x57\xcb\x57\x70\x53\x59\x8d\x72\xec\x61\xaf\x9a\x40\x5f\x37\xd2\x3a\xf4\xa7\xef\xc8\xec\x66\x7b\x9c\x02\x5d\x2a\x7f\xae\xf3\xb9\x5f\x7a\x52\x7f\x91\xfe\x95\x73\xae\x88\x69\xad\x1c\xbd\xab\x00\x76\x10\xd0\x3d\x7f\x3a\x83\x7e\x71\xa3\xfa\xf3\x85\x69\x23\x42\xbe\xed\xa9\x09\x1b\x1f\x3a\x71\xe8\xa6\xae\x81\x33\x13\x60\x98\xc1\x6e\x30\xe5\xf7\x38\xbe\x2e\x8d\x42\x6d\x7c\x4b\x8d\x58\xf4\x30\x7c\x14\x97\x46\x84\x31\x6d\x7a\x22\x73\xcf\xfe\x79\xa4\xd7\x57\xcb\x94\xbb\x45\xbf\x19\x27\x3d\x7b\xc5\x7a\xdd\x65\xda\x0b\xa6\x9f\x28\xd5\x55\x67\x95\x97\x1b\x89\x82\xb2\x26\xb4\x97\x03\x54\xb9\xe1\xcd\xe2\xf8\x3b\x00\x00\xff\xff\xae\x0f\x82\x7c\x92\x08\x00\x00"), + }, "/css/_source-sans-pro.css": &vfsgen۰CompressedFileInfo{ name: "_source-sans-pro.css", modTime: time.Date(2019, 12, 15, 7, 35, 15, 64000000, time.UTC), @@ -309,7 +316,7 @@ var assets = func() http.FileSystem { }, "/js": &vfsgen۰DirInfo{ name: "js", - modTime: time.Date(2020, 3, 20, 1, 31, 2, 344711483, time.UTC), + modTime: time.Date(2020, 3, 24, 1, 58, 21, 27115649, time.UTC), }, "/js/components": &vfsgen۰DirInfo{ name: "components", @@ -615,17 +622,17 @@ var assets = func() http.FileSystem { }, "/js/i18n/english.js": &vfsgen۰CompressedFileInfo{ name: "english.js", - modTime: time.Date(2020, 3, 21, 5, 16, 58, 703974048, time.UTC), - uncompressedSize: 2489, + modTime: time.Date(2020, 3, 24, 3, 36, 46, 867009887, time.UTC), + uncompressedSize: 2549, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\x4d\x6f\xe3\x38\x0c\x3d\xb7\xbf\x82\x28\x0a\xcc\x6e\x31\x45\xef\x7b\x59\x04\xe9\xc7\x66\x37\x49\x83\x69\xe7\xb0\x18\xcc\x81\xb1\x59\x47\x58\x59\x34\x24\x3a\xa9\xff\xfd\x42\xb2\x64\xcb\x9e\x74\xe6\x26\x52\x12\xf9\xf4\xf8\x48\xd1\x7b\xc3\x56\xa0\xa4\x37\x6c\xb5\x80\xa1\x13\x6c\xb0\xf9\xed\xdb\xe5\xc5\xdd\x1d\xac\xb9\x40\x4d\x80\xa6\x84\x9a\x8d\x1c\xc0\x60\x4d\x97\x17\xdf\xae\x74\xd8\xb8\xfa\x0c\x57\x64\x6e\xbf\xbe\x5c\x7d\xff\xec\xbd\x7f\xa3\x89\xab\x47\xda\xc7\xd5\x06\x6d\x5c\x2d\x1a\x3b\xf8\xba\x74\xa3\x35\xc3\x4a\xa7\x73\x6d\x15\x57\x2f\xd4\xc4\xd5\x73\x21\x71\xb5\xe5\x63\x5c\xdd\x53\x31\xe6\x6d\xd1\x76\x63\x6e\x9b\x99\x1b\xb4\xc5\x61\x84\xa0\xf4\x39\x10\x34\xa2\xe8\x46\x18\xad\x93\x11\x89\x50\xbd\x27\x3b\xe2\xe1\xd1\xda\xf2\x31\xdf\xbc\xa7\x62\x30\x03\x8d\x4b\xae\x6b\x36\x50\x2a\xd4\x5c\xc1\xbe\x15\x61\xe3\x0f\xfe\x4b\x6e\x88\x90\x02\xff\x13\x17\x4b\x34\x05\xe9\x21\xc4\x9a\x2b\x65\xc0\x15\x96\x28\x5c\xfd\xea\xc8\xfa\x62\xc4\xd3\x3b\x74\xee\xc4\xb6\x8c\x66\x38\x9d\x22\x5a\x55\x29\x83\x1a\x34\x57\x0c\xfb\x0e\xae\xb1\x95\x03\x5b\x78\xb3\x5c\xc3\xf5\x89\xf6\x4e\x09\xc5\x44\x37\x97\x17\x37\xb0\x5b\x3c\x3d\xbc\x5c\x5e\xdc\xdc\xf5\xa9\xbf\x30\x0b\x34\x58\x11\xdc\xde\xa6\x37\x88\x12\x4d\x31\x13\xb7\x89\xa5\xe5\x01\x4d\x45\x30\x03\x13\xbd\x6b\x34\x55\x8b\x55\x8f\xf8\x83\xb0\x05\x1b\x21\x23\x31\x30\x70\x2b\x3d\x4a\x39\x10\x60\xd3\x68\x55\xa0\x28\x36\xf0\xe7\xd9\x20\xc2\xac\x45\x35\xfe\xf6\x5f\x3c\x50\xb3\x61\x43\x1d\x14\x07\xb4\x09\xa6\xe7\x0e\x6a\x34\x58\x51\x4d\x66\x06\xbe\x39\x0b\x5e\xff\x0c\xfc\x62\xb7\x82\x9a\x9c\xc3\x2a\x50\xe2\x5b\x28\x45\x81\x92\xc9\x99\x4f\x02\x35\x4a\xaf\xc2\x70\xdd\xc3\xfb\x90\xd2\x2d\x9d\x60\x51\x14\xdc\x0e\xd0\x1e\x4a\x25\x33\xd7\x3d\x69\x12\x9a\x9f\x33\x62\x3b\x78\xed\x9a\xf4\x76\x1f\x6a\x65\x8a\x91\x0c\xef\x78\x78\x6f\xc8\xb8\xdc\xf3\x6a\xd1\xb8\xb7\x41\xbf\x21\xdd\xe4\x5a\xf0\x4c\xef\x05\xd7\xec\x62\x04\x15\x60\x24\xa6\xce\x3d\x35\x2b\xf3\x8e\x6c\x8d\x86\x8c\xe8\x0e\xca\xfe\xfa\xb5\x01\xec\x9f\xe5\x62\xa1\x3f\x3a\x46\x46\xac\xa2\x78\x2a\x64\x0b\xa5\xfd\x19\xb1\xfe\x40\xfe\x82\xcc\x8e\xe8\x33\xcf\x17\x72\x24\x53\x39\x7f\x90\xe3\x97\x2f\x6a\x1d\xd9\xf1\x39\x7d\xe0\x41\x24\x6f\x6c\xe1\xda\x77\xf3\x28\xec\x49\x92\x99\xc0\xc2\x9e\xc3\x23\x95\x70\x52\x72\x18\xe3\x5c\xcf\xc4\xbb\xcd\x94\xf8\xc7\x74\x37\xf5\xfa\xf2\x79\xb3\x7b\xde\x3e\x6c\x5f\xb3\x86\x8f\xa2\x82\xa5\xef\x99\x7e\x3a\xf5\xfd\x03\x25\x0a\x02\x1e\x51\x69\xdc\xeb\xa4\x84\x35\x3a\x81\x8e\x86\x39\xbf\xa5\xf7\xd1\x9e\x04\x5c\x2b\x17\xe2\xe5\x76\x5e\x0c\x3c\x27\xf1\xa9\xd3\x3f\x69\xe6\xe1\x51\x2e\x96\x2a\xe5\x84\x2c\x95\x43\xee\xbe\x27\x74\xcc\xdc\x5b\xf3\xbc\x34\x08\x76\xc8\x9a\xbb\x7c\xce\x89\xcd\x83\xf2\xa6\x09\x43\x65\x0b\x52\xbe\x32\xfd\x74\xcd\x46\x74\xea\x15\x4b\x25\x08\x4f\xb6\x1e\x95\x75\xfd\x38\x49\x72\xb7\x74\x54\xdc\xba\xdc\x17\x68\xcd\xec\x40\x7b\x66\x3f\x31\xec\xb1\xf8\x6f\xda\x0a\x89\xf1\xc1\xc8\x9f\xdd\xce\x95\xee\x1d\x9f\xdc\x7c\x04\x46\x46\xb2\xd3\x9e\x90\xdc\xe4\x28\xef\x1f\xe8\x0f\x12\xbb\x5f\x2d\xd6\xcf\x4f\x99\xbe\xd2\x4f\xd0\x17\xa4\xd2\xca\xa5\xff\x79\x65\x4a\x36\xe4\x14\xce\xca\xe7\x47\x5a\xbf\x9f\x0f\xa5\xc9\x3c\xca\x47\x51\xb8\xf9\xc8\xb6\x4e\xca\x0b\x28\x47\xbe\x57\x46\x89\x42\x0d\x58\x27\x1d\x8d\x37\x42\xc2\x20\xd2\xfa\x87\xc9\x5a\xa2\xd0\x40\x8a\x2b\xac\x6a\xfc\x6f\x94\x00\xa0\xad\x68\x16\xcc\xd3\x3e\xff\xad\xc7\xdd\x34\x58\xc2\x2f\xad\xcb\x39\xef\x79\xf7\x0e\x65\x6a\x08\x43\x8e\xef\xbf\xff\x1f\x00\x00\xff\xff\xa4\x50\xb5\x35\xb9\x09\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\x5f\x6f\xe3\x36\x0c\x7f\x6e\x3e\x05\x51\x04\xb8\xad\x68\xd1\xf7\xbd\x0c\x41\xfa\x67\xdd\x92\x34\xb8\xb6\x18\x86\xc3\x3d\x30\x36\xeb\x08\x93\x45\x43\xa2\x93\xe6\xdb\x0f\x92\x25\x5b\xf6\xa5\xb7\x37\x91\x12\xc9\x1f\xc9\x1f\x69\xd3\x47\xc3\x56\xa0\xa4\x77\x6c\xb5\x80\xa1\x23\xac\xb1\xf9\xe5\xdb\xec\xe2\xf6\x16\x56\x5c\xa0\x26\x40\x53\x42\xcd\x46\xf6\x60\xb0\xa6\xd9\xc5\xb7\x4b\x1d\x2e\x2e\xaf\xe1\x92\xcc\xcd\xdb\xcb\xe5\xf7\x6b\xaf\xfd\x13\x4d\x3c\x3d\xd0\x2e\x9e\xd6\x68\xe3\x69\xd1\xd8\x5e\x77\x4a\x16\xad\xe9\x4f\x3a\xbd\x6b\xab\x78\x7a\xa1\x26\x9e\x9e\x0b\x89\xa7\x0d\x1f\xe2\xe9\x8e\x8a\x21\x6e\x8b\xf6\x34\xc4\xb6\x99\xb8\x46\x5b\xec\x07\x08\x4a\x9f\x03\x41\x03\x8a\xd3\x00\xa3\x75\x32\x20\x11\xaa\x77\x64\x07\x3c\x3c\x48\x1b\x3e\xe4\x97\x77\x54\xf4\x62\x28\xe3\x92\xeb\x9a\x0d\x94\x0a\x35\x57\xb0\x6b\x45\xd8\xf8\x87\xff\x90\xeb\x3d\x24\xc7\x7f\xc5\xc3\x12\x4d\x41\xba\x77\xf1\x95\x2a\xe5\x84\x6c\xe8\x85\xe6\x4a\x19\x70\x85\x25\x0a\x7e\x56\x5e\x8e\x76\xe9\x61\x72\x8c\x75\xca\xed\xcd\x91\x35\x83\xb8\x45\xe7\x8e\x6c\xcb\xde\xae\x21\x14\x68\xc6\xda\xbf\x49\x17\x5c\xd3\x75\xe0\x45\xeb\x86\xfc\xad\xaa\x94\x41\xed\xa1\x30\xec\x4e\x30\xc7\x56\xf6\x6c\xe1\xdd\x72\x0d\xf3\x23\xed\x9c\x92\x2e\xd2\xcf\xc0\xc3\xcd\x0d\x2c\xb6\x4f\x50\x93\x73\x58\x05\x66\xf9\x40\x09\x04\x94\x4c\xce\x7c\x11\xa8\x51\xba\x1e\xce\x2e\x6e\xaf\x66\x17\x57\xb0\x5d\x3c\xde\xbf\xcc\x2e\xae\x6e\x63\x75\x98\x3d\xf4\x8a\xbc\xc3\x58\x66\x51\xa2\x29\x56\x87\xdb\xd4\xc8\xe5\x1e\x4d\x45\x30\x49\x3e\x6a\x57\x68\xaa\x16\xab\x01\xf7\x19\xb7\x05\x1b\x21\x23\xd1\x31\x70\x2b\x5d\xce\xb2\x27\xc0\xa6\xd1\xaa\x40\x51\x6c\xe0\xf7\xb3\x4e\x84\x59\x8b\x6a\xbc\xf5\x1f\xdc\xb7\x62\xcd\x86\x4e\x50\xec\xd1\x4a\xd6\x2b\xa8\xd1\x60\x45\x35\x99\x09\xf8\xe6\x2c\x78\x9d\x81\x0f\x81\x7d\x80\x4f\x8b\xb2\xa1\x23\x2c\x8a\x82\xdb\xde\xf9\x7d\xa9\x64\xa2\xba\x23\x4d\x42\xd3\x77\x46\xec\x09\x5e\x4f\x4d\x42\xef\x5d\x3d\x99\x62\x48\xc7\x2b\xee\x3f\x1a\x32\x2e\xd7\xbc\x5a\x34\xee\xbd\x67\x50\x08\x37\x32\x0b\x9a\xb1\x5d\x50\x4d\x0c\x23\xa8\x00\x23\xd5\xf8\x5c\xaa\x59\xa3\xb6\x64\x6b\x34\x64\x44\x9f\xa0\xec\xcc\xe7\x06\xb0\x4b\xcb\xc5\x56\x7d\xf6\x8c\x8c\x58\x45\xf1\x55\x88\x16\x9a\xf3\xb3\xc2\xbe\xb9\x71\x9a\x99\x1c\xd1\x67\x9a\xaf\xe4\x48\xc6\x84\xfc\x24\xc6\xff\x66\xe4\x07\x74\x48\xa7\x73\xdc\xcf\xd2\x3b\x5b\x98\xfb\xf9\x1f\xa8\x39\x0a\x32\x99\xc3\x70\xe7\xf0\x40\x25\x1c\x95\xec\x07\x3f\xf3\x09\xfd\x36\xd9\xc0\xfe\x36\xbe\x4d\xd3\xba\x7c\x5e\x6f\x9f\x37\xf7\x9b\xd7\x6c\x64\x23\xa9\x60\xe9\x59\xdf\xad\xc0\x6e\x02\xa0\x44\x41\xc0\x03\x2a\x8d\x3b\x9d\x98\xb0\x42\x27\x70\xa2\xfe\x63\xb2\xa1\x8f\x41\x1e\x39\x5c\x29\x17\xfc\xe5\x72\xde\x0c\x3c\x47\xf1\xb1\xd2\xa7\x34\xd1\xf0\x40\x17\x1b\xb7\x19\x95\x7d\xec\x6e\x26\x74\x8c\xdc\x49\xd3\xb8\xd4\x13\xb6\x8f\x9a\xab\x7c\xcc\x91\xcc\x3d\xf3\xc6\x01\x43\x67\x0b\x52\xbe\x33\xdd\xb6\xcd\x96\x7a\x9a\x15\x4b\x25\x08\x8f\xae\x1e\x94\x75\xdd\x22\x4a\x74\xb7\x74\x50\xdc\xba\x5c\x17\xca\x9a\xc9\xa1\xec\x99\xfc\xc8\xb0\xc3\xe2\xdf\xf1\x28\xa4\x8a\xf7\x42\x9e\x76\x3b\x65\xba\x57\x7c\x71\xd3\x25\x16\x2b\x92\xbd\xde\x8c\xbf\x38\x1b\x8e\xf4\xfe\xa1\xfc\x81\x62\x77\x4f\x8b\xd5\xf3\x63\xc6\xaf\xb4\xcb\xbb\x86\x54\x5a\xb9\xf4\x13\xf0\x64\x4a\x36\xe4\x14\x4e\xda\xe7\x57\x5a\x77\x9f\x2f\xa5\xd1\x3e\xca\x57\x51\xb0\x7c\x60\x5b\x27\xe6\x75\xb6\x4a\x14\x6a\xc0\x3a\x91\x67\x78\x16\xa2\x04\x66\xd6\x3f\xac\xd3\x12\x85\xfa\x4a\xb8\xc2\xaa\xc6\x7f\x44\x52\x54\xb4\x15\x4d\x9c\xa5\x7d\x11\x3e\xc6\xba\x9c\x96\x33\x1f\xca\xd1\x07\xde\x0b\xdf\x7f\xfd\x2f\x00\x00\xff\xff\xb9\x13\xe6\x5d\xf5\x09\x00\x00"), }, "/js/i18n/english.min.js": &vfsgen۰CompressedFileInfo{ name: "english.min.js", - modTime: time.Date(2020, 3, 21, 5, 16, 58, 793974048, time.UTC), - uncompressedSize: 1708, + modTime: time.Date(2020, 3, 24, 3, 36, 46, 947009885, time.UTC), + uncompressedSize: 1750, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xdb\x6e\xdb\x30\x0c\xfd\x15\x22\x08\xd0\x0d\xe8\x7e\x60\x7b\x18\x8a\xa6\xdd\xba\x35\x69\xd1\xcb\xc3\x50\xf4\x81\x91\x19\x47\x98\x2c\x1a\x12\x9d\xd4\x7f\x3f\x58\x37\xdb\x69\xf7\x44\x1f\x89\xe4\xa1\x78\x48\xd3\x5b\xcb\x4e\xa0\xa2\x1d\x76\x46\xc0\xd2\x11\xd6\xd8\x7e\x7a\x79\x59\x18\x56\x68\x68\x71\xbe\x20\xfb\xe5\xf9\x71\xf1\x7a\xfe\xb2\xf8\x85\x36\xd8\x6b\xda\x06\xbb\x46\x17\xec\x45\xeb\x12\xee\xa3\x5f\x67\x93\x35\xf1\xbe\xab\x83\x7d\xa4\x36\xd8\x3b\x25\xc1\x6e\xf8\x10\xec\x8a\x54\xce\xdf\xa1\xeb\x33\x87\x2b\x60\x8d\x4e\xed\x33\x95\x36\xa7\x64\x94\xd9\xfa\x4c\xd7\x79\xc9\x8c\x42\xcd\x96\x5c\xe6\xe5\xfc\xbd\xe1\xc3\x78\xb1\x22\x35\x82\x3f\xe4\x93\x47\x0c\xfa\x1d\xcc\x25\x5a\x45\x91\xf9\xd9\x93\xb3\xd8\x44\xd6\x7b\xf4\xfe\xc8\xae\x0a\xe0\x96\x6b\x1d\x9f\x7e\xe7\x74\xad\x2d\x1a\x30\x5c\x33\x6c\x7b\x58\x62\x27\x7b\x76\xb0\x73\xdc\xc0\xf2\x48\x5b\xaf\x85\x72\x10\x77\xb1\xdc\xcb\x3d\xda\x9a\x60\x96\x33\x9d\xdd\xa2\xad\x3b\xac\x4b\x08\x70\x27\x31\x99\xec\x09\xb0\x6d\x8d\x56\x28\x9a\x2d\x7c\x0f\x2e\x3f\x39\x15\xb8\x66\x4b\x3d\xa8\x3d\x3a\x29\xd5\x43\x83\x16\x6b\x6a\xc8\xce\x78\xdb\x0f\x78\xcd\x94\x77\x18\x8f\xec\x04\x15\x93\xb7\x67\x02\x0d\x4a\x12\x67\x43\x47\xb8\x50\x8a\xbb\x94\xf6\xaa\xd2\x32\x3b\x58\x91\x21\xa1\xb9\x8f\x15\xd7\xc3\x53\xdf\x52\x49\x71\x63\x55\x2e\x7e\x80\x57\x6f\x2d\x59\x3f\xe2\x27\x87\xd6\xef\x92\x58\x81\x62\x12\x10\xf0\x34\x22\x1c\xcc\x42\x52\x11\x81\x38\x4a\x48\xae\x41\x4b\x56\x4c\x0f\x55\xbc\x5c\x5a\xc0\x58\xa4\x4f\xfd\xfc\xd8\x89\xac\x38\x4d\xd9\x67\xa8\x6e\x68\xef\x48\x5c\x50\x22\x2d\xf8\x81\x3c\xc9\x5c\xe8\x8f\x19\x3a\x4f\x2e\xe7\x8f\x41\x45\x80\x1d\x3b\x58\x0e\x83\x98\xae\x83\xb2\x1e\x0f\x54\xc1\x51\xcb\x7e\x74\x5c\xce\x84\xdd\x4c\x44\xfc\x7a\x7a\xc7\x71\x52\xa0\x42\x41\xc0\x03\x6a\x83\x5b\x93\x86\x0e\xbd\x40\x4f\x69\xe7\x37\xf4\x36\x41\x49\x51\xb8\xd5\x7e\x22\x3d\xbe\x97\x7e\x7a\x34\x14\x32\xc3\x3c\x36\xdd\x51\xad\xbd\x90\xa3\x6a\x32\x25\xf3\xec\x54\x04\x4c\xb9\xc7\x83\x21\xf3\x04\x71\xd1\xe9\x24\xed\x03\x29\xd2\x43\xbf\xe2\x56\x96\xa5\xce\xf3\xe2\xa8\x02\xe1\xc9\xc5\xb5\x76\x7e\x50\x20\xed\xc3\xbd\xa3\x83\xe6\xce\x8f\x27\xa1\x2d\x05\x85\x96\x15\xf4\x83\x61\x8b\xea\xef\xa8\xd5\xfc\x3d\xdd\x7c\x36\x06\x78\xe6\xe7\x3b\x99\x1e\x5a\x3c\x87\x77\x8e\x80\xd3\xb0\xbc\xeb\x5d\x6d\xb4\x8f\x1b\x7a\x63\x2b\xb6\xe4\x35\x26\x34\xee\xcd\x64\x65\x66\xdb\xb2\xc9\x4f\xbf\xb1\x5a\x34\x1a\xc0\xa6\x08\x76\xd1\x9c\xac\x71\x85\xe9\x9f\xb6\x22\xaf\x9c\x6e\x87\xff\x51\x4c\x89\xae\x26\x79\xff\xf7\xbc\x33\x15\xfc\x77\x38\x53\x33\x5a\x42\x59\xbc\xbe\x7e\xfe\xf6\x2f\x00\x00\xff\xff\xeb\xa7\x19\x49\xac\x06\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xdb\x6e\xdb\x3c\x0c\x7e\x15\x22\x08\xd0\xff\x07\xba\x17\xd8\x2e\x86\xa2\x69\xb7\x6e\x89\x5b\xf4\x80\x61\x28\x7a\xc1\xc8\x8c\x23\x4c\x16\x0d\x49\x4e\xea\xb7\x1f\xac\x83\x2d\xa5\xd9\x15\xfd\x51\x24\x3f\x9a\x27\x7a\xef\xd8\x38\xa8\x69\x87\xbd\x72\xa0\xe9\x08\x1b\xec\xfe\x7b\x7d\x5d\x28\x16\xa8\x68\x71\xb9\x20\xfd\xe9\xe5\x69\xf1\x76\xf9\xba\xf8\x81\xda\xcb\x5b\xda\x7a\xb9\x41\xe3\xe5\x55\x67\x22\x1e\x82\x5d\xaf\xa3\x54\xe1\xbd\x6f\xbc\x7c\xa2\xce\xcb\x7b\xe1\xbc\xac\xf8\xe0\xe5\x8a\x44\x8a\xdf\xa3\x19\x12\x87\x99\xc0\x06\x8d\xd8\x27\x2a\xa9\x4e\xc9\x28\xb1\x0d\x89\xae\xb7\x2e\x31\x3a\x6a\xb7\x64\x12\x2f\xa7\xef\x8a\x0f\xf3\xc3\x8a\xc4\x0c\x7e\x93\x8d\x16\xc1\xe9\xa7\x17\xd7\xa8\x05\x05\xe6\x35\x37\x32\xfc\xe0\x23\x35\xd2\xba\x14\x11\xdb\x90\xc8\x8b\x25\xa3\x13\x78\x40\x6b\x8f\x6c\xea\x68\xdf\x11\x3a\xe8\x72\xdd\x2f\x52\x82\x5b\xba\xf4\xb5\xef\x6d\x4a\xd5\xc8\x46\x6a\x54\xa0\xb8\x61\xd8\x0e\xb0\xc4\xde\xed\xd9\xc0\xce\x70\x0b\xcb\x23\x6d\xad\x74\x81\x61\xf4\x4b\x11\xa1\x66\xb2\xfa\xc2\x41\x8b\x2e\x56\x6c\xcd\x0d\xf7\xa1\x1a\xd7\x7b\xd4\x0d\x41\x91\x52\xd4\xad\x51\x37\x3d\x36\x94\x5c\x80\x7b\x17\xb8\xdc\x9e\x00\xbb\x4e\x49\x81\x4e\xb2\x86\xaf\xde\xe4\x3b\xc7\xff\xdb\xb0\xa6\x01\xc4\x1e\x8d\x9b\x7e\x1e\x5a\xd4\xd8\x50\x4b\xba\xe0\xed\xce\xf0\xaa\x9c\xb7\xa2\x23\x5c\x09\xc1\x7d\xf4\xbb\xa9\xa5\x2b\x14\x2b\x52\xe4\xa8\xb4\xd1\xce\x0c\xf0\x3c\x74\x73\x88\x3b\x2d\x52\x76\x23\xbc\x79\xef\x48\xdb\x19\x3f\x1b\xd4\x76\x17\xeb\xec\x29\x32\x07\x8f\x73\x0f\xaf\x28\x5c\x62\x12\x9e\x38\xb4\x98\x4c\x8b\x9a\xb4\x53\x03\xd4\xe1\x71\xa9\x01\x43\x92\x36\x16\xec\xbc\x11\x69\x67\x24\x25\x9b\x31\xbb\x17\x9b\x67\x36\xa1\x48\x3a\xe1\x47\xb2\xe4\xca\x4e\x9e\x67\x18\x27\x2a\xc5\x0f\x4e\xd3\xac\xec\xd8\xc0\x72\x1c\xd4\xf8\xec\x5b\x67\xf1\x40\x35\x1c\xa5\xdb\xcf\x86\xcb\xa2\x73\x55\x36\x6f\x9f\x4f\xdf\x38\x8c\x02\xd4\xe8\x10\xf0\x80\x52\xe1\x56\xc5\xa9\x42\xeb\x60\xa0\x78\x33\x2a\x7a\xcf\x50\xec\x28\xac\xa5\xcd\x5a\x8f\x1f\x5b\x9f\xab\xc6\x44\x0a\xcc\x73\xd1\x4d\xdc\x4c\xaa\xb3\x29\x29\xa3\xd3\xd4\xc0\x18\x7b\x56\x8c\x91\x33\xc4\x53\x9f\x4e\xc2\x3e\x92\x20\x39\xd6\x2b\x6c\xe5\xb4\xf4\x69\x5e\x0c\xd5\xe0\x38\x7b\xb8\x95\xc6\x8e\x1d\x88\x03\xff\x60\xe8\x20\xb9\xb7\xb3\xc6\x97\x65\x42\xbe\x64\x13\xfa\xc6\xb0\x45\xf1\x67\xee\x55\xf9\x3f\x7d\x39\x1b\x23\xbc\xb0\xe5\xd2\xc5\x1f\x9d\x2c\xab\xfc\xe4\x54\x1c\x87\xe5\x43\xed\x1a\x25\x6d\x38\x26\x77\xba\x66\x4d\x56\x62\x44\xf3\xde\x64\x2b\x53\x6c\xcb\x9d\x96\x4e\xa2\x02\x6c\xa7\x3e\x5d\xb5\x27\xdb\x5b\x63\x3c\x65\x2b\xb2\xc2\xc8\x6e\xbc\x33\x21\x12\x9a\x86\x82\xe5\xbd\xaa\xe1\x9f\x63\x98\x1d\xd7\xc5\xdb\xdb\xff\x5f\xfe\x06\x00\x00\xff\xff\x53\x23\x39\x31\xd6\x06\x00\x00"), }, "/js/i18n/i18n.js": &vfsgen۰CompressedFileInfo{ name: "i18n.js", @@ -643,17 +650,17 @@ var assets = func() http.FileSystem { }, "/js/i18n/indonesia.js": &vfsgen۰CompressedFileInfo{ name: "indonesia.js", - modTime: time.Date(2020, 3, 21, 5, 16, 48, 823974121, time.UTC), - uncompressedSize: 4146, + modTime: time.Date(2020, 3, 24, 3, 36, 44, 847009923, time.UTC), + uncompressedSize: 4241, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x4d\x6f\xd4\xbe\x13\x3e\xb7\x9f\x62\x54\x55\xe2\xff\x47\x20\xee\x5c\xaa\xd2\x96\xb2\xd0\x97\x15\x2c\x07\x84\x38\xcc\xc6\xd3\xc4\xc4\xb1\x23\xbf\x74\xd9\x6f\xff\x93\x5f\xe3\x64\xb7\x70\x4a\x3c\xf3\xc4\xf6\x33\x9e\x79\x3c\xa1\x3f\xa3\xd2\x16\x18\x3d\xa1\x13\x16\x24\xed\xe0\x1e\xc7\xff\xfd\x3c\x3d\x79\xf7\x0e\xee\x54\x83\x82\x00\x25\x83\x41\x49\xdb\x81\xc4\x81\x4e\x4f\x7e\x9e\x89\xe0\x38\x7b\x03\x67\x9c\xbd\x5d\x5d\x9f\xfd\x7a\xe3\xad\x9f\x51\x7a\x93\x7f\x44\xc3\x47\xda\x7a\x83\x7f\x44\xc3\x3d\x6a\x6f\xf0\x8f\x68\xb8\x1c\x83\xc1\x3f\x32\x62\x1f\x10\xc4\xf3\xa4\x2e\x4e\xea\x64\x31\x88\x68\x10\x79\x0e\xd7\x86\x39\x5a\x97\x0c\xdf\x68\xf4\x06\xff\x88\x86\xc7\xc6\x7a\xc3\x63\x6f\x93\xe1\x41\x3d\x7b\x83\x7f\x44\xc3\x35\x35\xde\xe0\x1f\x85\x8b\x43\xbd\x4f\x7c\x1c\x6a\x3e\x71\xd2\xd9\x93\xde\xf9\xc4\xae\xe9\x12\x3f\xb2\x13\x43\x2e\x12\x47\x2e\xfe\xc2\x92\x12\xcd\xc9\x24\xf6\x89\x28\x9f\x98\x3a\x63\x13\x59\x63\x9d\x99\x08\x5b\x1a\xb6\xa4\x13\xed\x34\x28\xe4\x55\x72\x3d\xf6\xf1\xb5\x04\xa1\x7c\x54\xde\x4b\x38\x8a\xeb\x9a\x4c\x71\x85\xac\xb8\x52\xc3\xa0\x24\x30\x8e\x42\xb5\xb0\x75\xd6\x2a\xe9\x3f\xfa\x41\xc6\xe3\x7f\x60\x99\xdf\x0f\x37\x9c\x61\x9f\xb7\xf2\x25\xec\xe2\x4b\x1a\x5e\xa1\x6c\x28\xc4\x26\xbd\xe5\x15\xee\x54\xcb\x25\x98\x46\x13\x85\x99\xbf\x1b\xd2\x3e\xf5\x3c\xb4\xbc\xc7\x39\xd6\x68\xcc\x4e\x69\xe6\x5d\xe5\x3d\xba\xc2\x2c\xde\x1e\x5f\xd2\x16\x34\x6f\xb9\x44\x01\x42\xb5\x0a\xb6\x7b\x38\x47\x67\x3b\xa5\xe1\x49\xab\x01\xce\x77\xb4\x35\xdc\x52\xfa\x4a\x01\x1a\xc1\x81\xf1\xad\x43\x0b\x4a\x50\x57\xe0\x0c\x35\x9f\xe0\x71\xe3\xaf\x4f\x4f\x5e\xc3\xfa\xf2\xf6\xe6\xdb\xe9\xc9\xeb\x77\x91\xca\x57\xa5\x2c\x8c\xd8\x12\xbc\x7d\x9b\x43\x66\xb9\x15\x94\x76\xa8\x9c\xcd\x8b\xb9\x9c\x32\x57\x1d\xca\x96\xa0\xa6\x76\x8b\xd2\x72\x58\x10\x4c\xb8\x3b\x94\xad\xc3\x96\x26\xdc\x07\xec\xd0\xc4\x63\x78\x61\x0b\x8d\x92\x96\xa4\x4d\x9b\x00\xe5\x6c\x0c\x80\xed\x08\x70\x1c\x05\x6f\xd0\x72\x25\xe1\x22\x9e\x68\xcf\x25\x70\xe9\x0f\xa5\x27\xe1\x30\xd1\xc7\x51\xf0\x1e\x0d\x87\x8b\xa3\x4b\x59\xa5\x84\xe5\xa3\x5f\xe3\x93\x8a\x87\x17\x9e\xa9\x04\x94\xa4\x3d\x34\x1d\xea\x10\x80\x5b\x8d\x4f\xbc\x87\x9e\x1c\xca\xb6\x08\x88\x3f\x6c\x18\x50\x62\x4b\x03\xc9\x00\xfc\x42\x42\x09\x04\x67\x4a\xb2\xa6\x30\x8c\x07\xe1\x1a\x8f\x86\x4b\x1c\x84\x6b\xfb\x72\xb8\x2e\xd7\x2b\x18\xc8\x18\x6c\xc3\x81\x79\x79\xcc\xb3\x02\x53\x64\xe4\x2b\x0b\x03\xda\x58\xf6\xc5\xb3\x45\xed\x60\x8f\xb2\x05\xc6\x9d\x5f\x0f\xac\xaf\x02\x68\x54\xa3\xfa\x92\xe5\x3e\x18\x2f\xa6\xc6\x03\xed\xe0\xb2\x69\x94\x8b\xac\x2f\x7b\x27\xe1\x03\xea\x2c\x71\x37\x8c\xdb\xda\x1f\xc7\x7d\x11\xc9\x6b\x12\x64\xa9\x46\x7c\xc2\xd1\x99\x1a\x72\x23\xad\xde\xc3\x66\x3f\x46\xe1\x21\xc9\x0d\x04\x5b\x2e\x5f\xda\xc1\x4a\x36\xe9\xe4\xd6\x34\xa0\x71\x3d\xce\x76\xe1\x21\x37\x7f\x46\x92\x26\x61\x64\x1b\xd2\xe3\x10\xb5\xd1\x28\xcd\x53\x14\x94\xfc\x7e\xc0\x67\x5a\x2d\x0c\xcb\x92\x35\xa6\x5a\x2e\x81\xca\x9a\x35\xac\x5e\x6f\x6e\x98\xc5\x27\xf2\x2d\xd1\x99\xe8\xbf\x70\x3c\x55\xd9\xac\x49\x0f\x28\x49\x5a\xb1\x07\x16\x67\x3b\x97\x80\x31\xe0\xe6\xb0\x70\x06\x92\x6d\x17\x56\xf1\x30\x7f\x9c\x17\x59\xc2\x8e\xce\x44\xd2\x6a\x4e\xff\x9a\x88\xc2\x21\x5e\x94\x9c\x0a\x05\xf3\xb7\x9c\xf2\x80\x2c\xa3\x07\x07\x90\x9d\xd3\x60\x16\xad\xec\x8e\xc1\xaa\xfc\x5f\xc9\x90\x9d\xe9\xd5\xc2\x92\x42\x7a\x6c\x77\xff\x0c\xa9\xaf\xf4\x7f\x85\xc1\x63\x4a\x3c\xe3\xda\xa5\x18\x9f\x94\x86\x73\x7f\x63\xc4\x39\x16\x5e\x27\xad\xeb\xe3\xf7\x19\x74\x6c\xb3\x0b\x1d\x08\x3e\x83\xcf\xc4\x60\xc7\x6d\x37\x4d\x77\x5e\xab\x50\x40\x31\x6e\xf8\x30\xa2\x04\x46\x5e\xd8\x8e\x41\xa7\x32\xc9\xa6\xf7\xf3\x89\x72\x1c\xa3\xa6\x78\x75\x79\x3f\xff\x3c\x5f\x3e\x57\x8f\xf7\xeb\xc7\x87\x9b\x87\x4d\x75\x03\x25\x0d\x80\x2b\x2f\xb5\xf1\x5e\x8e\xb2\x0b\x0c\x2d\x02\x3e\x23\x17\xb8\x8d\xdd\x5c\xb8\xac\x01\x19\x46\x5f\x58\xce\x92\x36\xc4\x78\xbe\xd5\xef\xd0\x58\xd8\x53\x6c\xe4\x36\xd8\x39\x09\x02\xc5\x54\xeb\x7f\x96\x5e\x46\x63\xac\xcd\xd9\x6e\xee\xb8\x09\x9b\xa9\xc7\xa1\xdb\xc0\x27\x8b\x7a\xa6\x53\x3e\x19\x71\x21\x75\x78\x20\x75\xb8\x94\xba\x0a\xe2\x43\x8b\x0b\x31\xdd\x56\x02\xa5\xa6\xba\xd5\xd4\x72\x63\x49\x53\x08\xfc\x07\x12\x6e\x08\xf1\x08\x15\x9b\xe3\xc1\xc2\x26\x0b\xa7\xa8\xa4\x22\x31\x8a\xa3\x05\x9f\x5a\x58\x03\x01\xca\xca\x53\x8d\x66\x7c\x68\x2e\x4d\xb4\x50\xe6\xe9\xfb\xb0\xdc\x9c\x4d\xd6\x8e\x97\xc8\x44\xd5\x38\x64\x13\x8a\xa7\x21\xee\xf3\x3a\xf6\x43\xb9\xeb\xba\xf7\x4a\x9c\x9a\x9e\xaa\xfb\xca\xaa\xaa\x89\x81\x55\x13\xfc\x9a\x8f\x5c\x32\xec\xa0\xa7\x19\xfe\x23\xd7\x26\x5e\xae\x91\x99\xc0\xc1\x97\x04\x69\x8b\x43\x4e\xb0\xb5\xa6\x67\xae\x9c\x39\x80\x19\xda\x7a\x06\x72\x8f\x75\xb2\x1d\xa2\x04\xca\xdf\xce\x4e\xb0\x90\xb1\x4b\x98\x25\x8d\x7d\xc7\x33\xed\x5b\x05\x5b\x6c\xfa\xd8\x60\x0c\x5b\x8c\x2d\xf7\xa4\x03\x39\x5d\xcb\xa0\x3a\xdb\x4a\x08\xc3\x61\xba\x5a\x45\xdd\x52\x25\xbd\xe1\x95\x99\x75\x2b\x4b\x49\x3a\x10\x5e\x37\x13\xde\xca\xef\x33\xc1\xd5\x8a\x3e\xcf\x83\x28\x9d\x2f\x65\x41\x10\xbd\xa3\x29\x1d\xb4\xe4\x7a\x75\x79\xf7\x78\x5b\x09\x49\xee\x33\x63\x92\xb7\x82\x9b\xd0\xf5\xac\x64\xdb\x6a\x9e\x7f\x45\x56\x92\x29\x49\x86\x63\x74\xe5\xc1\xbc\x54\x7c\xd3\x11\xc1\x07\xed\x45\x0e\xe4\xd1\xae\x62\x91\x75\x75\x33\x51\x56\xf8\xa8\xf4\x90\x55\x26\x84\x21\xa5\xe4\xc3\x94\x85\x2b\xc9\x2d\x47\x01\x38\x64\x45\xf8\xec\x06\x81\x1d\xe0\x0e\xc5\x7c\xa2\xb0\xdf\xa0\x53\x0b\xec\xac\x89\x62\x18\x7f\x19\x36\x28\xdb\x16\xc5\xa2\x9c\x4d\xa3\xf9\xe8\xbb\xe9\xf4\x37\xd5\x6b\x3e\x9a\xfc\x4b\xb7\x41\xdd\x52\x98\x77\xe3\x7e\xbb\x4a\x28\xc3\xf2\xfe\x4c\xff\xf6\x03\x34\x21\xf3\x15\x11\xfe\x71\x04\x83\xa3\xd7\x87\x98\xaa\xac\xbe\x6d\x66\x98\x2a\x83\xbe\xd2\x48\x18\xf6\xf6\xdd\x37\xb1\x61\xcb\xbf\xfe\xff\x5f\x00\x00\x00\xff\xff\x84\x7a\x55\x06\x32\x10\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x57\x5b\x6f\xdb\x3a\x0c\x7e\x6e\x7f\x05\x51\x14\xd8\x39\x43\x87\xbe\xef\xa5\xe8\xda\xae\xeb\xd6\x26\xc1\x96\xe2\x60\x18\xf6\xc0\xd8\x8c\xad\x59\x96\x0c\x5d\x9a\xe5\xdf\x1f\xe8\x6a\xd9\x49\xb7\x27\x5b\xe4\x67\xf1\x22\xf2\x13\x4d\xbf\x07\xa9\x0c\xd4\xb4\x45\xcb\x0d\x08\xda\xc1\x13\x0e\xff\xfc\x38\x3d\xb9\xbc\x84\x47\x59\x21\x27\x40\x51\x43\x2f\x85\x69\x41\x60\x4f\xa7\x27\x3f\xce\xb8\x57\x9c\x5d\xc0\x19\xab\xdf\x3d\xdc\x9e\xfd\xbc\x70\xd2\xcf\x28\x9c\xc8\x3d\x82\xe0\x23\x6d\x9c\xc0\x3d\x82\xe0\x09\x95\x13\xb8\x47\x10\x5c\x0f\x5e\xe0\x1e\x09\xb1\xf7\x08\x62\x69\x53\x1b\x36\xb5\x22\x0b\x78\x10\xf0\xb4\x87\x6d\xfc\x1e\x8d\x8d\x82\x6f\x34\x38\x81\x7b\x04\xc1\xb2\x32\x4e\xb0\xec\x4c\x14\x2c\xe4\x8b\x13\xb8\x47\x10\xdc\x52\xe5\x04\xee\x91\x63\xb1\xa8\xf6\x31\x1e\x8b\x8a\x8d\x31\xa9\xa4\x89\xef\x6c\x8c\xae\x6a\x63\x7c\x64\xc6\x08\x19\x8f\x31\x32\xfe\x87\x28\x29\x86\x39\x8a\xf8\x3e\x06\xca\xc6\x48\xad\x36\x31\x58\x6d\xac\x1e\x03\x36\xd4\x6f\x48\xc5\xb0\xe3\x22\x07\x2f\xa3\x6a\xd9\x85\xd7\x9c\x84\xfc\x51\x7e\xcf\xe9\xc8\xaa\x5b\xd2\x59\xe5\xab\xe2\x46\xf6\xbd\x14\x50\x33\xe4\xb2\x81\x8d\x35\x46\x0a\xf7\xd1\x77\xd2\x0e\xff\x1d\xf3\xfe\x6e\xb9\x66\x35\x76\xc9\x95\x2f\xde\x8b\x2f\x71\x79\x83\xa2\x22\x9f\x9b\xf8\x96\x2c\x3c\xca\x86\x09\xd0\x95\x22\xf2\x3b\xfb\xb5\xc3\x85\x97\xf0\xf5\x57\x6a\x98\x36\xc1\xc7\xfc\x1e\x2d\x63\xef\xb3\xb9\xc0\x3e\x39\xf3\xac\x49\x89\x28\xce\xef\x41\xb5\x42\xad\x77\x52\xd5\x4e\x95\xdf\x93\x8d\x81\xd0\xc0\x50\x20\x9e\x39\x8a\x86\x8d\xa2\x00\xfc\x8f\x78\x25\x7b\xba\xf0\x0d\x64\x75\x3a\x09\x8e\x3d\x1a\xa8\xd1\xa0\x68\x2e\xbc\x1c\x36\xa8\x52\x9d\x2e\x15\x6b\x98\x40\x0e\x5c\x36\x12\x36\x7b\x38\x47\x6b\x5a\xa9\x60\xab\x64\x0f\xe7\x3b\xda\x68\x66\x28\xc6\x2d\x01\x35\x67\x50\xb3\x8d\x45\x03\x92\x53\x9b\xe1\x35\x2a\x36\xc2\xdd\xde\x97\x97\x90\x52\xe2\xbb\x97\x17\x09\x85\x77\xef\xe0\x7a\xf5\x00\x3d\x69\x8d\x8d\x6f\x67\xe7\x74\x0a\x08\x6a\x49\x5a\xbc\x31\xd0\xa3\x09\xd5\x9c\x35\xce\x75\xd8\xa3\x68\xa0\x66\xd6\xa5\x01\x8c\x3b\x5c\xa8\x64\x25\xbb\x78\x78\x6f\x4f\x4f\xde\xc2\xea\xfa\xfe\xee\xdb\xe9\xc9\xdb\xcb\x70\x9c\x5f\xa5\x74\x39\x6c\xc8\x99\x8e\x65\x63\x98\xe1\x14\xcf\x56\x5a\x93\x82\xb4\xa9\x6d\x6e\x5a\x14\x0d\x41\x79\x36\xf7\x28\x0c\x83\xd9\x09\x45\xdc\x23\x8a\xc6\x62\x43\x23\xee\x03\xb6\xa8\x31\x67\xe3\x88\x0b\x95\x14\x86\x84\x89\x4e\x80\xb4\x26\x24\xde\xb4\x04\x38\x0c\x9c\x55\x68\x98\x14\x70\x15\xaa\xba\x63\x02\x98\x70\x79\xec\x88\x5b\x8c\x69\xc7\x81\xb3\x0e\x35\x83\xab\xa3\xa6\x8c\x94\xdc\xb0\xc1\xd9\xf8\x24\x43\xf5\xf9\x67\xa4\x01\x29\x68\x0f\x55\x8b\xca\x27\xe0\x5e\xe1\x96\x75\xd0\x91\x45\xd1\x64\x12\x75\xd5\x0a\x3d\x0a\x6c\xa8\x27\xe1\x81\x5f\x88\x4b\x8e\xa1\xce\x26\x69\x18\x0e\xd2\x35\x1c\x4d\x17\x3f\x48\xd7\x26\xa7\xcb\x07\xe1\x9c\x7c\xf5\xc8\x16\xb4\x83\xeb\xaa\x92\x36\x78\x73\xdd\x59\x01\x1f\xc6\xb2\xbe\xab\x99\x29\xf5\x61\xdd\x65\x02\xbf\x25\x4e\x86\x4a\xc4\x27\x1c\xac\x2e\x21\x77\xc2\xa8\x3d\xac\xf7\x43\x20\x45\x12\x4c\x83\x97\xa5\x06\xa7\x1d\x3c\x88\x2a\x66\x74\x45\x3d\x6a\xdb\xe1\xc4\x0b\x07\xb9\xfb\x3d\x90\xd0\x11\x23\x1a\x7f\x6c\x87\xa8\xb5\x42\xa1\xb7\xa1\x65\xd3\xfb\x41\x3c\xa3\x35\xbf\xcc\x26\x4b\x4c\x61\x2e\x82\xb2\xcd\x12\x56\xda\x9b\x0a\x26\xf9\x09\xf1\xe6\xec\x8c\xe1\xbf\x72\x3c\x45\x39\xaf\x48\xf5\x28\x48\x18\xbe\x87\x3a\xec\x76\x2e\x00\x43\xc2\xf5\x61\x41\xf7\x24\x9a\xd6\x5b\x71\x30\x77\x9c\x57\x89\x1b\x8f\xee\x44\xc2\x28\x46\x7f\xdb\x88\xfc\x21\x5e\xe5\x9a\xf2\x85\xfc\xa7\x9a\x7a\x8e\xbc\xe9\x81\xf3\x03\x48\xca\x71\x31\xc9\x56\x52\x87\x64\x15\xfa\xaf\xa4\xc9\x4c\x78\x64\x26\x89\x29\x3d\xe6\xdd\x5f\x53\xea\x3a\xf0\x6f\x69\xf0\xac\x7f\x35\xf1\x26\x33\xea\x56\x2a\x38\x77\x57\x51\xd8\x63\xa6\xb5\xc2\xd8\x2e\x7c\x9f\x40\xc7\x9c\x9d\x91\xb9\xd7\x69\x7c\xa1\x1a\x76\xcc\xb4\xe3\x76\xe7\x93\x6b\xcc\xa1\x6a\xa6\x59\x3f\xa0\x80\x9a\x1c\xe1\x1c\x83\x8e\x6d\x92\x44\xef\xa7\x1b\xa5\x3c\x86\x8b\xc1\x5d\x11\xef\xa7\x9f\xa7\x4b\xe1\x66\xf9\xb4\x5a\x2e\xee\x16\xeb\xe2\x66\x88\x1c\x00\x37\x8e\x02\xc3\xcc\x10\xe8\xd0\xdf\x99\x80\x2f\xc8\x38\x6e\xc2\xa4\xe9\x07\x09\xc0\x1a\x83\xce\x9b\x33\xa4\x34\xd5\x2c\x5d\xf2\x8f\xa8\x0d\xec\x29\x0c\x99\x6b\x6c\xad\x00\x8e\x7c\xec\xf5\xdf\x73\x6d\x4d\x43\xe8\xcd\x89\x37\x8f\x4c\x7b\x67\xca\xb5\x9f\x84\x70\x6b\x50\x4d\x78\xca\x15\x23\xce\xa8\x0e\x0f\xa8\x0e\xe7\x54\x57\x40\x5c\x6a\x71\x46\xa6\xc5\x8c\xb0\x90\x63\xdf\xaa\x78\xa5\x93\x4f\xfc\x07\xe2\xb6\xf7\xf9\xf0\x1d\x9b\xf2\x51\x7b\x27\x73\x4c\x81\x49\x79\x8c\x28\xac\x66\xf1\x94\xc4\xea\x03\xa0\xc4\x3c\xc5\x6a\x12\x0f\x4d\xa9\x89\x66\xcc\x3c\x7e\xef\xcd\x4d\xa3\x49\xdc\xf1\x5a\x30\x81\x35\x0e\xa3\xf1\xcd\x53\x11\x73\x75\x1d\xe6\xa3\x34\xce\x3d\x39\x26\x8e\x43\x50\x31\xd6\x25\x56\x55\x54\x83\x91\x23\xfc\x96\x0d\x4c\xd4\xd8\x42\x47\x13\xfc\x47\xa6\x74\xb8\xb8\x43\x64\x6e\x76\x13\x30\x90\x32\xe3\x14\xb9\x52\xf4\xc2\xa4\xd5\x07\x30\x4d\x1b\x17\x81\xd8\x63\x59\x6c\x87\x28\x8e\xe2\x97\x35\x23\xcc\x57\xec\x1c\x66\x48\x61\xd7\xb2\x14\xf6\xbd\x84\x0d\x56\x5d\xb8\xf8\xfb\x0d\x86\xdf\x81\x91\x07\x52\xb9\xe6\x45\x71\xb6\x05\x11\xfa\xc3\xb4\x25\x8b\xda\x39\x4b\x3a\xc1\x1b\x3d\x99\x22\xe6\x94\x74\x40\xbc\x76\x42\xbc\x85\x7e\x51\x4c\xc2\xcf\xb3\xc9\x77\x21\x23\x75\xbe\x56\x05\x9e\xf4\x8e\x96\xb4\xe7\x92\xdb\x87\xeb\xc7\xe5\x7d\x41\x24\x69\xfe\x0b\x45\xde\x70\xa6\xfd\xe8\xfa\x20\x9a\x46\xb1\xf4\x9b\xf4\x20\x6a\x29\x48\x33\x0c\xaa\xb4\x98\xb6\x8a\x1b\x3a\x02\xf8\x60\xbc\x48\x89\x3c\x3a\x55\xcc\xaa\xae\x1c\x26\xb2\x85\x8f\x52\xf5\x89\x65\x82\x0d\x66\x18\x72\xc0\x3e\xb5\xff\x67\xdb\x73\x6c\x01\x77\xc8\xa7\x5f\x79\xe7\x3c\x29\xcd\xb0\x93\x89\xa9\xc6\xf0\xbf\xb0\x46\xd1\x34\xc8\x67\xbd\xab\x2b\xc5\x06\x37\xd2\xc6\xdf\xba\x4e\xb1\x41\xa7\x7f\xcb\x35\xaa\x86\xfc\xbe\x6b\xfb\xcb\x16\xac\xe8\xcd\x27\x96\xf7\xbf\x2d\xbc\x86\xa3\x37\x00\x1f\x1b\xa5\xbc\x30\x26\x98\xa2\x08\xc2\xcf\xd5\xf8\x4f\xe5\xc4\x3f\xff\xfd\x3f\x00\x00\xff\xff\x0e\x99\xb6\x9b\x91\x10\x00\x00"), }, "/js/i18n/indonesia.min.js": &vfsgen۰CompressedFileInfo{ name: "indonesia.min.js", - modTime: time.Date(2020, 3, 21, 5, 16, 48, 943974120, time.UTC), - uncompressedSize: 3261, + modTime: time.Date(2020, 3, 24, 3, 36, 44, 937009921, time.UTC), + uncompressedSize: 3349, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xc9\x8e\xdc\x38\x0f\x7e\x15\xc2\x68\x20\xff\x0f\x78\x5e\x20\x73\x68\x24\xa9\x2c\x9d\xad\x1b\x99\xca\x21\x08\x72\xa0\x6d\x96\xcd\x58\x96\x0c\x2d\x5d\xa9\xb7\x1f\x68\xb3\x65\xa7\x7a\x72\xb1\x45\x91\xa2\x3e\x8a\xfc\x28\xd1\xaf\x59\x69\x0b\x1d\x9d\xd0\x09\x0b\x92\xce\xf0\x09\xe7\xff\x7d\xff\x5e\x09\xd5\xa2\xa0\xaa\xae\xb8\xfb\xeb\xee\x50\xfd\xa8\xbf\x57\xef\x51\x56\x75\xf8\x7a\xe9\x0d\x35\x55\x1d\xbe\x5e\xfa\x84\xba\xaa\xc3\xd7\x4b\x2f\x66\x2f\xf9\x6f\xd4\x5d\xbc\x8e\x38\x7a\x71\xc1\x8b\x93\x49\x12\x41\x12\x71\x9d\xeb\xfd\xba\xde\x05\xe9\x1f\x9a\xab\x3a\x7c\xbd\x74\xdf\xda\xaa\xae\xee\x47\x1b\xa4\xcf\xea\xb1\xaa\xc3\xd7\x4b\x07\x6a\xab\x3a\x7c\x13\x4e\x87\xfa\x12\xb1\x3a\xd4\x9c\xf1\xea\x34\x9d\x86\x9c\x91\xb7\x43\xc4\x4e\x36\xa3\x67\x11\xf1\xb3\xb8\x1e\x01\xc5\x10\xb2\x2c\x2e\x31\x08\xce\x51\x38\x63\x63\x20\xc6\x3a\x93\x83\xb1\x34\x35\xa4\x63\x48\x69\x9c\x02\x53\x71\xfe\x7e\x8c\xa3\x14\x60\x36\x5f\x86\x29\xd4\x3c\x7f\x20\xb3\xce\x7f\x23\x53\xd5\xd5\x37\x4c\x8b\xab\xba\x3a\x72\x87\x63\xdc\xe1\x83\x77\xfe\x21\x8c\x5f\xa1\x6c\xc9\x47\x97\x06\x7e\xee\xab\x21\x2d\x71\xf2\x41\x2d\x43\x3f\xff\x80\xc6\x9c\x95\xee\xaa\x7a\x1d\xfa\xf9\x8f\xaa\x67\x9f\xc4\xf8\x0f\x3b\x68\xee\x59\xa2\x00\xa1\x7a\x05\xcd\x05\x6e\xd0\xd9\x41\x69\x38\x69\x35\xc1\xcd\x99\x1a\xc3\x96\xe2\x12\x05\x68\x04\x43\xc7\x8d\x43\x0b\x4a\xd0\xb0\x58\x77\xa8\x79\xb5\x4e\x5b\x29\x67\xd3\x42\x17\xf3\xf3\x6a\x40\xd9\x13\x14\xe8\xde\xa2\xb4\x0c\x1b\x8c\xc9\xe8\x23\xca\xde\x61\x4f\x8b\xd1\x4b\x1c\xd0\x60\xf6\x0d\xca\xd9\x88\xd1\x0e\x04\x38\xcf\x82\x5b\xb4\xac\x24\xdc\x86\xd3\x1c\x59\x02\xcb\x9e\x25\x8c\x24\x1c\x26\x84\x38\x0b\x1e\xd1\x30\xdc\x06\x3f\xef\x54\x38\xba\xf0\x0b\xd5\xa2\x24\x5d\xa0\x1d\x50\x7b\xe0\x6f\x35\x9e\x78\x84\x91\x1c\xca\x3e\x71\xc7\x9f\x32\x4c\x28\xb1\xa7\x89\xa4\xb7\xfa\x40\x42\x09\x04\x67\x52\x3a\x13\xfc\x79\x1f\xe3\x7c\x25\x46\xb1\x8f\xb1\x59\x63\xf4\x8c\xce\x6b\xa0\x53\x64\xe4\x33\x0b\x13\xda\x50\xf2\x8b\xa2\x41\xed\xe0\x82\xb2\x87\x8e\x9d\x77\x07\xd6\x17\x0f\xb4\xaa\x55\xb1\x84\x3e\xd3\x19\x5e\xb4\xad\x72\x01\xed\x8b\xd1\x49\x78\x89\x3a\xf2\xf4\x75\xc7\xb6\x50\x46\x71\x4c\x04\x3f\x90\x20\x4b\x85\xfa\x1d\xce\xce\xac\xfa\xd7\xd2\xea\x0b\x1c\x2f\x73\xa0\x14\x49\x36\x10\xa6\x96\x5d\xef\x64\x1b\xcf\xf7\x81\x26\x34\x6e\xc4\x62\x67\xaf\x7f\xfd\x6b\x26\x69\xa2\x81\xec\x43\x96\xf6\x26\x47\x8d\xd2\x9c\x02\x67\xf2\x70\x87\x7e\xd9\x24\x48\xcb\x4e\xab\xc1\xba\x4b\xb2\x58\xb6\x5a\x6d\x8a\x6d\xb6\x72\x71\x0e\x31\xb6\x7c\x0a\x6b\xa4\x0f\xa4\x27\x94\x24\xad\xb8\x40\x17\x4d\x6f\x24\x60\x3c\x35\xf3\x5b\x35\x4e\x24\xfb\x21\xb8\xf0\x56\x3e\x1b\xb7\xff\xe1\x86\xa4\xd5\x4c\x7f\xf0\x42\x21\x11\xb7\xcb\xa1\xf9\x1a\x4d\x0d\x61\x77\x58\x49\xb3\x8e\x8b\xf8\x92\x2e\x86\xb7\x28\xbf\x90\x21\x5b\x12\x76\x37\xf1\x34\x74\x4f\x88\x3f\x00\xf7\x26\x09\x77\x74\xbb\x94\xf5\x49\x69\xb8\xf1\xdd\x2c\x38\xd8\x29\x9d\xb4\x6e\x8c\x8b\xb3\xcd\x42\x4d\x83\x8f\xd4\xc1\x99\xed\xb0\xda\xdf\x14\x5c\x0c\x46\x1d\x1b\x9e\x66\x94\xd0\x91\x27\xf6\x35\xcb\x7c\x96\x79\xe2\xf9\xc6\x4b\x0e\x3f\x32\xcf\x73\xf0\xf9\x7e\xad\x8a\x6d\x04\x3a\xb4\x08\xf8\x88\x2c\xb0\x09\xb7\x72\x68\xee\x80\x1d\x46\x55\xf0\x60\x49\x1b\xea\x38\x35\x37\x34\x16\x2e\x14\xae\xe5\x23\x0e\x4e\x82\x40\x91\x29\xf1\x6b\xa7\xea\x68\x4e\x85\x9c\x78\x0a\x1f\x39\xdc\x60\x07\x3c\x59\xd4\x05\x5b\x7d\xce\x71\x4b\x75\xdc\x51\x1d\x77\x54\x5f\xf4\xfe\x24\x70\xdb\x43\x9a\x85\xa6\x6a\x2d\x76\x4d\x3d\x1b\x4b\x9a\xfc\x21\xbd\x24\xe1\xa6\x10\x68\x28\xf3\x1c\x68\x17\x80\x15\x1d\x64\x0b\x78\x25\x56\x80\x48\x89\x75\x85\x50\x00\xa6\x0d\x27\x69\xd3\x7d\x96\x95\x61\x93\x12\x6e\x26\xd5\x13\x68\x23\x9d\xae\xc0\xfd\x42\x2d\xb1\x2f\xaf\x78\x35\xa6\x7b\xf7\x93\x6f\x38\xe9\xfe\x5b\xee\xdf\xdc\x40\x34\x75\x60\xd5\x62\x7b\xe0\x99\x65\x87\x03\x8c\x54\x18\xbf\x61\x6d\x7c\x79\x87\x7b\xe0\x1d\x0a\x9c\x7c\x4d\x92\xb6\x38\xc5\x8a\x78\xd0\xf4\xc8\xca\x99\xbd\x8d\xa1\xc6\xa3\x96\x17\x5c\xab\xe3\x37\x13\x81\xf2\xa7\xb3\xd9\x26\x14\xd7\xce\xc6\x92\xc6\x71\xe0\x18\xe4\x5b\x05\x0d\xb6\x63\xb8\xd8\xa6\x06\xd3\xc3\x28\xd0\x66\x9b\xa8\xa5\x45\x84\xd4\xb8\xa2\xb3\xb8\x6d\xf3\xf0\xe2\x33\x53\x5e\x88\x7b\x3e\xef\x3a\x91\x2b\x3b\xd1\xa2\xf4\x39\x75\x45\x67\x2b\x33\x1a\x7b\xcd\x13\xf9\x0c\x8d\xe2\x6a\xf5\xf5\x82\x8d\xbf\x4d\xef\x64\xdf\x6b\x8e\xaf\xbd\x3b\xd9\x29\x49\x86\x31\xcc\xe7\x71\xd4\xec\xaf\xb3\xe8\xe6\xda\x2d\xb6\x29\x82\xe2\xf2\x8a\x80\x63\x31\x7c\xce\xf9\xbf\x93\x6c\x19\x05\xe0\x94\x08\xf6\xde\x4d\x02\x07\xc0\x33\xa6\xc7\xf5\x56\x51\x70\xa7\xc3\xf0\x36\x3b\xa2\xec\x7b\x14\x1b\x82\x98\x56\xf3\xec\x1f\x44\xf1\xbd\x39\x6a\x9e\x4d\x4c\xe6\x11\x75\x4f\xde\xdd\xd1\xfd\x74\xc5\xbb\xe6\xda\x43\xf2\x5e\x74\x70\xad\xf1\x89\x5c\x9b\x65\x93\x2c\x0d\x96\xf4\x7c\xa1\x99\xd0\xef\xf6\xd5\x3f\x4f\xb8\xfa\xf1\xe3\xff\x7f\xff\x1b\x00\x00\xff\xff\x0c\xfa\x5e\x5f\xbd\x0c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xe9\x6e\xdc\x38\x0c\x7e\x15\xc2\x08\xd0\x5d\xc0\xfb\x02\xdd\x1f\x41\xdb\xf4\x48\x8f\x24\xe8\x4e\xb0\x28\x8a\xfe\xe0\xd8\x8c\xcd\x5a\x96\x0c\x1d\x49\xe7\xed\x17\xa2\x24\x5f\x9d\x6e\xff\xc8\xa2\x48\x53\xfc\x28\x5e\xf4\x63\x32\xd6\x43\x4b\x0f\x18\x94\x07\x4d\x4f\xf0\x09\xa7\x3f\xbe\x7e\xad\x94\x69\x50\x51\x55\x57\xdc\xfe\x75\x7d\x55\x7d\xab\xbf\x56\xef\x51\x57\xb5\xac\x91\x7a\x43\xc7\xaa\x96\x35\x52\x9f\xd0\x56\xb5\xac\x91\x7a\x31\x45\x2a\xae\x89\x77\x8a\x3c\xe2\xa4\x25\x88\x96\xa0\x33\xa5\x84\x52\xe9\xbf\xd0\xc5\xff\xba\x20\xd4\x3f\x34\x55\xb5\xac\x91\xba\x6d\x7c\x55\x57\xb7\x83\x17\xea\xc6\x3c\x56\xb5\xac\x91\xba\xa2\xa6\xaa\x65\xcd\x76\x06\xb4\xa7\x64\x6b\x40\xcb\xc5\x5e\x9b\x8f\xf3\x96\x8b\xe5\x4d\x9f\x6c\x27\x5f\xac\x67\x95\xec\x67\x75\x1e\x01\x25\x08\x85\x56\xa7\x04\x82\x0b\x8a\xe0\x7c\x02\xe2\x7c\x70\x05\x8c\xa7\xf1\x48\x36\x41\xca\xfb\x0c\xcc\xa4\xf3\xdb\x21\xed\x32\xc0\x22\x3e\x6f\x33\xd4\x72\x7e\x45\x6e\x39\xff\x42\xae\xaa\xab\x2f\x98\x7f\xae\xea\xea\xc0\x2d\x0e\xe9\x86\x0f\x51\xf9\x07\xd9\xbf\x42\xdd\x50\x44\x97\x37\xf1\xec\xa3\xe9\x38\x3e\x4a\xfa\xc6\x93\xcf\xd4\xb1\xf3\x72\xcb\xbc\x15\xc5\x38\x46\xe8\x37\x38\xa6\x8b\xee\x1d\x59\x9d\xce\xe6\x6d\x3c\xbf\x43\xe7\x9e\x8c\x6d\xab\x7a\xd9\x26\xbd\x13\xa1\x87\x69\x61\xdf\x2b\xd4\x1d\x2f\x27\x51\xea\x5f\x52\x8d\x19\xa9\x96\x78\x0c\x2e\xfb\x4c\xe1\x88\x1e\x5a\xf4\xa8\xbb\x5a\x8e\xe1\x88\x36\x85\xca\xad\xe5\x8e\x35\x2a\x50\xa6\x33\x70\x3c\xc1\x05\x06\xdf\x1b\x0b\x0f\xd6\x8c\x70\xf1\x44\x47\xc7\x9e\x12\x44\x03\xe8\x14\x43\xcb\xc7\x80\x1e\x8c\xa2\x7e\x96\x6e\xd1\xf2\x22\x1d\x15\x47\x0b\x8a\x6d\xd0\x1a\x72\xfa\x99\x87\x11\xbd\x84\xcc\xcc\x88\x76\xc0\x09\x75\x07\x2d\x87\x08\x08\x7c\x74\x3e\x34\xa6\x31\x43\x71\xb1\x09\x3e\x1b\x10\x52\x9c\xbd\xea\x51\x77\x04\x2b\x5f\xbd\x45\xed\x19\x36\x1e\xcb\x42\x1f\x51\x77\x01\x3b\x9a\x85\x5e\x62\x8f\x0e\x8b\x6e\x30\xc1\x27\xac\xbe\x27\xc0\x69\x52\xdc\xa0\x67\xa3\xe1\x52\xa2\x62\x60\x0d\xac\x3b\xd6\x30\x90\x0a\x98\x91\xe2\xa4\x78\x40\xc7\x70\x29\x7a\xde\x19\x79\x48\xf9\x48\xd4\x1b\x4d\x27\x68\x7a\xb4\xd1\xf0\xb7\x16\x1f\x78\x80\x81\x02\xea\x2e\xd7\x80\xf8\xe6\x30\xa2\xc6\x8e\x46\xd2\x51\xea\x03\x29\xa3\x30\x3d\xda\xca\xfc\x69\x8f\x71\x3a\x83\x51\xed\x31\x1e\x17\x8c\x37\xf4\x04\x2f\x9a\xc6\x04\xb9\xe5\xc5\x10\x34\xbc\x2c\x8f\xff\xba\x65\xbf\x62\x26\x72\xc8\x05\xe6\x8a\x14\x79\x5a\xb1\xdf\xe1\x14\xdc\xc2\x7f\xad\xbd\x3d\xc1\xe1\x34\x49\x4a\x93\x66\x07\x72\x34\xdf\x7a\xad\x9b\xe4\x97\x3b\x1a\xd1\x85\x01\x57\x37\x47\xfe\xeb\x1f\x13\x69\x97\x04\x74\x27\xde\xdd\x8b\x1c\x2c\x6a\xf7\x20\x61\x5c\xb6\x3b\xeb\xe7\x4b\x84\x9a\x6f\x5a\x04\x96\x5b\xb2\xc4\x7c\xd5\x22\xb3\xba\x66\x4b\xaf\xfc\x90\xb0\x15\x2f\x2c\x48\xef\xc8\x8e\xa8\x49\x7b\x75\x82\x36\x89\x5e\x68\xc0\xe4\x35\xf7\x53\x14\x8d\xa4\xbb\x5e\x54\x44\xa9\xf8\x1a\x97\xff\xa3\x86\xb4\xb7\x4c\xbf\xd1\x42\xf2\x10\x97\xb3\xd3\xee\x53\xde\x4b\x88\x6d\x9d\x95\x39\xcb\x7e\x85\x2f\xf3\x12\xbc\x99\xf9\x99\x1c\xf9\x75\xa2\xed\x0e\x7e\x6d\x7a\x0c\xe4\xdf\x18\x2e\x95\xe8\x72\x75\xcf\x5c\x16\x1e\x8c\x85\x8b\x58\x13\x45\xc1\x8e\x19\xb4\x0f\x43\xfa\xb9\xc8\xcc\x29\xe5\xf0\x91\x5a\x78\x62\xdf\x2f\xf2\x17\xeb\xa2\x19\x85\x5a\x76\x3c\x4e\xa8\xa1\xa5\x98\x90\xe7\x24\x8b\x2f\xcb\xc1\xf3\x8d\x96\x02\x3f\x55\xae\x58\xc3\x9e\xef\xff\x35\x29\xfd\xa5\xea\x02\x3e\x22\x2b\x3c\xca\x54\x20\xcd\x05\xb0\xc5\xc4\x12\x0d\x9e\xac\xa3\x96\x73\x51\x42\xe7\xe1\x44\x32\x16\x1c\xb0\x0f\x1a\x14\xaa\x92\x12\x3f\x76\xac\x96\xa6\x1c\xc8\x39\x4f\xe1\x23\x4b\x07\xbd\xc2\x07\x8f\x76\x95\xad\xf1\xcd\x71\x9b\xea\xb8\x4b\x75\xdc\xa5\xfa\xcc\x8f\x9e\xc0\x6d\x0d\x99\x1b\xc8\x8d\x59\x82\xdd\xe6\x8e\x47\xd1\x49\x2f\x49\x85\x51\x80\x4a\x98\x17\xa0\xad\x18\xb6\xaa\x20\x5b\x83\x97\xc4\x12\x13\x29\x67\xdd\x8a\x58\x19\x4c\x9b\x9c\xa4\x4d\xf5\x99\xff\x94\x4b\xd6\xe6\x96\xa4\xfa\x85\xb5\x29\x9d\xce\x98\xfb\x99\x1a\xe2\x18\x5e\xa9\x35\xe6\xee\xfd\x29\x16\x9c\xdc\xff\xe6\x2e\x5e\x0a\x88\xa5\x16\xbc\x99\x65\xaf\x78\x62\xdd\x62\x0f\x03\xad\x84\xdf\xb0\x75\x31\xbc\xa5\x7e\xbf\xc3\xd8\xad\x35\x4c\x64\x7d\x99\x15\xee\x2c\x3d\xb2\x09\x6e\x2f\xe3\xe8\x18\xad\xd6\x27\x5c\xa2\xe3\x27\x11\x85\xfa\x7b\xf0\x45\x46\x82\x6b\x27\xe3\xc9\xe2\xd0\x73\x02\xf9\xd6\xc0\x11\x9b\x41\x1a\xd2\x78\xc4\x3c\x98\x49\xda\x6c\x1f\x6a\x2e\x11\xf2\x34\x61\x55\x59\xc2\xb6\x78\x44\xf2\x99\x5b\x37\xb2\x7d\x3e\xef\x2a\x51\x58\x57\xa2\x99\x79\xb3\x4c\x34\xf7\x9b\x09\xe6\xc6\xe4\x5a\xf3\x8b\xf7\x94\x42\x71\x36\xfa\x3a\xc5\x2e\x4e\x23\xd7\xba\xeb\x2c\xa7\x69\xf3\x5a\xb7\x46\x93\x63\x94\xf3\xb2\x4f\x9c\x7d\x3b\x4b\x6a\xce\x75\xb1\x4d\x10\xac\x9a\x57\x56\xc4\x9e\x51\x01\x8e\x39\xa1\xde\x87\x51\x61\x0f\xf8\x84\x79\x98\xdf\x32\x56\xb9\xd2\xa2\xcc\x62\x07\xd4\x5d\x87\x6a\x93\x10\xae\xb1\x3c\xc5\xc1\x25\xcd\xb7\x83\xe5\xc9\xa5\xc7\x3b\xa0\xed\x28\xaa\x3b\x84\xef\x21\xdb\x76\xab\x5a\x38\x57\xd0\x54\x89\xb9\x75\xf1\x5b\x0b\xcc\x6e\x4f\x03\xe9\x3c\x87\x56\xdf\xbe\xfd\xf9\xf7\x7f\x01\x00\x00\xff\xff\x57\xb0\x28\x4b\x15\x0d\x00\x00"), }, "/js/index.js": &vfsgen۰CompressedFileInfo{ name: "index.js", @@ -757,17 +764,17 @@ var assets = func() http.FileSystem { }, "/js/login.js": &vfsgen۰CompressedFileInfo{ name: "login.js", - modTime: time.Date(2020, 3, 21, 13, 3, 41, 853767453, time.UTC), - uncompressedSize: 2584, + modTime: time.Date(2020, 3, 24, 3, 50, 21, 706995294, time.UTC), + uncompressedSize: 2720, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x5d\x8b\xe3\x36\x17\xbe\x96\x7f\x85\x5e\xb1\xb0\x36\xaf\x47\xa1\x94\x2d\xc5\x90\x42\x3b\x50\x68\x59\x76\x16\xa6\xed\xcd\xb2\x04\xc5\x3e\x4e\x34\x23\x4b\x5e\x49\x9e\x4c\x98\xcd\x7f\x2f\x47\x1f\xb1\x33\xd3\x0e\x7b\xd7\x9b\xc4\xd2\xf9\x7a\x8e\xce\xa3\xc7\x96\xc3\x68\xac\xa7\x4f\x05\xf9\x65\xf2\xde\xe8\xba\x20\xef\x8d\xe8\xa4\xde\x5d\x9b\x07\xb0\x75\x71\xa2\xbd\x35\x03\x65\x7c\xd5\x9a\x61\x34\x1a\xb4\x77\xab\xcd\xfc\xcc\x07\xa9\xf9\x9d\x63\x45\x31\xa7\xb2\xf0\x65\x02\xe7\x17\xb1\x4a\x6e\xdd\x6a\xf2\x52\xfd\xa3\xbf\xfc\xee\x47\xbd\x70\xc6\x65\xf8\x79\xe1\x7b\x6d\xcc\xbd\x04\x17\x3d\xdf\xa6\xb4\x77\xee\xaa\x0d\xfb\xc9\xfd\x6d\x51\xf4\x93\x6e\xbd\x34\x9a\x2a\xb3\x93\xfa\xb6\xb5\x00\xba\xac\xb0\x94\x02\x4f\x9d\x17\x1e\xe8\x1a\x97\x44\xc5\x66\x1b\xda\x0b\xe5\xa0\x2e\x08\x99\x1c\x58\x2d\x06\x68\x28\x63\xb8\x1e\x85\x73\x07\x63\xbb\xbc\x06\x6b\x8d\xc5\x45\x41\x4e\x45\x41\x2e\x4b\xc5\x22\x24\x54\xe0\x29\x37\x5d\x53\x6f\x27\x38\x6f\x87\x04\x74\x1d\x32\x90\x81\x5b\xe8\xac\x38\x94\x55\x81\x68\xc0\x53\x33\x62\x3a\x97\xf0\x91\x01\xfc\xde\x60\xf1\x8f\x37\xb7\x7f\x04\x00\x64\x6b\xba\x63\x43\x7f\xbf\xbd\xf9\xc0\x9d\xb7\x52\xef\x64\x7f\x2c\x83\xf3\x02\x7c\xac\x95\xd7\x21\x6e\xd1\x4a\xb4\xe6\x35\x1a\x4f\x55\x41\x42\x43\x79\x7a\x25\x5b\x89\x51\xae\x42\x5b\xac\xa6\xec\x9d\x63\x75\x06\x87\xbe\x84\xfb\x3d\xe8\xf2\xce\x19\x4d\xd7\x3f\x45\xb0\xf1\x78\xc1\x39\x3c\x90\x35\x45\x1b\x4f\xcb\x88\x20\x00\xcc\x96\xf0\xfc\xf5\x2b\xd5\x93\x52\x45\x30\xa7\xf9\x72\x07\xbe\x64\x29\xf0\xaa\x9b\xa4\x67\x75\x4e\x5b\xd3\x27\x0a\x8f\xa3\xb4\xe0\x1a\xfa\xfd\x0f\xef\x68\x00\x8e\x83\x6c\x85\xba\xf5\xc6\x8a\x1d\x60\xfc\x6f\x1e\x86\x92\x61\xec\x15\xd6\x61\xf5\xf3\x03\xc3\xdd\x2a\xc6\x1e\xa4\xee\xcc\x81\x63\x0a\x6c\x8f\xef\x2d\xf4\x38\xa0\x15\x3b\x9f\x0c\xe1\xad\xf0\xed\xbe\x04\x6b\xe7\x6e\x2f\xe7\x09\xd6\xf2\x01\x9c\x13\x3b\x58\x84\xf5\x52\x0b\xa5\x8e\x65\x59\x3d\x8f\x9b\xe9\x11\xb8\x17\x2c\x0b\x3a\xa4\x14\x17\x1c\xb3\xa0\x3b\xb0\x7f\x49\x38\x24\xa2\xe1\x79\x87\xfa\x1f\x4c\x07\xc8\x99\x4f\x9f\x0b\x42\x64\x4f\xcb\x25\xb6\xff\xad\x91\x6d\x31\x82\xcc\xee\x7c\x9c\xdc\xbe\x1c\x4a\x36\xf2\x30\xe5\xcd\x26\xd8\xf0\xac\xe7\xe0\xea\xcc\x0b\xac\xa5\x16\xda\xf0\xb2\x5a\xb2\xa6\x42\x4b\xdf\x5c\x6a\xa9\x2d\x97\x99\x85\xf7\x56\x6e\x27\x6c\x33\xf7\x82\x12\x50\xb2\x1b\x2b\x77\x78\x86\x78\xc1\x0c\xdd\x1e\xe9\x1b\x31\xf9\xbd\xb1\x51\x04\xde\x1c\x60\xeb\xa4\x07\x56\x71\x37\x2a\xe9\x4b\x46\x59\xc5\x07\x31\x96\xce\xcf\x93\x8a\x10\x2d\x5d\xe3\x41\xa4\xf8\x7c\x1e\xc4\x82\x9f\xac\xa6\x43\xc9\x04\x5f\xa0\xd8\x6c\x94\xd4\xf7\xac\x4e\x5e\xc4\x0b\xbb\x03\xdf\x50\xb6\xd9\x2a\x81\x86\xb8\x6d\x41\x35\x94\x69\x63\x46\xd0\x48\xb3\xb8\x8b\x0c\x6a\x28\xdb\x7b\x3f\xba\x66\xb5\x3a\x1c\x0e\xbc\x57\xc2\xcb\xd6\x68\xde\x9a\x61\x15\x21\xb8\x55\x6f\x01\x46\x79\x1f\x78\x46\x4e\x35\x65\xbf\xc6\x0d\xca\x22\x01\x8a\x97\xe8\xcf\x0d\xff\x77\xf0\x67\xb8\xcf\x2d\x17\xb8\x13\x32\x84\xfe\x7f\xca\x28\x46\x9d\xaa\xa8\x30\x19\x32\x4f\xf2\x12\x94\x2e\x2f\x37\x1b\x54\xb8\x84\x85\x73\x3e\x33\x36\x6e\x2d\x1c\x7b\x63\x87\x0c\x7a\x28\x99\x1c\x76\xd9\x82\x6c\x99\xbb\x27\xce\xb6\x0d\x65\x2b\x0b\x0e\x15\xcd\x70\xf7\xb0\x8b\x5d\x90\x53\xb5\x88\xd7\xe3\xe4\x3f\xf9\xe3\x08\x6b\x0f\x8f\xfe\x73\x4e\x16\xf6\x17\xd9\x1e\x84\x9a\xfe\x45\x63\x09\x19\x95\x68\x61\x6f\x54\x07\xb6\x49\x1c\xfe\x33\xb9\xb0\x5c\x8b\x18\x1d\x72\x96\x50\xd1\xa7\x67\x79\x50\x4a\x78\x1c\x17\x0f\x85\xe8\xe9\x55\xa4\x59\xc5\xbf\x0d\x6d\xf6\x7e\x05\xed\xc7\xe4\xf2\x2a\xda\x9c\xe7\x5b\xd0\xa6\x4f\x8b\x33\xa0\x56\x09\xe7\x1a\xca\xf2\xb4\x83\x39\x8f\x91\xb4\x22\xbc\x64\x32\x9a\xf7\x81\x21\x67\x28\xe7\x17\xf6\x85\xe4\xcc\x40\x5b\x25\xdb\x7b\x54\xc7\xf3\x0b\xf9\x8c\x27\xfc\xc7\x44\x55\x66\xdc\xb8\xbc\x33\xac\x7e\x21\x43\xd1\x91\x73\xbe\x54\xb3\x82\x90\xe7\xca\x6c\x34\xaa\xf2\xb5\x05\xe1\xa1\x2b\x1f\xb4\xe9\x20\x5e\xd0\xf0\xc8\x3b\x33\xf0\x2f\x13\xd8\xe3\x2d\x28\x68\xbd\xb1\x33\x85\xe3\xb4\x2a\xde\x9b\x76\x72\x65\xca\x9b\x6e\x48\x48\x20\xe1\xd0\x2c\x94\x1f\x01\x19\xdd\x86\x4a\xcd\x65\xdd\x1a\x83\x4f\x45\x01\x8f\xe1\x6b\xe9\x0c\xce\x79\x61\xfd\xcf\xe3\x18\x5f\x1a\x03\x1f\xcc\xa4\x7d\xd9\x99\x76\x1a\x40\x7b\x8e\xb7\xad\x5e\x7e\x2a\x55\xc5\xe9\xef\x00\x00\x00\xff\xff\x0a\x44\x30\xb6\x18\x0a\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x5f\x8b\xe3\x36\x10\x7f\x96\x3f\x85\x2a\x0e\x4e\xa6\x3e\x99\x52\xae\x14\x43\x0a\xed\x42\xa1\xe5\x7a\x7b\xb0\x6d\x5f\x8e\x23\x28\xf6\x38\xd1\x46\x96\x7c\x92\xbc\xd9\xb0\x97\xef\x5e\xf4\x2f\x76\xb2\xed\x72\x6f\x7d\xd9\xcd\x68\xfe\xfd\x66\xe6\xa7\x91\xc5\x30\x6a\xe3\xf0\x53\x81\x7e\x99\x9c\xd3\xaa\x2a\xd0\x3b\xcd\x3b\xa1\xb6\x37\xfa\x01\x4c\x55\x9c\x70\x6f\xf4\x80\x09\xab\x5b\x3d\x8c\x5a\x81\x72\xb6\x5e\xcf\xbf\xd9\x20\x14\xbb\xb7\xa4\x28\xe6\x50\x06\x3e\x4f\x60\xdd\xc2\x57\x8a\x8d\xad\x27\x27\xe4\xbf\xda\x8b\xef\x7e\x54\x0b\x63\x2f\x86\x3f\xcf\x6c\x6f\xb4\xde\x0b\xb0\xd1\xf2\x75\x0a\x7b\x6f\xdf\xb4\xe1\x3c\x99\xbf\x2e\x8a\x7e\x52\xad\x13\x5a\x61\xa9\xb7\x42\xdd\xb5\x06\x40\xd1\xd2\xa7\x92\xe0\xb0\x75\xdc\x01\x5e\x79\x11\xc9\x58\x6c\x83\x7b\x2e\x2d\x54\x05\x42\x93\x05\xa3\xf8\x00\x0d\x26\xc4\xcb\x23\xb7\xf6\xa0\x4d\x97\x65\x30\x46\x1b\x2f\x14\xe8\x54\x14\xe8\x32\x55\x4c\x82\x42\x06\x96\x62\xe3\x15\x76\x66\x82\xf3\x71\x08\x80\x57\x21\x02\x1a\x98\x81\xce\xf0\x03\x2d\x0b\x8f\x06\x1c\xd6\xa3\x0f\x67\x13\x3e\x34\x80\xdb\x69\x9f\xfc\xc3\xed\xdd\x9f\x01\x00\xda\xe8\xee\xd8\xe0\xdf\xef\x6e\xdf\x33\xeb\x8c\x50\x5b\xd1\x1f\x69\x30\x5e\x80\x8f\xb9\xb2\x1c\xfc\x16\xa5\x44\x6d\x96\xbd\xf2\x54\x16\x28\x14\x94\xa7\x47\x49\xcd\x47\x51\x87\xb2\x48\x85\xc9\x5b\x4b\xaa\x0c\xce\xdb\x22\xe6\x76\xa0\xe8\xbd\xd5\x0a\xaf\x7e\x8a\x60\x63\x7b\xc1\x5a\xdf\x90\x15\xf6\x3a\x96\xc4\x88\x20\x00\xcc\x9a\xf0\xfb\xcb\x17\xac\x26\x29\x8b\xa0\x4e\xf3\x65\x16\x1c\x25\xc9\xf1\x4d\x37\x09\x47\xaa\x1c\xb6\xc2\x4f\x18\x1e\x47\x61\xc0\x36\xf8\xfb\x1f\xde\xe2\x00\xdc\x0f\xb2\xe5\xf2\xce\x69\xc3\xb7\xe0\xfd\x7f\x73\x30\x50\xe2\x7d\xdf\xf8\x3c\xa4\xba\x6e\x98\x3f\x2d\xa3\xef\x41\xa8\x4e\x1f\x98\x0f\xe1\xcb\x63\x3b\x03\xbd\x1f\x50\x4d\xce\x9d\x41\xac\xe5\xae\xdd\x51\x30\x66\xae\xf6\x72\x9e\x60\x0c\x1b\xc0\x5a\xbe\x85\x85\x5b\x2f\x14\x97\xf2\x48\x69\x79\xed\x37\xd3\x23\x70\x2f\x68\x16\x74\x48\x21\x2e\x38\x66\x40\x75\x60\xfe\x16\x70\x48\x44\xf3\xfd\x0e\xf9\xdf\xeb\x0e\x3c\x67\x3e\x7e\x2a\x10\x12\x3d\xa6\x4b\x6c\xdf\xac\x3c\xdb\xa2\x07\x9a\xcd\xd9\x38\xd9\x1d\x1d\x28\x19\x59\x98\xf2\x7a\x1d\x74\xbe\xd7\xb3\x73\x79\xe6\x85\xcf\x25\x17\xbb\xe1\x79\xb6\xa4\x4d\x89\x96\xb6\x39\xd5\x72\xb7\x5c\x46\xe6\xce\x19\xb1\x99\x7c\x99\xb9\x16\xbf\x02\x28\xb9\x35\x62\xeb\x7b\xe8\x2f\x98\xc6\x9b\x23\x7e\xc5\x27\xb7\xd3\x26\x2e\x81\x57\x07\xd8\x58\xe1\x80\x94\xcc\x8e\x52\x38\x4a\x30\x29\xd9\xc0\x47\x6a\xdd\x3c\xa9\x08\xd1\xe0\x95\x6f\x44\xf2\xcf\xfd\x40\x06\xdc\x64\x14\x1e\x28\xe1\x6c\x81\x62\xbd\x96\x42\xed\x49\x95\xac\x90\xe3\x66\x0b\xae\xc1\x64\xbd\x91\xdc\x2b\xe2\xb1\x01\xd9\x60\xa2\xb4\x1e\x41\x79\x9a\xc5\x53\xcf\xa0\x06\x93\x9d\x73\xa3\x6d\xea\xfa\x70\x38\xb0\x5e\x72\x27\x5a\xad\x58\xab\x87\x3a\x42\xb0\x75\x6f\x00\x46\xb1\x0f\x3c\x43\xa7\x0a\x93\x5f\xe3\x01\x26\x91\x00\xc5\x73\xf4\xe7\x82\xff\x3f\xf8\x33\xdc\x6b\xcd\x05\xee\x84\xcc\x43\xff\x16\x13\xec\xbd\x4e\x65\xdc\x30\x19\x32\x4b\xeb\x25\x6c\xba\x2c\xae\xd7\x7e\xc3\x25\x2c\x8c\xb1\x99\xb1\xf1\x68\x61\xd8\x6b\x33\x64\xd0\x03\x25\x62\xd8\x66\x8d\x67\xcb\x5c\x3d\xb2\xa6\x6d\x30\xa9\x0d\x58\xbf\xd1\x34\xb3\x0f\xdb\x58\x05\x3a\x95\x0b\x7f\x35\x4e\xee\xa3\x3b\x8e\xb0\x72\xf0\xe8\x3e\xe5\x60\xe1\x7c\x11\xed\x81\xcb\xe9\x3f\x76\x2c\x42\xa3\xe4\x2d\xec\xb4\xec\xc0\x34\x89\xc3\x7f\x25\x13\x92\x73\x21\xad\x42\x4c\x0a\x25\x7e\xba\x8a\xe3\x57\x09\x8b\xe3\x62\x21\x11\x3e\xbd\x88\x34\x6f\xf1\xaf\x43\x9b\xad\x5f\x40\xfb\x21\x99\xbc\x88\x36\xc7\xf9\x1a\xb4\xe9\xd3\xe2\x0c\xa8\x95\xdc\xda\x06\x93\x3c\xed\xa0\xce\x63\x44\x2d\x0f\x8f\x4c\x46\xf3\x2e\x30\xe4\x0c\xe5\xfc\x60\x5f\xac\x9c\x19\x68\x2b\x45\xbb\xa7\xe5\x39\x17\xaa\x6b\xfc\x07\xdf\x03\xb6\x93\x01\xdc\x0b\x90\x9d\xc5\x4a\x3b\x0c\xc3\xe8\x8e\xd9\x68\xde\x61\xf3\x14\xc2\xd2\xf4\xef\xd3\x75\xc1\xcb\x6d\x8a\xe6\x2b\x98\xc5\x48\xfe\x88\x35\x7c\x12\x14\xf9\x3c\xf5\x25\xfc\x8f\x05\x95\x99\xf9\xe3\xf2\xee\x92\xea\xd9\x3a\x8c\x86\x8c\xb1\xe5\x56\x2d\x10\xba\x7e\x21\xb4\xf2\xaf\xc3\x8d\x01\xee\xa0\xa3\x0f\x4a\x77\x10\x91\x86\x9f\xac\xd3\x03\xfb\x3c\x81\x39\xde\x81\x84\xd6\x69\x33\x5f\xa5\xc8\x9a\x92\xf5\xba\x9d\x2c\x4d\x71\xd3\x4d\x0d\x01\x04\x1c\x9a\xc5\x0b\xe4\x01\x69\xd5\x86\x4c\xcd\x65\xde\xca\x3b\x9f\x8a\x02\x1e\xc3\x57\xdb\x19\x9c\x75\xdc\xb8\x9f\xc7\x31\x8e\x67\x60\x83\x9e\x94\xa3\x9d\x6e\xa7\x01\x94\x63\xfe\xd6\x57\xcb\x4f\xb6\xb2\x38\xfd\x13\x00\x00\xff\xff\x10\x47\xe7\xe1\xa0\x0a\x00\x00"), }, "/js/login.min.js": &vfsgen۰CompressedFileInfo{ name: "login.min.js", - modTime: time.Date(2020, 3, 21, 13, 3, 42, 3767452, time.UTC), - uncompressedSize: 1710, + modTime: time.Date(2020, 3, 24, 3, 50, 21, 836995292, time.UTC), + uncompressedSize: 1743, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xef\x8b\x1b\x37\x10\xfd\x57\xf6\x86\x70\x48\x54\xa7\xed\x51\x52\xca\x9a\x4d\x69\x03\x85\x96\xd0\x0b\xb8\xfd\x14\x82\x91\x77\xc7\xb6\x72\x92\x46\x91\xb4\xe7\x33\x9b\xfd\xdf\x8b\xf6\x87\x6d\x2e\xe9\xc7\x7c\x59\xc4\xe8\xcd\xbc\xd5\x9b\x79\xa3\xad\xa7\x90\xfa\xdf\xbb\x94\xc8\x89\x77\xa4\x5a\xed\xf6\x6f\xe9\x09\xc3\xb0\x0b\x64\x41\x96\x0d\x59\x4f\x0e\x5d\x8a\xe5\xe6\x72\x96\x56\x3b\xf9\x29\xc2\x6a\x2e\x10\xf0\x73\x87\x31\x2d\x49\x46\x6f\x63\xd9\x25\x6d\xbe\x02\xea\xfb\x5f\xdc\x82\xca\xe7\xf1\xf3\x02\x54\xbc\x25\x7a\xd4\x18\x8b\xeb\x6a\x9f\xe2\x5d\x33\x86\xcf\xe0\x5d\xe7\x9a\xa4\xc9\x15\x86\xf6\xda\xad\x9b\x80\xe8\x18\xef\x0d\xa6\x82\xea\xde\x4c\x6f\xa9\x6e\xee\x45\x17\x31\x38\x65\xb1\x02\x10\x5e\xc5\x78\xa4\xd0\xe6\x33\x86\x40\xa1\x02\x18\x56\x01\x53\x17\x5c\xff\xa4\xf1\x58\x2d\x65\xe7\x52\x58\x7f\xf8\xb8\x02\xb8\xa9\x6b\x92\x63\xc2\xed\x2d\x4a\xdf\xc5\x03\xb3\x0c\xbc\x1c\xb9\x37\x9b\xf1\x06\xc4\x0c\xe1\x7c\x95\x53\x5d\x4e\x25\x39\xff\xc9\xed\xad\x5b\xf2\xae\x75\x9e\xb1\xa1\xce\x42\x30\x78\x08\x7a\xaf\x9d\x32\xf9\x51\x54\x6c\x4f\xc5\x2b\xd5\xa5\x03\x85\x51\x8b\xe2\xd5\x11\xb7\x51\x27\x04\x2e\xa3\x37\x3a\x31\x28\x80\x4b\xab\x3c\xa3\xfa\x0d\xcc\x50\xa8\xeb\x9a\x7e\xb5\x0c\x94\x54\x29\x05\xbd\xed\xf2\x73\x36\x1b\xa3\xdd\x23\x88\x3e\xa9\xb0\xc7\x54\xc1\x66\x6b\x54\x0e\x04\x34\x15\x38\x22\x8f\x0e\x03\x88\x43\xc0\x5d\x05\x87\x94\x7c\xac\xca\xf2\x78\x3c\xca\x9d\x51\x49\x37\xe4\x64\x43\xb6\x9c\x28\x62\xb9\x0b\x88\x5e\x3f\xc2\x20\xe0\x8f\xe9\x58\x00\xaf\xe0\xfc\x83\xdf\xf1\x1f\x32\xe7\xcb\x58\x26\xa7\x1f\xb2\x1a\x73\x2f\x0b\xcb\x60\x6a\x0e\x88\xf3\x71\xb3\xd9\x52\x7b\x02\x21\xa5\xc4\xeb\xe8\x8e\x82\x1d\x61\xda\xee\x97\x58\xd6\x1f\x44\x1f\x43\x53\x41\x19\x30\x96\x39\x20\xe3\xd3\x1e\x06\x3e\x42\x9d\xef\xd2\x87\x74\xf2\x58\x27\x7c\x4e\x1f\x97\xbc\x31\x0e\xa2\x7f\x52\xa6\xc3\x8a\xe4\x32\x7c\xc2\x1b\xd5\xe0\x81\x4c\x8b\xa1\x9a\x7a\xfd\xef\x7c\x05\x5c\x90\x1b\xf3\x18\xf2\xfe\x92\x52\xa3\x9c\x84\x92\x63\xb1\xe1\x2b\xe2\x65\x98\xff\x97\x7c\x01\x7c\x83\xfc\xfd\x7c\xf5\x92\x7c\x49\xf9\x26\xf9\xbc\x27\xfa\xc6\xa8\x18\x2b\x58\x44\x1d\xa3\x20\x1a\xe5\x73\x97\x67\x82\x77\xa3\xf8\x5c\x2c\x46\x3c\x1b\x41\x90\x6b\x8c\x6e\x1e\x19\xef\x6f\xae\xcc\x76\xbe\xaf\x6f\x7e\x5c\x8c\x54\x03\x08\x2b\x03\xb6\x41\x1d\xd9\x64\x14\xac\x7b\x8b\xe9\x40\x6d\x05\xef\x1f\xd6\xff\x80\xc8\x2d\xad\xfe\x5a\x3f\xfc\x2d\x63\x0a\xda\xed\xf5\xee\xc4\xfa\xb3\xe5\xaf\x1b\xb0\x58\xff\xf2\xc8\x81\x67\xef\x8f\xab\x8b\x41\xa9\xbc\x2e\xe7\x91\x81\xd7\x11\x04\x72\x99\x0e\xe8\xb2\xb7\xe6\x55\x40\x32\x62\x8c\x9a\x9c\x70\xf5\x54\xf9\xcb\x17\xd7\x19\xb3\x9a\x37\x96\x8c\x98\x18\xcc\x98\xbb\xb6\xd3\x09\x04\x8a\x1e\x9f\xbd\x0e\x18\xab\x9f\x7e\x7e\x3d\x64\x41\x1a\x65\xd6\x89\x82\xda\x63\x4e\xf8\x33\xa1\x65\x90\xc1\x77\xb9\x22\x88\x17\x8f\x71\x9c\x8b\xa3\x76\x2d\x1d\x65\x4e\xcd\x72\xc9\xec\x90\x1a\x4a\x18\xb8\x6c\x54\x6a\x0e\x0c\xeb\x37\xfd\x22\x1a\x4a\x8b\x31\xaa\x3d\x0e\x5c\xee\xf2\x32\x31\x27\xc6\xf8\x08\x38\x4b\x7c\x7f\xa5\xeb\xc0\x07\xc6\x87\x81\xf3\x71\xbe\xfc\xb5\x63\x41\x04\x9e\xed\xe2\xf8\x90\xdb\x16\x50\x25\xbc\x6c\x48\xca\x5d\x6b\xc9\xca\xcf\x1d\x86\xd3\x1a\x0d\x36\x89\xc2\xc5\x57\xd3\x38\x72\xb9\xa3\xa6\x8b\x99\x62\xc0\xe7\x71\xc1\x9f\x57\x77\x4c\x2a\xa4\xdf\xbc\x67\xbc\xb7\xd2\x52\xe7\x12\x6b\xa9\xe9\x2c\xba\x24\x73\x63\xc5\xd5\x6e\xe7\xc3\x7f\x01\x00\x00\xff\xff\xa9\x93\x2e\x8f\xae\x06\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x61\x8b\x1b\x37\x10\xfd\x2b\x7b\x43\x30\x12\xd5\x69\x7b\x94\x94\xb2\xc7\xa6\xb4\x81\x42\x4b\xe8\x05\xdc\x7e\x0a\xc1\xc8\xbb\x63\x5b\x39\x49\xa3\x48\xda\xdb\x33\x9b\xfd\xef\x45\xeb\x5d\xdb\x5c\xd2\x8f\xf9\x62\xc4\xec\x9b\x19\xcd\x1b\xbd\x67\x6d\x3d\x85\x34\xfc\xde\xa5\x44\x4e\xbc\x23\xd5\x6a\xb7\x7f\x4b\x4f\x18\xc6\x5d\x20\x0b\xb2\x6c\xc8\x7a\x72\xe8\x52\x2c\x37\x97\xb3\xb4\xda\xc9\x4f\x11\xee\xe7\x02\x01\x3f\x77\x18\xd3\x92\x64\xf4\x36\x96\x5d\xd2\xe6\x2b\xa0\xbe\xfb\xc5\x2d\xa8\x7c\x9e\x7e\x5e\x80\x8a\xb7\x44\x8f\x1a\x63\x71\x5d\xed\x53\xbc\x6d\xa6\xf0\x19\xbc\xeb\x5c\x93\x34\xb9\xc2\xd0\x5e\xbb\x75\x13\x10\x1d\xe3\x83\xc1\x54\x50\x3d\x98\xd3\x2c\xd5\xcd\x9d\xe8\x22\x06\xa7\x2c\x56\x00\xc2\xab\x18\x7b\x0a\x6d\x3e\x63\x08\x14\x2a\x80\xf1\x3e\x60\xea\x82\x1b\x9e\x34\xf6\xd5\x52\x76\x2e\x85\xf5\x87\x8f\xf7\x00\x37\x75\x4d\x72\x4a\x58\xad\x50\xfa\x2e\x1e\x98\x65\xe0\xe5\xd4\x7b\xb3\x99\xbe\x80\x98\x21\x9c\xdf\xe7\x54\x97\x53\x49\xce\x37\x59\xad\xdc\x92\x77\xcd\xf3\x8c\x0d\x75\x26\x82\xc1\x43\xd0\x7b\xed\x94\xc9\x43\x51\xb1\x3d\x16\xaf\x54\x97\x0e\x14\x26\x2e\x8a\x57\x3d\x6e\xa3\x4e\x08\x5c\x46\x6f\x74\x62\x50\x00\x97\x56\x79\x46\xf5\x1b\x98\xa1\x50\xd7\x35\xfd\x6a\x19\x28\xa9\x52\x0a\x7a\xdb\xe5\x71\x36\x1b\xa3\xdd\x23\x88\x21\xa9\xb0\xc7\x54\xc1\x66\x6b\x54\x0e\x04\x34\x15\x38\x22\x8f\x0e\x03\x88\x43\xc0\x5d\x05\x87\x94\x7c\xac\xca\xb2\xef\x7b\xb9\x33\x2a\xe9\x86\x9c\x6c\xc8\x96\xa7\x16\xb1\xdc\x05\x44\xaf\x1f\x61\x14\xf0\xc7\xe9\x58\x00\xaf\xe0\x7c\xc1\xef\x78\x87\xdc\xf3\x65\x2c\x37\xa7\x1f\x32\x1b\xf3\x2e\x0b\xcb\xe0\xb4\x1c\x10\xe7\xe3\x66\xb3\xa5\xf6\x08\x42\x4a\x89\xd7\xd1\x1d\x05\x3b\xc1\xb4\xdd\x2f\xb1\xcc\x3f\x88\x21\x86\xa6\x82\x32\x60\x2c\x73\x40\xc6\xa7\x3d\x8c\x7c\x82\x3a\xdf\xa5\x0f\xe9\xe8\xb1\x4e\xf8\x9c\x3e\x2e\x79\x53\x1c\xc4\xf0\xa4\x4c\x87\x15\xc9\xe5\xf1\x09\x6f\x54\x83\x07\x32\x2d\x86\xea\xb4\xeb\x7f\xe7\x4f\xc0\x05\xb9\x29\x8f\x21\x1f\x2e\x29\x35\xca\x13\x51\x72\x2a\x36\x7e\xd5\x78\x79\xcc\xff\xdb\x7c\x01\x7c\xa3\xf9\xfb\xf9\xd3\xcb\xe6\x4b\xca\x37\x9b\xcf\x3e\x31\x34\x46\xc5\x58\xc1\x42\xea\x14\x05\xd1\x28\x9f\xb7\x3c\x37\x78\x37\x91\xcf\xc5\x22\xc4\xb3\x10\x04\xb9\xc6\xe8\xe6\x91\xf1\x61\xd6\xd5\x32\xf0\x6a\x35\x07\x96\x4b\xac\x56\x57\x6a\x3c\x17\xa8\x6f\x7e\x5c\x94\x56\x03\x08\x2b\x03\xb6\x41\xf5\xec\xa4\x24\xac\x07\x8b\xe9\x40\x6d\x05\xef\x1f\xd6\xff\x80\xc8\x3b\xaf\xfe\x5a\x3f\xfc\x2d\x63\x0a\xda\xed\xf5\xee\xc8\x86\xb3\x27\x5c\x6f\x68\xf1\x86\xcb\x05\x46\x9e\xcd\x61\xf2\x36\x06\xa5\xf2\xba\x9c\xdf\x14\xbc\x8e\x20\x90\xcb\x74\x40\x97\xc5\x37\x7b\x05\xc9\x88\x31\x6a\x72\xc2\xcd\x73\x7d\xf9\xe2\x3a\x63\xee\x67\x4b\x93\x11\x13\x83\x19\x73\xdb\x76\x3a\x81\x40\x31\xe0\xb3\xd7\x01\x63\xf5\xd3\xcf\xaf\xc7\xcc\x58\xa3\xcc\x3a\x51\x50\x7b\xcc\x09\x7f\x26\xb4\x0c\x32\xf8\x36\x57\x04\xf1\x62\x18\xc7\xb9\xe8\xb5\x6b\xa9\x97\x39\x35\xd3\x25\xb3\x84\x6a\x28\x61\xe4\xb2\x51\xa9\x39\x30\xac\xdf\x0c\x0b\x69\x28\x2d\xc6\xa8\xf6\x38\x72\xb9\xcb\x6e\x63\x8e\x8c\xf1\x09\x70\xa6\xf8\xee\x8a\xd7\x91\x8f\x8c\x8f\x23\xe7\xd3\x03\xf4\xd7\x92\x06\x11\x78\xd6\x93\xe3\x63\xde\x6b\x40\x95\xf0\x62\xa1\x94\xb7\xd6\x92\x95\x9f\x3b\x0c\xc7\x35\x1a\x6c\x12\x85\x8b\xf0\x4e\xef\x95\xcb\x1d\x35\x5d\xcc\x2d\x46\x7c\x9e\xfe\x01\xce\xde\x1e\x93\x0a\xe9\x37\xef\x19\x1f\xac\xb4\xd4\xb9\xc4\x5a\x6a\x3a\x8b\x2e\xc9\xbc\x58\x71\x65\xfe\x7c\xfc\x2f\x00\x00\xff\xff\x17\x2f\xdf\x32\xcf\x06\x00\x00"), }, "/js/pages": &vfsgen۰DirInfo{ name: "pages", @@ -843,9 +850,23 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x97\x6f\x6b\xe3\xb8\x13\xc7\xdf\x8a\x6b\x96\x60\x83\x56\x49\x1e\xfc\xe0\x87\x73\xde\x65\xe9\xe6\x1e\xdc\x95\xb4\x74\xdb\x83\x23\x84\xa2\xda\x93\x44\x3d\xd9\xca\x49\x4a\xb3\xc5\xf8\xbd\x1f\x92\x25\xff\x8b\x93\xb6\x1c\xbd\x27\xc1\x19\x4b\xa3\xd1\xe8\xf3\x1d\x8d\x69\xb6\xe3\x42\x15\x57\x9c\xa4\x34\xdf\x5c\xf2\x67\x10\xe8\x5e\x82\xb8\xa2\x52\x95\x6b\xc1\x33\x1f\xe3\x71\xc2\xb3\x1d\xcf\x21\x57\x72\xfc\xd0\x3c\xe3\x8c\xe6\xf8\x49\xfa\x33\xeb\xe3\x3b\x25\x8c\x6f\xe6\x42\x70\x81\xaa\xe7\x6f\x0c\x84\xb2\xcf\x97\x3c\x5f\x53\x91\xd9\x7f\xbf\x72\x91\xe9\x65\xea\x25\x52\x63\x96\xe3\x07\xfb\xd0\x77\x2e\xe0\xef\x3d\x48\x85\x12\xc6\x73\xb8\x7e\x7c\x82\xa4\x09\x8f\xd1\x47\x39\xde\x2b\xca\x8e\x66\xd1\xe9\xff\xf3\x7a\x98\xfe\x63\x7e\xea\x51\xf0\x53\x8f\xf2\xd6\xfb\x3c\x51\x94\xe7\x9e\x8e\xe8\x86\x6c\x20\x08\x0b\x06\xca\x83\xb8\x60\x55\x5e\xa2\x8b\x29\xda\x4b\x10\x32\x5a\xae\x90\x04\x06\x89\x82\xf4\xde\x19\xcc\x9b\xab\x66\x64\xca\xaa\x2c\x44\x45\x06\x52\x92\x0d\x44\xbe\x8f\x9e\xa9\xa4\x8f\x0c\xa2\x8b\x69\xa9\x07\x2c\xe0\x10\x15\x8d\x0d\x35\x0b\xb9\xd7\xb7\x20\xf7\x4c\x9d\xf3\x31\x4f\xa9\x3a\xe7\xe4\x3b\x30\x50\x70\x6e\xc4\x2d\x48\x38\xeb\xc2\x0c\x38\x1f\x49\x39\xab\xf3\x27\x03\x40\xb2\xca\x1d\x8b\x01\xe7\x24\x03\xac\xf8\x15\x3f\x80\xb8\x24\x12\x82\x10\xd1\x58\x0e\x98\x67\x02\xd4\x5e\xe4\x1e\xfb\x85\x7e\xfd\x3c\x8d\xd8\x17\xfa\x75\x1a\x4d\xca\xca\x5a\x3c\x53\x38\x44\x6e\x8d\xc0\xb9\x5f\xae\x66\x74\x1d\x4c\xe2\x38\x66\x98\x41\xbe\x51\xdb\xd1\x08\xb0\x4b\x3d\xb6\x01\x8e\x46\x0c\xef\xf6\x72\x1b\x64\x41\x1b\xcf\x7a\x2b\xad\x19\xd6\x84\x78\xfe\x2d\x49\x60\xa7\x20\x0d\xc2\xe2\xd8\x63\xac\xb7\x1c\x86\x68\x60\xe5\x05\x1c\x4e\xae\xeb\x80\x47\x85\xa2\x8a\x41\xa4\x39\x0c\xfc\x05\x1c\x0c\x74\x7e\x58\x27\xbe\xf6\x64\x0d\xed\x78\x58\x58\x5c\xd4\x89\x60\x3a\x3a\x3b\x28\xbe\x98\xa0\xfe\x44\x6d\xcb\xb0\x80\x54\x90\x43\x10\xce\x74\xd6\x68\x5c\x64\xa0\xb6\x3c\x8d\xfc\x9b\xeb\x1f\x77\x3e\x7a\xe4\xe9\x4b\xf4\xdb\x8f\xeb\x05\x96\x4a\xd0\x7c\x43\xd7\x2f\x01\x0b\xcb\x99\x55\x5b\xe0\x8f\xc9\x8e\x8e\x35\xdf\x3e\xf2\xff\x27\x7d\x44\x43\xac\xb6\x90\x07\x2c\xfe\x52\x00\xee\x28\x21\x5e\xae\x10\x60\xa3\x85\x6a\xeb\x2c\xac\xff\x4b\x2e\x54\x20\x5d\x10\xd5\xde\xf5\x24\x4f\x92\x67\x48\xbd\x03\x55\x5b\x6f\x47\xa4\x3c\x70\x91\x7a\x9f\xdc\x93\x1f\x62\x01\x3b\x46\x12\x08\xfc\xc6\x88\x18\x76\xcf\xe1\xcc\x6d\xba\x42\xd4\x9d\x61\x4c\x51\xef\x45\x7d\x78\x93\x32\xc4\x09\x51\xc9\x36\x90\x66\x0b\xfd\xe3\x8f\x65\x0d\xc2\xd0\xd9\xeb\xe9\x6b\x9a\x13\xc6\x5e\x82\x20\x34\x1e\xea\x74\x4f\x07\x8e\xa0\x65\x6b\xf8\x69\x1d\x4b\x19\x96\x3a\xe1\x88\xe7\xb7\xf0\x64\x72\xe9\xa0\xeb\x4e\x39\x83\x5c\x77\x87\x47\xe0\x55\x35\xf8\x14\x75\x8f\x2a\xbf\x83\x9f\xca\xbe\xb8\xfe\xdd\x0f\x51\x47\x1a\x47\xa9\x1d\x90\xc7\x40\x96\x4f\xc6\xab\x4b\x96\x1b\x56\x29\x99\xc6\x3d\x8e\x96\x93\x15\x12\xb1\x25\x67\x49\x57\x48\xc5\xad\xa2\x1f\x88\x70\xf6\x26\x69\xe9\x95\x06\xb5\x65\x42\x70\xe2\x4a\x61\x4d\xf6\x4c\xfd\x41\xd8\x1e\x22\xf5\x3e\xad\xb5\x1d\x0d\x8a\xed\xf5\x8d\x35\x72\xbc\x3f\xa1\xc6\x82\xa6\x91\xc0\x34\x45\xba\x6a\x46\xcc\x14\x4f\x73\xe1\xd8\xff\xee\xb1\x3c\xa7\x5a\xd5\x51\xad\x95\xe4\x8e\xd1\x04\x02\x8a\xa6\xe8\x58\xa8\x1f\x2e\x92\x6e\xee\xda\xc6\x77\xca\xa4\x37\x47\x73\x57\x0e\xdf\x0b\xd5\x6d\xd8\x85\x4f\xda\x5a\x74\x03\x22\x23\xba\xa9\x61\x2f\x5e\x6a\xc6\x79\x9f\x72\xcf\xa4\xc4\xfb\xda\x29\x43\xb9\x8f\x7a\xc7\x6a\x57\x39\xc2\xd2\x35\x3c\x1d\x2a\xab\x20\x1c\x97\x4e\x6a\x12\x11\x83\x5d\x4b\x8a\x7f\x82\xf4\x43\x24\xcc\x6e\x5b\xe6\x05\xef\xe3\x6c\xb7\x35\x70\x5b\xb4\x01\x1e\xe2\xb7\x3b\x73\x80\x60\xd9\x27\x18\x67\x64\xa7\x91\x70\x0c\xcb\x15\xa6\x69\x88\x58\xc3\xf1\xf7\xf9\xd5\xfc\x6e\x3e\x8c\xb2\x1c\x44\x54\x5a\x46\x99\x65\xd4\x02\xd3\x5d\xd7\x60\x69\x9a\x8b\xf8\x8b\xfc\x0c\x21\x5e\x73\x31\x27\x35\x9f\x1d\xa2\x25\x9a\x86\x65\xd8\x3f\xa5\x78\xb9\xfa\x70\xa8\xfb\x09\xed\x9a\x4f\x82\x3d\xc8\xf5\xd1\xa4\x33\x64\x9b\x26\xad\x0f\xf6\x40\xf1\xa1\x71\x73\x70\x48\x58\xf4\xcd\xe4\xe6\xf2\x5d\x73\xe1\x7d\xd2\x05\xa5\xcf\x3d\xc9\xc0\x47\xd4\xd4\x9f\xb7\xa1\x5e\x39\xbe\xa9\xef\xf2\x9a\x76\xf1\x2f\x68\xaf\xb6\xfa\x06\xd8\xa9\x6b\xc8\x6b\xdc\x3b\x53\xdf\x42\xbb\x4e\x19\x6b\xa7\x8c\xbe\xa1\x5e\x33\xad\x88\x21\xce\xc7\x2e\xc5\x63\xa1\x03\xe9\xf5\x53\x35\x92\xad\x86\xbb\xe9\x66\xea\x5b\xdb\xf9\x88\x5e\x6d\x92\x64\xd3\x24\xa1\x23\xc7\x1f\xd8\x0d\xb5\xf2\x3e\x1d\xcc\x7b\xc7\xfa\x3e\x4d\xf4\xe7\x18\x49\x9c\xd2\xc3\xfb\xdb\xa2\x23\x60\x5f\x6b\x8e\x06\xce\x6a\xa0\x3d\x1a\x4c\xbc\x89\xdd\xb6\x09\xcb\xd5\xac\x2e\x1a\xa3\x11\x75\x71\xb6\x3f\xc9\xed\x58\x11\x67\x81\xfb\x38\x47\x45\xc2\x88\x94\x91\xaf\xe1\xfa\xbc\x23\x1b\x78\x78\x30\x8f\x8c\x4a\xe5\xb7\x54\xd3\xfe\x3a\xb5\x1f\xb1\xd6\x68\xbf\x64\x29\xcf\xa3\x1e\xfa\x88\xe7\x0b\x38\x5c\x32\x9a\xfc\x75\xa2\x23\x9d\xe8\x03\xd2\x97\x6f\x6f\x50\xf7\x3e\x36\xa3\xaa\x52\xd6\x1b\xd7\xaf\x6f\x93\xea\xc0\x25\xf4\x1d\xf6\x0e\x7d\x52\x96\xf5\xe7\x62\x16\xf8\x78\xcb\x33\x30\xbb\xf7\x91\x40\x18\x63\xa6\x7f\xa8\xc1\x27\x11\x40\x14\x44\xa7\xef\xc0\x76\x66\xba\x05\x01\x9d\xbc\xa7\x3a\x7a\x35\xf6\x58\xfe\xe7\x77\x4d\x37\xf0\x9e\x76\xca\xf2\x9f\x00\x00\x00\xff\xff\xd2\x64\x23\xca\xd4\x11\x00\x00"), }, + "/js/register.js": &vfsgen۰CompressedFileInfo{ + name: "register.js", + modTime: time.Date(2020, 3, 24, 3, 49, 46, 816995919, time.UTC), + uncompressedSize: 3888, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x6d\x8b\x1b\x37\x10\xfe\xbc\xfb\x2b\x54\x11\xc8\x2e\xf5\xc9\x94\x92\x52\x16\x5c\x48\x53\x0a\x29\x6d\x12\x7a\x4d\xfb\x21\x04\xa3\xdb\x1d\xdb\xca\x69\xa5\x8d\x34\x7b\x8e\x49\xfc\xdf\x8b\xde\x76\x65\xfb\x38\xd2\x94\xd2\x2f\x77\x2b\xcd\xdb\xf3\x8c\x46\xa3\xb1\xe8\x07\x6d\x90\x7c\x2c\x8b\x1f\x47\x44\xad\x16\x65\xf1\xab\xe6\x9d\x50\xdb\x67\xfa\x0e\xcc\xa2\x3c\x92\x8d\xd1\x3d\xa1\x6c\xd9\xea\x7e\xd0\x0a\x14\xda\xe5\x7a\xfe\x66\xbd\x50\xec\x9d\xa5\x65\x39\xbb\x32\xf0\x7e\x04\x8b\x99\xad\x14\x37\x76\x39\xa2\x90\xf7\xea\x8b\x6f\xbe\x57\x99\xb2\x5b\xfa\x3f\x17\xba\xcf\xb4\xbe\x15\x60\x83\xe6\xe3\xe8\xf6\x9d\xbd\x6a\xfd\x7e\x54\x7f\x5c\x96\x9b\x51\xb5\x28\xb4\x22\x06\xb6\xc2\x22\x98\xeb\xd6\x00\xa8\xaa\x76\xd1\x24\x20\xb1\xc8\x11\xc8\xca\x2d\x0b\x19\xf8\x36\x64\xc3\xa5\x85\x45\x59\x14\x8a\xf7\xd0\x10\x4a\xdd\xf7\x68\xc1\xe4\xeb\x81\x5b\xbb\xd7\xa6\x4b\x6b\x03\x03\x70\x7c\x75\xb6\x0b\xc6\x68\xe3\x16\x65\x71\x2c\xcb\x62\xb9\x24\x4f\x5f\x3d\x27\x09\x56\xc0\x80\xa2\x07\x3d\xe2\x4f\xa3\xe1\x1e\xeb\x8a\xd0\x27\x8e\x6b\x71\x81\x3e\xe0\x76\x5e\xae\x41\x75\xde\x55\x4a\x71\x51\x78\x2a\x2c\x92\x20\x2b\x82\x66\x84\x69\xdb\xe3\x70\x9e\x69\x59\x14\x3d\x33\xd0\x19\xbe\xaf\xea\xd2\xd1\x06\x24\x7a\x70\x71\x6c\x4c\x44\xd1\x03\xee\xb4\xe3\xf0\xea\xe5\xf5\x1f\x9e\x47\x71\xa3\xbb\x43\x43\x7e\xb9\x7e\xf9\x82\x59\x34\x42\x6d\xc5\xe6\x50\x79\xe5\x98\xa5\x10\xc7\x7d\x7b\xfd\x2c\x5f\x41\x92\xd6\x41\x3a\x67\x2f\x48\xd3\x3a\x48\x79\xd7\x0b\xd5\x78\x06\x7e\xe3\x58\x97\x85\xcf\x5f\xaa\xa8\x8a\x2e\xf9\x20\x96\xce\x27\x5d\x9c\x27\x70\x91\xe8\x38\xab\x82\xe1\x0e\x54\xa5\x60\xff\xda\x82\x21\xab\x1f\x02\xc3\xc2\x00\x8e\x46\x91\x53\x7f\x52\x6f\x85\xba\xcf\x61\xb0\xb9\x2f\x2f\x0f\x66\x26\xcf\x42\x44\x70\x96\x87\x3c\x13\x49\x23\xed\x04\x05\xcf\x3d\xfd\x3b\x66\x94\xde\x59\x57\x2b\x89\x8f\x2f\x66\xb0\x36\x14\x90\x93\xb1\xb8\x8c\x81\x46\x4f\x3f\x48\xfc\xf7\xa7\x4f\x44\x8d\x52\x96\x5e\x1c\x2f\x14\xb3\x80\x15\x8d\x86\x57\xdd\x28\x90\x2e\x92\xdb\x05\xf9\x48\xe0\xc3\x20\x0c\xd8\x86\x7c\xfb\xdd\x13\x12\x91\x49\xdd\x72\x79\x8d\xda\xf0\x2d\x38\xfb\xe7\x08\x7d\x45\x9d\xed\x55\x3c\x9f\xb3\xdc\xb8\xdd\x3a\xd8\xee\x85\xea\xf4\x9e\x39\x17\x2e\xd1\x6c\x67\x60\xe3\xaa\x74\x49\x33\xb6\x2d\xc7\x76\x57\x81\xc9\x4e\xef\xb4\xa8\xc1\x18\xd6\x83\xb5\x7c\x0b\x99\xd9\x46\x28\x2e\xe5\xa1\xaa\xea\x73\xbb\xf9\x8e\xf8\x9b\xee\x25\xd9\x9d\x88\x2e\x8e\xa7\x37\x50\x75\x60\xfe\x14\xb0\x8f\x77\xd0\xe5\xdb\xc7\x7f\xa1\x3b\x70\x17\xe7\xcd\xdb\xb2\x28\xc4\x86\x54\x39\xb6\xaf\x56\xee\xca\x05\x8b\x62\x56\x67\xc3\x68\x77\x55\x5f\xd1\x81\xa5\xab\xbd\x5e\x7b\xb1\x4b\xf7\x6c\x5f\x4f\x75\xef\xc2\xc9\xac\x1f\x5f\x06\x8c\xd2\x18\x2b\xd7\x4d\xd1\xf2\x7e\x7e\xea\x99\x23\x1a\x71\x33\x3a\xa6\x89\x8e\x6b\xbb\x15\x7d\x69\xc4\xd6\xa5\x91\x48\xbd\xd5\xe4\xe6\x40\x1e\xf1\x11\x77\xda\x84\xc6\xfb\x68\x0f\x37\x56\x20\xd0\x9a\xd9\x41\x0a\xac\x28\xa1\x35\xeb\xf9\x50\x59\x9c\x0f\x2b\x40\x34\x64\xe5\x72\x11\xed\x53\x4a\xd2\x35\xec\x2b\xca\x59\x86\x62\xbd\x96\x42\xdd\xd2\xe9\xe2\x21\x37\x5b\xc0\x86\xd0\xf5\x8d\xe4\x4e\x10\xb6\x0d\xc8\x86\x50\xa5\xf5\x00\xca\x55\x5a\xd8\x75\x45\xd4\x10\xba\x43\x1c\x6c\xb3\x5c\xee\xf7\x7b\xb6\x91\x1c\x45\xab\x15\x6b\x75\xbf\x0c\x10\xec\x72\x63\x00\x06\x71\x4b\xc3\xfd\x5a\x10\xfa\x73\xd8\x20\x34\xd4\x40\x79\x89\x7e\x22\xfc\xff\xc1\x9f\xe1\x9e\x4b\x4e\x70\x47\x64\x0e\xfa\xd7\x84\x12\x67\x75\xac\x43\x07\x4d\x90\xa7\xda\x0b\x91\xf3\x9d\xf5\xda\x75\xb5\x88\x88\x31\x36\x97\x6e\xd8\x3a\xd5\xdd\x68\xd3\x27\xf4\x7d\x45\x45\xbf\xcd\x84\xae\x72\xe6\x4c\x14\xd6\xb4\x0d\xa1\x4b\x03\xd6\x75\x5b\xcd\xec\xdd\x96\xa6\x46\x37\xbb\xc8\xef\x05\x0a\x94\x40\x17\xb1\x22\xff\x02\xd9\xea\x1e\x16\xae\x5b\x12\xdf\x5f\xea\xcc\x4e\xa8\x61\xc4\x37\x78\x18\x60\x85\xf0\x01\xdf\x66\x6e\xbc\x28\x03\x72\xc7\xe5\x78\xcf\xb3\x55\x14\x7c\x44\xed\xc6\x1a\x09\xe8\x1e\x7b\x05\xfb\xab\xd4\x91\xe9\xd4\xb4\x25\x6f\x61\xa7\x65\x07\xa6\x89\xc0\x5e\xf0\x1e\x68\x82\x52\x68\xe5\xe3\x55\x50\x93\x8f\x59\x0c\xd7\xac\x58\xa8\x06\xe6\x01\x90\xe3\x25\xf9\x2f\x25\x71\xfe\xb2\x7c\x21\x91\xd7\xd1\xcd\x83\x64\x52\xac\x7f\x4a\x28\x01\xf8\x6c\x52\xa7\x83\xc1\x17\x93\x4a\x73\xd9\x83\xa4\x92\xa3\xff\x9c\xd4\xe9\xac\xf8\x2f\xa9\xfd\xee\x9d\x91\xe1\x73\x18\x9e\x06\xfe\x1c\x9e\xf1\xd7\xc0\xc4\xa3\x95\xdc\xda\x86\xd0\xac\x53\x78\x8d\x09\x61\xcb\xfd\xf0\x35\xa3\x8b\x3d\x66\x82\x35\x8d\xd9\x27\xef\xd6\x0c\xba\x95\xa2\xbd\xad\xea\x29\xa2\x1b\x77\x7f\xe3\xb7\x40\xec\x68\x80\x6c\x04\xc8\xce\x12\xa5\x91\x40\x3f\xe0\x21\x29\xcd\x0f\x61\x28\x4b\xff\xf0\xba\x19\xe7\xbc\x5e\xcf\x04\xf3\x99\xe7\x4f\x75\x31\x37\xf7\xb4\x0c\x6d\xf5\x02\x4f\xc8\x28\x74\x53\xfe\x89\xb0\xa4\xd5\xc6\x40\x8b\x97\xd8\x26\x25\x37\x18\xdc\x77\x24\x79\xfc\xd3\x21\x27\xa4\xd3\x75\xbd\xc9\x49\xa7\xc1\xaa\xc7\x48\x7a\x37\x20\x85\xe6\xff\x20\xf0\xf9\x67\x44\x99\x44\xf1\xb8\xfd\xff\x70\x42\x75\x7a\x0c\x86\xfc\x45\xa3\x8b\x8b\x21\x21\x28\x32\xc6\xf2\x59\xa3\x2c\x8a\xf3\xd1\x49\x2b\x37\x36\x3d\x33\x3e\x4d\xd5\x9d\xd2\x1d\x04\x96\xfe\x93\x75\xba\x67\xef\x47\x30\x87\x6b\x90\xd0\xa2\x36\x27\x4f\x4b\xb8\x46\x35\xdb\xe8\x76\xb4\x55\x74\x1d\x9f\x30\xef\x43\xc0\xbe\xc9\xa6\x33\x87\x49\xab\xd6\x07\x6b\x4e\x43\x2f\x9c\xf1\xb1\x2c\xe1\x83\xff\x09\x39\xe1\xb3\xc8\x0d\x3e\x1d\x86\x50\x72\x3d\xeb\xf5\xa8\xb0\xea\x74\x3b\xf6\xa0\x90\xb9\x87\x70\x71\xf6\xfb\xb1\x2e\x8f\x7f\x07\x00\x00\xff\xff\x2f\x3c\x61\x38\x30\x0f\x00\x00"), + }, + "/js/register.min.js": &vfsgen۰CompressedFileInfo{ + name: "register.min.js", + modTime: time.Date(2020, 3, 24, 3, 49, 46, 956995917, time.UTC), + uncompressedSize: 2448, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x6d\x8b\xdc\x36\x10\xfe\x2b\xbe\x21\x6c\x25\xaa\x93\x73\x94\x94\xe2\xc3\x09\x6d\xa0\xd0\x52\x72\xa1\xd7\xd2\x0f\x21\x2c\x5a\x7b\x76\x57\x39\xbd\x38\xd2\xf8\xf6\x16\xc7\xff\xbd\xc8\x6b\xef\x79\xb7\x6f\x39\x68\xbe\x2c\x5a\xe9\x99\x99\xc7\x9a\x99\x67\xa4\x6d\xe3\x03\x75\x3f\xb4\x44\xde\x89\x5f\xbc\xaa\xb5\xdb\xbc\xf6\xf7\x18\xfa\x75\xf0\x16\x64\x5e\x79\xdb\x78\x87\x8e\x62\xbe\x7c\x5c\x4b\xab\x9d\xfc\x10\xe1\x7a\x74\x10\xf0\x63\x8b\x91\x26\x23\xa3\x57\x31\x6f\x49\x9b\xbf\x00\xf5\xd5\x77\x6e\x42\xa5\xf5\xf0\x73\x06\xca\x5e\x7b\x7f\xa7\x31\x66\x73\x6f\x1f\xe2\x65\x35\x6c\x1f\xc1\xeb\xd6\x55\xa4\xbd\xcb\x02\x6e\x74\x24\x0c\xb7\x55\x40\x74\x8c\x77\x06\x29\xc3\xb2\x33\x87\xcf\x29\x2e\xae\x84\x53\x16\x0b\x00\xd1\x46\x0c\xd3\xba\x51\x31\xee\x7c\xa8\xd3\x3a\x60\x83\x8a\xde\xce\x76\x30\x04\x1f\x0a\x80\xfe\x3a\x20\xb5\xc1\x75\xf7\x1a\x77\xc5\x14\x73\x0c\x12\xca\x77\xef\xaf\x01\x2e\xca\x12\xe5\x60\xb0\x58\x04\xd9\xb4\x71\xcb\x2c\x83\x46\x4e\xc4\x96\xcb\xe1\x10\xc4\x88\xe2\xfc\x3a\x59\x53\xb2\x46\x39\xd2\x5c\x2c\x68\x32\x9d\xe7\x61\xc4\xfa\x32\x5d\x14\x83\x9b\xa0\x37\xda\x29\x93\x19\xbf\xf1\xd9\x6a\x9f\x3d\x53\x2d\x6d\x7d\x18\xee\x2a\x7b\xb6\xc3\x55\xd4\x84\xc0\x65\x6c\x8c\x26\x06\x19\x70\x69\x55\xc3\xb0\x7c\x09\x23\x14\xca\xb2\xc4\x57\x96\x81\x92\x8a\x28\xe8\x55\x9b\xbe\x68\xb9\x34\xda\xdd\x81\xe8\x48\x85\x0d\x52\x01\xcb\x95\x51\x69\x23\xa0\x29\xc0\x79\xdf\xa0\xc3\x00\x62\x1b\x70\x5d\xc0\x96\xa8\x89\x45\x9e\xef\x76\x3b\xb9\x36\x8a\x74\xe5\x9d\xac\xbc\xcd\x0f\x21\x62\xbe\x0e\x88\x8d\xbe\x83\x5e\xc0\x8f\x87\x65\x06\xbc\x80\x23\xc1\x2f\xc8\x21\xc5\x3c\xdf\x4b\xc1\xf1\xeb\x74\x1b\x63\x3a\x33\xcb\xe0\x98\x1f\x10\xf3\x7f\xcb\xe5\xca\xd7\x7b\x10\x52\xca\x70\x76\xb0\xf6\xc1\x0e\x60\x6d\x37\xb3\xed\x94\x0b\x10\x5d\x0c\x55\x01\x79\xc0\x98\xa7\x0d\x19\xef\x37\xd0\x73\x71\x56\x09\xa4\xc9\x20\x88\x43\x36\xff\x40\x53\x79\x8b\x22\x73\xb8\xcb\x52\x6d\x02\x1f\x0c\xb4\x6b\x5a\x7a\x47\xfb\x06\x4b\xc2\x07\x7a\x3f\xb3\x1f\x8e\x40\x74\xf7\xca\xb4\x58\xa0\x4c\xd5\x2c\x54\x4b\x3e\x35\xa7\x41\xc2\x02\x1c\xee\x2e\xa7\xe2\x06\xd1\x18\x55\xe1\xd6\x9b\x1a\x43\x71\x88\xfa\x46\x59\x04\x2e\xbc\x1b\x7c\xb1\xc0\xbb\x83\x9b\x32\xc8\xc3\xc5\xcb\xc1\x79\xdf\x3f\x95\xcb\xd4\x5d\x4f\xe4\xf3\xfb\x68\x76\xce\x69\x72\xf7\x9f\xbc\x26\xe7\xff\xc6\x6d\xc2\x3c\x91\xdb\x24\x09\xe7\xdc\x26\x9b\xff\x85\xdb\xa9\xfa\x3c\x91\xe1\xaf\x83\x71\xd6\xfc\x03\xd1\x53\xdf\x7f\x4b\x77\x54\xff\xae\x32\x2a\xc6\x02\x66\x7d\x30\x1c\x80\xa8\x54\x93\xda\xf3\x18\x70\xec\x1a\x2e\x26\x85\x3d\x8a\x98\xf0\xae\x32\xba\xba\x63\xbc\x1b\x65\x31\x25\x70\xb1\x18\xff\x4c\x19\x3d\x6e\x4c\xac\x17\x0b\x36\xbb\xd3\x74\x72\xca\xfb\xd5\x4c\x78\x8f\xc1\xca\x8b\xe7\x93\xa2\x96\x00\xc2\xca\x80\x75\x50\x3b\x76\x50\xcc\x50\x76\x16\x69\xeb\xeb\x02\xde\xde\xdc\xfe\x06\x22\x75\x75\xf1\xf3\xed\xcd\x1b\x19\x29\x68\xb7\xd1\xeb\x3d\xeb\x86\x61\x30\x76\xd1\x71\x38\xcc\x2a\xf9\x38\x24\xe6\x15\x54\x5b\xed\x8a\x8b\xe7\x3d\x4f\xc3\x61\x18\x7c\x0c\x72\xd5\xe8\x7c\x68\x61\x01\x2f\x22\x88\xc0\x25\x6d\xd1\x25\xe1\x3d\xc5\x18\xbf\xd1\x6e\x04\x7d\x0e\xc3\xcf\x64\xd5\xf3\x9e\x3f\x86\x1c\xa7\x13\xca\x88\x31\x6a\xef\x04\x8d\xb7\xff\xe9\x93\x6b\x8d\xb9\x1e\x27\xac\x8c\x48\x0c\x46\xcc\x65\xdd\x6a\x02\x11\x44\x87\x0f\x8d\x0e\x18\x8b\x6f\xbe\x7d\xd1\xa7\x24\x57\xca\xdc\x92\x0f\x6a\x93\xfc\xd1\x4f\x84\x96\x41\x02\x5f\x1e\xbe\xf7\x8c\x31\x71\x2e\x76\xda\xd5\x7e\x27\x93\x69\xca\x9a\x4c\x8a\x5d\x42\x0e\x3d\x97\x95\xa2\x6a\xcb\x42\xf9\xb2\x9b\x72\x17\xa4\xc5\x18\xd5\x06\x7b\x2e\xd7\x69\xb8\x99\x3d\x63\x7c\x00\x1c\x33\x7d\x35\x4b\x6f\xcf\x7b\xc6\x8b\xc9\xfa\x50\x94\x49\x40\xa7\xab\xc8\x6a\x8f\xd1\x7d\x45\x99\x4d\xa1\x80\xf3\xbe\xe7\x7c\x14\xe2\xd9\xb4\x01\xe1\x79\x12\x79\xe2\x7d\x2a\xdb\x80\x8a\xf0\x71\xc0\x63\x2a\xb4\xda\x5b\xf9\xb1\xc5\xb0\xbf\x45\x83\x15\xf9\x70\x32\x0d\x0e\x6d\xcc\xe5\xda\x57\x6d\x64\xbc\xef\x7b\x7c\x18\xde\x2f\xc7\x97\x49\x24\x15\xe8\xfb\xa6\x61\xbc\xb3\xd2\xfa\xd6\x11\xab\x7d\xd5\x5a\x74\x24\x53\xb2\xc5\xe9\xd3\x85\xf7\x7f\x06\x00\x00\xff\xff\x8c\xa3\xc4\xcb\x90\x09\x00\x00"), + }, "/less": &vfsgen۰DirInfo{ name: "less", - modTime: time.Date(2020, 3, 8, 7, 25, 23, 624270605, time.UTC), + modTime: time.Date(2020, 3, 24, 2, 2, 21, 847111336, time.UTC), }, "/less/_index.less": &vfsgen۰CompressedFileInfo{ name: "_index.less", @@ -861,6 +882,13 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xef\x6e\xe3\x2e\x10\xfc\x6c\x9e\x62\x7f\x95\xfa\x53\x53\x95\xc4\xbd\x53\x4f\x3a\xfc\x12\x27\xf5\x01\x22\x6c\xe3\x98\x0b\x66\x2d\xc0\x4d\xd2\xaa\xef\x7e\xc2\x06\xff\x89\x73\xd5\xe5\x43\x94\x2c\x0b\x33\x3b\x33\xb0\xdb\x01\x76\x8e\xc1\x76\xbb\x2b\xac\xdd\x11\xf2\x08\x1f\x24\xc9\xd1\x94\xc2\xd0\x93\x2c\x5d\x0d\x00\x0c\xd2\xcc\x17\xcf\xd4\xca\x77\xa9\x0f\x00\x7d\x31\x74\xe5\x78\xce\x48\x52\xa1\x76\xb4\xe2\x8d\x54\x97\x61\xf5\xee\x15\x3b\x53\x08\x78\xe5\xda\xc2\x2f\x83\x77\x4f\x60\xb9\xb6\xd4\x0a\x23\xab\x8c\x24\x0d\x37\x07\xa9\x21\x7e\x06\x8c\x96\x97\x65\x04\x18\x8b\x4e\x9c\x1d\x2d\x45\x81\x86\x3b\x89\x9a\x81\x46\x2d\x32\xf2\x49\x48\xed\x1a\xd5\xf3\xe5\xc5\xf1\x60\xb0\xd3\x25\x2d\x50\xa1\x61\xf0\xc6\xcd\x03\xa5\xbc\x6d\x69\x7e\xd8\xf4\xbd\x5b\x85\x1e\xef\x83\x24\xa5\xb4\xad\xe2\x97\xfe\xfc\x4a\x89\x9e\xbd\x12\x67\x5a\x29\x3c\x01\x83\x02\x55\xd7\x68\xd0\x78\x32\xbc\xcd\x48\x12\x55\xf0\xed\xcf\x69\xfa\x76\xca\x48\x52\x0b\x79\xa8\xdd\x54\xab\xfb\x81\xce\x41\xb1\xa9\xcf\xd7\x86\xde\xa9\x0f\xdf\x84\xe9\xa1\x80\x41\x2d\xcb\x52\xe8\x19\xbf\xfd\x3e\xc7\xf2\xb2\x64\x19\xb0\x57\x54\x43\xfd\x9a\x2f\x57\xf2\xa0\xa9\x74\xa2\xb1\xa1\x41\x68\x27\x4c\x46\x92\xdf\x9d\x75\xb2\xba\xd0\x02\xb5\x13\xda\xcd\x56\x26\x4e\xe1\xd0\x48\x6c\xed\xc8\xb3\x11\xcd\xf0\x95\x06\x36\x00\x33\x17\x9f\x7d\x79\x36\x8e\x30\x06\xcd\xd3\xf8\xb7\x42\xd3\x7c\xe5\x58\xa0\x36\xb8\x36\x84\xca\xca\x77\x31\xe5\x61\xfb\xd3\x88\x26\x86\xa2\x1f\x75\xd4\x21\x0e\x73\x45\xb9\xdf\xf5\x32\xec\x1a\x22\xbb\xe0\xdb\x9e\xc1\xa2\x92\x65\x20\x30\x74\x6c\x16\xbe\xc3\xe4\xfe\xfd\xc2\xe8\xb8\xf0\xfd\x25\x6d\xcf\x0b\xbb\x97\x5b\xae\xf5\x58\xf9\xcb\x20\x57\x58\x1c\x33\x92\xf4\x6a\x4c\x90\x21\xc7\x4a\x18\x37\x08\xb5\x19\xaf\x0e\xcd\xd1\x39\x6c\x06\x47\x16\x18\x51\xe4\x19\xc4\xad\xf8\x7c\x19\x9d\xdb\xe1\x60\xc0\x3b\x87\x19\x21\xc9\x23\xd3\xe8\x1e\x98\xe2\xd6\xd1\xa2\x96\xaa\xdc\x78\xc4\x6b\x6a\xa3\xf0\x9f\x73\x7e\x0a\x0f\xe8\xbb\x47\x11\xd7\xd2\x32\xf8\x36\x6a\x1a\xde\x89\x78\x1a\xa4\x21\x7e\xf0\x9f\x6c\x5a\x34\x8e\x6b\xb7\x18\x5f\xea\xb6\x73\xfe\xfc\x46\xea\xf1\x46\xa6\xeb\x1b\x7a\xbf\xbe\xdc\xf7\x8b\xd0\xcd\xe2\x36\x65\x6a\x36\xd4\xe4\xd5\x14\xdf\x60\xd1\x14\xb4\xaf\x22\x36\x85\x78\x92\x9b\x24\xff\x33\x66\x85\x12\x85\x7f\xec\x7a\x51\xff\x76\x59\x1a\x2e\xf5\xe6\x5a\xdc\xbc\x73\x6e\xd8\xd7\x9f\xee\x0c\xd7\xd6\x07\x82\x41\xd7\xb6\xc2\x14\xdc\x8a\x38\xe4\x29\x46\x95\xc1\x8f\x34\xf5\xd0\xb6\xe5\x03\x24\x76\x4e\x49\x2d\xe2\x5b\x1b\x20\xb8\x73\x46\xe6\x5d\x24\x36\x7f\x48\x63\x7e\xff\x5d\xbd\x5b\xc3\xdf\x90\x54\x49\x7d\x1c\x75\xbd\x22\xb1\xdf\xfb\x55\x4f\x65\x36\x4f\x18\x66\x7e\x93\x6e\x9e\xe5\x85\xae\x7d\xb6\x9f\xfc\xaf\x0a\x8b\xce\xf6\xa3\xaf\x24\xa6\x25\x37\xc7\x4d\xaf\xc1\x9f\x00\x00\x00\xff\xff\x53\x7d\x77\x10\x2f\x07\x00\x00"), }, + "/less/_register.less": &vfsgen۰CompressedFileInfo{ + name: "_register.less", + modTime: time.Date(2020, 3, 24, 2, 15, 50, 7096864, time.UTC), + uncompressedSize: 2023, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xdd\x6e\xab\x38\x10\xbe\x86\xa7\x98\xad\xd4\x55\x53\x95\x84\xec\xaa\x2b\xad\x79\x89\x95\xfa\x00\x91\x01\x03\xde\x18\x0f\xb2\x87\x26\xe9\x51\xdf\xfd\xc8\xc6\xfc\x25\x39\xd1\xe9\x45\x55\x8d\xc7\x7c\x3f\xf3\x8d\xbb\xdb\x01\xf6\xc4\x60\xbb\xdd\x15\xd6\xee\xe2\xf8\x15\x7e\xc4\x51\x8e\xa6\x14\x26\x39\xc9\x92\x1a\x00\x60\x90\x66\xae\x78\x4e\xac\xfc\x92\xba\x06\xf0\xc5\xd0\x95\xe3\x39\x8b\xa3\x0a\x35\x25\x15\x6f\xa5\xba\x0c\xa7\x4f\x1f\xd8\x9b\x42\xc0\x07\xd7\x16\xfe\x33\xf8\xf4\x06\x96\x6b\x9b\x58\x61\x64\x95\xc5\x51\xcb\x4d\x2d\x35\x8c\x3f\x03\x46\xc7\xcb\x72\x04\x98\x8a\x24\xce\x94\x94\xa2\x40\xc3\x49\xa2\x66\xa0\x51\x8b\x2c\xfe\x8e\xe3\x86\x5a\xe5\xf9\xf2\xe2\x58\x1b\xec\x75\x99\x14\xa8\xd0\x30\xf8\xe4\xe6\x25\x49\x78\xd7\x25\x79\xbd\xf1\xbd\x5b\x23\x6a\x69\x49\x18\x77\xa1\x94\xb6\x53\xfc\xe2\x21\x2a\x25\xbc\x00\x25\xce\x49\xa5\xf0\x04\x0c\x0a\x54\x7d\xab\x41\xe3\xc9\xf0\x2e\x8b\xa3\xd1\x08\xd7\xbe\x4f\xd3\xcf\x53\x16\x47\x8d\x90\x75\x43\x73\xad\xf1\x9a\xce\xc1\xb4\xb9\xcf\xd5\x86\xde\xb9\x0f\x3f\x85\xf1\x50\xc0\xa0\x91\x65\x29\xf4\x9a\xe2\xe1\x90\x63\x79\x59\x13\x0d\xf0\x37\x6c\x43\xfd\x9a\x32\x57\xb2\xd6\x89\x24\xd1\xda\xd0\x20\x34\x09\x93\xc5\xd1\xff\xbd\x25\x59\x5d\x92\x02\x35\x09\x4d\x8b\x93\x99\x56\xf8\xe8\xc8\xed\x76\x2e\x7b\x23\xda\xe1\x57\x1a\xd8\x00\x2c\x66\xb9\x77\xe5\xb5\x22\x61\x0c\x9a\xb7\x65\xa5\x42\xd3\x3e\x9a\x5e\x20\x38\x4c\x70\x08\x98\x95\x5f\x62\xce\xc6\xf6\x5f\x23\xda\x31\x20\x5e\xf0\xe4\xc6\x28\xe9\x8a\xb8\xbf\xf5\x3e\xdc\x1a\xe2\xbb\x62\xdd\x9d\xc1\xa2\x92\x65\x20\x30\x74\x6c\x56\x01\x80\x39\x06\xcf\xab\x89\x8f\x07\x7f\xbf\xa7\xdd\x79\x35\xf7\xf5\x95\x3b\xae\xdc\x0c\x9a\x41\xae\xb0\x38\x66\x71\xe4\x0d\x99\x51\x43\xac\x95\x30\x34\x78\xb5\x99\x36\x29\xc9\x91\x08\xdb\x61\x34\xd7\x30\xa3\xd5\x0b\x94\x7b\x51\x7a\x18\xa3\xfb\x41\x61\xc0\x7b\xc2\x2c\x8e\xa3\x57\xa6\x91\x5e\x98\xe2\x96\x92\xa2\x91\xaa\xdc\x38\xc4\x6b\x76\x93\xfd\xdf\x57\x14\x15\xd6\xe8\x2e\x4c\x6e\xde\x7a\xcc\xe0\xaf\xc9\xdc\xf0\x78\x8c\x1f\x84\x34\xa4\x11\xfe\x90\x6d\x87\x86\xb8\xa6\x6b\x13\x48\x92\x12\x8b\xe7\x8d\xb0\x7b\x38\xf4\x85\xf7\xa3\xf3\x3e\x84\x93\xf1\x8b\x48\x32\xd8\x6f\xdf\xbd\xae\x45\x1a\x26\x05\x21\x85\x0e\x71\x76\x60\x4d\x4e\xea\xae\x27\x47\xae\x95\x7a\x7a\x43\xd2\xdb\x37\xe5\xf9\xf6\x39\x7a\x5e\x51\x59\xec\xc5\x1c\xfe\x85\xef\xb3\xaa\x79\xcf\x82\x9e\x79\x23\x1e\xd9\x32\x6f\xdb\x9c\x88\x38\xfa\x93\x31\x2b\x94\x28\xdc\x0b\xed\xe7\xfe\xab\xad\x6e\xb9\xd4\x9b\x3b\xf3\xcf\x7b\xa2\xe1\xaa\x07\x20\xc3\xb5\x75\xb1\x65\xd0\x77\x9d\x30\x05\xb7\x62\xd4\x79\x1a\xd7\x8a\xc1\x3f\x69\xea\xd0\x6d\xc7\x07\x54\xec\x49\x49\x2d\xc6\xff\x11\x01\x85\x13\x19\x99\xf7\x23\xb7\xe5\xeb\x3f\x2e\xda\xef\x1b\x78\x4f\xff\x1d\x57\x95\xd4\xc7\xc9\xda\x2b\x12\x87\x83\x3b\x75\x54\x16\x7a\x82\x98\x7b\xb1\x5b\x7d\xcb\x79\xdd\xb8\x0d\x7c\x73\x7f\x55\x58\xf4\xd6\x4b\xbf\x71\x39\x29\xb9\x39\x6e\xbc\x07\x3f\x03\x00\x00\xff\xff\x7e\x42\xbf\xa3\xe7\x07\x00\x00"), + }, "/less/_variable.less": &vfsgen۰CompressedFileInfo{ name: "_variable.less", modTime: time.Date(2020, 3, 21, 1, 57, 54, 174062170, time.UTC), @@ -967,6 +995,13 @@ var assets = func() http.FileSystem { compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\xcf\x6f\xd3\x4e\x10\xc5\xcf\xf1\x5f\xb1\xdf\x3d\x7d\x91\xba\xde\x3a\x4d\x2b\x0e\x76\x24\x44\xe1\x04\x82\x43\x39\x70\xaa\x36\xeb\x49\x3c\xed\xfe\xb0\x76\x26\x69\x02\xe2\x7f\x47\xf6\xa6\x34\xa0\xb6\x10\x38\xd9\x1e\xbd\xf7\x79\xcf\x5a\x7b\xea\xff\x2e\x3f\xbc\xbe\xfa\xfc\xf1\x8d\xe8\xd8\xbb\x79\x51\x0f\x17\xe1\x4c\x58\x35\x12\x82\x9c\x17\x45\xdd\x81\x69\xe7\xc5\xa4\x66\x64\x07\xf3\x77\x71\x85\x41\x28\x71\xb9\x46\x16\x4a\xbc\x8f\x01\x76\xe2\x2a\x19\x7b\x0b\xa9\xd6\x59\x53\x14\x93\xda\x03\x1b\x61\x3b\x93\x08\xb8\x91\x9f\xae\xde\xaa\x97\x72\x7e\x3f\x0f\xc6\x43\x23\x5b\x20\x9b\xb0\x67\x8c\x41\x0a\x1b\x03\x43\xe0\x46\x0e\xe0\x13\x41\xe8\x7b\x07\xc2\x8f\x78\xce\xf8\x5f\xfd\x1b\x84\xbb\x3e\x26\x3e\x30\xdf\x61\xcb\x5d\xd3\xc2\x06\x2d\xa8\xf1\xe1\x44\x60\x40\x46\xe3\x14\x59\xe3\xa0\xa9\xca\x53\x39\x16\x74\x18\x6e\x45\x02\xd7\x48\xd3\xf7\x0e\x14\xc7\xb5\xed\x14\xda\x18\x54\x9f\xc0\x46\xdf\x47\x82\x56\x0a\xc2\x2f\x40\x8d\xac\xa6\xa7\xdb\x6a\x7a\x2a\x45\x97\x60\xd9\x48\x9d\x80\xf4\xd2\x6c\x06\x3d\xe9\x4c\xd8\x4b\xca\x3e\xac\xc6\xaa\xc7\x26\xcc\x66\xdb\x6a\x36\x7b\x36\x21\x4b\xfe\x3a\xe1\x7c\xba\xad\xce\xa7\xcf\x26\x64\xc9\x23\x09\x83\x4a\x0a\xde\xf5\xd0\x48\xf4\x66\x05\x7a\xd0\x3c\x8a\xda\xdf\xa8\xea\x62\x5b\x5d\x8c\xa8\x1f\x0d\x86\xc9\xbf\x83\xcf\xa6\xdb\xb3\xe9\x4f\xe0\x71\xf2\x5b\xf0\x56\xe5\xd9\x33\xec\x12\x6d\x3c\xf8\x40\xf6\x4a\x4b\xa4\xaf\x97\x31\xb0\xb9\x03\x8a\x1e\x4a\x4b\x24\x73\x0a\xf1\xce\x01\x75\x00\xfc\x10\x7f\xe8\xa2\xb8\x4e\x16\x14\x99\x40\xaa\x4f\xf1\x08\xe7\xc6\x24\x34\x0b\xf7\x64\xd8\x23\x9e\xf1\xc8\x03\x04\x26\xed\xa2\x69\x31\xac\x94\x8d\x1b\x48\x7f\x9e\x7a\x40\x58\xac\x99\x63\x38\x22\xfd\xda\x0d\xcb\xe1\x29\x43\xad\xf3\x26\x29\xea\x45\x6c\x77\x43\x76\xfe\xfd\x05\x25\xdb\x48\x7d\x43\xda\xe1\x82\xb4\x47\xee\x12\xba\xd2\x63\x28\x6f\x48\xce\x6b\x9d\x65\x07\x86\x7c\xa4\x3e\xb6\x6b\x07\xc3\x4b\x4c\xd0\x0f\x7b\x40\x7c\x15\xc4\x26\xf1\xab\xbe\x17\xdf\xc4\x32\x45\x2f\x64\x39\x72\xc7\x5a\x7b\x60\x31\x99\xdc\xab\xfe\x7f\x51\x4c\x1e\xf0\xb5\xce\xbd\x86\xa2\xc3\x2e\xfc\x1e\x00\x00\xff\xff\x78\xea\x20\xcb\x1b\x05\x00\x00"), }, + "/register.html": &vfsgen۰CompressedFileInfo{ + name: "register.html", + modTime: time.Date(2020, 3, 24, 2, 3, 26, 497110179, time.UTC), + uncompressedSize: 1316, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x94\x4f\x6f\xd3\x40\x10\xc5\xcf\xf1\xa7\x58\xf6\x04\x52\xd7\x5b\xa7\x69\xc5\xc1\x8e\x84\x28\xdc\x10\x08\x95\x03\xa7\x6a\xb3\x9e\xc4\xd3\xee\x1f\x6b\x67\x92\x26\x20\xbe\x3b\xb2\x37\x6d\x03\x6a\x0b\x85\x93\xed\xd1\x7b\xbf\xf7\xac\x5d\x4d\xfd\xe2\xfc\xe3\xdb\x8b\xaf\x9f\xde\x89\x8e\xbd\x9b\x17\xf5\xf0\x10\xce\x84\x55\x23\x21\xc8\x79\x51\xd4\x1d\x98\x76\x5e\x4c\x6a\x46\x76\x30\xff\x0c\x2b\x24\x86\x24\x94\x38\x5f\x23\x0b\x25\x3e\xc4\x00\x3b\x71\x91\x8c\xbd\x86\x54\xeb\x2c\x2b\x8a\x49\xed\x81\x8d\xb0\x9d\x49\x04\xdc\xc8\x2f\x17\xef\xd5\x6b\x39\xbf\x9d\x07\xe3\xa1\x91\x2d\x90\x4d\xd8\x33\xc6\x20\x85\x8d\x81\x21\x70\x23\x07\xf0\x91\x20\xf4\xbd\x03\xe1\x47\x3c\x67\xfc\xef\xfe\x0d\xc2\x4d\x1f\x13\x1f\x98\x6f\xb0\xe5\xae\x69\x61\x83\x16\xd4\xf8\x71\x24\x30\x20\xa3\x71\x8a\xac\x71\xd0\x54\xe5\xb1\x1c\x0b\x3a\x0c\xd7\x22\x81\x6b\xa4\xe9\x7b\x07\x8a\xe3\xda\x76\x0a\x6d\x0c\xaa\x4f\x60\xa3\xef\x23\x41\x2b\x05\xe1\x37\xa0\x46\x56\xd3\xe3\x6d\x35\x3d\x96\xa2\x4b\xb0\x6c\xa4\x4e\x40\x7a\x69\x36\x83\x9e\x74\x26\xec\x25\x65\x1f\x56\x63\xd5\xe7\x26\xcc\x66\xdb\x6a\x36\x7b\x32\x21\x4b\xfe\x39\xe1\x74\xba\xad\x4e\xa7\x4f\x26\x64\xc9\x03\x09\x83\x4a\x0a\xde\xf5\xd0\x48\xf4\x66\x05\x7a\xd0\x3c\x88\xda\xbf\xa8\xea\x6c\x5b\x9d\x8d\xa8\xbb\x06\xc3\xe4\xff\xc1\x27\xd3\xed\xc9\xf4\x17\xf0\x38\xf9\x23\x78\xab\xf2\xec\x09\x76\x89\x36\x1e\x5c\x90\xbd\xd2\x12\xe9\xcb\x65\x0c\x6c\x6e\x80\xa2\x87\xd2\x12\xc9\x9c\x42\xbc\x73\x40\x1d\x00\xdf\xc7\x1f\xba\x28\xae\x93\x05\x45\x26\x90\xea\x53\x7c\x86\x73\x63\x12\x9a\x85\x7b\x34\xec\x01\xcf\x78\xe4\x01\x02\x93\x76\xd1\xb4\x18\x56\xca\xc6\x0d\xa4\xbf\x4f\x3d\x20\x2c\xd6\xcc\x31\x3c\x23\xfd\x32\xed\xf7\xc3\x63\x9e\x5a\xe7\x7d\x52\xd4\x8b\xd8\xee\x86\xf8\xbc\x01\x04\x25\xdb\x48\x7d\x45\xda\xe1\x82\xb4\x47\xee\x12\xba\xd2\x63\x28\xaf\x48\xce\x6b\x9d\x65\x07\x86\x7c\xaa\x3e\xb6\x6b\x07\xc3\x7f\x4c\xd0\x0f\xab\x40\x7c\x17\xc4\x26\xf1\x9b\xbe\x17\x3f\xc4\x32\x45\x2f\x64\x39\x70\xef\x9a\xed\x99\xc5\x64\x72\x2b\x7c\xf9\xaa\x98\xdc\x27\xd4\x3a\x57\x1b\xba\x0e\x4b\xf1\x67\x00\x00\x00\xff\xff\x52\x3c\x10\x2c\x24\x05\x00\x00"), + }, "/res": &vfsgen۰DirInfo{ name: "res", modTime: time.Date(2020, 3, 21, 9, 43, 0, 963856286, time.UTC), @@ -1028,6 +1063,7 @@ var assets = func() http.FileSystem { fs["/js"].(os.FileInfo), fs["/less"].(os.FileInfo), fs["/login.html"].(os.FileInfo), + fs["/register.html"].(os.FileInfo), fs["/res"].(os.FileInfo), } fs["/css"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ @@ -1035,6 +1071,7 @@ var assets = func() http.FileSystem { fs["/css/_fontawesome.css"].(os.FileInfo), fs["/css/_index.css"].(os.FileInfo), fs["/css/_login.css"].(os.FileInfo), + fs["/css/_register.css"].(os.FileInfo), fs["/css/_source-sans-pro.css"].(os.FileInfo), fs["/css/_variable.css"].(os.FileInfo), fs["/css/components"].(os.FileInfo), @@ -1092,6 +1129,8 @@ var assets = func() http.FileSystem { fs["/js/login.js"].(os.FileInfo), fs["/js/login.min.js"].(os.FileInfo), fs["/js/pages"].(os.FileInfo), + fs["/js/register.js"].(os.FileInfo), + fs["/js/register.min.js"].(os.FileInfo), } fs["/js/components"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/js/components/_components.js"].(os.FileInfo), @@ -1176,6 +1215,7 @@ var assets = func() http.FileSystem { fs["/less"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ fs["/less/_index.less"].(os.FileInfo), fs["/less/_login.less"].(os.FileInfo), + fs["/less/_register.less"].(os.FileInfo), fs["/less/_variable.less"].(os.FileInfo), fs["/less/components"].(os.FileInfo), fs["/less/pages"].(os.FileInfo), diff --git a/internal/backend/ui/handler.go b/internal/backend/ui/handler.go index 3b2fc65..68f8149 100644 --- a/internal/backend/ui/handler.go +++ b/internal/backend/ui/handler.go @@ -7,6 +7,7 @@ import ( "strings" "github.com/RadhiFadlillah/duit/internal/backend/auth" + "github.com/jmoiron/sqlx" "github.com/julienschmidt/httprouter" ) @@ -14,13 +15,15 @@ var developmentMode = false // Handler represents handler for every UI routes. type Handler struct { + db *sqlx.DB auth *auth.Authenticator } // NewHandler returns new Handler -func NewHandler(auth *auth.Authenticator) (*Handler, error) { +func NewHandler(db *sqlx.DB, auth *auth.Authenticator) (*Handler, error) { // Create handler handler := new(Handler) + handler.db = db handler.auth = auth return handler, nil } @@ -53,13 +56,19 @@ func (h *Handler) ServeJsFile(w http.ResponseWriter, r *http.Request, ps httprou // ServeIndex serves the index page func (h *Handler) ServeIndex(w http.ResponseWriter, r *http.Request, ps httprouter.Params) { - // Check if there is active session + // If there is no active session, go to login err := h.auth.AuthenticateUser(r) if err != nil { redirectPage(w, r, "/login") return } + // If it's first run move to register page + if h.isFirstRun() { + redirectPage(w, r, "/register") + return + } + // Serve index file currentEtag := r.Header.Get("If-None-Match") err = serveAssets(w, "index.html", currentEtag) @@ -75,8 +84,35 @@ func (h *Handler) ServeLogin(w http.ResponseWriter, r *http.Request, ps httprout return } + // If it's first run move to register page + if h.isFirstRun() { + redirectPage(w, r, "/register") + return + } + // Serve login file currentEtag := r.Header.Get("If-None-Match") err = serveAssets(w, "login.html", currentEtag) checkError(err) } + +// ServeRegister serves the register page +func (h *Handler) ServeRegister(w http.ResponseWriter, r *http.Request, ps httprouter.Params) { + // If it's not first run move to index page + if !h.isFirstRun() { + redirectPage(w, r, "/") + return + } + + // Serve register file + currentEtag := r.Header.Get("If-None-Match") + err := serveAssets(w, "register.html", currentEtag) + checkError(err) +} + +// isFirstRun check if there are no admin registered +func (h *Handler) isFirstRun() bool { + var nAdmin int + h.db.Get(&nAdmin, `SELECT COUNT(id) FROM user WHERE admin = 1`) + return nAdmin == 0 +} diff --git a/internal/database/database.go b/internal/database/database.go index 3067104..c94d535 100644 --- a/internal/database/database.go +++ b/internal/database/database.go @@ -60,6 +60,9 @@ func Open(config model.Config) (db *sqlx.DB, err error) { tx.MustExec(ddlCreateViewAccountTotal) tx.MustExec(ddlCreateViewCumulativeAmount) + // Upgrade table + tx.MustExec(ddlUpgradeUserAddAdmin) + // Commit transaction err = tx.Commit() checkError(err) diff --git a/internal/database/ddl-query.go b/internal/database/ddl-query.go index 0abf510..03c7f7d 100644 --- a/internal/database/ddl-query.go +++ b/internal/database/ddl-query.go @@ -16,6 +16,7 @@ CREATE TABLE IF NOT EXISTS account ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(100) NOT NULL, initial_amount DECIMAL(20,4) NOT NULL DEFAULT 0, + admin BOOLEAN NOT NULL DEFAULT 1, PRIMARY KEY (id)) CHARACTER SET utf8mb4 ` diff --git a/internal/database/upgrade-query.go b/internal/database/upgrade-query.go new file mode 100644 index 0000000..fd448ea --- /dev/null +++ b/internal/database/upgrade-query.go @@ -0,0 +1,6 @@ +package database + +const ddlUpgradeUserAddAdmin = ` + ALTER TABLE user + ADD COLUMN IF NOT EXISTS admin BOOLEAN NOT NULL DEFAULT 1 +` diff --git a/internal/model/model.go b/internal/model/model.go index 75a2c59..8a8f40a 100644 --- a/internal/model/model.go +++ b/internal/model/model.go @@ -15,10 +15,11 @@ type Config struct { // User is container for user's data type User struct { - ID int64 `db:"id" json:"id"` - Username string `db:"username" json:"username"` - Name string `db:"name" json:"name"` - Password string `db:"password" json:"password,omitempty"` + ID int64 `db:"id" json:"id"` + Username string `db:"username" json:"username"` + Name string `db:"name" json:"name"` + Password string `db:"password" json:"password,omitempty"` + Admin bool `db:"admin" json:"admin"` } // Account is container for financial account diff --git a/internal/view/css/_register.css b/internal/view/css/_register.css new file mode 100644 index 0000000..4ce1dc1 --- /dev/null +++ b/internal/view/css/_register.css @@ -0,0 +1 @@ +*{border-width:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:"Source Sans Pro",sans-serif;margin:0;padding:0;text-decoration:none}html{background-color:var(--app-bg)}.register{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;width:100vw;height:100vh;max-width:100vw;max-height:100vh;overflow:hidden}.register__body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;padding:1rem 1rem 0;-webkit-box-flex:1;-ms-flex:1 0;flex:1 0}.register__error,.register__form{background-color:var(--content-bg);font-size:.9rem;text-align:center;padding:.5rem;border:1px solid var(--border);width:100%;max-width:350px;max-height:100%}.register__error{display:block;color:var(--alert-color);margin-bottom:1rem}.register__form{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:auto}.register__form *:not(:last-child){margin-bottom:.5rem}.register__logo{width:100%;max-width:250px;margin:.5rem 0 1rem 0 !important}.register__title{border-top:1px solid var(--border);color:var(--font-color);font-size:1.5em;width:100%;padding-top:.5rem}.register__input{min-width:0;max-width:100%;width:100%;font-size:.9rem;padding:.5rem;color:var(--color);border:1px solid var(--border);text-align:center}.register__input::-moz-selection{background-color:var(--main)}.register__input::selection{background-color:var(--main)}.register__button{text-transform:uppercase;font-weight:600}.register__button span{outline:none}.attribution{display:block;font-size:.9rem;padding:.5rem;text-align:center;color:var(--link-color)}.attribution__link{font-weight:600;color:var(--link-color)}.attribution__link:hover,.attribution__link:focus{color:var(--main-dark)} \ No newline at end of file diff --git a/internal/view/js/i18n/english.js b/internal/view/js/i18n/english.js index 5558007..f335b5f 100644 --- a/internal/view/js/i18n/english.js +++ b/internal/view/js/i18n/english.js @@ -32,11 +32,17 @@ export default new Map([ ["OK"], ["Cancel"], - // Login screen + // Register and login screen + ["Login"], + ["Register"], + ["Name"], ["Username"], ["Password"], - ["Login"], + ["Repeat password"], + ["Welcome, new user"], ["Original logo by $author from $website"], + // Register and login screen -- API message + ["new password doesn't match"], /* * PAGES @@ -54,8 +60,6 @@ export default new Map([ ["User management"], ["Change password"], ["Change language"], - // Root page -- API message - ["new password doesn't match"], // Home page -- dialog title ["New Account"], @@ -137,7 +141,6 @@ export default new Map([ ["Transfer"], // Form Account - ["Name"], ["Initial amount"], // Form Entry @@ -146,9 +149,6 @@ export default new Map([ ["Description"], ["Target"], - // Form User - ["Username"], - // Form Password ["Old password"], ["New password"], diff --git a/internal/view/js/i18n/english.min.js b/internal/view/js/i18n/english.min.js index cf9fcd1..8b73fff 100644 --- a/internal/view/js/i18n/english.min.js +++ b/internal/view/js/i18n/english.min.js @@ -1 +1 @@ -export default new Map([["locale","en-US"],["Jan"],["Feb"],["Mar"],["Apr"],["May"],["Jun"],["Jul"],["Aug"],["Sep"],["Oct"],["Nov"],["Dec"],["January"],["February"],["March"],["April"],["May"],["June"],["July"],["August"],["September"],["October"],["November"],["December"],["Yes"],["No"],["OK"],["Cancel"],["Username"],["Password"],["Login"],["Original logo by $author from $website"],["Logout"],["Change Password"],["Change Language"],["Log out from the application ?"],["Home"],["Money chart"],["User management"],["Change password"],["Change language"],["new password doesn't match"],["New Account"],["Edit Account"],["Delete Account"],["Entry Type"],["New Income"],["New Expense"],["New Transfer"],["Edit Income"],["Edit Expense"],["Edit Transfer"],["Delete Entry"],["Permanently delete $n accounts ?"],["Permanently delete $n entries ?"],["New User"],["Edit User"],["Delete User"],["Reset Password"],["Permanently delete $n users ?"],["Reset password for $name ?"],["User saved with password $password"],["New password: $password"],["No chart data available"],["Last year"],["Next year"],["Account List"],["Edit account"],["Delete account"],["New account"],["No accounts registered"],["Entry List"],["Edit entry"],["Delete entry"],["New entry"],["No entries registered"],["Received from $name"],["Transferred to $name"],["First page"],["Previous page"],["Next page"],["Last page"],["Go back"],["User List"],["Edit user"],["Reset user's password"],["Delete user"],["New user"],["No users registered"],["English"],["Indonesia"],["Income"],["Expense"],["Transfer"],["Name"],["Initial amount"],["Amount"],["Entry date"],["Description"],["Target"],["Username"],["Old password"],["New password"],["Repeat"]]); \ No newline at end of file +export default new Map([["locale","en-US"],["Jan"],["Feb"],["Mar"],["Apr"],["May"],["Jun"],["Jul"],["Aug"],["Sep"],["Oct"],["Nov"],["Dec"],["January"],["February"],["March"],["April"],["May"],["June"],["July"],["August"],["September"],["October"],["November"],["December"],["Yes"],["No"],["OK"],["Cancel"],["Login"],["Register"],["Name"],["Username"],["Password"],["Repeat password"],["Welcome, new user"],["Original logo by $author from $website"],["new password doesn't match"],["Logout"],["Change Password"],["Change Language"],["Log out from the application ?"],["Home"],["Money chart"],["User management"],["Change password"],["Change language"],["New Account"],["Edit Account"],["Delete Account"],["Entry Type"],["New Income"],["New Expense"],["New Transfer"],["Edit Income"],["Edit Expense"],["Edit Transfer"],["Delete Entry"],["Permanently delete $n accounts ?"],["Permanently delete $n entries ?"],["New User"],["Edit User"],["Delete User"],["Reset Password"],["Permanently delete $n users ?"],["Reset password for $name ?"],["User saved with password $password"],["New password: $password"],["No chart data available"],["Last year"],["Next year"],["Account List"],["Edit account"],["Delete account"],["New account"],["No accounts registered"],["Entry List"],["Edit entry"],["Delete entry"],["New entry"],["No entries registered"],["Received from $name"],["Transferred to $name"],["First page"],["Previous page"],["Next page"],["Last page"],["Go back"],["User List"],["Edit user"],["Reset user's password"],["Delete user"],["New user"],["No users registered"],["English"],["Indonesia"],["Income"],["Expense"],["Transfer"],["Initial amount"],["Amount"],["Entry date"],["Description"],["Target"],["Old password"],["New password"],["Repeat"]]); \ No newline at end of file diff --git a/internal/view/js/i18n/indonesia.js b/internal/view/js/i18n/indonesia.js index 9047ddd..16c411a 100644 --- a/internal/view/js/i18n/indonesia.js +++ b/internal/view/js/i18n/indonesia.js @@ -33,10 +33,16 @@ export default new Map([ ["Cancel", "Cancel"], // Login screen + ["Login", "Login"], + ["Register", "Register"], + ["Name", "Nama"], ["Username", "Username"], ["Password", "Password"], - ["Login", "Login"], + ["Repeat password", "Ulangi password"], + ["Welcome, new user", "Selamat datang, user baru"], ["Original logo by $author from $website", "Logo asli dibuat oleh $author dari $website"], + // Register and login screen -- API message + ["new password doesn't match", "password baru yang diulang tidak cocok"], /* * PAGES @@ -54,8 +60,6 @@ export default new Map([ ["User management", "Kelola user"], ["Change password", "Ganti password"], ["Change language", "Ganti bahasa"], - // Root page -- API message - ["new password doesn't match", "password baru yang diulang tidak cocok"], // Home page -- dialog title ["New Account", "Akun Baru"], @@ -137,7 +141,6 @@ export default new Map([ ["Transfer", "Transfer"], // Form Account - ["Name", "Name"], ["Initial amount", "Jumlah awal"], // Form Entry @@ -146,9 +149,6 @@ export default new Map([ ["Description", "Deskripsi"], ["Target", "Tujuan"], - // Form User - ["Username", "Username"], - // Form Password ["Old password", "Password lama"], ["New password", "Password baru"], diff --git a/internal/view/js/i18n/indonesia.min.js b/internal/view/js/i18n/indonesia.min.js index 0091931..bb8d796 100644 --- a/internal/view/js/i18n/indonesia.min.js +++ b/internal/view/js/i18n/indonesia.min.js @@ -1 +1 @@ -export default new Map([["locale","id-ID"],["Jan","Jan"],["Feb","Feb"],["Mar","Mar"],["Apr","Apr"],["May","Mei"],["Jun","Jun"],["Jul","Jul"],["Aug","Agu"],["Sep","Sep"],["Oct","Okt"],["Nov","Nov"],["Dec","Dec"],["January","Januari"],["February","Februari"],["March","Maret"],["April","April"],["May","Mei"],["June","Juni"],["July","Juli"],["August","Agustus"],["September","September"],["October","Oktober"],["November","November"],["December","Desember"],["Yes","Ya"],["No","Tidak"],["OK","OK"],["Cancel","Cancel"],["Username","Username"],["Password","Password"],["Login","Login"],["Original logo by $author from $website","Logo asli dibuat oleh $author dari $website"],["Logout","Logout"],["Change Password","Ganti Password"],["Change Language","Ganti Bahasa"],["Log out from the application ?","Yakin ingin keluar dari aplikasi ?"],["Home","Home"],["Money chart","Grafik keuangan"],["User management","Kelola user"],["Change password","Ganti password"],["Change language","Ganti bahasa"],["new password doesn't match","password baru yang diulang tidak cocok"],["New Account","Akun Baru"],["Edit Account","Edit Akun"],["Delete Account","Hapus Akun"],["Entry Type","Jenis Entry"],["New Income","Pemasukan Baru"],["New Expense","Pengeluaran Baru"],["New Transfer","Transfer Baru"],["Edit Income","Edit Pemasukan"],["Edit Expense","Edit Pengeluaran"],["Edit Transfer","Edit Transfer"],["Delete Entry","Hapus Entry"],["Permanently delete $n accounts ?","Yakin ingin menghapus $n akun ?"],["Permanently delete $n entries ?","Yakin ingin menghapus $n entry ?"],["New User","User Baru"],["Edit User","Edit User"],["Delete User","Hapus User"],["Reset Password","Reset Password"],["Permanently delete $n users ?","Yakin ingin menghapus $n user ?"],["Reset password for $name ?","Reset password untuk user $name ?"],["User saved with password $password","User disimpan dengan password $password"],["New password: $password","Password yang baru: $password"],["No chart data available","Tidak ada data yang tersedia"],["Last year","Tahun lalu"],["Next year","Tahun depan"],["Account List","Daftar Akun"],["Edit account","Edit akun"],["Delete account","Hapus akun"],["New account","Akun baru"],["No accounts registered","Belum ada akun yang terdaftar"],["Entry List","Daftar Entry"],["Edit entry","Edit entry"],["Delete entry","Hapus entry"],["New entry","Entry baru"],["No entries registered","Belum ada entry yang terdaftar"],["Received from $name","Masuk dari $name"],["Transferred to $name","Dipindah ke $name"],["First page","Halaman pertama"],["Previous page","Halaman sebelumnya"],["Next page","Halaman selanjutnya"],["Last page","Halaman terakhir"],["Go back","Kembali"],["User List","Daftar User"],["Edit user","Edit user"],["Reset user's password","Reset password user"],["Delete user","Hapus user"],["New user","User baru"],["No users registered","Belum ada user yang terdaftar"],["English","Inggris"],["Indonesia","Indonesia"],["Income","Pemasukan"],["Expense","Pengeluaran"],["Transfer","Transfer"],["Name","Name"],["Initial amount","Jumlah awal"],["Amount","Jumlah"],["Entry date","Tanggal entry"],["Description","Deskripsi"],["Target","Tujuan"],["Username","Username"],["Old password","Password lama"],["New password","Password baru"],["Repeat","Ulangi"]]); \ No newline at end of file +export default new Map([["locale","id-ID"],["Jan","Jan"],["Feb","Feb"],["Mar","Mar"],["Apr","Apr"],["May","Mei"],["Jun","Jun"],["Jul","Jul"],["Aug","Agu"],["Sep","Sep"],["Oct","Okt"],["Nov","Nov"],["Dec","Dec"],["January","Januari"],["February","Februari"],["March","Maret"],["April","April"],["May","Mei"],["June","Juni"],["July","Juli"],["August","Agustus"],["September","September"],["October","Oktober"],["November","November"],["December","Desember"],["Yes","Ya"],["No","Tidak"],["OK","OK"],["Cancel","Cancel"],["Login","Login"],["Register","Register"],["Name","Nama"],["Username","Username"],["Password","Password"],["Repeat password","Ulangi password"],["Welcome, new user","Selamat datang, user baru"],["Original logo by $author from $website","Logo asli dibuat oleh $author dari $website"],["new password doesn't match","password baru yang diulang tidak cocok"],["Logout","Logout"],["Change Password","Ganti Password"],["Change Language","Ganti Bahasa"],["Log out from the application ?","Yakin ingin keluar dari aplikasi ?"],["Home","Home"],["Money chart","Grafik keuangan"],["User management","Kelola user"],["Change password","Ganti password"],["Change language","Ganti bahasa"],["New Account","Akun Baru"],["Edit Account","Edit Akun"],["Delete Account","Hapus Akun"],["Entry Type","Jenis Entry"],["New Income","Pemasukan Baru"],["New Expense","Pengeluaran Baru"],["New Transfer","Transfer Baru"],["Edit Income","Edit Pemasukan"],["Edit Expense","Edit Pengeluaran"],["Edit Transfer","Edit Transfer"],["Delete Entry","Hapus Entry"],["Permanently delete $n accounts ?","Yakin ingin menghapus $n akun ?"],["Permanently delete $n entries ?","Yakin ingin menghapus $n entry ?"],["New User","User Baru"],["Edit User","Edit User"],["Delete User","Hapus User"],["Reset Password","Reset Password"],["Permanently delete $n users ?","Yakin ingin menghapus $n user ?"],["Reset password for $name ?","Reset password untuk user $name ?"],["User saved with password $password","User disimpan dengan password $password"],["New password: $password","Password yang baru: $password"],["No chart data available","Tidak ada data yang tersedia"],["Last year","Tahun lalu"],["Next year","Tahun depan"],["Account List","Daftar Akun"],["Edit account","Edit akun"],["Delete account","Hapus akun"],["New account","Akun baru"],["No accounts registered","Belum ada akun yang terdaftar"],["Entry List","Daftar Entry"],["Edit entry","Edit entry"],["Delete entry","Hapus entry"],["New entry","Entry baru"],["No entries registered","Belum ada entry yang terdaftar"],["Received from $name","Masuk dari $name"],["Transferred to $name","Dipindah ke $name"],["First page","Halaman pertama"],["Previous page","Halaman sebelumnya"],["Next page","Halaman selanjutnya"],["Last page","Halaman terakhir"],["Go back","Kembali"],["User List","Daftar User"],["Edit user","Edit user"],["Reset user's password","Reset password user"],["Delete user","Hapus user"],["New user","User baru"],["No users registered","Belum ada user yang terdaftar"],["English","Inggris"],["Indonesia","Indonesia"],["Income","Pemasukan"],["Expense","Pengeluaran"],["Transfer","Transfer"],["Initial amount","Jumlah awal"],["Amount","Jumlah"],["Entry date","Tanggal entry"],["Description","Deskripsi"],["Target","Tujuan"],["Old password","Password lama"],["New password","Password baru"],["Repeat","Ulangi"]]); \ No newline at end of file diff --git a/internal/view/js/login.js b/internal/view/js/login.js index 05ce0b8..b904c15 100644 --- a/internal/view/js/login.js +++ b/internal/view/js/login.js @@ -104,7 +104,14 @@ function loginScreen() { class: "login__button", caption: i18n("Login"), loading: state.loading, - onclick() { login() } + onclick() { + // Make sure fields not empty + if (state.username === "" || state.password === "") { + return + } + + login() + } }) ), ), diff --git a/internal/view/js/login.min.js b/internal/view/js/login.min.js index 7f9fc50..a87714f 100644 --- a/internal/view/js/login.min.js +++ b/internal/view/js/login.min.js @@ -1 +1 @@ -import{Button,LoadingCover}from"./components/_components.min.js";import{request}from"./libs/utils.min.js";import{i18n}from"./i18n/i18n.min.js";import Cookies from"./libs/js-cookie.min.js";function loginScreen(){let o={loading:!1,username:"",password:"",error:""};return{view:function(){let e=[];""!==o.error&&e.push(m("p.login__error",o.error));let n=[];o.loading&&n.push(m(LoadingCover));let r=i18n("Original logo by $author from $website").split(" ").map(o=>"$author"===o?m("a.attribution__link",{target:"_blank",rel:"noopener",href:"https://www.flaticon.com/authors/freepik"},"Freepik "):"$website"===o?m("a.attribution__link",{target:"_blank",rel:"noopener",href:"https://www.flaticon.com"},"www.flaticon.com "):o+" ");return m(".login",m(".login__body",...e,m(".login__form",m("img.login__logo",{src:"/res/logo.svg"}),m("input[type=text].login__input",{value:o.username,placeholder:i18n("Username"),oninput(e){o.username=e.target.value}}),m("input[type=password].login__input",{value:o.password,placeholder:i18n("Password"),oninput(e){o.password=e.target.value}}),m(Button,{class:"login__button",caption:i18n("Login"),loading:o.loading,onclick(){!function(){o.loading=!0,o.error="",m.redraw();let e={method:"POST",body:JSON.stringify({username:o.username,password:o.password})};request("/api/login","5s",e).then(o=>{let e=o.session,n=o.user||null;Cookies.set("session-duit",e,{expires:365}),localStorage.setItem("duit-user",JSON.stringify(n)),window.location.href="/"}).catch(e=>{o.error=e.message}).finally(()=>{o.loading=!1,m.redraw()})}()}}))),m("p.attribution",r),...n)},oncreate:function(o){o.dom.querySelector(".login__input").focus()}}}export function startApp(){m.mount(document.body,loginScreen)} \ No newline at end of file +import{Button,LoadingCover}from"./components/_components.min.js";import{request}from"./libs/utils.min.js";import{i18n}from"./i18n/i18n.min.js";import Cookies from"./libs/js-cookie.min.js";function loginScreen(){let o={loading:!1,username:"",password:"",error:""};return{view:function(){let e=[];""!==o.error&&e.push(m("p.login__error",o.error));let n=[];o.loading&&n.push(m(LoadingCover));let r=i18n("Original logo by $author from $website").split(" ").map(o=>"$author"===o?m("a.attribution__link",{target:"_blank",rel:"noopener",href:"https://www.flaticon.com/authors/freepik"},"Freepik "):"$website"===o?m("a.attribution__link",{target:"_blank",rel:"noopener",href:"https://www.flaticon.com"},"www.flaticon.com "):o+" ");return m(".login",m(".login__body",...e,m(".login__form",m("img.login__logo",{src:"/res/logo.svg"}),m("input[type=text].login__input",{value:o.username,placeholder:i18n("Username"),oninput(e){o.username=e.target.value}}),m("input[type=password].login__input",{value:o.password,placeholder:i18n("Password"),oninput(e){o.password=e.target.value}}),m(Button,{class:"login__button",caption:i18n("Login"),loading:o.loading,onclick(){""!==o.username&&""!==o.password&&function(){o.loading=!0,o.error="",m.redraw();let e={method:"POST",body:JSON.stringify({username:o.username,password:o.password})};request("/api/login","5s",e).then(o=>{let e=o.session,n=o.user||null;Cookies.set("session-duit",e,{expires:365}),localStorage.setItem("duit-user",JSON.stringify(n)),window.location.href="/"}).catch(e=>{o.error=e.message}).finally(()=>{o.loading=!1,m.redraw()})}()}}))),m("p.attribution",r),...n)},oncreate:function(o){o.dom.querySelector(".login__input").focus()}}}export function startApp(){m.mount(document.body,loginScreen)} \ No newline at end of file diff --git a/internal/view/js/register.js b/internal/view/js/register.js new file mode 100644 index 0000000..aaf5d10 --- /dev/null +++ b/internal/view/js/register.js @@ -0,0 +1,173 @@ +import { + Button, + LoadingCover, +} from "./components/_components.min.js" + +import { + request +} from "./libs/utils.min.js" + +import { + i18n +} from "./i18n/i18n.min.js" + +import Cookies from './libs/js-cookie.min.js' + +function registerScreen() { + let state = { + loading: false, + name: "", + username: "", + password: "", + repeatPassword: "", + error: "" + } + + // API function + let timeoutDuration = "5s" + + function register() { + // Send API request + state.loading = true + state.error = "" + m.redraw() + + let options = { + method: "POST", + body: JSON.stringify({ + name: state.name, + username: state.username, + password: state.password, + admin: true, + }) + } + + request("/api/user", timeoutDuration, options) + .then(newUser => { + return request("/api/login", timeoutDuration, { + method: "POST", + body: JSON.stringify({ + username: newUser.username, + password: newUser.password + }) + }) + }) + .then(json => { + let session = json.session, + user = json.user || null + + Cookies.set("session-duit", session, { expires: 365 }) + localStorage.setItem("duit-user", JSON.stringify(user)) + window.location.href = "/" + }) + .catch(err => { + state.error = err.message + }) + .finally(() => { + state.loading = false + m.redraw() + }) + } + + function renderView() { + let errorNodes = [] + if (state.error !== "") { + errorNodes.push(m("p.register__error", state.error)) + } + + let loadingCover = [] + if (state.loading) { + loadingCover.push(m(LoadingCover)) + } + + let attributionNodes = i18n("Original logo by $author from $website").split(" ").map(str => { + if (str === "$author") { + return m("a.attribution__link", { + target: "_blank", + rel: "noopener", + href: "https://www.flaticon.com/authors/freepik" + }, "Freepik ") + } + + if (str === "$website") { + return m("a.attribution__link", { + target: "_blank", + rel: "noopener", + href: "https://www.flaticon.com" + }, "www.flaticon.com ") + } + + return str + " " + }) + + return m(".register", + m(".register__body", + ...errorNodes, + m(".register__form", + m("img.register__logo", { + src: "/res/logo.svg" + }), + m("p.register__title", i18n("Welcome, new user")), + m("input[type=text].register__input", { + value: state.name, + autocomplete: "new-password", + placeholder: i18n("Name"), + oninput(e) { state.name = e.target.value } + }), + m("input[type=text].register__input", { + value: state.username, + autocomplete: "new-password", + placeholder: i18n("Username"), + oninput(e) { state.username = e.target.value } + }), + m("input[type=password].register__input", { + value: state.password, + autocomplete: "new-password", + placeholder: i18n("Password"), + oninput(e) { state.password = e.target.value } + }), + m("input[type=password].register__input", { + value: state.repeatPassword, + autocomplete: "new-password", + placeholder: i18n("Repeat password"), + oninput(e) { state.repeatPassword = e.target.value } + }), + m(Button, { + class: "register__button", + caption: i18n("Register"), + loading: state.loading, + onclick() { + // Make sure fields not empty + if (state.name === "" || state.username === "" || state.password === "") { + return + } + + // Make sure repeated password is correct + if (state.password !== state.repeatPassword) { + state.error = i18n("new password doesn't match") + return + } + + register() + } + }) + ), + ), + m("p.attribution", attributionNodes), + ...loadingCover + ) + } + + function onViewCreated(vnode) { + vnode.dom.querySelector(".register__input").focus() + } + + return { + view: renderView, + oncreate: onViewCreated, + } +} + +export function startApp() { + m.mount(document.body, registerScreen) +} \ No newline at end of file diff --git a/internal/view/js/register.min.js b/internal/view/js/register.min.js new file mode 100644 index 0000000..f1d8aa2 --- /dev/null +++ b/internal/view/js/register.min.js @@ -0,0 +1 @@ +import{Button,LoadingCover}from"./components/_components.min.js";import{request}from"./libs/utils.min.js";import{i18n}from"./i18n/i18n.min.js";import Cookies from"./libs/js-cookie.min.js";function registerScreen(){let e={loading:!1,name:"",username:"",password:"",repeatPassword:"",error:""};return{view:function(){let r=[];""!==e.error&&r.push(m("p.register__error",e.error));let t=[];e.loading&&t.push(m(LoadingCover));let o=i18n("Original logo by $author from $website").split(" ").map(e=>"$author"===e?m("a.attribution__link",{target:"_blank",rel:"noopener",href:"https://www.flaticon.com/authors/freepik"},"Freepik "):"$website"===e?m("a.attribution__link",{target:"_blank",rel:"noopener",href:"https://www.flaticon.com"},"www.flaticon.com "):e+" ");return m(".register",m(".register__body",...r,m(".register__form",m("img.register__logo",{src:"/res/logo.svg"}),m("p.register__title",i18n("Welcome, new user")),m("input[type=text].register__input",{value:e.name,autocomplete:"new-password",placeholder:i18n("Name"),oninput(r){e.name=r.target.value}}),m("input[type=text].register__input",{value:e.username,autocomplete:"new-password",placeholder:i18n("Username"),oninput(r){e.username=r.target.value}}),m("input[type=password].register__input",{value:e.password,autocomplete:"new-password",placeholder:i18n("Password"),oninput(r){e.password=r.target.value}}),m("input[type=password].register__input",{value:e.repeatPassword,autocomplete:"new-password",placeholder:i18n("Repeat password"),oninput(r){e.repeatPassword=r.target.value}}),m(Button,{class:"register__button",caption:i18n("Register"),loading:e.loading,onclick(){""!==e.name&&""!==e.username&&""!==e.password&&(e.password===e.repeatPassword?function(){e.loading=!0,e.error="",m.redraw();let r={method:"POST",body:JSON.stringify({name:e.name,username:e.username,password:e.password,admin:!0})};request("/api/user","5s",r).then(e=>request("/api/login","5s",{method:"POST",body:JSON.stringify({username:e.username,password:e.password})})).then(e=>{let r=e.session,t=e.user||null;Cookies.set("session-duit",r,{expires:365}),localStorage.setItem("duit-user",JSON.stringify(t)),window.location.href="/"}).catch(r=>{e.error=r.message}).finally(()=>{e.loading=!1,m.redraw()})}():e.error=i18n("new password doesn't match"))}}))),m("p.attribution",o),...t)},oncreate:function(e){e.dom.querySelector(".register__input").focus()}}}export function startApp(){m.mount(document.body,registerScreen)} \ No newline at end of file diff --git a/internal/view/less/_register.less b/internal/view/less/_register.less new file mode 100644 index 0000000..10eefb1 --- /dev/null +++ b/internal/view/less/_register.less @@ -0,0 +1,119 @@ +// out: ../css/ + +* { + border-width : 0; + box-sizing : border-box; + font-family : "Source Sans Pro", sans-serif; + margin : 0; + padding : 0; + text-decoration: none; +} + +html { + background-color: var(--app-bg); +} + +.register { + display : flex; + flex-flow : column nowrap; + width : 100vw; + height : 100vh; + max-width : 100vw; + max-height: 100vh; + overflow : hidden; +} + +.register__body { + display : flex; + flex-flow : column nowrap; + align-items : center; + justify-content: center; + overflow : hidden; + padding : 1rem 1rem 0; + flex : 1 0; +} + +.register__error, +.register__form { + background-color: var(--content-bg); + font-size : 0.9rem; + text-align : center; + padding : 0.5rem; + border : 1px solid var(--border); + width : 100%; + max-width : 350px; + max-height : 100%; +} + +.register__error { + display : block; + color : var(--alert-color); + margin-bottom: 1rem; +} + +.register__form { + display : flex; + flex-flow : column nowrap; + align-items: center; + overflow : auto; + + *:not(:last-child) { + margin-bottom: 0.5rem; + } +} + +.register__logo { + width : 100%; + max-width: 250px; + margin : 0.5rem 0 1rem 0 !important; +} + +.register__title { + border-top : 1px solid var(--border); + color : var(--font-color); + font-size : 1.5em; + width : 100%; + padding-top: 0.5rem; +} + +.register__input { + min-width : 0; + max-width : 100%; + width : 100%; + font-size : 0.9rem; + padding : 0.5rem; + color : var(--color); + border : 1px solid var(--border); + text-align: center; + + &::selection { + background-color: var(--main); + } +} + +.register__button { + text-transform: uppercase; + font-weight : 600; + + span { + outline: none; + } +} + +.attribution { + display : block; + font-size : 0.9rem; + padding : 0.5rem; + text-align: center; + color : var(--link-color); +} + +.attribution__link { + font-weight: 600; + color : var(--link-color); + + &:hover, + &:focus { + color: var(--main-dark) + } +} \ No newline at end of file diff --git a/internal/view/register.html b/internal/view/register.html new file mode 100644 index 0000000..141edc3 --- /dev/null +++ b/internal/view/register.html @@ -0,0 +1,36 @@ + + + +
+