diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | internal/app/api.go | 36 | ||||
-rw-r--r-- | internal/app/api_test.go | 95 | ||||
-rw-r--r-- | internal/app/metrics.go | 29 | ||||
-rw-r--r-- | internal/assets/public/public_gen.go | 48 | ||||
-rw-r--r-- | internal/assets/templates/templates_gen.go | 14 | ||||
-rw-r--r-- | internal/cmd/web.go | 16 | ||||
-rw-r--r-- | internal/db/user.go | 2 | ||||
-rw-r--r-- | public/plugins/marked-0.3.6/marked.min.js | 6 | ||||
-rwxr-xr-x | public/plugins/marked-0.8.1/marked.min.js | 6 | ||||
-rwxr-xr-x | public/plugins/notebookjs-0.3.0/notebook.min.js | 1 | ||||
-rwxr-xr-x | public/plugins/notebookjs-0.4.2/notebook.min.js | 1 | ||||
-rw-r--r-- | templates/base/head.tmpl | 4 | ||||
-rw-r--r-- | templates/repo/view_file.tmpl | 39 |
14 files changed, 234 insertions, 65 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f961255..438a981e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,12 +32,14 @@ All notable changes to Gogs are documented in this file. - Configuration option `[auth] ENABLE_NOTIFY_MAIL` is deprecated and will end support in 0.13.0, please start using `[user] ENABLE_EMAIL_NOTIFICATION`. - Configuration option `[session] GC_INTERVAL_TIME` is deprecated and will end support in 0.13.0, please start using `[session] GC_INTERVAL`. - Configuration option `[session] SESSION_LIFE_TIME` is deprecated and will end support in 0.13.0, please start using `[session] MAX_LIFE_TIME`. +- The name `-` is reserved and cannot be used for users or organizations. ### Fixed - [Security] Potential open redirection with i18n. - [Security] Potential ability to delete files outside a repository. - [Security] Potential ability to set primary email on others' behalf from their verified emails. +- [Security] Potential XSS attack via `.ipynb`. [#5170](https://github.com/gogs/gogs/issues/5170) - [Security] Potential RCE on mirror repositories. [#5767](https://github.com/gogs/gogs/issues/5767) - [Security] Potential XSS attack with raw markdown API. [#5907](https://github.com/gogs/gogs/pull/5907) - Open/close milestone redirects to a 404 page. [#5677](https://github.com/gogs/gogs/issues/5677) diff --git a/internal/app/api.go b/internal/app/api.go new file mode 100644 index 00000000..c64e946e --- /dev/null +++ b/internal/app/api.go @@ -0,0 +1,36 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package app + +import ( + "net/http" + + "github.com/microcosm-cc/bluemonday" + "gopkg.in/macaron.v1" + + "gogs.io/gogs/internal/context" +) + +func ipynbSanitizer() *bluemonday.Policy { + p := bluemonday.UGCPolicy() + p.AllowAttrs("class", "data-prompt-number").OnElements("div") + p.AllowAttrs("class").OnElements("img") + p.AllowURLSchemes("data") + return p +} + +func SanitizeIpynb() macaron.Handler { + p := ipynbSanitizer() + + return func(c *context.Context) { + html, err := c.Req.Body().String() + if err != nil { + c.Error(err, "read body") + return + } + + c.PlainText(http.StatusOK, p.Sanitize(html)) + } +} diff --git a/internal/app/api_test.go b/internal/app/api_test.go new file mode 100644 index 00000000..8b123078 --- /dev/null +++ b/internal/app/api_test.go @@ -0,0 +1,95 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package app + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func Test_ipynbSanitizer(t *testing.T) { + p := ipynbSanitizer() + + tests := []struct { + name string + input string + want string + }{ + { + name: "allow 'class' and 'data-prompt-number' attributes", + input: ` +<div class="nb-notebook"> + <div class="nb-worksheet"> + <div class="nb-cell nb-markdown-cell">Hello world</div> + <div class="nb-cell nb-code-cell"> + <div class="nb-input" data-prompt-number="4"> + </div> + </div> + </div> +</div> +`, + want: ` +<div class="nb-notebook"> + <div class="nb-worksheet"> + <div class="nb-cell nb-markdown-cell">Hello world</div> + <div class="nb-cell nb-code-cell"> + <div class="nb-input" data-prompt-number="4"> + </div> + </div> + </div> +</div> +`, + }, + { + name: "allow base64 encoded images", + input: ` +<div class="nb-output" data-prompt-number="4"> + <img class="nb-image-output" src="data:image/png;base64,iVBORw0KGgoA"/> +</div> +`, + want: ` +<div class="nb-output" data-prompt-number="4"> + <img class="nb-image-output" src="data:image/png;base64,iVBORw0KGgoA"/> +</div> +`, + }, + { + name: "prevent XSS", + input: ` +<div class="nb-output" data-prompt-number="10"> +<div class="nb-html-output"> +<style> +.output { +align-items: center; +background: #00ff00; +} +</style> +<script> +function test() { +alert("test"); +} + +$(document).ready(test); +</script> +</div> +</div> +`, + want: ` +<div class="nb-output" data-prompt-number="10"> +<div class="nb-html-output"> + + +</div> +</div> +`, + }, + } + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + assert.Equal(t, test.want, p.Sanitize(test.input)) + }) + } +} diff --git a/internal/app/metrics.go b/internal/app/metrics.go new file mode 100644 index 00000000..80ff32f6 --- /dev/null +++ b/internal/app/metrics.go @@ -0,0 +1,29 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package app + +import ( + "net/http" + + "gopkg.in/macaron.v1" + + "gogs.io/gogs/internal/conf" + "gogs.io/gogs/internal/context" +) + +func MetricsFilter() macaron.Handler { + return func(c *context.Context) { + if !conf.Prometheus.Enabled { + c.Status(http.StatusNotFound) + return + } + + if !conf.Prometheus.EnableBasicAuth { + return + } + + c.RequireBasicAuth(conf.Prometheus.BasicAuthUsername, conf.Prometheus.BasicAuthPassword) + } +} diff --git a/internal/assets/public/public_gen.go b/internal/assets/public/public_gen.go index 8d7bfd11..5bf427dc 100644 --- a/internal/assets/public/public_gen.go +++ b/internal/assets/public/public_gen.go @@ -1242,8 +1242,8 @@ // ../../../public/plugins/jquery.minicolors-2.2.3/jquery.minicolors.css (97.99kB) // ../../../public/plugins/jquery.minicolors-2.2.3/jquery.minicolors.min.js (14.128kB) // ../../../public/plugins/jquery.minicolors-2.2.3/jquery.minicolors.png (68.627kB) -// ../../../public/plugins/marked-0.3.6/marked.min.js (19.513kB) -// ../../../public/plugins/notebookjs-0.3.0/notebook.min.js (6.888kB) +// ../../../public/plugins/marked-0.8.1/marked.min.js (25.782kB) +// ../../../public/plugins/notebookjs-0.4.2/notebook.min.js (7.253kB) // ../../../public/plugins/pdfjs-1.4.20/LICENSE (10.174kB) // ../../../public/plugins/pdfjs-1.4.20/build/pdf.js (333.388kB) // ../../../public/plugins/pdfjs-1.4.20/build/pdf.worker.js (1.337MB) @@ -26247,43 +26247,43 @@ func pluginsJqueryMinicolors223JqueryMinicolorsPng() (*asset, error) { return a, nil } -var _pluginsMarked036MarkedMinJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3c\x4d\x73\xe3\x38\x76\xf7\xfd\x15\x14\x7a\xca\x26\x44\x4a\xb4\x3c\x93\x49\x42\x99\xd6\x6c\x4d\xed\x61\x52\xb3\x35\x53\x3b\x9b\x93\x48\xb9\x29\x11\x92\x68\x53\x24\x07\x84\xda\x76\x44\x76\xed\x7f\x48\x0e\x49\x55\x72\xcd\x0f\xdb\x5f\x92\x7a\x0f\x20\x09\x52\x92\x3f\x26\xbd\x97\x54\x2e\x6d\x02\x78\xdf\x78\x78\x78\x78\x80\xda\x19\x0e\x7f\x67\x0c\x8d\x5d\xc8\x1f\x58\x64\x8c\x8c\x10\x3f\xa3\xec\x31\x35\xf2\x90\x17\x8c\xc3\xe8\xf7\x59\xfe\xcc\xe3\xcd\x56\x18\xe6\x8a\x1a\xd7\x57\x93\xc9\xe8\xfa\x6a\xf2\x8d\x6d\x7c\xbf\xe5\x71\x21\xb2\x7c\xcb\xb8\xf1\x4f\x6c\xbd\xe6\xec\x79\x6c\x98\x7f\xfc\xe1\xcf\xc6\x8f\xf1\x8a\xa5\x05\x8b\x28\xe0\x6f\x85\xc8\x0b\xd7\x71\x36\xb1\xd8\xee\x97\xe3\x55\xb6\x73\x56\xdb\xfb\x7b\x47\x72\xfd\x9d\x31\x74\x7e\x67\xae\xf7\xe9\x4a\xc4\x59\x6a\xd2\xc3\xa7\x90\x1b\xcb\x24\x5b\x3d\x78\x87\x94\x3d\x26\x71\xca\x5c\x67\xe1\xa7\x96\x63\xaf\xb2\x08\xbe\x4d\xe3\xf0\x4d\x35\x5f\xf8\x69\x60\xf9\xe9\x90\x5a\x8e\xbd\x66\xe9\x8a\x15\x6e\x9a\x65\xb9\xbd\xe5\x08\x32\x9c\x8f\x86\x77\x01\x3d\x7c\x6d\x57\xc6\xd0\x9c\xb9\x7e\x6a\x95\x5f\x51\xc7\xde\xb2\x30\x8a\xd3\x8d\xeb\x2c\x8c\xa1\xf9\xe1\x30\xb1\xbf\xad\xa8\x31\x34\x25\xb9\x19\x35\x86\x1f\x86\x1d\xf8\x34\x17\xe1\x32\x61\x92\x76\xd2\x62\x2b\x0c\xea\xa7\xc6\xd0\xf4\xca\x11\x3d\x5c\xf7\x38\xa1\x0e\xbf\xee\x33\x21\x65\x1e\xde\x4a\x0c\xd3\x4f\xcd\xd9\x20\x62\x6b\xaa\x28\x0c\x95\x12\x49\x5c\x08\x09\x49\xcd\xe5\x3e\x49\xa8\x31\xf7\x0b\xff\x97\xc0\x9a\x99\x33\x77\xcb\xcb\x88\xad\x4b\x3f\x05\x36\xe6\x6c\x60\x50\x73\x36\xf0\x27\x00\x67\x50\x3f\x1d\x96\x7e\x31\x44\xf5\xc4\x2e\x91\xba\xcd\xdc\x55\xb6\xdb\xb1\x54\x28\xa1\x24\x44\xb9\x4a\xb2\x82\x45\xaa\x0f\x88\x69\xfd\x71\xba\x39\x1a\xa0\x8e\x1d\xb1\x35\x92\xf4\xe7\xa0\x74\x00\x4a\x07\xae\x31\xbc\x99\x41\xb3\xb8\x0d\x2c\x7a\x0b\x22\x1a\xd6\x9c\x98\x41\x6d\x97\x39\xa1\x01\x9d\x75\x0c\xa2\x19\x32\x0f\x79\xb8\xe1\x61\xbe\x05\x85\xcd\x99\x5b\xcf\xe6\xcc\x9c\x0d\xb6\xbc\x54\x66\x2e\x6b\x7b\x97\xad\x2d\x4b\x11\x6e\xc0\x14\x94\x82\xed\x87\x8e\x2d\xd8\x13\x98\x4d\x52\x70\xaa\x29\x82\x8e\xc1\x30\x4c\x78\x0e\xd0\x1e\x5a\xa3\xa0\xf4\x23\xcb\x1f\x53\x47\x0d\xc7\x82\xed\xbc\xae\xad\x01\x5f\x4a\xab\x59\x56\xf6\xd2\x61\x07\x8f\xb3\x3c\x09\x57\xcc\x6c\xbb\x6c\xb2\xd9\x11\x6a\x3a\x80\xe4\x6c\x6c\x5d\x04\x6a\x52\x85\x0b\xf3\xdb\xc3\x85\xae\x73\x68\x64\xcb\x89\x4d\x7c\x3f\xb5\xcc\x99\xe7\xfb\x13\x30\x31\xfa\xb4\x31\x44\xaf\x06\x51\xa5\x65\x29\xa1\x26\x89\xd8\xba\x05\x27\x96\xa4\x15\xb1\xf5\xb8\xc8\xf6\x7c\xc5\x2c\x02\x50\xb5\x28\xad\x39\x7b\x02\xb5\x03\x35\xc9\x86\x50\x8b\x7d\x27\xc2\x8d\x47\xcc\xd9\xc0\x9c\xb9\xc4\x22\x61\xc9\x76\x65\x21\x78\x96\x6e\xca\x62\x17\x26\x49\x59\x94\xab\x58\xb0\xf2\xd7\x32\x5a\xa7\x65\xb8\x5c\xf2\x32\x0a\x45\x58\x8a\x78\xc7\x4a\x58\xc3\xc4\x22\xe5\xa7\x90\x97\x45\xb8\xcb\xcb\x87\x65\x54\x16\xfb\x65\x59\xec\xf3\x32\x2e\x97\xe5\xbe\x84\xb8\x50\xf2\xfd\xf2\xb9\xe4\xa2\xe4\x79\xb9\x8c\xe2\x72\x19\x65\x80\x55\xe4\x61\x5a\x2e\x79\xf9\xb8\xe4\x65\x9c\x16\x65\xc4\x92\x32\xde\x6d\xa8\xef\x2f\xa9\xef\x3f\x5a\xe6\x6c\xe0\x3a\xe5\x7c\xe1\xfb\x8f\xbe\x5f\x7c\x17\x0c\xbf\x83\x21\xa2\x04\x87\xc5\xd1\x53\x18\xba\xa8\x49\xd4\x52\x21\xb6\x73\x33\x18\x8d\xe4\xba\x1b\xce\x46\xa3\x5b\x07\x06\x71\xc9\xc0\x98\x29\xc2\x0d\xad\x57\xe5\x8d\xef\xf8\x93\x06\x20\x4e\x37\x00\x21\xc2\x0d\x58\x65\xbe\x20\xc1\x90\x94\x97\xf3\xc5\x65\x30\xbc\x2c\xe7\x8b\x4b\x72\x1b\xd0\xe1\x0c\xc0\x1d\x11\x6e\x9a\xd9\x06\x5b\xb6\x96\x6d\x96\x45\x4f\xca\xa6\x5f\xb9\x85\x92\x9d\x43\x53\xae\x90\xa6\x4f\x36\xa9\x49\x92\xde\x48\xd2\x0e\xb5\xb3\x5c\x0f\x76\xe6\x5d\x84\x1b\x62\x93\x9b\xda\x89\xa4\x88\x67\xbd\x21\xcd\xf8\x2e\x4c\xbc\x1d\xe3\x1b\x66\x1e\x2a\x09\x52\x0f\x6e\xd6\xbb\xde\x88\x82\xb7\x0f\x2a\x66\x63\xac\xfa\x08\x0e\x5d\x7e\x86\x7f\xe9\xdc\xf0\xc7\xc1\xd0\xf4\x7f\xb1\x20\x7c\xf8\xa9\x59\xcf\x06\xf5\x8b\xa1\x3f\xe9\x44\x14\x3d\x8c\x9c\x09\xed\xd6\xd9\xd0\x5e\x69\x42\xbe\xc9\xf2\xe6\x6c\x40\x6c\xfc\xd7\x6a\x11\xa5\x1a\x6a\x95\x8d\x6b\x64\xe2\xfb\x13\x5c\x8e\xd7\x84\x5a\xa4\xac\x11\x60\xbd\x9f\x05\xfd\x5a\x82\xb6\x96\xc5\x78\x59\xf4\xed\xb7\x59\xef\xec\x43\xbd\x2b\xa1\xaa\xfe\x2f\xe3\xa1\x5f\x8e\x87\x72\x2f\x9a\x8f\xdc\xc0\x32\x86\x7e\x39\x1f\x95\x86\x1b\x40\x2f\x44\x58\x09\x22\x77\x82\xaf\x28\x1d\xaa\xe0\xd9\x50\xf1\x4b\x73\x2c\x77\x33\xbf\xc4\xdd\xd3\x0d\xac\x2e\x05\xe3\x14\x85\x8a\x4e\xeb\xad\xdb\xf8\x91\x3d\x31\x6e\x66\x39\x34\x0a\x7a\x10\xdb\xb8\x18\x8b\xec\x81\xa5\x85\x37\x0f\xa6\x5a\x73\x9c\xc4\xe9\x43\xe1\x1d\x2a\xd9\xa9\x30\x3c\xf5\xb7\x2c\x65\x62\x00\x6e\x16\xee\x13\x51\x48\x28\xbe\x07\x63\xe8\x3e\x34\x8d\xd7\xa6\x4e\x00\x4c\x43\x0f\xfd\x4e\x69\x45\x25\x8e\x4e\x44\x0e\x54\x2c\x29\xd8\xf1\xe0\x66\xbd\xab\xaa\x0a\x35\xd2\xfb\xa7\xb2\x27\x61\x4f\x5e\x93\xb1\x14\x7c\x65\x37\x4a\x43\xf2\x92\x00\x8c\x97\xb2\xc7\x9e\x45\xa6\x9c\x89\x3d\x4f\xe5\x38\xd0\x00\x54\x5a\x29\x9a\x39\xcf\x44\x26\x9e\x73\x76\x44\x9d\x1e\x0a\xbe\xf2\x0a\xbe\x6a\x7c\xc6\xf1\x39\x6c\xe8\xdc\xd9\xd8\xc4\x4f\x09\xd5\x06\x04\xf4\x19\x86\x61\x74\x7a\xf7\x57\x57\xe1\x15\x8e\x74\xbb\xaf\xbf\xb9\xfe\xa6\x26\x52\x8b\xd7\x4e\x14\xaa\x26\xf8\x9e\x9d\x10\x12\x01\xba\x46\x10\x59\x6e\x2f\x7f\x95\x36\x38\x92\x78\x61\x58\x5f\x39\x9b\x9d\x4d\x08\xb5\x53\xf6\x24\xec\x24\xcb\x0a\x66\xaf\xc2\xdc\x86\x1d\xcf\x5e\xda\xb8\x91\x16\x79\xb8\x62\x76\x6c\x27\xd3\xc7\x6d\x9c\x30\xa9\x7e\xbc\x36\x57\x61\xee\xb5\x93\x34\x56\x89\xe1\x98\x3d\xb1\x15\xc2\xb4\x36\x2a\xf6\xcb\x42\xf0\x38\xdd\x00\xce\xfc\x2a\x18\x27\x2c\xdd\x88\x2d\x9d\x4a\x2a\x6d\xcf\xed\xa4\xe3\xa3\xe3\x7c\x5f\x6c\xcd\x03\x28\xe7\x12\x14\x83\x54\xb4\xaa\x8e\x79\xc3\x0e\xf6\x2e\xc6\x80\xaf\xba\x34\x73\x1c\xbe\xa9\x94\x3d\xa6\xe7\xa4\xc0\xbd\x52\x26\x38\x83\x8e\x4f\xe7\x2c\x0a\x53\x11\xaf\x66\xab\x30\xd7\xa6\x33\xb5\xbe\x72\x80\xa0\xbb\x0a\xf3\x8a\x4e\x57\x59\x2a\xe2\x74\xcf\x4e\xe8\xa0\xa2\xd6\x7b\xb4\x78\x59\xc8\x24\x4c\x37\xc0\x76\x7e\x1d\x48\x81\xe1\xfb\xeb\xa0\x2c\x09\x79\x59\x12\x15\xb4\xbf\x88\x28\xcd\x8e\x17\xb1\x5c\x6c\x51\x84\x49\x8d\xd5\x4a\x75\x1d\xf4\x24\x12\x59\x7e\x71\x71\xe4\x61\x32\xc2\x6a\x72\xbd\xc5\xc5\x20\x3d\x54\xc2\x20\x3a\xc1\x4d\x89\xf1\x5a\x16\x6d\xfe\x87\x25\x04\x54\x63\xf8\x15\xac\x3f\x42\xc7\x45\x9e\xc4\xc2\x74\x64\xa7\x43\xed\x30\x89\x37\xa9\x12\xb8\x8b\xf7\x12\xd6\x8a\x25\x49\xa1\x8c\xaf\x7b\x86\x74\x0c\x05\x8e\xcb\xbd\x9a\xae\x33\x6e\xc6\xde\xd5\x34\xbe\x01\xb9\xc7\xc8\x50\xa9\x32\x8d\x2d\x0b\xd7\x1d\x30\x1c\x59\x2e\x30\x1c\x0b\x56\x08\xb3\x05\x9d\xc7\x01\xa5\x87\x4e\xdb\x23\x78\x4e\x24\x18\x54\x0d\x85\xee\xbe\x07\x7f\xc5\x52\xc1\xf8\x11\x81\x37\xe3\x27\x6c\xad\xd8\xf7\x46\xd2\x7d\x92\x54\x55\x4f\x65\xb4\x56\x57\xe5\xa6\x1b\x90\x3a\xad\xbe\xad\xab\x23\x37\x04\xf0\x17\x9d\x3d\xf9\x1b\x7b\xfb\x75\xe0\x79\x1e\xf1\xc8\x6c\xe2\x5e\xb7\x0e\x3f\xe9\x3b\x7c\x7f\x09\xf2\x2f\x23\x0f\x7f\x65\xa9\xb7\x49\xe6\x17\xe1\xd7\x92\xbb\x2b\x44\xc8\x05\x72\x3f\x19\x6a\x87\xb7\xc6\xec\x38\xd6\x02\x1f\xdc\xb3\x70\x87\x7b\x0b\x1b\x96\x46\xaf\xa8\x88\x09\xde\x7b\x94\x83\xbd\xcf\x93\x53\x77\x56\x02\x20\xaa\x54\xb4\x33\x1e\x31\xce\x22\x17\xf0\x9a\x7d\xac\xab\xf8\x2e\x14\xab\xad\xa9\x09\x25\xdd\x12\x36\x5d\x6f\x1d\x26\x05\x9b\x22\xc7\xc6\xed\xbd\x2b\x8c\x04\xd3\xf8\x26\x69\xd7\x00\x12\x8b\x83\x29\x6e\x84\x72\x1d\xd4\xf0\x30\x8a\x1d\xba\x85\x4d\xfd\x94\x6d\x58\x18\x6d\x60\xc7\xfd\x8c\x90\x71\x1a\xb1\xa7\x9f\xd6\x10\x78\x0c\x02\x66\x01\xaa\xa3\x63\xb2\x67\x76\xb9\x0e\x37\xc8\xab\xfe\xc4\x36\x7f\x78\xca\x4d\xb2\x30\x0e\x13\x9b\x58\x48\xce\x22\x15\x91\xe7\x70\xdc\x02\xfb\x12\x1e\x26\x76\xb3\xe1\x56\xfd\x1c\xb1\xd8\x85\x5c\xfc\x18\x17\xa2\xb8\xb8\x88\x07\x9e\x97\x8c\x26\xf4\xb0\xf4\xf4\x03\xb9\x9c\x55\xb4\x8a\x35\x09\xe8\xfc\x2a\x00\xf5\x60\x6c\xe0\x79\xcb\x8b\x8b\x81\xd9\x99\x92\x8b\x8b\x65\x9b\x66\x48\x3f\x00\x9b\x17\x49\xbc\x62\x66\x6c\x4d\xe8\xf8\x3e\x8b\x53\x19\x89\xad\x82\xaf\xa6\x31\x30\xad\x2a\xcc\x8a\x3c\x98\xab\xb2\x74\xfc\x54\x16\x23\xb0\xb4\xd3\x86\x3f\x34\x6c\x23\x26\xce\xab\x0c\x54\xdb\x90\xff\x5e\x45\x48\xc9\x7b\x34\xa1\x10\x10\xfc\x94\x00\xca\x00\x89\xd3\x96\xc5\x71\x04\x93\x1e\x87\x10\x33\x82\x7f\xee\x80\x9c\xf2\x3e\xe5\x8a\x5a\x4f\xd5\x59\x50\x98\xc1\xa1\x8b\x41\x1e\xf8\xb2\x3f\x23\x11\xb9\xa0\xce\x89\x21\x01\x5f\x5f\x74\x70\x86\xff\x12\x11\xa5\xeb\x12\x61\x1a\x8b\xf8\x5f\xd8\x8c\x34\x47\x40\xe2\x12\x60\x45\xec\x9c\xb3\x5e\x42\x56\x43\x73\x99\x48\xcc\x27\x18\x88\x73\xce\x48\x59\xb6\xed\x62\xc5\xe3\x5c\x74\xbb\xc4\x73\xc2\x08\x6d\x83\xf5\x55\x3f\x58\x0f\x96\xbf\x5e\x5c\x9c\x4c\x51\x22\xb6\x7e\x5f\x7a\x72\x74\x04\x9b\xab\xb4\x44\x64\x3f\x66\x8f\x8c\x7f\x1f\x16\xcc\xa4\x81\x77\xd8\x72\xb6\x6e\xb2\xb9\x58\x24\x4c\x65\x14\xd5\xeb\x79\xd3\xff\xa1\xac\x49\x9d\x79\x8d\x21\x9d\xfd\x7f\x02\xf5\x25\x12\x28\x7d\x3e\xc0\xae\x2f\xcf\xe5\x5b\xf2\xab\x93\x2e\xd8\x2c\xd8\xdf\xbe\x3a\xf4\x28\xd4\xae\x7f\x3d\xa5\xaa\xa3\x6d\xe7\x90\xd1\xc6\xdb\x99\xea\x97\x01\xff\xca\x1e\x4d\xe8\x9b\x72\x31\xe0\xf0\x45\xb2\x23\x20\x44\x5e\x08\x2b\x78\xb0\x16\x5b\x9e\x3d\x1a\xb0\xa3\xfe\x81\xf3\x8c\x9b\xe4\x87\x74\x1d\xa7\xb1\x60\x46\x92\x65\xb9\x91\xa5\xc6\xf2\x59\x30\xd7\x20\xb0\x45\xa1\xc6\xdf\x67\x11\xfb\xbd\x30\xaf\x28\xad\xaa\xa3\x7a\x41\x51\x4d\xe1\xec\x1f\xa7\x70\x36\xf7\x0e\xac\x58\x85\x39\x5e\xde\xf8\xe6\xdc\xf7\x3f\x0e\x0f\x95\x3f\xf7\x03\x93\x7e\xb0\xfc\xd1\x78\x70\x77\x1b\x50\xc7\x0e\xf7\x22\x83\x58\xe4\x3a\x8b\x1b\x73\xbe\x30\x6e\x03\xcb\xfc\xae\x74\x7d\x87\xca\x06\xbd\x75\xec\x3d\x4f\xe4\xb5\x81\x08\x37\x00\xd7\x2d\xd1\x96\x8b\x1b\xdf\x99\x61\xf1\xf7\xa5\xc2\xab\xad\xb8\x0c\x66\xfe\xdc\x8c\xd3\x22\x8e\x18\xf5\x03\xdf\x84\x58\xe7\x53\xc7\xe6\x6c\x7d\x1a\xa2\x68\x2e\x3e\x86\xd4\x0f\x1c\x3b\xcd\x74\x38\x73\xe6\xfa\x73\x39\xea\x07\xe5\x7c\x01\x1a\x06\x54\x42\xca\xa2\xb8\xeb\x2c\xee\xee\xcc\xba\x6a\x4c\xef\xee\xcc\xd9\xe0\x8e\x96\x0b\x7f\xe8\x0f\xdb\x6e\x6c\xcd\x06\xfe\x90\x3a\x36\xdb\x81\xd1\x96\x77\xf2\x66\xe4\x2e\x28\xef\xee\x28\x60\xfa\x4b\xc0\x42\x96\x43\x7f\x58\x4a\x5c\x8a\xc8\x35\x6a\x7d\x45\xf6\xd1\xa2\x7e\x31\x6c\x6a\xa7\xf3\xc5\xc7\x40\xd6\x4f\xcd\xd9\xe0\x23\x75\xec\x25\x77\x21\x29\xba\xb6\x2b\x2d\xc5\xb0\x23\x56\x1b\x5a\x5d\xaa\x34\x17\x50\xde\xdc\xf7\x6f\x06\xfe\xfc\x6e\xf8\x31\x28\x15\x1e\x16\x51\xa7\x72\xb6\xc7\x77\xd2\x60\x78\xe3\x72\x6c\x90\xd2\x0f\x80\xc6\xc2\x9f\x43\x2f\xa5\x43\xa7\xc1\x03\xfb\x7b\x8e\x5f\xe0\x7d\x52\x5d\xea\xc5\x0b\x25\xbf\xb0\xe6\x97\x24\x68\x7b\xa1\x45\x67\x7e\xd1\x62\xc3\x4c\x34\x15\x5b\xad\x8f\x9a\x44\xca\x43\xec\xae\x7c\x58\x40\x67\xeb\xb6\x1b\x5a\xd4\xa4\x35\x41\xe5\x05\x7d\x9a\xaa\xfb\x05\xb2\x0d\x85\x7e\x3d\x5c\x76\x37\xc3\x75\x52\xdb\x07\x68\xea\xe2\xba\xd3\xcc\x3c\xff\x17\xda\xe8\xef\xff\xd2\x73\x9e\xa3\xe1\x23\x27\x3a\x45\xa2\xa1\x70\x0a\x5f\x61\x57\x8d\xbc\x9d\x0a\x7e\x4f\x54\xb5\xc0\x7b\xb6\x92\xbd\xd4\x24\x01\x25\x36\xf9\x5c\x06\x78\xf3\x84\x8b\xd8\x59\x98\x78\x19\x3c\x73\x7d\xc7\x77\xe6\x0b\xbf\xb8\x09\xac\xf9\xe2\x66\x6c\xbb\x53\x72\x89\x8b\x2d\x50\x6e\xe8\x2c\x3e\x7f\x3e\x16\xf0\xf3\x67\x75\xe1\xd7\xe3\x09\x7d\xc0\xb1\x04\x8e\x41\x49\xa8\x49\xe0\xb3\x54\xdc\x1c\x07\xeb\xea\xad\x56\x4b\xce\xc2\x87\xe2\x48\x31\xac\xad\x2f\x79\x9f\xfa\x92\x53\x93\x80\xcf\x13\x9b\x0c\x51\x99\x53\x32\x6c\xd6\xbb\x5a\x0e\x1d\x56\xaf\x90\xff\x80\x90\xb2\x2a\x8c\x09\x98\xdd\xad\x96\xbf\xad\x12\x2e\xab\xe7\xf8\xaf\x5e\x1a\xef\x4c\x8e\x1a\x60\x29\x1c\x17\xb9\xd7\x49\x56\xeb\xde\xb2\x94\x67\x29\xd9\xea\x62\x34\xa2\xe8\x98\x78\x88\x68\x45\x38\xb1\x7f\xfc\x19\xb7\x01\x23\xe4\x3c\x7c\x36\x38\xfb\x75\x1f\x73\x56\x18\xa1\xf1\x11\x11\x3e\x1a\x39\xcf\x72\xc6\xc5\xf3\xf8\xc4\x21\xec\x64\xf5\x5e\x4e\x54\xa7\x7a\xdf\x99\xc2\xa3\xf2\x7d\x3b\x19\x55\x93\x03\x9d\x3c\x55\x9e\xa2\x59\x8f\x55\x95\x36\x53\x1d\x90\xa9\x3e\x90\xed\x45\xbe\x17\xdd\x22\x78\x6f\x5a\xb5\xfd\x10\xcc\x74\xde\x01\xea\xea\xbb\x92\x44\x92\x56\x17\x04\x3a\xcf\xb6\x02\x7f\x82\xbb\xe4\x97\xed\x85\x47\x08\x4a\x82\x8e\x6a\x43\x8c\xb3\x57\x61\xfe\x72\x4d\x5d\xae\xdb\x77\x25\x1f\xd9\x5e\x58\x9e\x4c\x6b\x5e\x4a\x6a\xea\x3d\xfe\xb7\x94\xeb\x65\x49\xeb\x3b\x42\x0f\xa0\x8a\xd7\x4d\xbe\xbe\xc5\x74\xcb\x25\x33\x64\xb6\x0b\xd3\x4d\xc2\xea\x8c\xac\x25\xfc\xf7\x94\xba\xc7\x00\x74\x8a\x3b\x8f\x3e\x40\x76\x61\x9c\x88\xcc\x25\xd4\x02\x66\xca\xb7\x80\xad\xb4\x4d\x0f\x13\x40\xd0\x02\xdd\x95\x03\x9a\x62\x56\x61\x43\xca\x8c\x33\xd0\x3b\xd1\x21\x7c\x9c\xfe\x18\xa7\x0f\xc7\xd9\xeb\x9e\x27\xef\xcc\x5b\x5f\x12\x70\xfa\x5b\x04\x3c\x3a\xd2\x75\x0a\x96\x47\x1a\x38\x8b\x9b\xd0\x70\x62\x79\xbc\x90\xc2\x51\xb5\xba\x24\x88\x27\xf8\x9e\x75\x57\xa3\x86\xeb\x3b\xe1\xed\x8b\xd8\x58\x51\xa8\xde\xe6\x8c\xa7\xcf\xf0\xa7\xcf\xea\x67\xba\x6b\x21\x5c\xcd\xa6\xd0\x94\x7f\x5f\xae\xfe\xbd\xd3\xc7\xfb\x36\xd2\x75\xc0\xd5\x0d\x23\x58\xa7\x3c\x7f\x24\xef\x52\x91\x05\x3e\x5d\xc6\xbe\x90\x2a\x95\xd1\xe4\x2c\xcb\xa3\xcb\x8f\xfe\x72\x7d\x83\x2e\x98\x36\xa9\x25\x5b\x57\x38\xf4\xbb\xc6\xc2\x52\xf7\x8f\x12\xb2\xdd\x46\xe6\xc8\xab\x5b\x82\x90\xe5\xaa\x38\x7d\x28\x4b\xfc\x33\xc6\x34\xed\xd0\xc4\x9b\xab\x26\x04\x5c\xd1\xa9\x2a\xae\x41\x67\x2b\xdd\x44\x96\xd5\x1a\x4b\xbc\xdd\xd4\x98\xe8\xbd\x62\xd4\x9e\xbd\x64\xce\xf6\xfe\xd0\xd9\x5d\x97\x92\x8a\xa9\xc9\xd4\x37\xe7\x8b\xcb\x94\xed\xfe\xb7\x02\xb0\xdd\x6f\x66\xfe\xee\x4b\xd1\x13\xec\x81\x46\x91\x87\xa9\xa9\x2d\x3c\xf0\x76\xbe\x67\x2f\x33\x5f\xbe\xef\x02\xe3\x04\xeb\x25\x37\x5f\xe4\x10\xb1\xf7\x55\x18\x4f\xb0\x88\x58\x72\x64\xdd\xd7\xac\xfa\xee\x6a\xc0\x09\xbe\x40\xa3\xb6\x28\x8e\x60\xb1\xfb\x39\x0f\x53\x51\x34\xf1\xf6\x6f\x55\x1b\xc8\xf6\xe2\xe5\xf4\x45\xae\xaf\x3a\x85\x69\x96\x1f\xe6\x31\xb8\x89\x29\xc9\xdb\x20\x20\xa3\x9f\x27\x83\x06\x7c\xce\x74\x10\xec\xa1\x2e\x6c\x6c\x75\x46\xd5\x8f\x17\x03\xcf\x23\x03\x95\x32\x9c\xd8\x13\x91\x82\x7d\x6a\xa6\xdc\x2e\x4a\xbc\x0b\x37\x4c\xc7\xe9\xee\xc1\x67\xf3\x36\xcd\xfe\xad\xe6\xb8\x09\xb7\x5b\x6b\xe7\x62\x42\xc2\xd2\xba\xdc\x02\xbb\xba\xf6\xdd\x86\xd8\xd1\x68\x04\x21\xf6\xaf\x7f\xf9\x37\xfd\x91\x47\xdd\xf9\xaf\x7a\xa7\xb9\x28\xe7\x23\x7f\x7f\x7d\x35\xf9\xc6\x31\xfd\xf9\x81\xc0\xc1\xeb\x12\x00\xbf\x9a\xfc\xf5\x2f\xff\xae\x83\x5e\x4a\xf4\xff\x78\x09\x1d\x3f\xff\x01\x68\x90\x9a\xc6\x7f\xea\xf0\x44\xd2\xf8\xaf\xce\xe3\x93\xf1\xe1\xeb\x4a\xf6\xff\x37\x39\x6b\x2c\x99\x99\xbd\x6a\x27\x09\xd6\x31\x91\x9e\x09\x63\x2a\x54\x3f\x04\x88\xbd\x2b\x7b\xb5\xed\xdd\x79\xad\xb6\x12\x46\xf3\xe3\x18\x73\xd0\x3f\x86\x62\x3b\xe6\x61\x1a\x65\x3b\x93\xde\x8e\xff\x0e\x41\xc9\x13\xb1\x56\xdb\xb1\xc8\x7e\x51\x9b\xcd\xb7\x54\x66\x82\xe4\xe2\x03\x8c\x58\x64\x4a\x3a\x4b\xa0\x39\x01\xd6\xa7\x2d\xf3\x95\x83\xdf\xa1\xaa\x6a\x50\xcd\x1a\x10\x21\xb5\xd5\x92\x45\x0c\x1f\x5e\x28\xcf\x8b\x8e\x8f\x4f\xdb\x78\xb3\x4d\xe2\xcd\x56\xb4\x27\x83\xd3\xe3\x2d\x31\xd4\x3a\xdb\x8b\x01\x56\x7c\x2f\x2e\xf0\xd3\x83\x61\xaa\x0e\xfc\x91\xdc\x40\x51\x18\xd0\x0e\x73\x5a\x44\x3d\x48\x9d\xc9\x4d\xce\xd9\xed\x0d\x00\xdc\x12\x4b\x05\x9f\x68\x86\xb5\xa9\x7a\x91\x00\x3b\x19\xd9\x2d\xe2\xa7\x37\x0e\x02\xdf\x38\x80\x58\x9b\xee\xb2\x25\x63\xac\x92\xb0\x28\x3c\x72\x69\x75\xc4\x07\xa6\x3f\x73\xb6\x8e\x9f\xac\x3a\x08\x80\x39\x90\xae\x75\x49\x6e\x2f\xdf\xcf\xdc\x4f\x49\x35\x3d\x61\x7a\xed\xc9\x6c\x33\x01\xf2\xc1\x64\xa3\x74\x0b\x02\x54\x2c\xfc\xb2\xc8\x8d\xd3\xed\x3f\x49\x1d\x5f\xa6\x36\x74\xf1\x51\xaa\x22\x6b\x40\xe3\x34\x8e\xbc\xff\xef\xae\x0d\x3b\x61\x9f\x58\x62\xf3\xf0\xb1\x95\x6b\x4b\x2c\xec\xb5\x2e\x8d\x38\x3a\xb2\xa1\xbc\x6a\x51\x56\xe4\xe1\x63\x37\x13\x6b\xd7\xeb\x7c\xe1\x3f\x06\x98\xc3\x8d\x88\x32\x2e\x30\x04\x05\x1b\x06\xe4\xbc\x82\xdc\xd3\x9e\xf8\xeb\x95\xe3\x5a\x8e\x27\x50\x74\x46\x6e\xb6\xdc\x01\x2a\x2e\x7c\x9d\x25\x87\x6f\xa9\x1b\x82\xcb\x2c\x7a\xae\x6f\xc6\xa5\xa3\x03\x90\xa7\x7a\x66\x24\x4b\x88\x4b\xf6\x09\x99\xd6\x16\x21\x16\x00\x48\x71\x2d\xc0\x06\x2d\xf4\xce\xb3\x4c\xf1\xae\xaa\x17\x8d\x6a\xaa\x49\x7c\x4b\x1a\x9b\x24\xf1\x59\x3a\xed\x5b\xd3\x33\x84\x72\x8d\x4e\x7e\x96\x0c\x5e\x95\x69\x4e\x83\xf3\x68\x83\x36\x2d\x25\x84\x41\x2d\xc9\x8d\x00\x08\xfc\x96\xa0\x40\xbd\xed\x23\x37\x02\x50\x3b\x16\x69\x7b\xa0\x51\x93\x3a\x2f\x0c\xcf\x1e\xf5\xe8\x94\x0a\x96\x6a\x5a\x09\x9c\x4e\x4b\xf5\x23\xc9\xf3\x13\x8c\xf4\x56\x2c\x49\x8e\x08\xda\xeb\x24\xdc\x14\xda\x34\x63\x5b\xb9\xf1\x8c\x88\x2d\x71\x89\x88\x08\xc6\x7f\x11\x6e\xd4\x30\x5e\x63\xcd\x9a\x99\xbf\x34\xf0\xe2\xd5\xc3\x6b\x92\x91\xbc\x34\xbc\xb4\x34\x50\x74\x70\x57\xf3\x14\xd2\xec\xb9\xe1\x46\xd7\xe1\x55\xaf\x91\x59\xfd\xb9\xa9\x96\xa3\xda\x7c\xd7\x1d\x27\x69\x9d\xf7\x3d\xb6\xd3\x68\x40\xe3\x24\x7e\x9d\x61\x9f\xa3\xa2\x22\x76\x4d\x47\x36\x4f\x87\xc3\x37\xaf\xe7\x25\x77\x6e\x61\x35\x2f\xf9\x19\x52\x11\x4b\xce\xc9\x13\xb1\x44\x13\x07\x5b\x67\x56\xa6\x9e\x45\xea\x69\x5c\x9d\x2e\x9c\x3c\xea\xd3\x83\xe0\xcf\xe8\x48\x40\xca\x8b\x18\x28\xfc\xcf\x7f\xfa\xe1\xfb\x6c\x97\x67\x29\x4b\x85\xb9\x4f\xd5\x96\x81\xa9\x67\x2f\x1a\xba\x81\xba\xb8\xec\x44\xcc\x6a\x85\xef\x6f\xda\x7d\x81\xc0\xfe\x08\x0c\xda\x67\x30\xf7\xe1\xa7\x50\x3e\x06\x70\x09\xf5\x3c\xef\xaa\x2c\xbb\x00\x9f\x96\x9d\x61\x8d\x56\x55\xef\xe3\x97\x37\xa1\xcc\x90\xc9\xa5\x05\x7f\xad\x4b\x72\x89\x2f\xa2\x31\x03\x96\x47\xe5\x4b\x43\x26\xcb\x10\xf3\xe1\x03\x60\x54\xa2\xa2\xd9\x35\x6c\x9d\x1b\x93\x95\x13\x06\xc6\x5c\xf7\x05\x0b\xb7\x42\xc5\xbb\x0d\x3e\xfe\x6d\xa5\x32\xc2\x44\xa0\x04\xc0\xee\x5d\x42\x9e\xf2\x27\x74\xa6\xd7\x05\xc6\xa2\xd8\x49\xaf\xc2\xec\x50\xcb\xc8\x7e\xc6\xdf\xb9\xbd\xe1\xd9\x3a\xe6\x43\xef\x79\xb1\xde\xaf\xb7\xbf\xbf\x0a\x7f\x1a\xe3\x0d\x95\xfa\x4a\x6a\x35\xc6\x1f\xf1\x9d\x7c\xaa\x6e\xd7\xf8\x72\xf2\xe4\xaf\xfd\xb0\x46\xdd\x35\x48\x0b\x57\x9b\x3c\xd7\x48\xab\x02\x75\xcd\x4d\xdf\xe2\x7a\x7c\x9b\x92\xde\xc9\x5a\x38\x1c\x21\x65\x3d\x5c\xd7\xc2\xee\x28\xda\xb9\xeb\x56\x8f\xcb\x3f\x31\x10\x82\x6a\xc9\xbe\xaa\x71\x23\x68\x0a\x47\x5f\xaa\xdc\xac\x46\x36\x69\x27\x33\x3f\x12\x3d\xed\x78\x4e\x37\xb6\x49\x3f\xe8\x5c\xb9\x67\xb9\x79\xd2\x00\x8c\x3d\xbc\x48\xa5\x98\x77\x5e\xe3\xa8\xe7\x03\x41\x59\x5e\x9d\x33\xe7\x9f\x7b\x82\xe1\xef\x24\xb3\xe8\x59\x93\x07\xdd\x5e\xb7\x00\x88\x61\xd2\x31\xee\x93\x9e\xdc\xed\x08\x3d\xe0\xfe\x8e\xcf\x14\x2c\xcd\x4e\x88\xdc\xb9\xd4\xef\xde\x45\x60\x66\x71\x42\x38\x91\x75\x34\x2d\x1e\xe3\xe6\xfd\xa1\x12\xea\x39\x67\xf4\xb0\x0a\x0b\xa6\xde\xd5\xbb\x6d\x38\xc3\xde\x2d\x6f\xba\x8c\xae\x6f\x6f\x39\x06\x54\x80\x51\xaf\x5d\xcf\x01\xca\x61\xf3\x84\xdc\x3d\xf3\x50\x5b\xeb\xc0\xa7\xb3\x76\x1f\x42\x72\xc4\x87\xed\x67\xd8\xc1\x58\x9f\xb0\x4e\x46\x1e\x43\xda\x76\x7d\x40\x93\x94\xe5\x23\x27\x57\x16\x39\x30\x6f\x81\x53\x2a\xce\x25\x21\x76\x6c\xf3\xec\x11\x9f\x24\xc9\x54\xc7\xbe\x9f\x62\x22\x44\x88\xf6\xe0\x48\xa3\x2d\x29\x74\x1e\xe1\x20\x9e\x77\x50\xaf\xa8\xe0\xa4\xa3\x1e\x46\x69\x68\xf5\xc3\x9e\x0a\xa9\x1f\x55\x8d\xea\xfc\xeb\x15\x8b\x4a\x16\xf3\x38\xa0\xf6\x1b\xd9\xd1\x4a\xa5\x9f\xa7\x38\xf2\xec\xd1\x04\xae\xf4\xb4\xaa\xc7\xcf\x8d\x20\xe5\xec\x03\xcc\xe3\xa0\x63\xb1\x7b\xef\x6a\x7a\x7f\xc3\xb3\xc7\x1a\xf3\x1e\x4f\xfc\xef\xd5\x9a\x67\x8f\xf3\x7b\x4d\x4f\xf9\xd0\xf1\x8c\xa2\xf7\xa0\xa8\x5c\x67\x2f\xa9\x59\x9d\xf4\x2e\x84\xe9\x24\xf4\xd2\x6f\x8e\x5e\x3c\xbb\x6d\x10\x38\x15\xf9\x70\xe5\x0d\x3c\xaf\xff\x86\xb9\x8e\x00\xc7\x21\xb1\x57\x15\x6d\xd0\x4c\x4d\x0a\xed\x39\x72\x87\x7f\x7d\x02\xd3\xe7\x43\x75\xbd\x20\x5a\xf3\xc6\xf3\xad\x42\x01\x42\xf7\xc4\xa7\x89\xa5\x3f\x56\x7d\xa3\x6d\xba\xaf\x51\xfb\x52\xa8\xf0\xd5\x04\x4f\x59\x36\x6c\xe2\xb1\x49\xdd\xb7\xc8\x0b\xe4\x3b\x26\x3c\x7a\x59\xfb\x45\x84\x7d\x8f\x08\xf8\x92\x55\x85\x20\xb1\x4b\xd4\xd3\x6b\xa9\x71\xce\xd9\xc5\xc5\x99\xb7\xd8\x6f\x08\xb0\x6e\x7f\x43\x3a\x1d\xb1\xc5\x2e\x91\x95\x0e\x29\x90\xf6\xcc\xf6\x74\xcc\x6d\x00\xde\x12\xe4\xeb\x48\x0b\x73\xf6\x36\x7a\xda\x9c\xd2\xaa\xd2\x12\xc4\xfa\x04\x20\x76\x89\xcd\x52\x59\x08\xd3\x6a\x33\xcd\x99\x60\x20\x07\x67\xce\x85\x39\x1b\x7c\x98\xf9\x8f\xd6\x94\x3a\x1b\xd7\xb9\x80\x53\xc2\x45\xb8\xcb\xa7\x7a\xf9\xf3\x06\x7b\x13\xd1\xe9\xbc\xc5\xce\x4d\xb7\x13\x8b\xa7\x17\xb0\x0c\xa7\x47\x75\xd9\x8b\x0f\x5f\xff\xe3\x94\xd0\xaa\x11\xb6\x3d\xb0\xf4\x6b\x48\x2d\xe6\x85\x39\xff\xe0\x3f\x06\x16\x9d\x3a\x1b\xbb\xd9\xb9\xef\xec\x94\x1e\x52\x2f\xed\x9e\x66\x20\x59\x4f\xc1\xfb\x57\x59\x92\xa5\x44\x55\x58\x89\x8b\x0f\xca\xd3\xb6\xa8\x0e\x20\x1f\x48\xc3\xb0\x19\x91\x0f\x22\x9f\xc8\x4c\x56\x4a\xc7\x6b\x9e\xed\xbe\x57\x35\x56\x13\x4d\xfe\x43\x2a\xcc\x54\xbb\xd1\xb8\xa6\xf6\xe4\x5b\x4a\xdd\x53\x08\x56\xda\xb9\xe1\xab\xdd\x9d\x90\x4a\x33\x41\xad\x27\x67\x1b\xf6\x04\xe9\x2e\x48\xb5\x61\x4f\x1e\xfe\xab\x7e\x7e\x3b\xcd\x72\x01\xe9\x7b\x59\x92\xe6\x2c\xd1\x50\x28\x58\xb2\x36\xd3\x70\xc7\xec\x4f\x61\x22\xab\xcd\xd0\xaa\xcb\xcb\xda\x2f\x10\x5a\x1e\xd3\x4f\x61\xe2\x7d\x0a\x13\x45\xbf\x2c\x3f\x85\x49\xd3\xd7\x29\x9c\x2f\xfc\x79\x40\xfd\x85\x2c\x94\xe3\xcf\x2e\x5b\xe1\x9a\x1f\x39\xd4\xcc\x6b\xd9\x40\xa4\xaa\xd5\x31\xcd\x20\xef\x3c\x54\xf0\x17\x2f\x88\x3c\xf8\x6a\x7d\x56\x3e\x6c\xca\x96\xf7\xea\x05\x8a\x37\xb1\x45\xc8\x37\x4c\xd8\x0f\xec\xb9\x2e\x7d\x87\x7c\xb3\xdf\xb1\x54\x74\x77\x54\x09\xe7\x35\x83\xb0\x9b\x02\xc2\x03\x7b\x36\xe2\xd4\x90\xc3\x68\x94\x9f\x96\xf7\x6c\x25\xf4\x22\x5f\x58\xfc\xf4\x98\xfe\x5c\xbf\xf1\x59\x85\xb0\x91\x36\x6c\x21\x11\x5f\xde\xcf\x1f\xd8\x73\xe0\xc9\x5e\xfc\xae\xda\xcb\xa2\xe5\x7d\xab\xa1\x3c\x51\xd5\x27\x16\x1b\x68\x2d\xc3\xd5\x83\x7a\xb8\x22\x1b\x65\x09\x6c\xb3\xb5\x01\x93\xe9\x79\xa4\x46\x26\x72\xce\x5a\x9c\xfa\x0b\x66\x1c\x67\x1e\x1f\x33\xc3\x47\xf3\x02\xac\x77\x82\xb3\xd1\x37\x0e\x95\x3c\x5a\x34\x65\x72\x20\xd0\x16\xcd\x6d\x99\xbd\xdb\x39\x4b\x21\xf9\xb4\x21\x5f\x11\xfc\xf9\xa0\x8e\x28\x3f\xea\xbf\xf3\x45\x27\xe9\xd7\x06\x8c\x5a\x30\x93\xd1\x4a\x51\xf1\x3a\x47\x02\x64\x1f\x65\xa9\x76\x98\x62\x9c\xa3\x7e\xf8\xb7\x23\x8f\xd7\x7c\x4d\x8f\xe8\x73\x4e\xeb\xd2\x01\xca\x08\xa7\x25\xfd\x90\x68\x2a\x5d\xba\x62\x32\xce\x3d\x56\xbd\xc2\x84\x71\x3e\xeb\x30\x72\x9b\x16\x3e\x30\xc9\xf6\x82\x56\x78\xa3\xdf\xa0\x96\x65\xf3\xa9\x14\xbd\xf9\xba\x31\x0a\xa8\x6b\xd2\x2a\x62\x09\x13\xcc\xe8\x30\x47\x2a\xca\x50\xb4\x03\x5e\x3b\x75\xd7\x7a\xe8\xd1\xed\x7f\x2e\x83\x83\xb2\x1e\xd4\x6c\xed\x03\x0c\x6e\x11\x6b\x82\xd7\x68\xa4\x18\x94\xa5\x92\xa4\x8e\xa2\xcd\x65\x89\x9e\xf4\xb7\xf9\xbe\x3e\x43\xb6\xdc\x27\xd4\x34\xe9\x92\x42\x1b\x1f\x37\x65\x11\xf3\xd0\x11\xcb\x52\x7e\x7b\xda\xfe\x75\x56\x96\x16\x06\xef\x64\xa6\x9d\xf3\x85\xbc\x98\x39\x46\xa2\x15\x55\xf3\x0b\x99\xba\xd2\xa7\x02\x37\x88\xd7\x70\xd0\xa7\xaf\x2d\x85\x26\x0e\x75\x5c\xe6\xd8\xc1\xfb\xee\x33\xde\xb1\xa2\x08\x37\x0c\x4f\x9b\x3f\x27\x2c\x2c\x18\xc4\xe7\x8c\x0b\xdc\x8c\x0d\x91\xbd\xf2\xbf\x03\x8d\x71\xa3\x31\x71\x35\xf6\xe4\xa2\xe3\x22\x4e\x3a\x15\xe6\xfc\xf6\xf7\xe8\x8d\x19\x37\xb2\xd5\x6a\xcf\x59\xe4\xde\x38\xf9\x2d\x5e\x23\x91\xfa\x86\xa8\x95\x89\x10\x75\x53\x44\xea\x7b\x27\x79\xe7\xcd\xaa\x4a\xb1\xaa\x4b\x2b\xaa\x59\x30\xf1\x93\xea\x69\xe6\x1a\xf7\x17\x69\xba\x97\xec\x26\xc7\xaa\x69\x0f\xc6\x3b\x6c\xd6\x3b\x79\x62\x92\xff\x1d\x81\xfc\x96\x6f\x1b\xd5\x09\xa3\x4e\xbd\x54\xb3\x2e\x5e\xf6\x9a\x1c\xef\xbc\x6d\x79\x11\x2a\xa9\xb4\xbf\x6a\xab\x61\xd1\x5e\xaa\xd1\x78\xb3\x44\x6c\xaf\xd2\x5c\x02\xdf\x23\x62\x6b\x97\xcf\x35\x8e\x76\x57\xe4\x12\xd2\xd4\x86\x5c\xbd\x84\x65\x63\xa5\x4e\x62\x34\x0a\x4b\xbf\x51\x11\xa7\xee\xcc\xf5\x4e\xd9\xaa\x87\x6a\x62\x5e\x53\x18\x53\x03\xe8\x73\x32\xb4\xd6\x5d\x49\xdb\x05\xdf\x75\xb7\x56\x5f\xf2\xb4\xef\x7a\x38\x3e\x3d\xac\x12\xca\x8e\x88\x6a\xfe\xb1\x70\x29\x37\x9c\x5d\x16\xed\x13\x0c\x1d\xfb\x34\x62\xeb\x38\x65\x11\xb9\xb8\x50\x83\xec\x09\x1c\xbc\x80\x1d\x29\xc3\x2d\x92\xd0\x83\x44\x18\xd7\x43\xca\x1d\x9a\x27\x71\x12\x51\x52\xea\xec\x64\x17\x17\xb2\x73\x1c\xee\x22\x7a\x90\xdf\xe6\x71\x5d\x49\xd1\xa3\xda\x73\x58\xd9\x55\x73\xaa\xa8\xdc\x8e\x4f\x97\xa4\xca\xb2\x16\xe1\x31\x4e\xa3\xec\xb1\xab\xd8\x4c\x76\xba\x9b\x24\x5b\x86\x09\xad\x4c\x4a\xa7\xff\x13\x00\x00\xff\xff\x4c\x86\x22\xfc\x39\x4c\x00\x00" +var _pluginsMarked081MarkedMinJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xed\x96\xe3\xb6\x95\xe0\xff\x3c\x05\x85\xee\xa8\x00\x11\x22\x4b\xdd\x89\x67\x43\x09\x45\x77\xda\x4e\xc6\x8e\xe3\x76\xdc\x4e\x26\x63\x92\xaa\xa6\x24\x48\xa2\x8b\x02\x65\x10\xea\xaa\x8a\x40\x9f\x79\x87\xdd\x1f\xbb\xe7\xec\xfe\xdd\x07\x9b\x27\xd9\x03\x80\x1f\xa0\x4a\x55\x6e\xc7\xd9\x33\xe7\xcc\x99\x1f\xad\x22\xf1\x71\x71\x71\x71\x3f\x81\x4b\xb4\x3f\x1a\xfd\xc2\x19\x39\xbb\x94\xdf\xd0\x95\x33\x76\x52\xfd\xb8\x2a\x6e\x99\xb3\x4f\x79\x49\xb9\xaa\x7d\x5d\xec\xef\x79\xb6\xd9\x0a\x07\x2e\x91\xf3\xe2\x72\x32\x19\xbf\xb8\x7c\x71\x89\x9d\xd7\x5b\x9e\x95\xa2\xd8\x6f\x29\x77\x3e\xa7\xeb\x35\xa7\xf7\x9e\x03\xff\xf8\xd9\x37\xce\x17\xd9\x92\xb2\x92\xae\x90\xea\xbf\x15\x62\x5f\x06\xbe\xbf\xc9\xc4\xf6\xb0\xf0\x96\xc5\xce\x37\x03\x7e\x57\xd6\x0f\xbf\x70\x46\xfe\x2f\x06\xeb\x03\x5b\x8a\xac\x60\x90\x62\x81\x8e\xa0\x58\x7c\x47\x97\x02\x10\x22\xee\xf7\xb4\x58\x3b\xf4\x6e\x5f\x70\x51\x0e\x87\xe0\xc0\x56\x74\x9d\x31\xba\x02\x83\xa6\x72\x57\xac\x0e\x39\x0d\xcd\x1f\xaf\x6e\x4a\x04\x44\x01\x68\xc0\x76\x90\x4c\xef\xe1\xd0\xfc\xf5\xd2\xdd\x2a\x34\x8f\x50\xa0\x00\x52\x42\xa5\x2c\x69\xbe\x46\x9e\xc1\x4e\x81\xa9\xa0\xd8\x66\x25\x6e\x51\x44\x47\x70\x28\xa9\x53\x0a\x9e\x2d\x05\x98\x36\xe5\x0e\x37\xc8\xaf\x0b\x0e\xdf\xa7\xdc\x61\xe4\x72\xca\x66\xc2\xcb\x29\xdb\x88\xed\x94\xb9\x2e\x3a\xaa\x72\x4e\x44\xc4\x92\x29\xf7\x28\x3b\xec\x28\x4f\x17\x39\x25\xf6\x8b\x94\x83\x09\xe6\xde\xb2\x60\xeb\x6c\x73\x30\xf5\x83\x4b\x0c\xde\xa7\xf9\x81\x82\x8c\x39\x7c\x38\x84\xdc\xbb\xe5\x99\xa8\xeb\x10\x7e\xa3\xe9\xe5\x99\x99\x7c\xc5\x8b\x3d\xe5\xe2\x1e\x52\xcc\xbd\x1b\x7a\x8f\x39\xaa\xaa\x16\x4b\xa1\xb0\xc4\x0c\x1d\x39\x15\x07\xce\x1c\x31\x1c\x72\x48\xbd\x3d\x2f\x44\xa1\x68\x84\x05\xc2\x4c\x97\x61\x86\x30\xed\x3a\x32\x48\xdb\x4e\xdb\x88\x26\x95\x9a\x0c\xc5\x25\x81\x2d\x65\xd4\xec\x9b\xe6\x14\x36\xad\x8f\x8b\xb4\xa4\x7f\xe6\x79\xc0\x0e\x79\x8e\x17\x9c\xa6\x37\x65\x30\x98\xe0\xcd\x7a\x17\x0c\x2e\xf1\x96\xa6\x2b\xca\x3f\x5b\x95\xdd\xcb\x57\x9c\xae\xb3\xbb\x00\x00\xbc\xcd\x36\xdb\x5c\xf1\x9f\xe9\x9c\xa7\x6c\xd3\x54\xaa\xe7\x43\xba\xa1\x63\x80\x77\x29\xdb\xe4\x54\xf5\xdf\xd3\x55\xca\x44\xb6\x54\xf0\x39\x65\x2b\xca\x29\x37\x5d\xcb\x94\x65\x22\xfb\x1b\x55\x35\xcd\x73\x53\x95\xe5\x94\x09\x5d\xb1\x4b\xb9\xf8\x22\x2b\x45\xd9\xbe\xdd\xef\x53\x66\x5e\xef\xb6\x62\x97\x07\x83\x49\x55\x89\x96\xcb\x8e\x2b\xba\x4e\x0f\xb9\x28\x03\x0a\x11\xde\x50\xf1\x49\xfb\x8e\x97\xdb\x94\x6d\x68\x5b\xd0\xb1\x38\x3a\xb6\x00\xbc\xa6\x3f\xa1\x55\x55\x41\x4a\x8e\x75\x45\x70\xac\x2a\xdc\x72\x33\xb2\x1f\x33\x02\xbb\x7e\xb8\xf4\xac\x51\x71\xe9\xf5\x47\xc5\x7e\x34\x9c\x5d\x81\x8b\xc4\x47\x38\x27\xed\xcb\x06\xa7\xc4\x8f\xf4\xb3\x1c\xc2\x70\xf0\x2c\x8c\x6f\xdd\x29\xf2\x71\x71\xb6\x78\x83\xb7\xe4\x08\x86\x20\x00\xc3\x74\xb7\x9f\x02\x0c\x66\xea\x39\x17\xea\xf1\x4a\x3d\x6e\xd4\xe3\x05\xb8\x08\xc0\xf0\xfb\x43\xa1\xcb\x2f\x54\xf9\xb3\x97\xbf\x99\x82\x6a\xaa\x58\xe5\x40\xfc\x21\x7c\x06\xc3\x20\x5e\xb9\x48\xc2\x30\x78\x76\x17\x5d\x8e\x7f\xf3\x6a\xfc\xbb\x74\xbc\x4e\x4c\x51\x7c\xeb\x22\x34\x0d\xfd\x4d\xd6\x89\xd5\xd2\xe2\x3b\xea\x71\xba\xcf\xd3\x25\x85\x07\xdc\x57\x19\xa6\x01\x58\x16\xb9\x96\x76\x02\x05\x11\x9e\x28\xbe\x28\x6e\x29\x7f\x9d\x96\x14\x22\x14\x82\x00\x04\xe0\x99\xaa\x15\x8a\x4c\xfc\x95\x80\x97\x28\x04\x77\xbd\x92\x09\x0a\xdf\x0a\x9e\xb1\x8d\xb7\xe6\xc5\xee\xf5\x36\xe5\xaf\x8b\x15\x85\x5a\x25\x7e\xc6\x04\x14\x5e\x79\x58\x94\xba\x05\x7c\x81\xf0\xe4\x23\x84\x82\x73\x1d\x5c\xbb\xe1\x04\xa1\x00\x80\x0a\x69\x99\xd9\x13\x1f\xce\x65\x34\x8f\xa3\x04\xc5\x73\x7f\xa3\xa9\xb3\x21\x7e\x34\x8f\x6f\x03\xb5\x36\x6b\xe2\xcf\x9f\xcb\x79\x94\x8e\xff\x96\xa8\x9f\xcb\xf1\x6f\x5c\x6f\x9c\x8c\x02\x39\x8f\xc2\x67\x89\x9f\xe9\x1e\x2b\x72\xac\xf0\x82\xf8\xf3\x68\x1e\x24\x6e\x10\xfb\xa3\x68\xee\x27\xa3\xe7\x3e\xbe\x21\xfe\x1c\x9a\x52\x14\xc5\x65\xfc\x56\x97\xee\xba\xd2\xa6\x6d\x57\xdb\x91\xfb\xce\xd0\x73\x15\x01\x07\xb8\x34\x91\x12\x2e\x3c\x41\x4b\x01\x29\x0a\x9b\x42\x42\x5d\xe0\x83\xa0\x7d\xbd\x86\x14\x03\x1f\xe0\xc1\x25\x42\x53\xa3\xfb\xc6\x13\xb5\x08\x94\x34\x6d\x90\x97\xb1\x15\xbd\x7b\xb3\x86\x20\x00\x68\x5a\x2f\x97\xef\x1b\xda\x77\x94\xba\xc4\x2f\x50\xc8\x42\x11\x74\x4b\x7d\x83\xc1\xf3\x09\x40\xae\x08\x80\x7f\xba\x78\xfd\x96\xbb\xb6\x25\x75\x45\xa7\xb9\xae\x1b\x95\x67\xd4\x2f\x6d\x54\x72\xb6\x86\x97\x84\x10\x8e\x6a\x6c\xc0\xb4\xd1\xdd\x25\xb9\x9c\x96\x33\x3e\x35\x5d\x32\x42\x9b\x21\xf9\xb8\x1c\x4f\x90\xea\x99\x0d\x08\x11\x52\x32\x74\x54\x2f\x44\xbf\x0c\x18\xd2\xea\x6d\x5a\xba\x6e\x45\x73\x65\x24\x5c\xb7\x6a\x79\xd7\xcc\x12\x5e\x62\x3e\x2e\x0d\x2b\xdc\x93\x3e\x17\x67\x6b\x68\x7e\xb3\x86\xe6\xe8\x01\xe7\xe7\x98\x21\x03\x3c\x5b\xc3\xf4\xf1\x76\x05\x66\x0d\x9d\x1d\x5a\xe1\x5b\xb2\xc4\xef\x7b\xc3\x61\x83\x3b\xad\xe9\x32\x15\xfc\xfe\xc8\xc9\x8a\x2e\x8b\x15\xfd\xf3\xd7\x9f\xbd\x2e\x76\xfb\x82\x51\x26\xe0\x12\x32\x84\x5a\xb8\x1b\x0c\x00\xea\x8b\x56\xb5\x4c\xc5\x72\x6b\xc9\xa9\x52\xab\x55\x43\xde\x6e\xe5\xbf\x4b\xdf\xa7\xe5\x92\x67\x7b\x11\x00\x24\xe5\x49\xed\xfb\xc5\xe3\x75\xab\x54\xa4\x01\x68\x67\xa9\xe1\x8b\xe1\x70\xb0\x36\xf3\x67\x68\x38\x84\x8c\xdc\x41\x35\x29\xa4\x67\xc2\x08\x65\xf5\x4c\x20\xeb\xb0\xf7\x7f\xf9\xe2\xd7\xfe\x06\x83\x5f\x82\x47\xb0\x6e\x9e\x2b\xfc\x9c\xd8\x2a\xbb\x61\x0d\x81\x19\xe6\x64\x32\xe5\xb3\x94\x6f\x0e\x3b\xca\x44\xd9\xf0\x13\x77\x5d\xa4\x9a\x31\x27\x63\x8e\x20\x6d\x7d\xc4\x13\x54\x5b\xe8\xd6\xcc\x7a\xdb\xb4\x7c\x73\xcb\x1a\x5b\xed\x2d\xd3\x3c\xd7\xd8\x0f\x87\x90\x46\x2c\xd1\x4e\x82\xbd\x7e\x6f\x4f\x58\xc5\x88\x59\xb7\xdc\x7e\x2c\x95\xea\x38\x59\xdf\x06\x6b\x4e\x94\x3d\x23\x62\x7a\x39\x23\xe3\xb1\x72\xa4\xe2\x58\xc9\x12\x8b\xca\x64\x8a\x38\x19\xf0\x66\x28\x1e\x02\x09\x02\xe0\x48\x50\x21\xaf\xdc\xe7\x99\x80\xbe\x13\x4b\x1f\x61\x4e\x2e\x15\xe3\xb3\x7a\xba\x57\x02\x31\xdd\x60\xa9\x7c\xa7\xa9\xe6\x48\x35\xdc\xb4\x69\x30\x13\x53\xc4\xbc\xfd\xa1\xdc\x42\x00\x90\x96\xad\x29\x9f\x31\x9b\x5a\x2c\xe2\x09\x51\x3f\x9e\xe0\xd9\x0e\x5a\xcb\x14\xc7\x7a\x3e\x40\xb6\xca\x42\x2d\xc9\xdf\xc8\x35\x7e\xf5\x50\x66\xb4\xb2\xa1\x2d\xb7\x88\x68\x92\x34\xac\x32\x9e\x4c\x3b\x87\xac\x91\x7c\x35\x15\x6c\x64\x9c\x29\x59\x45\xd9\x1a\xd6\x04\xa1\x51\x99\xa0\xd2\x75\xa7\x8d\x84\xa9\x02\x25\xdd\xd1\x65\x82\xf8\xb9\xf2\x49\x32\x1c\x8e\xc7\x7c\x76\xd9\x30\x67\x39\x6d\x86\xae\xf0\xd7\x3d\x1e\xa2\xc3\x21\xf5\x1a\xe7\x63\x38\x1c\x50\xcf\xb8\x1e\xc3\xe1\xb2\x60\x65\x91\x53\xef\x36\xe5\x0c\x02\xe3\x7b\x42\x14\x38\x4d\x63\x27\x65\xab\xf6\x85\x2b\x07\x3d\xdd\x51\x41\x79\xe9\xa4\x9c\x3a\x2b\xba\xe7\x74\x99\x0a\xba\x72\xca\x8c\x2d\xa9\xf3\x9e\xf2\x52\x69\xbe\x4b\xef\x9f\xbc\x4b\xec\x94\xdb\xe2\x90\xaf\x1c\x56\x08\x67\x41\x9d\x43\x49\x57\x1a\xde\x6d\x96\xe7\xaa\x80\xd3\x5d\xf1\x9e\xae\x34\xd7\x6e\xa9\xb3\x3e\x88\x03\xa7\x9e\xf3\x35\x4d\x57\xce\xae\xe0\xd4\xd9\x52\x4e\x83\xd6\x97\x37\xd8\x79\xdf\x95\x5e\xc1\x37\xfe\x33\xff\xcf\x6f\x3f\xfb\xf2\xf7\xd7\xaf\x3e\xf9\xcb\xab\x2f\x5f\x7f\xfa\x89\xb7\x5b\x3d\x2b\xf6\x6a\xc6\x25\x40\x15\xfe\x56\x79\x34\x74\x19\x58\xde\x73\x55\xe1\xef\x3b\xb2\x30\x4c\xd1\x91\x11\xe6\x95\xc5\x81\x2f\xa9\x94\x0c\x6b\x2f\x1c\x80\xa9\x61\xdc\x63\xcd\x13\xc1\x39\x83\xef\x08\x63\xe9\x9b\xce\xa2\x63\xa1\xbd\x31\x06\x58\xc1\x6e\xca\xb4\x77\xcb\x2b\xe5\xa8\x7d\x4d\x37\xf4\xce\x46\xab\xe1\x32\x7a\xeb\x7c\x4d\x37\x9f\xde\xed\x35\x6a\x55\xd5\x0a\x46\x85\xbf\x20\xcf\xf1\x6b\x72\x64\xf4\x36\xcf\x18\x0d\xfc\x79\xcc\x5c\x1f\x2b\x2d\x13\xf8\x73\xe8\x1c\x7f\x55\x45\xf3\x98\x25\x6e\xcc\x46\xc8\xf5\xf1\x9a\xb2\x25\x2d\x03\x7f\xee\x1c\x2f\xf1\xcb\x0a\xbe\x3b\xbe\xc4\x15\x0c\x49\x34\x7f\x17\xb3\x64\x14\x33\x24\x7f\x50\x45\x08\xea\x6e\x23\x14\x33\x18\x06\x12\xd6\x56\x39\x44\x31\x43\x30\x0c\x4c\xef\x78\x12\xfd\xf0\x2e\x19\x39\x23\xe5\x26\x31\x57\x3e\x47\xf2\x39\xf2\xf1\x96\x77\xf0\x61\x18\x8c\x9d\x11\x52\x20\x95\x33\x75\x6d\x3d\xc7\xa3\xfa\x05\xb5\xdd\x7d\xed\x6c\x67\x6c\xd3\x01\x78\x76\x9c\xe0\x8f\x2a\xe4\xb8\x35\x42\xa1\x1e\xde\x7d\xe6\xa2\xd0\x1a\xd7\xc7\x8b\xbc\x58\xde\x28\x3f\xaf\x9e\xb7\xea\x7c\xe5\x84\xca\x49\x4a\x37\x3c\xdd\x6f\x65\x3d\x21\xdd\x47\x3e\x47\x8a\x1a\x79\x56\x8a\xae\x39\x82\x8b\x43\x9e\x23\xc7\xcc\xd5\x0d\x61\x18\x6c\xb9\x5c\xd1\xb5\x8c\xd9\xf1\x85\x22\xd3\xc0\x41\x30\x1c\xc4\x13\xd5\xce\x41\x31\x1b\xc9\xb8\x1c\x69\xb4\x95\x1b\x0e\x1a\x9c\xc3\x60\x06\x8d\xdd\x90\x7b\x4e\x65\x29\xee\x73\x8a\xa2\x38\x2e\xaf\x12\xf5\x1b\x6b\x4a\xaa\x56\x7e\x1c\x4f\xae\xa2\x79\xac\x49\x5f\x53\x70\x59\xec\x94\x86\xae\x4b\x61\x53\x3c\x8b\xe3\xb0\xeb\x1c\xc7\xe1\x55\xac\xc6\x9f\x0d\xa2\x57\xe3\x6f\x2d\xb0\x4d\x71\x1c\x47\xaf\x3f\x79\xf5\xcd\xab\x38\x8e\xec\x6e\x49\x1c\x27\x75\x13\x3f\x84\x22\xdd\x18\x72\xca\x38\x66\xd2\x0f\xaf\x50\x0f\xbf\xd8\xcc\x5b\x0f\x0f\xc3\xc1\x83\x29\x41\xe3\x0e\xc6\xf1\xed\xd8\x10\x36\x15\x82\x67\x8b\x83\xa0\x68\x14\x3a\x23\x3f\xbc\x52\x9c\xe5\xc4\xb1\x48\x46\x06\x9c\xa2\xfb\xa3\x43\xf8\xe7\xc6\xb0\x87\x88\xe3\x72\xf4\x53\x40\x22\x80\x57\x74\xdd\xf2\x52\x1c\xc1\x3c\x5d\xd0\x1c\xc5\x49\xe0\x8c\x62\x16\x3a\xa3\x59\xa8\xd8\xaa\xbc\x4a\x5c\x74\xa5\xfa\x6a\x62\xe8\x1a\xa9\x5a\x38\x23\x04\x45\x26\x72\x8a\x4e\xb8\x8d\xed\x75\xa0\x1b\x7c\x8b\x9b\xbf\x79\xc7\xb9\x86\x53\x5d\x14\xb3\x9a\x1f\x88\x2b\xc7\x2e\xea\x01\xb8\x6e\xf9\xb2\xeb\xa0\xab\x61\x38\xd8\x72\x59\x03\x93\x0d\x54\xd9\xb1\xb7\x34\x22\x2c\x15\xef\x4a\xc5\x77\xa8\x1e\x6e\x84\x7c\x2c\xe8\x9d\x62\x68\x53\xe2\xe3\x6b\x3d\xdf\x40\x11\x36\x2e\x47\x71\xa2\x99\x3f\x8e\xe2\x28\x4e\x12\xed\xed\xc7\x49\xa2\xe4\xe0\x5a\x4f\x52\xb5\x0b\x80\x6e\x02\x42\x19\xcd\x41\x1c\x27\x68\x04\xe4\x45\x34\xbf\xd0\xbc\xa8\xf0\x33\xcf\x2e\x52\xf4\xbb\x90\x31\x8c\xe6\x10\x25\xa3\x18\x21\xbf\x9a\xbe\x56\x21\x20\xf9\x1e\xea\xbf\x9d\xd6\x03\x1a\x0b\x80\x5f\x7b\x06\x1f\xab\x46\x8f\xab\x6b\x0c\x99\xbd\x46\x0b\x42\x84\x5f\x7b\x4a\xcc\xa8\x20\x0a\xad\x68\xe4\x8e\x13\x19\xaf\x8e\x13\xfc\x9b\x2a\xf6\x90\x8f\x5f\x7b\x99\xa0\x3a\x80\x50\xab\x64\x24\x37\x34\x32\xde\x10\xb2\x16\xd4\x10\xd5\xa2\x3f\x6a\x7b\x29\x1c\xd5\x03\x06\x9b\x1d\xb0\x4c\xbc\x6a\xef\x6f\xda\xa1\x4f\xf0\x51\x24\xd7\x5d\xd5\xc3\x53\xbd\xda\xf9\x6d\x39\xc0\x40\x89\x30\x0c\x49\x1c\x4f\x6a\x16\x7b\x54\x23\xf6\x55\xa2\xe1\x15\x64\xe1\x07\x56\x74\xdd\x01\x04\xae\x26\x74\x6d\x68\x5c\xa0\x5a\xf6\xf0\xbd\x16\xe9\x86\x80\x74\xb5\xe2\xb4\x2c\x65\xca\x45\xb6\xcc\xa9\x4c\xcb\x6c\x45\xe5\x22\x2d\xcd\xcf\xba\x60\xc2\x66\xaf\x45\xb1\xba\x97\xcb\x54\x9b\x4b\xb9\xa4\x4c\x50\x2e\x97\x45\xae\xfe\x6d\x78\x71\xd8\xcb\xd5\x4a\xae\xa8\x48\xb3\xbc\x94\xab\x2c\xcd\x8b\x8d\x5c\x65\x5c\xae\xb2\xf7\x72\x95\xcb\x95\x90\xeb\x8c\xe6\xab\x92\xaa\x87\x4d\x03\x47\x6f\x1b\x51\xb9\x2e\x0a\x05\x6e\x5d\xf0\x9d\x5c\x2b\x77\xc1\xfc\xaa\xc6\xdb\x68\x32\xfe\x28\xd1\x8c\x2f\xcd\x8e\x8b\x54\x72\x20\x76\xb9\xcc\x4c\xd3\x9c\x6e\x28\x5b\xc9\x3c\x93\x79\xc6\x6e\xe4\x2e\xcd\x98\xdc\x51\x76\xd0\x3f\x6a\x31\xe5\x8e\x8a\x54\xb2\xf4\xbd\x64\x85\x81\x2b\x8b\x5c\x16\x7b\x61\xf0\x36\x1e\x80\xdc\x4b\xed\xa9\xc8\x92\x6a\x2b\x2b\x6b\x33\x5d\x1e\x76\xbb\x94\xdf\x4b\x2d\xcf\x52\x68\x2a\x88\x95\x14\x0a\x65\x29\xb6\x52\x68\xcc\x34\x97\x4a\xc1\xa5\xe0\xe9\xf2\x46\x1e\x0c\x57\xd7\x2a\x9b\xf8\xb3\xc1\x78\x0c\xc3\xc1\x58\x2b\x52\x63\x30\xc7\xe3\x2b\xc5\x75\x6a\x22\x9a\x75\xd4\x03\x06\x99\xbd\xa8\x75\x77\x1b\x94\x2d\x22\xe9\x06\xd4\x6b\x69\x95\xb6\x9a\x16\x60\xdf\x71\x95\x92\x7c\x35\xfe\x36\xb8\x4e\xa2\xf8\xd6\x0b\xc6\x5a\x04\x9c\x11\x71\x46\x40\x89\x31\x4b\x46\x40\xea\xd7\x46\x94\x2f\xcc\xab\xd2\x7d\xe0\x82\xcc\xae\xde\x25\x2e\x0a\xfd\x13\xf6\x69\x55\x94\x46\xbc\xd3\x58\x27\xfc\xfd\xda\xdb\x72\xbb\xc8\x68\x2c\x80\x81\xd1\x7e\xc6\x80\x3b\xf6\x84\x5b\xb5\x06\x74\xdc\xd6\x96\x77\x5c\xd8\xf6\xbe\xb2\xeb\x8d\xe6\x6b\xeb\x60\x18\xd8\xee\x4b\x6d\x44\x1b\x07\xa6\x33\xab\x36\x08\x25\xb9\x36\x00\xa3\x57\x26\x91\x87\x12\xd4\xc3\x51\xad\x13\xc0\x40\x59\xc9\x30\x78\x68\x27\x95\x41\x0c\x4e\x8d\x95\x1c\x8c\xc7\x3d\x71\xed\xad\x5d\x5f\xb5\xb5\x53\xd5\xc4\xed\x5e\xad\xde\x2d\xc1\x81\xbd\x18\x27\x80\x58\xc1\x77\x69\x4e\xbe\x80\xc7\x0a\xbf\x56\x05\x9b\xf5\xae\x7e\xab\xeb\xf0\xb1\xb1\x56\x60\xee\x8c\x60\x34\x57\x93\x70\x12\x6f\x14\xc7\xd2\x1b\x21\xf5\x32\x82\xd1\x38\x48\x5c\x47\x15\x45\x63\xe9\x04\xb5\x9f\x14\x33\xa8\x35\xd6\x40\x4d\xdb\x32\x4b\x96\xba\x50\x9e\xe6\x43\x93\xe4\x59\xc6\x59\x0f\x31\x92\xcf\x11\xc0\x1d\x1a\x71\x2c\xa1\xe7\x9a\xc1\xe3\x58\x86\xd0\x19\x69\x14\xfa\xa3\x3b\xa3\x7f\xe8\xf8\x55\x4d\x1f\xaf\x26\x88\x26\xbd\xf5\xfe\xb3\x19\xfb\xc7\x18\x58\x21\xab\x6b\xb4\x57\x1e\xb3\xe4\x3f\x29\x77\x2b\x9a\xf6\x29\xfc\x5f\xf4\xfd\x47\xd2\xb7\x39\x52\x38\x15\x74\x1d\x86\x7c\x0f\xb5\x9c\x87\x41\x6d\x4b\x9c\x46\x16\x62\x1d\xac\xc8\x99\x76\xfb\x1b\x97\xd9\x0d\x4d\x14\xd2\xb4\xd2\xae\x73\xd3\x52\xa4\x1b\x55\x0a\xa2\x79\x0c\x92\x51\x6c\x5c\x41\x65\x3d\xe2\xb8\x54\x96\x04\xf8\x57\x71\x5c\x2a\xcf\x2a\xf4\xc3\x73\x20\xd0\x07\xdb\x39\x5f\xa4\x1b\x7f\x83\x01\x0c\x07\x2a\x90\x90\x74\x27\x4b\xc1\x0b\xb6\x91\xe5\x2e\xcd\x73\x59\xca\x65\x26\xa8\xfc\x5e\xae\xd6\x4c\xa6\x8b\x05\x97\xab\x54\xa4\x52\x64\xbb\x5a\x07\xbc\x4f\xb9\x2c\xd3\xdd\x5e\xde\x2c\x56\xb2\x3c\x2c\x64\x79\xd8\xcb\x4c\x2e\xe4\x41\xee\x52\x7e\x23\xf9\x61\x71\x2f\xb9\x90\x7c\x2f\x17\xab\x4c\x2e\x56\x85\x2c\xf7\x29\x93\x0b\x2e\x6f\x17\x5c\x66\xac\x94\x2b\x9a\xcb\x6c\xb7\x41\x71\xbc\x40\x71\x7c\xeb\xc2\x70\x10\x28\x37\x39\xbe\x8d\xe3\xf2\xe3\x64\xf4\xb1\xaa\xe9\x3b\x59\x75\x7c\x31\x8a\x23\xe5\xc4\x27\xca\xeb\x57\xc1\xc5\x69\x5c\xa1\xc2\x57\x00\x13\xe3\x97\x47\x00\x25\xa7\x01\x85\x15\xf7\x8e\xda\x98\x77\x54\x07\x06\xa1\x89\x1d\x9e\xb9\xce\x08\x85\x56\xa7\x3a\x98\xff\x16\x77\xc1\x84\x92\x37\xc3\x0d\x7f\x8f\xc1\x1e\xd5\x32\x37\xd2\xe3\xf6\x38\xbf\x6d\xf5\xda\x6b\x9e\x7f\x82\x60\xca\x56\xf8\xfa\x7e\x80\x91\xa7\x5e\x59\x2d\x3a\x3d\x32\x57\x66\x0b\xff\x0d\x39\xd2\x72\x99\xee\xf5\x36\x47\x0c\xa3\x01\x78\xf6\xfc\x97\xc3\x0b\x88\x46\x2e\x8e\xc7\x9e\x1f\x4c\x67\xe4\x2a\xfc\x58\x85\x35\x71\x3c\xbf\x7e\x77\x94\xd5\x0f\x09\xf2\x71\x7a\x10\x85\xf2\x19\x03\x7f\xae\x02\xf3\x2d\xdd\xd1\x40\x2d\x4f\x7c\x77\x79\x39\x8e\xef\x26\xeb\xd9\x55\x32\x92\x74\x97\x66\x39\xba\xf2\xf1\x81\xe7\x3a\xb0\xdb\x04\x60\x5e\xf3\xa9\x9c\xcf\xfc\xda\xc9\xd2\xc1\x68\xd0\x44\xa3\x72\x3e\xb3\xcb\x8d\xe7\x65\x87\xc1\xaa\x95\x1f\xaa\x76\x0f\x02\x78\x39\x9f\x0d\x9a\xce\xae\x92\xa8\x2e\x88\x57\x55\x4f\x45\xf0\x00\xd7\xf3\x19\x84\x56\x54\x1b\xc3\xb8\x1c\xc1\x2d\xa7\x6b\x6d\x3f\x4b\xb7\x0d\x5e\x55\xf4\x87\x7c\xcc\xe9\xfa\x6c\xbf\xa8\x0b\x10\xad\x08\x31\xac\x43\x44\x15\x06\x2a\xbe\xf6\x31\x2b\xec\xee\xbd\x3e\x51\x1d\x4e\x8e\xe2\x44\x3e\x08\x31\x47\x28\x4e\x74\xa3\x38\x41\xa1\x8f\x8d\x60\x07\xfe\xfc\xfa\x5a\x8b\xc9\x75\x82\xae\xaf\x61\x38\xb8\x46\x72\x1e\x8f\x62\xcd\xf6\xe5\x28\x41\xfa\x39\x1c\xc4\x23\x24\x9b\xa6\x49\xe3\x57\xeb\x97\x33\xdd\x4e\x1a\x74\x20\x7c\x4c\x77\x6a\xc8\x76\xc4\xb6\xa7\x19\x6e\xa6\xcf\xbe\xba\xf1\x74\xe9\xac\x07\xae\xe9\xa5\xe6\x55\xee\x0f\x6c\x29\x0e\xa9\x8a\x21\x92\xb6\xfd\xf5\xec\x14\xc1\xc7\xda\xd7\xc3\xce\x40\xaf\x43\x3c\x6a\x71\x78\xa2\xd3\x08\x28\x64\x4f\x27\xda\x4c\xb3\xd9\xfb\x7b\xe7\x22\x18\xcd\xdf\xa9\x55\x78\x67\x35\x7e\x97\xa0\x78\x02\xc3\xc1\x3b\xe4\xe3\x05\x37\xbb\x5f\x46\x61\x23\x13\x34\x9b\x1d\xad\x15\xd5\x42\x60\xf6\x13\xe0\x3b\x57\x43\x51\x6c\xd5\x40\xd2\x8e\x19\x89\xe2\x78\x36\x88\xa3\x77\xa3\x44\xc6\x8b\x6b\xf9\x1c\xc9\x68\xee\x24\x30\x24\x1a\x68\xcc\x10\x92\xf6\x8b\x8f\xaf\xad\x29\x05\x60\x10\xdb\x22\x6c\xcb\x70\x1c\xcd\xaf\x95\xfc\x82\x6a\xfa\xc6\xd3\x11\xbb\xfa\x63\xd9\x0b\x0b\x8e\xbf\xc1\x6f\x3c\x1b\x70\x4f\x45\xbf\xf1\xae\x8d\xd6\x28\x89\xff\x13\xb4\x86\x86\x69\x94\x05\xe9\x64\xdf\xfc\xad\x4f\x3f\x8f\x13\xfc\x72\x52\xf9\x7a\x04\xa5\x3c\xda\x76\x97\xe3\xdf\x78\x03\x3d\xca\xc8\xf5\x49\x58\x03\x1d\x27\x2e\xfc\x18\x75\x4d\x94\x48\x74\x6f\xe3\xe4\x78\x89\x3f\x9a\x54\x56\xbd\x51\xf6\xde\x4f\xea\x81\x94\xd5\x8a\xc6\xd7\x4a\xef\xbd\xf1\x1a\xcd\xa7\xc9\xd7\xbc\x58\xda\xd6\xcc\x0f\x74\x53\xb5\xea\xf4\x94\x40\x3b\xb9\x53\x9a\xb6\x4a\x8e\xf8\x71\x79\x3e\x02\x8d\xcb\x11\x51\xdc\x1a\xcd\x81\x8a\x40\xeb\xd7\xd6\x87\x30\xaf\x27\x31\x28\x7e\xe3\x89\x74\xa3\xf1\xed\x47\xbc\x4f\x47\xc9\x56\x3c\x6c\xe3\x76\x8a\xb4\xd6\x78\x7a\x43\xe9\x44\x61\x79\xf2\x9d\x62\xf0\xd1\xbb\x56\xe7\xbd\x4b\x94\x57\xa3\x3a\x29\x85\x4a\xfc\x99\xd1\x8c\xb3\x2b\xa3\x17\xcb\xd9\x95\xde\x1e\xbb\x92\x3d\x4b\x92\x8c\x74\x17\xad\x77\x89\x7f\x6e\x33\x4d\x17\x5d\xa8\xa2\x0b\x5d\x74\x21\x63\xa3\x74\x63\xa4\x0a\x91\x2e\x8c\xf5\xea\xb5\x2b\x77\xb2\x6a\xf5\x7e\xda\x9b\x87\xfb\x69\x0a\x55\xd0\xe0\xfc\x70\x9f\xed\xcd\xb9\x7d\xb6\x37\x5e\x6d\x16\xf4\x50\xf5\xf3\x53\xa3\xf5\xfa\xda\xf1\xe7\x1b\x55\xd0\xf7\x4d\xdf\xb4\xbe\xa9\xad\xf4\x43\x12\xbf\x45\xed\x99\x42\xfc\xf6\x44\x8f\x3f\xa8\x3e\xa3\xc5\x1f\x82\xe8\xf4\xf9\x99\xfe\x4d\x6f\x6d\xbf\xbe\x87\x0f\x0c\x27\xf4\x46\x21\x8a\x91\xff\x81\xf3\x6e\x0c\xe9\x43\x48\x65\xeb\x0a\x2a\xa3\xf7\x81\xf0\x2a\x45\xb8\x36\x70\xef\x68\x56\x7b\x3b\x5a\xf7\xe9\x47\x0b\x5c\x82\x00\x06\x3f\xc8\xe4\x64\xd7\xef\x9a\xde\x09\xca\x56\x74\x65\xa4\x36\xf0\xa3\x57\xe3\x6f\x4d\xc2\x86\x77\xed\x9e\xaa\xa0\xf1\xb5\xd9\x76\xf6\x7a\x45\x23\x5b\xa3\x58\xfa\x44\x39\x46\xfe\x5c\x71\xeb\x5a\xec\xa5\x3e\x7b\x0b\x51\x10\xfb\xb1\x2f\x6f\x6f\x6f\x63\x0f\xf5\xd4\x53\x3c\x4e\xdc\xd8\x0b\x91\x6b\x0c\xe9\x48\xce\x35\x46\x3e\xbe\x5e\xa4\xcb\x1b\xc5\x26\x7a\x67\x3a\x88\xe6\xe1\xc0\xc3\xc1\x74\x74\xfd\x03\x44\xc3\xc4\xd5\x9b\xca\x7a\x4f\x59\x27\xfc\x58\xb8\xb8\x53\x65\x5f\xda\xd6\x48\xe1\x3e\x30\x27\x39\xca\x5c\xf9\xf3\x1f\xdc\x87\x6b\xff\x83\xeb\xff\x04\x33\xf6\x83\xb1\x63\x66\x6e\x66\x6a\x6b\xb1\xb7\xe6\x78\xc6\xc4\xc9\x68\xfe\x50\xed\xc7\x3e\x09\xaf\xdf\x1d\x63\xad\xf7\xd5\x08\x3f\xd2\xc4\xfd\xb8\x67\x2a\xe5\x87\xb4\xf7\x1b\xbe\xf1\x0e\x3c\xd7\xd2\x5b\x3f\x9f\x6c\x30\xb6\x9a\x5c\x55\x9f\x30\xc8\x89\x38\x9b\x54\xb8\x86\x0f\x37\xeb\x1d\x3e\x2e\xb8\x66\xc0\x85\x1d\x33\x28\x24\x01\x06\xa3\x3e\xef\x69\x32\x37\x68\xa8\x17\xab\x47\x1c\x2f\xae\xf5\xd6\xf5\xe2\x5a\x9a\x39\xf6\x42\x6b\x3f\x3e\xbe\xc0\x71\xa5\x22\xc0\xd1\x39\xd7\xff\x13\x72\xd4\x31\x46\xf0\x1a\x67\x4c\x9f\x74\xbe\xa9\xf0\xa7\xc4\x4a\x3a\xfb\x8e\x7c\x62\xb6\xd1\xf0\x57\xe4\x6f\xf8\x1b\xf2\x16\x7f\x46\xee\xf1\x6f\x89\x75\x9c\xda\xcf\x1b\x14\xdb\xac\xf4\x44\x71\x43\x59\x49\xa2\x04\x5b\xaf\x5a\xdf\x96\xa4\xce\x8f\x58\x72\x9a\x0a\x0a\xd9\x21\xcf\x91\x69\x55\x9f\x25\x13\x2a\xe5\xa7\xa6\x84\x1f\x72\x5a\x92\xef\x1a\xc1\xb5\x5b\xb5\x0a\x31\xec\xb5\x6c\xb3\x02\x7b\x6d\x37\xeb\xdd\x70\x08\x7b\x0d\x37\xeb\x1d\xaa\x98\x97\xd3\x3b\x72\xf6\xb4\x99\xd1\x5b\x87\x41\x81\x54\x0b\x48\x91\x49\x6c\xa3\x84\x75\x79\x1d\x6d\xc6\xc6\x09\x90\x2e\x85\xad\x97\xb3\xc1\x63\x26\x63\xae\x56\xe2\x64\x85\x84\x2a\x73\x1c\xc7\x01\xc8\xa2\x16\xa4\x78\x70\x89\x2a\x4c\xcd\xeb\xb9\x94\x10\xcc\x71\x89\x33\x9c\xe3\x14\x17\x78\x8b\x0f\x78\x89\xf7\x78\x83\xd7\x78\x85\x17\xf8\x46\x27\x43\xf4\x50\x98\x3b\xee\x73\x7f\xb3\x53\x41\xe0\x94\x4e\x51\xb6\x86\xb0\x24\x1d\x51\xbc\xfa\xb0\xdb\xa3\x77\x74\x09\x29\xd2\xf9\x29\x84\x5a\x19\x5b\x65\x74\x99\xd4\x79\x15\x08\x4f\x66\xd6\xeb\x70\x68\xaf\xb3\x4e\x04\x39\x2a\x1a\x05\xa0\xdc\xa7\x4b\x0a\x2a\x84\x70\x6f\x2c\xe5\x4d\xb7\x03\xe9\xe9\xec\x88\x05\x22\xea\xb1\x8d\x1e\x62\x3c\x49\xa6\x4f\xa0\xb3\x1b\x0e\xad\x9d\x5d\x42\xc8\xce\x53\x08\x84\x46\x62\x5c\xa2\xa8\xee\xea\x1e\x82\x67\xbb\xaf\xb3\xcd\x56\x40\x14\xc0\x92\xe8\x32\x8b\x46\xc7\x5f\x55\x35\x91\xf0\x63\x73\x32\xfb\x61\xea\xf7\xb7\x4a\x32\xde\x8a\xfb\x9c\x06\x20\x63\x2b\xca\x04\x5d\x01\x23\xb0\xe7\x99\xb5\x0c\xbe\x82\xa5\x61\x81\x0a\x75\xc9\x5d\x3d\xda\x98\xa0\xbe\xa5\xce\x13\x93\x7e\x1a\xc1\x3c\x65\x9b\xa0\x8c\x5e\x24\xa1\xfa\xa9\xf3\x6e\x74\x81\xc1\xb0\x8c\x5e\x26\x52\x02\x50\xa1\xe9\x59\x3c\xea\xfd\x88\x9f\x83\x48\xbb\xbd\xb1\xa2\x7b\xb1\x0d\xca\x68\xd2\xf4\x69\x50\x78\x91\x58\xc3\x9f\xf0\xa3\xd9\x3e\xb6\xf9\x31\x25\x35\x60\x5d\x03\xea\x24\xe2\xe0\x1b\xa8\x21\x5b\xab\xa8\x0f\x9a\xa5\x33\x7a\xee\xeb\x24\x36\x84\xd3\x3c\xdb\x30\x3d\x5e\xbf\x99\xd5\xa8\xcd\x81\xd2\x3d\x7d\x84\x97\x34\xcf\x4b\x4d\xa6\x50\xfd\x58\x32\xcb\x9e\xfb\x56\x0f\xbd\x9c\x41\x94\x54\xc8\x33\x08\xd5\x73\x24\x84\xa4\x9e\x1e\xb8\x21\xd4\xb1\x11\xca\x47\xe8\xb8\x27\x97\xd3\xfd\xac\xdf\x69\xba\x77\x5d\xa4\x70\x1d\xbb\x81\xc2\xd5\xe4\xc1\xd5\x6d\xa2\x7d\x82\xc2\xee\x99\x00\x9d\xc2\x0f\xf4\x86\x57\xf0\x41\x1d\xcc\x59\x64\xdb\xe3\xc7\x3b\xe4\x74\x2d\x40\x60\x95\x28\x15\xae\xb5\x4d\x83\xbd\xa6\x9b\x8d\x7d\x5d\xa4\x1a\x7f\x03\xbb\x17\x9c\xf6\xe9\x85\xa6\x0f\xf8\x28\x7d\x44\x46\xb6\xfc\x67\xb1\x25\x7f\x94\xe9\xbb\x2d\xb7\x9f\x33\x40\x07\xe5\xba\x14\x29\x17\xa0\x52\xfa\xef\x54\xd5\x8c\xae\x9c\xf0\xa1\xae\x81\x25\x16\x1f\x04\x99\xb2\xd5\xa3\xd3\xc8\xb3\x52\x74\xfa\xf5\x47\xb8\xae\x68\xa4\x4a\xf5\xaa\x11\xc6\x05\x5f\x51\x4e\x57\xc1\x8a\x4c\x66\x30\x23\x4a\x72\x50\x23\xbb\xba\x49\xb0\x0a\xdd\x2c\x00\x00\xe7\x45\x51\xd2\x60\x30\xa9\x1e\x22\x5d\x20\xcc\xc8\x00\x6e\x49\x94\x20\xbc\x26\x8d\xba\xdd\xe9\x74\x4c\x0b\xdd\x4c\xd0\x1d\x6a\xc1\x1b\x3e\x5a\x6b\xd6\x59\x12\x98\x12\xc5\x2c\x6d\xed\x0f\x30\x25\x69\x8f\x8c\xb0\x49\x63\x70\x63\x0f\x39\x23\x2d\x9a\x56\x16\x72\xcc\x1c\xa0\x94\xc7\x72\x4c\xd2\x06\x48\x4a\xce\xeb\xe7\x1e\xe0\xe3\x04\xb7\xc6\x20\xe8\x6a\xac\xbc\x31\xa0\x1b\x01\x77\xe9\x02\xe5\xb8\x6d\x76\x00\x19\x75\xb3\x1f\x10\xb2\x1e\x4f\x86\x43\x98\x93\xef\xea\x04\x06\xb3\x1e\x65\xb4\x77\x27\x09\x8a\x2e\x13\x0c\x27\xb3\xac\x46\x28\x9c\x10\x42\xf2\xfa\x25\x98\xcc\x9a\x47\x29\x7b\x78\x76\x5f\x2d\x0c\x87\xf9\x80\x90\xcc\x18\xe9\xd2\x2b\x75\x72\xe6\xde\x9d\x20\xef\xbb\x22\x63\x46\x25\xb9\x14\xef\x15\x16\x08\x61\x4e\x98\x94\x7e\xcc\xac\xbd\xa8\x5a\xca\x6d\x5c\x99\x36\x93\x5a\x6d\xd5\x59\xd0\x69\x6b\x7d\x15\x0c\x2e\x25\x43\x98\x0f\x87\xb0\xf0\xf4\xaa\xeb\x4f\x52\x6e\xc8\xfb\x22\x5b\x39\x97\x18\x2e\x88\x3f\x8f\xa3\xc8\xb9\xfb\x6b\x12\x27\x4e\x3b\x82\x42\xf2\x86\x00\x07\x0c\x08\x49\xa3\x49\x82\xfb\x0b\xd8\xf5\x70\xcd\xd2\xe1\x43\x8f\x21\x15\x73\x34\x5c\x29\xd2\xf2\x26\x58\xe0\xe5\x96\x2e\x6f\xe8\x2a\xb8\xa9\x99\x8f\x57\x78\x6b\x38\xee\x70\x46\x74\x7a\x65\x30\xc5\x83\xc9\xe3\xf2\xd5\x8d\x58\x8b\x57\xb6\x6e\x26\xab\x33\x7e\xd7\x64\x7b\x8e\x4d\xb7\xd1\x3e\x69\x49\xf2\x50\x8d\xd9\xc0\x0d\xdc\x47\xd4\x9a\xd8\xe5\x3f\x43\xef\xf4\x79\xa5\xce\x21\x0d\x2d\xbf\x28\xa8\x8f\xd0\xf6\x9c\x06\x83\xb3\xad\xd5\xe2\x82\x3d\xa7\x8a\x0b\x94\x51\x95\x12\x98\x13\x35\xbb\x40\x39\x3c\xcd\x3b\x3a\xe3\xee\xb4\x43\x9f\x1f\xe2\x91\x62\x3d\x45\x14\x7c\x56\xff\x55\xbf\x96\x7a\x13\xc3\x61\x9f\x56\x2b\xba\x6e\x49\xf5\x14\xad\x94\xe9\x56\x7d\xa3\x97\x09\xd1\x66\xdc\xfa\x58\x43\x57\x76\x2c\x8e\xf0\x46\xcf\xa9\x9f\xf3\x6e\xd9\xfd\xd2\xd5\xce\xfa\x89\x6f\xa8\xe3\x9a\x68\x93\x48\x09\xcf\x15\x93\xe3\x96\xd3\x75\xed\x78\xe9\x8c\x30\x35\xea\xa3\x6e\xcf\x7f\x39\x3d\xff\xa9\x9d\x9e\xde\x4a\x28\x9a\xf7\x17\xed\x67\xf8\x44\xf9\x3f\xde\x61\x07\xc4\x88\xf9\x8b\xc4\xfa\x12\x67\x12\xbc\x68\xbc\xf7\xc9\x93\x12\xda\xea\x9d\x0f\x92\xd3\xc7\x50\xb2\xf2\x75\xf4\xa8\xb5\x89\xd2\xcc\x5f\x23\x65\xc5\x15\xe3\x09\x0a\xf5\xab\xb1\x88\x97\x78\x3c\x41\xa7\x88\xf6\xc5\x8d\xde\x89\x9f\x43\x31\xd5\x1f\x34\xf4\xe8\x69\x2c\x8a\xc4\x96\x17\xb7\x7a\x2b\xe1\x53\xce\x0b\x0e\xc1\x67\x6c\x9d\xb1\x4c\x50\x27\x2f\x8a\xbd\x53\x30\x67\x71\x2f\x68\xe0\x00\xd7\x7c\x76\xf4\xba\x58\x51\x4d\xe3\xf6\x4b\x08\x6b\xd4\x0a\x0b\xc8\xb0\xfe\x8c\x31\x3a\xde\xd0\xfb\x00\xe8\x09\x00\xbc\xa1\xe2\x4c\x76\xfb\x77\x55\x95\x20\xcc\x2a\x88\xf0\x9f\xed\x0d\x9d\xdf\x91\xf7\xf8\x4b\x72\x8f\xff\x7a\x76\x0b\x87\xb6\x5b\x38\xd6\x6e\xcc\x9f\xf5\x17\x4c\x82\xd0\x87\x9b\x1f\x42\x47\xf2\x0f\x3e\x36\x32\xf9\xfc\x50\xa8\xf0\x12\xd5\xee\x9e\x1f\xbf\x1d\xf9\xca\xef\x51\x26\xb5\x67\x01\xda\x4f\x3f\x4d\xc7\x92\x9c\xaf\x85\x14\x73\x34\x55\x04\x18\x90\x72\x38\x2c\x07\x84\x50\xed\xb4\x0c\x2e\x31\x25\x25\xaa\xda\xef\x5a\x2e\x66\x7b\x4e\xaf\x66\x0a\x35\x67\x99\xa7\x65\x49\xc0\x85\xdb\x03\xda\x7d\x5e\xea\x7e\x09\x39\x1e\x5c\x22\xf7\x02\x5c\x5d\xb8\x90\x85\x34\xf8\xd2\x6c\xbe\x20\x17\xcc\x7c\x05\xe3\x6a\xe6\x2b\x78\x31\x03\x01\xe8\x20\x5f\x81\x27\x5b\x83\x0a\x0b\x3b\x1f\xed\xe1\x06\x11\x98\x75\xd5\x0a\xb8\x4b\x15\x88\x7e\x99\x02\xa2\x93\x1c\xcf\xed\x2f\xe9\x4a\x23\xb0\x27\x2b\x80\x79\xf7\xd9\x44\x8f\x96\xcd\x17\xb8\x21\x98\x6d\x81\x2b\xdc\x0b\x27\x5b\x3d\x20\x8e\xfd\x69\xae\xcb\xbd\x32\x3f\x6c\x20\xab\x09\xa4\x71\xd4\x5d\x41\x4d\x90\xfa\x05\x9c\x56\x69\xec\x38\x79\xc8\x99\xbd\xb1\xf4\xa7\xb6\x0a\x1b\xee\x37\xf0\x78\xd3\x5b\x27\x06\x9f\x67\x2d\x11\x82\x22\x07\x01\x38\xe4\xa0\xf9\xc2\x70\x06\x5c\xee\x2a\x25\x34\x19\x10\xc2\xc2\x0b\x47\xbb\x8c\x6a\x72\xcc\xd5\xdf\xab\x02\x64\x10\x33\x88\xaa\xd6\xc0\x1e\x49\x67\x30\x9f\x5b\xa5\x3c\x6b\x26\x97\x67\x4d\x07\xed\x80\x2e\x8a\x73\xfb\x7e\x60\x96\xb1\xfd\x41\x38\xc0\x85\x34\xbc\xa8\x3d\x55\x02\x80\x63\x50\xb8\x58\x65\xa5\xb2\xe3\xba\x48\x89\x12\x01\x0d\x30\x70\xe1\xc2\x73\xc4\x71\x7c\x50\x63\xef\xe8\xc1\xbb\x0c\xd2\x73\xa3\xef\x1b\x6c\xf7\x0d\xb2\x26\x67\xec\xec\x57\xb4\x33\x5d\x77\x15\xb3\x99\xce\xc4\xed\xc8\xd3\xbd\x42\x41\xc4\x70\x08\x66\x3a\x79\xf7\x4a\x2f\xef\xcc\xaf\x5f\x34\xd3\x37\x20\xba\xb1\x78\x71\x7b\x16\x35\xc1\xad\x01\x78\xaf\x8b\x32\x8f\x67\xbf\x7b\x13\x35\x3b\x86\x40\x28\xff\x55\xac\x9a\x05\x87\xc2\x58\xe3\x50\xad\x3c\x73\x2f\x1c\xfd\xa6\x99\xd9\x54\x68\x86\x0d\x4c\x2d\x50\xb8\xd6\xeb\xce\xba\x75\x37\xa7\x67\x67\x71\x35\x55\x0d\x2d\x9b\x37\xd5\xe9\x11\x36\xa1\xbb\xa6\xb1\x7a\xd2\x4c\x52\xac\x68\xb9\x4f\xd9\xd9\xe6\xb5\x0a\xa1\xad\xda\x30\x0a\xe3\x83\x05\x66\xc1\xfd\x2b\x25\x2e\x0b\x6e\x7a\xae\xe8\x39\x25\x01\x66\x2b\x9a\x37\xc3\xe8\x47\xc3\xee\xec\xe6\xdc\x07\xa2\x4a\xb7\x9a\x8f\x79\x7f\x07\xcf\xfa\xe8\xfd\x2d\xf8\xfa\x6b\x7f\xac\x0c\x7b\xb3\x6d\x5e\x7f\xca\x75\x31\x4b\x1d\x7d\xc0\x0b\x2e\xdc\x2f\x21\x55\xca\xe3\x62\xda\xdd\x43\x00\xb9\x4b\x2e\x1c\x73\x9c\xab\x16\x4c\x55\x23\xcc\x5d\xa2\xf4\x08\x53\xb8\xa6\x06\xd3\x6c\x97\x6e\x1e\x9a\x97\x7f\x30\xaa\xd9\x6e\xe3\x94\x7c\xa9\x30\xa1\xee\x05\x70\xd2\xbc\x53\x1b\x1f\x82\xf4\xb9\xf5\xd1\x8b\x63\xe6\xa0\x7c\x83\x47\xf4\x37\x55\xe6\xf9\xf7\x8f\x58\xe2\xda\x10\x97\x94\x32\x72\xac\xba\x8f\x8b\xbb\x2f\x4b\x95\x66\xee\x41\x6e\xec\x74\x3f\x7e\x39\xfd\xe2\x32\x8a\x0f\x2f\x2e\x2f\x2f\xc7\xea\xcf\x47\xbf\x8b\x0f\x2f\x3e\x35\x2f\x9f\xfe\xd3\xef\xe2\xf8\xc2\x24\x72\xe8\x3c\x8e\x36\x8b\x23\x8a\x93\xb9\xc9\xe0\xa8\xa3\x06\x2b\x24\x52\x25\x63\x80\x5a\xab\xae\xf0\x3d\xf9\xe6\x15\x0a\x84\xba\x6f\x33\xc5\xb4\x6d\x17\xb1\xc4\x75\xb1\x20\xcc\x05\x63\xe0\xda\xc5\xf8\x09\x58\xd3\xbe\x7b\xa4\x7b\x88\x84\x5c\x62\x51\x53\xf4\x8f\xb6\xc3\xf3\x17\xf2\x89\x67\x0e\xb7\xf0\x3f\x93\x57\xf8\x73\x72\x8f\xff\x70\x96\xe2\x87\xee\xcb\x6c\xdb\x01\x12\x52\xfe\xd1\x60\x63\xce\xaf\xa8\x7d\x36\xf5\x97\xb3\x67\x53\xcd\x7d\x14\xe4\x6c\xa9\x94\xca\x23\xfc\x6b\x0d\xe6\xc9\xa6\xfd\x36\x1d\x4a\x56\x5b\x3c\xe8\x70\x7b\xe8\x70\x7e\xa3\x5d\x47\x27\xe5\x3c\xbd\x77\x38\xfd\xfe\x90\x71\x5a\x3a\xa9\xf3\x4e\xb7\x7f\xe7\xec\x9b\xaf\x92\x41\x1d\x68\x3c\x75\xbc\xf6\x97\x1f\x3f\x5e\x6b\xe5\x4d\x1f\x78\xf6\x3b\xd7\xf7\x81\xf4\xca\xf4\x31\xdc\xc1\x2b\x0e\x62\x7f\x78\x68\xeb\xad\xb3\xb8\x83\xfe\x64\xba\x6e\x68\x1d\xc8\x1d\xce\x1d\xc8\x3d\x00\x77\xf2\x51\x77\x73\x6e\x46\x00\xa8\x4f\xc2\x32\x3b\x24\x30\x49\x01\x8f\x04\x05\x99\x1d\x14\xa4\x2e\xf9\x1c\x66\xd1\x24\xe9\xbc\xfe\xac\x1f\xcb\x77\xd1\x98\x59\xa7\x8c\x7d\x91\xb1\x9b\xe1\xd0\x9f\xcf\x52\xc7\xaf\x3f\xfe\x57\x30\x51\x68\xd5\x93\xc1\x65\x70\xda\x3c\xf6\xd3\xab\x5e\x87\x86\xe6\x4d\x97\x09\xc2\xcd\x18\x5f\xa7\xb7\xfa\x68\x4a\x77\x84\x7b\x5e\x27\xf3\xea\x1c\x5e\xbd\x9b\x83\x60\x5c\xca\x2b\x74\x16\x81\xa6\xb3\x85\x44\x0f\x5e\xec\x7f\x28\xc4\x0e\xc3\x0e\xe6\x04\xe1\xa7\x09\xda\x67\x79\xa5\x4d\xcf\x2b\xf8\x9f\xb8\xb9\xa4\x11\x0a\x3e\xaf\xff\xea\xdf\xf3\x6b\xa6\x24\xa3\x7f\x34\x59\x90\x7f\x86\x59\xf4\x22\xc1\x00\x22\xa3\xe8\xc6\x93\x59\x61\xea\xb6\x44\x5f\x7d\xa0\x27\xd1\xee\x38\x0f\x00\x0a\x7f\x1d\xfc\x0a\xb9\x59\x17\x98\xba\xc5\x54\xc1\x20\xea\xa7\x77\x0b\x46\x81\xb0\xea\x6d\x40\xd8\x15\xdb\x46\x73\xe3\x2c\x7a\x99\x10\x00\xaa\x27\x08\xd7\x67\x1e\xcc\xf5\x38\xb8\x7c\x64\x9b\x1b\x0a\x73\x45\xc8\x05\x48\x46\x75\xa2\x63\xe9\xc2\xe8\x02\x24\x08\x7a\x23\x14\xbf\xf0\x0d\x05\x38\x42\x21\xe4\xfa\xd3\x77\x2c\xa2\x97\x09\x0a\x00\x08\x14\x36\x61\xa6\x77\xd2\x74\x8c\x3d\xd1\x31\x36\x00\x98\x13\xfe\xc0\xd6\xcc\x67\x4d\xd6\x08\xba\x7a\xee\xd7\x1f\x6a\x37\xab\x6c\xe4\x54\xe1\x0c\x33\x6c\x76\xc9\x0e\xb5\xf4\x95\x90\xa3\x7a\xb7\xac\x2b\x2a\x51\x75\x32\xd3\x49\xbb\x15\xd2\x5f\xc4\x3a\x93\xa8\x5d\x47\x29\xfb\xf5\x26\xe5\xb6\xdb\x97\xd0\xd7\x63\x3c\x41\x5d\xa2\x19\x40\x4a\x2d\xeb\x67\x37\x04\x07\xca\x4f\x6e\x35\x71\x74\x72\x25\x4d\x82\xa4\x1c\xa8\x78\x88\xae\xd1\x31\x75\xcd\x62\xb7\x5b\x2a\x98\x9e\xae\xfe\x04\xb9\x74\xba\x2c\x98\xc8\xd8\x81\x56\x27\x8b\x7b\x96\x7c\xe2\x51\xca\xf4\x26\x6e\x1c\xd9\x0f\xd4\x6d\x7d\x51\x34\x5d\xa1\x35\x34\xcc\xa2\x5f\x69\xa2\xbc\xd4\xbf\x2d\x81\x1e\x91\x2c\xba\xfb\xbb\xc6\xa5\xbb\x93\x31\x3f\xd2\xe3\xfc\x5a\xff\xfe\x94\xf1\x7b\x49\x07\x3f\x05\x83\xc6\x91\x87\x9f\x6b\x36\x68\xc4\x52\x5f\x82\x73\x76\xa4\xc5\x63\xc7\x93\x4f\x8f\xb3\xe0\xf0\x11\x80\x2b\xfa\xd8\xb9\xc0\xd3\x10\x57\x34\x3f\x21\xde\xe3\xe4\x69\x12\x59\x3f\x64\x20\x4e\xc0\xc7\x40\xeb\xbd\x17\x49\x08\x76\x69\x96\x8b\x22\x00\x2e\x64\xe4\x73\x33\x9e\xb9\xa8\xab\x1e\x0f\x05\xac\xb1\x93\x0f\x51\x54\x43\x42\x6e\x36\xb6\x98\xb5\x9b\xd8\x31\xb3\x94\x83\x3e\xa6\x07\x9e\xf7\x45\x37\xfb\xc0\x1d\xbd\x73\x2a\xb3\x31\x4d\xe1\x03\xcc\x14\xa0\xff\x5f\xb6\x27\x38\x3f\x5a\x4d\x3d\xeb\x3e\x32\xd3\x09\xfd\x63\xb6\x15\xb5\x4e\x50\x04\xeb\x56\x0f\x71\x72\xb2\x7e\x66\x40\x3d\x9e\x76\x9b\xa6\xb9\xd6\x4e\xc6\x4a\x59\x74\xee\x12\x0e\x0d\xb5\x75\x3f\xd5\x50\x9f\x4c\x46\x97\xc9\x14\x4d\x5b\x78\x8a\x63\x6e\x6f\x6f\x3d\x33\xec\x24\x09\xc1\x56\x88\x7d\xe0\xab\x78\x3c\x60\x4f\x59\xb6\x1f\x61\x98\x26\x2e\x4a\x2b\xdc\x1a\x8a\xb3\xd1\x56\x68\x5d\x29\xd6\xcc\xa0\x6e\x6f\xcc\x52\xa0\x02\x32\x4b\xa9\x3e\xb6\x1d\xc1\xe9\x1a\x73\x22\x3c\x6d\x9d\xc2\xcf\x61\xfd\x84\xf4\x15\x73\xcd\x6e\xd4\x00\x0c\x08\xa1\x3d\x2d\x1f\x9e\x99\x86\x72\x46\x6d\xf9\xa4\x5a\x5e\x82\x7e\x4b\x1d\x04\xeb\xa6\x9f\xd7\x0d\x14\xa2\x16\x8f\x9c\x9b\xef\xc3\x73\x63\xd3\xd6\x22\x83\x3f\x1e\x8f\x95\xf9\xfa\xf7\x7f\xfb\x1f\x76\x48\xd7\x14\xfe\x77\xbb\x10\xce\x65\xa4\x03\xc6\xc9\xaf\x7c\x18\x47\x47\xa0\x9c\x86\x0b\xd5\xf0\xf9\xe4\xdf\xff\xed\x7f\xda\x4d\x2f\x4c\xf7\xff\xf5\x54\x77\xfd\xf8\xdf\x14\x0c\xd0\xc0\xf8\xdf\x76\x7b\x60\x60\xfc\x9f\x5e\xa8\xe9\x1d\x5f\x56\xa6\xfc\xff\x36\xab\x65\xd4\x4c\x6f\xfe\xd9\x1a\xf6\x8f\x36\x4d\x9b\xf6\xda\xac\xa9\x15\x0a\xd8\xf7\x04\x01\xd0\xbb\x28\x48\x90\x9e\xf0\x94\x08\x7b\xbf\x9e\xfd\x31\x15\x5b\x8f\xa7\x6c\x55\xec\xa0\xf6\x6e\x09\xb8\x03\xae\xb2\xf5\x6f\x6b\xbb\xfd\x11\x32\xfb\x18\xc3\x67\x7a\xa7\x6c\x0a\xac\x4b\x65\x04\x3c\x7c\xf8\xfe\xfd\x5f\xf4\xfe\xfd\x41\x85\xb3\x7f\x7a\x74\x83\xe0\xa9\x8d\xf9\x47\xf7\xb6\xcc\xc6\xf1\xd9\x5d\x2c\x53\xf5\xc4\xbe\x95\x69\x70\x7e\xaf\xc9\xd4\x3d\xb1\xdb\xf1\xc8\xc6\x53\x73\x27\x9b\xcb\x1e\xdf\xf1\xe9\xb7\x39\xb7\x4b\x06\x40\x1d\xfc\xff\x8b\x1d\xfc\xff\x2b\x79\x8e\x29\x25\xb7\xd8\xde\x81\xff\xe0\x94\x55\x7d\xca\xf7\x20\x39\xf5\x5f\xfe\x03\x83\x7d\x63\x1d\xf2\xc3\x66\x43\x39\x51\x90\x7f\x5f\x31\x4f\xdf\x58\xf8\x23\x69\xac\xba\xcd\x8f\x25\xb2\x9e\x02\xaa\x49\x63\x76\x4f\xf4\x70\x7f\x80\xd4\x38\xb8\x3d\x1a\xb4\xb6\x54\xb5\xfb\x46\x31\x40\xbf\xed\xbf\xc2\x63\xd5\xeb\x80\x8f\xdd\x95\x9d\xf4\xd6\xf9\x53\x85\x7a\x07\x6c\x3a\x6b\xf5\x3d\x55\x18\xa3\x4e\x5c\x55\xb4\xae\x1b\x31\x65\x29\xd1\x14\x09\xb7\xcd\x19\x85\xdd\x96\x90\x52\x0b\xac\xc7\x84\x7d\x9d\x68\x56\xb6\x77\x9c\x57\xec\xa1\x3d\xbe\x82\xb0\xa7\xf4\xe6\x49\x08\x8f\xe4\xa8\x4a\x79\xa9\xbb\x2b\x4a\x7e\x73\x82\x45\x33\x13\x6a\x8d\xae\xe5\x65\x6a\x4e\x11\x09\x31\x15\x6a\x6c\x88\x74\xfe\xea\x14\xd1\x3a\x77\xd5\x9a\xb9\xe9\x63\x63\x64\x28\x6f\xed\x8e\x98\xbc\x61\x7b\x70\x33\x30\x00\xd3\xf2\x36\x6b\xb3\xaf\x6a\x14\xee\xf7\x14\x1d\x97\x69\x49\xeb\x74\xdd\xa0\xbd\x26\x51\x17\x6e\x79\x53\xe2\x9c\x04\xe7\xca\x5f\x35\x4d\xea\x73\xe3\x47\xda\x99\x5a\x78\x06\xd7\x13\x4a\xd8\xcb\xe0\xe9\x33\x68\x4c\x29\x3c\xe1\xae\xc7\xfa\xa2\x9e\x78\xd4\x98\xe9\x5c\xd8\xf3\x68\xa9\xaa\x53\x20\xf6\xf8\x79\xca\x36\xf6\xbb\xf1\x16\x56\x35\x60\x93\x8d\x11\xf4\x36\x95\x48\x7d\xb3\xa4\xb6\x26\x82\x5c\x4e\xc5\xcc\xea\xdf\x3b\xd8\x9f\x0a\xd7\x45\xfc\x81\x13\xd8\x9c\x85\xfc\x08\xad\x0c\xa8\x48\x24\x08\x1f\xeb\x7c\x10\x15\x18\xea\x7c\x0f\xab\x99\x49\x57\x10\x49\x65\xc4\x28\x3b\x3b\x1c\x2f\x6e\x75\xb0\x7d\x8a\x6e\x2f\xa3\x41\x61\xab\x19\xd8\x16\x9d\x3a\xa9\x41\x24\x3d\xf3\xd9\x74\x29\x7f\xf2\x04\x59\x54\xda\x13\x9a\x3c\x36\xa1\x52\x1f\xb3\x3f\x31\x99\xea\xec\x7a\xeb\x06\x30\xc3\xb4\x5e\xc1\x07\x59\x9a\x81\xc9\x54\x01\x60\x7a\x9a\x67\x39\xa8\x45\xb3\x11\xc0\x46\x34\xcf\xe8\x9f\x7e\x44\xd7\x82\x81\xcd\xa8\x56\x92\x65\x40\x89\x75\x15\x69\x6e\x53\xb6\x4e\xbf\x6c\x12\x15\x4d\xa1\xee\x35\xed\xd2\xc8\xfe\x5e\xac\x14\x00\x48\x71\x8e\x53\x1b\x27\x2b\xcf\xce\x20\x66\xf6\xbe\x6c\x81\x28\x8a\x92\xe2\x6d\x8f\x03\xcc\xf9\x26\x3e\xf4\x74\x5a\x5a\xde\xb4\xe7\x01\x5d\x11\xca\xd6\xb0\xd0\x37\x30\x3e\xa6\xee\x8c\x9a\x5a\xda\xe5\xd3\xa5\x71\x29\x4e\x44\xb7\x3e\x32\x85\x5b\xe4\x02\x07\xb8\xa6\x91\xd9\xf2\xe8\xa9\xf6\xf3\x99\x1a\x8f\x02\x6b\xd2\x37\x1e\x30\x97\xd5\xc6\xdc\x6f\x79\x92\x29\xf8\xd8\x52\x14\x52\x9a\x81\x9b\x06\x9d\xca\x0d\xbb\x65\x32\x08\xb5\x46\xe3\xa9\x75\x53\x23\x42\x8a\x0f\x78\xdb\xa8\x5e\xb1\xcb\x1f\xd3\xbb\xed\xe6\xa9\xa5\x25\x4d\x2f\x2b\x27\xf0\x6c\xd7\xb6\xfe\x43\x94\x76\xa3\x11\xd5\x3c\x3f\x08\x9c\x35\x53\x34\xad\x9d\xb5\xc0\xdc\x98\x7c\xa1\x8f\x2c\x9c\xdb\x4c\x6c\x9d\x26\x31\xa1\xa3\x99\x7b\x61\x0e\xcd\x9d\xdb\xb4\xd4\xb7\x5c\xae\x8b\x03\x5b\x79\x17\xd3\x07\x5e\xbf\xb9\x6f\xf3\x41\xac\xbc\x47\xd3\xe6\x06\xce\xbc\xd8\xc0\x3d\xaa\x2a\x93\x24\xc3\x28\x79\x8e\x39\x25\x5f\xe3\x92\x92\x7b\x9c\x51\xd2\xbf\x6f\x3b\x57\x05\x27\x57\x6e\xa7\xd4\xf2\x35\xbb\x8b\x95\x0b\x0a\x85\x16\xae\xee\xa0\xf2\x21\x22\xd6\xd5\x9f\x26\x5f\xa0\xbd\xe9\xd3\xc9\x4a\xa7\xbd\xfc\xde\x29\xb8\xbe\xad\xd6\xec\x3b\x03\x13\x20\x77\x37\xe2\xff\x54\xb8\xaa\x8b\x22\x1f\x70\x1f\x5c\x53\xdb\xc4\x30\xf5\x05\xb5\xc8\x05\xd8\x31\xc3\x39\xf4\x6e\x4f\x97\x82\xae\x0c\x12\xa9\x94\x67\xae\xdb\xcf\x1b\x17\xc3\xf2\x39\x52\x29\x61\x4a\x72\x9c\x13\xf3\x99\x57\x4e\x18\x55\xae\x60\x41\x3b\x0f\x3d\x97\xf2\x58\x21\xcc\x29\xcc\xeb\x1b\xa5\x95\x29\x25\x79\x97\xf7\x83\xa9\xb2\x4c\xfa\xa2\xdf\xdf\xea\xcf\xb1\x04\xce\x1f\x5c\xe9\x7b\x7c\x1f\xa4\xca\xf1\xa9\x38\x69\x0d\x50\xbb\x20\x19\x6c\x6e\x5c\xae\x99\xd3\x82\x4e\x4a\x9c\x42\x61\x86\xa6\x7a\x18\x4a\x44\xed\xc0\x41\xd6\x1b\x49\x10\x5a\x9d\x05\x20\x42\x05\x22\x48\xf5\x62\x63\x8a\x2a\xc5\x8d\xa5\x94\x8d\xf5\x9c\xbd\x44\x2d\x96\x19\x44\x95\xa2\xe2\x8a\xe6\x54\x50\x1b\x10\x1e\xf0\x93\x66\x5a\xd1\xd0\xce\xa2\x52\xd7\x45\xdd\x7f\xa0\xc0\xd0\xd1\x78\x37\x03\x42\x6a\x8d\x32\x1e\x73\x29\x33\x88\x82\x12\xd6\xee\x4c\xed\xc5\x9c\x0d\x0e\x68\x98\xc1\x7a\xdb\x42\x5f\x6a\x2d\x88\x06\x44\xef\x44\x07\xa8\x86\x43\x14\xa4\xda\xff\x21\x83\x4b\xfc\xbe\xc8\x56\xb0\x69\x84\x50\x85\x2a\xc8\x22\xda\x5e\x63\x7c\x7c\x1f\x98\x9c\xf0\xaa\x82\x86\x71\x1f\xfc\x3f\x0f\xdd\x35\xd6\xef\x2b\x7d\x1f\x75\x4d\xd8\x1f\x61\x11\xdc\xae\x4d\xc7\x0b\xbd\x45\xca\xd6\x90\x7a\x3b\x5a\x96\xe9\xc6\xb8\xce\x5f\xe5\x34\x2d\xa9\xc3\xe9\xbe\xe0\x42\xab\x25\x47\x14\x1f\xf0\xdf\x55\x78\x00\xc3\x5c\x4a\x0b\x11\xd4\x28\x95\x2e\xd5\xe6\x15\x73\xa8\x12\x3b\xa7\x58\x2e\x0f\x9c\xd3\x55\x30\xf3\xf7\x57\x3a\x49\x0c\xb8\x2a\xe0\x6a\x51\x01\xfa\xd2\x74\x9d\x97\xa3\x2a\xa7\x46\x6e\x69\x7b\xae\x5f\xd0\x36\xe2\x2b\xa8\x57\x52\xf1\xa6\x7e\x3b\x13\x4b\x33\x0a\x6d\xfa\x50\x84\xf3\x5e\x09\xc2\x05\xd5\x24\xb4\x14\x18\xc9\xa8\x4d\x54\x92\xea\xd7\xaf\xf4\xff\xff\x41\x84\x7e\xd9\x37\x2f\xe6\x49\x15\x7d\xdd\x44\xac\x7f\x55\x6f\x4a\x63\xb7\x25\x7f\x52\x25\x5f\xd0\x3b\xca\xc9\x6f\xd5\x63\x6e\x1e\xd5\x5f\xf5\xfa\x99\xb6\x18\xa6\xfe\x0f\xaa\x20\xb3\x0b\x6a\x4b\xa2\xca\xdf\xd6\xd1\xec\xef\x5b\x14\x48\x41\x2b\x34\xfd\x7f\x01\x00\x00\xff\xff\x51\x69\x88\x3e\xb6\x64\x00\x00" -func pluginsMarked036MarkedMinJsBytes() ([]byte, error) { +func pluginsMarked081MarkedMinJsBytes() ([]byte, error) { return bindataRead( - _pluginsMarked036MarkedMinJs, - "plugins/marked-0.3.6/marked.min.js", + _pluginsMarked081MarkedMinJs, + "plugins/marked-0.8.1/marked.min.js", ) } -func pluginsMarked036MarkedMinJs() (*asset, error) { - bytes, err := pluginsMarked036MarkedMinJsBytes() +func pluginsMarked081MarkedMinJs() (*asset, error) { + bytes, err := pluginsMarked081MarkedMinJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "plugins/marked-0.3.6/marked.min.js", size: 19513, mode: os.FileMode(0644), modTime: time.Unix(1571173927, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xa9, 0x88, 0x4, 0x99, 0xa3, 0xc0, 0x81, 0xc, 0xcd, 0x11, 0x73, 0xe2, 0x12, 0x53, 0x59, 0xc5, 0x83, 0xbd, 0xc1, 0xa7, 0xa8, 0x95, 0x22, 0x71, 0xb9, 0x0, 0xe9, 0xbb, 0x10, 0xa1, 0x81}} + info := bindataFileInfo{name: "plugins/marked-0.8.1/marked.min.js", size: 25782, mode: os.FileMode(0755), modTime: time.Unix(1584567673, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x61, 0x9a, 0xca, 0x9, 0x22, 0x32, 0x6b, 0xd7, 0x3e, 0xc5, 0x9e, 0xc, 0xe5, 0x36, 0x16, 0x5e, 0x8f, 0x33, 0xe0, 0xfc, 0x1c, 0x25, 0x11, 0xbe, 0xa5, 0x86, 0x61, 0xf2, 0x23, 0xc, 0xe2}} return a, nil } -var _pluginsNotebookjs030NotebookMinJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x59\x5f\x8f\xdb\xb8\x11\x7f\xef\xa7\xc8\xf1\x61\x21\x62\xb5\x4a\x0e\x2d\xfa\x60\x97\x77\x38\xa4\x01\x7a\x45\x93\x00\x97\x43\xfb\xe0\x33\x0c\x5a\xa2\x6d\xed\x4a\xa4\x42\x52\xeb\x5d\x58\xfa\xee\x05\x39\xfc\x27\x5b\xde\x4d\xda\x97\x5d\x71\x38\x9c\x19\xce\xfc\x66\x38\xa4\xb3\x5d\xcf\x4b\x5d\x0b\x9e\xe1\xd3\x23\x95\x6f\xa4\x10\x9a\xe8\x43\xad\x96\x66\xf4\xef\x0f\xbf\x7d\xf9\xf5\xf3\x27\x82\xde\x15\x7f\x2e\xde\x21\x4b\xab\x44\x49\x0c\x57\x51\x89\xb2\x6f\x19\xd7\xcb\x7a\x97\xfd\x50\x89\x12\x04\xdc\xab\x4a\xb4\x44\xb2\xaf\x7d\x2d\x59\x86\xec\x10\xe1\xa5\x59\x95\x71\x76\x84\xf9\xe2\x9f\x5f\xfe\xfe\xf9\x23\x2e\x8e\x35\xaf\xc4\x31\x48\x1a\x8d\x80\xba\x62\x5c\x93\x60\xd6\x13\x3e\x49\xa6\x7b\xc9\xdf\x3c\x8d\x56\x7f\x4b\x1f\xd8\x87\x86\xb5\x13\x2e\x4d\xf7\x79\xd9\x50\xa5\x3e\xd1\x96\x29\xb0\x84\x35\xa4\x12\x65\x51\x4a\x46\xb5\x5f\x61\x18\xf1\x92\x35\x45\x60\x26\x59\x5c\x37\x0c\xab\x35\x2e\x5a\xda\x45\xaf\x94\x3c\xe8\xe7\xdb\xa2\x93\x6c\x57\x3f\xdd\x96\x7c\xc4\xc5\xbd\xa8\x79\x86\xde\x20\xbc\x74\xf3\xac\x01\x03\x99\x2a\x69\xc7\xfe\xf1\xfb\xc7\x7f\x45\xfb\x24\x3d\x3a\xff\xb2\xae\xa1\x25\xab\x88\xa4\xc7\xc2\x0d\xb2\xb7\x7f\x7b\xbb\xcf\xd1\x4d\xa3\x97\x08\x47\xe2\x4f\x96\xb8\x37\x44\xaf\xc2\xaf\x06\x45\xc6\x82\xdf\xd9\x53\xea\x06\xf6\xa4\xf1\xa9\xde\xd9\x0f\x6b\x61\xb0\xde\x52\xcc\xd6\xfc\x2a\xbf\x03\x84\x47\xd6\x28\x96\xf2\x8d\x20\xbf\x14\xbc\xfa\x0d\x02\x19\x55\xb4\xa2\xea\x1b\xb6\xe1\xb4\x65\x51\xf6\x73\xc7\xc4\xee\x8d\x0b\x3a\x21\x04\x79\x76\x74\x73\xe3\xa1\x90\x2e\x04\xf9\x7b\xa6\x3f\x52\xf9\x50\x89\x23\x27\x09\x0c\xfd\x5e\x0d\xc6\x5a\x2a\x1f\x58\x35\x0c\x89\x29\x19\x02\x22\x8a\x52\x7e\xe1\xaa\x26\xe7\x40\x66\x5f\xc9\x64\x15\xe5\xaa\xde\xf4\x1d\xc2\x76\x55\x53\x6f\x01\xc5\x8e\x3c\x0c\x92\x7d\xf5\x6e\x6e\xea\xed\xcd\x4d\x53\x6f\x61\x52\x8b\xcd\x41\xb7\x2e\xb8\x7c\x4b\x4e\x80\x82\x05\xe2\xdb\x3b\x94\xb7\x6e\x07\x8b\x64\x37\x19\x1e\x06\x0b\xe3\xdc\x08\x58\x38\x0b\x23\xd5\xa5\xd5\xc2\xfd\x1f\x97\x7c\x5b\xfc\xca\xbb\x5e\x4f\x00\x93\x97\xac\x69\xf0\xc9\x24\x63\x21\xe9\xd1\x20\x66\x69\x07\x86\x4e\xcc\x9f\xb8\xb0\xe8\xa4\xd0\xc2\xc4\xa1\x90\x8c\x57\x4c\xa6\xee\x30\xf9\xe9\xa5\x14\x0d\xe3\x7b\x7d\x08\x5e\x4e\xb2\x29\x43\x55\xfd\x88\xb0\x4d\xc2\x83\x68\x8c\x90\x8b\xd9\x7c\x85\x6a\xa3\x0f\xad\xc1\x8d\xd6\x94\x60\x94\xa9\x04\x0e\x0b\x66\x58\xf0\xbe\xdd\x32\x69\xf0\x00\x5f\x08\x9f\x40\x70\xa1\x98\xfe\x45\x6b\x59\x6f\x7b\xcd\x32\x54\x51\x4d\xef\x3a\x29\xda\x4e\xdf\x39\xce\x3c\x08\x75\x52\xc0\xae\x4e\xb2\x0d\x6b\xa6\x76\x75\x92\xb9\xa0\x96\xa2\xba\x9c\x36\x44\x37\xcf\x85\x66\x5b\x21\x1e\xac\xf3\x8a\xa3\x90\x0f\xea\xc0\x98\x2e\x3c\x1d\xea\x0b\xf1\xc3\xa2\x65\x9a\x1a\xdb\x00\x31\x94\xef\xe3\x56\xc1\x97\x94\xef\x7b\xba\x67\xc3\xd0\xce\x7e\x6f\x6a\xbe\x13\x85\x41\xfc\xd2\x99\x36\xb7\x71\xcf\x8d\x72\xf3\x85\x03\x6b\x2c\x51\xc8\x4c\xdc\xa1\x5b\xf3\x2f\x4c\xd7\x9c\x33\x69\xab\x4c\x2c\x38\x21\xb9\x33\x1f\x6f\x8c\x97\xe0\xb3\x82\x76\x1d\xe3\xd5\xfb\x43\xdd\x54\x99\x93\x81\x97\x2e\x1c\xe9\x1c\xb0\x63\x80\x1a\x6b\x08\xb0\xf8\xd4\x80\x11\xe4\x42\xdd\xd2\x3d\x7b\x6f\xca\xab\x48\xf0\xb6\x13\xb2\xa5\x3a\x00\x2c\xd0\xcd\x5e\x43\x61\x9e\x44\xa8\x6e\xf7\x16\x58\x46\xdc\x9d\xe8\xb5\xc3\x97\xf1\x96\x2c\x89\x75\xd2\xc2\x4e\xbe\x45\xb7\x20\xfd\x16\x2d\xb7\x54\xb1\xbf\xfe\x25\x47\xb7\x61\xcb\x56\x41\x2c\x9f\x7f\x70\x53\x3f\x27\xe5\xd9\xe6\x4b\x55\xab\xae\xa1\xcf\xe4\x94\x8e\x0a\x3d\x53\x47\xe7\x6c\x35\x60\xcb\x57\xc8\x30\x4c\x4d\x7d\x25\x1c\x46\xe0\xe4\xa4\x88\xba\x41\xda\xdb\xae\xa1\x35\x47\x6b\x72\x66\x54\x6a\xa4\x29\x43\xd1\x48\x33\x9a\x37\xd2\x65\xaa\x61\xb8\x66\x64\xb0\xcc\x4a\x79\xd1\x30\xc3\x31\xb5\xcb\x50\x52\xbb\xa0\x20\x27\x67\x44\x95\x1e\x9a\xe9\xaa\x8c\x6f\x0b\x5f\x31\xa3\x77\xda\x0a\x63\x3c\xa3\xd9\x73\x4e\xb5\x83\xb6\x54\xbf\x7a\xdc\x47\xe5\xea\x71\xff\xa2\x57\xd4\xe3\xfe\x55\xa7\x18\x19\x2f\xfa\x44\x3d\xee\x6f\x9f\xce\xdd\xa2\x1e\xf7\x13\x4e\xc0\xec\x37\xb0\x16\x0d\xd5\xec\x29\x6e\xc1\x0e\x5f\xdc\x84\xe5\x78\x75\x1b\x20\xe7\xc5\x8d\x58\x96\xa9\x6d\x96\x94\x5a\x77\x4f\x1f\xa9\x2a\x65\xdd\x25\x19\x72\xaf\xe6\xed\x03\x3e\x74\xcd\xa2\x7b\x75\xd5\x1c\xda\x75\x4d\x5d\x52\x23\xfd\x6d\xd4\x38\x35\x2d\xd2\x53\xfb\x3a\xbe\x27\x69\x2d\xca\x50\xc7\xf7\x08\xcf\xc4\xc2\xd0\x27\x02\x3b\x3e\x89\xc3\x7d\xc7\xce\x45\x19\xd2\xac\x2c\x3b\x31\xb5\xae\x63\xa9\xb4\x4d\x27\x6b\x21\x6b\xfd\x4c\x56\xd6\xa0\x3c\x31\x22\x07\xb9\x79\x2a\x2b\x37\xd0\x0c\x24\x0f\x9b\x7c\x0a\xb8\xdc\x66\xb5\xa7\xa6\xdf\x21\x59\x72\x40\x87\xa7\xfb\x41\xe2\xd3\xfc\x9a\xb3\x61\x89\x5f\xe9\x2a\xd2\x12\xda\x29\xd3\x55\x6c\xfc\xd6\x4c\xad\x3d\xef\xb8\x44\xbc\x37\x40\x95\x56\x64\xc6\x19\xc5\xae\x6e\x34\x93\xb1\xc3\x8e\xb5\x42\xd8\x43\xd5\x88\xfe\x39\x7e\xae\xaa\xf5\xc2\x8e\x56\xd5\x7a\xc4\x89\x74\xe2\x94\xac\xde\xad\x4d\xdf\xe1\x8f\x9d\x7a\x97\x25\xb1\x02\xea\x7a\xa6\x1c\xf9\xa9\x0c\x84\xbb\xd1\x30\x24\x9a\xfd\xe2\x71\xbc\xd6\x2c\xe5\x2b\xc4\xda\x4e\x3f\xc7\x4c\x1c\x53\x6f\x31\x29\x85\x3c\x77\xd3\x95\x13\xa5\x7b\x66\x52\xfa\xb6\xca\xb4\x7b\xa1\x63\xd3\x92\x96\x6c\x4b\xcb\x07\xd7\xb0\xff\xc1\xcf\xd3\x8b\x43\xa7\x9a\x25\x27\x0f\x1c\xfd\xd3\x54\xfb\x6c\x8d\xfc\xce\x1e\x13\x86\xa6\xab\xb3\x57\x16\xd8\xe8\xc6\x8c\x13\x99\x17\xed\x27\x93\x8a\x9c\x52\xb0\x2c\x66\x00\x94\xb3\x27\x56\xf6\x9a\x6d\x24\x53\x7d\xa3\x67\x59\xba\x67\xd1\x5f\x9b\x61\x52\x2e\x52\x4f\xe7\xf6\xef\x94\xa4\xb4\x64\xb4\x5d\x7c\x53\x0c\x82\xc7\x61\xd1\x30\x04\x82\x69\xe1\x92\xd0\x5c\x74\x59\xf6\xa4\xfe\xfe\xa0\xbc\xe4\xc1\x8b\xec\xea\xf5\x95\x86\x3c\x9e\x02\xb1\xfd\x3e\xef\x9e\x27\x3d\xb8\x15\xf5\x3f\xb7\xe0\x76\x87\x0e\x9d\x3e\xd6\xab\x00\x92\x75\x51\xd2\xa6\xb1\x8e\xc1\x4b\x50\x94\x36\x97\x76\x71\xec\x2d\x2d\x83\x77\x88\x1d\x58\x97\x94\x82\x36\x4c\x95\xec\x8b\x8d\x83\x8a\xae\x80\xad\x2a\xb8\xd2\xb8\xc1\xf9\x8d\xc6\x91\x47\xe8\xd9\x95\x26\x8e\x60\xea\x84\xbd\x04\xb0\xe3\xc6\x91\xc8\xca\x30\xac\x97\x5e\x92\x6a\xea\x92\x65\x3f\xe2\x62\x27\xe4\x07\x5a\x1e\x62\x91\x12\x56\x25\xd4\x86\x24\x05\x8c\x5b\x01\x2c\xe8\xe6\xc6\xc8\x7a\x91\x41\x24\xe0\x22\x84\x04\x7e\xa0\xe0\x53\x20\xd8\x66\x74\x32\x2a\x4a\xc1\x4b\xaa\x9d\x05\x16\x6d\x70\x6b\x4f\x76\x53\x74\xbd\x3a\x64\x02\x2f\x61\xd7\xe3\x18\xa0\x96\x30\x59\xff\xbe\x37\xc9\x3d\x29\x03\xe1\x2e\x04\x60\x0b\xd7\xba\xa5\xbf\xeb\xd8\xca\x30\xbd\x36\x91\xf0\x05\x13\xa1\x46\x98\x91\xdd\xbd\x01\x64\x9c\x22\xc4\xdd\xc5\x4e\x29\x30\xcd\x02\xc0\xdd\x06\x28\x3f\xdd\xfd\xf8\xf3\x05\x71\x61\x28\x50\x2e\x6a\xc1\x37\xa5\xe8\xb9\xb6\xd1\x54\xa2\x97\x25\xa8\xb5\x17\xd3\x61\x58\x59\x97\x5a\xf2\x1a\x0c\xb3\x13\x84\xb3\xe3\x1b\x7f\x5d\xce\x60\x1e\xaa\x9f\x4f\xeb\x80\x8a\x2c\x5c\xf0\x1c\x65\xe6\x5d\x48\xc4\x23\x05\xe4\x42\x1a\x67\x02\x64\x8e\x18\x54\x7b\x91\x97\xa0\xce\x12\x8d\x78\x0c\x61\x99\xaf\xa4\xe1\x91\xe1\x95\x3a\xe6\x2a\x82\x51\x8d\x72\xe4\x57\xdd\xd9\xf1\x79\x97\x38\xdb\x89\xc7\x12\x68\x1d\x34\xa9\x56\xf9\x81\xd1\xaa\xe6\xfb\xd7\x8c\x38\xa0\xdb\xe4\xb5\xe1\x91\x35\xd1\x22\x27\x61\xde\xa0\xab\x46\xa4\x36\x48\x7a\xfc\x3e\x27\x48\x7a\xfc\x3f\xd4\x19\xc0\x9e\xeb\xb3\xf0\x7e\x59\xa9\x59\x16\xb4\x3a\xfe\x49\x1d\xb4\x3a\x2d\x2e\x5d\x98\x33\x0c\x38\x74\xb5\x83\x35\x0a\x4a\xac\xcf\xed\xb9\x8a\x34\x27\x58\x44\x79\x31\xff\x1d\xe3\x0b\x28\x9b\x69\x52\xbe\xa9\xc2\xfb\x42\xce\x9a\xb3\x5e\xe3\x3f\xa1\x4a\x4c\xea\x8c\x7f\x5a\x01\x2d\xb1\x94\xd8\x5a\x73\xd9\x85\x84\x07\x9b\xf0\x42\x13\xce\x24\x15\x4a\x8d\x3a\x7b\xb1\x3d\xcf\x4c\xb3\xe1\xac\x4c\x4a\xdc\xe8\xec\x9e\xdf\x7a\xe0\xbb\x16\xe3\xc0\x60\x82\x1b\x1f\x91\xc0\x94\x8b\x38\x95\xf8\x94\x4a\x9c\x3e\xc3\x4c\x82\xe5\x7d\x99\xb2\x7b\xaf\xa6\x34\x08\xe3\x27\xef\x9a\x69\x3b\x27\xf8\xae\x76\xf7\xdf\xe0\xbc\x2b\xce\x05\x5e\x02\xff\xe0\xe9\x8b\x69\x0a\x71\xf7\x2f\x5f\xd6\xc9\xe1\x19\x0c\x30\x50\xeb\x86\x11\x43\x83\xcf\x61\xb0\xdf\xf6\x95\xcb\x08\xd9\x04\x5b\x21\x44\x71\x38\x0c\x2b\x8b\x59\xb5\x08\xa1\x1b\xd7\x20\x34\x59\x93\xac\x9f\x06\xf6\xa8\xce\x23\x1b\x40\x96\x1d\x55\x84\x96\x77\x65\x44\x56\x22\x7e\xf5\x6e\x3d\x71\xdf\xab\x99\xe0\xc5\x5e\x43\x83\x9f\x37\x60\x38\xd3\x75\x09\x86\x23\x3e\x25\xf2\x26\x58\x38\xce\x62\x21\xe1\x0e\x87\x79\x24\xd9\x9d\x74\x54\xaa\xe4\x7d\x9e\x6f\xef\x95\xe0\x01\x08\x53\x87\xf9\x5d\x9f\x71\x8d\x49\xe7\x58\xb1\x5d\xcd\xcf\xdf\xf0\x81\x58\xd0\xb6\xc2\x27\xf8\xce\x2e\x1f\xec\xf9\x76\xc4\x63\x14\xc4\x9e\x3a\x21\xb5\xfa\x81\x10\xd4\x73\x58\x54\x21\xf8\x71\x02\x18\xe0\x07\x81\xe9\xfc\xcd\x0d\x50\x0b\xb7\x1a\x9f\xdc\x07\x99\xd2\x09\xdf\x8e\xee\xb3\xe0\x5b\x3b\xb2\xbf\x61\x08\xa1\xdd\x78\xc4\x69\x9d\xfa\xd3\x7f\x03\x00\x00\xff\xff\xc4\x2a\x75\xb6\xe8\x1a\x00\x00" +var _pluginsNotebookjs042NotebookMinJs = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x59\xdf\x8f\xdb\xb8\xf1\x7f\xff\xfe\x15\x89\x70\x30\x44\xac\x56\xc9\x7d\x71\xe8\x83\x5d\xdd\xe1\x90\x06\x68\x8a\x26\x01\x2e\x87\xf6\xc1\x6b\x18\xb4\x34\xb6\xb5\x2b\x91\x2a\x49\xaf\x77\x61\xeb\x7f\x2f\xc8\xe1\x2f\xc9\xf2\x6e\xae\xed\xcb\xae\x38\x1c\xce\x0c\xe7\xc7\x87\x43\x3a\xdd\x1e\x58\xa9\x6a\xce\x52\x72\x7a\xa4\xe2\x8d\xe0\x5c\x15\x6a\x5f\xcb\x85\x1e\xfd\xe3\xe3\x6f\xdf\x3e\x7d\xfd\x52\x24\xef\xf3\x9f\xf2\xff\x4f\x0c\xad\xe2\x65\xa1\xb9\xf2\x8a\x97\x87\x16\x98\x5a\xd4\xdb\xf4\x6d\xc5\x4b\x14\x70\x2f\x2b\xde\x16\x02\xfe\x75\xa8\x05\xa4\x89\x19\x26\x64\xa1\x57\xa5\x0c\x8e\x38\x9f\xff\xed\xdb\x5f\xbe\x7e\x26\xf9\xb1\x66\x15\x3f\x7a\x49\xbd\x16\x50\x57\xc0\x54\xe1\xcd\x7a\x22\x27\x01\xea\x20\xd8\x9b\xa7\xde\xe8\x6f\xe9\x03\x7c\x6c\xa0\x1d\x70\x29\xba\xcb\xca\x86\x4a\xf9\x85\xb6\x20\xd1\x12\x68\x8a\x8a\x97\x79\x29\x80\x2a\xb7\x42\x33\x92\x05\x34\xb9\x67\x2e\xd2\xb0\xee\x7c\x5e\xae\x48\xde\xd2\x2e\x78\xa5\x64\x5e\x3f\xdb\xe4\x9d\x80\x6d\xfd\x74\x53\xb2\x9e\xe4\xf7\xbc\x66\x69\xf2\x26\x21\x0b\x3b\x0f\x0d\x1a\x08\xb2\xa4\x1d\xfc\xf5\xf7\xcf\x7f\x0f\xf6\x09\x7a\xb4\xfe\x85\xae\xa1\x25\x54\x85\xa0\xc7\xdc\x0e\xd2\x77\x7f\x7e\xb7\xcb\x92\x59\xa3\x16\x09\x09\xc4\x9f\x0d\x71\xa7\x89\x4e\x85\x5b\x8d\x8a\xb4\x05\xbf\xc3\x53\xec\x06\x78\x52\xe4\x54\x6f\xcd\x87\xb1\xd0\x5b\x6f\x28\x7a\x6b\x6e\x95\xdb\x41\x42\x7a\x68\x24\xc4\x7c\x3d\xca\x2f\x39\xab\x7e\xc3\x40\x06\x15\x2d\xaf\x0e\x0d\xac\x19\x6d\x21\xc8\x7e\xee\x80\x6f\xdf\xd8\xa0\x17\x45\x91\x38\xf6\x64\x36\x73\xa9\x10\x2f\x44\xf9\x3b\x50\x9f\xa9\x78\xa8\xf8\x91\x15\x51\x1a\xba\xbd\xea\x1c\x6b\xa9\x78\x80\xea\x7c\x8e\x4c\x49\x13\x24\x26\x41\xca\xaf\x4c\xd6\xc5\x28\x91\x9b\x7a\x83\x69\x4a\x99\xac\xd7\x87\x6e\x24\xc3\x52\x83\x6b\x9b\x7a\x33\x9b\x35\xf5\x06\xf9\x15\x5f\xef\x55\x6b\x03\xca\x36\xc5\x09\x23\x3f\x4f\xd8\xe6\x36\xc9\x5a\x6b\xf5\x3c\xda\x41\x4a\xce\x67\x93\xba\x99\x16\x30\xb7\x56\x05\xea\xbe\xde\xed\x9b\x7a\xb7\x57\x20\xe6\x48\xb1\xc5\x35\xb7\xff\xfb\x05\xdb\xe4\x9f\x58\x77\x50\x83\xb4\xc9\x4a\x68\x1a\x72\xd2\x25\x99\x0b\x7a\xd4\x79\xb3\x30\x03\x4d\x2f\xf4\x9f\xb0\x30\xef\x04\x57\x5c\x47\x23\x17\xc0\x2a\x10\xb1\x53\x74\x95\x3a\x29\x79\x03\x6c\xa7\xf6\xde\xd7\x51\x4d\xa5\x49\x55\x3f\x26\xc4\x94\xe2\x9e\x37\x5a\xc8\xc5\x6c\xb6\x4c\x6a\xad\x2f\x59\x11\x4c\x14\x6d\x8a\x37\x4a\xe3\x81\xcd\x08\x3d\xcc\xd9\xa1\xdd\x80\xd0\x59\x81\x5f\x09\x39\xa1\xe0\x5c\x82\xfa\x55\x29\x51\x6f\x0e\x0a\xd2\xa4\xa2\x8a\xde\x76\x82\xb7\x9d\xba\xb5\x9c\x99\x17\x6a\xa5\xa0\x5d\x9d\x80\x35\x34\x43\xbb\x3a\x01\x89\xb5\x86\x57\x97\xd3\x9a\x68\xe7\x19\x57\xb0\xe1\xfc\xc1\x38\x2f\x3f\x72\xf1\x20\xf7\x00\x2a\x77\x74\x44\x99\xc2\x0d\xf3\x16\x14\xd5\xb6\x19\x7a\x43\xd9\x2e\x6c\x15\x7d\x49\xd9\xee\x40\x77\x70\x3e\xb7\x83\xef\x07\x10\x0c\x1a\xd9\x41\x39\x9b\xc5\xa3\xc9\x05\xeb\x9a\x6d\xb9\xe6\x1b\x10\x72\x5d\x2d\x0b\xbb\xa1\x29\x77\x39\xee\x24\xd3\x5f\xc4\xb3\x06\x78\x4b\xf4\xc4\x6d\x72\xa3\xff\xf9\xe9\x9a\x31\x10\x06\xa1\xd8\x26\x8f\x32\x33\x0d\xd8\xe5\x71\x22\x75\x49\x43\x48\x86\x8e\xcf\xac\x18\xab\x13\x89\x39\xed\x3a\x60\xd5\x87\x7d\xdd\x54\xa9\x65\x20\x0b\x1b\xe8\x78\x0e\xd9\x09\x26\x31\x34\x05\xb2\xb8\x32\xc4\x11\xd6\x5d\xdd\xd2\x1d\x7c\xd0\xf0\xcd\xa3\x4c\xde\x72\xd1\x52\xe5\x53\xd7\xd3\xb5\x3f\x3c\xf0\x0f\x62\x5f\xb7\x3b\x93\xb2\x5a\xdc\x2d\x3f\x28\x9b\xb9\xda\xa3\xa2\x2c\x8c\x23\xe7\x66\xf2\x5d\x72\x83\xd2\x6f\x92\xc5\x86\x4a\xf8\xd3\x4f\x59\x72\xe3\xfd\x60\x14\x04\x78\xbe\x63\x1a\x9f\x07\xf0\x6f\x2a\xb1\xaa\x65\xd7\xd0\xe7\xe2\x14\x8f\x72\x35\x81\xd3\x53\xb6\xea\x34\xce\x96\x89\x66\x18\x9a\x1a\x42\x36\x19\x23\x2d\x70\x70\x12\x05\xdd\x28\xed\x5d\xd7\xd0\x9a\x25\xab\x62\x64\x54\x6c\xa4\x86\xbc\x60\xa4\x1e\x4d\x1b\x69\x31\x40\x33\x5c\x33\xd2\x5b\x66\xa4\xbc\x68\x98\xe6\x18\xda\xa5\x29\xb1\x5d\x08\xf8\xd1\x19\x54\xc5\x87\x72\xbc\x2a\x65\x9b\xdc\xa1\x73\xf0\x4e\x5b\x11\x42\x26\x34\x3b\xce\xa1\x76\xd4\x16\xeb\x97\x8f\xbb\xa0\x5c\x3e\xee\x5e\xf4\x8a\x7c\xdc\xbd\xea\x14\x2d\xe3\x45\x9f\xc8\xc7\xdd\xcd\xd3\xd8\x2d\xf2\x71\x37\xe0\xc4\x9c\xfd\x0e\xd6\xbc\xa1\x0a\x9e\xc2\x16\xcc\xf0\xc5\x4d\x18\x8e\x57\xb7\x81\x72\x5e\xdc\x88\x61\x19\xda\x66\x48\xb1\x75\xf7\xf4\x91\xca\x52\xd4\x5d\x54\x21\xf7\x72\xda\x3e\xe4\x4b\xae\x59\x74\x2f\xaf\x9a\x43\xbb\xae\xa9\x4b\xaa\xa5\xbf\x0b\x1a\x87\xa6\x05\x7a\x6c\x5f\xc7\x76\x45\x8c\x45\x69\xd2\xb1\x5d\x42\x26\x62\xa1\xe9\x03\x81\x1d\x1b\xc4\xe1\xbe\x83\xb1\x28\x4d\x9a\x94\x65\x26\x86\xd6\x75\x10\x4b\x5b\x77\xa2\xe6\xa2\x56\xcf\xc5\xd2\x18\x94\x45\x46\x64\x28\x37\x8b\x65\x65\x3a\x35\x3d\xc9\xa5\x4d\x36\x4c\xb8\xcc\x54\xb5\xa3\xc6\xdf\xbe\x58\x32\xcc\x0e\x47\x77\x83\xc8\xa7\xd9\x35\x67\xe3\x12\xb7\xd2\x22\xd2\x02\xfb\x62\xdd\xaf\xac\xdd\xd6\x34\xd6\x8e\x3b\x3a\x1e\xee\x25\x88\xd2\xb2\x98\x70\x46\xbe\xad\x1b\x7d\x92\x85\x73\xc1\x63\x05\x37\xc7\xb5\x16\xfd\x4b\xf8\x5c\x56\xab\xb9\x19\x2d\xab\x55\x4f\x22\xe9\x85\x55\xb2\x7c\xbf\xd2\x1d\x8d\x3b\x76\xea\x6d\x1a\xc5\x0a\xa9\xab\x09\x38\x72\x53\x29\x0a\xb7\xa3\xf3\x39\xd2\xec\x16\xf7\xfd\xb5\x36\x2c\x5b\x26\xd0\x76\xea\x39\x54\x62\x1f\x7b\x0b\x84\xe0\x62\xec\xa6\x2b\x27\x4a\xf7\x0c\x42\xb8\x86\x4d\x37\x92\xbe\x17\x54\x82\x96\xb0\xa1\xe5\x83\xbd\x10\xdc\xb1\x71\x79\x8d\x9a\x04\x86\x4d\x72\xdc\x2c\x60\x7b\x00\x17\x48\xff\xd5\xd8\xfd\x07\x1b\x5a\x1c\xea\x16\xd2\xdc\x92\x70\xef\x6b\x3d\x8e\x64\x5e\xf4\xba\x20\x64\x71\x8a\xf3\x67\x3e\x91\x53\x19\x3c\x41\x79\x50\xb0\x16\x20\x0f\x8d\x9a\x64\xe9\x9e\xf9\xe1\xda\x0c\x08\x31\x8f\x9d\x9f\x99\xbf\x43\x92\x54\x02\x68\x3b\xff\xae\xb0\xf8\x20\xe0\xa2\xf3\xd9\x13\x74\xe7\x17\x45\xeb\xa2\x1b\x33\x87\xf7\xff\x24\x4e\x2f\x39\xf5\xa2\x06\x0f\xea\xca\x85\x20\x9c\x15\xa1\xfd\x1f\x77\xef\x83\x3b\x80\x11\xf5\x1f\x5f\x01\xcc\xa6\x6d\x0e\xbb\xf0\x2f\x7d\xde\xac\xf2\x92\x36\x8d\xf1\x15\x59\xa0\xa2\xb8\x05\x35\x8b\x43\x07\x6a\x18\x9c\x43\xcc\xc0\xb8\xa4\xe4\xb4\x01\x59\xc2\x37\x13\x1a\x19\x5c\x81\x5b\x95\x78\xa5\xb2\x83\xf1\x8d\xca\x92\x7b\xbc\x33\x48\x55\x58\x82\x46\x13\x73\x09\x81\xe3\xda\x92\x8a\xa5\x66\x58\x2d\x9c\x24\xd9\xd4\x25\xa4\x3f\x92\x7c\xcb\xc5\x47\x5a\xee\x03\x94\x71\xa3\x12\x11\x24\xaa\x0a\xed\x56\xcc\x9f\x64\x36\xd3\xb2\x5e\x64\xe0\x51\xbe\x15\x45\xe1\xf9\x91\x42\x4e\x9e\x60\x5a\xd6\xc1\x28\x2f\x39\x2b\xa9\xb2\x16\x98\x04\xc4\xb7\x83\x68\x37\x79\x77\x90\xfb\x94\x93\x05\xee\xba\xef\x7d\xaa\x45\x4c\xc6\xbf\x1f\x74\xbd\x0f\x90\xc1\xdf\xc5\x30\xd9\xfc\xb5\x72\xe1\xee\x5a\x06\x2c\x86\xd7\xb6\xc2\x7f\xe1\x84\x87\x0d\x3d\x32\xbb\xd7\x09\x19\xa6\x8a\xc2\xde\x05\x4f\x71\x62\xea\x05\x98\x77\x6b\xa4\xfc\x7c\xfb\xe3\x2f\x17\xc4\xb9\xa6\x20\x82\xd4\x9c\xad\x4b\x7e\x60\xca\x44\x53\xf2\x83\x28\x51\xad\xb9\x18\x9f\xcf\x4b\xe3\x52\x43\x5e\xa1\x61\x66\xa2\x60\x70\x7c\xe3\xae\xeb\x29\xce\x23\x20\xba\x4a\xf7\x59\x91\xfa\x0b\xa6\xa5\x4c\xbc\x4e\xf1\x70\xf0\xa0\x5c\x2c\xe3\x94\xa3\xcc\x9e\xa0\x6a\x27\xf2\x32\xa9\xd3\x48\x23\xe9\x7d\x58\xa6\xc1\xd5\x3f\x7b\xbc\x02\x6d\x16\x11\xb4\xea\x24\x4b\xdc\xaa\x5b\x33\x1e\xf7\x92\x93\xfd\x7a\x40\x45\xe3\x20\x62\x30\xc5\x3c\xe6\xa0\x35\x9f\xa9\xda\x7f\x62\x56\xdf\xdb\x82\x1d\xf4\x81\x72\x6d\x3e\x85\x26\x3b\x55\xd0\xd4\x6d\xad\x40\xc8\xf9\xf2\xd4\xc0\x56\xcd\x93\x1f\x7e\x48\x32\xa1\x91\x12\x3f\x2d\xd0\xcf\x95\x38\x40\x9f\x59\x9e\xbb\xbb\xa5\x67\xba\xbb\x5b\x5d\xe5\x4a\x23\x2e\x12\xb8\xb6\xb4\x91\x81\x2d\xd2\x37\x66\x59\xf5\xa4\x0f\x80\x9c\xed\x81\x56\x35\xdb\xbd\xe6\xe7\x7d\x72\x13\x3d\xe8\x3c\x42\x13\x9c\x6e\x25\x4c\xfb\xfc\xaa\x9f\xa3\x43\x21\x13\xf4\xf8\xc7\xe2\x2c\xe8\xf1\xbf\x50\xa7\x6b\x72\xac\xcf\x54\xf0\xcb\x4a\xf5\x32\xaf\xd5\xf2\x0f\xa0\xde\xe8\x34\xa5\x67\x73\x23\x25\x58\x6a\x16\x1e\xa1\x91\x78\x8a\x38\xf8\x9a\x02\xdd\x29\xc1\x3c\xc8\x0b\x10\x67\x19\x5f\x28\xa4\x89\x6e\xed\xbb\x0e\x31\x77\x56\x41\x33\xea\xb0\xfe\xe9\x81\x70\x00\xa5\xee\xf5\x0a\xb5\x04\xb4\x34\x70\x7a\xd9\x7b\xf9\x37\x31\xff\x08\xe6\x8f\x5d\xe9\xd1\x54\x8e\x9e\xc6\xc7\xe0\xa3\x37\x9c\x96\x11\x8a\xf7\xd6\xee\xe9\xad\x7b\xbe\x6b\x31\xf6\x0c\x3a\xb8\xe1\x9d\x0e\x4d\xb9\x88\x53\x49\x4e\xb1\xc4\xe1\x7b\xd4\x20\x58\xce\x97\x31\xbb\xf3\x6a\x4c\xc3\x30\x7e\x71\xae\x19\x36\xb1\x9c\x6d\x6b\xfb\x10\xe0\x9d\x77\xc5\xb9\xc8\x5b\xe0\x3f\x7c\x5d\x04\x45\x31\xee\xee\x71\xd1\x38\xd9\x0d\xce\xe7\x53\x6f\x9b\xe0\x5a\x35\x50\x68\x3a\x7e\x9e\xcf\xe6\xdb\x3c\x0b\x6a\x41\x6b\x6f\x2f\x86\x29\x0c\xcf\xe7\xa5\xc9\x5b\x39\xf7\xe1\xeb\x57\x28\x34\x5a\x13\xad\x1f\x06\xf7\x28\xc7\xd1\xf5\x89\x96\x1e\x65\x48\x2f\xe7\xce\x90\x5d\x91\xf8\xe5\xfb\xd5\xc0\x85\xaf\x56\x83\x13\x7b\x2d\x23\xdc\xbc\x4e\x88\x91\xae\xcb\x84\x38\x92\x53\x24\x6f\x90\x0f\xc7\xc9\x7c\x88\xb8\x7d\xcf\x12\x48\x66\x27\x1d\x15\x32\xfa\x31\x84\x6d\xee\x25\x67\x3e\x19\x86\x0e\x73\xbb\x1e\x71\xf5\x51\x83\x5c\xc1\xb6\x66\xe3\x1f\x4c\x90\x98\xd3\xb6\x22\x27\xfc\x4e\x2f\x7f\x1d\x61\x9b\x9e\xf4\x41\x10\x3c\x75\x5c\x28\xf9\xb6\x28\x92\x03\xc3\x45\x55\x82\xbf\x04\x21\x03\xfe\xfa\x32\x9c\x9f\xcd\x90\x9a\xdb\xd5\xe4\x64\x3f\x8a\x21\xbd\x60\x9b\xde\x7e\xe6\x6c\x63\x46\xe6\x07\x23\x7d\xe0\xe2\xb8\x27\x31\x56\xfd\xdf\xbf\x03\x00\x00\xff\xff\xde\x2d\x0c\x65\x55\x1c\x00\x00" -func pluginsNotebookjs030NotebookMinJsBytes() ([]byte, error) { +func pluginsNotebookjs042NotebookMinJsBytes() ([]byte, error) { return bindataRead( - _pluginsNotebookjs030NotebookMinJs, - "plugins/notebookjs-0.3.0/notebook.min.js", + _pluginsNotebookjs042NotebookMinJs, + "plugins/notebookjs-0.4.2/notebook.min.js", ) } -func pluginsNotebookjs030NotebookMinJs() (*asset, error) { - bytes, err := pluginsNotebookjs030NotebookMinJsBytes() +func pluginsNotebookjs042NotebookMinJs() (*asset, error) { + bytes, err := pluginsNotebookjs042NotebookMinJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "plugins/notebookjs-0.3.0/notebook.min.js", size: 6888, mode: os.FileMode(0755), modTime: time.Unix(1571173927, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe, 0xc7, 0x65, 0xf3, 0x5d, 0x1d, 0x32, 0x3c, 0x32, 0x7a, 0x62, 0x79, 0xd5, 0x1a, 0x37, 0xb7, 0x79, 0x27, 0x44, 0xbc, 0x5c, 0xbb, 0x23, 0x52, 0xda, 0x14, 0xc9, 0xcc, 0x18, 0xbc, 0x80, 0x31}} + info := bindataFileInfo{name: "plugins/notebookjs-0.4.2/notebook.min.js", size: 7253, mode: os.FileMode(0755), modTime: time.Unix(1550898695, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x63, 0x8d, 0xd, 0xf0, 0x68, 0x4, 0x90, 0x2f, 0xe4, 0x45, 0xab, 0xf, 0xd5, 0xf6, 0x1c, 0x6f, 0x43, 0x54, 0xbf, 0xf8, 0x73, 0x0, 0x63, 0x69, 0x91, 0xfe, 0x7f, 0xb6, 0x97, 0x7f, 0x34}} return a, nil } @@ -29500,8 +29500,8 @@ var _bindata = map[string]func() (*asset, error){ "plugins/jquery.minicolors-2.2.3/jquery.minicolors.css": pluginsJqueryMinicolors223JqueryMinicolorsCss, "plugins/jquery.minicolors-2.2.3/jquery.minicolors.min.js": pluginsJqueryMinicolors223JqueryMinicolorsMinJs, "plugins/jquery.minicolors-2.2.3/jquery.minicolors.png": pluginsJqueryMinicolors223JqueryMinicolorsPng, - "plugins/marked-0.3.6/marked.min.js": pluginsMarked036MarkedMinJs, - "plugins/notebookjs-0.3.0/notebook.min.js": pluginsNotebookjs030NotebookMinJs, + "plugins/marked-0.8.1/marked.min.js": pluginsMarked081MarkedMinJs, + "plugins/notebookjs-0.4.2/notebook.min.js": pluginsNotebookjs042NotebookMinJs, "plugins/pdfjs-1.4.20/LICENSE": pluginsPdfjs1420License, "plugins/pdfjs-1.4.20/build/pdf.js": pluginsPdfjs1420BuildPdfJs, "plugins/pdfjs-1.4.20/build/pdf.worker.js": pluginsPdfjs1420BuildPdfWorkerJs, @@ -31176,11 +31176,11 @@ var _bintree = &bintree{nil, map[string]*bintree{ "jquery.minicolors.min.js": {pluginsJqueryMinicolors223JqueryMinicolorsMinJs, map[string]*bintree{}}, "jquery.minicolors.png": {pluginsJqueryMinicolors223JqueryMinicolorsPng, map[string]*bintree{}}, }}, - "marked-0.3.6": {nil, map[string]*bintree{ - "marked.min.js": {pluginsMarked036MarkedMinJs, map[string]*bintree{}}, + "marked-0.8.1": {nil, map[string]*bintree{ + "marked.min.js": {pluginsMarked081MarkedMinJs, map[string]*bintree{}}, }}, - "notebookjs-0.3.0": {nil, map[string]*bintree{ - "notebook.min.js": {pluginsNotebookjs030NotebookMinJs, map[string]*bintree{}}, + "notebookjs-0.4.2": {nil, map[string]*bintree{ + "notebook.min.js": {pluginsNotebookjs042NotebookMinJs, map[string]*bintree{}}, }}, "pdfjs-1.4.20": {nil, map[string]*bintree{ "LICENSE": {pluginsPdfjs1420License, map[string]*bintree{}}, diff --git a/internal/assets/templates/templates_gen.go b/internal/assets/templates/templates_gen.go index 26197b0c..6bfef6a9 100644 --- a/internal/assets/templates/templates_gen.go +++ b/internal/assets/templates/templates_gen.go @@ -110,7 +110,7 @@ // ../../../templates/repo/settings/webhook/settings.tmpl (5.033kB) // ../../../templates/repo/settings/webhook/slack.tmpl (1.515kB) // ../../../templates/repo/user_cards.tmpl (1.927kB) -// ../../../templates/repo/view_file.tmpl (4.983kB) +// ../../../templates/repo/view_file.tmpl (5.187kB) // ../../../templates/repo/view_list.tmpl (2.249kB) // ../../../templates/repo/watchers.tmpl (161B) // ../../../templates/repo/wiki/new.tmpl (1.265kB) @@ -577,7 +577,7 @@ func baseFooterTmpl() (*asset, error) { return a, nil } -var _baseHeadTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x1a\x6d\x6f\xdb\xb8\xf9\x73\xfc\x2b\x78\x1a\x0e\xd8\x8a\x4a\x6a\xda\xee\x76\x68\x6d\x1f\x72\xe9\x5b\x86\xb4\x0d\x12\x07\xd8\x3e\x19\xb4\xf4\x44\x62\x42\x91\x2c\x49\xd9\xf5\x3c\xff\xf7\x81\xa4\x24\x53\xb2\x9c\xc8\xbd\x5d\xbf\xc4\x26\x9f\xf7\xf7\x87\xee\xf8\xa7\x77\x5f\xcf\x67\xff\xbe\x7a\x8f\x72\x5d\xd0\xe9\x68\x5c\xff\x01\x9c\xa2\x14\x6b\x1c\xaa\x72\x51\x4a\x3a\x09\x36\x9b\x33\x21\x6e\xca\xc5\xed\xf5\xe5\x76\x1b\x4c\x47\x27\xe3\x02\x34\x46\xb9\xd6\x22\x84\x6f\x25\x59\x4e\x82\x73\xce\x34\x30\x1d\xce\xd6\x02\x02\x94\xb8\x6f\x93\x40\xc3\x77\x1d\x1b\xba\x6f\x51\x92\x63\xa9\x40\x4f\x6e\x67\x1f\xc2\x5f\x03\x14\xf7\x92\xf9\x57\x78\x7b\x16\x9e\xf3\x42\x60\x4d\x16\xd4\xa7\x74\xf1\x7e\x02\x69\x06\x81\xc1\xdb\x6c\xc8\x1d\x62\x5c\xa3\xe8\x0a\x67\x70\xa1\xce\xd2\x82\xb0\xed\x76\x74\x52\x51\x64\xb8\x80\x49\x80\x4b\x9d\x73\xe9\x91\xb0\x68\xd1\x35\x08\xae\x88\xe6\x72\xbd\xdd\x6e\x36\xd1\xd7\x15\x03\x19\x7d\xc1\x05\x98\xaf\x40\x15\x6c\xb7\x1f\x79\xa6\x36\x1b\x60\xe9\x76\xeb\x04\x6d\xd1\x4d\x41\x25\x92\x08\x4d\x38\x7b\x8a\xf8\xee\x6b\xc3\xa1\x0d\x15\xbd\xdb\x11\xdb\x6e\x51\x88\xda\x48\xad\xdb\x4a\x22\x5f\x48\x44\x14\xc2\x48\x60\xc2\x28\x28\x85\x14\xd0\xbb\x30\xe7\x4a\x43\x8a\x3e\x12\x8d\x14\xc8\x25\x49\xe0\xb0\x2a\x0f\xb0\x5e\x71\x99\x2a\x4f\x8f\x8c\x3f\x47\x19\xd1\xcf\x7d\x62\xcf\x51\xc6\x33\x15\x58\xcb\x5b\x52\xa3\x16\x15\x09\x77\x20\x25\xf8\xa6\x66\x3c\xdc\x9d\xee\x5c\xed\xe0\xe7\x89\x92\x77\x2d\xd3\x45\xe7\x37\xd7\x1f\x66\xfc\x01\x58\x2d\x66\x0b\xde\xc5\x61\x0b\xc3\x0f\x48\x83\x30\x3a\x19\xff\x14\x86\xe8\xab\x00\x86\x3e\x4a\x2c\x72\x34\xc3\x99\x42\x61\x58\x87\x4b\x37\x54\x9c\x19\xd1\xee\xe6\x56\x81\xbc\x92\xfc\x8e\x50\xf0\x42\x49\x48\x2e\x40\xea\xf5\x24\xe0\xd9\x9b\xae\x10\x55\xf0\x7c\x9a\x7d\xbe\xdc\x49\xd2\x8b\xa9\xdb\x69\x21\x1c\x9f\x47\xe0\x89\x6e\x45\xff\x5e\xa0\x1a\xb9\xdd\xc9\x87\x92\x52\x77\x8a\xfe\xda\x80\xed\x0e\xff\x56\x7b\xff\x00\xa7\x43\xd1\xdc\xe2\x87\x72\xac\xd0\xee\xac\x2c\x3e\x70\x4a\xf9\x0a\xa4\xda\x6e\xd1\x5d\xfd\x19\x61\x96\x9a\x88\x74\x07\x84\x65\x3d\x28\x84\x65\xdb\x2d\x12\xc0\x05\x85\xe8\x90\x4c\xa4\xc0\x59\xaf\xf6\x67\x4b\xac\xb1\xbc\x24\xec\xa1\x36\xb6\xe7\x46\x3f\xf7\x06\xfa\xcf\x4b\xb5\xe3\x9d\xc8\x17\xf7\x90\xe8\xa3\x7c\xe8\xf1\xdb\x79\xe8\x68\xcf\x1c\x2a\x10\x47\x98\xd3\x23\xf1\xb8\x65\x87\x9a\xf2\x4c\x88\xe3\xac\xb7\x82\x85\x22\xfa\xa8\x14\x38\x13\xe2\x47\x2c\x36\xbc\x50\x1e\x11\x90\xb5\xbe\xa4\xc8\xe2\x3b\xbc\x24\x09\x67\x91\x60\xd9\x61\x75\x8c\xb2\x73\x53\xcf\x3a\x92\xf9\x55\x75\x74\x32\xa6\x84\x3d\x20\x09\x74\x12\xa8\x9c\x4b\x9d\x94\x1a\x19\xda\x01\xca\x25\xdc\x75\x0a\x5f\xdc\xc7\x7c\x74\x32\x76\x46\x40\x4a\x26\x5d\x84\x7b\x15\xdf\x7f\x2b\x41\xae\xc3\x57\xd1\xeb\xe8\x34\x2a\x08\x8b\xee\x55\x30\x1d\xc7\x0e\x67\xfa\x14\x36\x25\x8b\x9a\x44\x84\x25\x84\x6b\x5e\x86\xaa\x94\xb0\x47\xc5\xd3\x43\xaf\x29\xa8\x1c\x40\xf7\x2b\x81\x95\x02\xad\xe2\x3b\xce\x74\x88\x57\xa0\x78\x01\xe1\xeb\xe8\x97\xe8\x55\x9c\xa8\xf6\xb1\x15\x37\x51\xd6\x64\xc7\x33\xe0\x89\x36\x86\x52\xe1\xeb\xe8\x55\xf4\xa2\xf9\xea\x11\xad\x7a\x08\xe3\x1a\x16\x9c\x3f\x44\xf7\xa6\x94\x49\x24\x81\xa5\x20\x4d\x39\x23\x62\xad\x73\xce\x1a\x08\x57\xf1\x0a\x2c\x1f\x20\xdd\x87\x36\xe7\x29\x5f\x31\x44\x7c\x0c\xaf\x23\x5d\xa8\x8b\x2b\x4b\xf0\x4b\x75\xeb\x92\xed\xb0\x03\x04\x2d\x33\xc2\x54\x5c\x53\xbb\x57\xe1\x0b\xab\x4c\x23\x72\x8f\x43\x87\x10\x74\x2a\x58\x62\xbf\x54\x5f\xfa\x48\xed\xe2\xb4\x9e\x63\xbe\x95\x44\xc2\x0d\x29\x04\x85\xcf\xef\xde\x3b\xf9\x87\x7b\xa6\x66\xaf\x2c\x81\x22\x85\xf0\x34\x3a\x7d\x11\x9d\xee\x0e\x7c\x97\x0f\x51\xe4\x09\x4a\x3f\x60\x9a\x84\xa7\x50\x10\x29\xb9\x0c\xff\x1e\x9d\xfe\x23\x7a\x11\xe3\x34\xe5\x2c\x2e\x78\x0a\x31\xe5\x38\x35\x1f\xfe\x3f\x84\x2d\x49\x53\x39\x0e\x91\x33\x1f\x4f\xce\x79\x0a\x9f\x2d\x5e\x64\x10\x6e\xaf\x2f\xd1\x04\xa1\xe3\x98\xfc\xfc\x25\xfe\xf9\x8b\xe1\xf2\xd6\x10\xef\x73\xb0\xcd\x84\x9b\xc6\x7f\x2e\x6c\x8f\x70\xad\xc9\x5d\x05\x05\x66\x9a\x24\xe1\xcb\xe8\x75\xf4\xf2\x07\xb3\xd7\x10\x32\xd3\x67\x8d\xfe\xdb\x72\xb2\xd9\xfc\x5e\x12\x9a\x9e\xf3\xa2\x20\xba\x5a\x48\x18\xf7\xad\x65\x68\x5a\x63\x45\xa9\xe4\xc2\x24\xe1\x9b\x9c\x2f\x41\xa2\x29\x8a\x0a\x60\x25\xda\xa0\x94\x28\x41\xf1\xfa\x0d\x5a\x50\x9e\x3c\xbc\x45\x5b\x0b\x5e\x92\x48\x41\xc2\x59\x8a\xe5\xda\x41\x36\x14\x22\xa2\xa1\xf0\x08\x14\x58\x66\x84\x85\x9a\x8b\x37\xe8\x85\xc3\x47\xe3\xb8\x66\x3d\x8e\x77\x12\x55\xd6\xfc\x27\x5e\xe2\x1b\x17\x16\xce\x9a\x8f\x56\xda\x1e\xe3\x1d\x55\xa9\xad\xcd\xee\x7b\xcd\xb5\xa3\x31\x3a\x19\xdb\x36\x3b\x75\xf9\x3c\x33\x9f\xed\xe2\x52\x7d\xb2\x0b\x49\xb5\x75\x34\xdd\x77\x1c\x3b\x9c\x51\x7b\x4a\xd7\x39\x14\x10\x26\x9c\x76\x76\xae\x99\x39\x3f\x37\xc7\x9f\x41\xe3\x19\xce\xac\xc7\x4c\xac\x69\x28\x04\xc5\x1a\x50\x40\x98\x19\xa5\x62\xb3\x79\x06\x28\xda\x6e\x47\x63\xfb\x79\x3a\x1a\x2f\x78\xba\x36\xba\xa6\x64\x89\x12\x8a\x95\x9a\x04\x77\x25\xa5\x28\x07\x92\xe5\xda\x95\x85\xc6\xd2\xb3\x9c\x28\x54\x0d\x16\x68\xc5\xe5\x83\x42\x0b\xd0\x1a\x24\x5a\x11\x9d\x7b\x0e\x68\x7b\x67\x6f\x9f\xbc\x60\x4a\x63\x4a\x6d\x39\x6b\xb3\x6e\x26\xdb\x05\x96\x88\x36\x22\xb4\xa1\x4a\x62\xf5\xc7\x84\x81\xac\xae\xbb\xf7\x99\x24\x69\x7d\xd5\xba\x4b\x38\x2d\x0b\xd6\x5c\x75\xf1\x34\x17\xa8\x09\x50\x64\x22\x71\x07\x7a\x32\xc6\x35\xa4\x0d\xd5\x85\xc4\x2c\xed\x4f\x2a\x0f\xe9\x64\x4c\x8a\xcc\xe3\x50\x10\x46\x50\x35\xef\xf4\x44\x56\x77\xe4\xf0\xb8\xc7\xd8\x1a\xd3\xfd\xab\x3b\xdc\x25\xcf\x32\x48\x9d\x25\xfb\xa4\xf4\x77\xb3\x77\x58\xe5\x0b\x8e\x65\xba\xdd\x22\x9c\x68\xb2\xdc\x6d\xae\xfd\x4a\x6c\x36\x11\x39\xfd\x95\x45\x33\x89\x82\xb4\x46\x0e\x4c\x84\xe2\xe9\x10\x86\x17\x4a\x95\xa0\x86\x71\x23\x16\xb6\xcd\xb3\x3a\x1b\xce\xf0\xaa\xa4\x74\x20\x3f\x61\x40\xdb\xec\xcc\xd1\x5c\xc2\xb7\x12\x94\xde\xe3\xea\x8d\xeb\x4f\x8a\xf1\x89\xdb\xa5\xee\x68\x1b\xe7\xbc\x80\x1e\xbe\x55\xcb\x78\x92\xed\xfb\xef\x82\x72\x39\x90\x33\x38\xe0\x58\x9a\x4d\xa5\x2d\x46\x75\xb5\x2f\x49\xfc\xcc\x4f\x17\xc3\xbe\x15\xe8\xed\x54\x32\x21\x8c\x08\x13\xa5\x6e\x67\x83\x39\xa9\xc1\x14\x60\x99\xe4\x0b\xfe\x3d\x40\x66\x7d\x71\xef\x59\x01\x12\x14\x27\x90\x73\x9a\x82\xb4\xdb\x54\x23\x99\x83\x9f\x0b\xc9\xed\x6a\x58\x6d\x2a\x0d\xe9\x36\x59\x37\xd8\x4f\xc7\x31\xf1\x81\xe2\x94\x2c\xf7\xbe\x3f\x8b\x7d\x0b\x3f\x92\x5b\x9e\x8a\xd2\x54\xa7\x6e\x89\xd8\xb3\x42\xdd\xdd\x90\x7d\xf5\xb3\x6d\xf9\xbe\x2c\x04\xb2\x15\x44\x70\x61\x6a\x5d\x29\x02\xf7\x1e\xe8\x6f\x90\x8d\xce\x89\x04\x6c\x56\x1b\x58\x19\x7d\x1d\xe0\x12\x4b\x82\xcd\x1a\x36\x09\x34\x61\x6b\x44\xd8\x12\xa4\x86\xb4\x25\xc9\xc9\x58\x09\xcc\x6a\x59\xac\x65\x5b\xd7\x9e\xc1\xaa\x61\x1d\x55\x7f\x43\x41\x4b\xd3\x0b\x7d\x7c\x25\x43\xce\xe8\xba\x1d\x29\x2d\xd9\xc6\xb1\x81\xef\xd8\xfb\x51\x36\x5a\x12\xcc\x32\x0a\xa1\xb1\x50\xd7\x53\x76\x70\x32\x04\x5b\x47\x9e\x75\xf7\x4c\xdf\xcd\x8d\xfe\xc0\x37\x01\x1f\x3b\xc1\x3b\xd8\x4f\x1b\x24\x26\x53\xe4\xeb\xcf\x60\x35\x37\xf4\x02\x3f\x48\xea\x5a\xfd\x43\x82\x15\x24\x93\x47\x49\x66\xb0\xc2\x84\x72\x06\x07\xe4\xab\x29\x3e\x25\xa2\x8b\x7a\x17\xf3\xb7\x0a\x64\x74\x8e\xd9\xb9\x35\xd3\x57\x99\x61\x46\xfe\x83\xdd\x2b\xc8\xd1\x7a\x71\x99\x1d\x6d\x6f\xee\xb1\x3c\xa0\x17\x97\xd9\x00\x9d\xaa\xe7\x54\x1f\xc6\x24\xbc\x1d\x18\x81\xa5\xf5\x20\x85\x9c\x80\x88\xc1\xca\xa6\xb4\x9b\x20\x0f\x21\x35\x49\x6d\x41\x3d\x54\x83\xf5\xc7\x6b\x81\xc6\x0b\xc2\x52\xf8\x3e\x09\xc2\xd3\xc7\x2a\x43\xa9\x40\xce\xab\xa7\xce\x39\x66\xe9\xbc\x70\x55\xfb\x8f\x15\x09\x84\xed\x53\xd5\x5e\xad\x68\x4d\x31\xaa\xc0\x94\x22\xc9\x4b\x96\x42\xda\x19\x67\xfc\x18\xba\x06\xda\x7a\xf9\xea\x10\x7d\xb2\xc0\x1c\x52\xb1\xa7\x34\x0c\xae\x33\x6d\xfb\xfe\x50\xd5\xe9\x90\x68\x8b\xd1\x76\xba\xf1\x35\x74\xad\x79\xd2\x6a\x6a\x24\x63\x90\xce\x09\x9b\x63\x33\x75\xa0\xb1\xd2\x92\xb3\x6c\xda\xb6\x64\xbd\x1b\x54\x97\x9d\xb8\xb7\x4d\xed\xa0\x18\x29\x59\x12\x2b\x44\xb7\xfb\x0d\xcc\xe0\x3e\x49\x8e\xa8\x9d\x20\x55\x6f\x16\xaf\x79\xd9\x38\xf7\x88\x0a\xea\x8f\x3c\x46\xa0\x1b\xd0\x9a\xb0\x4c\x6d\xb7\xad\xb1\x07\x1d\xd6\xc7\x44\x55\xac\x2a\xb4\xe1\x8a\xec\x30\xfa\x55\x69\xee\x8f\xed\x06\x1a\xcb\x0c\xf4\x24\x98\x2f\x28\x66\x0f\x81\x5b\xdc\x19\xe7\x02\x18\x48\xc4\xf8\xee\xa7\x1e\xa7\x4d\xae\xb5\x50\x6f\x62\xb7\x83\x12\x1e\xa7\x3c\x51\x0d\x56\x03\x3c\x58\x2f\x3b\xf0\xf6\x17\xda\x1c\xa8\x18\xd8\x39\xfc\x9f\x09\x07\xc6\x61\x07\xb2\xd7\xc3\x15\xd1\xa1\xae\xc5\x06\xbc\xab\xba\xa7\xbb\x55\xfc\x11\x47\x5a\xfc\xb9\xc0\x0c\x68\x57\xef\xc3\xed\x65\x70\xe2\xb5\x01\xef\xb8\x2c\x10\x49\x27\x01\xe5\x19\x2f\x75\x68\xbe\x07\xed\xc8\x30\x6a\x9b\x02\xde\x13\xbf\x0e\x29\x40\x05\xe8\x9c\xa7\x93\xe0\xea\xeb\xcd\xac\xa7\xcc\x34\xbf\xfc\x7d\x9a\x7d\xbe\x7c\xcc\x39\xaa\x5c\x14\x44\x87\x8b\x52\x6b\xce\xaa\x16\x62\x24\x9a\x04\x7f\xf1\xe5\x3b\x6c\xda\xbd\x74\x21\x19\x0b\x8d\x88\xfb\x56\x36\x57\x73\x73\xb5\x6f\xe2\xfd\x02\x15\x1b\xbe\xd3\x01\x3d\xdc\x35\xae\x63\xfa\xf7\x41\x8c\x0e\x82\x2b\xd1\xc8\xd8\x1d\xed\xe6\xfe\x76\xbb\x6f\x16\xc4\x43\x1b\xe2\x9f\x96\xe7\x3d\x09\xdb\x59\x98\x9f\x5e\x5b\x5c\xca\xdd\xe4\x7c\x75\x0d\x19\x51\x5a\xda\xc9\xe1\x77\x1b\x0c\x9d\x01\xea\xe0\xfe\x79\x43\x32\x76\x2b\x86\xad\x9f\xae\x04\x9b\x30\x28\xc5\xf0\xb5\xe4\x50\x27\x91\x56\x66\x90\x41\x77\xd6\xc3\x6d\x1d\xbb\xd3\xe0\xe3\xba\x5c\xb0\x23\x74\xa1\x3c\x23\xec\x37\x09\x29\x91\x90\xe8\xb9\xe6\x13\xd3\x35\x7b\xa6\x9e\x27\x12\x86\xf4\xe9\x67\x0d\x45\x58\x5b\xbd\x8e\x8f\xdb\x11\x8b\x19\x67\xeb\x82\x97\xea\xb1\x78\xf5\xad\xd1\xc1\xd7\x5c\x74\xd3\x62\x2f\xeb\x68\x59\xb0\xdd\x7d\xe7\x3a\x93\x24\x6d\x2e\x7b\x12\xd6\xbe\xde\xd5\x00\x9d\xfb\x05\xae\x6f\xbc\x0a\x5b\x45\x28\xc8\x25\xc8\x2f\x5c\x93\x04\xf6\xdf\x0f\xfd\x97\x41\x27\xc1\x0a\x4b\x66\x7f\x2c\x02\xa5\xcc\x90\xba\xff\x9a\x58\x55\x8f\xda\x49\x9b\x4d\x8b\x07\xfa\x2f\xba\xd1\xf2\xa5\x57\x3c\x77\x25\xaa\xf9\x54\x4b\xb9\xd9\xc4\xcf\x46\xf5\xf1\x38\x76\x6f\xab\xe3\xd8\xfd\xbf\x1f\xfb\xc6\xf0\xbf\x00\x00\x00\xff\xff\xec\x3d\x85\xfc\x14\x24\x00\x00" +var _baseHeadTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x1a\x6d\x6f\xdb\xb8\xf9\x73\xfc\x2b\x78\x1a\x0e\xd8\x0e\x27\x29\x69\xbb\xad\x68\x6d\x1f\x72\xe9\x5b\x86\xb4\x0d\x12\x07\xd8\x3e\x19\xb4\xf4\x44\x62\x42\x91\x2c\x49\xd9\xf5\x3c\xff\xf7\x81\xa4\x24\x53\xb2\x9c\xc8\xbd\xad\x5f\x62\x93\xcf\xfb\xfb\x43\x77\xfc\xd3\xbb\xaf\x17\xb3\x7f\x5d\xbf\x47\xb9\x2e\xe8\x74\x34\xae\xff\x00\x4e\x51\x8a\x35\x0e\x55\xb9\x28\x25\x9d\x04\x9b\xcd\xb9\x10\xb7\xe5\xe2\xee\xe6\x6a\xbb\x0d\xa6\xa3\x93\x71\x01\x1a\xa3\x5c\x6b\x11\xc2\xb7\x92\x2c\x27\xc1\x05\x67\x1a\x98\x0e\x67\x6b\x01\x01\x4a\xdc\xb7\x49\xa0\xe1\xbb\x8e\x0d\xdd\xb7\x28\xc9\xb1\x54\xa0\x27\x77\xb3\x0f\xe1\xeb\x00\xc5\xbd\x64\xfe\x19\xde\x9d\x87\x17\xbc\x10\x58\x93\x05\xf5\x29\x5d\xbe\x9f\x40\x9a\x41\x60\xf0\x36\x1b\x72\x8f\x18\xd7\x28\xba\xc6\x19\x5c\xaa\xf3\xb4\x20\x6c\xbb\x1d\x9d\x54\x14\x19\x2e\x60\x12\xe0\x52\xe7\x5c\x7a\x24\x2c\x5a\x74\x03\x82\x2b\xa2\xb9\x5c\x6f\xb7\x9b\x4d\xf4\x75\xc5\x40\x46\x5f\x70\x01\xe6\x2b\x50\x05\xdb\xed\x47\x9e\xa9\xcd\x06\x58\xba\xdd\x3a\x41\x5b\x74\x53\x50\x89\x24\x42\x13\xce\x9e\x23\xbe\xfb\xda\x70\x68\x43\x45\xef\x76\xc4\xb6\x5b\x14\xa2\x36\x52\xeb\xb6\x92\xc8\x17\x12\x11\x85\x30\x12\x98\x30\x0a\x4a\x21\x05\xf4\x3e\xcc\xb9\xd2\x90\xa2\x8f\x44\x23\x05\x72\x49\x12\x38\xac\xca\x23\xac\x57\x5c\xa6\xca\xd3\x23\xe3\xbf\xa2\x8c\xe8\x5f\x7d\x62\xbf\xa2\x8c\x67\x2a\xb0\x96\xb7\xa4\x46\x2d\x2a\x12\xee\x41\x4a\xf0\x4d\xcd\x78\xb8\x3b\xdd\xb9\xda\xc1\xcf\x13\x25\xef\x5b\xa6\x8b\x2e\x6e\x6f\x3e\xcc\xf8\x23\xb0\x5a\xcc\x16\xbc\x8b\xc3\x16\x86\x1f\x90\x06\x61\x74\x32\xfe\x29\x0c\xd1\x57\x01\x0c\x7d\x94\x58\xe4\x68\x86\x33\x85\xc2\xb0\x0e\x97\x6e\xa8\x38\x33\xa2\xdd\xcd\x9d\x02\x79\x2d\xf9\x3d\xa1\xe0\x85\x92\x90\x5c\x80\xd4\xeb\x49\xc0\xb3\x37\x5d\x21\xaa\xe0\xf9\x34\xfb\x7c\xb5\x93\xa4\x17\x53\xb7\xd3\x42\x38\x3e\x4f\xc0\x13\xdd\x8a\xfe\xbd\x40\x35\x72\xbb\x93\x0f\x25\xa5\xee\x14\xfd\xb9\x01\xdb\x1d\xfe\xa5\xf6\xfe\x01\x4e\x87\xa2\xb9\xc5\x0f\xe5\x58\xa1\xdd\x59\x59\x7c\xe0\x94\xf2\x15\x48\xb5\xdd\xa2\xfb\xfa\x33\xc2\x2c\x35\x11\xe9\x0e\x08\xcb\x7a\x50\x08\xcb\xb6\x5b\x24\x80\x0b\x0a\xd1\x21\x99\x48\x81\xb3\x5e\xed\xcf\x97\x58\x63\x79\x45\xd8\x63\x6d\x6c\xcf\x8d\x7e\xee\x0d\xf4\x9f\x97\x6a\xc7\x3b\x91\x2f\x1e\x20\xd1\x47\xf9\xd0\xe3\xb7\xf3\xd0\xd1\x9e\x39\x54\x20\x8e\x30\xa7\x47\xe2\x69\xcb\x0e\x35\xe5\xb9\x10\xc7\x59\x6f\x05\x0b\x45\xf4\x51\x29\x70\x2e\xc4\x8f\x58\x6c\x78\xa1\x3c\x22\x20\x6b\x7d\x49\x91\xc5\xf7\x78\x49\x12\xce\x22\xc1\xb2\xc3\xea\x18\x65\xe7\xa6\x9e\x75\x24\xf3\xab\xea\xe8\x64\x4c\x09\x7b\x44\x12\xe8\x24\x50\x39\x97\x3a\x29\x35\x32\xb4\x03\x94\x4b\xb8\xef\x14\xbe\xb8\x8f\xf9\xe8\x64\xec\x8c\x80\x94\x4c\xba\x08\x0f\x2a\x7e\xf8\x56\x82\x5c\x87\x2f\xa3\x57\xd1\x59\x54\x10\x16\x3d\xa8\x60\x3a\x8e\x1d\xce\xf4\x39\x6c\x4a\x16\x35\x89\x08\x4b\x08\xd7\xbc\x0c\x55\x29\x61\x8f\x8a\xa7\x87\x5e\x53\x50\x39\x80\xee\x57\x02\x2b\x05\x5a\xc5\xf7\x9c\xe9\x10\xaf\x40\xf1\x02\xc2\x57\xd1\xdf\xa2\x97\x71\xa2\xda\xc7\x56\xdc\x44\x59\x93\x1d\xcf\x80\x27\xda\x18\x4a\x85\xaf\xa2\x97\xd1\x69\xf3\xd5\x23\x5a\xf5\x10\xc6\x35\x2c\x38\x7f\x8c\x1e\x4c\x29\x93\x48\x02\x4b\x41\x9a\x72\x46\xc4\x5a\xe7\x9c\x35\x10\xae\xe2\x15\x58\x3e\x42\xba\x0f\x6d\xce\x53\xbe\x62\x88\xf8\x18\x5e\x47\xba\x54\x97\xd7\x96\xe0\x97\xea\xd6\x25\xdb\x61\x07\x08\x5a\x66\x84\xa9\xb8\xa6\xf6\xa0\xc2\xd3\xe8\x55\xf4\xa2\x39\xe8\x73\xe8\x10\x82\x4e\x85\xf0\x34\x7a\x1d\x9d\x55\x5f\xfa\x48\xed\xe2\xb4\x9e\x63\xbe\x95\x44\xc2\x2d\x29\x04\x85\xcf\xef\xde\x3b\xf9\x87\x7b\xa6\x66\xaf\x2c\x81\x22\x85\xf0\x2c\x3a\x3b\x8d\xce\x76\x07\xbe\xcb\x87\x28\xf2\x0c\xa5\x1f\x30\x4d\xc2\x53\x28\x88\x94\x5c\x86\x7f\x8d\xce\xfe\x1e\x9d\xc6\x38\x4d\x39\x8b\x0b\x9e\x42\x4c\x39\x4e\xcd\x87\xff\x0d\x61\x4b\xd2\x54\x8e\x43\xe4\xcc\xc7\x93\x0b\x9e\xc2\x67\x8b\x17\x19\x84\xbb\x9b\x2b\x34\x41\xe8\x38\x26\x3f\x7f\x89\x7f\xfe\x62\xb8\xbc\x35\xc4\xfb\x1c\x6c\x33\xe1\xb6\xf1\x9f\x0b\xdb\x23\x5c\x6b\x72\x57\x41\x81\x99\x26\x49\xf8\xc2\x04\xe9\x0f\x66\xaf\x21\x64\xa6\xcf\x1a\xfd\xb7\xe5\x64\xb3\xf9\xbd\x24\x34\xbd\xe0\x45\x41\x74\xb5\x90\x30\xee\x5b\xcb\xd0\xb4\xc6\x8a\x52\xc9\x85\x49\xc2\x37\x39\x5f\x82\x44\x53\x14\x15\xc0\x4a\xb4\x41\x29\x51\x82\xe2\xf5\x1b\xb4\xa0\x3c\x79\x7c\x8b\xb6\x16\xbc\x24\x91\x82\x84\xb3\x14\xcb\xb5\x83\x6c\x28\x44\x44\x43\xe1\x11\x28\xb0\xcc\x08\x0b\x35\x17\x6f\xd0\xa9\xc3\x47\xe3\xb8\x66\x3d\x8e\x77\x12\x55\xd6\xfc\x07\x5e\xe2\x5b\x17\x16\xce\x9a\x4f\x56\xda\x1e\xe3\x1d\x55\xa9\xad\xcd\x1e\x7a\xcd\xb5\xa3\x31\x3a\x19\xdb\x36\x3b\x75\xf9\x3c\x33\x9f\xed\xe2\x52\x7d\xb2\x0b\x49\xb5\x75\x34\xdd\x77\x1c\x3b\x9c\x51\x7b\x4a\xd7\x39\x14\x10\x26\x9c\x76\x76\xae\x99\x39\xbf\x30\xc7\x9f\x41\xe3\x19\xce\xac\xc7\x4c\xac\x69\x28\x04\xc5\x1a\x50\x40\x98\x19\xa5\x62\xb3\x79\x06\x28\xda\x6e\x47\x63\xfb\x79\x3a\x1a\x2f\x78\xba\x36\xba\xa6\x64\x89\x12\x8a\x95\x9a\x04\xf7\x25\xa5\x28\x07\x92\xe5\xda\x95\x85\xc6\xd2\xb3\x9c\x28\x54\x0d\x16\x68\xc5\xe5\xa3\x42\x0b\xd0\x1a\x24\x5a\x11\x9d\x7b\x0e\x68\x7b\x67\x6f\x9f\xbc\x64\x4a\x63\x4a\x6d\x39\x6b\xb3\x6e\x26\xdb\x05\x96\x88\x36\x22\xb4\xa1\x4a\x62\xf5\xc7\x84\x81\xac\xae\xbb\xf7\x99\x24\x69\x7d\xd5\xba\x4b\x38\x2d\x0b\xd6\x5c\x75\xf1\x34\x17\xa8\x09\x50\x64\x22\x71\x07\x7a\x32\xc6\x35\xa4\x0d\xd5\x85\xc4\x2c\xed\x4f\x2a\x0f\xe9\x64\x4c\x8a\xcc\xe3\x50\x10\x46\x50\x35\xef\xf4\x44\x56\x77\xe4\xf0\xb8\xc7\xd8\x1a\xd3\xfd\xab\x3b\xdc\x15\xcf\x32\x48\x9d\x25\xfb\xa4\xf4\x77\xb3\x77\x58\xe5\x0b\x8e\x65\xba\xdd\x22\x9c\x68\xb2\xdc\x6d\xae\xfd\x4a\x6c\x36\x11\x39\x7b\xcd\xa2\x99\x44\x41\x5a\x23\x07\x26\x42\xf1\x74\x08\xc3\x4b\xa5\x4a\x50\xc3\xb8\x11\x0b\xdb\xe6\x59\x9d\x0d\x67\x78\x5d\x52\x3a\x90\x9f\x30\xa0\x6d\x76\xe6\x68\x2e\xe1\x5b\x09\x4a\xef\x71\xf5\xc6\xf5\x67\xc5\xf8\xc4\xed\x52\x77\xb4\x8d\x73\x5e\x40\x0f\xdf\xaa\x65\x3c\xcb\xf6\xfd\x77\x41\xb9\x1c\xc8\x19\x1c\x70\x2c\xcd\xa6\xd2\x16\xa3\xba\xda\x97\x24\xfe\xc5\x4f\x17\xc3\xbe\x15\xe8\xed\x54\x32\x21\x8c\x08\x13\xa5\x6e\x67\x83\x39\xa9\xc1\x14\x60\x99\xe4\x0b\xfe\x3d\x40\x66\x7d\x71\xef\x59\x01\x12\x14\x27\x90\x73\x9a\x82\xb4\xdb\x54\x23\x99\x83\x9f\x0b\xc9\xed\x6a\x58\x6d\x2a\x0d\xe9\x36\x59\x37\xd8\x4f\xc7\x31\xf1\x81\xe2\x94\x2c\xf7\xbe\xff\x12\xfb\x16\x7e\x22\xb7\x3c\x15\xa5\xa9\x4e\xdd\x12\xb1\x67\x85\xba\xbb\x21\xfb\xea\x67\xdb\xf2\x43\x59\x08\x64\x2b\x88\xe0\xc2\xd4\xba\x52\x04\xee\x3d\xd0\xdf\x20\x1b\x9d\x13\x09\xd8\xac\x36\xb0\x32\xfa\x3a\xc0\x25\x96\x04\x9b\x35\x6c\x12\x68\xc2\xd6\x88\xb0\x25\x48\x0d\x69\x4b\x92\x93\xb1\x12\x98\xd5\xb2\x58\xcb\xb6\xae\x3d\x83\x55\xc3\x3a\xaa\xfe\x86\x82\x96\xa6\x17\xfa\xf8\x4a\x86\x9c\xd1\x75\x3b\x52\x5a\xb2\x8d\x63\x03\xdf\xb1\xf7\x93\x6c\xb4\x24\x98\x65\x14\x42\x63\xa1\xae\xa7\xec\xe0\x64\x08\xb6\x8e\x3c\xeb\xee\x99\xbe\x9b\x1b\xfd\x81\x6f\x02\x3e\x76\x82\x77\xb0\x9f\x37\x48\x4c\xa6\xc8\xd7\x9f\xc1\x6a\x6e\xe8\x05\x7e\x90\xd4\xb5\xfa\x87\x04\x2b\x48\x26\x8f\x92\xcc\x60\x85\x09\xe5\x0c\x0e\xc8\x57\x53\x7c\x4e\x44\x17\xf5\x2e\xe6\xef\x14\xc8\xe8\x02\xb3\x0b\x6b\xa6\xaf\x32\xc3\x8c\xfc\x1b\xbb\x57\x90\xa3\xf5\xe2\x32\x3b\xda\xde\xdc\x63\x79\x40\x2f\x2e\xb3\x01\x3a\x55\xcf\xa9\x3e\x8c\x49\x78\x3b\x30\x02\x4b\xeb\x41\x0a\x39\x01\x11\x83\x95\x4d\x69\x37\x41\x1e\x42\x6a\x92\xda\x82\x7a\xa8\x06\xeb\x8f\xd7\x02\x8d\x17\x84\xa5\xf0\x7d\x12\x84\x67\x4f\x55\x86\x52\x81\x9c\x57\x4f\x9d\x73\xcc\xd2\x79\xe1\xaa\xf6\x1f\x2b\x12\x08\xdb\xa7\xaa\xbd\x5a\xd1\x9a\x62\x54\x81\x29\x45\x92\x97\x2c\x85\xb4\x33\xce\xf8\x31\x74\x03\xb4\xf5\xf2\xd5\x21\xfa\x6c\x81\x39\xa4\x62\x4f\x69\x18\x5c\x67\xda\xf6\xfd\xa1\xaa\xd3\x21\xd1\x16\xa3\xed\x74\xe3\x6b\xe8\x5a\xf3\xa4\xd5\xd4\x48\xc6\x20\x9d\x13\x36\xc7\x66\xea\x40\x63\xa5\x25\x67\xd9\xb4\x6d\xc9\x7a\x37\xa8\x2e\x3b\x71\x6f\x9b\xda\x41\x31\x52\xb2\x24\x56\x88\x6e\xf7\x1b\x98\xc1\x7d\x92\x1c\x51\x3b\x41\xaa\xde\x2c\x5e\xf3\xb2\x71\xee\x11\x15\xd4\x1f\x79\x8c\x40\xb7\xa0\x35\x61\x99\xda\x6e\x5b\x63\x0f\x3a\xac\x8f\x89\xaa\x58\x55\x68\xc3\x15\xd9\x61\xf4\xab\xd2\xdc\x1f\xdb\x0d\x34\x96\x19\xe8\x49\x30\x5f\x50\xcc\x1e\x03\xb7\xb8\x33\xce\x05\x30\x90\x88\xf1\xdd\x4f\x3d\x4e\x9b\x5c\x6b\xa1\xde\xc4\x6e\x07\x25\x3c\x4e\x79\xa2\x1a\xac\x06\x78\xb0\x5e\x76\xe0\xed\x2f\xb4\x39\x50\x31\xb0\x73\xf8\x3f\x13\x0e\x8c\xc3\x0e\x64\xaf\x87\x2b\xa2\x43\x5d\x8b\x0d\x78\x57\x75\x4f\x77\xab\xf8\x13\x8e\xb4\xf8\x73\x81\x19\xd0\xae\xde\x87\xdb\xcb\xe0\xc4\x6b\x03\xde\x73\x59\x20\x92\x4e\x02\xca\x33\x5e\xea\xd0\x7c\x0f\xda\x91\x61\xd4\x36\x05\xbc\x27\x7e\x1d\x52\x80\x0a\xd0\x39\x4f\x27\xc1\xf5\xd7\xdb\x59\x4f\x99\x69\x7e\xf9\xfb\x34\xfb\x7c\xf5\x94\x73\x54\xb9\x28\x88\x0e\x17\xa5\xd6\x9c\x55\x2d\xc4\x48\x34\x09\xfe\xe4\xcb\x77\xd8\xb4\x7b\xe9\x42\x32\x16\x1a\x11\xf7\xad\x6c\xae\xe6\xe6\x6a\xdf\xc4\xfb\x05\x2a\x36\x7c\xa7\x03\x7a\xb8\x6b\x5c\xc7\xf4\xef\x83\x18\x1d\x04\x57\xa2\x91\xb1\x3b\xda\xcd\xfd\xed\x76\xdf\x2c\x88\x87\x36\xc4\xff\x5b\x9e\xf7\x24\x6c\x67\x61\x7e\x7e\x6d\x71\x29\x77\x9b\xf3\xd5\x0d\x64\x44\x69\x69\x27\x87\xdf\x6d\x30\x74\x06\xa8\x83\xfb\xe7\x2d\xc9\xd8\x9d\x18\xb6\x7e\xba\x12\x6c\xc2\xa0\x14\xc3\xd7\x92\x43\x9d\x44\x5a\x99\x41\x06\xdd\x59\x0f\xb7\x75\xec\x4e\x83\x4f\xeb\x72\xc9\x8e\xd0\x85\xf2\x8c\xb0\xdf\x24\xa4\x44\x42\xa2\xe7\x9a\x4f\x4c\xd7\xec\x99\x7a\x9e\x49\x18\xd2\xa7\x9f\x35\x14\x61\x6d\xf5\x3a\x3e\x6e\x47\x2c\x66\x9c\xad\x0b\x5e\xaa\xa7\xe2\xd5\xb7\x46\x07\x5f\x73\xd1\x4d\x8b\xbd\xac\xa3\x65\xc1\x76\xf7\x9d\xeb\x4c\x92\xb4\xb9\xec\x49\x58\xfb\x7a\x57\x03\x74\xee\x17\xb8\xbe\xf1\x2a\x6c\x15\xa1\x20\x97\x20\xbf\x70\x4d\x12\xd8\x7f\x3f\xf4\x5f\x06\x9d\x04\x2b\x2c\x99\xfd\xb1\x08\x94\x32\x43\xea\xfe\x6b\x62\x55\x3d\x6a\x27\x6d\x36\x2d\x1e\xe8\x3f\xe8\x56\xcb\x17\x5e\xf1\xdc\x95\xa8\xe6\x53\x2d\xe5\x66\x13\xff\x32\xaa\x8f\xc7\xb1\x7b\x5b\x1d\xc7\xee\xff\xfd\xd8\x37\x86\xff\x06\x00\x00\xff\xff\x8e\x76\x3d\x6e\x14\x24\x00\x00" func baseHeadTmplBytes() ([]byte, error) { return bindataRead( @@ -592,8 +592,8 @@ func baseHeadTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "base/head.tmpl", size: 9236, mode: os.FileMode(0644), modTime: time.Unix(1584214395, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xf4, 0xa3, 0x51, 0x96, 0x81, 0xbf, 0x93, 0xb1, 0xc7, 0xa8, 0x96, 0xc2, 0x4, 0x30, 0xce, 0xb5, 0xa0, 0x74, 0x44, 0xe2, 0x95, 0xf6, 0x1f, 0x28, 0xcd, 0x8f, 0xc4, 0x6c, 0xd9, 0x9d, 0x76}} + info := bindataFileInfo{name: "base/head.tmpl", size: 9236, mode: os.FileMode(0644), modTime: time.Unix(1584710387, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0x2f, 0xd2, 0x99, 0x6e, 0xcb, 0x4c, 0xa2, 0xe3, 0xc5, 0x3c, 0x3c, 0x67, 0xd9, 0xa1, 0x6d, 0xfd, 0x39, 0x63, 0x80, 0x6b, 0xc4, 0x9c, 0x66, 0x7e, 0x41, 0x45, 0xbf, 0x9a, 0x28, 0xdb, 0xcd}} return a, nil } @@ -2417,7 +2417,7 @@ func repoUser_cardsTmpl() (*asset, error) { return a, nil } -var _repoView_fileTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x6d\x6f\xe4\xb6\x11\xfe\xbc\xfe\x15\x2c\xeb\xe2\x76\x01\xaf\xe4\x0b\x0e\x45\xd1\x68\xb7\x68\xee\x2e\x88\x0b\xe7\xee\xe0\x73\xf2\x29\xc0\x86\x12\x67\x57\xb4\x25\x52\x20\xa9\x5d\xbb\xaa\xfe\x7b\x31\xa4\xa8\x97\xf5\x4b\x7c\x45\xae\xf1\x97\xa5\xc8\x99\xe1\x33\xf3\x90\x33\x43\x27\x5c\xec\x89\xe0\x2b\xba\x15\x05\x2c\x33\x25\x2d\x48\x4b\x49\x56\x30\x63\x56\xb4\x69\xae\x59\xfa\x59\xfc\x1b\xde\xe2\x37\x89\xde\x73\x61\x95\xce\x94\xdc\x8a\x1d\x89\xbe\x17\x05\x7c\x60\x25\xb4\x2d\x5d\x9f\xcc\x92\xfc\x4d\x50\xab\x05\xb1\xaa\x22\xcc\x5a\x96\xe5\xc0\x49\x0e\x8c\x83\xa6\x6e\x9f\xa6\x11\x5b\x12\x5d\x01\xe3\x25\xbc\xbf\x13\xc6\xb6\xad\x86\x4a\x2d\xb5\x9b\x69\x1a\x28\x0c\x8c\xa6\x96\x88\xab\x69\x40\x72\xbf\xcb\xec\x11\xfd\x93\xd9\x6c\x96\x88\xb0\xb9\xca\xac\xc8\x94\x24\xdd\xef\x32\x55\xea\x96\xae\x93\x58\xa0\xf6\x44\xfd\x42\x5e\xf6\xfa\xb3\xc4\x58\xad\xe4\x6e\xdd\x34\x23\xbf\x92\xb8\x9b\xf5\xaa\x1e\xdb\x0b\xc4\x49\x62\x2a\x26\x03\x22\x0b\x77\x96\xec\x34\xdc\x13\xa9\x74\xc9\x0a\xba\x6e\x1a\x54\xc2\xc0\xfa\x28\xe2\xc8\xa9\x57\x4c\x86\xbd\xd0\xe3\x93\xe9\xae\x4f\x3b\xe9\xd8\x73\xfb\xd4\x82\x14\xb0\xb5\x83\xc7\x5f\x17\xe9\x18\xa8\xd8\x12\xa9\xec\x63\xd1\x75\xa7\x6c\x38\x1c\x5a\xec\x72\x4b\x1c\x66\x96\x59\xa1\xa4\x71\xd4\x3e\x90\x4b\x6b\x6b\x87\xc5\xd1\x0e\x17\xe6\x67\x01\x87\xb7\xaa\x2c\x45\xe0\x6f\x36\x4b\xd8\x03\x55\x4a\x72\x0d\x5b\x3c\x74\xd1\x15\x54\xea\x52\xc8\xdb\xb6\x8d\x8d\xce\xe2\xa6\x89\xbc\xfa\xc5\xbb\xb6\x8d\x9b\xe6\xbd\xc9\x58\x05\x9f\x54\x2d\x39\x89\xae\x35\xc0\x27\x66\x73\x3c\x72\x4d\x13\x89\xd7\x7f\x93\xd1\xb5\x26\x14\x4f\x65\x84\xb0\x37\x15\x60\x78\x84\xbc\xa5\x18\x0c\xd6\x03\x0c\xc1\xf8\x12\x38\x99\xc3\x61\x8e\x41\x7c\xa7\x99\xcc\x72\x4f\xd7\x97\x03\xcc\x85\xb1\x4a\xdf\x4f\xe0\x3d\x8b\x68\x6c\xff\x34\xba\x62\x07\x64\xdb\x23\x7c\x6a\x0f\xcd\x0e\x63\xfb\x49\xcc\xc5\xde\x0f\xc3\x2d\xab\x94\xc1\x84\x71\x1f\xbd\x65\xf2\xbd\x64\x69\x01\x3e\x83\x84\x18\x79\x39\x5c\xe4\xc2\xe2\x86\x63\x32\x1f\x8b\xd5\x06\xb8\xb0\xff\x6b\xa4\x9e\xbe\x3e\x15\xc8\x4c\x14\x24\xb5\x72\x19\x96\x2a\x55\x09\xb9\x23\x75\x45\x09\xe1\xcc\xb2\x90\x1b\x1d\xa2\x00\xf7\x5a\xa9\xc2\x8a\xaa\x6d\xa9\x97\x71\xfe\x0a\x25\x57\x34\x55\xd6\xaa\x92\x64\x20\x2d\x66\x3e\xb7\xba\x67\x5a\x30\xbf\x6c\x85\xbc\x27\x42\xee\x41\x5b\xe0\xfe\xae\x4e\x8e\xd1\x90\x68\x9e\xbb\xf5\xcf\xc1\x26\x5c\x18\x0c\x38\xa7\xff\x1f\xf8\x8f\xdc\x80\x9e\xdd\x77\x50\x80\x85\x17\xf1\xcb\x9d\xe8\xef\xcf\xb0\xd5\xcc\xe4\x19\x93\x93\x60\x8d\xc6\x4b\xce\xe4\x0e\xf4\xf3\xb4\x0f\x7e\xfc\xc1\xc4\x3f\xea\xcd\x8b\xa8\xff\x3a\x2e\x3c\x24\x7f\x34\xee\xf3\x42\x3f\x97\xc4\xf9\x1b\xec\x18\xa6\xd9\xbe\x96\xc6\xb2\xec\x16\x91\x0f\xad\x83\x75\x9f\x06\x76\x25\xf6\x25\x68\xa5\xef\x58\xfc\xf1\xba\x30\x17\x9f\xee\x6d\xae\xe4\x07\x65\x01\x6b\x7d\xdb\x8a\xca\x4d\x2c\x65\x37\x13\xda\x87\xb0\x97\x2b\x3c\x7b\x01\x07\x12\x4c\xfc\xc8\xf4\x2d\x57\x07\xd9\xb6\x65\x37\xf2\x54\x90\x97\xef\x10\xa4\xa7\xc5\xaf\x2a\x98\x90\xae\x30\x0f\x22\x0c\x4f\xed\x85\xb9\x86\xbb\x2e\xe5\x65\x8a\x7b\x3c\x1d\x50\x92\x33\xb3\x84\x52\xdd\x08\x3a\xea\x59\xc6\x28\x47\x49\x16\x4d\xbc\xf5\x04\xb7\x6d\x57\xe3\xbb\x6f\xf2\x1f\xf2\xd9\xea\x6f\x7e\xb8\xfe\xf1\x12\x97\x7a\x42\x9e\xf7\xad\x6b\x6f\x32\x2d\x2a\xdb\x11\xbb\x67\x9a\x68\x90\x1c\x34\x70\xb2\x22\xb2\x2e\x8a\x6f\xfd\xca\x69\xb4\x03\xfb\xaf\xcf\x1f\x3f\xcc\xdd\x45\x9e\x54\x8d\x33\x27\x78\x46\xb6\xb5\x74\x45\x7e\x1e\xa2\xb5\xb9\x31\x4a\x2e\x48\xd3\x1d\x73\xb4\x1e\x96\xd0\x7a\x1a\x55\x4c\x1b\x38\x12\xef\x36\x9c\x8d\x71\x74\x02\x91\x9f\x9b\xf7\x32\xa7\x73\xfa\xe7\x63\x8a\xe8\x22\x62\x55\x05\x92\xcf\x83\x85\x67\xc5\x09\x92\x42\x17\x11\xb0\x2c\x9f\xf7\x1e\x88\x33\x92\x16\x2a\xbb\x1d\xc0\xcf\x4e\xe7\x7e\x26\x62\x9c\xbb\x2e\x79\x4e\xab\x7b\x3a\xfd\x44\xcb\xb4\xdf\x6e\x96\x17\x37\x26\xca\xc5\x2e\x2f\xb0\x0f\xfa\x0e\xd5\x3b\x23\x41\xa4\x5d\x7c\x7b\xd2\x0d\xe3\x98\x7c\xdc\x83\x3e\x68\x61\x81\x88\x92\xed\x80\x94\x60\x73\xc5\x89\x55\xc4\x7b\x44\x2a\xad\x2a\xcc\x5d\x1a\xb6\xe2\x0e\xe7\x6d\x0e\xc4\xa8\x5a\x67\x40\x7e\xba\xba\x1c\xc5\xb9\xf3\x5d\x63\xf4\xe0\x40\xf0\xb4\x03\x8f\xae\xba\xd9\x21\x82\x28\xeb\xd2\xc6\x9d\x25\x2b\xf2\xea\x98\xdb\x57\x41\x6e\x90\xe9\x46\x91\xa9\x53\x63\xb5\x90\xbb\xf9\xf9\x59\x3f\x59\x30\x63\x2f\x24\x87\xbb\x8f\xdb\x39\x8d\xe9\xe2\x98\x4d\x1d\x79\xcf\x56\xfd\x61\x21\x73\x2c\x0f\x67\xc4\x0a\x5b\xc0\x19\x41\x2b\xa3\xa0\x6b\xb0\xb5\x96\xe4\xd7\x44\x94\x3b\x62\x74\xb6\xa2\xa7\x4d\xb7\x57\x1b\x9f\x36\xa8\xda\xd2\x5f\x43\x30\x9f\xa3\x39\x92\xe9\x32\xdc\xf9\x65\x06\x45\xf1\x18\xe7\x41\x60\x42\x7b\x3f\x19\xe5\xb6\x2c\xe6\x3e\x94\xf3\x07\xf3\x8b\x33\xd2\x04\x2f\xff\xde\xc7\xbf\x5d\x4c\xb8\x9e\x0c\x92\x78\x74\xf9\x9e\xcc\x2c\xbf\x57\x0a\xe8\xfa\xe9\x21\x1b\x3d\x68\xc4\x31\x33\x2d\x35\x3b\xe0\xd3\xa2\xab\x09\xe3\x86\x1c\x73\x08\x92\x37\x2d\xef\x3d\x31\xbf\xd1\x59\x8e\x0b\x5f\x97\x91\x7e\x16\x1c\xd4\xd4\xda\x1e\xa7\xdc\x69\xd2\xaa\x30\x5f\x60\x78\xf2\xfc\x99\xb6\xb0\xce\xe6\x46\x2a\xbb\x31\x75\x55\x29\x2c\x66\x1b\x21\x37\xa9\x56\x07\x03\x9a\x1e\x3d\xfe\x1c\x2f\x4e\xe5\x31\xc8\x9f\xde\x7d\x7f\xe4\xfe\x56\xb3\x12\xc8\x41\x70\x9b\xaf\xe8\xeb\xf3\xf3\xbf\x50\x92\x03\x5e\xf7\x15\xfd\xeb\xf9\x79\x75\x47\x83\x13\xff\xac\xaa\xcf\x75\xfa\xd3\xd5\x65\xdb\xc6\x55\x51\xef\x84\x34\x71\xc5\xb7\x37\x66\xf9\x3a\x7a\x13\x7d\x73\x1e\x1f\x20\x8d\x91\x02\xd0\xee\x40\xfd\x03\xab\xd7\xea\x37\x9c\x4f\x62\x0f\xe0\x89\xbe\x82\xbd\xa8\xeb\x27\x1a\x8a\x15\x95\x6a\xab\x8a\x42\x1d\xfa\xea\x99\x5a\xdf\x76\xec\x34\xbb\x77\x03\xcd\xb8\xa8\xcd\x53\x8f\x04\x84\x7e\xfc\x52\x98\x74\x0a\xc3\xb3\x61\x14\xd2\xe1\xa9\xe9\x65\x5c\x1b\x10\x9e\x31\x36\x55\xfc\xbe\x67\xc5\xea\x30\x0c\xc7\xb1\xeb\x6e\x2e\x99\xde\x0d\x4e\xcf\x12\xcb\xd7\x4f\x1e\x06\x07\xd5\x2a\xb5\x29\x50\x69\x4c\x7e\x12\x5b\x3e\x6c\x30\x89\x23\x9a\x0c\x51\x29\x84\x04\xb3\x94\x75\xe9\xe2\x70\x29\x24\x7c\xa8\x4b\x83\x76\x06\xf5\x87\xf2\xae\xc8\xac\x93\x4a\xc3\x3a\xc1\xf1\xf0\x7f\x97\xe8\x87\x50\x1f\x5c\x15\x71\xa4\xaa\x62\xac\x2d\xeb\xd2\x07\x7d\x72\xfd\x93\x58\x15\xeb\x24\x46\x63\xeb\x24\x76\x86\xa7\x0e\x0c\xed\xf9\x2c\x89\xfb\xd8\x25\xf1\x28\xa8\x49\x3c\x84\x7b\xd0\x08\x3c\x75\xbf\xdd\xcf\x49\xdf\x29\xf4\x99\xdb\xd4\x69\x29\x6c\xd7\x68\x2a\x5d\xce\x31\x6d\x12\x42\x08\x16\x95\x12\x8c\xf1\x99\xbe\xd2\xaa\xac\xac\xeb\x1b\xa6\x5c\xf8\x27\xc0\xc6\xfd\x97\x49\x97\x9b\x4e\x83\xb6\xed\x2f\xf2\x17\xf9\xb4\x34\x3e\xa2\x37\xa6\x2e\x4b\xe6\x9e\xbd\xf4\x8c\x50\x8f\xc1\x95\x2f\x7c\x25\xf8\xf7\xc3\x2b\xac\xc4\x08\x47\x6c\xc9\x3c\xc0\xf9\x93\xef\x6a\x02\x52\xfc\xc3\x72\xe1\x8d\x2f\x03\x84\x45\xb4\x67\x45\xd0\xe9\xac\x1c\x89\xba\xde\x72\xab\x74\x49\x17\x91\x0f\xc4\x7c\xe1\xe4\xda\x93\xf6\x64\xc8\xec\xff\x0d\x00\x00\xff\xff\x9c\x73\xf7\xb0\x77\x13\x00\x00" +var _repoView_fileTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xdd\x6f\xe3\x36\x12\x7f\x76\xfe\x0a\x1e\x2f\x87\xb5\x01\x5b\xca\x16\x8b\xc3\x61\x57\xf6\xe1\xba\xbb\x45\x73\x48\x37\x41\x92\xf6\xa9\x80\x4b\x89\x63\x8b\x89\x44\x12\x24\x65\xc7\xd5\xe9\x7f\x3f\x90\x14\xf5\x91\xc4\x69\xf6\xd0\x5e\xf3\x62\x8a\x9c\x8f\x1f\x67\x86\xf3\x91\x84\xb2\x1d\x62\x74\x89\x37\xac\x80\x45\x26\xb8\x01\x6e\x30\xca\x0a\xa2\xf5\x12\xd7\xf5\x2d\x49\x6f\xd8\xaf\xf0\xd1\x7e\xa3\xe8\x33\x65\x46\xa8\x4c\xf0\x0d\xdb\xa2\xe8\x3b\x56\xc0\x17\x52\x42\xd3\xe0\xd5\xc9\x24\xc9\xdf\x05\xb6\x8a\x21\x23\x24\x22\xc6\x90\x2c\x07\x8a\x72\x20\x14\x14\x76\x7a\xea\x9a\x6d\x50\x74\x0d\x84\x96\xf0\xf9\x81\x69\xd3\x34\x0a\xa4\x58\x28\xb7\x53\xd7\x50\x68\x18\x6c\x2d\x2c\xae\xba\x06\x4e\xbd\x96\xc9\x33\xfc\x27\x93\xc9\x24\x61\x41\xb9\xc8\x0c\xcb\x04\x47\xed\xef\x22\x15\xe2\x1e\xaf\x92\x98\x59\xee\x11\xfb\x39\xbf\xe8\xf8\x27\x89\x36\x4a\xf0\xed\xaa\xae\x07\xf7\x4a\xe2\x76\xd7\xb3\x7a\x6c\xaf\x20\x47\x89\x96\x84\x07\x44\x06\x1e\x0c\xda\x2a\x38\x20\x2e\x54\x49\x0a\xbc\xaa\x6b\xcb\x64\x0d\xeb\xad\x68\x57\x8e\x5d\x12\x1e\x74\xd9\x1b\x9f\x8c\xb5\x1e\xbf\xa4\xf3\x9e\xd3\x53\x31\x54\xc0\xc6\xf4\x37\xfe\x63\x91\x0e\x81\xb2\x0d\xe2\xc2\x3c\x67\x5d\x17\x65\x7d\x70\x28\xb6\xcd\x0d\x72\x98\x49\x66\x98\xe0\xda\xb9\xf6\x09\x5d\x5a\x19\xd3\x1f\x0e\x34\x9c\xeb\x9f\x18\xec\x3f\x8a\xb2\x64\xc1\x7f\x93\x49\x42\x9e\xb0\x62\x94\x2b\xd8\xd8\xa0\x8b\xae\x41\x8a\x0b\xc6\xef\x9b\x26\xd6\x2a\x8b\xeb\x3a\xf2\xec\xe7\x9f\x9a\x26\xae\xeb\xcf\x3a\x23\x12\xae\x44\xc5\x29\x8a\x6e\x15\xc0\x15\x31\xb9\x0d\xb9\xba\x8e\xd8\xdb\x7f\xf0\xe8\x56\x21\x6c\xa3\x32\xb2\xb0\xd7\x12\xac\x79\x18\xbf\xc7\xd6\x18\xa4\x03\x18\x8c\xf1\x35\x70\x32\x87\x43\x3f\x06\xf1\xad\x22\x3c\xcb\xbd\xbb\xbe\x1e\x60\xce\xb4\x11\xea\x30\x82\xf7\x22\xa2\xa1\xfc\xd3\xe8\x9a\xec\xad\xb7\x3d\xc2\x63\x3a\x14\xd9\x0f\xe5\x27\x31\x65\x3b\xbf\x0c\xaf\x4c\x0a\x6d\x13\xc6\x21\xfa\x48\xf8\x67\x4e\xd2\x02\x7c\x06\x09\x36\xf2\x74\xf6\x90\x32\x63\x15\x0e\x9d\xf9\x9c\xad\xd6\x40\x99\xf9\x5f\x2d\x75\xfc\xf9\x48\xe0\x19\x2b\x50\x6a\xf8\x22\x1c\x49\x21\x19\xdf\xa2\x4a\x62\x84\x28\x31\x24\xe4\x46\x87\x28\xc0\xbd\x15\xa2\x30\x4c\x36\x0d\xf6\x34\xee\xbe\x4c\xf0\x25\x4e\x85\x31\xa2\x44\x19\x70\x63\x33\x9f\x3b\xdd\x11\xc5\x88\x3f\x36\x8c\x1f\x10\xe3\x3b\x50\x06\xa8\x7f\xab\xa3\x30\xea\x13\xcd\x4b\xaf\xfe\x25\xd8\x88\x32\x6d\x0d\x4e\xf1\xff\x07\xfe\x33\x2f\xa0\xf3\xee\x27\x28\xc0\xc0\xab\xfc\x4b\x1d\xe9\xef\xef\x61\xa3\x88\xce\x33\xc2\x47\xc6\x1a\xac\x17\x94\xf0\x2d\xa8\x97\xdd\xde\xdf\xe3\x4f\x76\xfc\xb3\xb7\x79\x95\xeb\xff\x98\x2b\x3c\x75\xfe\x60\xdd\xe5\x85\x6e\x2f\x89\xf3\x77\xb6\x63\x18\x67\xfb\x8a\x6b\x43\xb2\x7b\x8b\xbc\x6f\x1d\x8c\xfb\xd4\xb0\x2d\x6d\x5f\x62\xa5\x74\x1d\x8b\x0f\xaf\x73\x7d\x7e\x75\x30\xb9\xe0\x5f\x84\x01\x5b\xeb\x9b\x86\x49\xb7\xb1\xe0\xed\x4e\x68\x1f\x82\x2e\x57\x78\x76\x0c\xf6\x28\x88\xf8\x81\xa8\x7b\x2a\xf6\xbc\x69\xca\x76\xe5\x5d\x81\x5e\xaf\x21\x50\x8f\x8b\x9f\x2c\x08\xe3\xae\x30\xf7\x24\xc4\x46\xed\xb9\xbe\x85\x87\x36\xe5\x65\x82\x7a\x3c\x2d\x50\x94\x13\xbd\x80\x52\xdc\x31\x3c\xe8\x59\x86\x28\x07\x49\xd6\x8a\xf8\xe8\x1d\xdc\x34\x6d\x8d\x6f\xbf\xd1\x7f\xd0\x8d\x51\xdf\x7c\x7f\xfb\xc3\x85\x3d\xea\x1c\xf2\xf2\xdd\xda\xf6\x26\x53\x4c\x9a\xd6\xb1\xa7\xd1\x16\xcc\xbf\x6f\x2e\xbf\x4c\xdd\x73\x1d\xd5\x86\x39\xe2\x55\x51\xcc\xd1\xa6\xe2\xae\x94\x4f\x83\x4d\xd6\x77\x5a\xf0\x19\xaa\xdb\x60\xde\x11\x85\xc2\x11\x5a\x22\x9e\x46\x92\x28\x0d\x8f\xc8\x3f\x0c\xa8\x15\x70\x0a\x0a\xa8\xa5\x6e\x89\x22\xbf\x37\xed\xe8\x4e\x23\x72\x47\x1e\xa6\x41\xc9\xc4\x1c\x24\xbc\x47\xf8\xea\xf2\xe6\x16\xcf\xc3\x66\xa5\x8a\xf7\xe8\x4d\x5d\xff\x4b\xca\x9b\x2a\xfd\xf1\xfa\xa2\x69\xe2\x45\x4c\x24\x8b\x35\xe1\xcc\xb0\x5f\x61\xcd\xe4\x81\xa7\x6f\x3a\x0e\x1b\xf2\xef\x3b\x00\x91\xa8\x0c\x28\x6b\xc6\x8e\x40\x2a\x91\x81\xd6\x9f\x1c\xdd\x86\x14\x1a\xba\xa3\xf6\xb5\xdd\x3a\x24\xa3\xa3\x66\x16\x51\xc1\x61\xda\x99\xca\xaa\xe9\x2d\x34\x39\x9d\xe2\xbf\x3e\x8e\x2c\x3c\x8b\x88\x94\xc0\xa9\x27\xfe\xf0\x12\x2d\xb2\x81\x84\x67\x11\x90\x2c\xef\x95\xb0\x39\x4a\x0b\x91\xdd\x0f\x14\x4d\x4e\xa7\x7e\x2b\x22\x94\xba\xd6\x7e\x8a\xe5\x01\x8f\x3f\xad\x68\xdc\x2b\x9c\xe4\xc5\x9d\x8e\x72\xb6\xcd\x0b\xdb\xbd\x7d\x6b\xf9\x5b\x29\x1d\x4d\x33\xfb\x70\x12\xd6\x71\x8c\x2e\x77\xa0\xf6\x8a\x19\x40\xac\x24\x5b\x40\x25\x98\x5c\x50\x64\x04\xf2\x57\x42\x52\x09\x69\x73\xae\x82\x0d\x7b\xb0\xfb\x26\x07\xa4\x45\xa5\x32\x40\x3f\x5e\x5f\x04\x51\x83\x60\x50\x36\x18\x60\x8f\xec\x33\x05\x1a\x5d\xb7\xbb\x7d\x40\x38\x62\xe7\x82\x07\x83\x96\xd6\xeb\xe3\x78\x7d\xf3\x61\xe4\x27\x47\xd4\xae\x22\x5d\xa5\xda\x28\xc6\xb7\xd3\xb3\x79\xb7\x59\x10\x6d\xce\x39\x85\x87\xcb\xcd\x14\xc7\x78\xd6\x6b\x0a\x90\x22\x7f\xbb\x65\xf7\x04\xd0\xd4\x96\xb6\x39\x32\xcc\x14\x30\x47\x56\xcc\xd0\xf8\x0a\x4c\xa5\x38\xfa\x25\x61\xe5\x16\x69\x95\x2d\xf1\x69\xdd\x6a\x6b\xe2\xd3\xda\xf2\x36\xf8\x97\xce\xa6\x2f\xbb\x3c\xe2\xe9\x22\xe4\xac\x45\x06\x45\xf1\x9c\xff\x03\xc1\x38\x04\xba\xdd\x28\x37\x65\x31\xf5\x26\x9d\x3e\xd9\x9f\xcd\x51\x1d\xae\xda\xbd\x09\xd5\xcc\xc6\x6e\x7f\xb4\x0a\x8b\x24\x1e\x24\x92\xa3\x59\xf2\xf7\x4a\x67\xed\x6c\xd0\x67\xd6\x27\x43\x85\xcd\xb2\x0b\x45\xf6\x76\x4c\x6a\xeb\xdb\x70\xb8\xb0\xf9\xd0\x3a\x73\xdc\xaa\x74\x7e\xfa\x8d\x2e\x79\x58\xc4\xdb\xec\xfa\x13\xa3\x20\xc6\xd2\x76\x76\xcb\x85\x97\x12\x85\xfe\x0a\xc1\xa3\x51\x6e\xdc\x8e\x3b\x99\x6b\x2e\xcc\x5a\x57\x52\x0a\x5b\x98\xd7\x8c\xaf\x53\x25\xf6\x1a\x14\x7e\x34\xc8\x3a\xbf\x38\x96\xe7\x20\x5f\x7d\xfa\xee\xd1\xf5\x37\x8a\x94\x80\xf6\x8c\x9a\x7c\x89\xdf\x9e\x9d\xfd\x0d\xa3\x1c\x6c\x12\x58\xe2\xbf\x9f\x9d\xc9\x07\x1c\x2e\x31\x4c\xb0\xb2\xa8\xb6\x8c\xeb\x58\xd2\xcd\x9d\x5e\xbc\x8d\xde\x45\xdf\x9c\xc5\x7b\x48\x63\xeb\x02\x50\x2e\xb6\xfe\x69\x2b\xf1\xf2\x37\x2e\x9f\xc4\x1e\xc0\x91\x1e\x89\xbc\x6a\x82\x41\x0a\x8a\x25\xe6\x62\x23\x8a\x42\xec\xbb\x4e\x20\x35\xbe\x85\xda\x2a\x72\x70\x0b\x45\x28\xab\xf4\xb1\x81\xc7\x42\x7f\x3c\xf5\x8c\xba\x9e\x7e\x04\x1a\x98\xb4\x1f\x9b\x3d\x8d\x6b\x69\xc2\x48\x66\x52\x41\x0f\x9d\x57\x8c\x0a\xcb\x10\x8e\x6d\xa7\x76\x41\xd4\xb6\xbf\xf4\x24\x31\x74\x75\x34\x18\x1c\x54\x23\xc4\xba\xb0\x4c\x43\xe7\x27\xb1\xa1\xbd\x82\x91\x1d\xad\xc8\x60\x95\x82\x71\xd0\x0b\x5e\x95\xce\x0e\x17\x8c\xc3\x97\xaa\xd4\x56\x4e\xcf\xfe\x94\xde\x15\x9f\x55\x22\x15\xac\x12\xbb\xee\xff\x87\x14\x7d\x1f\xaa\x86\x2b\x2e\xce\xa9\xa2\x18\x72\xf3\xaa\xf4\x46\x1f\x3d\xff\x24\x16\xc5\x2a\x89\xad\xb0\x55\x12\x3b\xc1\xe3\x0b\xf4\xa3\xc6\x24\x89\x3b\xdb\x25\xf1\xc0\xa8\x49\xdc\x9b\xbb\xe7\x08\x7e\x6a\x7f\xdb\x9f\x93\xae\xeb\xe9\x32\xb9\xae\xd2\x92\x99\xb6\x69\x16\xaa\x9c\xda\x14\x8a\x10\x42\xb6\xcc\x94\xa0\xb5\xcf\xfc\x52\x89\x52\x1a\xd7\x1d\x8d\x7d\xe1\xc7\x99\xb5\xfb\x8f\x99\x2a\xd7\x2d\x07\x6e\x9a\x9f\xf9\xcf\xfc\x38\x75\x59\x32\xfb\x94\xcb\x92\xb8\x11\x1e\xcf\x11\xf6\x18\x5c\x41\xb3\x13\x8f\x9f\x85\xde\xd8\x02\x6d\xe1\xb0\x0d\x9a\x06\x38\x7f\x59\xba\x96\x2c\x20\xb5\x7f\xb6\x74\x78\xe1\x8b\x00\x61\x16\xed\x48\x11\x78\x5a\x29\x8f\x48\x5d\x9f\xbc\x11\xaa\xc4\xb3\xc8\x1b\x62\x3a\x73\x74\xcd\x49\x73\xd2\x67\xf6\xff\x06\x00\x00\xff\xff\x86\xdc\xd1\xf1\x43\x14\x00\x00" func repoView_fileTmplBytes() ([]byte, error) { return bindataRead( @@ -2432,8 +2432,8 @@ func repoView_fileTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "repo/view_file.tmpl", size: 4983, mode: os.FileMode(0644), modTime: time.Unix(1582133193, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x6f, 0xd7, 0xaa, 0xde, 0x42, 0x19, 0xb3, 0x6e, 0xe6, 0x56, 0xa5, 0x78, 0x70, 0xda, 0x65, 0x6, 0xf7, 0x52, 0xa7, 0x53, 0x56, 0xec, 0xcb, 0x8e, 0x59, 0x94, 0x0, 0x44, 0x4b, 0xb5, 0x23}} + info := bindataFileInfo{name: "repo/view_file.tmpl", size: 5187, mode: os.FileMode(0644), modTime: time.Unix(1584718175, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0x23, 0x8, 0x3c, 0x23, 0xb5, 0xc3, 0x2d, 0xc3, 0x7f, 0xb9, 0xa4, 0xc7, 0x9d, 0x64, 0x79, 0x19, 0x90, 0x27, 0xce, 0x16, 0xc8, 0x21, 0x75, 0x1c, 0xa4, 0x68, 0xfa, 0xa1, 0x8d, 0x1e, 0x55}} return a, nil } diff --git a/internal/cmd/web.go b/internal/cmd/web.go index 1d78e4a6..fb7be88b 100644 --- a/internal/cmd/web.go +++ b/internal/cmd/web.go @@ -29,6 +29,7 @@ import ( "gopkg.in/macaron.v1" log "unknwon.dev/clog/v2" + "gogs.io/gogs/internal/app" "gogs.io/gogs/internal/assets/public" "gogs.io/gogs/internal/assets/templates" "gogs.io/gogs/internal/conf" @@ -665,16 +666,15 @@ func runWeb(c *cli.Context) error { apiv1.RegisterRoutes(m) }, ignSignIn) + // *************************** + // ----- Internal routes ----- + // *************************** m.Group("/-", func() { - if conf.Prometheus.Enabled { - m.Get("/metrics", func(c *context.Context) { - if !conf.Prometheus.EnableBasicAuth { - return - } + m.Get("/metrics", app.MetricsFilter(), promhttp.Handler()) // "/-/metrics" - c.RequireBasicAuth(conf.Prometheus.BasicAuthUsername, conf.Prometheus.BasicAuthPassword) - }, promhttp.Handler()) - } + m.Group("/api", func() { + m.Post("/sanitize_ipynb", app.SanitizeIpynb()) // "/-/api/sanitize_ipynb" + }) }) // robots.txt diff --git a/internal/db/user.go b/internal/db/user.go index 0c793170..8678c1c5 100644 --- a/internal/db/user.go +++ b/internal/db/user.go @@ -498,7 +498,7 @@ func NewGhostUser() *User { } var ( - reservedUsernames = []string{"explore", "create", "assets", "css", "img", "js", "less", "plugins", "debug", "raw", "install", "api", "avatar", "user", "org", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin", "new", ".", ".."} + reservedUsernames = []string{"-", "explore", "create", "assets", "css", "img", "js", "less", "plugins", "debug", "raw", "install", "api", "avatar", "user", "org", "help", "stars", "issues", "pulls", "commits", "repo", "template", "admin", "new", ".", ".."} reservedUserPatterns = []string{"*.keys"} ) diff --git a/public/plugins/marked-0.3.6/marked.min.js b/public/plugins/marked-0.3.6/marked.min.js deleted file mode 100644 index 555c1dc1..00000000 --- a/public/plugins/marked-0.3.6/marked.min.js +++ /dev/null @@ -1,6 +0,0 @@ -/** - * marked - a markdown parser - * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed) - * https://github.com/chjj/marked - */ -(function(){var block={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:noop,hr:/^( *[-*_]){3,} *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,nptable:noop,lheading:/^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,blockquote:/^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,list:/^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,table:noop,paragraph:/^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,text:/^[^\n]+/};block.bullet=/(?:[*+-]|\d+\.)/;block.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;block.item=replace(block.item,"gm")(/bull/g,block.bullet)();block.list=replace(block.list)(/bull/g,block.bullet)("hr","\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))")("def","\\n+(?="+block.def.source+")")();block.blockquote=replace(block.blockquote)("def",block.def)();block._tag="(?!(?:"+"a|em|strong|small|s|cite|q|dfn|abbr|data|time|code"+"|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo"+"|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b";block.html=replace(block.html)("comment",/<!--[\s\S]*?-->/)("closed",/<(tag)[\s\S]+?<\/\1>/)("closing",/<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)(/tag/g,block._tag)();block.paragraph=replace(block.paragraph)("hr",block.hr)("heading",block.heading)("lheading",block.lheading)("blockquote",block.blockquote)("tag","<"+block._tag)("def",block.def)();block.normal=merge({},block);block.gfm=merge({},block.normal,{fences:/^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,paragraph:/^/,heading:/^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/});block.gfm.paragraph=replace(block.paragraph)("(?!","(?!"+block.gfm.fences.source.replace("\\1","\\2")+"|"+block.list.source.replace("\\1","\\3")+"|")();block.tables=merge({},block.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/});function Lexer(options){this.tokens=[];this.tokens.links={};this.options=options||marked.defaults;this.rules=block.normal;if(this.options.gfm){if(this.options.tables){this.rules=block.tables}else{this.rules=block.gfm}}}Lexer.rules=block;Lexer.lex=function(src,options){var lexer=new Lexer(options);return lexer.lex(src)};Lexer.prototype.lex=function(src){src=src.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n");return this.token(src,true)};Lexer.prototype.token=function(src,top,bq){var src=src.replace(/^ +$/gm,""),next,loose,cap,bull,b,item,space,i,l;while(src){if(cap=this.rules.newline.exec(src)){src=src.substring(cap[0].length);if(cap[0].length>1){this.tokens.push({type:"space"})}}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);cap=cap[0].replace(/^ {4}/gm,"");this.tokens.push({type:"code",text:!this.options.pedantic?cap.replace(/\n+$/,""):cap});continue}if(cap=this.rules.fences.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"code",lang:cap[2],text:cap[3]||""});continue}if(cap=this.rules.heading.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[1].length,text:cap[2]});continue}if(top&&(cap=this.rules.nptable.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/\n$/,"").split("\n")};for(i=0;i<item.align.length;i++){if(/^ *-+: *$/.test(item.align[i])){item.align[i]="right"}else if(/^ *:-+: *$/.test(item.align[i])){item.align[i]="center"}else if(/^ *:-+ *$/.test(item.align[i])){item.align[i]="left"}else{item.align[i]=null}}for(i=0;i<item.cells.length;i++){item.cells[i]=item.cells[i].split(/ *\| */)}this.tokens.push(item);continue}if(cap=this.rules.lheading.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[2]==="="?1:2,text:cap[1]});continue}if(cap=this.rules.hr.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"hr"});continue}if(cap=this.rules.blockquote.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"blockquote_start"});cap=cap[0].replace(/^ *> ?/gm,"");this.token(cap,top,true);this.tokens.push({type:"blockquote_end"});continue}if(cap=this.rules.list.exec(src)){src=src.substring(cap[0].length);bull=cap[2];this.tokens.push({type:"list_start",ordered:bull.length>1});cap=cap[0].match(this.rules.item);next=false;l=cap.length;i=0;for(;i<l;i++){item=cap[i];space=item.length;item=item.replace(/^ *([*+-]|\d+\.) +/,"");if(~item.indexOf("\n ")){space-=item.length;item=!this.options.pedantic?item.replace(new RegExp("^ {1,"+space+"}","gm"),""):item.replace(/^ {1,4}/gm,"")}if(this.options.smartLists&&i!==l-1){b=block.bullet.exec(cap[i+1])[0];if(bull!==b&&!(bull.length>1&&b.length>1)){src=cap.slice(i+1).join("\n")+src;i=l-1}}loose=next||/\n\n(?!\s*$)/.test(item);if(i!==l-1){next=item.charAt(item.length-1)==="\n";if(!loose)loose=next}this.tokens.push({type:loose?"loose_item_start":"list_item_start"});this.token(item,false,bq);this.tokens.push({type:"list_item_end"})}this.tokens.push({type:"list_end"});continue}if(cap=this.rules.html.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:!this.options.sanitizer&&(cap[1]==="pre"||cap[1]==="script"||cap[1]==="style"),text:cap[0]});continue}if(!bq&&top&&(cap=this.rules.def.exec(src))){src=src.substring(cap[0].length);this.tokens.links[cap[1].toLowerCase()]={href:cap[2],title:cap[3]};continue}if(top&&(cap=this.rules.table.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/(?: *\| *)?\n$/,"").split("\n")};for(i=0;i<item.align.length;i++){if(/^ *-+: *$/.test(item.align[i])){item.align[i]="right"}else if(/^ *:-+: *$/.test(item.align[i])){item.align[i]="center"}else if(/^ *:-+ *$/.test(item.align[i])){item.align[i]="left"}else{item.align[i]=null}}for(i=0;i<item.cells.length;i++){item.cells[i]=item.cells[i].replace(/^ *\| *| *\| *$/g,"").split(/ *\| */)}this.tokens.push(item);continue}if(top&&(cap=this.rules.paragraph.exec(src))){src=src.substring(cap[0].length);this.tokens.push({type:"paragraph",text:cap[1].charAt(cap[1].length-1)==="\n"?cap[1].slice(0,-1):cap[1]});continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"text",text:cap[0]});continue}if(src){throw new Error("Infinite loop on byte: "+src.charCodeAt(0))}}return this.tokens};var inline={escape:/^\\([\\`*{}\[\]()#+\-.!_>])/,autolink:/^<([^ >]+(@|:\/)[^ >]+)>/,url:noop,tag:/^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,strong:/^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,code:/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:noop,text:/^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/};inline._inside=/(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;inline._href=/\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;inline.link=replace(inline.link)("inside",inline._inside)("href",inline._href)();inline.reflink=replace(inline.reflink)("inside",inline._inside)();inline.normal=merge({},inline);inline.pedantic=merge({},inline.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/});inline.gfm=merge({},inline.normal,{escape:replace(inline.escape)("])","~|])")(),url:/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:replace(inline.text)("]|","~]|")("|","|https?://|")()});inline.breaks=merge({},inline.gfm,{br:replace(inline.br)("{2,}","*")(),text:replace(inline.gfm.text)("{2,}","*")()});function InlineLexer(links,options){this.options=options||marked.defaults;this.links=links;this.rules=inline.normal;this.renderer=this.options.renderer||new Renderer;this.renderer.options=this.options;if(!this.links){throw new Error("Tokens array requires a `links` property.")}if(this.options.gfm){if(this.options.breaks){this.rules=inline.breaks}else{this.rules=inline.gfm}}else if(this.options.pedantic){this.rules=inline.pedantic}}InlineLexer.rules=inline;InlineLexer.output=function(src,links,options){var inline=new InlineLexer(links,options);return inline.output(src)};InlineLexer.prototype.output=function(src){var out="",link,text,href,cap;while(src){if(cap=this.rules.escape.exec(src)){src=src.substring(cap[0].length);out+=cap[1];continue}if(cap=this.rules.autolink.exec(src)){src=src.substring(cap[0].length);if(cap[2]==="@"){text=cap[1].charAt(6)===":"?this.mangle(cap[1].substring(7)):this.mangle(cap[1]);href=this.mangle("mailto:")+text}else{text=escape(cap[1]);href=text}out+=this.renderer.link(href,null,text);continue}if(!this.inLink&&(cap=this.rules.url.exec(src))){src=src.substring(cap[0].length);text=escape(cap[1]);href=text;out+=this.renderer.link(href,null,text);continue}if(cap=this.rules.tag.exec(src)){if(!this.inLink&&/^<a /i.test(cap[0])){this.inLink=true}else if(this.inLink&&/^<\/a>/i.test(cap[0])){this.inLink=false}src=src.substring(cap[0].length);out+=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(cap[0]):escape(cap[0]):cap[0];continue}if(cap=this.rules.link.exec(src)){src=src.substring(cap[0].length);this.inLink=true;out+=this.outputLink(cap,{href:cap[2],title:cap[3]});this.inLink=false;continue}if((cap=this.rules.reflink.exec(src))||(cap=this.rules.nolink.exec(src))){src=src.substring(cap[0].length);link=(cap[2]||cap[1]).replace(/\s+/g," ");link=this.links[link.toLowerCase()];if(!link||!link.href){out+=cap[0].charAt(0);src=cap[0].substring(1)+src;continue}this.inLink=true;out+=this.outputLink(cap,link);this.inLink=false;continue}if(cap=this.rules.strong.exec(src)){src=src.substring(cap[0].length);out+=this.renderer.strong(this.output(cap[2]||cap[1]));continue}if(cap=this.rules.em.exec(src)){src=src.substring(cap[0].length);out+=this.renderer.em(this.output(cap[2]||cap[1]));continue}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);out+=this.renderer.codespan(escape(cap[2],true));continue}if(cap=this.rules.br.exec(src)){src=src.substring(cap[0].length);out+=this.renderer.br();continue}if(cap=this.rules.del.exec(src)){src=src.substring(cap[0].length);out+=this.renderer.del(this.output(cap[1]));continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);out+=this.renderer.text(escape(this.smartypants(cap[0])));continue}if(src){throw new Error("Infinite loop on byte: "+src.charCodeAt(0))}}return out};InlineLexer.prototype.outputLink=function(cap,link){var href=escape(link.href),title=link.title?escape(link.title):null;return cap[0].charAt(0)!=="!"?this.renderer.link(href,title,this.output(cap[1])):this.renderer.image(href,title,escape(cap[1]))};InlineLexer.prototype.smartypants=function(text){if(!this.options.smartypants)return text;return text.replace(/---/g,"—").replace(/--/g,"–").replace(/(^|[-\u2014/(\[{"\s])'/g,"$1‘").replace(/'/g,"’").replace(/(^|[-\u2014/(\[{\u2018\s])"/g,"$1“").replace(/"/g,"”").replace(/\.{3}/g,"…")};InlineLexer.prototype.mangle=function(text){if(!this.options.mangle)return text;var out="",l=text.length,i=0,ch;for(;i<l;i++){ch=text.charCodeAt(i);if(Math.random()>.5){ch="x"+ch.toString(16)}out+="&#"+ch+";"}return out};function Renderer(options){this.options=options||{}}Renderer.prototype.code=function(code,lang,escaped){if(this.options.highlight){var out=this.options.highlight(code,lang);if(out!=null&&out!==code){escaped=true;code=out}}if(!lang){return"<pre><code>"+(escaped?code:escape(code,true))+"\n</code></pre>"}return'<pre><code class="'+this.options.langPrefix+escape(lang,true)+'">'+(escaped?code:escape(code,true))+"\n</code></pre>\n"};Renderer.prototype.blockquote=function(quote){return"<blockquote>\n"+quote+"</blockquote>\n"};Renderer.prototype.html=function(html){return html};Renderer.prototype.heading=function(text,level,raw){return"<h"+level+' id="'+this.options.headerPrefix+raw.toLowerCase().replace(/[^\w]+/g,"-")+'">'+text+"</h"+level+">\n"};Renderer.prototype.hr=function(){return this.options.xhtml?"<hr/>\n":"<hr>\n"};Renderer.prototype.list=function(body,ordered){var type=ordered?"ol":"ul";return"<"+type+">\n"+body+"</"+type+">\n"};Renderer.prototype.listitem=function(text){return"<li>"+text+"</li>\n"};Renderer.prototype.paragraph=function(text){return"<p>"+text+"</p>\n"};Renderer.prototype.table=function(header,body){return"<table>\n"+"<thead>\n"+header+"</thead>\n"+"<tbody>\n"+body+"</tbody>\n"+"</table>\n"};Renderer.prototype.tablerow=function(content){return"<tr>\n"+content+"</tr>\n"};Renderer.prototype.tablecell=function(content,flags){var type=flags.header?"th":"td";var tag=flags.align?"<"+type+' style="text-align:'+flags.align+'">':"<"+type+">";return tag+content+"</"+type+">\n"};Renderer.prototype.strong=function(text){return"<strong>"+text+"</strong>"};Renderer.prototype.em=function(text){return"<em>"+text+"</em>"};Renderer.prototype.codespan=function(text){return"<code>"+text+"</code>"};Renderer.prototype.br=function(){return this.options.xhtml?"<br/>":"<br>"};Renderer.prototype.del=function(text){return"<del>"+text+"</del>"};Renderer.prototype.link=function(href,title,text){if(this.options.sanitize){try{var prot=decodeURIComponent(unescape(href)).replace(/[^\w:]/g,"").toLowerCase()}catch(e){return""}if(prot.indexOf("javascript:")===0||prot.indexOf("vbscript:")===0){return""}}var out='<a href="'+href+'"';if(title){out+=' title="'+title+'"'}out+=">"+text+"</a>";return out};Renderer.prototype.image=function(href,title,text){var out='<img src="'+href+'" alt="'+text+'"';if(title){out+=' title="'+title+'"'}out+=this.options.xhtml?"/>":">";return out};Renderer.prototype.text=function(text){return text};function Parser(options){this.tokens=[];this.token=null;this.options=options||marked.defaults;this.options.renderer=this.options.renderer||new Renderer;this.renderer=this.options.renderer;this.renderer.options=this.options}Parser.parse=function(src,options,renderer){var parser=new Parser(options,renderer);return parser.parse(src)};Parser.prototype.parse=function(src){this.inline=new InlineLexer(src.links,this.options,this.renderer);this.tokens=src.reverse();var out="";while(this.next()){out+=this.tok()}return out};Parser.prototype.next=function(){return this.token=this.tokens.pop()};Parser.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0};Parser.prototype.parseText=function(){var body=this.token.text;while(this.peek().type==="text"){body+="\n"+this.next().text}return this.inline.output(body)};Parser.prototype.tok=function(){switch(this.token.type){case"space":{return""}case"hr":{return this.renderer.hr()}case"heading":{return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text)}case"code":{return this.renderer.code(this.token.text,this.token.lang,this.token.escaped)}case"table":{var header="",body="",i,row,cell,flags,j;cell="";for(i=0;i<this.token.header.length;i++){flags={header:true,align:this.token.align[i]};cell+=this.renderer.tablecell(this.inline.output(this.token.header[i]),{header:true,align:this.token.align[i]})}header+=this.renderer.tablerow(cell);for(i=0;i<this.token.cells.length;i++){row=this.token.cells[i];cell="";for(j=0;j<row.length;j++){cell+=this.renderer.tablecell(this.inline.output(row[j]),{header:false,align:this.token.align[j]})}body+=this.renderer.tablerow(cell)}return this.renderer.table(header,body)}case"blockquote_start":{var body="";while(this.next().type!=="blockquote_end"){body+=this.tok()}return this.renderer.blockquote(body)}case"list_start":{var body="",ordered=this.token.ordered;while(this.next().type!=="list_end"){body+=this.tok()}return this.renderer.list(body,ordered)}case"list_item_start":{var body="";while(this.next().type!=="list_item_end"){body+=this.token.type==="text"?this.parseText():this.tok()}return this.renderer.listitem(body)}case"loose_item_start":{var body="";while(this.next().type!=="list_item_end"){body+=this.tok()}return this.renderer.listitem(body)}case"html":{var html=!this.token.pre&&!this.options.pedantic?this.inline.output(this.token.text):this.token.text;return this.renderer.html(html)}case"paragraph":{return this.renderer.paragraph(this.inline.output(this.token.text))}case"text":{return this.renderer.paragraph(this.parseText())}}};function escape(html,encode){return html.replace(!encode?/&(?!#?\w+;)/g:/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function unescape(html){return html.replace(/&([#\w]+);/g,function(_,n){n=n.toLowerCase();if(n==="colon")return":";if(n.charAt(0)==="#"){return n.charAt(1)==="x"?String.fromCharCode(parseInt(n.substring(2),16)):String.fromCharCode(+n.substring(1))}return""})}function replace(regex,opt){regex=regex.source;opt=opt||"";return function self(name,val){if(!name)return new RegExp(regex,opt);val=val.source||val;val=val.replace(/(^|[^\[])\^/g,"$1");regex=regex.replace(name,val);return self}}function noop(){}noop.exec=noop;function merge(obj){var i=1,target,key;for(;i<arguments.length;i++){target=arguments[i];for(key in target){if(Object.prototype.hasOwnProperty.call(target,key)){obj[key]=target[key]}}}return obj}function marked(src,opt,callback){if(callback||typeof opt==="function"){if(!callback){callback=opt;opt=null}opt=merge({},marked.defaults,opt||{});var highlight=opt.highlight,tokens,pending,i=0;try{tokens=Lexer.lex(src,opt)}catch(e){return callback(e)}pending=tokens.length;var done=function(err){if(err){opt.highlight=highlight;return callback(err)}var out;try{out=Parser.parse(tokens,opt)}catch(e){err=e}opt.highlight=highlight;return err?callback(err):callback(null,out)};if(!highlight||highlight.length<3){return done()}delete opt.highlight;if(!pending)return done();for(;i<tokens.length;i++){(function(token){if(token.type!=="code"){return--pending||done()}return highlight(token.text,token.lang,function(err,code){if(err)return done(err);if(code==null||code===token.text){return--pending||done()}token.text=code;token.escaped=true;--pending||done()})})(tokens[i])}return}try{if(opt)opt=merge({},marked.defaults,opt);return Parser.parse(Lexer.lex(src,opt),opt)}catch(e){e.message+="\nPlease report this to https://github.com/chjj/marked.";if((opt||marked.defaults).silent){return"<p>An error occured:</p><pre>"+escape(e.message+"",true)+"</pre>"}throw e}}marked.options=marked.setOptions=function(opt){merge(marked.defaults,opt);return marked};marked.defaults={gfm:true,tables:true,breaks:false,pedantic:false,sanitize:false,sanitizer:null,mangle:true,smartLists:false,silent:false,highlight:null,langPrefix:"lang-",smartypants:false,headerPrefix:"",renderer:new Renderer,xhtml:false};marked.Parser=Parser;marked.parser=Parser.parse;marked.Renderer=Renderer;marked.Lexer=Lexer;marked.lexer=Lexer.lex;marked.InlineLexer=InlineLexer;marked.inlineLexer=InlineLexer.output;marked.parse=marked;if(typeof module!=="undefined"&&typeof exports==="object"){module.exports=marked}else if(typeof define==="function"&&define.amd){define(function(){return marked})}else{this.marked=marked}}).call(function(){return this||(typeof window!=="undefined"?window:global)}());
\ No newline at end of file diff --git a/public/plugins/marked-0.8.1/marked.min.js b/public/plugins/marked-0.8.1/marked.min.js new file mode 100755 index 00000000..c7105a22 --- /dev/null +++ b/public/plugins/marked-0.8.1/marked.min.js @@ -0,0 +1,6 @@ +/** + * marked - a markdown parser + * Copyright (c) 2011-2020, Christopher Jeffrey. (MIT Licensed) + * https://github.com/markedjs/marked + */ +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).marked=t()}(this,function(){"use strict";function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function t(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),e}function n(e){return h[e]}var e,s=(function(t){function e(){return{baseUrl:null,breaks:!1,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,xhtml:!1}}t.exports={defaults:e(),getDefaults:e,changeDefaults:function(e){t.exports.defaults=e}}}(e={exports:{}},e.exports),e.exports),i=(s.defaults,s.getDefaults,s.changeDefaults,/[&<>"']/),l=/[&<>"']/g,a=/[<>"']|&(?!#?\w+;)/,o=/[<>"']|&(?!#?\w+;)/g,h={"&":"&","<":"<",">":">",'"':""","'":"'"};var u=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi;function c(e){return e.replace(u,function(e,t){return"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""})}var p=/(^|[^\[])\^/g;var g=/[^\w:]/g,f=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;var d={},b=/^[^:]+:\/*[^/]*$/,k=/^([^:]+:)[\s\S]*$/,m=/^([^:]+:\/*[^/]*)[\s\S]*$/;function x(e,t){d[" "+e]||(b.test(e)?d[" "+e]=e+"/":d[" "+e]=_(e,"/",!0));var n=-1===(e=d[" "+e]).indexOf(":");return"//"===t.substring(0,2)?n?t:e.replace(k,"$1")+t:"/"===t.charAt(0)?n?t:e.replace(m,"$1")+t:e+t}function _(e,t,n){var r=e.length;if(0===r)return"";for(var s=0;s<r;){var i=e.charAt(r-s-1);if(i!==t||n){if(i===t||!n)break;s++}else s++}return e.substr(0,r-s)}var y=function(e,t){if(t){if(i.test(e))return e.replace(l,n)}else if(a.test(e))return e.replace(o,n);return e},w=c,v=function(e,t,n){if(e){var r;try{r=decodeURIComponent(c(n)).replace(g,"").toLowerCase()}catch(e){return null}if(0===r.indexOf("javascript:")||0===r.indexOf("vbscript:")||0===r.indexOf("data:"))return null}t&&!f.test(n)&&(n=x(t,n));try{n=encodeURI(n).replace(/%25/g,"%")}catch(e){return null}return n},$=function(e){for(var t,n,r=1;r<arguments.length;r++)for(n in t=arguments[r])Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e},S=function(e,t){var n=e.replace(/\|/g,function(e,t,n){for(var r=!1,s=t;0<=--s&&"\\"===n[s];)r=!r;return r?"|":" |"}).split(/ \|/),r=0;if(n.length>t)n.splice(t);else for(;n.length<t;)n.push("");for(;r<n.length;r++)n[r]=n[r].trim().replace(/\\\|/g,"|");return n},z=_,A=function(e,t){if(-1===e.indexOf(t[1]))return-1;for(var n=e.length,r=0,s=0;s<n;s++)if("\\"===e[s])s++;else if(e[s]===t[0])r++;else if(e[s]===t[1]&&--r<0)return s;return-1},R=function(e){e&&e.sanitize&&!e.silent&&console.warn("marked(): sanitize and sanitizer parameters are deprecated since version 0.7.0, should not be used and will be removed in the future. Read more here: https://marked.js.org/#/USING_ADVANCED.md#options")},Z={exec:function(){}},q=function(n,e){n=n.source||n,e=e||"";var r={replace:function(e,t){return t=(t=t.source||t).replace(p,"$1"),n=n.replace(e,t),r},getRegex:function(){return new RegExp(n,e)}};return r},L=$,C={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*\n)|~{3,})([^\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?:\n+|$)|$)/,hr:/^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\* *){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6}) +([^\n]*?)(?: +#+)? *(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3})(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:"^ {0,3}(?:<(script|pre|style)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?\\?>\\n*|<![A-Z][\\s\\S]*?>\\n*|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>\\n*|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:\\n{2,}|$)|<(?!script|pre|style)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:\\n{2,}|$)|</(?!script|pre|style)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:\\n{2,}|$))",def:/^ {0,3}\[(label)\]: *\n? *<?([^\s>]+)>?(?:(?: +\n? *| *\n *)(title))? *(?:\n+|$)/,nptable:Z,table:Z,lheading:/^([^\n]+)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html)[^\n]+)*)/,text:/^[^\n]+/,_label:/(?!\s*\])(?:\\[\[\]]|[^\[\]])+/,_title:/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/};C.def=q(C.def).replace("label",C._label).replace("title",C._title).getRegex(),C.bullet=/(?:[*+-]|\d{1,9}\.)/,C.item=/^( *)(bull) ?[^\n]*(?:\n(?!\1bull ?)[^\n]*)*/,C.item=q(C.item,"gm").replace(/bull/g,C.bullet).getRegex(),C.list=q(C.list).replace(/bull/g,C.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+C.def.source+")").getRegex(),C._tag="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",C._comment=/<!--(?!-?>)[\s\S]*?-->/,C.html=q(C.html,"i").replace("comment",C._comment).replace("tag",C._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),C.paragraph=q(C._paragraph).replace("hr",C.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|!--)").replace("tag",C._tag).getRegex(),C.blockquote=q(C.blockquote).replace("paragraph",C.paragraph).getRegex(),C.normal=L({},C),C.gfm=L({},C.normal,{nptable:"^ *([^|\\n ].*\\|.*)\\n *([-:]+ *\\|[-| :]*)(?:\\n((?:(?!\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)",table:"^ *\\|(.+)\\n *\\|?( *[-:]+[-| :]*)(?:\\n *((?:(?!\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"}),C.gfm.nptable=q(C.gfm.nptable).replace("hr",C.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|!--)").replace("tag",C._tag).getRegex(),C.gfm.table=q(C.gfm.table).replace("hr",C.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|!--)").replace("tag",C._tag).getRegex(),C.pedantic=L({},C.normal,{html:q("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:\"[^\"]*\"|'[^']*'|\\s[^'\"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",C._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *(?:#+ *)?(?:\n+|$)/,fences:Z,paragraph:q(C.normal._paragraph).replace("hr",C.hr).replace("heading"," *#{1,6} *[^\n]").replace("lheading",C.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var O={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:Z,tag:"^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(?!\s*\])((?:\\[\[\]]?|[^\[\]\\])+)\]/,nolink:/^!?\[(?!\s*\])((?:\[[^\[\]]*\]|\\[\[\]]|[^\[\]])*)\](?:\[\])?/,strong:/^__([^\s_])__(?!_)|^\*\*([^\s*])\*\*(?!\*)|^__([^\s][\s\S]*?[^\s])__(?!_)|^\*\*([^\s][\s\S]*?[^\s])\*\*(?!\*)/,em:/^_([^\s_])_(?!_)|^\*([^\s*<\[])\*(?!\*)|^_([^\s<][\s\S]*?[^\s_])_(?!_|[^\spunctuation])|^_([^\s_<][\s\S]*?[^\s])_(?!_|[^\spunctuation])|^\*([^\s<"][\s\S]*?[^\s\*])\*(?!\*|[^\spunctuation])|^\*([^\s*"<\[][\s\S]*?[^\s])\*(?!\*)/,code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:Z,text:/^(`+|[^`])(?:[\s\S]*?(?:(?=[\\<!\[`*]|\b_|$)|[^ ](?= {2,}\n))|(?= {2,}\n))/,_punctuation:"!\"#$%&'()*+,\\-./:;<=>?@\\[^_{|}~"};O.em=q(O.em).replace(/punctuation/g,O._punctuation).getRegex(),O._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g,O._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,O._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,O.autolink=q(O.autolink).replace("scheme",O._scheme).replace("email",O._email).getRegex(),O._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/,O.tag=q(O.tag).replace("comment",C._comment).replace("attribute",O._attribute).getRegex(),O._label=/(?:\[[^\[\]]*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,O._href=/<(?:\\[<>]?|[^\s<>\\])*>|[^\s\x00-\x1f]*/,O._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/,O.link=q(O.link).replace("label",O._label).replace("href",O._href).replace("title",O._title).getRegex(),O.reflink=q(O.reflink).replace("label",O._label).getRegex(),O.normal=L({},O),O.pedantic=L({},O.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/,link:q(/^!?\[(label)\]\((.*?)\)/).replace("label",O._label).getRegex(),reflink:q(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",O._label).getRegex()}),O.gfm=L({},O.normal,{escape:q(O.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,del:/^~+(?=\S)([\s\S]*?\S)~+/,text:/^(`+|[^`])(?:[\s\S]*?(?:(?=[\\<!\[`*~]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@))|(?= {2,}\n|[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@))/}),O.gfm.url=q(O.gfm.url,"i").replace("email",O.gfm._extended_email).getRegex(),O.breaks=L({},O.gfm,{br:q(O.br).replace("{2,}","*").getRegex(),text:q(O.gfm.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()});var D={block:C,inline:O},E=s.defaults,j=D.block,P=z,T=S,I=y,B=function(){function n(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||E,this.rules=j.normal,this.options.pedantic?this.rules=j.pedantic:this.options.gfm&&(this.rules=j.gfm)}n.lex=function(e,t){return new n(t).lex(e)};var e=n.prototype;return e.lex=function(e){return e=e.replace(/\r\n|\r/g,"\n").replace(/\t/g," "),this.token(e,!0)},e.token=function(e,t){var n,r,s,i,l,a,o,h,u,c,p,g,f,d,b,k;for(e=e.replace(/^ +$/gm,"");e;)if((s=this.rules.newline.exec(e))&&(e=e.substring(s[0].length),1<s[0].length&&this.tokens.push({type:"space"})),s=this.rules.code.exec(e)){var m=this.tokens[this.tokens.length-1];e=e.substring(s[0].length),m&&"paragraph"===m.type?m.text+="\n"+s[0].trimRight():(s=s[0].replace(/^ {4}/gm,""),this.tokens.push({type:"code",codeBlockStyle:"indented",text:this.options.pedantic?s:P(s,"\n")}))}else if(s=this.rules.fences.exec(e))e=e.substring(s[0].length),this.tokens.push({type:"code",lang:s[2]?s[2].trim():s[2],text:s[3]||""});else if(s=this.rules.heading.exec(e))e=e.substring(s[0].length),this.tokens.push({type:"heading",depth:s[1].length,text:s[2]});else if((s=this.rules.nptable.exec(e))&&(a={type:"table",header:T(s[1].replace(/^ *| *\| *$/g,"")),align:s[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:s[3]?s[3].replace(/\n$/,"").split("\n"):[]}).header.length===a.align.length){for(e=e.substring(s[0].length),p=0;p<a.align.length;p++)/^ *-+: *$/.test(a.align[p])?a.align[p]="right":/^ *:-+: *$/.test(a.align[p])?a.align[p]="center":/^ *:-+ *$/.test(a.align[p])?a.align[p]="left":a.align[p]=null;for(p=0;p<a.cells.length;p++)a.cells[p]=T(a.cells[p],a.header.length);this.tokens.push(a)}else if(s=this.rules.hr.exec(e))e=e.substring(s[0].length),this.tokens.push({type:"hr"});else if(s=this.rules.blockquote.exec(e))e=e.substring(s[0].length),this.tokens.push({type:"blockquote_start"}),s=s[0].replace(/^ *> ?/gm,""),this.token(s,t),this.tokens.push({type:"blockquote_end"});else if(s=this.rules.list.exec(e)){for(e=e.substring(s[0].length),o={type:"list_start",ordered:d=1<(i=s[2]).length,start:d?+i:"",loose:!1},this.tokens.push(o),n=!(h=[]),f=(s=s[0].match(this.rules.item)).length,p=0;p<f;p++)c=(a=s[p]).length,~(a=a.replace(/^ *([*+-]|\d+\.) */,"")).indexOf("\n ")&&(c-=a.length,a=this.options.pedantic?a.replace(/^ {1,4}/gm,""):a.replace(new RegExp("^ {1,"+c+"}","gm"),"")),p!==f-1&&(l=j.bullet.exec(s[p+1])[0],(1<i.length?1===l.length:1<l.length||this.options.smartLists&&l!==i)&&(e=s.slice(p+1).join("\n")+e,p=f-1)),r=n||/\n\n(?!\s*$)/.test(a),p!==f-1&&(n="\n"===a.charAt(a.length-1),r=r||n),r&&(o.loose=!0),k=void 0,(b=/^\[[ xX]\] /.test(a))&&(k=" "!==a[1],a=a.replace(/^\[[ xX]\] +/,"")),u={type:"list_item_start",task:b,checked:k,loose:r},h.push(u),this.tokens.push(u),this.token(a,!1),this.tokens.push({type:"list_item_end"});if(o.loose)for(f=h.length,p=0;p<f;p++)h[p].loose=!0;this.tokens.push({type:"list_end"})}else if(s=this.rules.html.exec(e))e=e.substring(s[0].length),this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:!this.options.sanitizer&&("pre"===s[1]||"script"===s[1]||"style"===s[1]),text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(s[0]):I(s[0]):s[0]});else if(t&&(s=this.rules.def.exec(e)))e=e.substring(s[0].length),s[3]&&(s[3]=s[3].substring(1,s[3].length-1)),g=s[1].toLowerCase().replace(/\s+/g," "),this.tokens.links[g]||(this.tokens.links[g]={href:s[2],title:s[3]});else if((s=this.rules.table.exec(e))&&(a={type:"table",header:T(s[1].replace(/^ *| *\| *$/g,"")),align:s[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:s[3]?s[3].replace(/\n$/,"").split("\n"):[]}).header.length===a.align.length){for(e=e.substring(s[0].length),p=0;p<a.align.length;p++)/^ *-+: *$/.test(a.align[p])?a.align[p]="right":/^ *:-+: *$/.test(a.align[p])?a.align[p]="center":/^ *:-+ *$/.test(a.align[p])?a.align[p]="left":a.align[p]=null;for(p=0;p<a.cells.length;p++)a.cells[p]=T(a.cells[p].replace(/^ *\| *| *\| *$/g,""),a.header.length);this.tokens.push(a)}else if(s=this.rules.lheading.exec(e))e=e.substring(s[0].length),this.tokens.push({type:"heading",depth:"="===s[2].charAt(0)?1:2,text:s[1]});else if(t&&(s=this.rules.paragraph.exec(e)))e=e.substring(s[0].length),this.tokens.push({type:"paragraph",text:"\n"===s[1].charAt(s[1].length-1)?s[1].slice(0,-1):s[1]});else if(s=this.rules.text.exec(e))e=e.substring(s[0].length),this.tokens.push({type:"text",text:s[0]});else if(e)throw new Error("Infinite loop on byte: "+e.charCodeAt(0));return this.tokens},t(n,null,[{key:"rules",get:function(){return j}}]),n}(),U=s.defaults,F=v,N=y,X=function(){function e(e){this.options=e||U}var t=e.prototype;return t.code=function(e,t,n){var r=(t||"").match(/\S*/)[0];if(this.options.highlight){var s=this.options.highlight(e,r);null!=s&&s!==e&&(n=!0,e=s)}return r?'<pre><code class="'+this.options.langPrefix+N(r,!0)+'">'+(n?e:N(e,!0))+"</code></pre>\n":"<pre><code>"+(n?e:N(e,!0))+"</code></pre>"},t.blockquote=function(e){return"<blockquote>\n"+e+"</blockquote>\n"},t.html=function(e){return e},t.heading=function(e,t,n,r){return this.options.headerIds?"<h"+t+' id="'+this.options.headerPrefix+r.slug(n)+'">'+e+"</h"+t+">\n":"<h"+t+">"+e+"</h"+t+">\n"},t.hr=function(){return this.options.xhtml?"<hr/>\n":"<hr>\n"},t.list=function(e,t,n){var r=t?"ol":"ul";return"<"+r+(t&&1!==n?' start="'+n+'"':"")+">\n"+e+"</"+r+">\n"},t.listitem=function(e){return"<li>"+e+"</li>\n"},t.checkbox=function(e){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox"'+(this.options.xhtml?" /":"")+"> "},t.paragraph=function(e){return"<p>"+e+"</p>\n"},t.table=function(e,t){return"<table>\n<thead>\n"+e+"</thead>\n"+(t=t&&"<tbody>"+t+"</tbody>")+"</table>\n"},t.tablerow=function(e){return"<tr>\n"+e+"</tr>\n"},t.tablecell=function(e,t){var n=t.header?"th":"td";return(t.align?"<"+n+' align="'+t.align+'">':"<"+n+">")+e+"</"+n+">\n"},t.strong=function(e){return"<strong>"+e+"</strong>"},t.em=function(e){return"<em>"+e+"</em>"},t.codespan=function(e){return"<code>"+e+"</code>"},t.br=function(){return this.options.xhtml?"<br/>":"<br>"},t.del=function(e){return"<del>"+e+"</del>"},t.link=function(e,t,n){if(null===(e=F(this.options.sanitize,this.options.baseUrl,e)))return n;var r='<a href="'+N(e)+'"';return t&&(r+=' title="'+t+'"'),r+=">"+n+"</a>"},t.image=function(e,t,n){if(null===(e=F(this.options.sanitize,this.options.baseUrl,e)))return n;var r='<img src="'+e+'" alt="'+n+'"';return t&&(r+=' title="'+t+'"'),r+=this.options.xhtml?"/>":">"},t.text=function(e){return e},e}(),G=function(){function e(){this.seen={}}return e.prototype.slug=function(e){var t=e.toLowerCase().trim().replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-");if(this.seen.hasOwnProperty(t))for(var n=t;this.seen[n]++,t=n+"-"+this.seen[n],this.seen.hasOwnProperty(t););return this.seen[t]=0,t},e}(),M=s.defaults,V=D.inline,H=A,J=y,K=function(){function u(e,t){if(this.options=t||M,this.links=e,this.rules=V.normal,this.options.renderer=this.options.renderer||new X,this.renderer=this.options.renderer,this.renderer.options=this.options,!this.links)throw new Error("Tokens array requires a `links` property.");this.options.pedantic?this.rules=V.pedantic:this.options.gfm&&(this.options.breaks?this.rules=V.breaks:this.rules=V.gfm)}u.output=function(e,t,n){return new u(t,n).output(e)};var e=u.prototype;return e.output=function(e){for(var t,n,r,s,i,l,a="";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),a+=J(i[1]);else if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\/a>/i.test(i[0])&&(this.inLink=!1),!this.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(i[0])?this.inRawBlock=!0:this.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(i[0])&&(this.inRawBlock=!1),e=e.substring(i[0].length),a+=this.renderer.html(this.options.sanitize?this.options.sanitizer?this.options.sanitizer(i[0]):J(i[0]):i[0]);else if(i=this.rules.link.exec(e)){var o=H(i[2],"()");if(-1<o){var h=(0===i[0].indexOf("!")?5:4)+i[1].length+o;i[2]=i[2].substring(0,o),i[0]=i[0].substring(0,h).trim(),i[3]=""}e=e.substring(i[0].length),this.inLink=!0,r=i[2],s=this.options.pedantic?(t=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(r))?(r=t[1],t[3]):"":i[3]?i[3].slice(1,-1):"",r=r.trim().replace(/^<([\s\S]*)>$/,"$1"),a+=this.outputLink(i,{href:u.escapes(r),title:u.escapes(s)}),this.inLink=!1}else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\s+/g," "),!(t=this.links[t.toLowerCase()])||!t.href){a+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,a+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),a+=this.renderer.strong(this.output(i[4]||i[3]||i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),a+=this.renderer.em(this.output(i[6]||i[5]||i[4]||i[3]||i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),a+=this.renderer.codespan(J(i[2].trim(),!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),a+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),a+=this.renderer.del(this.output(i[1]));else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),r="@"===i[2]?"mailto:"+(n=J(this.mangle(i[1]))):n=J(i[1]),a+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.inRawBlock?a+=this.renderer.text(this.options.sanitize?this.options.sanitizer?this.options.sanitizer(i[0]):J(i[0]):i[0]):a+=this.renderer.text(J(this.smartypants(i[0])));else if(e)throw new Error("Infinite loop on byte: "+e.charCodeAt(0))}else{if("@"===i[2])r="mailto:"+(n=J(i[0]));else{for(;l=i[0],i[0]=this.rules._backpedal.exec(i[0])[0],l!==i[0];);n=J(i[0]),r="www."===i[1]?"http://"+n:n}e=e.substring(i[0].length),a+=this.renderer.link(r,null,n)}return a},u.escapes=function(e){return e?e.replace(u.rules._escapes,"$1"):e},e.outputLink=function(e,t){var n=t.href,r=t.title?J(t.title):null;return"!"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,J(e[1]))},e.smartypants=function(e){return this.options.smartypants?e.replace(/---/g,"—").replace(/--/g,"–").replace(/(^|[-\u2014/(\[{"\s])'/g,"$1‘").replace(/'/g,"’").replace(/(^|[-\u2014/(\[{\u2018\s])"/g,"$1“").replace(/"/g,"”").replace(/\.{3}/g,"…"):e},e.mangle=function(e){if(!this.options.mangle)return e;for(var t,n=e.length,r="",s=0;s<n;s++)t=e.charCodeAt(s),.5<Math.random()&&(t="x"+t.toString(16)),r+="&#"+t+";";return r},t(u,null,[{key:"rules",get:function(){return V}}]),u}(),Q=function(){function e(){}var t=e.prototype;return t.strong=function(e){return e},t.em=function(e){return e},t.codespan=function(e){return e},t.del=function(e){return e},t.text=function(e){return e},t.link=function(e,t,n){return""+n},t.image=function(e,t,n){return""+n},t.br=function(){return""},e}(),W=s.defaults,Y=$,ee=w,te=function(){function n(e){this.tokens=[],this.token=null,this.options=e||W,this.options.renderer=this.options.renderer||new X,this.renderer=this.options.renderer,this.renderer.options=this.options,this.slugger=new G}n.parse=function(e,t){return new n(t).parse(e)};var e=n.prototype;return e.parse=function(e){this.inline=new K(e.links,this.options),this.inlineText=new K(e.links,Y({},this.options,{renderer:new Q})),this.tokens=e.reverse();for(var t="";this.next();)t+=this.tok();return t},e.next=function(){return this.token=this.tokens.pop(),this.token},e.peek=function(){return this.tokens[this.tokens.length-1]||0},e.parseText=function(){for(var e=this.token.text;"text"===this.peek().type;)e+="\n"+this.next().text;return this.inline.output(e)},e.tok=function(){var e="";switch(this.token.type){case"space":return"";case"hr":return this.renderer.hr();case"heading":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,ee(this.inlineText.output(this.token.text)),this.slugger);case"code":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case"table":var t,n,r,s,i="";for(r="",t=0;t<this.token.header.length;t++)r+=this.renderer.tablecell(this.inline.output(this.token.header[t]),{header:!0,align:this.token.align[t]});for(i+=this.renderer.tablerow(r),t=0;t<this.token.cells.length;t++){for(n=this.token.cells[t],r="",s=0;s<n.length;s++)r+=this.renderer.tablecell(this.inline.output(n[s]),{header:!1,align:this.token.align[s]});e+=this.renderer.tablerow(r)}return this.renderer.table(i,e);case"blockquote_start":for(e="";"blockquote_end"!==this.next().type;)e+=this.tok();return this.renderer.blockquote(e);case"list_start":e="";for(var l=this.token.ordered,a=this.token.start;"list_end"!==this.next().type;)e+=this.tok();return this.renderer.list(e,l,a);case"list_item_start":e="";var o=this.token.loose,h=this.token.checked,u=this.token.task;if(this.token.task)if(o)if("text"===this.peek().type){var c=this.peek();c.text=this.renderer.checkbox(h)+" "+c.text}else this.tokens.push({type:"text",text:this.renderer.checkbox(h)});else e+=this.renderer.checkbox(h);for(;"list_item_end"!==this.next().type;)e+=o||"text"!==this.token.type?this.tok():this.parseText();return this.renderer.listitem(e,u,h);case"html":return this.renderer.html(this.token.text);case"paragraph":return this.renderer.paragraph(this.inline.output(this.token.text));case"text":return this.renderer.paragraph(this.parseText());default:var p='Token with "'+this.token.type+'" type was not found.';if(!this.options.silent)throw new Error(p);console.log(p)}},n}(),ne=$,re=R,se=y,ie=s.getDefaults,le=s.changeDefaults,ae=s.defaults;function oe(t,l,a){if(null==t)throw new Error("marked(): input parameter is undefined or null");if("string"!=typeof t)throw new Error("marked(): input parameter is of type "+Object.prototype.toString.call(t)+", string expected");if(a||"function"==typeof l){var e=function(){a||(a=l,l=null),l=ne({},oe.defaults,l||{}),re(l);var n,r,s=l.highlight,e=0;try{n=B.lex(t,l)}catch(e){return{v:a(e)}}r=n.length;function i(t){if(t)return l.highlight=s,a(t);var e;try{e=te.parse(n,l)}catch(e){t=e}return l.highlight=s,t?a(t):a(null,e)}if(!s||s.length<3)return{v:i()};if(delete l.highlight,!r)return{v:i()};for(;e<n.length;e++)!function(n){"code"!==n.type?--r||i():s(n.text,n.lang,function(e,t){return e?i(e):null==t||t===n.text?--r||i():(n.text=t,n.escaped=!0,void(--r||i()))})}(n[e]);return{v:void 0}}();if("object"==typeof e)return e.v}try{return l=ne({},oe.defaults,l||{}),re(l),te.parse(B.lex(t,l),l)}catch(e){if(e.message+="\nPlease report this to https://github.com/markedjs/marked.",(l||oe.defaults).silent)return"<p>An error occurred:</p><pre>"+se(e.message+"",!0)+"</pre>";throw e}}return oe.options=oe.setOptions=function(e){return ne(oe.defaults,e),le(oe.defaults),oe},oe.getDefaults=ie,oe.defaults=ae,oe.Parser=te,oe.parser=te.parse,oe.Renderer=X,oe.TextRenderer=Q,oe.Lexer=B,oe.lexer=B.lex,oe.InlineLexer=K,oe.inlineLexer=K.output,oe.Slugger=G,oe.parse=oe});
\ No newline at end of file diff --git a/public/plugins/notebookjs-0.3.0/notebook.min.js b/public/plugins/notebookjs-0.3.0/notebook.min.js deleted file mode 100755 index 1c0e5a33..00000000 --- a/public/plugins/notebookjs-0.3.0/notebook.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var root=this;var VERSION="0.3.0";var doc=root.document;if(!doc){var jsdom=require("jsdom");doc=(new jsdom.JSDOM).window.document}var ident=function(x){return x};var makeElement=function(tag,classNames){var el=doc.createElement(tag);el.className=(classNames||[]).map(function(cn){return nb.prefix+cn}).join(" ");return el};var escapeHTML=function(raw){var replaced=raw.replace(/</g,"<").replace(/>/g,">");return replaced};var joinText=function(text){if(text.join){return text.map(joinText).join("")}else{return text}};var condRequire=function(module_name){return typeof require==="function"&&require(module_name)};var getMarkdown=function(){return root.marked||condRequire("marked")};var getAnsi=function(){var req=condRequire("ansi_up");var lib=root.ansi_up||req;return lib&&lib.ansi_to_html};var nb={prefix:"nb-",markdown:getMarkdown()||ident,ansi:getAnsi()||ident,VERSION:VERSION};nb.Input=function(raw,cell){this.raw=raw;this.cell=cell};nb.Input.prototype.render=function(){if(!this.raw.length){return makeElement("div")}var holder=makeElement("div",["input"]);var cell=this.cell;if(typeof cell.number==="number"){holder.setAttribute("data-prompt-number",this.cell.number)}var pre_el=makeElement("pre");var code_el=makeElement("code");var notebook=cell.worksheet.notebook;var m=notebook.metadata;var lang=this.cell.raw.language||m.language||m.language_info.name;code_el.setAttribute("data-language",lang);code_el.className="lang-"+lang;code_el.innerHTML=escapeHTML(joinText(this.raw));pre_el.appendChild(code_el);holder.appendChild(pre_el);this.el=holder;return holder};var imageCreator=function(format){return function(data){var el=makeElement("img",["image-output"]);el.src="data:image/"+format+";base64,"+joinText(data).replace(/\n/g,"");return el}};nb.display={};nb.display.text=function(text){var el=makeElement("pre",["text-output"]);el.innerHTML=escapeHTML(joinText(text));return el};nb.display["text/plain"]=nb.display.text;nb.display.html=function(html){var el=makeElement("div",["html-output"]);el.innerHTML=joinText(html);return el};nb.display["text/html"]=nb.display.html;nb.display.marked=function(md){return nb.display.html(nb.markdown(joinText(md)))};nb.display["text/markdown"]=nb.display.marked;nb.display.svg=function(svg){var el=makeElement("div",["svg-output"]);el.innerHTML=joinText(svg);return el};nb.display["text/svg+xml"]=nb.display.svg;nb.display["image/svg+xml"]=nb.display.svg;nb.display.latex=function(latex){var el=makeElement("div",["latex-output"]);el.innerHTML=joinText(latex);return el};nb.display["text/latex"]=nb.display.latex;nb.display.javascript=function(js){var el=makeElement("script");el.innerHTML=joinText(js);return el};nb.display["application/javascript"]=nb.display.javascript;nb.display.png=imageCreator("png");nb.display["image/png"]=nb.display.png;nb.display.jpeg=imageCreator("jpeg");nb.display["image/jpeg"]=nb.display.jpeg;nb.display_priority=["png","image/png","jpeg","image/jpeg","svg","image/svg+xml","text/svg+xml","html","text/html","text/markdown","latex","text/latex","javascript","application/javascript","text","text/plain"];var render_display_data=function(){var o=this;var formats=nb.display_priority.filter(function(d){return o.raw.data?o.raw.data[d]:o.raw[d]});var format=formats[0];if(format){if(nb.display[format]){return nb.display[format](o.raw[format]||o.raw.data[format])}}return makeElement("div",["empty-output"])};var render_error=function(){var el=makeElement("pre",["pyerr"]);var raw=this.raw.traceback.join("\n");el.innerHTML=nb.ansi(escapeHTML(raw));return el};nb.Output=function(raw,cell){this.raw=raw;this.cell=cell;this.type=raw.output_type};nb.Output.prototype.renderers={display_data:render_display_data,execute_result:render_display_data,pyout:render_display_data,pyerr:render_error,error:render_error,stream:function(){var el=makeElement("pre",[this.raw.stream||this.raw.name]);var raw=joinText(this.raw.text);el.innerHTML=nb.ansi(escapeHTML(raw));return el}};nb.Output.prototype.render=function(){var outer=makeElement("div",["output"]);if(typeof this.cell.number==="number"){outer.setAttribute("data-prompt-number",this.cell.number)}var inner=this.renderers[this.type].call(this);outer.appendChild(inner);this.el=outer;return outer};nb.coalesceStreams=function(outputs){if(!outputs.length){return outputs}var last=outputs[0];var new_outputs=[last];outputs.slice(1).forEach(function(o){if(o.raw.output_type==="stream"&&last.raw.output_type==="stream"&&o.raw.stream===last.raw.stream){last.raw.text=last.raw.text.concat(o.raw.text)}else{new_outputs.push(o);last=o}});return new_outputs};nb.Cell=function(raw,worksheet){var cell=this;cell.raw=raw;cell.worksheet=worksheet;cell.type=raw.cell_type;if(cell.type==="code"){cell.number=raw.prompt_number>-1?raw.prompt_number:raw.execution_count;var source=raw.input||[raw.source];cell.input=new nb.Input(source,cell);var raw_outputs=(cell.raw.outputs||[]).map(function(o){return new nb.Output(o,cell)});cell.outputs=nb.coalesceStreams(raw_outputs)}};nb.Cell.prototype.renderers={markdown:function(){var el=makeElement("div",["cell","markdown-cell"]);el.innerHTML=nb.markdown(joinText(this.raw.source));return el},heading:function(){var el=makeElement("h"+this.raw.level,["cell","heading-cell"]);el.innerHTML=joinText(this.raw.source);return el},raw:function(){var el=makeElement("div",["cell","raw-cell"]);el.innerHTML=joinText(this.raw.source);return el},code:function(){var cell_el=makeElement("div",["cell","code-cell"]);cell_el.appendChild(this.input.render());var output_els=this.outputs.forEach(function(o){cell_el.appendChild(o.render())});return cell_el}};nb.Cell.prototype.render=function(){var el=this.renderers[this.type].call(this);this.el=el;return el};nb.Worksheet=function(raw,notebook){var worksheet=this;this.raw=raw;this.notebook=notebook;this.cells=raw.cells.map(function(c){return new nb.Cell(c,worksheet)});this.render=function(){var worksheet_el=makeElement("div",["worksheet"]);worksheet.cells.forEach(function(c){worksheet_el.appendChild(c.render())});this.el=worksheet_el;return worksheet_el}};nb.Notebook=function(raw,config){var notebook=this;this.raw=raw;this.config=config;var meta=this.metadata=raw.metadata;this.title=meta.title||meta.name;var _worksheets=raw.worksheets||[{cells:raw.cells}];this.worksheets=_worksheets.map(function(ws){return new nb.Worksheet(ws,notebook)});this.sheet=this.worksheets[0]};nb.Notebook.prototype.render=function(){var notebook_el=makeElement("div",["notebook"]);this.worksheets.forEach(function(w){notebook_el.appendChild(w.render())});this.el=notebook_el;return notebook_el};nb.parse=function(nbjson,config){return new nb.Notebook(nbjson,config)};if(typeof define==="function"&&define.amd){define(function(){return nb})}if(typeof exports!=="undefined"){if(typeof module!=="undefined"&&module.exports){exports=module.exports=nb}exports.nb=nb}else{root.nb=nb}}).call(this); diff --git a/public/plugins/notebookjs-0.4.2/notebook.min.js b/public/plugins/notebookjs-0.4.2/notebook.min.js new file mode 100755 index 00000000..27992705 --- /dev/null +++ b/public/plugins/notebookjs-0.4.2/notebook.min.js @@ -0,0 +1 @@ +(function(){var root=this;var VERSION="0.4.2";var doc=root.document;if(!doc){var jsdom=require("jsdom");doc=(new jsdom.JSDOM).window.document}var ident=function(x){return x};var makeElement=function(tag,classNames){var el=doc.createElement(tag);el.className=(classNames||[]).map(function(cn){return nb.prefix+cn}).join(" ");return el};var escapeHTML=function(raw){var replaced=raw.replace(/</g,"<").replace(/>/g,">");return replaced};var joinText=function(text){if(text.join){return text.map(joinText).join("")}else{return text}};var condRequire=function(module_name){return typeof require==="function"&&require(module_name)};var getMarkdown=function(){return root.marked||condRequire("marked")};var getAnsi=function(){var lib=root.ansi_up||condRequire("ansi_up");return lib&&lib.ansi_to_html};var nb={prefix:"nb-",markdown:getMarkdown()||ident,ansi:getAnsi()||ident,highlighter:ident,VERSION:VERSION};nb.Input=function(raw,cell){this.raw=raw;this.cell=cell};nb.Input.prototype.render=function(){if(!this.raw.length){return makeElement("div")}var holder=makeElement("div",["input"]);var cell=this.cell;if(typeof cell.number==="number"){holder.setAttribute("data-prompt-number",this.cell.number)}var pre_el=makeElement("pre");var code_el=makeElement("code");var notebook=cell.worksheet.notebook;var m=notebook.metadata;var lang=this.cell.raw.language||m.language||m.kernelspec&&m.kernelspec.language||m.language_info&&m.language_info.name;code_el.setAttribute("data-language",lang);code_el.className="lang-"+lang;code_el.innerHTML=nb.highlighter(escapeHTML(joinText(this.raw)),pre_el,code_el,lang);pre_el.appendChild(code_el);holder.appendChild(pre_el);this.el=holder;return holder};var imageCreator=function(format){return function(data){var el=makeElement("img",["image-output"]);el.src="data:image/"+format+";base64,"+joinText(data).replace(/\n/g,"");return el}};nb.display={};nb.display.text=function(text){var el=makeElement("pre",["text-output"]);el.innerHTML=escapeHTML(joinText(text));return el};nb.display["text/plain"]=nb.display.text;nb.display.html=function(html){var el=makeElement("div",["html-output"]);el.innerHTML=joinText(html);return el};nb.display["text/html"]=nb.display.html;nb.display.marked=function(md){return nb.display.html(nb.markdown(joinText(md)))};nb.display["text/markdown"]=nb.display.marked;nb.display.svg=function(svg){var el=makeElement("div",["svg-output"]);el.innerHTML=joinText(svg);return el};nb.display["text/svg+xml"]=nb.display.svg;nb.display["image/svg+xml"]=nb.display.svg;nb.display.latex=function(latex){var el=makeElement("div",["latex-output"]);el.innerHTML=joinText(latex);return el};nb.display["text/latex"]=nb.display.latex;nb.display.javascript=function(js){var el=makeElement("script");el.innerHTML=joinText(js);return el};nb.display["application/javascript"]=nb.display.javascript;nb.display.png=imageCreator("png");nb.display["image/png"]=nb.display.png;nb.display.jpeg=imageCreator("jpeg");nb.display["image/jpeg"]=nb.display.jpeg;nb.display_priority=["png","image/png","jpeg","image/jpeg","svg","image/svg+xml","text/svg+xml","html","text/html","text/markdown","latex","text/latex","javascript","application/javascript","text","text/plain"];var render_display_data=function(){var o=this;var formats=nb.display_priority.filter(function(d){return o.raw.data?o.raw.data[d]:o.raw[d]});var format=formats[0];if(format){if(nb.display[format]){return nb.display[format](o.raw[format]||o.raw.data[format])}}return makeElement("div",["empty-output"])};var render_error=function(){var el=makeElement("pre",["pyerr"]);var raw=this.raw.traceback.join("\n");el.innerHTML=nb.highlighter(nb.ansi(escapeHTML(raw)),el);return el};nb.Output=function(raw,cell){this.raw=raw;this.cell=cell;this.type=raw.output_type};nb.Output.prototype.renderers={display_data:render_display_data,execute_result:render_display_data,pyout:render_display_data,pyerr:render_error,error:render_error,stream:function(){var el=makeElement("pre",[this.raw.stream||this.raw.name]);var raw=joinText(this.raw.text);el.innerHTML=nb.highlighter(nb.ansi(escapeHTML(raw)),el);return el}};nb.Output.prototype.render=function(){var outer=makeElement("div",["output"]);if(typeof this.cell.number==="number"){outer.setAttribute("data-prompt-number",this.cell.number)}var inner=this.renderers[this.type].call(this);outer.appendChild(inner);this.el=outer;return outer};nb.coalesceStreams=function(outputs){if(!outputs.length){return outputs}var last=outputs[0];var new_outputs=[last];outputs.slice(1).forEach(function(o){if(o.raw.output_type==="stream"&&last.raw.output_type==="stream"&&o.raw.stream===last.raw.stream){last.raw.text=last.raw.text.concat(o.raw.text)}else{new_outputs.push(o);last=o}});return new_outputs};nb.Cell=function(raw,worksheet){var cell=this;cell.raw=raw;cell.worksheet=worksheet;cell.type=raw.cell_type;if(cell.type==="code"){cell.number=raw.prompt_number>-1?raw.prompt_number:raw.execution_count;var source=raw.input||[raw.source];cell.input=new nb.Input(source,cell);var raw_outputs=(cell.raw.outputs||[]).map(function(o){return new nb.Output(o,cell)});cell.outputs=nb.coalesceStreams(raw_outputs)}};nb.Cell.prototype.renderers={markdown:function(){var el=makeElement("div",["cell","markdown-cell"]);el.innerHTML=nb.markdown(joinText(this.raw.source));if(root.renderMathInElement!=null){root.renderMathInElement(el,{delimiters:[{left:"$$",right:"$$",display:true},{left:"\\[",right:"\\]",display:true},{left:"\\(",right:"\\)",display:false},{left:"$",right:"$",display:false}]})}return el},heading:function(){var el=makeElement("h"+this.raw.level,["cell","heading-cell"]);el.innerHTML=joinText(this.raw.source);return el},raw:function(){var el=makeElement("div",["cell","raw-cell"]);el.innerHTML=joinText(this.raw.source);return el},code:function(){var cell_el=makeElement("div",["cell","code-cell"]);cell_el.appendChild(this.input.render());var output_els=this.outputs.forEach(function(o){cell_el.appendChild(o.render())});return cell_el}};nb.Cell.prototype.render=function(){var el=this.renderers[this.type].call(this);this.el=el;return el};nb.Worksheet=function(raw,notebook){var worksheet=this;this.raw=raw;this.notebook=notebook;this.cells=raw.cells.map(function(c){return new nb.Cell(c,worksheet)});this.render=function(){var worksheet_el=makeElement("div",["worksheet"]);worksheet.cells.forEach(function(c){worksheet_el.appendChild(c.render())});this.el=worksheet_el;return worksheet_el}};nb.Notebook=function(raw,config){var notebook=this;this.raw=raw;this.config=config;var meta=this.metadata=raw.metadata||{};this.title=meta.title||meta.name;var _worksheets=raw.worksheets||[{cells:raw.cells}];this.worksheets=_worksheets.map(function(ws){return new nb.Worksheet(ws,notebook)});this.sheet=this.worksheets[0]};nb.Notebook.prototype.render=function(){var notebook_el=makeElement("div",["notebook"]);this.worksheets.forEach(function(w){notebook_el.appendChild(w.render())});this.el=notebook_el;return notebook_el};nb.parse=function(nbjson,config){return new nb.Notebook(nbjson,config)};if(typeof define==="function"&&define.amd){define(function(){return nb})}if(typeof exports!=="undefined"){if(typeof module!=="undefined"&&module.exports){exports=module.exports=nb}exports.nb=nb}else{root.nb=nb}}).call(this); diff --git a/templates/base/head.tmpl b/templates/base/head.tmpl index 07ba1683..b4547994 100644 --- a/templates/base/head.tmpl +++ b/templates/base/head.tmpl @@ -44,8 +44,8 @@ <!-- notebook.js for rendering ipython notebooks and marked.js for rendering markdown in notebooks --> {{if .IsIPythonNotebook}} - <script src="{{AppSubURL}}/plugins/notebookjs-0.3.0/notebook.min.js"></script> - <script src="{{AppSubURL}}/plugins/marked-0.3.6/marked.min.js"></script> + <script src="{{AppSubURL}}/plugins/notebookjs-0.4.2/notebook.min.js"></script> + <script src="{{AppSubURL}}/plugins/marked-0.8.1/marked.min.js"></script> {{end}} {{if .RequireSimpleMDE}} diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index 617400b4..0e4acb7f 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -41,25 +41,32 @@ {{if .FileContent}}{{.FileContent | Str2HTML}}{{end}} {{else if .IsIPythonNotebook}} <script> - var rendered = null; $.getJSON("{{.RawFileLink}}", null, function(notebook_json) { var notebook = nb.parse(notebook_json); - rendered = notebook.render(); - $("#ipython-notebook").append(rendered); - $("#ipython-notebook code").each(function(i, block) { - $(block).addClass("py").addClass("python"); - hljs.highlightBlock(block); - }); + var rendered = notebook.render(); + $.ajax({ + type: "POST", + url: '{{AppSubURL}}/-/api/sanitize_ipynb', + data: rendered.outerHTML, + processData: false, + contentType: false, + }).done(function(data) { + $("#ipython-notebook").append(data); + $("#ipython-notebook code").each(function(i, block) { + $(block).addClass("py").addClass("python"); + hljs.highlightBlock(block); + }); - // Overwrite image method to append proper prefix to the source URL - var renderer = new marked.Renderer(); - var context = '{{.RawFileLink}}'; - context = context.substring(0, context.lastIndexOf("/")); - renderer.image = function (href, title, text) { - return `<img src="${context}/${href}"` - } - $("#ipython-notebook .nb-markdown-cell").each(function(i, markdown) { - $(markdown).html(marked($(markdown).html(), {renderer: renderer})); + // Overwrite image method to append proper prefix to the source URL + var renderer = new marked.Renderer(); + var context = '{{.RawFileLink}}'; + context = context.substring(0, context.lastIndexOf("/")); + renderer.image = function (href, title, text) { + return `<img src="${context}/${href}"` + }; + $("#ipython-notebook .nb-markdown-cell").each(function(i, markdown) { + $(markdown).html(marked($(markdown).html(), {renderer: renderer})); + }); }); }); </script> |