]> git.lizzy.rs Git - micro.git/commitdiff
Add reset command and statusline format string options
authorZachary Yedidia <zyedidia@gmail.com>
Sun, 16 Jun 2019 21:35:00 +0000 (17:35 -0400)
committerZachary Yedidia <zyedidia@gmail.com>
Wed, 25 Dec 2019 22:05:10 +0000 (17:05 -0500)
internal/action/command.go
internal/buffer/buffer.go
internal/buffer/settings.go
internal/config/runtime.go
internal/config/settings.go
internal/display/statusline.go
runtime/help/commands.md
runtime/help/options.md

index 9b96de09265d73a4c3e0ceb524429db00966e8a3..672a761fea6df4b0bff6abe12406c3767e3a5e13 100644 (file)
@@ -30,6 +30,7 @@ var commands map[string]Command
 func InitCommands() {
        commands = map[string]Command{
                "set":        Command{(*BufPane).SetCmd, OptionValueComplete},
+               "reset":      Command{(*BufPane).ResetCmd, OptionValueComplete},
                "setlocal":   Command{(*BufPane).SetLocalCmd, OptionValueComplete},
                "show":       Command{(*BufPane).ShowCmd, OptionComplete},
                "showkey":    Command{(*BufPane).ShowKeyCmd, nil},
@@ -347,16 +348,7 @@ func (h *BufPane) NewTabCmd(args []string) {
        }
 }
 
-func SetGlobalOption(option, value string) error {
-       if _, ok := config.GlobalSettings[option]; !ok {
-               return config.ErrInvalidOption
-       }
-
-       nativeValue, err := config.GetNativeValue(option, config.GlobalSettings[option], value)
-       if err != nil {
-               return err
-       }
-
+func SetGlobalOptionNative(option string, nativeValue interface{}) error {
        config.GlobalSettings[option] = nativeValue
 
        if option == "colorscheme" {
@@ -376,12 +368,46 @@ func SetGlobalOption(option, value string) error {
        }
 
        for _, b := range buffer.OpenBuffers {
-               b.SetOption(option, value)
+               b.SetOptionNative(option, nativeValue)
        }
 
-       config.WriteSettings(config.ConfigDir + "/settings.json")
+       return config.WriteSettings(config.ConfigDir + "/settings.json")
+}
 
-       return nil
+func SetGlobalOption(option, value string) error {
+       if _, ok := config.GlobalSettings[option]; !ok {
+               return config.ErrInvalidOption
+       }
+
+       nativeValue, err := config.GetNativeValue(option, config.GlobalSettings[option], value)
+       if err != nil {
+               return err
+       }
+
+       return SetGlobalOptionNative(option, nativeValue)
+}
+
+// ResetCmd resets a setting to its default value
+func (h *BufPane) ResetCmd(args []string) {
+       if len(args) < 1 {
+               InfoBar.Error("Not enough arguments")
+               return
+       }
+
+       option := args[0]
+
+       defaultGlobals := config.DefaultGlobalSettings()
+       defaultLocals := config.DefaultLocalSettings()
+
+       if _, ok := defaultGlobals[option]; ok {
+               SetGlobalOptionNative(option, defaultGlobals[option])
+               return
+       }
+       if _, ok := defaultLocals[option]; ok {
+               h.Buf.SetOptionNative(option, defaultLocals[option])
+               return
+       }
+       InfoBar.Error(config.ErrInvalidOption)
 }
 
 // SetCmd sets an option
index e9523b14c737bf311ddcf120bd09aace1788f428..1a7bf301fd4b8beac2e793b38da0d5955177a7df 100644 (file)
@@ -108,9 +108,6 @@ type Buffer struct {
        CurSuggestion int
 
        Messages []*Message
-
-       StatusFormatLeft  string
-       StatusFormatRight string
 }
 
 // NewBufferFromFile opens a new buffer using the given path
@@ -244,25 +241,11 @@ func NewBuffer(r io.Reader, size int64, path string, startcursor Loc, btype BufT
                screen.TermMessage(err)
        }
 
-       b.SetStatusFormat()
-
        OpenBuffers = append(OpenBuffers, b)
 
        return b
 }
 
-// SetStatusFormat will correctly set the format string for the
-// status line
-func (b *Buffer) SetStatusFormat() {
-       if b.Settings["hidehelp"].(bool) {
-               b.StatusFormatLeft = "$(filename) $(modified)($(line),$(col)) $(opt:filetype) $(opt:fileformat) $(opt:encoding)"
-               b.StatusFormatRight = ""
-       } else {
-               b.StatusFormatLeft = "$(filename) $(modified)($(line),$(col)) $(opt:filetype) $(opt:fileformat) $(opt:encoding)"
-               b.StatusFormatRight = "$(bind:ToggleKeyMenu): show bindings, $(bind:ToggleHelp): toggle help"
-       }
-}
-
 // Close removes this buffer from the list of open buffers
 func (b *Buffer) Close() {
        for i, buf := range OpenBuffers {
index e85672a68d32fb90e939440de9e925998597e8cd..1d9801adc942b80ac61ed8198a34c8a8b4cf6f6c 100644 (file)
@@ -5,17 +5,7 @@ import (
        "github.com/zyedidia/micro/internal/screen"
 )
 
-// SetOption sets a given option to a value just for this buffer
-func (b *Buffer) SetOption(option, value string) error {
-       if _, ok := b.Settings[option]; !ok {
-               return config.ErrInvalidOption
-       }
-
-       nativeValue, err := config.GetNativeValue(option, b.Settings[option], value)
-       if err != nil {
-               return err
-       }
-
+func (b *Buffer) SetOptionNative(option string, nativeValue interface{}) error {
        b.Settings[option] = nativeValue
 
        if option == "fastdirty" {
@@ -45,9 +35,21 @@ func (b *Buffer) SetOption(option, value string) error {
                }
        } else if option == "encoding" {
                b.isModified = true
-       } else if option == "hidehelp" {
-               b.SetStatusFormat()
        }
 
        return nil
 }
+
+// SetOption sets a given option to a value just for this buffer
+func (b *Buffer) SetOption(option, value string) error {
+       if _, ok := b.Settings[option]; !ok {
+               return config.ErrInvalidOption
+       }
+
+       nativeValue, err := config.GetNativeValue(option, b.Settings[option], value)
+       if err != nil {
+               return err
+       }
+
+       return b.SetOptionNative(option, nativeValue)
+}
index 62465a0b911c72a31568e82e1a9490104f9630ae..576c2ed0d4c8dfc0a74a603fd4653d21d2729e29 100644 (file)
@@ -35,7 +35,6 @@
 // runtime/help/colors.md
 // runtime/help/commands.md
 // runtime/help/defaultkeys.md
-// runtime/help/gimmickcolors.md
 // runtime/help/help.md
 // runtime/help/keybindings.md
 // runtime/help/options.md
@@ -892,7 +891,7 @@ func runtimeHelpColorsMd() (*asset, error) {
        return a, nil
 }
 
-var _runtimeHelpCommandsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x4f\x6f\xdc\xba\x11\x3f\x3f\x7d\x8a\x81\xdf\x21\x76\x10\xeb\xdd\xf7\xd0\x02\x75\x1b\xb4\x40\xd2\xba\x4d\xda\xa2\xa7\x6a\x56\x9a\x5d\xb1\xa6\x48\x85\x43\xee\x5a\xfd\xf4\xc5\xcc\x50\xda\xdd\xb8\xc0\x4b\x0e\xf1\x8a\x9c\xff\x7f\x7e\x33\xfc\x19\x9e\x23\xb3\xdb\x7b\x82\x3e\x4e\x13\x86\x81\x9b\xe6\x5f\xb1\x40\x8f\x01\xe8\x95\xfa\x92\x09\xe4\xe7\xe0\x72\x4c\x2b\x0d\xec\x17\x98\x13\x31\xbb\x70\x84\xee\x29\x27\xff\x48\x1d\x1c\xa2\xf7\xf1\x4c\x7a\x9b\xc7\x4d\x60\xdb\xfc\x91\x12\x01\x26\xd2\xd3\xf9\x7b\x7d\x90\x47\xcc\xb0\x54\x9d\x85\xa9\x6d\x9a\xf7\xd0\x7d\x2b\x2e\x77\x3b\xf8\x6b\x71\x99\x61\x72\x7d\x8a\x76\xce\x78\x22\x38\x38\x4f\x01\x27\xfa\x6d\xb7\x83\x2f\x78\x22\x36\x85\x25\x25\x0a\x19\xf6\xe5\x70\xa0\xd4\xc2\x9f\x0e\x7a\xbc\x12\x83\x63\x98\x53\x3c\xb9\x81\x06\x70\xb9\x01\x38\x3b\xef\xe1\x9d\x4a\x44\x7e\x77\x43\x6c\xca\x12\xcd\x1e\x7b\x82\x3b\x26\x4c\xfd\x78\x07\x77\x27\xf4\x85\xee\xe0\xe0\xf1\xc8\xdd\x0e\xbe\x8e\x8e\x4d\xcc\x4a\xda\x19\x69\x07\x67\x97\x47\xe8\x94\xbe\x6b\xa1\x01\x80\xaf\x23\x41\x67\x9c\x1a\x8e\x38\x67\x17\x03\xfa\xf6\x92\x04\xbd\x95\xcb\x9d\x30\xbc\x87\xee\x11\xbb\x1d\xfc\xad\xca\x46\xef\x21\xf6\xe6\x66\x4f\x0c\x98\x21\x86\x9e\x56\x52\xdf\xed\xe0\xf7\x11\x10\xbc\xcb\x94\xd0\x83\x99\x02\x2e\x70\x26\x1c\x20\x1e\x00\x21\xd1\x91\x5e\xeb\x4d\x23\x9c\x7f\x8e\x99\x2c\x07\x9b\xe9\x53\xe1\x0c\x7b\x02\x84\x13\x7a\x37\x54\x9e\xfb\x12\x3c\x31\xab\x22\x8d\x25\x32\xd3\xf0\xa0\x71\x8e\x81\xd4\xc5\x68\x21\xc7\x74\x2c\x13\x85\xcc\x30\x44\x62\x08\x31\xc3\xa8\x51\x0e\x0b\xf0\x8c\x62\xbb\x0b\xe0\xf2\x07\xcd\xfb\x84\x0b\xc4\xc9\x65\x65\xfd\x56\x62\x26\xbe\x09\xbf\xb8\xfd\x7d\x06\x7e\x3c\xf6\xfa\x11\x8b\xe4\x5b\xaa\x4b\x8a\x38\x1c\x5c\x9a\x50\x82\xdf\x36\xcd\x4f\x5f\x88\x36\x55\xdd\x56\xe2\x87\x98\x60\x8a\x89\xc0\x85\x43\xbc\x50\x4b\x05\x52\xae\xa9\x03\xd3\xb0\x03\xa6\x6c\x25\x58\xcf\x73\xb4\xab\x16\x44\xb8\x5c\x74\x76\xc3\x1d\x8c\xe4\x67\xc8\x71\x76\xbd\xe8\x10\xab\x24\x61\x9c\x25\x76\x95\x68\xeb\x06\xa6\xbc\xe9\xf4\xb1\x47\xff\xa3\x8a\x41\xa9\xfd\x02\xf7\x31\xf8\x45\x82\x7d\xd5\x20\xa2\xd3\x7a\xe4\xa1\x4a\x1f\xe3\xb9\x4a\x10\x99\x63\x3c\xdf\x36\x94\x89\xac\xb9\x3d\xba\x13\x85\x4a\x6d\xec\x74\x42\x0f\x77\xf4\x6a\x90\x10\x83\x24\xe7\x0f\xc2\x83\x59\x8a\x14\x3e\x15\x84\xcb\x6d\x7b\x55\x71\xda\xd7\x96\xc3\x10\xd5\xae\x39\xb9\x90\xa5\x4e\xf2\x28\xe0\xc2\x51\x63\xc1\x63\x2c\x7e\x90\xf4\x41\x37\x11\x33\x85\x23\xa5\xdd\x67\x62\xc6\x23\xdd\xb7\x6d\xfb\xd0\x89\xeb\x83\xe3\xd9\xe3\x62\x75\x5b\xd6\x1e\x2e\x01\x78\x7c\xac\x79\xed\x76\x90\x4a\xe0\x2b\x4f\x78\x24\xef\xb7\xb4\xd7\x48\xed\xb1\x7f\x39\xa6\x58\xc2\xd0\x6a\xdb\x8a\x69\x95\xe4\x1d\x43\x2c\x79\x2e\xd9\xec\xde\xd3\xaa\x96\x94\x5b\x3a\xc1\xbb\x40\x70\x1e\x49\x4a\x1c\x0e\x2e\x38\x1e\x89\x45\x6f\x70\xe1\x68\x56\xed\x5d\x18\xe0\x85\x16\xc0\xbe\x86\xbd\x4f\x54\xe3\xf5\x42\x8b\x5c\x8b\xff\x87\x14\x27\x25\xcb\xb1\x52\x5e\x4a\x8a\x49\x0f\x58\xfb\x2e\x5c\x71\x31\xe0\x3e\x0a\x4a\x5e\x97\xb0\x9c\x89\xcd\x12\xf6\x17\x5a\x18\xc4\x5b\x13\xa9\x80\x03\x78\x42\xe7\x71\xef\x6b\xd8\x4e\x3c\x7b\xb5\xde\xf0\xb0\xdb\x41\x9c\x49\x48\xe1\x44\x29\x3b\xa9\x45\xa3\xb0\x5e\xdb\xe8\x14\x0e\x42\xbc\x46\x5d\xcb\xab\x01\xef\x87\xb7\x02\x1c\xab\x68\x1a\x4c\x94\x4c\x9b\x69\xce\xcb\x0a\xe3\x6a\xcd\xf8\xc6\x1a\x16\xd9\xc8\xab\xa1\x1d\xec\x4b\xde\x4c\x1c\x63\x72\xff\x8d\x21\x5f\x74\x5c\x41\xa0\x98\x73\x6b\x82\xe9\xc8\xb8\x7f\xeb\xee\xa5\x4e\xe4\x4a\x12\x8c\x10\xe8\x0c\x19\xf7\x1b\x17\x9f\x5d\xee\x47\x39\x5a\x51\x69\xad\x26\xad\x90\xf5\x3a\x5a\xd6\x66\xea\xdd\xc1\xd1\xa0\x22\x6c\x26\x08\xa7\xf4\xbb\x58\x46\x2e\x8f\x94\x0c\x7d\xc5\xa2\x50\xa6\x3d\xa5\x0f\x10\x93\x68\x16\xa7\x15\xc6\x55\xff\x4f\xf2\x0f\xc4\x0a\x1f\x8f\x57\x19\xf2\xf1\xa8\x54\xde\xc3\x64\x3d\x62\xe9\x1e\x68\x5f\x8e\xc0\x19\x33\x29\x3a\x9b\x07\xb3\x2f\x47\x41\xe3\xc0\x59\x38\xec\xf3\xdf\x35\x0a\xf5\xf4\x3a\x10\x46\x70\xc3\x9b\x68\x92\x82\xbb\x65\xb5\xc3\x5f\xe1\x14\xe4\xeb\x76\xfa\x87\xd5\xe0\xaa\x90\x86\x4a\x7d\x6b\x64\x99\x07\xcc\x22\xdc\x7e\xfc\x08\x4b\x1d\x82\xb7\xb6\xd9\x21\xb1\xf6\xc8\x1b\x03\xaf\x10\xaa\x22\xb1\x64\xe6\x20\x2d\x7b\xc1\x6a\xd1\xbc\xf5\xcc\xaa\x19\x50\x51\xec\xe8\xf2\x58\xf6\x6d\x1f\xa7\x5f\x14\xe2\x1e\x6d\x7f\xfa\xc5\xa8\x1e\xfb\x11\x43\x20\xdf\xea\xfc\x5d\xb7\x2d\xf4\x1c\x81\x89\xde\x4c\x9d\xda\xb9\xba\x3c\x99\x4b\x13\x06\x3c\x52\xaa\x60\x25\x42\xba\x67\xbb\xf9\x6c\x37\xdd\x0a\x0e\x2b\x68\xd7\x60\xdc\x8c\x9f\x9b\x28\x6d\x9e\xd4\x64\x5c\x1c\xda\x5c\x94\x50\x0d\xf1\x1c\x7c\xc4\x01\xee\xb3\xd4\xb9\x0b\xbd\x2f\x83\x56\xd7\xa2\x5d\x5e\x99\x0c\xdc\x71\xd1\x32\xf6\x89\x70\x58\x2e\x59\x7a\x58\x87\xbb\x08\xd2\x3a\x91\x1f\x96\xca\x54\x42\x76\x93\xad\x61\x35\x8d\xfd\x00\x33\xe6\xb1\xdb\xc1\xd3\x88\xe1\x68\xd8\x77\x8e\xe9\x45\xf0\x71\x70\x89\xfa\x1c\xd3\xb2\xb6\x97\xe5\xb1\x53\x8e\xea\xe0\x59\x94\x3c\xeb\x5c\xb9\x1e\x6a\x6f\x44\x18\xb9\xf4\xd0\x35\x0c\xfc\x45\xbe\x71\xeb\xfe\xff\xb3\x67\x56\x6f\xac\xfd\xeb\xaa\x66\xde\x78\x42\x45\x71\xc1\x08\x03\xb7\xba\xfc\xc4\xb4\xdd\xd5\x13\xbd\x15\x3a\x09\xe3\x40\x33\x19\xfe\x47\xd3\xb8\x0d\x60\x85\x9b\x1c\x8d\xa9\x3a\x98\xf0\xdc\xed\xe0\xf3\x65\x94\x46\x33\xb9\xc2\x94\x76\xbe\x4e\x78\x91\x44\xdc\xe3\x2c\xb3\xe3\x5b\x91\x1d\x52\x93\x4a\x27\x4a\x8b\xfc\x6f\xab\x81\xcb\x90\xa8\x27\x27\xbd\xab\xf3\x47\xf8\x32\xa5\xc9\xe9\xae\xaa\x00\x67\x3b\x82\x34\xc7\xf9\x32\xc7\xb1\xcf\x45\x97\x0e\xa6\xca\x2a\xe2\xae\xb9\xd5\x16\xa9\x40\xe3\x95\x6a\x3f\x8f\xae\x1f\xe1\x32\xb9\x12\x85\x77\xf9\xf2\x4a\x50\x14\x1d\x17\x53\xab\xd6\x31\x4c\x91\xb3\xec\x02\x87\xe2\xad\x28\x05\xd6\x8e\x12\xae\xab\x19\x78\xd9\x6c\x5e\x68\x91\x67\xc2\x1a\x01\x9b\x79\xf7\xfc\x00\x7b\x99\xef\x3a\x59\x6b\xd9\xbc\xd0\xd2\xc2\x47\x89\xc8\x2b\x4e\xb3\xd7\xce\xaa\x53\x1b\xba\xdf\x40\x15\x06\xf2\xe0\x79\xea\x2c\xd6\xeb\xca\xd1\x4d\xe8\x42\x7b\xff\xfe\x1f\x8e\xce\x0f\xed\x53\x9c\x97\xae\x85\xbf\x4b\x13\x67\x59\x83\xbc\xb6\xc7\x2a\x60\x5b\x8a\xa5\x06\xe1\x2c\xfb\x87\xf8\xa1\x63\x79\x33\x6a\x6d\x4c\x1b\xd1\x66\x57\x1e\x23\x53\xcd\xd1\x7f\x64\x49\xb7\x3c\xdc\x7d\x2a\xf8\xb1\x04\xa5\xfc\x9d\xf9\xdf\xde\x35\xcd\xe3\xe3\x63\xd3\xc8\x80\xb1\x97\x99\x78\xb1\x3d\xba\x64\xe2\x6f\x8f\xa1\xfa\x60\x1b\xe8\x80\xc5\x6f\xad\xbf\xd3\x08\x7a\x17\x04\xa0\x3f\x7d\xdf\x3e\xda\x10\x5a\x3d\x29\xc5\x24\xe1\xfe\x19\x9e\xea\xd8\x7b\xc6\x24\x4f\xc3\xa6\xf9\xa7\xec\x40\x6b\x04\x71\xd5\xfe\xe1\xfa\xb5\x07\xf4\x9a\x13\x02\x2f\x21\xe3\xeb\x9b\xad\x90\x5e\x67\x7d\x6f\xd2\x21\x26\x6a\x56\x49\xd7\xaf\x4b\xf8\x1a\x55\x8c\x20\x68\x7d\x75\xd4\x3d\xc2\x5a\x6b\x7d\x68\xb0\x9b\x66\xbf\x80\xec\x6d\xba\x0f\x34\xf5\xa1\x71\x8b\xbf\x6a\x50\x38\xb9\x14\xc3\x64\x9b\x6f\x72\x02\x7e\xbc\xf5\xfe\xfa\x02\xc6\xa4\xb5\x99\x47\x5a\x9a\x75\x11\x34\x6b\x69\xa8\x60\xe4\xd2\xfa\x0a\xf8\x28\xc5\xef\x97\x8b\xe3\x62\x86\xbe\xb0\xd7\xad\x58\xe4\xcb\xd2\x99\x5d\xff\xc2\x8d\x6e\xa2\x97\x05\x93\xea\x32\xbd\x65\xca\x76\x56\x8b\xca\xa8\x6f\xec\xff\x05\x00\x00\xff\xff\x05\x5d\x9b\x73\xc9\x0f\x00\x00"
+var _runtimeHelpCommandsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x4b\x8f\xdd\x4a\x11\x5e\x5f\xff\x8a\xd2\xdc\x45\x66\xa2\x8c\xef\xfe\x2c\x40\x62\x20\x02\x29\x81\x81\x04\x10\x2b\x5c\xc7\x2e\xdb\xcd\xb4\xbb\x9d\x7e\x9c\x33\xe6\xd7\xa3\xaa\x6a\x3f\x4e\x06\xe9\x26\x8b\xcc\x71\x77\xbd\x1f\x5f\x55\xff\x0c\xcf\x3e\x46\x73\xb6\x04\xad\x9f\x26\x74\x5d\xac\xaa\x7f\xf9\x0c\x2d\x3a\xa0\x57\x6a\x73\x22\xe0\x9f\x9d\x49\x3e\xac\x34\x70\x5e\x60\x0e\x14\xa3\x71\x03\x34\x4f\x29\xd8\x47\x6a\xa0\xf7\xd6\xfa\x2b\xc9\x6d\x1a\x37\x81\x75\xf5\x47\x0a\x04\x18\x48\x4e\xe7\xef\xf5\x41\x1a\x31\xc1\x52\x74\xe6\x48\x75\x55\xbd\x87\xe6\x5b\x36\xa9\x39\xc1\x5f\xb3\x49\x11\x26\xd3\x06\xaf\xe7\x11\x2f\x04\xbd\xb1\xe4\x70\xa2\xdf\x36\x27\xf8\x82\x17\x8a\xaa\x30\x87\x40\x2e\xc1\x39\xf7\x3d\x85\x1a\xfe\xd4\xcb\xf1\x4a\x0c\x26\xc2\x1c\xfc\xc5\x74\xd4\x81\x49\x15\xc0\xd5\x58\x0b\xef\x44\x22\xc6\x77\x37\xc4\xaa\x2c\xd0\x6c\xb1\x25\xb8\x8b\x84\xa1\x1d\xef\xe0\xee\x82\x36\xd3\x1d\xf4\x16\x87\xd8\x9c\xe0\xeb\x68\xa2\x8a\x59\x49\x1b\x25\x6d\xe0\x6a\xd2\x08\x8d\xd0\x37\x35\x54\x00\xf0\x75\x24\x68\x94\x53\xc2\xe1\xe7\x64\xbc\x43\x5b\xef\x49\x90\x5b\xbe\x3c\x31\xc3\x7b\x68\x1e\xb1\x39\xc1\xdf\x8a\x6c\xb4\x16\x7c\xab\x6e\xb6\x14\x01\x13\x78\xd7\xd2\x4a\x6a\x9b\x13\xfc\xde\x03\x82\x35\x89\x02\x5a\x50\x53\xc0\xb8\x98\x08\x3b\xf0\x3d\x20\x04\x1a\xe8\xb5\xdc\x54\xcc\xf9\x67\x9f\x48\x73\xb0\x99\x3e\xe5\x98\xe0\x4c\x80\x70\x41\x6b\xba\xc2\x73\x9f\x9d\xa5\x18\x45\x91\xc4\x12\x63\xa4\xee\x41\xe2\xec\x1d\x89\x8b\x5e\x43\x8e\x61\xc8\x13\xb9\x14\xa1\xf3\x14\xc1\xf9\x04\xa3\x44\xd9\x2d\x10\x67\x64\xdb\x8d\x03\x93\x3e\x48\xde\x27\x5c\xc0\x4f\x26\x09\xeb\xb7\xec\x13\xc5\x9b\xf0\xb3\xdb\xdf\x67\xe0\xc7\x63\x2f\x1f\x3e\x73\xbe\xb9\xba\xb8\x88\x5d\x6f\xc2\x84\x1c\xfc\xba\xaa\x7e\xfa\x42\xb4\xa9\x6a\xb6\x12\xef\x7d\x80\xc9\x07\x02\xe3\x7a\xbf\x53\x73\x05\x52\x2a\xa9\x03\xd5\x70\x82\x48\x49\x4b\xb0\x9c\x27\xaf\x57\x35\xb0\x70\xbe\x68\xf4\x26\x36\x30\x92\x9d\x21\xf9\xd9\xb4\xac\x83\xad\xe2\x84\xc5\xc4\xb1\x2b\x44\x5b\x37\x44\x4a\x9b\x4e\xeb\x5b\xb4\x3f\xaa\x18\x84\xda\x2e\x70\xef\x9d\x5d\x38\xd8\x87\x06\x61\x9d\xda\x23\x0f\x45\xfa\xe8\xaf\x45\x02\xcb\x1c\xfd\xf5\xb6\xa1\x54\x64\xc9\xed\x60\x2e\xe4\x0a\xb5\xb2\xd3\x05\x2d\xdc\xd1\xab\x42\x82\x77\x9c\x9c\x3f\x30\x0f\x26\x2e\x52\xf8\x94\x11\xf6\xdb\xfa\x50\x71\xd2\xd7\x9a\x43\xe7\xc5\xae\x39\x18\x97\xb8\x4e\xd2\xc8\xe0\x12\xbd\xc4\x22\x8e\x3e\xdb\x8e\xd3\x07\xcd\x44\x31\x92\x1b\x28\x9c\x3e\x53\x8c\x38\xd0\x7d\x5d\xd7\x0f\x0d\xbb\xde\x99\x38\x5b\x5c\xb4\x6e\xf3\xda\xc3\xd9\x41\x1c\x1f\x4b\x5e\x9b\x13\x84\xec\xe2\xc1\x93\x38\x92\xb5\x5b\xda\x4b\xa4\xce\xd8\xbe\x0c\xc1\x67\xd7\xd5\xd2\xb6\x6c\x5a\x21\x79\x17\xc1\xe7\x34\xe7\xa4\x76\x9f\x69\x55\x4b\xc2\xcd\x9d\x60\x8d\x23\xb8\x8e\xc4\x25\x0e\xbd\x71\x26\x8e\x14\x59\xaf\x33\x6e\x50\xab\xce\xc6\x75\xf0\x42\x0b\x60\x5b\xc2\xde\x06\x2a\xf1\x7a\xa1\x85\xaf\xd9\xff\x3e\xf8\x49\xc8\x92\x2f\x94\x7b\x49\x45\x92\x83\x28\x7d\xe7\x0e\x5c\x11\xf0\xec\x19\x25\x8f\x25\xcc\x67\x6c\x33\x87\xfd\x85\x96\x08\xec\xad\x8a\x14\xc0\x01\xbc\xa0\xb1\x78\xb6\x25\x6c\x97\x38\x5b\xb1\x5e\xf1\xb0\x39\x81\x9f\x89\x49\xe1\x42\x21\x19\xae\x45\xa5\xd0\x5e\xdb\xe8\x04\x0e\x9c\x3f\xa2\xae\xe6\x55\x81\xf7\xc3\x5b\x01\x26\x8a\x68\xea\x54\x14\x4f\x9b\x69\x4e\xcb\x0a\xe3\x62\xcd\xf8\xc6\x9a\xc8\xb2\x31\xae\x86\x36\x70\xce\x69\x33\x71\xf4\xc1\xfc\xd7\xbb\xb4\xeb\x38\x40\x20\x9b\x73\x6b\x82\xea\x48\x78\x7e\xeb\xee\x5e\x27\x7c\xc5\x09\x46\x70\x74\x85\x84\xe7\x8d\x2b\x5e\x4d\x6a\x47\x3e\x5a\x51\x69\xad\x26\xa9\x90\xf5\xda\x6b\xd6\x66\x6a\x4d\x6f\xa8\x13\x11\x3a\x13\x98\x93\xfb\x9d\x2d\x23\x93\x46\x0a\x8a\xbe\x6c\x91\xcb\xd3\x99\xc2\x07\xf0\x81\x35\xb3\xd3\x02\xe3\xa2\xff\x27\xfe\x07\x6c\x85\xf5\xc3\x21\x43\xd6\x0f\x42\x65\x2d\x4c\xda\x23\x9a\xee\x8e\xce\x79\x80\x98\x30\x91\xa0\xb3\x7a\x30\xdb\x3c\x30\x1a\xbb\x98\x98\x43\x3f\xff\x5d\xa2\x50\x4e\x8f\x81\x50\x82\x1b\xde\x40\x13\x17\xdc\x2d\xab\x1e\xfe\x0a\x27\x23\x5f\x73\x92\x3f\x51\x0c\x2e\x0a\xa9\x2b\xd4\xb7\x46\xe6\xb9\xc3\xc4\xc2\xf5\xc7\x8f\xb0\x94\x21\x78\x6b\x9b\x1e\x52\x94\x1e\x79\x63\xe0\x01\xa1\x0a\x12\x73\x66\x7a\x6e\xd9\x1d\xab\x59\xf3\xd6\x33\xab\x66\x40\x41\xb1\xc1\xa4\x31\x9f\xeb\xd6\x4f\xbf\x08\xc4\x3d\xea\xfe\xf4\x8b\x52\x3d\xb6\x23\x3a\x47\xb6\x96\xf9\xbb\x6e\x5b\x68\xa3\x87\x48\xf4\x66\xea\x94\xce\x95\xe5\x49\x5d\x9a\xd0\xe1\x40\xa1\x80\x15\x0b\x69\x9e\xf5\xe6\xb3\xde\x34\x2b\x38\xac\xa0\x5d\x82\x71\x33\x7e\x6e\xa2\xb4\x79\x52\x92\xb1\x3b\xb4\xb9\xc8\xa1\xea\xfc\xd5\x59\x8f\x1d\xdc\x27\xae\x73\xe3\x5a\x9b\x3b\xa9\xae\x45\xba\xbc\x30\x29\xb8\xe3\x22\x65\x6c\x03\x61\xb7\xec\x59\x7a\x58\x87\x3b\x0b\x92\x3a\xe1\x1f\x9a\xca\x90\x5d\x32\x93\xae\x61\x25\x8d\x6d\x07\x33\xa6\xb1\x39\xc1\xd3\x88\x6e\x50\xec\xbb\xfa\xf0\xc2\xf8\xd8\x99\x40\x6d\xf2\x61\x59\xdb\x4b\xf3\xd8\x08\x47\x71\xf0\xca\x4a\x9e\x65\xae\x1c\x87\xda\x1b\x11\x4a\xce\x3d\x74\x84\x81\xbf\xf0\x37\x6e\xdd\xff\x7f\xf6\xcc\xe2\xcd\xbe\x16\x88\x4f\xdb\x64\x3e\xce\x4b\xb6\x92\xf7\xd9\x8e\x7a\xcc\xb6\x0c\xd6\xc2\xaf\xf0\x51\x56\x3d\x8d\x86\x25\x94\x29\xc0\x18\xa3\xe0\x58\x96\x27\x1f\xb6\xbb\x72\x22\xb7\x4c\xc7\x69\xe8\x68\x26\x9d\x1f\x5e\x2d\xde\x06\xb8\xc0\x55\xf2\xca\x54\x02\x14\xf0\xda\x9c\xe0\xf3\x3e\x8a\xbd\xba\x5c\x60\x4e\x90\x43\x36\x04\x96\x44\xb1\xc5\x99\x67\xcf\xb7\xcc\x3b\xa8\x14\x05\x5d\x28\x2c\xfc\xbf\xae\x16\x26\x41\xa0\x96\x0c\xf7\xbe\xcc\x2f\xe6\x4b\x14\x26\x23\xbb\xae\x00\xa4\xee\x18\xdc\x5c\xd7\x7d\x0f\xc0\x36\x65\x59\x5a\x22\x15\x56\x16\x77\xe4\x16\x5b\xb8\x82\x95\x97\xbb\xe5\x3a\x9a\x76\x84\x7d\xf2\x05\x72\xef\xd2\xfe\xca\x10\x14\x1e\x17\x55\x2b\xd6\x45\x98\x7c\x4c\xbc\x4b\xf4\xd9\x6a\x51\x33\x2c\x0e\x1c\xae\xc3\x0c\xdd\x37\xa3\x17\x5a\xf8\x99\xb1\x46\x40\x67\xe6\x7d\x7c\x80\x33\xef\x07\x32\x99\x4b\x92\x5f\x68\xa9\xe1\x23\x47\xe4\x15\xa7\xd9\x4a\x67\x96\xa9\x0f\xcd\x6f\xa0\x08\x03\x7e\x30\x3d\x35\x1a\xeb\x75\x65\x69\x26\x34\xae\xbe\x7f\xff\x0f\x43\xd7\x87\xfa\xc9\xcf\x4b\x53\xc3\xdf\x19\x04\x12\xaf\x51\x56\xda\x6b\x15\xb0\x2d\xd5\x5c\xc3\x70\xe5\xfd\x85\xfd\x90\xb1\xbe\x19\xb5\x36\xb6\x8e\x78\xb5\x2b\x8d\x3e\x52\xc9\xd1\x7f\x78\xc9\xd7\x3c\xdc\x7d\xca\xf8\x31\x3b\xa1\xfc\x9d\xfa\x5f\xdf\x55\xd5\xe3\xe3\x63\x55\xf1\x80\xd2\x97\x1d\x7b\xb1\x3d\xda\x78\x63\xd8\x1e\x53\xe5\xc1\xb7\x56\x75\x41\x81\x93\x44\xd0\x1a\xc7\x00\xff\xe9\xfb\xf6\x93\x86\x92\xea\x09\xc1\x07\x0e\xf7\xcf\xf0\x54\xc6\xe6\x33\x06\x7e\x5a\x56\xd5\x3f\x79\x87\x5a\x23\x88\xab\xf6\x0f\xc7\xd7\x22\xd0\x6b\x0a\x08\x71\x71\x09\x5f\xdf\x6c\x95\xf4\x3a\xcb\x7b\x95\x7a\x1f\xa8\x5a\x25\x1d\x5f\xa7\xf0\xd5\x8b\x18\x46\xe0\xf2\x6a\x29\x7b\x88\xb6\xd6\xfa\x50\x89\x66\x9a\xed\x02\xbc\xf7\xc9\x3e\x51\x95\x87\xca\x2d\x7e\x8b\x41\xee\x62\x82\x77\x93\x6e\xce\xc1\x30\x78\xc6\x0d\x3b\xd6\x17\x34\x06\xa9\xcd\x34\xd2\x52\xad\x8b\xa4\x5a\x4b\x5d\x01\x33\x13\xd6\x57\xc4\x47\x2e\x7e\xbb\xec\x8e\xb3\x19\xf2\x42\x5f\xb7\x6a\x96\xcf\x4b\x6b\x32\xed\x4b\xac\x64\x93\xdd\x17\x54\x2a\xcb\xf8\x96\x29\xdd\x79\x35\x2a\xa3\xbc\xd1\xff\x17\x00\x00\xff\xff\x4f\x5c\xa5\xa1\x09\x10\x00\x00"
 
 func runtimeHelpCommandsMdBytes() ([]byte, error) {
        return bindataRead(
@@ -932,26 +931,6 @@ func runtimeHelpDefaultkeysMd() (*asset, error) {
        return a, nil
 }
 
-var _runtimeHelpGimmickcolorsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\xea\xd3\x77\x60\x17\x09\x24\x0e\x2b\x25\xdc\x12\x12\x21\x0e\x9b\x44\x42\xd1\x9e\x1b\x4f\x63\xb7\xb0\xdb\x23\xbb\x67\x61\xde\x3e\x9a\x61\xf3\x77\xc8\xc5\x3e\xb8\xba\x7e\x5c\xfd\x3f\xf6\x92\xb3\xf8\x0b\x7c\x49\xa5\x36\xe7\x5e\x18\x91\x5e\x19\xa2\x3e\x0d\x1d\x77\x20\x9c\xf9\xfa\xf6\xec\x23\x67\x6e\xb0\x48\x06\xaa\x8c\x73\xa9\x38\x0f\xba\x75\x6e\x39\xdd\x97\x71\xe5\xc9\xdb\xd0\xb6\x38\xa0\x2b\xba\x30\x5c\xb4\x5c\x71\x8d\x23\x0e\xc8\xd4\x31\x2c\x4a\x5b\xe3\xe1\xa5\x8a\x19\x2b\x4e\x23\x76\xd4\x1b\x89\x3e\xfb\x5d\xe2\x94\x48\x1f\xdd\x12\x81\x32\x9f\xca\xb8\x32\xbf\xc5\xee\xb7\x32\x4e\xd4\xb8\x43\x51\x58\x64\x94\x24\xaf\x8c\x50\x99\x15\xa5\x4a\x10\xa5\x84\xfd\x7d\xf2\x3f\xb7\x84\x72\x9b\x09\x3e\xfc\x69\x1e\xa4\x1d\xda\xa8\x46\x37\x44\x09\x31\x49\x88\x26\x1a\x30\xb4\xe9\x2c\x9a\xc6\x37\x38\xe4\x2e\xe3\x80\x2f\xa2\xc6\xda\x15\x7c\x56\xe3\x3a\xb9\xcd\xac\x86\xe3\xd8\x8c\xf3\x1d\x8e\x9e\x12\x9b\xf1\xda\x2d\xd1\xc6\x7c\x12\xd2\x7f\xbb\x3f\x8e\xf9\xf4\xf5\xb8\x68\xd8\x7f\x3f\x4c\x03\x99\xac\xca\x6d\x8b\x6f\x95\x27\x1d\x88\x2d\x1a\x36\xef\xdf\x6d\x70\x15\x8b\xa0\xbf\x02\xfc\x62\x21\xe4\xa2\xc5\xc7\x5a\x32\x3b\xe0\xf0\xf1\x19\x4f\x9b\xa7\xcd\x1a\x0f\x9f\x0a\x37\x68\xb1\x9f\x25\xce\x39\x42\x2c\x6d\x4e\x3a\xfd\x80\x55\x92\x24\x1a\x1e\x9d\xdb\x45\xf6\x97\x19\xd1\xa7\x21\x88\xa2\x72\x5f\xd0\x73\x95\xd2\x89\xa7\x94\xc6\xb9\xe6\x70\xdf\x93\xd5\x3d\x2d\xdf\x8c\xb5\x49\x51\xf4\xe4\x2f\x6d\xe6\x0c\xac\x83\x28\x3b\xea\x3a\x31\x29\x53\x1b\x36\xef\xcb\xfa\x47\x00\x00\x00\xff\xff\xcb\xc7\xfc\x0b\x66\x02\x00\x00"
-
-func runtimeHelpGimmickcolorsMdBytes() ([]byte, error) {
-       return bindataRead(
-               _runtimeHelpGimmickcolorsMd,
-               "runtime/help/gimmickcolors.md",
-       )
-}
-
-func runtimeHelpGimmickcolorsMd() (*asset, error) {
-       bytes, err := runtimeHelpGimmickcolorsMdBytes()
-       if err != nil {
-               return nil, err
-       }
-
-       info := bindataFileInfo{name: "runtime/help/gimmickcolors.md", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-       a := &asset{bytes: bytes, info: info}
-       return a, nil
-}
-
 var _runtimeHelpHelpMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\xcd\x8e\xdc\x36\x0c\xbe\xeb\x29\x08\xec\x21\xed\x62\xd6\x0f\x90\x43\x80\xa0\x48\x9b\x1c\x02\x24\x48\xd0\xa0\xb7\xa1\x6d\x8e\x45\x8c\x2c\xba\x12\x6d\xef\xf4\xe9\x0b\x4a\xf6\xee\xcc\x66\xd1\x9e\x66\x40\x89\x1f\xff\xbe\x8f\xf2\x1d\x7c\xe6\x2e\x09\x78\x0a\x13\x28\x3d\xaa\x73\xdf\x3d\xc6\x33\x5c\x64\x86\x93\x24\xe8\x65\x8d\x41\xb0\xe7\x38\x00\xc6\x1e\xe6\x6c\xff\x46\x73\x6a\x9c\xab\xce\x9c\x01\x41\x29\x8d\x1c\x31\x3c\xb4\x98\xa9\x2f\x58\x40\x3d\xab\x24\x50\x8f\x0a\xc8\x63\x06\x15\x68\x09\x08\xf3\xc5\xfe\xce\x99\x0a\x26\x47\x9d\x59\x79\xa1\x03\xb8\xd5\x73\x20\xc0\x90\x05\x14\xcf\x25\x6a\xbf\x60\x54\x1c\x08\xe4\x04\xea\x09\x4e\x73\x08\xd0\xe1\x84\x2d\x07\x56\xa6\x6c\x07\xa3\xf4\x94\xe2\x53\x16\xb9\x71\xce\xb9\xdf\x25\x01\x42\xe0\xac\xbb\x6f\x4f\x27\x9c\x83\xc2\x99\x2e\x2d\x47\xab\x2a\xc3\x94\x28\x67\xf8\x4d\x53\xf8\x50\xd2\xd1\xcb\x44\x70\x2c\x1d\xd9\xae\x9f\xe9\x92\x8f\x4d\x81\x1b\x25\x11\x70\x3c\x49\x1a\x51\x59\x22\x48\xbc\x01\xcb\x44\x70\x7c\x57\xfb\x79\x65\x3f\x36\xce\x7d\x23\x2a\x39\x44\x6b\x4d\xa6\xae\xb8\x9f\x5e\xc3\xc4\x56\x66\x85\x5e\xba\x79\xa4\xa8\x9b\x2d\xf6\x05\xb5\x71\xee\xee\x0e\xbe\xce\xdc\x9d\x1f\xb2\x62\x52\xe7\xbe\x3c\x15\xf0\xd5\xda\xfa\xf7\xcc\x7a\x28\xf7\xcd\xf4\xcd\x4c\x19\x17\x6a\xe0\xcb\x55\xa1\x66\x34\x6f\xab\xd6\xba\xdc\xc9\x38\x62\xec\xb3\xf9\x39\x1b\x7e\x87\xb1\x14\xb3\x7a\xee\xfc\xd5\x71\x22\xc0\x05\x39\x60\x1b\x08\xda\x4b\xed\x9e\x21\x28\xb6\x07\x90\x64\xb6\x85\x69\x2d\x26\x4f\x25\x67\xa7\x32\x71\xf7\xd4\x97\x1d\xec\xd8\xc0\x0f\x4f\x11\x3e\xc1\x9a\x58\x4b\xdf\x9a\xa6\x39\xc2\x27\x18\x09\xe3\xcf\x73\xb1\xbb\x36\x1c\xb7\x7a\x54\x5a\x28\x19\xf3\xd4\x53\xa2\x06\x9c\xfb\x2c\x4b\xed\x6f\x37\xa7\x6c\x83\x4f\x32\xc7\x1e\x56\x56\x5f\xcc\xa3\x18\xdf\x0a\x1d\x09\x30\x25\x59\x6d\x40\xb9\x81\xef\x06\xb9\xe7\x76\x3d\x71\x6b\x12\x0c\xa4\x80\xd6\xd3\xee\x7c\xa8\xcc\x95\x85\x92\x55\xf8\x92\x53\x5e\x8a\x5b\xe9\xa0\x65\x68\x87\x17\xe8\xa5\x81\x1b\xe2\x18\x63\x12\x6d\xc4\x28\x29\x1c\x4a\xa3\x2b\xed\x5e\xa7\xce\xa7\x1a\xa9\x93\x20\x29\x77\x9e\x46\x82\x5e\x28\xc7\x37\x0a\x41\xe4\x0c\x83\x48\x7f\x80\x7d\x6c\x9d\xc7\x38\x10\xb0\x96\xe2\xad\xb4\x4c\x7a\xe3\x6c\x6d\x6e\xe0\xaf\xed\x7e\x6d\xb4\x62\x5b\x58\xb1\xb1\xf4\x79\xc8\x57\x8e\xd9\x26\xec\xec\xca\x4f\x9c\x2d\x7d\x7e\x9e\xb0\xb9\x58\xe6\xcf\x9c\xfb\x61\xe8\xa3\x0d\xa9\x25\x5d\x89\x22\xe4\x29\xb0\xe6\xc3\x95\xe8\xde\xc1\x52\x8c\x70\xe2\x40\x11\x47\x3a\x5a\x3c\x43\x7d\x69\x56\x01\x99\x28\x02\x42\xa4\xb5\x22\x99\xe4\xef\xee\xe0\x7d\xd7\x6d\x8c\x2c\x39\x16\xfe\x6d\x8b\xca\xa3\x6d\xaa\x76\xe6\xa0\x0f\x1c\x6b\xaa\xf9\x92\x95\x46\x18\xe7\xce\x43\xe0\x33\xc1\x9f\x3c\xbe\xc9\xf0\x0b\x06\xf5\x32\x0f\x1e\x82\x15\x40\x8f\x4a\x31\xf3\x42\xbf\x36\xce\x7d\xaf\xab\xcb\x54\x36\xdd\x4a\x0a\x4b\xec\x9d\xe0\x65\x29\x3d\x57\xc7\xb1\x6e\x95\x23\x9c\x24\x04\x59\xa9\x37\xad\x60\x15\x47\xa1\xa1\x25\xfd\xca\x95\x28\xea\xed\x68\xe5\x10\x6a\xd5\xea\x39\xc3\x84\x03\x35\xce\x7d\x24\x93\x64\xaa\x53\x9b\x24\x67\xb6\xa1\xd5\x85\x6e\xc8\xb9\xee\xdf\x9d\x1c\x89\xb0\x7f\xeb\xdc\x3d\xe8\xac\x92\x18\xc3\x5b\x78\x0f\x6d\x62\x3a\x3d\x59\x36\xcd\x0f\xbc\x90\xb1\xf9\x86\xf0\x18\x42\x09\x24\xa6\xbb\xda\x5c\xd8\xe2\xb8\xfb\x6b\xda\xbe\x85\x3f\xaa\x7f\xdd\xd7\xff\xb7\x84\x31\xc3\x4a\x21\xd8\xaf\x97\x15\x54\x1c\x6c\x2a\x31\x97\xd1\xdd\x5f\x2b\xf3\x19\xbb\x8c\x38\x6b\x42\x1e\xbc\x3e\x9c\x24\xad\x98\xfa\x9b\x60\x55\x95\x37\xfb\x0d\x4c\x9d\x96\xf6\xa6\x4f\x77\xff\x74\xfc\x8c\xbc\x63\xec\x05\xff\x04\xb0\xbb\xbb\x7b\x90\xc9\x24\xf0\x1f\xce\xdb\x85\x67\x85\xce\x59\x65\xe4\x7f\xc8\xdd\xc3\x14\xe6\x81\xcd\xf9\xc3\xe3\x14\x90\x63\x6d\x40\x79\x61\xdf\xe4\xed\x74\x67\xe9\x2a\xe9\x5c\x33\xa8\x4d\x82\x2e\x11\x2a\x19\x6e\x02\x59\xa3\x83\x1d\xae\xd4\x64\x22\xbc\xc2\xdd\x31\xaf\x37\x81\x61\xe5\x4b\x54\x7c\x04\xcf\x83\x0f\xd6\x47\xe3\x1a\xc5\x81\x23\x5d\x85\x72\xf0\x32\xd8\xcd\x62\xb0\xc5\x8a\x7d\x5f\xd4\x18\x30\x0e\x33\x0e\x54\xde\x7b\x2b\xbf\x82\xd5\xf7\x98\x1e\x71\x9c\x02\x1d\x9e\x14\xbc\x3f\x12\x85\xcf\xb6\x1c\xb7\x0a\x4a\xb3\x56\x99\x43\xff\xea\x0b\xed\xea\x0b\xbd\x5d\x2e\x4b\x12\x12\xd9\x94\x28\xf6\x65\x2b\x96\x8f\x87\x32\x26\x38\xee\xd4\x3e\xd6\x50\xb6\x47\xa0\xa5\x0e\xab\x8e\xed\x1d\xc9\x5e\x92\x96\xe7\x98\xb0\xf3\x6e\x7f\x9f\x2d\x5c\x15\x42\x27\xb1\x4b\xa4\xb4\x57\x50\x3e\x3b\xb6\x31\x18\x8c\xc5\x59\x30\xb1\xcc\xe5\xee\x89\x87\x39\x95\xd5\xe8\xf6\xe9\x73\xdc\x3e\x9c\xe0\xa3\xac\xf6\x7e\x1d\x2c\xb6\x2d\x72\x93\x78\x09\x53\x50\x38\x3e\xf4\x34\xa9\x7f\xf1\x05\xa0\x1b\xe9\x5c\xd5\xde\x26\xee\x29\xc9\xc2\x3d\x35\xee\xdf\x00\x00\x00\xff\xff\x94\x3d\xb0\x96\xcb\x09\x00\x00"
 
 func runtimeHelpHelpMdBytes() ([]byte, error) {
@@ -972,7 +951,7 @@ func runtimeHelpHelpMd() (*asset, error) {
        return a, nil
 }
 
-var _runtimeHelpKeybindingsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x5a\x5f\x77\xdb\x38\xae\x7f\xbe\xf8\x14\xbc\xee\xc3\xb6\x67\x1d\x37\xce\xbf\xfe\xb9\x7b\x7a\x4e\x9a\x46\x9b\x4e\x27\x6d\xa6\x49\xa6\xdb\xbd\xf3\x20\x5a\xa2\x63\x6e\x28\x52\x43\x52\x71\xbc\x7b\xf6\x7e\xf6\x7b\x00\x52\x12\x69\xa7\x3b\x79\x60\x28\x12\x04\x01\x10\x00\x7f\x90\xfc\x8c\x7d\x12\x9b\x85\xd4\xb5\xd4\x77\x0e\xe0\x52\x56\xd6\xb0\x15\x77\x8c\xb3\x56\x09\xbf\x32\x96\x33\xb3\x64\x2b\xe3\xef\xc5\xc6\x31\xbf\xe2\x9e\x35\xfc\x5e\x30\xe9\x99\xe0\x6e\xc3\xb8\xae\x59\x6b\xd6\xc2\x2e\x3b\xc5\xbc\x61\x9d\x13\x34\xc6\x95\x82\x7e\x15\xb7\x82\x2d\x3b\xa5\x36\xac\xea\x9c\x37\x8d\xfc\x27\x5f\x28\x81\xd4\x1b\xd3\x59\xa6\xe4\xbd\xd4\x77\x33\x80\x33\x9a\x65\xf7\xa3\x44\xb4\xd4\x79\x63\x45\xcd\xa4\xf6\xc2\x6a\x8e\x6c\xa4\x66\x0d\x49\x2a\x97\xac\x5a\x71\x7d\x27\x6a\xb6\x96\x7e\xc5\xfc\x4a\xb0\xf2\x1d\xc3\xe5\x25\x54\xa6\x69\x50\x14\x63\x71\x1f\x56\x71\xcd\xb8\x72\x86\x2d\x04\xe3\x75\x4d\x1c\x69\xc1\x52\x2a\xc1\xca\xff\x7b\x39\xab\x8c\x5e\xca\xbb\x97\xc4\xfa\x65\x2f\xc2\xec\x1f\xce\xe8\x92\x71\x07\xb5\x74\x55\xe7\x9c\xa8\xd9\x42\x28\xb3\x9e\x31\x56\x18\xcb\x38\x53\xd2\x79\x34\x12\xf2\xaa\xc5\x92\x77\xca\x67\x3a\xc4\x6d\x90\x0f\x5b\x1a\xdb\x70\x8f\x56\xaa\x61\xb1\x09\x5a\x4c\xd1\xd4\xdc\x09\xe6\x84\x20\x4a\x81\x42\x23\x3f\xe9\x48\xb8\x59\xdc\xa8\x31\x56\xe0\x52\xbb\xb7\xb4\x52\xe8\x5a\x6d\xc2\xde\xa8\x3a\x88\xc7\x56\x71\xcd\xbd\x34\xda\xe1\xea\x35\x1e\x55\x2a\x52\x7a\x1a\x68\x96\x9e\x60\xc3\xea\x4c\x04\x28\xdf\xad\x84\x6a\xfb\x75\xb8\xa6\x04\xf8\xb8\xfc\x43\x13\xd5\x46\x38\xa6\x8d\x67\xe2\x51\x3a\x3f\x1d\x8c\xee\x64\xd3\xe2\xd9\x5b\xc1\x3d\x3a\xce\x2c\xba\xd9\x5a\x2a\xc5\xee\xb5\x59\x47\x51\x0c\xab\x4d\x38\x46\xa4\x81\xef\x71\x39\x7a\x14\xea\xc1\x83\x59\x1d\xfb\x33\xe3\xd6\x9a\xb5\xc3\x15\x8d\x79\x10\x6c\x6d\x6c\xcd\x16\x1b\xfa\x3f\x63\x67\xde\x2a\xa6\xc4\xd2\x93\x96\x56\xde\xad\x3c\x91\x01\x32\xa9\x3a\xeb\x8c\xc5\x95\xf8\xe4\x3c\xb7\x81\x6c\x30\xb9\x60\x4a\x6a\x31\xa5\xc1\x0a\x39\x75\x2d\xf5\x6b\xb3\xd6\x61\x37\xbf\x12\xd0\xb3\xf9\x11\x8f\x45\xb7\x5c\x0a\x9b\x28\xb1\x32\xaa\x66\x6e\x25\x97\xe1\xb4\x30\x3c\x22\xad\x13\xc4\xb6\x11\xda\x33\x5e\x85\xe3\xf3\x86\x39\xa1\x44\xe5\xd9\x7a\x85\xce\xd9\x98\x87\x10\x21\xf0\xec\x19\xfb\x2a\xa2\xdd\xc9\x1a\x00\x37\xb8\x5f\xef\x6b\x0d\xdf\xa0\x7f\x5b\xb1\x30\x9d\xae\x59\xe7\x90\x8e\xa2\xe2\x0f\x0e\x2f\xf8\xd9\x39\xaf\x56\x70\x2f\x36\x4c\x3a\x16\x38\x78\xc3\x30\x6e\x48\xb0\x19\x00\x3a\xa2\x78\xe4\x4d\xab\xc4\x14\xe7\x90\x0b\x2b\xd1\xe4\x7b\x9b\x92\xe2\x5f\xd7\x86\xac\x11\x06\xff\x49\x83\x56\xa0\x8b\x91\x3f\x98\x4e\xd5\xac\xed\xc8\xf3\x60\x69\x94\x32\x6b\x14\x31\xc6\x48\xf9\x94\x54\x00\x65\x59\xe2\x33\xfc\x0b\xfe\x6b\x82\x6c\xbf\x4f\xde\xb2\xc9\xad\xae\xcd\x64\x1a\x47\xfe\x8e\x23\x5f\x45\x6d\x26\xf0\x6f\x24\x07\xf8\xa8\x31\xca\x25\xca\x8d\x22\x08\xec\xea\xbb\x90\x71\xfe\xc0\x18\xa3\xeb\xda\x4e\x43\xf9\x8e\x94\xfc\xcb\xbd\xd8\x54\xa6\x59\x98\x77\xec\x2f\xc1\x1c\xef\xca\xad\x04\x80\x74\x94\xd9\xe2\x39\x4e\x29\xa2\x43\xb2\x18\x5d\x81\x72\x50\xb5\xe2\x52\xb3\x98\xa1\x1c\x5b\xaf\x84\xc6\x43\x0b\x62\x84\x78\x1f\xcc\x2c\x97\x24\xcf\x9a\x6b\xcf\x4e\x95\xdf\x43\xff\x00\xc7\x1f\x42\x18\xff\xde\x49\x3f\xc8\x4b\x92\x4a\x8f\x29\x55\x30\x67\xde\xa6\xa6\x63\x8c\xb1\x09\xad\x47\x5b\x5d\xf3\x07\x31\xfd\xa5\x93\x7e\x30\xd8\xb3\x67\xec\x7d\x74\xac\x5e\xae\x2d\xa1\x89\x3b\x47\xb7\x23\x8b\x3e\x8a\xaa\xf3\x82\xf1\x9e\x9c\x8d\x1a\xb1\xc6\xd4\x82\x3d\x47\xf5\xa1\xa4\x6c\xd2\xb3\x2c\x5f\xcc\xd8\x75\x48\x08\xad\x15\x2d\xc6\x8c\x1f\x1d\x38\x04\x47\x19\x89\xdf\x96\x99\x25\x9e\xd6\xa6\x45\x6d\xfa\x05\xed\xba\x1e\xf4\xf9\x4c\x89\x45\x68\x32\x4e\x6b\x85\x73\xac\xa4\x05\x65\x70\xb5\x76\x5d\x97\x83\xbc\x94\x8b\x16\xa2\x57\x0a\xb3\xa3\xac\x56\x61\xd8\xad\xcc\x1a\xc8\x6f\xd6\xc6\xe2\x55\xc5\x6a\x69\x45\xe5\x8d\xdd\xf4\x7e\x2b\xf5\xd2\x2c\xb8\xdd\x3e\xe5\x60\x30\xcd\x26\xe8\x7d\xe8\x19\x93\x64\xc3\x44\xd1\x3d\x9c\x47\x6d\x6f\x30\xe5\x37\x82\xeb\x78\xd5\x42\xb8\xe6\xd6\x46\xff\xc9\x33\xd9\x34\xa2\x96\xdc\x0b\xb5\x19\x8c\x4f\x39\xad\x67\x99\x2b\x9b\x98\x75\xca\x16\x9d\x07\xa9\x9d\x17\xbc\x66\xff\xe8\x9c\x67\xad\xe2\x95\x88\x09\xcc\x26\x11\x18\x35\xd9\x3e\xcb\x2d\x97\x84\x31\x96\x83\xd7\x86\x70\xff\x2b\x45\x7b\xf9\x8e\xe1\x91\x97\xbb\xe7\x45\x34\xc9\x79\x05\xbd\xc9\x3f\xfe\xe3\xb1\x05\xde\x53\x46\xae\x54\x86\x53\xe1\x6d\x2b\x82\x9c\xa9\x0d\x50\x74\xfc\x4f\xc7\x15\xb3\x34\x92\xc3\x42\x04\x95\x6b\xc6\x97\x5e\x58\x0c\x92\xe7\xda\x44\x0b\xba\x16\x8d\x91\xde\xd3\x64\xfd\xca\x68\x6f\x8d\x0a\xa6\x8c\xcc\x88\x09\x26\xeb\x17\xb3\x2c\x64\x2c\x5f\x33\xe1\x2a\xde\xe2\x1d\xfa\x7b\x27\x74\x25\x1c\xc0\x17\xad\x36\xcc\xa2\xd1\xe9\x32\x77\x82\x12\x43\x1f\xd1\x78\x13\x13\xaa\x11\xce\x07\x38\x92\x66\xf6\x20\x03\xb7\x02\xcf\xde\x04\xd9\xa0\x4f\x35\xae\x6b\x5b\x63\x71\x15\x91\x2e\x8d\xed\xd7\xce\x70\x57\x31\xe0\x11\xcb\xd7\x0b\x5e\xdd\x13\x24\x08\xb7\x01\x67\x5e\xd8\x46\x6a\xae\xf6\x16\x1c\xd1\x0c\x1e\x82\xb1\x98\xf2\x7d\x8f\x19\xe2\x50\xd3\x39\x0f\x77\xc2\xf7\xd7\x95\xf4\x8e\x1c\x04\x31\x0c\xea\xc1\x17\xa6\xa3\x4b\x99\x89\x07\xa1\x3d\x32\xb0\xa6\xbb\x0b\x38\xac\xdf\x05\xbd\x7a\x7c\x02\x27\x30\xe1\x85\x8b\x2f\xae\xea\x71\x98\xb1\x0d\xee\xb2\x6d\x46\x66\x96\x5e\x68\xf6\x7c\xd1\x79\x82\x17\x5c\xad\xf9\xc6\xbd\x00\xba\x79\xc7\xa4\xb1\xff\x38\x5f\x94\x33\xb6\x75\x47\xc9\x65\x84\x8a\x78\x0a\x8e\x95\xbf\x3d\xce\x17\xff\x3b\xff\x9f\xe3\x0f\xe5\x14\x8d\xda\x18\xe7\x07\xd9\x5c\x38\x25\x72\x2f\x0c\x42\xba\xa3\x10\x6f\x05\x3f\x14\x35\x61\x8b\x9f\xc5\xd2\xc7\x9b\xb0\xe1\x7a\x43\xea\x57\x2b\x63\x49\x2b\xd4\x7e\x9a\xa9\x1f\x83\x17\xd5\x66\x48\x1e\xb5\xab\x30\x41\x46\xe7\xa4\x49\xe0\x3a\x9b\xe3\x0a\x25\xa6\x0c\xd3\xb9\x3c\xfe\xe8\xb8\x29\x28\xde\xe3\xd1\xa2\xf3\x96\x53\xd6\x6c\xb6\x8d\x5c\xfe\xd6\xed\xef\xbf\x5a\x96\x83\xa7\x4b\x47\x20\x8d\xe4\x21\xd8\x92\x58\xee\xc5\x34\xe6\x3c\xe9\x43\xf2\x0a\x3c\x96\xc6\x42\x39\x6e\x43\x76\x41\x9b\x07\xa3\x56\x1c\x79\x8d\x09\x60\x24\x9c\x01\x5c\x98\xb5\x78\x10\x76\xca\x9c\x69\x44\x62\x64\x04\x08\x78\xef\x53\x0c\xf4\x18\x22\x78\x7c\xd8\x95\xb9\x56\x54\x72\x29\xab\x68\x10\x18\x5d\x01\x97\xd4\x62\x29\xb5\x20\xb7\xd2\x6c\x69\x4d\x13\x85\xe9\x2f\xc1\x90\x9d\xd5\x26\x30\xf6\x2b\x83\x9e\xb6\xcd\x08\x71\x4d\xb8\xa5\xb7\x52\x5b\x06\x6a\x12\xc5\x7b\xee\x98\x45\x6d\x57\xd1\x9d\x6b\x61\x38\xe5\x5e\x74\x72\x30\x04\x8e\x18\x75\x25\xe5\x22\x8f\x72\xf6\x37\xb3\xd4\xdb\x20\x67\x37\x4d\xe2\xb1\x8d\x4c\x30\x5f\x7e\x10\x4a\x78\xf1\xcd\xd8\x1a\xbd\x6f\xc8\x95\x17\x02\xb1\x3c\x96\x48\x68\xe1\x5e\x32\x82\x90\xe8\x22\x28\x50\x9e\x9b\x28\xd6\x6a\x89\xe0\x14\xf1\xe6\x70\x26\x98\xca\x9e\x31\x79\x23\x6c\x73\x40\xd0\x29\x74\x47\x20\x54\x9b\xe0\x3e\x52\x33\x56\x5e\x59\x41\x0c\x2a\xe1\xf6\xde\x5d\x59\x83\x28\xcd\xed\xbd\xfb\x84\x95\x42\xd0\xb6\x52\xb2\xba\x0f\xd7\xec\x9f\xcb\x29\x48\x8d\x88\x8f\x72\xf2\x58\x18\x05\x8c\xbd\x8c\x30\xba\x3c\x25\xc1\xcb\x1e\xf8\x96\xd7\x68\xcd\xf3\x10\x10\xd7\xf1\xd8\x02\x1e\x20\x20\xcf\x17\x88\xc5\xfb\x80\x88\xb7\x33\xde\x47\x7e\xd3\x0a\x56\x8e\x27\x20\x75\x04\xfb\x0b\xf3\xc8\x9e\xd3\x56\xbf\x91\xbf\x33\xe9\x80\x77\xde\x60\x2e\xab\xa8\xac\x74\x68\x93\xc5\x26\x2a\x3f\x0b\x46\xf9\x59\xea\xee\x31\xa6\x4e\x65\x78\x1d\x40\xf7\xf7\x5d\xbb\xa8\x84\x90\xea\x88\x48\xcc\x5a\x6b\xee\x2c\x6f\xb0\xc0\x35\x0d\xce\x3a\x63\xf4\x7f\x07\x30\x7f\xab\x73\x30\xff\xd1\x63\x1e\xa6\xf8\x6b\x8d\x73\x32\xd6\xc9\xb5\x74\x01\x58\xea\xcd\x13\x95\xe6\x08\xff\x17\x1b\x2a\x97\x22\x09\x94\x81\xfd\x27\xb1\x29\xa3\xb7\xf7\xb9\x16\xb3\xda\x9f\xdc\x8f\xf0\x76\x7f\xb1\xa5\x60\x96\x4e\x6b\x40\xb8\x63\xe9\xd1\xdf\x48\x4f\x55\xbe\x78\x81\x72\xa9\x5d\x48\xb3\x51\xaa\x41\xaf\x94\x31\xf1\x0b\xf9\x67\x33\xd6\x7d\x84\x5b\x62\xce\xef\xeb\xa5\x66\xc6\xc8\xed\xd1\x4c\xf4\x56\x61\x84\xdf\xc6\xaf\x30\x31\xa7\x63\xdb\x9b\x85\x60\x83\x33\xba\xcc\x6f\xdb\xd8\xf9\x60\xd6\x3a\x76\xaf\xf8\x9d\x18\xc6\xf1\x21\x99\xc3\xd8\x8b\xdd\xaf\x58\x56\xc6\xfe\x35\xa6\xd2\xd8\x3f\xd7\x35\x5c\x93\x07\xdf\x98\x30\xde\x3f\x8d\x33\xb7\x6d\xec\x10\xeb\xd0\x25\xd6\xa1\x1b\x58\x63\xac\x8f\xbd\x64\x7a\x9c\x18\x9f\x69\xfa\xd2\x3c\x88\x9f\xa5\x16\xee\xb6\x1d\xfb\xb4\xc5\x98\x3d\xc2\xc2\x3c\x9b\xf4\x12\x48\x2d\x72\xd1\xbf\x2c\xb3\xb1\x73\x5d\xc7\x91\x8f\xda\x09\xeb\x3f\x8b\xb5\x1a\x9f\xae\x31\x4b\xc2\x90\x2f\xe3\x1e\x70\x26\x10\xdf\x44\x9a\x1b\xbe\x00\xac\x3b\xa8\x39\x55\x2a\xfc\x77\x50\x48\x5d\x53\xf3\x59\x3c\x7a\xea\x5c\x59\xf1\x20\x4d\xe7\x00\x8b\x3c\xc0\xba\x0e\xce\x4c\xbb\x81\xb3\x0e\x0d\x1d\x64\xfd\xd0\xb5\x4a\x56\xdc\x8b\xf0\x44\xfb\x45\xf1\x6a\xa1\x7d\x10\x5b\x1a\x0d\x5f\x3a\x9f\x0f\x5c\x71\xe7\x7b\xbd\x50\x8c\x2f\xad\xd0\x85\x54\x02\xc2\x89\xe1\x49\x45\x37\x18\x1c\x20\x10\xc7\xd1\xf1\x81\xe6\x2e\xb8\x5a\xc6\x99\xbe\x1b\xd6\x24\x46\x1c\x8d\x77\xc5\x2d\xbf\xb3\xbc\x5d\x0d\x3a\x0e\x23\xa4\xfe\x8d\xb9\xbb\x53\xe2\x42\xa8\x36\x76\xbf\x76\x4a\x58\xf8\xa9\x6b\x5a\x5a\x7f\xa6\x04\x47\x97\xf3\x9d\x83\xeb\x95\x50\xea\xd2\xd4\x02\x33\x0b\xe2\x5f\xea\x63\x55\x47\x0d\xea\x76\x5a\xd7\x68\xf6\x7e\x33\xec\xe3\x36\xfd\xff\xeb\x56\x49\x0f\xb7\xda\xd1\xff\x5f\xc3\xe3\x45\xf8\xd7\xaf\x09\x4f\x41\x98\x4b\x5e\x59\x03\x57\x8a\x6f\x42\xef\xba\x73\x54\xc3\x3d\xbf\xd5\xf2\x91\x19\xad\x36\x2f\xe0\xba\xb2\x46\x29\xb4\x13\x75\x82\x2d\x5a\xbe\xd6\x97\x9d\xf2\x32\xc4\xc9\xce\x40\xb0\x29\x7c\x15\x8d\x79\x10\x29\x61\x18\x39\x55\x2a\x19\x74\x70\x7d\x2f\xdb\x94\x6a\x48\x74\x64\xa8\x1b\x73\xc9\x7d\xb5\x92\xfa\xee\xbd\x45\x67\xa4\xcb\x72\xb7\x32\xa3\x5b\xb3\x31\xf4\xca\x32\xe6\xa2\xe7\xf1\x8d\x0c\x96\x48\x0b\x31\xbe\x03\x09\x54\x8b\xce\x7b\xa3\xdd\x8b\x90\x44\x2e\x71\xec\x0a\x91\x61\xe8\xa6\xf2\x8c\xd7\xb3\x74\xf1\xad\x52\x48\x48\x98\xc8\x86\xa4\x44\xd7\x43\x5a\xbb\xc7\xf4\x74\xdb\x02\x59\x2d\x84\x2b\x05\xe9\x6d\x1b\xff\xc5\x10\x36\x6b\x4d\x03\xd8\x89\xc9\x28\x84\xda\xb6\xe7\x5e\x98\x86\xdc\x2f\xc6\x60\x1f\x98\xe4\x60\xe7\x8f\xd2\x07\x87\x82\x33\xae\x2b\xa1\xe0\xca\x4a\xed\xe1\x8a\x77\x2e\x04\xb3\xe7\x0b\x28\xe6\x50\x1c\x40\x71\x08\xc5\x11\x14\xc7\x50\x9c\x40\xf1\x0a\x8a\xd7\x50\xbc\x81\x62\xbe\x0f\xc5\x7c\x0e\xc5\xfc\x00\x8a\xf9\x21\x14\xf3\x23\x28\xe6\xc7\x50\xcc\x4f\xa0\x98\xbf\x82\x62\xfe\x1a\x8a\xf9\x1b\x28\x0e\xf6\xa1\x38\x40\x3e\x07\x50\x1c\x1c\x42\x71\x70\x04\xc5\xc1\x31\x14\x07\x27\x50\x1c\xbc\x82\xe2\xe0\x35\x14\x07\x6f\xa0\x38\xdc\x87\xe2\x70\x0e\xc5\x21\x6e\x78\x08\xc5\xe1\x11\x14\x87\xc7\x50\x1c\x9e\x40\x71\xf8\x0a\x8a\xc3\xd7\x50\x1c\xbe\x81\xe2\x68\x1f\x8a\xa3\x39\x14\x47\x07\x50\x1c\xa1\x64\x47\x50\x1c\x1d\x43\x71\x74\x02\xc5\xd1\x2b\x28\x8e\x5e\x43\x71\xf4\x06\x8a\xe3\x7d\x28\x8e\xe7\x50\x1c\x1f\x40\x71\x7c\x08\xc5\x31\xaa\x70\x0c\xc5\xf1\x09\x14\xc7\xaf\xa0\x38\x7e\x0d\xc5\xf1\x1b\x28\x4e\xf6\xa1\x38\x99\x43\x71\x72\x00\xc5\xc9\x21\x14\x27\x47\x80\xf8\x2f\x64\x35\xec\x9d\x52\xfb\x9e\xda\x33\x6a\x3f\x50\x7b\x4e\x6d\x41\xed\x5f\xa9\xbd\xa0\xf6\x23\xb5\x3f\x51\xfb\x89\xda\x9f\xa9\xbd\xa4\xf6\x33\xb5\x5f\xa8\xbd\xa2\xf6\x17\x6a\xbf\x86\x5d\xa9\xbd\xa1\xf6\x96\xda\x5f\xa9\xfd\x46\xed\xdf\xa8\xfd\x4e\xed\xdf\xa1\xaf\x48\xae\x7f\x87\x01\xb0\x2a\xee\x56\x81\x1d\x3a\x46\x9c\x39\xe3\x96\xfb\xc0\x52\xd7\xc2\xba\xca\xd8\x34\x5f\x7f\x51\xf5\xf8\x80\xd9\xe1\xdc\x55\x10\xe0\x17\x9c\x93\x63\xfd\x71\x10\xc5\xf0\xa0\x20\xda\xf4\xaf\x22\x87\x10\xd2\x58\x36\xaa\x21\xd2\x8c\x85\x2c\xf4\xd2\xa0\x8a\xf7\x19\xc6\x94\xac\x6b\x25\x42\x3f\xb8\x39\x75\xbf\xad\x84\x50\x74\xcf\xf5\x0f\xe4\xeb\xe3\xe3\xc8\x81\x1e\xc3\xd2\xf0\x9a\x8b\x7d\xd8\x41\x2a\x2c\xbc\x0c\xec\x2c\x8f\xaf\x39\xb7\x00\xf9\x6d\x3b\x79\xcb\xd2\xbf\x49\x0f\x20\x26\xd3\x40\x81\xdb\x67\x34\x93\x11\x59\xf4\x34\x24\x44\x4a\x34\x49\xb0\x44\x4f\x44\xf8\xfe\x09\x46\x34\x1e\x69\xae\x57\x72\xe9\x53\x99\x26\x3d\xb0\xc8\x28\x52\x99\x26\x23\xe2\xc8\x68\xd2\xed\x26\x23\x14\xc9\x68\x52\xb9\x27\x09\x46\xe9\x89\x4e\x95\xcf\xa5\x9e\x0c\x85\xca\x48\x91\x2b\x3f\x19\xc0\x48\x42\x92\x5b\x79\x92\xe0\x99\x84\x28\x37\xf4\x24\x03\x3a\x09\x59\x2e\xf8\x64\x0b\x3a\x6d\x13\x0e\xe2\x4f\x72\x4c\xd5\xd3\xf5\x41\x36\xca\x9f\xdc\xed\x29\x51\xa6\xe5\x64\xb8\xf4\x53\x92\x6c\xc3\xc9\x13\x80\x2b\xb3\x3d\x66\xef\xad\xf3\x79\x92\x78\xe0\xdc\x4b\x30\xd9\x81\x6d\x19\xdf\x73\x5d\x27\xca\xfc\x88\x94\xb2\x45\x7a\x2a\x93\x04\xf1\xa6\x44\xd9\xa9\x4c\x06\x28\xbc\x23\x5d\xcf\x2c\x57\x65\x87\xac\x67\x97\x4a\x96\x9c\xd9\xde\xbf\x32\x47\xd9\x41\x54\x29\xe9\xbf\x9f\x26\x45\xec\xd3\x93\x51\x7a\xcb\xc8\x32\x80\x9b\x4a\x77\x91\x91\x0d\x09\xb3\x27\x19\x07\xde\xfe\x88\x04\x65\xca\x38\x6d\xd7\xf6\x09\x5d\xc6\xee\x07\x74\x37\x7c\x91\xe7\xa6\xc9\x16\xfc\x9d\x0e\xd8\x3b\x95\xd2\xa7\xcb\x26\xdb\x08\x79\x1a\x07\xb6\x7d\xe1\x4b\xa6\x7e\x0f\x9b\xb3\xe3\xcb\x28\x10\xdf\xa7\xb3\x45\x36\x8b\x40\x3f\x9d\xfd\xbc\x33\x9b\x9e\x12\x5d\x95\x3b\x14\xdb\x47\xde\x7f\x0b\x1a\xa9\xe2\x67\xa2\x61\xf6\x7b\x36\x4b\x9f\x8c\x92\xd9\xb3\x3c\x3f\x9b\x76\x93\xce\xfe\x6d\x2b\x7b\x67\xc2\x7d\xda\x9e\xdc\xb6\xde\x87\x8c\x20\x2b\x5f\x52\xb2\x5f\xb7\x3c\xd6\xf9\x6c\xfa\x34\xb7\x70\x5f\xc4\xa4\x24\x37\x19\x49\xa8\x00\x12\xbf\x9a\xe6\xf7\x4b\x52\x1a\x24\x44\xb3\x9c\x28\xd6\x0c\x3d\x41\x9a\x96\xa2\x20\xbb\x39\x29\xcd\x31\x8c\xfd\x30\x21\x66\xbc\x7e\x94\x60\x32\x5e\xbb\x09\x26\x80\xde\xdd\x44\x15\xc7\x13\xaa\xa7\x32\xd5\x30\x3e\xcd\x3f\x53\x8c\xdc\xc6\xa2\x2c\xcb\xf6\x4f\xd0\x50\xb5\x96\xdd\x1b\x19\x51\x5f\xc6\x0d\xb8\x81\x82\x3a\x15\x3c\x8e\x24\x1c\xde\xe7\x27\xde\xd7\x7c\x29\xc9\x2f\x19\x09\x7d\xd6\x4b\x8d\xb7\xe5\xd4\x43\xa9\x98\x12\x7d\xcb\x88\x86\xda\x30\xbb\x0a\x9e\xd0\x97\xca\xc0\x94\xe8\xa7\xdc\x7d\xfb\x4a\x71\x32\x05\xa2\x79\xf9\x92\x9d\x37\xbc\x72\x7b\xce\x6f\x42\x05\x34\xfc\xfa\x84\xf5\x79\x6f\x89\xf7\xd7\x53\x97\xf5\xde\xa2\x9f\xd9\x4e\x95\x9c\xae\xbc\x5d\x1f\xc4\x39\x34\x6f\xe6\x7a\xbd\x20\x1f\xb5\x17\x77\x01\xf3\x85\x37\xe1\xf4\x4b\x90\x86\x6b\x7e\x27\x6c\x94\xa7\x98\x53\xf2\xdd\x75\x80\xe2\x20\xdc\x50\x49\x8a\x2b\x0e\x69\x28\xcd\x6b\xc5\x11\x0d\xa5\x27\x52\xbc\xda\xa5\x9a\xef\xa3\x8c\x29\xd5\xb9\xab\x48\x6c\x42\xe0\x89\xcc\x97\x01\x69\x67\x36\x4b\x21\x71\x84\x31\xb1\x04\xef\xb9\xe5\x38\x99\x6c\x35\xd4\xe6\x19\x4d\x86\x07\xc7\x02\x37\xa3\x09\x98\x3c\x5e\xe4\x94\x9f\xae\xac\x6c\xb8\xcd\x52\xe5\x5e\xca\x6e\xb2\x5d\x1f\xa7\x0a\xe1\x68\xab\xfa\x0f\x6c\x8e\xed\xfa\x43\x10\x78\xeb\x85\x41\x7a\xc2\xcd\x53\x04\x21\x35\xa6\x64\x6d\xf8\x91\xc0\xd6\x1b\x86\x94\xa2\x1a\x29\xb6\xde\x38\xa4\x54\x8f\xb4\x5d\xfe\x06\x62\x32\x4d\xbe\xa3\x17\xf4\x49\x40\x1b\x2f\x1c\xc0\x67\xe3\xc5\x5b\xf6\x45\x87\x4a\xc9\xa8\x7a\xfc\x34\x24\x9a\x4e\x71\x8f\x4a\xd3\xef\x94\x34\xfb\x26\x75\x6d\xd6\x8e\x35\xbc\x5a\x21\xaa\x9d\x86\xcf\x10\x17\x25\x73\x2b\x7a\xbb\xbd\xa0\x0f\x52\xe1\xb5\xf9\xa2\x87\x07\x33\x80\xd3\xf8\x53\x07\xae\xd4\x66\x3a\xfe\x54\x86\xde\x2b\xf4\x35\x18\xbd\x1c\xc6\x6a\x87\x3e\x83\xdf\x8b\x4d\xfe\x79\x3d\x0c\xf3\x12\x2b\x33\xea\xde\xb6\xe5\x8c\x85\x9f\xea\xc4\xcf\x8d\x28\x27\x33\x6d\xd8\x88\x95\x7b\x25\x5b\x08\xbf\x16\x42\xb3\xc6\xd4\x72\x29\x85\x75\xe1\xa7\x07\xb8\x3e\x7c\xfc\x00\x52\xa0\x64\xce\x0c\xfc\xab\xa8\x09\xb3\x62\x6d\xa5\xf7\x42\x33\x1e\xbe\xcd\xf3\x92\x3d\xaf\xb8\xc3\x18\xf4\x1e\x99\xa1\x9a\xa8\x4c\xef\x13\x2f\x66\x40\x9f\xc8\xa5\x63\xeb\xd5\xf0\xf5\xfd\xa9\x57\xcf\xc3\x8f\x8f\x44\x90\x66\x80\xdd\x25\xeb\xbf\x83\x9b\x65\xd0\x33\x99\x0a\x95\x2b\xb7\x82\x89\xdf\x3b\xf9\xc0\x55\xf8\xd0\xfb\xff\x01\x00\x00\xff\xff\xa4\x09\x1c\xfe\x26\x27\x00\x00"
+var _runtimeHelpKeybindingsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x5a\x5f\x77\xdb\x38\xae\x7f\xbe\xf8\x14\xbc\xee\xc3\xb6\x67\x1d\x37\xce\xbf\xfe\xb9\x7b\x7a\x4e\x9a\x46\x9b\x4e\x27\x6d\xa6\x49\xa6\xdb\xbd\xf3\x20\x5a\xa2\x63\x6e\x28\x52\x43\x52\x71\xbc\x7b\xf6\x7e\xf6\x7b\x00\x52\x12\x69\xa7\x3b\x79\x60\x28\x12\x04\x01\x10\x00\x7f\x90\xfc\x8c\x7d\x12\x9b\x85\xd4\xb5\xd4\x77\x0e\xe0\x52\x56\xd6\xb0\x15\x77\x8c\xb3\x56\x09\xbf\x32\x96\x33\xb3\x64\x2b\xe3\xef\xc5\xc6\x31\xbf\xe2\x9e\x35\xfc\x5e\x30\xe9\x99\xe0\x6e\xc3\xb8\xae\x59\x6b\xd6\xc2\x2e\x3b\xc5\xbc\x61\x9d\x13\x34\xc6\x95\x82\x7e\x15\xb7\x82\x2d\x3b\xa5\x36\xac\xea\x9c\x37\x8d\xfc\x27\x5f\x28\x81\xd4\x1b\xd3\x59\xa6\xe4\xbd\xd4\x77\x33\x80\x33\x9a\x65\xf7\xa3\x44\xb4\xd4\x79\x63\x45\xcd\xa4\xf6\xc2\x6a\x8e\x6c\xa4\x66\x0d\x49\x2a\x97\xac\x5a\x71\x7d\x27\x6a\xb6\x96\x7e\xc5\xfc\x4a\xb0\xf2\x1d\xc3\xe5\x25\x54\xa6\x69\x50\x14\x63\x71\x1f\x56\x71\xcd\xb8\x72\x86\x2d\x04\xe3\x75\x4d\x1c\x69\xc1\x52\x2a\xc1\xca\xff\x7b\x39\xab\x8c\x5e\xca\xbb\x97\xc4\xfa\x65\x2f\xc2\xec\x1f\xce\xe8\x92\x71\x07\xb5\x74\x55\xe7\x9c\xa8\xd9\x42\x28\xb3\x9e\x31\x56\x18\xcb\x38\x53\xd2\x79\x34\x12\xf2\xaa\xc5\x92\x77\xca\x67\x3a\xc4\x6d\x90\x0f\x5b\x1a\xdb\x70\x8f\x56\xaa\x61\xb1\x09\x5a\x4c\xd1\xd4\xdc\x09\xe6\x84\x20\x4a\x81\x42\x23\x3f\xe9\x48\xb8\x59\xdc\xa8\x31\x56\xe0\x52\xbb\xb7\xb4\x52\xe8\x5a\x6d\xc2\xde\xa8\x3a\x88\xc7\x56\x71\xcd\xbd\x34\xda\xe1\xea\x35\x1e\x55\x2a\x52\x7a\x1a\x68\x96\x9e\x60\xc3\xea\x4c\x04\x28\xdf\xb1\x95\x50\x6d\xbf\x10\x17\x95\xec\x39\x4f\x15\xf0\xa2\x1e\xd4\x4e\x54\x76\x4c\xa2\xba\x95\xea\x6a\x51\x43\xdc\x3f\xd5\xa6\x36\x55\xd7\x08\xed\x5f\xcc\x00\x3e\x2e\xff\xd0\xe8\xb5\x11\x8e\x69\xe3\x99\x78\x94\xce\x4f\x87\x63\x74\xb2\x69\xd1\x9b\xac\xe0\x1e\x5d\x71\x16\x1d\x77\x2d\x95\x62\xf7\xda\xac\xa3\x72\x86\xd5\x26\x38\x06\xd2\xc0\xf7\xb8\x1c\x7d\x14\x25\xe3\xbd\xd4\x7f\x66\xdc\x5a\xb3\x76\xb8\xa2\x31\x0f\x82\xad\x8d\xad\xd9\x62\x43\xff\x67\xec\xcc\x5b\xc5\x94\x58\x7a\xb2\x9b\x95\x77\x2b\x4f\x64\x80\x4c\xaa\xce\x3a\x63\x71\x25\x3e\x39\xcf\x6d\x20\x1b\xd4\x16\x4c\x49\x2d\xa6\x34\x58\x21\xa7\xae\xa5\x7e\x6d\xd6\x3a\xec\xe6\x57\x02\x7a\x36\x3f\xe2\xb1\xe8\x96\x4b\x61\x13\x25\x56\x46\xd5\xcc\xad\xe4\x32\x9c\x3f\x06\x5c\xa4\x75\x82\xd8\xa2\x9d\x19\xaf\x82\x43\x78\xc3\x9c\x50\xa2\xf2\x6c\xbd\x42\x77\x6f\xcc\x43\x88\x39\x78\xf6\x8c\x7d\x15\xd1\xee\x64\x0d\x80\x1b\xdc\xaf\xf7\xde\x86\x6f\x30\x62\xac\x58\x98\x4e\xd7\xac\x73\x48\x47\x71\xf6\x07\x87\x17\x3c\xf7\x9c\x57\x2b\xb8\x17\x1b\xf4\x8c\xc0\xc1\x1b\x86\x91\x48\x82\xcd\x00\xd0\xb5\xc5\x23\x6f\x5a\x25\xa6\x38\x87\x5c\x58\x89\x26\xdf\xdb\x94\x94\x51\x74\x6d\xc8\x1a\x61\xf0\x9f\x34\x68\x05\x3a\x2d\xf9\x83\xe9\x54\xcd\xda\x8e\x9c\x0d\x96\x46\x29\xb3\x46\x11\x63\xd4\x95\x4f\x49\x05\x50\x96\x25\x3e\xc3\xbf\xe0\xbf\x26\xc8\xf6\xfb\xe4\x2d\x9b\xdc\xea\xda\x4c\xa6\x71\xe4\xef\x38\xf2\x55\xd4\x66\x02\xff\x46\x72\x80\x8f\x1a\xf3\x86\x44\xb9\x51\x04\x81\x5d\x7d\x17\x72\xd8\x1f\x18\x63\x74\x5d\xdb\x69\x28\xdf\x91\x92\x7f\xb9\x17\x9b\xca\x34\x0b\xf3\x8e\xfd\x25\x98\xe3\x5d\xb9\x95\x52\x90\x8e\x72\x65\x3c\xc7\x29\xe5\x88\x90\x7e\x46\x57\xa0\xac\x56\xad\xb8\xd4\x2c\xe6\x3c\xc7\xd6\x2b\xa1\xf1\xd0\x82\x18\x21\x83\x0c\x66\x96\x4b\x92\x67\xcd\xb5\x67\xa7\xca\xef\xa1\x7f\x80\xe3\x0f\x21\x31\xfc\xde\x49\x3f\xc8\x4b\x92\x4a\x8f\x49\x5a\x30\x67\xde\xa6\xa6\x63\x8c\xb1\x09\xad\x47\x5b\x5d\xf3\x07\x31\xfd\xa5\x93\x7e\x30\xd8\xb3\x67\xec\x7d\x74\xac\x5e\xae\x2d\xa1\x89\x3b\x47\xb7\x23\x8b\x3e\x8a\xaa\xf3\x82\xf1\x9e\x9c\x8d\x1a\xb1\xc6\xd4\x82\x3d\x47\xf5\xa1\xa4\xf4\xd4\xb3\x2c\x5f\xcc\xd8\x75\x48\x08\xad\x15\x2d\xc6\x8c\x1f\x1d\x38\x04\x47\x19\x89\xdf\x96\x99\x25\x9e\xd6\xa6\x45\x6d\xfa\x05\xed\xba\x1e\xf4\xf9\x4c\x89\x45\x68\x32\x4e\x6b\x85\x73\xac\xa4\x05\x65\x70\xb5\x76\x5d\x97\x83\xbc\x94\x8b\x16\xa2\x57\x0a\xf3\xad\xac\x56\x61\xd8\xad\xcc\x1a\xc8\x6f\xd6\xc6\xe2\xe5\xc7\x6a\x69\x45\xe5\x8d\xdd\xf4\x7e\x2b\xf5\xd2\x2c\xb8\xdd\x3e\xe5\x60\x30\xcd\x26\xe8\x7d\xe8\x19\x93\x64\xc3\x44\xd1\x3d\x9c\x47\x6d\x6f\x30\xed\x36\x82\xeb\x78\x79\x43\xb8\x38\xd7\x46\xff\xc9\x33\xd9\x34\xa2\x96\xdc\x0b\xb5\x19\x8c\x4f\x39\xad\x67\x99\x2b\x9b\x98\x75\xca\x16\x9d\x07\xa9\x9d\x17\xbc\x66\xff\xe8\x9c\x67\xad\xe2\x95\x88\x09\xcc\x26\x11\x18\x35\xd9\x3e\xcb\x2d\x97\x84\x31\x96\x83\xd7\x86\x70\xff\x2b\x45\x7b\xbc\x91\xca\xdd\xf3\x22\x9a\xe4\xbc\x82\xde\xe4\x1f\xff\xf1\xd8\x02\xef\x29\x23\x57\x2a\xc3\xa9\xf0\xb6\x15\x41\xce\xd4\x06\x28\x3a\xfe\xa7\xe3\x8a\x59\x1a\xc9\x61\x21\x82\xca\x35\xe3\x4b\x2f\x2c\x06\xc9\x73\x6d\xa2\x05\x5d\x8b\xc6\x48\x6f\x7e\xb2\x7e\x65\xb4\xb7\x46\x05\x53\x46\x66\xc4\xa4\xbf\x14\x93\x90\xb1\x7c\xcd\x84\xab\x78\x8b\xb7\xf2\xef\x9d\xd0\x95\x70\x00\x5f\xb4\xda\x30\x8b\x46\xa7\x0b\xd5\x09\x4a\x0c\x7d\x44\xe3\xdd\x4e\x38\x49\x38\x1f\x00\x4e\x9a\xd9\x83\x0c\xdc\x0a\x3c\x7b\x13\x64\x83\x3e\xd5\xb8\xae\x6d\x8d\xc5\x55\x44\xba\x34\xb6\x5f\x3b\xc3\x5d\xc5\x80\x70\x2c\x5f\x2f\x78\x75\x4f\x20\x23\xdc\x06\x9c\x79\x61\x1b\xa9\xb9\xda\x5b\x70\xc4\x47\x78\x08\xc6\x62\xca\xf7\x3d\x0a\x89\x43\x4d\xe7\x3c\xdc\x09\xdf\x5f\x57\xd2\x3b\x72\x10\x04\x15\xa8\x07\x5f\x98\x8e\x2e\x65\x26\x1e\x84\xf6\xc8\xc0\x9a\xee\x2e\x20\xbb\x7e\x17\xf4\xea\xf1\x09\x9c\xc0\x84\x17\x2e\xbe\xb8\xaa\x47\x76\xc6\x36\xb8\xcb\xb6\x19\x99\x59\x7a\xa1\xd9\xf3\x45\xe7\x09\x5e\x70\xb5\xe6\x1b\xf7\x02\xe8\xe6\x1d\x93\xc6\xfe\xe3\x7c\x51\xce\xd8\xd6\x1d\x25\x97\x11\x7c\xe2\x29\x38\x56\xfe\xf6\x38\x5f\xfc\xef\xfc\x7f\x8e\x3f\x94\x53\x34\x6a\x63\x9c\x1f\x64\x73\xe1\x94\xc8\xbd\x30\x08\xe9\x8e\x42\x04\x17\xfc\x50\xd4\x84\x2d\x7e\x16\x4b\x1f\x6f\xc2\x86\xeb\x0d\xa9\x5f\xad\x8c\x25\xad\x50\xfb\x69\xa6\x7e\x0c\x5e\x54\x9b\x21\x79\xd4\xae\xc2\x04\x19\x9d\x93\x26\x81\xeb\x6c\x8e\x2b\x94\x98\x32\x4c\xe7\xf2\xf8\xa3\xe3\xa6\xa0\x78\x8f\x47\x8b\xce\x5b\x4e\x59\xb3\xd9\x36\x72\xf9\x5b\xb7\xbf\xff\x6a\x59\x0e\x9e\x4e\x98\x4e\x38\x92\x87\x60\x4b\x62\xb9\x17\xd3\x98\xf3\xa4\x0f\xc9\x2b\xf0\x58\x1a\x0b\xe5\xb8\x0d\xd9\x05\x6d\x1e\x8c\x5a\x71\xe4\x35\x26\x80\x91\x70\x06\x70\x61\xd6\xe2\x41\xd8\x29\x73\xa6\x11\x89\x91\x11\x20\xe0\xbd\x4f\x31\xd0\x63\x88\xe0\xf1\x61\x57\xe6\x5a\x51\xc9\xa5\xac\xa2\x41\x60\x74\x05\x5c\x52\x8b\xa5\xd4\x82\xdc\x4a\xb3\xa5\x35\x4d\x14\xa6\xbf\x04\x43\x76\x56\x9b\xc0\xd8\xaf\x0c\x7a\xda\x36\x23\xc4\x35\xe1\x96\xde\x4a\x6d\x19\xa8\x49\x14\xef\xb9\x63\x16\xb5\x5d\x45\x77\xae\x85\xe1\x94\x7b\xd1\xc9\xc1\x10\x38\x62\xd4\x95\x94\x8b\x3c\xca\xd9\xdf\xcc\x52\x6f\x83\x9c\xdd\x34\x89\xc7\x36\x32\xc1\x7c\xf9\x41\x28\xe1\xc5\x37\x63\x6b\xf4\xbe\x21\x57\x5e\x08\xac\x0e\xb0\xe8\x42\x0b\xf7\x92\x11\x84\x44\x17\x41\x81\xf2\xdc\x44\xb1\x56\x4b\x04\xa7\x88\x37\x87\x33\xc1\x54\xf6\x8c\xc9\x1b\x61\x9b\x03\x82\x4e\xa1\x3b\x02\xa1\xda\x04\xf7\x91\x9a\xb1\xf2\xca\x0a\x62\x50\x09\xb7\xf7\xee\xca\x1a\x44\x69\x6e\xef\xdd\x27\x2a\x3d\x48\xdb\x4a\xc9\xea\x3e\x5c\xb3\x7f\x2e\xa7\x20\x35\x22\x3e\xca\xc9\x63\xa9\x15\x30\xf6\x32\xc2\xe8\xf2\x94\x04\x2f\x7b\xe0\x5b\x5e\xa3\x35\xcf\x43\x40\x5c\xc7\x63\x0b\x78\x80\x80\x3c\x5f\x20\x16\xef\x03\x22\xde\xce\x78\x1f\xf9\x4d\x2b\x58\x39\x9e\x80\xd4\x11\xec\x2f\xcc\x23\x7b\x4e\x5b\xfd\x46\xfe\xce\xa4\x03\xde\x79\x83\xb9\xac\xa2\x42\xd5\xa1\x4d\x16\x9b\xa8\xfc\x2c\x18\xe5\x67\xa9\xbb\xc7\x98\x3a\x95\xe1\x75\x00\xdd\xdf\x77\xed\xa2\x12\x42\xaa\x23\x22\x31\x6b\xad\xb9\xb3\xbc\xc1\x92\xd9\x34\x38\xeb\x8c\xd1\xff\x1d\xc0\xfc\xad\xce\xc1\xfc\x47\x8f\x79\x98\xe2\xaf\x35\xce\xc9\x58\x79\xd7\xd2\x05\x60\xa9\x37\x4f\xd4\xae\x23\xfc\x5f\x6c\xa8\x5c\x8a\x24\x50\x06\xf6\x9f\xc4\xa6\x8c\xde\xde\xe7\x5a\xcc\x6a\x7f\x72\x3f\xc2\xdb\xfd\xc5\x96\x82\x59\x3a\xad\x01\xe1\x8e\xa5\xc7\x13\x85\xe5\x20\x0e\x5e\xa0\x5c\x6a\x17\xd2\x6c\x94\x6a\xd0\x2b\x65\x4c\xfc\x42\xfe\xd9\x8c\x75\x1f\xe1\x96\x98\xf3\xfb\x7a\xa9\x99\x31\x72\x7b\x34\x13\xbd\xa7\x18\xe1\xb7\xf1\x2b\x4c\xcc\xe9\xd8\xf6\x66\x21\xd8\xe0\x8c\x2e\xf3\xdb\x36\x76\x3e\x98\xb5\x8e\xdd\x2b\x7e\x27\x86\x71\x7c\x48\xe6\x30\xf6\x62\xf7\x2b\x96\x95\xb1\x7f\x8d\xa9\x34\xf6\xcf\x75\x0d\xd7\xe4\xc1\x37\x26\x8c\xf7\x4f\xe3\xcc\x6d\x1b\x3b\xc4\x3a\x74\x89\x75\xe8\x06\xd6\x18\xeb\x63\x2f\x99\x1e\x27\xc6\x67\x9a\xbe\x34\x0f\xe2\x67\xa9\x85\xbb\x6d\xc7\x3e\x6d\x31\x66\x8f\xb0\x30\xcf\x26\xbd\x04\x52\x8b\x5c\xf4\x2f\xcb\x6c\xec\x5c\xd7\x71\xe4\xa3\x76\xc2\xfa\xcf\x62\xad\xc6\xa7\x6b\xcc\x92\x30\xe4\xcb\xb8\x07\x9c\x09\xc4\x37\x91\xe6\x86\x2f\x00\xeb\x0e\x6a\x4e\x95\x0a\xff\x1d\x14\x52\xd7\xd4\x7c\x16\x8f\x9e\x3a\x57\x56\x3c\x48\xd3\x39\xc0\x22\x0f\xb0\xae\x83\x33\xd3\x6e\xe0\xac\x43\x43\x07\x59\x3f\x74\xad\x92\x15\xf7\x22\x3c\xd1\x7e\x51\xbc\x5a\x68\x1f\xc4\x96\x46\xc3\x97\xce\xe7\x03\x57\xdc\xf9\x5e\x2f\x14\xe3\x4b\x2b\x74\x21\x95\x80\x70\x62\x78\x52\xd1\x0d\x06\x07\x08\xc4\x71\x74\x7c\xa0\xb9\x0b\xae\x96\x71\xa6\xef\x86\x35\x89\x11\x47\xe3\x5d\x71\xcb\xef\x2c\x6f\x57\x83\x8e\xc3\x08\xa9\x7f\x63\xee\xee\x94\xb8\x10\xaa\x8d\xdd\xaf\x9d\x12\x16\x7e\xea\x9a\x96\xd6\x9f\x29\xc1\xd1\xe5\x7c\xe7\xe0\x7a\x25\x94\xba\x34\xb5\xc0\xcc\x82\xf8\x97\xfa\x58\xd5\x51\x83\xba\x9d\xd6\x35\x9a\xbd\xdf\x0c\xfb\xb8\x4d\xff\xff\xba\x55\xd2\xc3\xad\x76\xf4\xff\xd7\xf0\x78\x11\xfe\xf5\x6b\xc2\x53\x10\xe6\x92\x57\xd6\xc0\x95\xe2\x9b\xd0\xbb\xee\x1c\xd5\x70\xcf\x6f\xb5\x7c\x64\x46\xab\xcd\x0b\xb8\xae\xac\x51\x0a\xed\x44\x9d\x60\x8b\x96\xaf\xf5\x65\xa7\xbc\x0c\x71\xb2\x33\x10\x6c\x0a\x5f\x45\x63\x1e\x44\x4a\x18\x46\x4e\x95\x4a\x06\x1d\x5c\xdf\xcb\x36\xa5\x1a\x12\x1d\x19\xea\xc6\x5c\x72\x5f\xad\xa4\xbe\x7b\x6f\xd1\x19\xe9\xb2\xdc\xad\xcc\xe8\xd6\x6c\x0c\xbd\x04\x8d\xb9\xe8\x79\x7c\x23\x83\x25\xd2\x42\x8c\xef\x40\x02\xd5\xa2\xf3\xde\x68\xf7\x22\x24\x91\x4b\x1c\xbb\x42\x64\x18\xba\xa9\x3c\xe3\xf5\x2c\x5d\x7c\xab\x14\x12\x12\x26\xb2\x21\x29\xd1\xf5\x90\xd6\xee\x31\x3d\xdd\xb6\x40\x56\x0b\xe1\x4a\x41\x7a\xdb\xc6\x7f\x31\x84\xcd\x5a\xd3\x00\x76\x62\x32\x0a\xa1\xb6\xed\xb9\x17\xa6\x21\xf7\x8b\x31\xd8\x07\x26\x39\xd8\xf9\xa3\xf4\xc1\xa1\xe0\x8c\xeb\x4a\x28\xb8\xb2\x52\x7b\xb8\xe2\x9d\x0b\xc1\xec\xf9\x02\x8a\x39\x14\x07\x50\x1c\x42\x71\x04\xc5\x31\x14\x27\x50\xbc\x82\xe2\x35\x14\x6f\xa0\x98\xef\x43\x31\x9f\x43\x31\x3f\x80\x62\x7e\x08\xc5\xfc\x08\x8a\xf9\x31\x14\xf3\x13\x28\xe6\xaf\xa0\x98\xbf\x86\x62\xfe\x06\x8a\x83\x7d\x28\x0e\x90\xcf\x01\x14\x07\x87\x50\x1c\x1c\x41\x71\x70\x0c\xc5\xc1\x09\x14\x07\xaf\xa0\x38\x78\x0d\xc5\xc1\x1b\x28\x0e\xf7\xa1\x38\x9c\x43\x71\x88\x1b\x1e\x42\x71\x78\x04\xc5\xe1\x31\x14\x87\x27\x50\x1c\xbe\x82\xe2\xf0\x35\x14\x87\x6f\xa0\x38\xda\x87\xe2\x68\x0e\xc5\xd1\x01\x14\x47\x28\xd9\x11\x14\x47\xc7\x50\x1c\x9d\x40\x71\xf4\x0a\x8a\xa3\xd7\x50\x1c\xbd\x81\xe2\x78\x1f\x8a\xe3\x39\x14\xc7\x07\x50\x1c\x1f\x42\x71\x8c\x2a\x1c\x43\x71\x7c\x02\xc5\xf1\x2b\x28\x8e\x5f\x43\x71\xfc\x06\x8a\x93\x7d\x28\x4e\xe6\x50\x9c\x1c\x40\x71\x72\x08\xc5\xc9\x11\x20\xfe\x0b\x59\x0d\x7b\xa7\xd4\xbe\xa7\xf6\x8c\xda\x0f\xd4\x9e\x53\x5b\x50\xfb\x57\x6a\x2f\xa8\xfd\x48\xed\x4f\xd4\x7e\xa2\xf6\x67\x6a\x2f\xa9\xfd\x4c\xed\x17\x6a\xaf\xa8\xfd\x85\xda\xaf\x61\x57\x6a\x6f\xa8\xbd\xa5\xf6\x57\x6a\xbf\x51\xfb\x37\x6a\xbf\x53\xfb\x77\xe8\x2b\x92\xeb\xdf\x61\x00\xac\x8a\xbb\x55\x60\x87\x8e\x11\x67\xce\xb8\xe5\x3e\xb0\xd4\xb5\xb0\xae\x32\x36\xcd\xd7\x5f\x54\x3d\x3e\x60\x76\x38\x77\x15\x04\xf8\x05\xe7\xe4\x58\x7f\x1c\x44\x31\x3c\x28\x88\x36\xfd\xab\xc8\x21\x84\x34\x96\x8d\x6a\x88\x34\x63\x21\x0b\xbd\x34\xa8\xe2\x7d\x86\x31\x25\xeb\x5a\x89\xd0\x0f\x6e\x4e\xdd\x6f\x2b\x21\x14\xdd\x73\xfd\x03\xf9\xfa\xf8\x38\x72\xa0\xc7\xb0\x34\xbc\xe6\x62\x1f\x76\x90\x0a\x0b\x2f\x03\x3b\xcb\xe3\x6b\xce\x2d\x40\x7e\xdb\x4e\xde\xb2\xf4\x6f\xd2\x03\x88\xc9\x34\x50\xe0\xf6\x19\xcd\x64\x44\x16\x3d\x0d\x09\x91\x12\x4d\x12\x2c\xd1\x13\x11\xbe\x7f\x82\x11\x8d\x47\x9a\xeb\x95\x5c\xfa\x54\xa6\x49\x0f\x2c\x32\x8a\x54\xa6\xc9\x88\x38\x32\x9a\x74\xbb\xc9\x08\x45\x32\x9a\x54\xee\x49\x82\x51\x7a\xa2\x53\xe5\x73\xa9\x27\x43\xa1\x32\x52\xe4\xca\x4f\x06\x30\x92\x90\xe4\x56\x9e\x24\x78\x26\x21\xca\x0d\x3d\xc9\x80\x4e\x42\x96\x0b\x3e\xd9\x82\x4e\xdb\x84\x83\xf8\x93\x1c\x53\xf5\x74\x7d\x90\x8d\xf2\x27\x77\x7b\x4a\x94\x69\x39\x19\x2e\xfd\x94\x24\xdb\x70\xf2\x04\xe0\xca\x6c\x8f\xd9\x7b\xeb\x7c\x9e\x24\x1e\x38\xf7\x12\x4c\x76\x60\x5b\xc6\xf7\x5c\xd7\x89\x32\x3f\x22\xa5\x6c\x91\x9e\xca\x24\x41\xbc\x29\x51\x76\x2a\x93\x01\x0a\xef\x48\xd7\x33\xcb\x55\xd9\x21\xeb\xd9\xa5\x92\x25\x67\xb6\xf7\xaf\xcc\x51\x76\x10\x55\x4a\xfa\xef\xa7\x49\x11\xfb\xf4\x64\x94\xde\x32\xb2\x0c\xe0\xa6\xd2\x5d\x64\x64\x43\xc2\xec\x49\xc6\x81\xb7\x3f\x22\x41\x99\x32\x4e\xdb\xb5\x7d\x42\x97\xb1\xfb\x01\xdd\x0d\x5f\xe4\xb9\x69\xb2\x05\x7f\xa7\x03\xf6\x4e\xa5\xf4\xe9\xb2\xc9\x36\x42\x9e\xc6\x81\x6d\x5f\xf8\x92\xa9\xdf\xc3\xe6\xec\xf8\x32\x0a\xc4\xf7\xe9\x6c\x91\xcd\x22\xd0\x4f\x67\x3f\xef\xcc\xa6\xa7\x44\x57\xe5\x0e\xc5\xf6\x91\xf7\xdf\x82\x46\xaa\xf8\x99\x68\x98\xfd\x9e\xcd\xd2\x27\xa3\x64\xf6\x2c\xcf\xcf\xa6\xdd\xa4\xb3\x7f\xdb\xca\xde\x99\x70\x9f\xb6\x27\xb7\xad\xf7\x21\x23\xc8\xca\x97\x94\xec\xd7\x2d\x8f\x75\x3e\x9b\x3e\xcd\x2d\xdc\x17\x31\x29\xc9\x4d\x46\x12\x2a\x80\xc4\xaf\xa6\xf9\xfd\x92\x94\x06\x09\xd1\x2c\x27\x8a\x35\x43\x4f\x90\xa6\xa5\x28\xc8\x6e\x4e\x4a\x73\x0c\x63\x3f\x4c\x88\x19\xaf\x1f\x25\x98\x8c\xd7\x6e\x82\x09\xa0\x77\x37\x51\xc5\xf1\x84\xea\xa9\x4c\x35\x8c\x4f\xf3\xcf\x14\x23\xb7\xb1\x28\xcb\xb2\xfd\x13\x34\x54\xad\x65\xf7\x46\x46\xd4\x97\x71\x03\x6e\xa0\xa0\x4e\x05\x8f\x23\x09\x87\xf7\xf9\x89\xf7\x35\x5f\x4a\xf2\x4b\x46\x42\x9f\xf5\x52\xe3\x6d\x39\xf5\x50\x2a\xa6\x44\xdf\x32\xa2\xa1\x36\xcc\xae\x82\x27\xf4\xa5\x32\x30\x25\xfa\x29\x77\xdf\xbe\x52\x9c\x4c\x81\x68\x5e\xbe\x64\xe7\x0d\xaf\xdc\x9e\xf3\x9b\x50\x01\x0d\xbf\x67\x61\x7d\xde\x5b\xe2\xfd\xf5\xd4\x65\xbd\xb7\xe8\x67\xb6\x53\x25\xa7\x2b\x6f\xd7\x07\x71\x0e\xcd\x9b\xb9\x5e\x2f\xc8\x47\xed\xc5\x5d\xc0\x7c\xe1\x4d\x38\xfd\xb6\xa4\xe1\x9a\xdf\x09\x1b\xe5\x29\xe6\x94\x7c\x77\x1d\xa0\x38\x08\x37\x54\x92\xe2\x8a\x43\x1a\x4a\xf3\x5a\x71\x44\x43\xe9\x89\x14\xaf\x76\xa9\xe6\xfb\x28\x63\x4a\x75\xee\x2a\x12\x9b\x10\x78\x22\xf3\x65\x40\xda\x99\xcd\x52\x48\x1c\x61\x4c\x2c\xc1\x7b\x6e\x39\x4e\x26\x5b\x0d\xb5\x79\x46\x93\xe1\xc1\xb1\xc0\xcd\x68\x02\x26\x8f\x17\x39\xe5\xa7\x2b\x2b\x1b\x6e\xb3\x54\xb9\x97\xb2\x9b\x6c\xd7\xc7\xa9\x42\x38\xda\xaa\xfe\x03\x9b\x63\xbb\xfe\x10\x04\xde\x7a\x61\x90\x9e\x70\xf3\x14\x41\x48\x8d\x29\x59\x1b\x7e\x24\xb0\xf5\x86\x21\xa5\xa8\x46\x8a\xad\x37\x0e\x29\xd5\x23\x6d\x97\xbf\x81\x98\x4c\x93\xef\xe8\x05\x7d\x12\xd0\xc6\x0b\x07\xf0\xd9\x78\xf1\x96\x7d\xd1\xa1\x52\x32\xaa\x1e\x3f\x0d\x89\xa6\x53\xdc\xa3\xd2\xf4\xcb\x27\xcd\xbe\x49\x5d\x9b\xb5\x63\x0d\xaf\x56\x88\x6a\xa7\xe1\x33\xc4\x45\xc9\xdc\x8a\xde\x6e\x2f\xe8\x83\x54\x78\x6d\xbe\xe8\xe1\xc1\x0c\xe0\x34\xfe\xd4\x81\x2b\xb5\x99\x8e\x3f\x95\xa1\xf7\x0a\x7d\x0d\x46\x2f\x87\xb1\xda\xa1\xcf\xe0\xf7\x62\x93\x7f\x5e\x0f\xc3\xbc\xc4\xca\x8c\xba\xb7\x6d\x39\x63\xe1\xa7\x3a\xf1\x73\x23\xca\xc9\x4c\x1b\x36\x62\xe5\x5e\xc9\x16\xc2\xaf\x85\xd0\xac\x31\xb5\x5c\x4a\x61\x5d\xf8\xe9\x01\xae\x0f\x1f\x3f\x80\x14\x28\x99\x33\x03\xff\x2a\x6a\xc2\xac\x58\x5b\xe9\xbd\xd0\x8c\x87\x6f\xf3\xbc\x64\xcf\x2b\xee\x30\x06\xbd\x47\x66\xa8\x26\x2a\xd3\xfb\xc4\x8b\x19\xd0\x27\x72\xe9\xd8\x7a\x35\x7c\x7d\x7f\xea\xd5\xf3\xf0\xe3\x23\x11\xa4\x19\x60\x77\xc9\xfa\xef\xe0\x66\x19\xf4\x4c\xa6\x42\xe5\xca\xad\x60\xe2\xf7\x4e\x3e\x70\x15\x3e\xf4\xfe\x7f\x00\x00\x00\xff\xff\x22\x16\xe5\x81\x78\x27\x00\x00"
 
 func runtimeHelpKeybindingsMdBytes() ([]byte, error) {
        return bindataRead(
@@ -992,7 +971,7 @@ func runtimeHelpKeybindingsMd() (*asset, error) {
        return a, nil
 }
 
-var _runtimeHelpOptionsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\x51\x8f\xe4\xb6\x91\x7e\x1e\xfd\x8a\xc2\x38\xc0\xcc\x18\x3d\xbd\x46\xce\x0f\x41\xbf\x18\x6b\xef\xdd\xc6\xc8\xd9\x1b\x9c\x37\x77\x0e\x92\x20\xa2\xa4\x52\x8b\x19\x8a\xd4\x91\x54\xf7\x6a\x0d\xdf\x6f\x3f\x54\x15\x29\xa9\x7b\x7a\xa6\x73\xc0\xbd\x2c\xb6\x25\xb2\x58\x55\xac\xfa\xea\xab\xd2\x7c\x01\x1f\x86\xa8\x9d\x0d\x45\xf1\x83\xae\xbd\x83\x10\x9d\xc7\x00\xca\x18\x70\x2d\xc4\x0e\x61\x0c\xe8\xa1\x76\xb6\xd5\xfb\xd1\x2b\x5a\x0c\xda\x82\x8e\xe1\xec\x61\xa3\x3d\xd6\xd1\xf9\x69\x9b\x65\x8d\x01\x03\x8b\x28\x7f\xf3\xf3\xbb\xf7\x7f\xff\xee\xc3\x8f\xff\xf6\xfd\xfb\xbf\xff\xfe\xc3\x0f\xff\xfa\xa6\xa7\x05\x25\x28\x79\xff\x92\x20\x78\x1b\x60\x40\x5f\xd0\x9a\x9f\xdf\xbd\x87\x30\x60\xbd\x01\xdd\x3e\x17\x58\x82\x0e\x60\x5d\x84\x80\x71\x03\xe5\xff\xbc\xd9\x8a\xcc\x7c\x90\x0e\xa4\x4d\x43\x07\x16\xcb\x89\x27\x3a\xff\x1e\x3d\x82\xf2\xc8\x1a\x39\xf1\x0a\xc4\x4e\x45\x98\xdc\x08\xb5\xb2\x24\x7b\x57\x14\x5f\x42\xa9\xc6\xe8\xb4\x6d\xd0\xc6\x72\x07\xc7\x0e\x2d\xd4\x1e\x55\xd4\x76\x0f\x0a\x2c\x1e\xc1\x68\xcb\x8e\x63\x59\x41\xf5\x08\xb2\x5c\x0c\x4c\x56\x17\x00\x30\x78\x3c\x68\x37\x06\xde\xb1\x2d\x8a\x9b\x06\x5b\x35\x9a\x08\x07\x65\x46\xdc\x41\x19\xfd\x88\xe5\x7c\x68\x50\x07\x2c\x77\xc0\x46\xc1\x51\x1b\x03\xf4\x84\xa5\x55\x63\xdb\xa2\x07\x3c\xa0\x9f\xe0\x77\x10\xb0\x76\xb6\x09\x40\xbb\x7a\x15\x75\xad\x8c\x99\xb6\xc0\x17\x43\x07\x2b\x13\x92\x84\x93\x15\x22\x4f\xd9\x06\xfe\x7b\xd4\x51\x6c\x23\xf3\xf1\x13\xfd\xd2\xb1\x73\x63\x04\x15\x9e\xb4\xdd\x6f\xe1\x5b\x24\x49\xb5\xf2\xd8\x8e\x46\xd6\x8e\x81\x9c\x10\x3b\x1d\xa0\x45\x15\x47\x8f\x1b\xa8\xb0\x56\xe4\x0b\x92\xd3\xeb\x7d\x17\x41\xd5\xb5\x66\x77\x2c\x27\x42\xab\x0d\x6e\x48\x9e\x3b\xa0\x3f\x7a\xcd\xde\x3c\x92\xfb\x8f\xe2\x2f\x8f\x50\x61\xeb\xfc\x45\x37\xb5\xca\x84\xe4\xa7\x4a\x05\xb4\xaa\x27\x3f\x69\xcb\xae\xd1\xb6\x75\x95\xf2\x1b\x08\x9d\x3b\x82\xb3\x66\x12\x8f\xa5\x85\x39\xd0\x49\x03\xa8\x90\xce\xc5\x46\x47\x6c\x48\x1b\xaf\xe8\x68\x8a\x03\x91\xd5\x8e\xc6\xc0\xa0\x62\xb7\x2d\xe8\x35\xbc\xa2\x48\xed\x8c\xf3\xb5\x33\x63\x6f\x49\x97\x56\xdc\xb2\xc4\x29\x44\x07\x5f\x6d\x80\x1d\x6b\x0c\x34\x3a\x0c\x46\x4d\xa0\x40\xf6\x80\x8a\x74\x62\x01\x1c\xf6\xba\xd5\xd8\xa4\x37\x5b\xf8\x98\x24\x8d\x81\x5d\xaf\x5b\x76\xee\x51\xd9\x98\x37\xff\xee\x2b\x12\x5f\x21\x74\x7a\xdf\x19\xf2\x3a\xdb\xc3\xa2\x94\x81\xd6\x79\xc0\x4f\xaa\x1f\xcc\x45\x77\x7e\xb5\xb2\x20\xd4\x1d\xb2\x37\x8d\x53\x4d\xce\xd7\xf9\xb9\x00\x46\x43\xae\x26\x7f\xfc\xe6\x5e\x32\xeb\x9d\xf6\x0f\x6f\x56\xcb\xc2\x9b\x52\x52\xaa\xdc\x72\xf0\x6e\xc4\x84\x80\x91\xef\x59\x07\x28\xf7\xc6\x55\xca\xf0\xf5\x94\x97\x74\x4a\xbf\xcb\xa2\xb8\xf9\xd1\x45\x94\xd4\x24\x6d\xf2\xc2\xf5\x71\x70\x9f\x9e\x6e\x20\x38\xa3\xbc\xfe\x8c\xcd\x86\xe3\x7a\xfe\xf9\x18\xeb\x87\xe2\x86\x12\x9e\xee\xc3\xb8\x5a\x45\xb1\x63\xb6\x60\x09\xdd\xd8\xe1\xc4\xd8\x80\x7d\x85\x4d\x23\xeb\xe8\x6c\xc9\xc4\x4a\x5b\xc5\x18\x72\xf3\xf1\xcc\x3b\x04\x1b\x15\x42\x40\x83\x35\x89\x6f\xbd\xeb\x19\x5c\x73\xc0\x85\x2c\xa9\xb8\x39\x03\xad\x53\xf7\xad\x51\x51\xd0\xb5\x76\x64\x67\x35\xcd\xf6\x53\x7a\x42\xec\x3c\x62\x71\xb3\xde\xbb\x2b\x8a\x9b\x3f\x27\x08\xf3\xa8\x1a\xe8\x1d\x21\x5d\x45\xa9\xcc\x27\xdd\x85\x53\xdf\x25\x8d\xd2\xf5\x97\xd0\xa1\x19\x20\xba\x41\xd7\xc5\xcd\x7d\xc9\xbf\xd2\xab\x87\xad\xc4\xc9\xe8\x83\xf3\x04\x61\xe5\x6e\x09\x38\x16\xc2\x48\x38\x5f\x95\x2c\xa4\xeb\x96\x2a\xa2\xa0\xd1\x04\x5b\x68\xd3\xf5\x51\x0c\xdd\xcf\x21\x46\x0b\x1b\x6c\xb5\xc5\x86\x0c\x3d\x0f\x3d\x8a\x79\xba\x14\x06\x9d\x87\xd7\xd1\x13\x5d\x6b\xf1\x98\x54\x5c\xe1\xe7\x29\xfa\xa9\xa6\x11\x04\x17\xb5\xdd\x7c\x4d\x57\x30\xa7\x55\x21\x36\xda\xc7\xa9\xdc\x49\x96\x37\x18\xd1\xf7\xda\x62\x10\x0c\x7b\xd2\xb6\x21\x9c\x51\x66\xef\xbc\x8e\x5d\x9f\x74\x90\x12\xe9\x96\xf5\xa0\x5b\x86\xe7\x8c\xe7\x3a\x40\xef\x1a\xc9\x7e\xe7\x29\x54\xb7\xf0\x5f\x84\xb4\xab\x33\xc5\x9f\x9b\x24\xf2\x1f\x63\x88\x22\x57\x91\xa4\xca\x39\x83\xca\x42\x99\xc5\x94\x72\x1d\x92\x7d\x74\xb6\x78\x89\xaa\x52\x70\x4b\x75\xe2\xb2\xdf\xab\x27\x92\x63\x19\x10\xb7\x24\x2e\x23\x0f\x9d\xbe\x81\x6a\x8c\x39\xc4\xb5\x55\x75\x4d\x25\x1c\xb7\xf0\x7d\xfb\x4c\xbd\xb6\xdd\x90\x58\xbb\xf2\x3d\x89\xeb\x54\xe8\x72\x64\x70\x14\x24\xb3\xd5\x5e\x69\x1b\x22\x28\x59\x91\x10\xda\x79\xbd\xd7\x96\xe0\x8b\xa0\xfa\x9e\x8b\x2e\x36\x52\x79\x04\x2a\xf3\x7e\xaa\x19\x84\x57\xd8\x3c\x2c\x68\x29\x71\x9f\xb4\x64\xdd\x5d\xc5\xd5\xd7\x4c\xf2\xce\x63\x70\xa3\xaf\x59\x90\xb6\x11\x6d\xd0\x07\x4c\xfb\x05\xbe\xc4\xd5\x66\x62\x00\x1d\xd0\x0d\x06\xe1\xd8\x39\xca\x2b\x8a\x1f\xaa\x85\x29\xb3\x3a\x75\xd0\x76\xcf\x77\x99\x4f\x9c\x2f\x32\x44\x15\xc7\xf0\x7a\xc0\x92\x89\xad\xf3\xbd\x8a\xd7\x62\x8a\x63\x15\x6d\xa3\xed\x3e\xac\x43\x9b\x80\x8b\xd4\x4c\x9e\xe1\x30\x86\x3f\xfd\xf8\xfd\xcf\xa7\x3b\x48\x65\x8e\x99\xf2\xaf\xb6\x84\x7b\xd3\x3e\x90\x43\x3d\xaa\x00\x8d\x0b\xcf\xd6\x92\xa8\xf2\xaf\x9e\xd7\xd6\xde\xb4\xec\x5f\x84\x78\x74\x30\xb8\x10\x74\x65\x50\xac\x09\xe9\xf0\xc5\x77\x74\x52\x39\x5a\xfd\xa9\x64\x24\x2e\x1b\x17\xca\x14\x54\x92\x65\x62\xaf\x68\x5f\xe1\x59\x6e\x92\xf9\x8c\xa1\xb4\x37\x15\x4b\x4a\x0a\x01\x2b\x71\x29\x29\x2b\x51\x10\x4f\x4e\x7e\x5e\x2a\xdd\x68\x1a\x30\xfa\x89\xb3\xbc\xee\x94\xdd\xe3\x82\x57\xd9\x5c\x42\x20\x4e\xc7\x8c\x34\x21\x2a\xbf\xa2\x79\x2f\x21\x03\xdb\x38\xdf\x62\x9c\x06\x02\x9d\x80\x31\xcc\x78\x42\xcf\xf2\xe5\x9c\xc5\xfe\xf6\xbc\x34\xb2\xc7\xa9\x3e\xbd\x5c\x1c\xd9\xd6\xcb\x6e\xa3\x24\x6f\x70\x10\x93\xb2\xb7\x38\x7f\xc8\xa8\x4e\x1d\xb0\xb8\x71\x03\x5a\x56\x57\xef\xad\xf3\x58\xab\x40\x0a\x0f\xe8\xe9\x42\x80\x7e\x3e\x6a\x1b\x28\x1d\xa2\x3e\x50\x35\x53\xbe\xee\xf0\x62\x00\xaf\x40\x51\x28\x6f\xdd\x29\xbf\xb6\x7e\x4d\x84\xe9\x9d\xaa\x23\xfa\x4b\x92\x20\x4b\x61\xf2\x56\xee\x00\xad\xaa\x4c\xea\x28\xf8\x9a\x52\x51\xa9\x5c\x8c\xae\xcf\x18\x41\x48\xe5\xbc\x84\x30\xf4\x18\x82\xda\xe3\x1c\xb8\x83\xa7\xb4\x6e\x9e\xa5\xf4\x55\xf2\xb1\xe4\xe5\x13\xe2\xf0\x9c\xff\x0b\xef\x5d\x9e\x6f\xe0\xd8\xe9\x88\x61\x50\x35\xd2\x01\x8a\x49\x03\x5d\xf8\xe4\x46\x39\x9e\xb9\xae\x68\xb0\xca\x6c\xdd\x2e\xa4\xbb\x77\x87\xb9\x08\x59\xfc\x14\xc5\xea\x99\x85\xdb\x09\xe8\x56\xbc\xf4\x6f\x00\xbc\x6e\x75\x6c\xcc\xe4\x59\x0e\x0f\x1d\xc7\x7c\x45\x84\xc9\x20\x7b\xe1\xdb\x85\x3c\xd0\xde\x45\x7d\x92\x76\x6a\x40\xda\x23\x34\x36\xf9\x9f\x41\x16\xdb\x08\xd8\x0f\x71\xba\x12\x0d\x4f\x38\xf5\x68\xc7\x72\x37\x13\x5d\x36\x4b\x59\xf7\x18\xe2\x64\x10\x9e\x70\x02\x5a\x71\xf9\x5a\x43\xed\x11\xed\x16\x88\xfa\x89\xad\x2a\xc2\x47\xb7\xdf\x1b\xfc\x03\x4e\x3f\xd0\x3e\x1d\xa0\x72\xa3\x6d\xb8\xa6\xbd\x35\xf1\x71\x5f\xae\xe9\x11\xc1\x46\x66\xe0\x0b\x7c\x68\x9b\x3d\xb7\x20\xc8\x16\x3e\x3a\x5a\x42\xe1\xc6\x5b\x36\x10\x74\x3f\x98\x89\xc4\x65\xc9\x74\xc8\x9f\x6c\xa5\x6d\xf3\x07\xbc\x1c\x33\x2b\xe3\x7b\x37\x72\x4a\x1d\x3b\x94\x76\xc2\xa5\x68\x06\x7e\x03\x61\x1c\x06\xe7\x73\x69\x3f\x79\x96\xd4\xa5\xc5\x0d\xf7\x47\x63\x18\x39\xb1\x49\x67\x09\x1b\x65\x96\xdc\x67\x95\x1d\xd5\x1c\x0c\x21\x49\xc2\x03\xda\x48\x45\x43\xd7\x5d\x2e\xd7\x02\x87\x5c\xe8\x56\xcd\x03\x61\xa1\x1b\x26\xa1\xa9\x27\x07\x50\x35\x26\xee\xe8\x5a\x79\x29\x75\xe6\x5e\xb7\xdc\xaf\x41\x08\x1d\x45\x37\xc9\x4b\x6d\xc5\x09\x79\x5e\xe4\x74\x14\x8f\xa2\x5c\x8a\x6c\x41\xb6\xda\xe8\xa1\x72\xca\x0b\xbc\xf7\xb9\x4d\x6d\x1c\x72\xbf\x74\x85\xdd\x0d\x66\xdc\x6b\x4b\x30\x6e\xd1\x84\x72\x47\x1c\x3e\x12\x83\x98\xb9\x76\x7e\x37\x33\x5e\xd9\x02\xbd\xb2\x6a\x4f\x84\x81\x9b\x69\x06\x36\x2e\x96\x54\xde\x79\x05\xd1\xe1\x2d\xbc\xcd\x02\x98\x37\x49\x30\x28\x30\x3a\x44\xf2\xc8\x9d\xc7\xc1\x05\xc2\x9d\xe9\x0e\xfe\x11\x9c\x4d\xd4\x9e\x3d\xce\x3d\xb2\xa8\x03\x3d\x46\xd5\xa8\xa8\x12\x47\x20\xc5\xf6\xfa\x80\x36\x9d\xb5\x85\x9f\x50\xfc\x55\xfe\x51\xd4\xfb\x41\xd4\x2b\xa9\x9f\x67\xa8\x70\x6d\x8e\xd7\x64\xf4\x09\x3f\x67\xbd\x99\xca\x10\x6c\x52\x31\xd5\xce\x5e\x72\x5d\x17\xe3\x10\x76\x6f\xde\xec\x75\xec\xc6\x6a\x5b\xbb\x5e\x9a\x8e\x47\x81\xcf\x37\x22\xfb\x31\x19\xbd\x76\x32\x9b\x7a\xc9\xc3\x8b\x13\x34\x86\xbb\xd7\xfc\x4c\x16\x88\xab\x2f\xf8\x79\x71\x25\x1d\x11\x74\x88\x81\x89\x33\x94\xf4\x66\x4b\xde\x2d\xa5\x7e\x9d\x7b\x37\x2c\xee\x25\xb1\x0a\x08\x93\x0d\x66\xdf\xbe\x5c\x62\x7c\x1f\xbd\xd2\x46\xdb\xfd\x31\xbc\xd6\x1d\x44\xaf\x7b\xc8\x4b\x57\xf8\x18\x08\xb2\xd0\x99\x2b\x20\xe0\x47\x83\x7e\x85\x7f\x8c\xa1\x76\xec\x2b\xf4\x57\xb8\x60\x50\x07\x94\xd6\xa9\xdc\x81\xc7\x9e\xba\xd0\x5c\xe2\x56\x6d\x15\xe3\xb1\x0a\x11\xa2\xee\x71\xa9\xf3\xf4\x98\x2a\xbc\x50\x27\x2e\x83\x63\x04\x1d\xd3\x50\x65\x2e\x37\xb4\x66\xd9\xc5\x0c\xfc\x8a\x45\xa4\x57\xa7\x03\x5d\xd6\x5a\xb1\xda\xf5\x3d\x65\x71\x7a\x05\x15\xc6\x23\xa2\x85\xda\x38\x29\x93\xb6\x01\x8f\x8f\x74\x5e\xa2\xc8\xec\xf2\x17\x26\x2a\xa7\x6e\x18\x6d\xe3\x72\xd1\x8d\xe7\xbc\x7c\x03\xf4\x9a\x53\x54\x1d\xb0\x61\xe0\x03\xd5\x46\xf4\x32\xc3\x33\x2e\xe4\x51\x13\xc7\xa0\xcb\xe0\x97\xde\xb0\x5e\xec\x86\x34\x8f\x9a\x47\x7f\x54\xf5\x59\xb8\xb6\xfb\x6b\x4e\xa9\xbd\x33\x46\x28\xcb\x32\xd3\x91\xa7\x50\x29\x7f\x75\x6e\x24\x4b\x7b\xe5\xf7\xda\x96\x3b\x50\xbd\x1b\x6d\xcc\x44\x3f\x5c\xa0\xaf\x01\xb9\xe9\x48\x83\xbb\x0a\x8d\x3b\x66\xd2\x2f\x91\x71\x49\xe3\x7f\x59\x1f\x16\x06\xc4\xe6\xc2\x59\x24\x5c\x14\xa7\x8c\x72\x16\xf3\x4f\x2e\x29\x97\xc4\xfe\x36\x89\xed\x95\x8f\x83\x0a\x91\x99\xaf\x30\x0f\xc9\x2b\x6a\xb1\x0d\xaa\xe6\x34\x85\xe4\x42\x69\x03\x3d\xef\x47\x13\x35\xb5\x56\xac\xc5\x37\x73\xdf\x29\x39\x19\x23\xf1\x0d\xd2\x6d\xf0\x18\xd0\x1f\xf0\x84\x45\xaf\x09\xa6\xc1\x03\x9a\x53\xd9\x8a\x0b\xfe\x68\x65\x19\x36\x50\x19\x57\x3f\x5d\xc9\x3f\xd7\xc6\xa3\x57\xc3\xb9\x2d\xf4\x2c\x7b\x8a\xf8\x08\x4f\x8f\x9d\x03\xe3\xec\x9e\xf4\x6b\x75\x9c\xfb\x13\xe1\x2f\x57\x42\x67\x30\x3a\x0a\xef\xc9\x31\xae\xa0\x73\x5e\x7f\x26\x84\x33\xc0\xef\x29\xbc\x53\xe7\xbb\xc9\xea\xe8\x48\x35\x3d\xf7\xc3\x1c\x01\xb9\x4c\x64\xb7\xf0\xde\x6f\x5e\x37\x93\x96\x78\xbd\xef\xe2\x72\xfa\x81\xf8\x65\xfd\xcf\x9f\x2d\x45\x9d\x27\xa7\x3c\x03\x4a\xf4\xed\xff\xa2\xc5\xcc\xc3\xce\xb8\xa2\xbc\x78\x85\xfa\xbf\xec\xe3\x45\x7a\xaf\x62\xdd\x55\x5e\xd5\xa7\xa3\x2a\x7e\x4c\xe1\xc1\xaf\xa4\x75\xbd\xbb\x7f\xb8\xdb\xc0\xdd\x2f\xbf\xd2\xbf\x7f\xf9\xdb\xdd\xd5\xc4\x5d\x64\x13\x2b\xce\x3e\x9c\x45\xab\x19\x00\x79\xcd\xec\xc0\x79\x01\xff\x67\x1e\x64\xd0\x9a\x34\xf5\x33\x13\x61\x0f\xfa\x15\xd8\x6f\x20\x37\x8f\xb9\x87\x9a\xf9\x14\xb6\xf1\x1b\x19\x52\xf4\x94\x2b\x3e\x24\x96\xb7\xb6\x9d\x2e\x92\x9c\x72\x1d\x8c\x26\x1b\xd5\xa7\x72\x07\x71\xf4\x36\x80\xfc\xa4\xa0\x26\x3c\x68\xdb\x2b\x79\x33\xd6\x3d\xc1\x4a\x1e\x60\x4b\xef\x16\xc6\x01\x7d\xfe\xac\xc4\x95\x62\x0b\x1f\x88\xf5\x86\x08\x61\x0a\x11\xfb\x30\x13\xf5\xdb\x30\x36\xee\x96\xfa\x79\x6e\x97\x2c\x7c\xfb\xd3\x3b\x8a\xb8\xc4\x62\x6f\x1b\xa7\xc2\xf6\xf6\xa4\x9d\x4b\xaf\xea\x31\x44\xd7\xeb\xcf\x69\x60\x90\xe7\x36\xfc\x15\x88\xee\x85\x0b\x00\xcf\x68\x64\x70\x1a\xc6\x4b\xb6\xd0\xf1\x62\x4b\x54\x15\xf5\x63\xbd\x34\x7d\x56\x1d\xf4\x5e\x45\x84\x85\x00\x70\x3c\xe2\x5e\x5b\xcb\x8d\x76\x86\x50\x15\x52\xcf\x24\x03\xe4\xa8\x2a\xbe\x8f\x7b\xdc\xee\xb7\xd2\xe1\x31\x81\xfe\x7a\x25\xc9\xd9\x1a\x1f\x4e\x7b\x54\xd6\x9d\xc9\xb0\xb2\x53\xe4\x68\x91\xc9\x04\xe9\x15\xa2\x93\xcd\x69\x12\x78\x05\x65\x68\x87\xfe\x7c\x32\x92\x88\xaa\x02\x7a\xc6\x5d\x4d\x1a\xd4\x5f\x10\xf2\xf5\x22\x60\x3e\x72\xc7\x73\xa6\xa4\xfc\xaa\x4b\x60\x43\x5f\xd7\x03\x7d\x1f\x75\x34\x9c\xe7\x3c\xe5\x0d\x73\x83\x24\xa3\x4e\xaa\x75\x7e\xee\x1d\xee\x02\xf0\xf2\xb9\xd9\x09\x18\xa9\x23\x9b\x9b\x05\x4e\x37\x61\x3a\x57\x5c\x30\x06\x1c\xbc\xee\x95\x9f\x4a\xb8\xcf\x71\xd1\x8e\x86\x22\xec\x4b\xab\x3f\x3d\xbc\xa8\xd1\xd9\x7c\x2d\x25\x6b\x12\xb6\xea\x62\x72\x27\x25\x93\x7f\xfe\x96\x98\xc6\xea\x95\xaa\x9f\xf6\x9e\x1a\xd5\x74\xc5\xb9\xc7\x01\xd5\xb6\x58\xc7\x0c\xdc\x96\xf8\xfb\xba\x31\x92\x19\xc3\x77\xd1\x9b\xc7\xef\x38\xa6\xf9\xbf\xff\xf9\x4a\x0a\x3e\x3e\x3e\x16\xc5\xbb\xf4\x2e\x11\xf1\xf4\x65\x73\xf9\x90\xc9\xdc\x87\x6a\xff\x09\xd7\x15\x46\x54\xfe\xf2\x6b\x09\xe5\xfd\x43\x09\xe5\x5f\xfe\x56\x42\x79\x7b\x5b\x42\x79\x77\x57\x6e\xe1\x8f\xde\x1d\x74\x33\xcf\xe5\x39\x14\x17\x69\xe9\xb0\xd7\x07\x9c\x31\xa9\x52\xee\x56\x6d\xfa\xe6\xe4\xe3\x26\x46\x08\xae\x5f\x3e\xc7\x56\x2a\x2c\x23\xbf\x3c\x47\xdb\xc2\xdb\xd9\x69\xbd\xeb\x79\xfa\x72\x7e\x4d\xaa\x12\x4c\xef\xd5\x13\x4a\x6f\xc6\xdf\x82\x86\x19\xec\x87\x29\x76\xce\xf2\xd3\x49\xf5\x26\x0f\x4c\x03\x78\xdc\x2b\xdf\x18\x6a\x58\x5d\x2b\x01\x99\x46\x73\x81\x07\xdd\xcf\xe9\xd8\x7a\x72\x00\x15\x76\xea\xa0\xa5\x33\x26\x08\x3d\x21\xad\x57\x01\xd4\x68\x1b\xb9\x67\x78\x7b\x72\x39\xf4\x78\x9e\x7a\x0b\x5d\xcf\x9c\xf7\xd9\xcd\xcc\x42\x38\x4e\x5f\x6c\x85\xd2\x99\x6f\xed\x94\x95\x23\xc3\xe8\x02\x52\xd8\xe6\xb9\x5a\xce\x3d\x26\xd8\xab\x2f\x24\x50\x9c\x7f\xbf\x9a\xdd\xc4\x1d\x71\x70\x1b\x12\x85\x1c\xe3\x1b\x71\xe4\xe9\x77\x7f\x69\x56\x92\xfc\x22\x13\x8a\x79\x66\x26\xbe\xbe\x5b\xfc\x1c\xd5\x13\x5e\x92\xc3\x70\x4e\xda\x47\x07\xca\x3a\xca\xde\xa2\x57\x54\x62\x71\x1e\xe4\x70\x6e\x72\x31\x3a\x51\x32\xd9\xc3\x7b\x20\xed\xd9\x16\x45\xf1\xc5\x17\xf0\x5e\x26\x84\x14\x20\x32\xb1\xc8\x3b\x8b\xe2\xcf\xcb\xdf\x07\xd0\xf6\xb0\x48\x05\xd4\x2c\x4a\xc6\x8b\x66\x22\x14\xe1\xdd\x66\xda\xc2\xbf\xcb\x7f\xa0\x47\x95\xff\xd2\x80\x32\x29\x0f\x7e\x8f\xce\xde\xc5\x13\x57\x9f\xff\x59\xc3\xa9\x87\xcb\x34\xe1\x52\x71\xfe\xa4\x4c\xc8\x56\x24\xa0\x4c\xd7\x78\x3e\x6b\xfe\x29\x9d\xa6\x32\x32\x2c\xba\xea\xb0\xfe\xbc\xca\x5f\x4f\x8b\x39\x2d\x97\x3f\x92\xe0\xef\x78\x74\x69\x2c\x91\x3a\xd9\x8f\xcb\xc7\x43\xf9\x76\xbc\x6a\xd2\x56\x83\xd6\x4d\x52\x18\x57\x63\xf2\xd5\x4a\xf6\x53\x41\x0b\x79\x1e\x47\x87\x2e\x4a\x26\x27\x6e\x38\xbb\xcb\x80\x91\x1f\x94\xeb\x02\x44\x4f\xcb\x6d\x51\x7c\x9f\xbe\x66\x9e\x39\x6b\x1e\x81\xd3\xcd\xf1\x5f\x43\x50\x57\x4c\xa7\x64\xb0\x49\x67\x50\x1e\x09\x81\x99\xf8\x4f\x03\xf8\x46\x0b\xc5\x96\x00\xcf\x19\x16\x20\xe2\xbf\x21\xd1\xf2\xc5\x4c\xc6\x60\x69\xea\xd6\xa9\x70\x5e\xaa\x29\xe2\x69\xbb\x31\x09\x69\xf0\x53\x8d\x43\x84\xf7\xae\xe0\xdf\xe2\x9e\xb9\x5a\xc3\xd7\x97\x97\xff\xc7\x58\x4d\xf2\x64\x57\x14\x65\x59\x92\x75\xc5\x2f\xc5\xcd\x6d\x1b\x77\x7b\x77\xbb\x83\x5f\x8a\x9b\x9b\xdb\xf5\xd1\xb7\x3b\xe0\x52\x58\xdc\xfc\xba\x91\x75\x7e\xac\xa6\xf5\x4a\xfd\x19\x6f\x77\xf0\xdb\xb4\xe0\x6c\x2f\x21\x45\x7e\x2c\x0b\xbf\x2e\x7e\xa5\x93\x8b\xe2\x83\xa7\xfc\xd2\x46\x79\x33\xcd\xbe\x15\x56\xcb\x49\x49\x2e\x3b\x57\xf3\xcb\xed\x3f\xa5\xe5\x97\x5b\x5f\xfd\x3f\xa8\xf8\xbf\x01\x00\x00\xff\xff\xe0\x03\x35\xb9\xf0\x24\x00\x00"
+var _runtimeHelpOptionsMd = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x7a\xdf\x8f\xe4\xb6\x91\xff\xf3\xe8\xaf\x28\x8c\x17\x98\x19\xa3\xa7\xc7\x48\xfc\x60\xf4\x8b\xb1\xf6\x7e\xbf\x6b\x23\x67\x6f\x90\xdd\xdc\x39\x48\x82\x88\x92\x4a\x2d\x66\x28\x52\x47\x52\xdd\xab\x35\x7c\x7f\xfb\xa1\xaa\x48\x49\xdd\xdb\x33\x93\x03\xee\xfc\xe0\x9d\x96\xc8\xfa\xc5\xaa\x4f\xfd\xa0\xbe\x80\x77\x43\xd4\xce\x86\xa2\xf8\x49\xd7\xde\x41\x88\xce\x63\x00\x65\x0c\xb8\x16\x62\x87\x30\x06\xf4\x50\x3b\xdb\xea\xfd\xe8\x15\x2d\x06\x6d\x41\xc7\x70\xf6\xb0\xd1\x1e\xeb\xe8\xfc\xb4\xcd\xb4\xc6\x80\x81\x49\x94\xaf\x7e\x79\xf3\xf6\x1f\xdf\xbf\xfb\xf9\xff\xff\xf8\xf6\x1f\x3f\xbc\xfb\xe9\xff\x3d\xf4\xb4\xa0\x04\x25\xef\x9f\x22\x04\xaf\x03\x0c\xe8\x0b\x5a\xf3\xcb\x9b\xb7\x10\x06\xac\x37\xa0\xdb\xcf\x09\x96\xa0\x03\x58\x17\x21\x60\xdc\x40\xf9\x5f\x0f\x5b\xa1\x99\x19\xe9\x40\xd2\x34\xc4\xb0\x58\x38\x9e\xc8\xfc\x03\x7a\x04\xe5\x91\x25\x72\x62\x15\x88\x9d\x8a\x30\xb9\x11\x6a\x65\x89\xf6\xae\x28\xbe\x84\x52\x8d\xd1\x69\xdb\xa0\x8d\xe5\x0e\x8e\x1d\x5a\xa8\x3d\xaa\xa8\xed\x1e\x14\x58\x3c\x82\xd1\x96\x0d\xc7\xb4\x82\xea\x11\x64\xb9\x28\x98\xb4\x2e\x00\x60\xf0\x78\xd0\x6e\x0c\xbc\x63\x5b\x14\x57\x0d\xb6\x6a\x34\x11\x0e\xca\x8c\xb8\x83\x32\xfa\x11\xcb\x99\x69\x50\x07\x2c\x77\xc0\x4a\xc1\x51\x1b\x03\xf4\x84\xa9\x55\x63\xdb\xa2\x07\x3c\xa0\x9f\xe0\x1b\x08\x58\x3b\xdb\x04\xa0\x5d\xbd\x8a\xba\x56\xc6\x4c\x5b\xe0\x83\x21\xc6\xca\x84\x44\xe1\x64\x85\xd0\x53\xb6\x81\xff\x1c\x75\x14\xdd\x48\x7d\xfc\x48\xbf\x74\xec\xdc\x18\x41\x85\x47\x6d\xf7\x5b\xf8\x0e\x89\x52\xad\x3c\xb6\xa3\x91\xb5\x63\x20\x23\xc4\x4e\x07\x68\x51\xc5\xd1\xe3\x06\x2a\xac\x15\xd9\x82\xe8\xf4\x7a\xdf\x45\x50\x75\xad\xd9\x1c\x0b\x47\x68\xb5\xc1\x0d\xd1\x73\x07\xf4\x47\xaf\xd9\x9a\x47\x32\xff\x51\xec\xe5\x11\x2a\x6c\x9d\xbf\x68\xa6\x56\x99\x90\xec\x54\xa9\x80\x56\xf5\x64\x27\x6d\xd9\x34\xda\xb6\xae\x52\x7e\x03\xa1\x73\x47\x70\xd6\x4c\x62\xb1\xb4\x30\x3b\x3a\x49\x00\x15\x12\x5f\x6c\x74\xc4\x86\xa4\xf1\x8a\x58\x93\x1f\x08\xad\x76\x34\x06\x06\x15\xbb\x6d\x41\xaf\xe1\x19\x41\x6a\x67\x9c\xaf\x9d\x19\x7b\x4b\xb2\xb4\x62\x96\xc5\x4f\x21\x3a\xf8\x6a\x03\x6c\x58\x63\xa0\xd1\x61\x30\x6a\x02\x05\xb2\x07\x54\x24\x8e\x05\xb0\xdb\xeb\x56\x63\x93\xde\x6c\xe1\x43\xa2\x34\x06\x36\xbd\x6e\xd9\xb8\x47\x65\x63\xde\xfc\xcd\x57\x44\xbe\x42\xe8\xf4\xbe\x33\x64\x75\xd6\x87\x49\x29\x03\xad\xf3\x80\x1f\x55\x3f\x98\x8b\xe6\xfc\x6a\xa5\x41\xa8\x3b\x64\x6b\x1a\xa7\x9a\x1c\xaf\xf3\x73\x01\x8c\x86\x4c\x4d\xf6\x78\x75\x2b\x91\xf5\x46\xfb\xbb\x87\xd5\xb2\xf0\x50\x4a\x48\x95\x5b\x76\xde\x8d\xa8\x10\x30\xf2\x39\xeb\x00\xe5\xde\xb8\x4a\x19\x3e\x9e\xf2\x92\x4c\xe9\x77\x59\x14\x57\x3f\xbb\x88\x12\x9a\x24\x4d\x5e\xb8\x66\x07\xb7\xe9\xe9\x06\x82\x33\xca\xeb\x4f\xd8\x6c\xd8\xaf\xe7\x9f\xf7\xb1\xbe\x2b\xae\x28\xe0\xe9\x3c\x8c\xab\x55\x14\x3d\x66\x0d\x16\xd7\x8d\x1d\x4e\x8c\x0d\xd8\x57\xd8\x34\xb2\x8e\x78\x4b\x24\x56\xda\x2a\xc6\x90\xab\x0f\x67\xd6\x21\xd8\xa8\x10\x02\x1a\xac\x89\x7c\xeb\x5d\xcf\xe0\x9a\x1d\x2e\x64\x4a\xc5\xd5\x19\x68\x9d\x9a\x6f\x8d\x8a\x82\xae\xb5\x23\x3d\xab\x69\xd6\x9f\xc2\x13\x62\xe7\x11\x8b\xab\xf5\xde\x5d\x51\x5c\xfd\x25\x41\x98\x47\xd5\x40\xef\x08\xe9\x2a\x0a\x65\xe6\x74\x13\x4e\x6d\x97\x24\x4a\xc7\x5f\x42\x87\x66\x80\xe8\x06\x5d\x17\x57\xb7\x25\xff\x4a\xaf\xee\xb6\xe2\x27\xa3\x0f\xce\x13\x84\x95\xbb\xc5\xe1\x98\x08\x23\xe1\x7c\x54\xb2\x90\x8e\x5b\xb2\x88\x82\x46\x13\x6c\xa1\x4d\xc7\x47\x3e\x74\x3b\xbb\x18\x2d\x6c\xb0\xd5\x16\x1b\x52\xf4\xdc\xf5\xc8\xe7\xe9\x50\x18\x74\xee\x9e\x47\x4f\xb4\xb5\x6b\xb4\xdd\x97\x3b\x26\x93\x7f\x52\x90\xb8\x01\xad\xb8\x06\x21\x91\x1c\x0a\xd9\x72\x0b\xef\xc7\x61\x70\x9e\xce\x2d\xaf\x0f\x8c\x9d\x9e\xf4\x0a\xf4\x5c\x45\xe8\x62\x1c\xc2\xee\xe1\xe1\x78\x3c\x6e\x8f\xbf\xdf\x3a\xbf\x7f\xf8\xf0\xa7\x87\xbc\xe1\xe1\x09\x9c\x18\x63\x7b\xff\x4d\x12\xcd\xb5\x16\x8f\xc9\x7a\x2b\x68\x3f\x05\x66\xd5\x34\x92\x5c\xc4\xa2\x6e\xf6\xa0\x17\xe0\xb0\x55\x21\x36\xda\xc7\x89\x35\x67\x83\x46\xf4\xbd\xb6\xa4\x25\x9d\xcb\xa3\xb6\x0d\x41\xa0\x32\x7b\xe7\x75\xec\xfa\x24\x83\x64\x6f\xb7\xac\x07\xdd\xb2\xf6\x39\xd5\xe8\x00\xbd\x6b\x04\x98\x9c\xa7\x28\xda\xc2\x7f\x50\x12\x58\xf1\x94\xa3\xde\x24\x92\xff\x1c\x43\x14\xba\x8a\x28\x55\xce\x19\x54\x16\xca\x4c\xa6\x14\x4f\x11\x60\x20\xde\x72\x80\x94\x30\x83\x5b\x12\x27\x57\x24\xbd\x7a\x24\x3a\x96\xb1\x7a\x4b\xe4\x32\x28\x12\xf7\x0d\x54\x63\xcc\xd1\xa7\xad\xaa\x6b\xaa\x2e\x70\x0b\x3f\xb6\x9f\x89\xd7\xb6\x1b\x22\x6b\x57\xb6\x27\x72\x9d\x0a\x5d\x76\x5a\x76\xd0\xa4\xb6\xda\x2b\x6d\x43\x04\x25\x2b\x52\xf2\x70\x5e\xef\xb5\x25\x64\xa5\x2c\x72\xcb\xf5\x00\x36\x92\x14\x05\xc5\xf3\x7e\x4a\x67\x04\xa5\xd8\xdc\x2d\x40\x2e\x21\x99\xa4\x64\xd9\x5d\xc5\x85\x81\x99\xe4\x9d\xc7\xe0\x46\x5f\x33\x21\x6d\x23\xda\xa0\x0f\x98\xf6\x0b\xb2\x8a\xa9\xcd\xc4\xd8\x3e\xa0\x1b\x0c\xc2\xb1\x73\x14\xf2\xe4\x3f\x94\xa6\x53\xd0\x77\xea\xa0\xed\x9e\xcf\x32\x73\x9c\x0f\x32\x44\x15\xc7\xf0\x7c\x2c\x91\x8a\xad\xf3\xbd\x8a\x2f\xf9\x14\xfb\x2a\x5a\x8e\x9c\xb5\x6b\x13\xa6\x92\x98\xc9\x32\xec\xc6\xf0\xe7\x9f\x7f\xfc\xe5\x74\x07\x89\xcc\x3e\x53\xfe\xcd\x96\x70\x6b\xda\x3b\x32\xa8\x47\x15\xa0\x71\xe1\xb3\xb5\x44\xaa\xfc\x9b\xe7\xb5\xb5\x37\x2d\xdb\x17\x21\x1e\x1d\x0c\x2e\x04\x5d\x19\x14\x6d\x42\x62\xbe\xd8\x8e\x38\x95\xa3\xd5\x1f\x4b\x46\x82\xb2\x71\xa1\x4c\x4e\x25\x51\x26\xfa\x8a\xf4\x15\x9e\xc5\x26\xa9\xcf\xf0\x4e\x7b\x53\x1e\xa7\xa0\x10\x1c\x15\x93\x92\xb0\xe2\x05\xf1\x84\xf3\xe7\x59\xdc\x8d\xa6\x01\xa3\x1f\x39\xca\xeb\x4e\xd9\x3d\x2e\x50\x9a\xd5\x25\x70\xe4\x70\xcc\x20\x18\xa2\xf2\xab\x0a\xf4\x29\x64\x60\x1d\xe7\x53\x8c\xd3\x40\xa0\x13\x30\x86\x19\x4f\xe8\x59\x3e\x9c\x33\xdf\xdf\x9e\x67\x6d\xb6\x38\xa5\xce\xa7\xf3\x36\xeb\x7a\xd9\x6c\x14\xe4\x0d\x0e\xa2\x52\xb6\x16\xc7\x0f\x29\xd5\xa9\x03\x16\x57\x04\xce\x2c\xae\xde\x5b\xe7\xb1\x56\x81\x04\x1e\xd0\xd3\x81\x00\xfd\xbc\xd7\x36\x50\x38\x44\x7d\xa0\x44\xab\x7c\xdd\xe1\x45\x07\x5e\x81\xa2\x54\xe3\x75\xa7\xfc\x5a\xfb\x75\x8d\x4e\xef\x54\x1d\xd1\x5f\xa2\x04\x99\x0a\xd7\x95\xe5\x0e\xd0\xaa\xca\xa4\x66\x87\x8f\x29\xe5\xbb\xca\xc5\xe8\xfa\x8c\x11\x84\x54\xce\x8b\x0b\x43\x8f\x21\xa8\x3d\xce\x8e\x3b\x78\x0a\xeb\xe6\xb3\x90\x7e\xb1\x2e\x5a\xe2\xf2\x11\x71\xf8\xbc\x35\x91\x92\x7c\x79\xbe\x81\x63\xa7\x23\x86\x41\xd5\x48\x0c\x14\xd7\x33\x74\xe0\x93\x1b\x85\x3d\x97\xe1\x22\xc1\x2a\xb2\x75\xbb\xf4\x03\xbd\x3b\xcc\x49\xc8\xe2\xc7\x28\x5a\xcf\x0d\x82\x9d\x80\x4e\xc5\x4b\x6b\x09\xc0\xeb\x56\x6c\x63\xae\xeb\x85\x79\xe8\xd8\xe7\x2b\xaa\xe5\x0c\xb2\x15\xbe\x5b\xea\x1a\xda\xbb\x88\x4f\xd4\x4e\x15\x48\x7b\xa4\xc2\x4e\xf6\x67\x90\xc5\x36\x02\xf6\x43\x9c\x5e\xf0\x86\x47\x9c\x7a\xb4\x63\xb9\x9b\x6b\x70\x56\x4b\x59\x77\x1f\xe2\x64\x10\x1e\x71\x02\x5a\x71\xf9\x58\x43\xed\x11\xed\x16\xa8\x2a\x15\x5d\x55\x84\x0f\x6e\xbf\x37\xf8\x07\x9c\x7e\xa2\x7d\x3a\x40\xe5\x46\xdb\x70\x4e\x7b\x6d\xe2\xfd\xbe\x5c\x57\x6e\x04\x1b\xb9\x39\x58\xe0\x43\xdb\x6c\xb9\x05\x41\xb6\xf0\xc1\xd1\x12\x72\x37\xde\xb2\x81\xa0\xfb\xc1\x4c\x44\x2e\x53\x26\x26\x7f\xb6\x95\xb6\xcd\x1f\xf0\xb2\xcf\xac\x94\xef\x55\xac\xbb\xca\xab\xfa\xb4\x76\xe3\xc7\xe4\x38\xfc\x4a\x00\xf3\xe6\xf6\xee\x66\x03\x37\xbf\xfe\x46\xff\xff\xeb\xdf\x6f\x5e\xec\x80\x16\xda\x74\x16\xd9\x21\x67\xd2\x0a\x6a\xe3\xc2\xcc\x64\x93\xfd\x60\x5e\xc0\x7f\xcc\xe9\x93\xd6\xa4\x32\xd8\x4c\x30\xda\x06\xfd\xaa\xa8\xdc\x40\x86\xac\x1c\xb9\xd9\x3f\x89\xf7\xb7\x92\x1a\x7b\x15\x23\x7a\xf6\x48\xdd\x9e\xe8\x4e\xa6\xa7\x48\x7a\x59\x27\x37\x32\x04\x1d\x3b\x94\xce\xd0\xa5\xe8\x07\x7e\x03\x41\x6a\xc6\x54\x0a\x9d\x3c\x4b\xc7\x4b\x8b\x1b\x6e\x75\xc7\x30\x32\x10\x92\x94\x12\x66\xca\x2c\x58\xc9\x47\xec\x28\x47\x63\x08\x89\x12\x1e\xd0\x46\x4a\xb2\xba\xee\x72\x79\x23\xe9\x23\xe9\x34\xf7\x81\x94\x3b\xdc\x30\x49\xc7\x71\xc2\x80\xaa\x17\x6a\x03\x5c\x2b\x2f\x25\x2f\xdf\xea\x96\x5b\x6f\x08\xa1\xa3\xd3\x26\x7a\xa9\x43\x3c\xe9\x83\x16\x3a\x1d\xc5\xaf\x08\x97\x2d\xcd\x99\xa0\x36\x7a\xa8\x9c\xf2\x92\x0e\xfb\x3c\x71\x68\x1c\x72\xeb\xfb\x42\xa1\x3e\x98\x71\xaf\x2d\xa5\x3d\x8b\x26\x94\x3b\x6a\xc7\x22\x55\x5c\x73\xdb\x94\xdf\xcd\xcd\x8b\x6c\x81\x5e\x59\xb5\xa7\x02\x8b\xe7\x22\x9c\x08\xb8\xb8\xa0\x72\x88\x57\x50\x67\xb3\x85\xd7\x99\x00\xd7\x99\x12\x3c\x8a\xeb\x79\xb2\xc8\x8d\xc7\xc1\x05\xc2\xe9\xe9\x06\xfe\x19\x9c\xcd\x0d\x01\x59\x9c\xc7\x1d\x22\x0e\xf4\x18\x55\xa3\xa2\x4a\x35\x15\x09\xb6\xd7\x07\xb4\x89\xd7\x16\xde\xa3\xd8\xab\xfc\xa3\x88\xf7\x93\x88\x57\x42\xc0\x9a\xa1\xd5\xb5\x39\xbe\x93\xd2\x27\xad\x16\xcb\xcd\xa5\x1f\xa5\x19\x2a\x3e\xb4\xb3\x97\x4c\x97\xfb\x8f\xbd\x8e\xdd\x58\x6d\x6b\xd7\x4b\xff\x78\x2f\xe9\xe6\x41\x68\xdf\x27\xa5\xd7\x46\x66\x55\x2f\x59\x78\x31\x82\xc6\x70\xf3\x9c\x9d\x49\x03\x31\xf5\x05\x3b\x2f\xa6\x24\x16\x41\x87\x18\xb8\xd1\x80\x92\xde\x6c\xc9\xba\xa5\xe4\xfb\x73\xeb\x86\xc5\xbc\x44\x56\x01\xa1\x84\xc1\x6c\xdb\xa7\x53\xb2\xef\xa3\x57\xda\x68\xbb\x3f\x86\xe7\xba\xa9\xe8\x75\x0f\x79\xe9\x2a\x9f\x04\x82\x78\x74\xe6\x05\xd0\xf4\xa3\x41\xbf\xca\x17\x9c\x73\xec\xd8\x57\xe8\x5f\xa8\x9d\xa9\xc7\x14\xc0\x2a\x77\xe0\xb1\x47\xda\x93\x4a\x82\x55\x87\xcc\xf9\x4b\x85\x08\x51\xf7\xb8\xd4\x45\xf4\x98\x2a\x22\x29\x35\xb9\x6c\x18\x23\xe8\x98\xe6\x63\x73\x7a\xe6\x96\x76\xde\xc5\x1d\xcb\x0b\x1a\x91\x5c\x9d\x0e\x74\x58\x6b\xc1\x6a\xd7\xf7\x14\xc5\xe9\x15\x54\x18\x8f\x88\x76\x06\x6e\x7a\xe7\xf1\x9e\xf8\xa5\x96\x82\x4d\xfe\x44\xd3\x7b\x6a\x86\xd1\x36\x2e\xe7\x84\x78\xde\xc7\x6c\x08\xe0\x1d\x87\xa8\x3a\x50\x03\x4e\xa1\xa5\x5a\x82\x75\x1e\xc7\x1a\x17\xf2\xd4\x90\x7d\xd0\x65\xf0\x4b\x6f\x58\x2e\xe9\xec\x65\xb4\x38\x4f\x71\xa9\x4a\x62\xe2\xda\xee\x5f\x32\x4a\xed\x9d\x31\x52\xe2\x2d\xe3\x39\x79\x0a\x95\xf2\x2f\x26\x0b\x59\xda\x2b\xbf\xd7\xb6\xdc\x81\xea\xdd\x68\x63\x6e\x8c\xc2\x85\x72\x3f\x20\x37\x69\x69\x06\x5b\xa1\x71\xc7\x9c\xff\xc4\x33\x2e\x49\xfc\xfb\x35\xb3\x30\x20\x36\x17\x78\x11\x71\x11\x9c\x22\xca\x59\xcc\x3f\x39\xa5\x5c\x22\xfb\xbb\x44\xb6\x57\x3e\x0e\x2a\x44\xee\x14\x52\x86\xe6\xb8\x52\x4d\x03\x06\x55\x73\x1a\x42\x72\xa0\xb4\x81\x53\xf8\x68\xa2\xa6\x56\x94\xa5\xf8\x76\xee\xd3\x25\x26\x63\xa4\xfa\x8c\x64\x1b\x3c\x06\xf4\x07\x3c\xe9\x3a\xd6\x05\xb9\xc1\x03\x9a\x53\xda\x8a\x0b\xa4\xd1\xca\x32\x6c\xa0\x32\xae\x7e\x7c\x21\xfe\x5c\x1b\x8f\x5e\x0d\xe7\xba\xd0\xb3\x6c\x29\xaa\xdf\xf8\x22\xc0\x39\x30\x4e\x86\x44\xad\x8e\x73\x3f\x27\xf5\xde\x0b\xae\x33\x18\x1d\xa5\x4e\xcc\x3e\xae\xa0\x73\x5e\x7f\x22\x84\x33\xc0\xef\xc9\xbd\xd3\xa4\x60\x2e\x7e\x74\xa4\x9c\x9e\xe7\x07\xec\x01\x39\x4d\x64\xb3\xf0\xde\x6f\x9f\x57\x93\x96\x78\xaa\xe4\x16\xee\x07\xaa\xc7\xeb\x7f\x9d\xb7\x24\x75\x1e\x82\x73\x49\x98\xca\xdd\xff\x89\x14\x5c\xb7\x4a\xf6\x32\xe5\x0e\x52\x13\x1d\xa2\xa7\xe3\xe3\xc9\x9e\xe6\xc3\xcd\xed\x26\x95\x6a\xf7\xd4\xf1\xcb\x30\x62\x50\x3e\xb3\xe5\x20\x5f\x95\xc1\xef\xd3\x20\x5b\xea\x41\x7d\xc0\xb0\xea\x22\x06\xa3\x6a\x2e\xa0\x83\x6e\x10\xca\x57\xb7\x77\xe5\xbc\x83\x4b\x91\x65\x93\xb6\xb5\x19\x1b\x3e\x3c\x6d\xe4\xde\x60\xb3\x1a\x48\x6d\xa0\xe4\xc1\xdc\x86\xa7\xa1\xf4\x8f\x1b\x22\xfd\x43\xd5\xf5\x32\x21\xe0\xa7\x32\x39\xe0\x17\x6b\x0e\x51\x3d\x22\xa0\xe6\x62\x51\xd9\x0c\x72\x8e\x7f\x28\xa9\x04\x18\xd7\x8e\xca\x33\xa2\x13\x95\x96\xa2\x23\x8d\x61\xd9\xac\xf3\x98\x69\xde\x4d\xbf\xa8\x2f\x99\xfb\x0a\x6e\x93\xea\x54\x25\x5c\xc2\xa5\x57\xb7\x59\xc5\x3b\x78\x75\x9b\x55\xbc\xbb\x7d\x75\x4b\x2a\xde\x6d\x5e\xdd\xd6\xce\xdc\xd1\x3b\x37\xc4\x5d\x1e\x05\xdc\x31\xad\xf3\xff\x96\x35\x72\xa6\x79\x57\x1e\x7b\xde\xfd\x5f\x3b\xc0\x53\x2a\x92\xf9\x77\x27\xcd\xd7\xdd\x4e\xee\x7d\xe8\x8d\xb6\xfb\xb0\x81\x93\x55\x3f\xa0\x19\xee\x76\x17\x95\x8c\xbc\x80\x6b\xb2\xb5\x3a\x69\x52\xbb\xee\x15\xe5\xc5\x33\xad\xff\xd3\x98\xb1\x8a\x96\xb1\xee\x09\xb9\xf3\x75\x8f\x8c\x13\xc2\x38\xa0\xcf\x97\xb0\x9c\x8c\xb7\xf0\x8e\x1a\x8b\x10\x21\x4c\x21\x62\x1f\xe6\xde\xf1\x3a\x8c\x8d\xbb\x86\x6a\xe4\x2e\xd9\x59\xf8\xee\xfd\x1b\x0a\xea\xd4\x28\x5c\x37\x4e\x85\xed\xf5\xc9\x84\x21\xbd\xaa\xc7\x10\x5d\xaf\x3f\xa5\x19\x56\x1e\x25\xf2\x9d\x29\xc1\x07\x5b\x9f\xc7\x86\x72\xcd\x10\xc6\x4b\xba\x10\xfb\xa4\xcb\x64\xa3\xfa\x58\xee\x20\x8e\xde\x06\x90\x9f\x20\x9e\xeb\xda\xf6\x79\x43\x44\x55\xf5\xee\x80\xbd\x0c\x31\xac\x3a\xe8\xbd\x8a\x08\x4b\x81\xc6\xf6\xc5\xbd\xb6\x96\x07\x47\x39\xc5\xa9\x90\x66\x00\x72\x57\x13\x55\xc5\x9d\xde\x2d\x6e\xf7\x5b\x99\x58\x70\x83\xf3\xf5\x8a\x92\xb3\x35\xde\x9d\xce\x5c\x58\x71\x6e\x56\x94\x9d\x22\xf7\xa1\x32\x69\x23\xb9\x42\x74\xb2\x39\x4d\xb6\x5f\xc8\x02\xb4\x43\x7f\x3a\x19\xb1\x45\x55\x01\x3d\xe3\x2e\x3d\xdd\x89\x5d\x20\xf2\xf5\x42\x60\x66\xb9\xe3\xb9\x69\x12\x7e\xd5\xc5\xb1\xa2\xcf\xcb\x81\xbe\x8f\x3a\x1a\xf6\x5b\xbe\x50\x09\x73\x03\x2b\xa3\x7b\xaa\x45\xfc\xdc\xdb\xdd\x04\xe0\xe5\x73\x33\x1a\x30\x42\x35\x2d\xcd\x1c\xa7\x14\xa9\x44\x5f\x30\xc1\x18\x70\xf0\xba\x57\x7e\x2a\xe1\x36\x3b\x55\x3b\x1a\x72\x86\x2f\xad\xfe\x78\xf7\xa4\x44\x67\xf3\xe2\x84\x01\x89\xd8\xaa\xcb\xcc\x9d\xae\x5c\xb2\xf1\xb5\x7d\x82\xce\x4a\xd5\x8f\x7b\x4f\x00\x99\x8e\x38\xf7\xa0\xa0\xda\x16\xeb\x98\x13\xab\x25\x58\x5a\x37\xae\x32\x33\xfb\x3e\x7a\x73\xff\x3d\x07\x04\xff\xf9\xef\xcf\xb8\xed\xfd\xfd\x7d\x51\xbc\x49\xef\x52\xa3\x94\x3e\x22\x58\xbe\x19\xe0\xda\x94\x6a\xb3\x93\x5e\x44\x2a\xd6\xf2\xd7\xdf\x4a\x28\x6f\xef\x4a\x28\xff\xfa\xf7\x12\xca\xeb\xeb\x12\xca\x9b\x9b\x72\x0b\x7f\xf4\xee\xa0\x9b\xf9\x0a\x8c\x5d\x71\xa1\x96\x98\x3d\x3f\xb0\x8f\x49\x94\x72\xb7\x1a\x3b\x6d\x4e\xbe\x23\xc0\x08\xc1\xf5\xcb\x97\x0f\x95\x0a\xcb\x08\x3b\x27\x83\x2d\xbc\x9e\x8d\xd6\xbb\x9e\xa7\x89\xe7\xc7\xa4\x2a\x99\x16\xf5\xea\x11\xa5\x77\xe6\xbb\xb5\x61\x1e\x23\x0d\x53\xec\x9c\xdc\xb8\x4d\xaa\x37\xf9\x02\x20\x80\xc7\xbd\xf2\x8d\xc1\xc0\x6d\x22\x3b\x64\x1a\x35\x07\xbe\xb8\xf9\xbc\x5c\x5e\x4f\xc2\xa0\xc2\x4e\x1d\xb4\x4c\x2e\x08\x76\x4e\x9a\x8a\x17\x41\xc7\x68\x1b\xb9\xa7\x7b\x7d\x72\x38\xf4\x78\xbe\xc5\x91\x76\x2a\xf7\x24\x9f\x9d\xcc\x4c\x84\xfd\xf4\xc9\x56\x35\xf1\x7c\x6d\xa7\x2c\x1c\x29\x46\x07\x90\xdc\x36\xcf\x89\x73\xec\x71\x03\xb4\xba\xf1\x83\xe2\xfc\xaa\x78\x36\x13\x4f\x2c\x82\xdb\x10\x29\x64\x1f\xdf\x88\x21\x4f\x3f\xb1\x91\x66\x32\xd1\x2f\x72\xc1\x37\xcf\x80\xc5\xd6\x37\x8b\x9d\xb9\x86\xb9\x40\x87\x73\x01\x49\x1f\x1d\x28\xeb\x28\x7a\x8b\x5e\xd5\x9d\xb6\x38\x0f\x26\x39\x36\x39\x93\x9d\x08\x99\xf4\xe1\x3d\x90\xf6\x6c\x8b\xa2\xf8\xe2\x0b\x78\x2b\x13\x6f\x72\x10\x99\x28\xe5\x9d\x45\xf1\x97\xe5\x53\x1c\xda\x1e\x16\xaa\xb9\xc4\x92\x71\xb9\x99\x08\x45\x78\xb7\x99\xb6\xf0\x6f\xf2\x07\xf4\xa8\xf2\x47\x3d\x14\x49\xf9\x22\xe3\xe8\xec\x4d\x3c\x31\xf5\xf9\x17\x44\xa7\x16\x2e\xd3\xc4\x56\xc5\xf9\xeb\x0d\x42\xb6\x22\x01\x65\x3a\xc6\xf3\xbb\x93\xf7\x89\xdb\x52\x04\xce\xb2\xea\xb0\xfe\x92\x81\x3f\x54\x28\xe6\xb0\x5c\xd5\x7d\xda\xf2\x8c\x46\x28\x86\x6d\x51\x7c\x58\xee\xe9\xe5\x33\x8d\x55\x13\xbd\xba\x38\xd8\x24\x81\x71\x75\xed\xb3\x5a\xc9\x76\x2a\x68\x21\xcf\x97\x89\xe9\x22\x64\x32\xe2\x86\xa3\xbb\x0c\x18\xf9\x41\xb9\x4e\x40\xf4\xb4\xdc\x16\xc5\x8f\xe9\xc3\x81\x33\x63\xcd\x57\x3a\x74\x72\xfc\xe1\xd1\x30\xca\x17\x30\x19\x6c\x12\x0f\x8a\x23\xa9\x7e\x26\xfe\x0a\x87\x4f\xb4\x50\xac\x09\x57\xcc\x2b\x20\xe2\xcf\xb5\xb4\xdc\x00\xcb\x98\x32\x4d\x45\x3b\x15\xce\x53\x75\x2a\x30\xc9\x74\x82\x34\xf8\xb1\xc6\x21\xc2\x5b\x57\xf0\x6f\x31\xcf\x9c\xad\xe1\xeb\xcb\xcb\xff\x34\x56\x93\x3c\xd9\x15\x45\x59\x96\xa4\x5d\xf1\x6b\x71\x75\xdd\xc6\xdd\xde\x5d\xef\xe0\xd7\xe2\xea\xea\x7a\xcd\xfa\x7a\x07\x9c\x0a\x8b\xab\xdf\x36\xb2\xce\x8f\xd5\xb4\x5e\xa9\x3f\xe1\xf5\x0e\x7e\x97\x16\x9c\xed\x25\xa4\xc8\x8f\x65\xe1\xd7\xc5\x6f\xc4\xb9\x28\xde\x79\x8a\x2f\x6d\x94\x37\xd3\x6c\x5b\x99\x97\x73\x50\x92\xc9\xce\xc5\xfc\x72\xfb\x2f\x49\xf9\xe5\xd6\x57\xff\x0b\x22\xfe\x77\x00\x00\x00\xff\xff\xe0\xf7\xe9\xe1\x5b\x28\x00\x00"
 
 func runtimeHelpOptionsMdBytes() ([]byte, error) {
        return bindataRead(
@@ -3619,7 +3598,6 @@ var _bindata = map[string]func() (*asset, error){
        "runtime/help/colors.md":                                  runtimeHelpColorsMd,
        "runtime/help/commands.md":                                runtimeHelpCommandsMd,
        "runtime/help/defaultkeys.md":                             runtimeHelpDefaultkeysMd,
-       "runtime/help/gimmickcolors.md":                           runtimeHelpGimmickcolorsMd,
        "runtime/help/help.md":                                    runtimeHelpHelpMd,
        "runtime/help/keybindings.md":                             runtimeHelpKeybindingsMd,
        "runtime/help/options.md":                                 runtimeHelpOptionsMd,
@@ -3830,15 +3808,14 @@ var _bintree = &bintree{nil, map[string]*bintree{
                        "zenburn.micro":      &bintree{runtimeColorschemesZenburnMicro, map[string]*bintree{}},
                }},
                "help": &bintree{nil, map[string]*bintree{
-                       "colors.md":        &bintree{runtimeHelpColorsMd, map[string]*bintree{}},
-                       "commands.md":      &bintree{runtimeHelpCommandsMd, map[string]*bintree{}},
-                       "defaultkeys.md":   &bintree{runtimeHelpDefaultkeysMd, map[string]*bintree{}},
-                       "gimmickcolors.md": &bintree{runtimeHelpGimmickcolorsMd, map[string]*bintree{}},
-                       "help.md":          &bintree{runtimeHelpHelpMd, map[string]*bintree{}},
-                       "keybindings.md":   &bintree{runtimeHelpKeybindingsMd, map[string]*bintree{}},
-                       "options.md":       &bintree{runtimeHelpOptionsMd, map[string]*bintree{}},
-                       "plugins.md":       &bintree{runtimeHelpPluginsMd, map[string]*bintree{}},
-                       "tutorial.md":      &bintree{runtimeHelpTutorialMd, map[string]*bintree{}},
+                       "colors.md":      &bintree{runtimeHelpColorsMd, map[string]*bintree{}},
+                       "commands.md":    &bintree{runtimeHelpCommandsMd, map[string]*bintree{}},
+                       "defaultkeys.md": &bintree{runtimeHelpDefaultkeysMd, map[string]*bintree{}},
+                       "help.md":        &bintree{runtimeHelpHelpMd, map[string]*bintree{}},
+                       "keybindings.md": &bintree{runtimeHelpKeybindingsMd, map[string]*bintree{}},
+                       "options.md":     &bintree{runtimeHelpOptionsMd, map[string]*bintree{}},
+                       "plugins.md":     &bintree{runtimeHelpPluginsMd, map[string]*bintree{}},
+                       "tutorial.md":    &bintree{runtimeHelpTutorialMd, map[string]*bintree{}},
                }},
                "plugins": &bintree{nil, map[string]*bintree{
                        "autoclose": &bintree{nil, map[string]*bintree{
index 2d0787a9fb10f72fe5a7cf1c5ff3b6d46fc8f814..45c396345663f7c09f862a590204b1bdf765e55b 100644 (file)
@@ -140,7 +140,6 @@ func DefaultCommonSettings() map[string]interface{} {
                "eofnewline":     false,
                "fastdirty":      true,
                "fileformat":     "unix",
-               "hidehelp":       false,
                "ignorecase":     false,
                "indentchar":     " ",
                "keepautoindent": false,
@@ -153,10 +152,12 @@ func DefaultCommonSettings() map[string]interface{} {
                "scrollbar":      false,
                "scrollmargin":   float64(3),
                "scrollspeed":    float64(2),
-               "softwrap":       false,
                "smartpaste":     true,
+               "softwrap":       false,
                "splitbottom":    true,
                "splitright":     true,
+               "statusformatl":  "$(filename) $(modified)($(line),$(col)) $(opt:filetype) $(opt:fileformat) $(opt:encoding)",
+               "statusformatr":  "$(bind:ToggleKeyMenu): show bindings, $(bind:ToggleHelp): toggle help",
                "statusline":     true,
                "syntax":         true,
                "tabmovement":    false,
index 6731c2c8c995341a66a020086fd4504075a6b79d..9a92d3cfc0be063084582c2db5b0c622b71bfcb3 100644 (file)
@@ -70,6 +70,7 @@ func (s *StatusLine) Display() {
        y := s.win.Height + s.win.Y - 1
 
        b := s.win.Buf
+       // autocomplete suggestions (for the buffer, not for the infowindow)
        if b.HasSuggestions && len(b.Suggestions) > 1 {
                statusLineStyle := config.DefStyle.Reverse(true)
                if style, ok := config.Colorscheme["statusline"]; ok {
@@ -124,9 +125,9 @@ func (s *StatusLine) Display() {
                }
        }
 
-       leftText := []byte(s.win.Buf.StatusFormatLeft)
+       leftText := []byte(s.win.Buf.Settings["statusformatl"].(string))
        leftText = formatParser.ReplaceAllFunc(leftText, formatter)
-       rightText := []byte(s.win.Buf.StatusFormatRight)
+       rightText := []byte(s.win.Buf.Settings["statusformatr"].(string))
        rightText = formatParser.ReplaceAllFunc(rightText, formatter)
 
        statusLineStyle := config.DefStyle.Reverse(true)
index a1e64cbcafe841f768e29271b99c0cb27d422589..e282d9923e3a244a8e733c9210585b6a56682bff 100644 (file)
@@ -77,6 +77,8 @@ Here are the possible commands that you can use.
 
 * `open filename`: Open a file in the current buffer.
 
+* `reset option`: resets the given option to its default value
+
 * `retab`: Replaces all leading tabs with spaces or leading spaces with tabs
    depending on the value of `tabstospaces`.
 
index d9a44aecf4ca8ab46da7218ca31c74be7df04f35..ef1d068b3f4658e0fe463699cb45fec0cb7e82da 100644 (file)
@@ -200,6 +200,21 @@ Here are the options that you can set:
 
        default value: `true`
 
+* `statusformatl`: format string definition for the left-justified part of the
+   statusline. Special directives should be placed inside `$()`. Special
+   directives include: `filename`, `modified`, `line`, `col`, `opt`, `bind`.
+   The `opt` and `bind` directives take either an option or an action afterward
+   and fill in the value of the option or the key bound to the action.
+
+    default value: `$(filename) $(modified)($(line),$(col)) $(opt:filetype)
+                    $(opt:fileformat) $(opt:encoding)`
+
+* `statusformatl`: format string definition for the left-justified part of the
+   statusline.
+
+    default value: `$(bind:ToggleKeyMenu): show bindings, $(bind:ToggleHelp):
+                    toggle help`
+
 * `statusline`: display the status line at the bottom of the screen.
 
        default value: `true`