1
0
Fork 0
photos/cmd/web/bindata.go

1181 lines
254 KiB
Go
Raw Normal View History

2020-08-23 00:21:56 +08:00
// Code generated for package main by go-bindata DO NOT EDIT. (@generated)
// sources:
// ../../web/manage/.container
2020-08-23 00:21:56 +08:00
// ../../web/manage/.gitignore
// ../../web/manage/Dockerfile
// ../../web/manage/Makefile
// ../../web/manage/README.md
// ../../web/manage/build/index.html
// ../../web/manage/build/manage.css
// ../../web/manage/build/manage.css.map
// ../../web/manage/build/manage.js
// ../../web/manage/build/manage.js.map
// ../../web/manage/build/shared/css/base.css
// ../../web/manage/build/shared/css/enlarge.css
// ../../web/manage/build/shared/css/gallery.css
// ../../web/manage/build/shared/css/manage.css
// ../../web/manage/build/shared/js/enlarge.js
// ../../web/manage/build/shared/js/gallery.js
// ../../web/manage/build/shared/js/manage.js
// ../../web/manage/build/shared/js/view.js
2020-08-23 00:21:56 +08:00
// ../../web/manage/index.tmpl
// ../../web/manage/indextmpl.go
// ../../web/manage/package.json
// ../../web/manage/rollup.config.js
// ../../web/manage/src/App.svelte
// ../../web/manage/src/Gallery.svelte
// ../../web/manage/src/Photo.svelte
// ../../web/manage/src/http.js
2020-08-23 00:21:56 +08:00
// ../../web/manage/src/main.js
// ../../web/manage/src/stores.js
2020-05-31 21:51:09 +08:00
// ../../web/shared/css/base.css
// ../../web/shared/css/enlarge.css
// ../../web/shared/css/gallery.css
2020-08-23 00:21:56 +08:00
// ../../web/shared/css/manage.css
2020-05-31 21:51:09 +08:00
// ../../web/shared/js/enlarge.js
// ../../web/shared/js/gallery.js
2020-08-23 00:21:56 +08:00
// ../../web/shared/js/manage.js
2020-05-31 21:51:09 +08:00
// ../../web/shared/js/view.js
// ../../web/view/index.tmpl
package main
import (
"bytes"
"compress/gzip"
"fmt"
"net/http"
2020-05-31 21:51:09 +08:00
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
func bindataRead(data []byte, name string) ([]byte, error) {
gz, err := gzip.NewReader(bytes.NewBuffer(data))
if err != nil {
2020-08-23 00:21:56 +08:00
return nil, fmt.Errorf("Read %q: %v", name, err)
2020-05-31 21:51:09 +08:00
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
clErr := gz.Close()
if err != nil {
2020-08-23 00:21:56 +08:00
return nil, fmt.Errorf("Read %q: %v", name, err)
2020-05-31 21:51:09 +08:00
}
if clErr != nil {
return nil, err
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindataFileInfo struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
// Name return file name
func (fi bindataFileInfo) Name() string {
return fi.name
}
// Size return file size
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
// Mode return file mode
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
2020-08-23 00:21:56 +08:00
// Mode return file modify time
2020-05-31 21:51:09 +08:00
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
// IsDir return file whether a directory
func (fi bindataFileInfo) IsDir() bool {
return fi.mode&os.ModeDir != 0
}
// Sys return file is sys mode
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
2020-05-31 21:51:09 +08:00
type assetFile struct {
*bytes.Reader
name string
childInfos []os.FileInfo
childInfoOffset int
}
type assetOperator struct{}
// Open implement http.FileSystem interface
func (f *assetOperator) Open(name string) (http.File, error) {
var err error
if len(name) > 0 && name[0] == '/' {
name = name[1:]
}
content, err := Asset(name)
if err == nil {
return &assetFile{name: name, Reader: bytes.NewReader(content)}, nil
}
children, err := AssetDir(name)
if err == nil {
childInfos := make([]os.FileInfo, 0, len(children))
for _, child := range children {
childPath := filepath.Join(name, child)
info, errInfo := AssetInfo(filepath.Join(name, child))
if errInfo == nil {
childInfos = append(childInfos, info)
} else {
childInfos = append(childInfos, newDirFileInfo(childPath))
}
}
return &assetFile{name: name, childInfos: childInfos}, nil
} else {
// If the error is not found, return an error that will
// result in a 404 error. Otherwise the server returns
// a 500 error for files not found.
if strings.Contains(err.Error(), "not found") {
return nil, os.ErrNotExist
}
return nil, err
}
}
// Close no need do anything
func (f *assetFile) Close() error {
return nil
}
// Readdir read dir's children file info
func (f *assetFile) Readdir(count int) ([]os.FileInfo, error) {
if len(f.childInfos) == 0 {
return nil, os.ErrNotExist
}
if count <= 0 {
return f.childInfos, nil
}
if f.childInfoOffset+count > len(f.childInfos) {
count = len(f.childInfos) - f.childInfoOffset
}
offset := f.childInfoOffset
f.childInfoOffset += count
return f.childInfos[offset : offset+count], nil
}
// Stat read file info from asset item
func (f *assetFile) Stat() (os.FileInfo, error) {
if len(f.childInfos) != 0 {
return newDirFileInfo(f.name), nil
}
return AssetInfo(f.name)
}
// newDirFileInfo return default dir file info
func newDirFileInfo(name string) os.FileInfo {
return &bindataFileInfo{
name: name,
size: 0,
mode: os.FileMode(2147484068), // equal os.FileMode(0644)|os.ModeDir
modTime: time.Time{}}
}
// AssetFile return a http.FileSystem instance that data backend by asset
func AssetFile() http.FileSystem {
return &assetOperator{}
}
var _manageContainer = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func manageContainerBytes() ([]byte, error) {
return bindataRead(
_manageContainer,
"manage/.container",
)
}
func manageContainer() (*asset, error) {
bytes, err := manageContainerBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/.container", size: 0, mode: os.FileMode(420), modTime: time.Unix(1602421437, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
2020-08-23 00:21:56 +08:00
var _manageGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\x73\x09\x8e\x0f\x2e\xc9\x2f\x4a\xe5\xe2\xd2\xcf\xcb\x4f\x49\x8d\xcf\xcd\x4f\x29\xcd\x49\x2d\xd6\xe7\xd2\x4f\x2a\xcd\xcc\x49\xd1\xe7\xe2\xd2\x4b\xce\xcf\x2b\x49\xcc\xcc\x4b\x2d\xe2\x02\x04\x00\x00\xff\xff\x8e\xfd\xa1\x3c\x2e\x00\x00\x00")
func manageGitignoreBytes() ([]byte, error) {
return bindataRead(
_manageGitignore,
"manage/.gitignore",
)
}
func manageGitignore() (*asset, error) {
bytes, err := manageGitignoreBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/.gitignore", size: 46, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\xb1\x4e\x85\x30\x14\xc6\xf1\xfd\x3c\xc5\x49\x67\x53\x58\x5c\x5c\xef\xad\xc9\x8d\x42\x49\x05\x95\x10\x86\x5a\x2a\x29\x94\xd3\xa6\x05\x7d\x7d\x43\x4c\x5c\x9c\xbe\xe4\xf7\x25\xff\x47\x25\x2b\xa4\x30\xd9\x07\xaf\x77\x9b\x77\x80\x37\xa9\x9e\xae\x37\x85\xc5\x77\x48\xab\xa3\x19\xe0\x22\x9b\x1e\xa3\x36\xab\x9e\x2d\x5f\x72\x20\xe4\xc5\x2f\xa6\xe0\xfd\x11\xb9\x09\xf4\xe9\x66\xbe\xe4\xf3\x50\x5d\x8d\x14\x37\x74\x94\x77\xed\x3d\xc0\xab\x7c\xee\x2a\xf1\xd7\x2b\x72\x32\xff\x2c\x1e\x1f\xde\x19\x00\xf1\xde\xc8\x17\x81\xf7\x65\x59\x02\x88\xba\x55\x7d\x23\x6f\x75\x8b\xc3\x08\x97\xea\x8a\x03\xa3\xb8\xb1\x3b\x64\xe9\xa0\x73\x26\xfb\xc5\x46\xf8\x09\x00\x00\xff\xff\xa9\x90\xb4\xd0\xc4\x00\x00\x00")
func manageDockerfileBytes() ([]byte, error) {
return bindataRead(
_manageDockerfile,
"manage/Dockerfile",
)
}
func manageDockerfile() (*asset, error) {
bytes, err := manageDockerfileBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/Dockerfile", size: 196, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\x6d\x6f\xdb\x36\x10\xfe\x6c\xfe\x8a\x43\x2a\x14\x66\x10\x4a\xe9\x80\x01\x83\xb0\xb4\x49\x6d\xa3\x2d\xba\x58\x86\x93\x0c\x2b\xd6\xc1\xa0\x28\xc6\x62\x42\x89\x02\x49\x39\x0d\x90\x1f\x3f\x50\xb4\x2c\x3a\x76\xfb\xc5\xbe\xe3\x3d\xf7\xfe\xa2\xf9\xd5\xf5\x0c\x3e\x5c\x40\x53\x2a\xab\x0c\x79\xe2\x39\xa9\x68\x4d\xd7\x1c\x4d\xb3\xc9\xd7\xd9\xb2\x93\xa9\xa2\xa2\x35\xfa\x94\x39\x66\xad\x10\xca\xee\x6e\x17\x77\xb7\x8e\xcb\x5b\x21\x0b\x74\x93\xdd\x2d\x27\x9d\x19\xa3\x19\x42\xd3\xd9\xdf\xab\x45\xb6\xec\x00\xbf\x9f\x9f\x9f\xa3\x9b\xcf\x57\xcb\xd9\xd4\xb1\x71\x9c\x98\x92\x6a\x5e\x6c\xdf\x56\x93\x6c\xf1\xcd\x09\xa2\xb1\x37\x8a\x7b\x39\x62\xad\xd6\xbc\xb6\xab\x42\x68\x0f\x30\x25\x97\x12\x9a\xa7\x02\x23\x8f\x59\xdd\x0b\xc9\x0d\x38\xd9\x93\x90\x05\xa3\xba\x80\x68\xec\x0d\xe3\xe4\x34\x39\xdd\x01\x99\x6a\x9e\x03\xf4\xbd\xd2\x9c\xb2\x12\x1a\x6a\xcb\x33\x67\x78\xb0\x86\x1d\xdf\xe6\xc6\x06\x96\xce\x7a\xb2\x8b\xb6\xe3\x9d\x26\xc6\x18\x21\xa6\x6a\x4b\x45\xcd\xf5\xaa\xa6\x15\xef\xac\xbb\x92\x62\xd2\x55\x86\xeb\x00\xf0\xa4\xf4\xa3\x4b\xe6\x02\x12\x47\x8a\x7a\x8d\xa8\x5e\xaf\x72\x6a\x9c\xde\x77\x34\x22\x44\x57\x40\x88\xa8\x2d\xd7\x94\x59\xb1\xe1\x40\x88\xb5\xcf\x5e\xd6\xab\x47\xe3\x03\x93\xd8\x23\x0c\x67\xad\x16\xf6\x99\xa8\xc6\x82\xa4\x39\x97\x17\x85\x30\x34\x97\xbc\x73\xd4\xb4\xb9\x14\xa6\xf4\xbe\x00\x08\xe9\x1f\xa2\x71\xdf\x31\x9c\x06\x74\xa7\xb4\x51\xb2\xad\xfa\xf8\x36\xce\xf9\xd0\x16\x9c\xec\xba\x96\x1e\x8b\x6a\x10\xff\x4c\xdb\x0f\xce\x4f\xb5\xb7\x62\xf8\x8e\x50\xbc\xf8\x9c\xcd\xbf\xa5\x50\xf0\x7b\xda\x4a\x8b\xb6\xff\xa9\x9f\x40\x10\xb5\xb1\x54\xca\x01\xc7\x24\xa7\x35\xea\x7e\x53\x34\x8a\xc6\xcb\x6b\x0c\x44\x0f\x63\x06\xf1\xce\x23\x0a\xb4\xfa\xb7\x40\x6c\xb9\xb1\x43\x17\xd3\x57\x92\xd0\xce\xbe\xa4\x73\xeb\x97\x08\x83\xa8\xe8\x9a\xbb\x28\x1b\xce\xec\x5e\x0b\xdd\xd8\x60\xf8\xed\xfd\xdb\x77\xf0\x3e\x29\xf8\x26\xa9\x5b\x29\xe1\xe5\x05\x74\x15\xd8\x76\x0f\xfc\x87\xb0\x70\x1e\x78\x49\x61\xaa\xd8\x23\xd7\x6e\x70\xa1\xa1\xec\x91\xae\x79\xfc\x60\x54\x0d\x5a\x49\xd9\x36\x0e\x79\x2f\xd6\xf1\x83\x09\x43\xf1\x05\x23\xc4\xd2\xf5\x91\x40\x08\xa9\x15\x61\x94\x95\x1c\x62\x34\xb2\xaa\x65\x25\x44\x97\xc8\x2f\xf5\xc7\xbb\xc9\xd7\x59\xb7\xd6\xa5\xb5\x8d\x49\x93\x24\xa7\x05\xc9\xd5\x33\xc9\x5b\xf6\xc8\x6d\x5c\x51\x17\x8e\xd2\x8c\xc7\x42\x25\xae\x0a\xef\x12\x34\xc9\xe6\xb7\xcb\xec\xaf\xd5\x6c\x3e\x5d\x64\x5f\xe6\x3b\xfd\x34\x49\xa4\x62\x54\x96\xca\xd8\xf4\x0f\x77\x27\x86\x26\x6f\xd0\x1b\xb8\xb1\x54\x5b\xa0\x8e\xe3\x52\x35\x15\xaf\x2d\x18\xae\x37\x5c\xa3\x82\x6f\x52\xd8\xcd\x47\x72\x1a\x9c\x0f\x51\x17\xfc\x47\x5c\xda\x4a\xc2\x6e\xb3\x87\xf5\xc7\xf0\x32\x34\x19\x8d\x38\x2b\x15\x9c\x1c\xc3\x9d\x84\x25\xd3\x6d\x0d\xd1\xb8\x5f\x56\xbc\xa5\xb7\xeb\xd3\xb3\x7e\x53\xba\x51\x1f\x1d\xd4\x15\xa1\x63\x11\xa6\xe0\x69\x5b\x35\xd2\x93\x8e\x8a\xd7\x0a\x8d\xaa\x6e\xd7\x49\x03\xd1\xf8\x72\x8a\x5d\x30\x9f\x32\x1f\x48\x88\x03\x62\x21\xfa\x13\x88\x82\xe8\x12\x08\x85\xe1\x76\xf5\xce\xce\x5e\x1d\x2f\x9c\x00\x61\x10\x8d\x5f\x37\x05\x03\xc9\xb7\x87\xc0\x77\x19\x03\xb1\xc2\x4a\x0e\x27\xff\x16\x7c\xf3\x1f\x5c\x77\x5f\x85\x13\x84\xe2\x9b\xd9\x24\x9b\x4f\x67\xff\x2c\xae\xe6\x37\x5f\xb2\x79\x8a\x8e\xd5\x2f\x85\x68\x17\xcc\xc1\xf9\x0c\x4f\x6b\x74\x89\xe1\x75\xba\xf0\xf6\x2d\xb0\x06\xa2\x0f\x2e\xad\x60\x3d\xf7\x77\xfd\x0d\x7c\xec\xf8\x27\x61\xcb\xed\xc4\xa3\x0e\x91\x06\xf9\xfb\x8f\x99\x5b\x81\x23\x6f\xfb\x33\xb4\x37\x19\x87\xf5\xff\xf5\x30\xfc\xb2\xfb\x50\x37\x55\xa7\xe7\x3f\x97\xdb\x04\xb6\xf9\xa0\x91\x4b\xf5\x30\xb8\xe0\x03\xf4\x60\x82\x3c\x8e\xc2\x99\x09\xf1\xcc\x98\x40\x80\xd0\xff\x01\x00\x00\xff\xff\x2e\x9b\x73\xb0\xe5\x07\x00\x00")
2020-08-23 00:21:56 +08:00
func manageMakefileBytes() ([]byte, error) {
return bindataRead(
_manageMakefile,
"manage/Makefile",
)
}
func manageMakefile() (*asset, error) {
bytes, err := manageMakefileBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/Makefile", size: 2021, mode: os.FileMode(420), modTime: time.Unix(1598113365, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6e\x23\x37\x0c\xbd\xeb\x2b\x88\xe4\xb0\xeb\x85\x23\xe7\xd2\x8b\x6f\x5d\xa0\x68\xf7\x52\x14\xdd\x5c\x0a\xa3\xc0\xc8\x23\x7a\xa4\x58\x23\x4e\x45\xca\xee\xfc\x7d\x41\x29\x4e\xb3\x8b\x00\x8b\x39\x8d\x44\x3d\xbe\xc7\xf7\x68\xee\xe1\xc0\x17\x4c\x82\xe0\x96\xe5\xef\x8f\x41\x64\xe1\xfd\x6e\x37\x45\x09\xf5\x68\x47\x9a\x77\xfd\xfa\x99\x77\x82\xf3\x92\x9c\xe0\xc6\x98\xfb\x7b\xf8\x15\x05\x58\x5c\x11\xf4\xc6\x7c\xc9\x2c\x2e\x25\x90\x80\xe0\x71\xc1\xec\x31\x8f\x11\xd9\x5a\x6b\xcc\x30\x0c\x47\xc7\xc1\xe4\x65\x86\xd8\x0b\xf5\xcc\x18\x6b\xad\x04\xcc\x1d\x06\x0e\x7f\x52\x4a\xf5\x0d\x87\xd2\xfe\x9f\xd9\x52\x99\x36\xfb\x6f\x71\x4a\xcd\xe0\xf1\xd2\x71\x7e\x77\x97\x38\x39\x41\x10\x82\x43\xa2\xd1\xa5\x40\x2c\xfb\x9f\x1e\x1f\x1f\x3b\xda\x7e\xb7\xfb\xf6\x78\x63\xe1\x2f\xaa\xc0\x81\x6a\xf2\xc0\x88\xb0\x52\x2d\x3a\x02\x45\xce\x31\x4f\x16\x7e\xf1\x51\xc0\xc1\x48\xf3\x42\x19\xb3\xc0\x29\x26\x84\x98\x61\xe0\x32\x0e\x5b\x60\x77\x41\x88\xb2\x05\x97\x3d\x14\x4c\xe4\x7c\xd3\xbf\xb8\xa9\x31\x79\x45\x1d\x83\xcb\x13\xb2\x35\xe6\xf3\x0a\x1e\x4f\xae\x26\xd9\xb6\x52\xc6\x72\xc1\x02\xd7\x98\x12\x50\x4e\x2b\x14\xe4\x85\xb2\xd7\xe7\x05\xff\xa9\xc8\xc2\x70\x2a\x34\xc3\x2b\x7d\x0b\x4f\x04\x2e\x25\xba\xc2\x48\x39\xe3\x28\x91\xf2\x4b\x11\x49\xc0\xd2\x08\x57\xc1\xc2\x5b\x40\x95\xa0\x8d\x06\x8e\xe5\x32\xe8\xd5\xec\xb2\x67\x55\xb1\xb8\xf1\xec\x26\xb4\xcf\x4c\x59\xfb\xc5\x3c\xa6\xea\xb1\x95\xd3\xa2\xa8\x30\x3c\x3c\x68\x4b\x78\xb4\xed\x1b\xac\x69\xce\x7f\xae\x31\xf9\x98\xa7\x2e\xbc\x8f\xab\x21\x16\xf2\xb5\xf1\x81\x99\x3c\x1a\xf3\x44\x30\x16\x54\x63\x5c\x6e\x98\x73\x64\xf4\x70\xc1\xc2\x5a\x44\xa7\xd6\xcc\x2d\xcb\x3b\xe6\x1e\xb5\x49\xb7\x57\x9d\x1a\x5d\x6e\xc7\xfa\x20\xe3\x35\xad\xad\x40\x9a\x63\xd7\x28\x01\x86\xdb\xc3\x16\xa6\xc1\xc2\x53\x88\x0c\x95\x91\xe1\xa0\xe2\xdf\x8d\x76\xaa\x67\x44\xbf\xd3\xfb\xcd\x16\xae\x21\x8e\x01\x22\xdf\x46\xe1\x55\x54\x73\xf0\xed\xac\x3e\x30\x0c\x6f\x23\x3e\x00\x13\x48\x70\x72\x13\xd3\xed\xbc\x52\x39\xc3\x55\xd3\xbd\x52\xd5\x9d\x48\xb4\xea\x98\x75\x83\x4e\x54\x66\x86\x14\xcf\x08\x87\xdf\xb0\xd0\xb9\xfe\xcf\x2e\xb4\x7f\x65\xb7\x79\x19\xf7\xd7\x98\xa7\x84\x0f\x2d\x56\x0a\xdf\x67\xfb\x36\x4a\xca\xff\x07\x21\x6a\x04\x67\x27\x63\x68\x31\x6e\x09\x18\x96\x7a\x4c\x71\xbc\xcd\x2a\xb2\xbe\x98\xdd\xbf\xcd\xa6\x16\x23\x27\xf1\x18\x53\x94\xb5\xcf\x98\xc5\x49\x1c\x3b\x40\x4b\x2e\x6f\x7b\x14\x35\x00\x2a\x53\xe8\xa6\xf4\x75\x9d\x5c\x5e\xaf\x01\x0b\x5a\x63\xbe\x9c\xf4\xf8\x43\xc1\x6e\x6e\x4b\x10\xf0\x77\xea\x3e\x7e\xfd\xe3\xe7\x4d\x6f\x37\xd7\x24\x71\x49\x08\x85\xaa\x20\xbf\xe8\xcc\x88\xbe\x31\x3d\x22\xb8\x63\xc2\x2e\xf3\x9d\xb5\xa1\x02\x9f\x5c\x5e\x3f\xc1\xe2\x24\xf4\x7d\xd7\x14\xcd\xee\xac\x6b\xab\xae\x1d\xd7\xb6\x21\x4a\xa4\x2d\xc9\x5d\xcb\xce\xdd\xeb\x9e\x7c\xbf\x26\x3d\xa6\xcf\x6c\x5e\x0a\xf7\x70\xd7\x28\xf5\x39\xc2\xc3\x43\x17\x73\xd7\x63\xfb\x5f\x00\x00\x00\xff\xff\xc7\x66\xcb\x54\x5b\x05\x00\x00")
func manageReadmeMdBytes() ([]byte, error) {
return bindataRead(
_manageReadmeMd,
"manage/README.md",
)
}
func manageReadmeMd() (*asset, error) {
bytes, err := manageReadmeMdBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/README.md", size: 1371, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x3d\x6f\xc3\x20\x10\x86\xe7\xf8\x57\x50\xe6\xda\x24\x5b\x14\x81\x97\x7e\x6c\x55\x3b\xa4\x43\x55\x75\x38\xc3\x25\xd0\x60\x88\xb8\xab\x23\xff\xfb\xca\x76\x9b\xb9\x9d\x10\x2f\xf7\xf0\xa2\x07\x7d\x73\xff\x7c\xb7\x7f\x7b\x79\x10\x9e\xfb\xd8\x56\x7a\x5a\x44\x84\x74\x34\x12\x93\x9c\x02\x04\xd7\x56\x2b\xdd\x23\x83\xb0\x1e\x0a\x21\x1b\xf9\xba\x7f\xac\xb7\xf2\x9a\x27\xe8\xd1\xc8\x21\xe0\xe5\x9c\x0b\x4b\x61\x73\x62\x4c\x6c\xe4\x25\x38\xf6\xc6\xe1\x10\x2c\xd6\xf3\xe6\x56\x84\x14\x38\x40\xac\xc9\x42\x44\xb3\x69\xd6\xf3\x3d\x1c\x38\x62\xfb\xee\x70\xf8\x10\x4f\x90\xe0\x88\x5a\x2d\x59\xb5\xd2\x31\xa4\x93\x28\x18\x8d\x24\x1e\x23\x92\x47\x64\x29\x7c\xc1\x83\x91\xe4\xa1\xa0\x53\x96\x48\x75\x40\xd8\x58\x22\xf9\x0f\xe6\x08\x31\x62\x19\xff\x84\xf5\xf3\xbb\x7e\x47\xab\x95\x26\x5b\xc2\x99\x05\x15\x7b\x3d\xfc\x24\x29\x1c\x1e\xb0\x08\xa0\x31\xd9\x56\xab\x65\xa8\xad\xb4\x5a\x5c\xea\x2e\xbb\x51\x38\x60\xa8\xbb\x2f\x7b\x9a\x74\x7a\xe6\x33\xed\x94\xea\xc0\xd5\x5d\x1e\x7f\xf2\xa6\x87\x13\x96\x43\x2e\x16\x9b\x90\x15\x23\xf1\x46\xc9\x85\x9c\x0c\x97\x1c\x17\x74\xa7\x54\xcc\x16\xa2\xcf\xc4\xbb\xed\x7a\x3d\x19\xd5\x6a\xaa\x99\x5b\xe7\x9f\xfd\x0e\x00\x00\xff\xff\x07\xc6\x46\xfc\xea\x01\x00\x00")
func manageBuildIndexHtmlBytes() ([]byte, error) {
return bindataRead(
_manageBuildIndexHtml,
"manage/build/index.html",
)
}
func manageBuildIndexHtml() (*asset, error) {
bytes, err := manageBuildIndexHtmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/index.html", size: 490, mode: os.FileMode(420), modTime: time.Unix(1602422892, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildManageCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe2\xd2\xd7\x52\x56\x28\xce\x2f\x2d\x4a\x4e\xf5\x4d\x2c\x28\xc8\xcc\x4b\x0f\x0d\xf2\xb1\xcd\x4d\xcc\x4b\x4c\x4f\xd5\x4b\x2e\x2e\xd6\xcb\x4d\x2c\x50\xd0\xd2\x07\x04\x00\x00\xff\xff\x86\x0f\x67\x80\x27\x00\x00\x00")
func manageBuildManageCssBytes() ([]byte, error) {
return bindataRead(
_manageBuildManageCss,
"manage/build/manage.css",
)
}
func manageBuildManageCss() (*asset, error) {
bytes, err := manageBuildManageCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/manage.css", size: 39, mode: os.FileMode(420), modTime: time.Unix(1602425982, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildManageCssMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\x2a\x4b\x2d\x2a\xce\xcc\xcf\x53\xb2\x52\x30\xd6\x01\xf1\xd3\x32\x73\x52\x95\xac\x14\x94\x72\x13\xf3\x12\xd3\x53\xf5\x92\x8b\x8b\x95\xc0\xe2\xc5\xf9\xa5\x45\xc9\xa9\xc5\x4a\x56\x0a\xd1\xb1\xc8\x02\xce\xf9\x79\x25\xa9\x79\x25\x08\xf1\xbc\xc4\x5c\x64\x65\xb9\x89\x05\x05\x99\x79\xe9\x20\x11\x25\x25\xae\x5a\x40\x00\x00\x00\xff\xff\x38\xf3\x13\x44\x74\x00\x00\x00")
func manageBuildManageCssMapBytes() ([]byte, error) {
return bindataRead(
_manageBuildManageCssMap,
"manage/build/manage.css.map",
)
}
func manageBuildManageCssMap() (*asset, error) {
bytes, err := manageBuildManageCssMapBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/manage.css.map", size: 116, mode: os.FileMode(420), modTime: time.Unix(1602425982, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildManageJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x73\xe3\x36\x93\x28\xfc\xd9\xf9\x15\x1d\xad\xdf\x88\x9a\xa1\xa9\x8b\x3d\x37\x39\x9a\xd9\x64\x92\x7d\x36\xb5\x99\x4c\x2a\x33\xcf\x6e\xbd\xe5\x75\x69\x60\x11\x92\x18\x53\x24\x43\x40\xb6\x15\xc7\xe7\xb7\x9f\xc2\x95\xb8\x51\x92\x3d\x97\x93\x73\x99\x4a\xc5\x22\x01\x34\x1a\xdd\x8d\xee\x46\xa3\x01\x7e\x15\xcd\xd7\xc5\x8c\x66\x65\x11\xe5\x31\xd4\x3d\xb8\x85\x6c\x0e\x51\x9e\x2c\x30\xfd\x31\xc7\x2b\x5c\xd0\xef\x37\x3f\xa5\x51\x37\xcf\xae\x70\x8d\xf3\x12\xa5\x64\x56\x67\x15\xed\xf6\x7a\x50\x63\xba\xae\x8b\x53\xa8\x61\x02\x79\x32\xab\x31\xa2\x58\x36\x8a\xba\xaa\xda\x29\xd4\x09\x22\x9b\x62\x06\x13\x18\xb2\x07\x52\xb3\x9f\xdd\x7e\xbf\x0b\x8f\x21\xba\xce\x8a\xb4\xbc\x4e\xf2\x72\x86\x18\x16\xc9\xb2\x24\x14\xfe\xfa\x0b\xba\xec\x4d\xce\x9e\xba\xbd\x84\x54\x79\x46\xa3\xee\xb8\xdb\x3b\x1b\x9c\xc3\x63\xe8\x8e\x8f\x9f\x3c\x1b\xbd\xe8\x37\x48\x25\xbf\x93\x57\xa4\xc8\xaa\x2b\x5c\x4f\x86\x5d\xd6\x4d\x96\xb2\x5e\x3c\xb4\x4f\xc1\x1c\x1b\xf9\x7e\xf3\x1e\x2d\x7e\x41\x2b\x1c\x75\x97\x18\xa5\xbc\x83\x04\x55\x15\x2e\xd2\xd7\xcb\x2c\x4f\xa3\xba\x07\x77\x3d\x85\x65\x5a\xce\xd6\xac\x59\xef\xf4\xab\x2b\x54\x03\xaa\x2a\x98\x80\xa6\x20\x44\x3d\xb8\xfd\x0a\x00\xa0\xbb\x26\x18\x08\xad\xb3\x19\xed\x9e\x7e\xc5\x5f\xe9\x4a\x45\x59\x56\xac\x22\xdc\xd9\xef\x33\x32\xad\xea\x72\x95\x11\x1c\x5d\xa1\x7c\x8d\x15\x2c\xf6\x4f\x10\x1a\xf8\x7b\xf8\xe6\x1b\xa0\x9b\x0a\x97\x73\xf9\x3c\x99\x4c\xa0\x5b\x5e\xfc\x8e\x67\xb4\xeb\x16\x26\x74\x89\x0b\x51\x43\x75\xd4\x3d\xe5\x60\x9d\xde\x51\x9a\x4e\x15\x0f\x22\x2c\x88\x13\xc3\x3c\xcb\x71\x0c\x79\x56\xe0\x18\x66\x65\xbe\x5e\x15\x31\xcc\x96\xa8\x36\x71\x93\x95\x93\xe9\x94\x5c\xe1\x9c\xe2\xe9\x0a\x53\x04\x13\xa3\x06\xfb\x97\x97\xb3\x31\xdc\xb6\x02\x94\xe8\x70\xc4\x82\xf8\xd5\xeb\x22\x9a\x17\x01\x9a\xcc\x8b\xa8\x17\x6c\x71\x91\xa3\xe2\x72\x2a\xe8\x12\x05\x1a\xbe\xe5\x25\x52\x6a\xa3\x62\x9d\xe7\x61\x38\xf5\xba\x98\xa2\x3c\x8f\xe6\x05\x31\xa1\xcc\x0b\x92\xcc\xcb\xfa\x47\x34\x5b\x46\xf5\xba\x08\xb7\xcd\xc8\x54\x4f\x2f\xba\xcc\x8a\x45\x00\x0f\xc9\x2e\x5e\xbc\x0f\xa7\x08\x9a\xe3\x69\x51\xd2\x29\xfe\x63\x8d\xf2\x08\xc5\x70\x11\x80\x8a\xe0\xeb\x09\x20\x78\x05\x17\x30\x99\xc0\x05\x8c\xf9\x1b\xf6\xeb\xaf\xbf\x20\x8a\x90\x21\x28\xc8\x92\xa0\x1e\xab\x60\x97\x68\x7c\x5a\x07\x89\x57\x15\xdd\x44\xe5\xc5\xef\xed\x74\xbe\xc4\x1b\xc2\x6b\x24\x39\x2e\x16\x74\xc9\x41\x0f\x14\x40\x47\x18\xf9\xfc\x8b\x28\xaa\x17\x98\xc6\x50\x94\xa9\x35\x1b\xc4\x7b\x6b\x96\xf2\x2a\x61\xec\x0a\x82\x6b\x6a\xc1\x8a\x01\x15\xb3\x65\x59\x07\x60\x8a\xda\xdf\xe3\x79\x59\xe3\xc8\xac\xcb\xa8\xd2\x2e\x23\x29\xa6\x4c\x0e\x5c\x44\xd9\x73\x52\xa1\x1a\x17\xf4\x17\xf6\xb3\xc6\xab\xf2\x0a\xef\xc2\x38\xc5\x84\xd6\xe5\x66\x8a\x19\xc8\x8c\xe2\x9a\x4f\x4a\x12\xcb\x5e\x1c\x29\x9a\x97\x35\x44\x39\xa6\x90\x01\xa3\x27\x64\xf0\x2d\x34\x8d\x24\xb1\xd9\xeb\xc7\x13\x18\xf6\x9c\x59\xc9\x54\x7d\x53\xf9\x2c\x3b\xef\x59\xc5\xbc\x8a\x59\x9c\xa4\x51\x83\xc4\x69\x33\x65\x43\xc3\x90\x7a\x21\x2a\xd0\x2a\xa4\xcb\x94\x2a\x75\xcc\x06\xaf\x1d\x24\x0b\xc5\x37\x34\x4a\x11\x45\xbb\x81\xbd\xc7\x37\x9c\xe0\xa2\x7a\x78\x16\x55\x68\x86\x43\x6a\x81\x77\xd3\x85\x16\x59\x17\x82\xde\xda\xac\xa5\x15\xa2\xb4\x56\xd2\x44\x69\x9d\x5d\xac\x29\x8e\xc1\xd3\xf2\x8c\x1b\x4a\xa5\x0b\x61\xb3\xb8\x51\x34\x22\xf4\x9d\x82\x12\x69\x78\x06\x3b\x70\x4e\x30\x07\xc6\x5b\x2c\x30\x0d\x55\xe7\xda\x40\xa0\xe0\xf7\x42\x82\x6d\x14\xca\xc1\x31\xce\x98\x54\xd7\x58\x1b\x8f\x00\x8d\xbe\xab\x6b\xb4\x49\xe6\x75\xb9\x52\x95\x12\xde\x8a\xb1\x8a\xb4\xb0\x09\xd3\x29\xa1\x9b\x5c\x4d\xc6\x4b\xbc\x91\x58\xc4\x90\xad\xaa\xb2\xa6\xc8\xee\x4a\xa0\xcf\x5a\xb0\x41\xfc\x5a\x97\x15\xae\xe9\x26\x0a\xb6\x83\x57\xd0\xd5\x0f\x5d\x18\x43\x1b\xff\x66\x6b\x42\xcb\xd5\x14\x5f\x31\x09\x65\xba\x51\xcc\xc5\x2c\x37\x7b\x9e\x95\x05\xa1\x80\x61\xe2\x89\x36\x6f\xd6\x7d\xcd\x81\xf0\x87\xae\xc9\xac\x24\x2b\x32\x6a\x14\xca\x0e\xe6\x28\x27\xcd\x1f\xd9\xdd\xa9\x4b\x52\x6c\x29\x50\xa6\x06\x66\xeb\x9a\xe9\x9b\xe9\xac\x5c\x55\x65\x81\x0b\x7a\xea\x53\xd4\xab\x13\xe9\x5f\xd6\x88\xdc\x6a\x30\x01\x07\xac\x43\xa8\x45\x10\xb8\x2b\xe3\x5f\x7b\x55\x6c\x11\xa4\xcb\xba\xbc\x86\x02\x5f\xc3\x8f\x75\x5d\xd6\xd1\x87\x7f
func manageBuildManageJsBytes() ([]byte, error) {
return bindataRead(
_manageBuildManageJs,
"manage/build/manage.js",
)
}
func manageBuildManageJs() (*asset, error) {
bytes, err := manageBuildManageJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/manage.js", size: 53110, mode: os.FileMode(420), modTime: time.Unix(1602425982, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildManageJsMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xbd\x8d\x7a\xdb\x36\xb2\x30\x7c\x2b\x88\x8f\x4f\x44\xd5\xb4\x64\x27\xfd\xd9\x48\x71\xb2\xb2\xec\xb4\xd9\xb6\x9b\x6e\xd3\xfd\xe9\x89\xf3\xc9\x94\x04\x49\x8c\x29\x92\x25\x21\xff\xc4\xd1\x79\xbe\x8b\xf8\xae\xf0\xbb\x92\xf7\xc1\xe0\x7f\x00\x4a\x72\xb6\xbb\xe7\xbc\x6a\x1f\x87\x04\x81\xc1\x60\x30\x18\xcc\x0c\x06\xc0\xfd\xde\x35\xad\xea\xb4\xc8\xf7\x7a\x4f\xe3\xbd\x59\x9a\xd1\xbd\xde\xde\x32\xc9\x93\x39\xed\x7c\xa8\xf7\xe2\xbd\xba\x58\x55\x13\x5a\xef\xf5\xde\xed\x75\x3a\xdd\xbc\x98\xd2\xd1\xb2\x98\xae\x32\x5a\x77\xeb\x6b\x9a\x31\xda\x4d\x73\x46\xab\x3c\xc9\xba\x69\x3e\xa5\xb7\x9d\x25\x14\x6b\xc8\x5b\xb3\xa2\xa2\x38\x63\x5d\x4d\xc4\x87\xba\x63\x27\x2d\x18\x2b\x25\x0e\x8b\xa4\xa2\xd3\xee\x87\xba\x3b\x4f\xb2\x8c\x56\x77\x4e\xbe\x9f\x16\x05\x2b\x3a\xa2\x02\x93\xfa\xad\xcc\x89\xd3\x07\x65\xe9\xa5\x2d\x93\x34\xe7\x20\xdf\xeb\xe6\x0e\x8b\x9c\xd1\x9c\xf1\x56\xcf\x56\xf9\x84\xa5\x45\x4e\xf2\xa2\x28\xa3\x36\xb9\x27\xeb\x8b\x7c\x52\xe4\x35\x23\xe9\x94\xe6\x2c\x65\x77\xe4\x84\xdc\x92\x93\x17\xe4\xb6\x7f\x91\xeb\xec\x49\x5d\xa7\xf3\x3c\x62\x49\x15\x93\xba\x9a\xb4\xc9\xfd\x45\x4e\x08\x21\xdd\x2e\xf9\x23\xab\x0f\xd3\x79\x5e\x54\x54\x24\xcd\x8a\x8a\x44\x02\xe4\x15\x49\x73\xc8\x2e\xbe\xf0\x1f\x4b\xaa\x77\x57\xef\xc9\x09\x4f\x7e\x77\xf5\xbe\x2f\xbe\x54\x94\xad\xaa\x9c\x7f\xec\x5f\xe4\x6b\xab\xde\xb4\x1e\x95\x55\xb1\x4c\x6b\x1a\x5d\x27\xd9\x8a\xea\x8a\x65\x09\x48\x24\x8f\x1f\x13\x76\x57\xd2\x62\x26\xdf\x4f\x4e\x4e\x48\xab\x18\x7f\xa0\x13\xd6\xc2\x1f\x3b\x6c\x41\x73\x91\x43\xd5\xd2\x42\x95\x26\xd3\xe9\x28\x2b\x26\x09\x7f\x89\x68\x46\x97\x34\x67\x31\xe1\xec\x14\x93\x2c\xcd\x69\x4c\x26\x45\xb6\x5a\xe6\x31\x99\x2c\x92\x4a\xa3\x24\x73\x76\x46\x23\xd1\x25\xa3\x25\x65\x09\x39\x51\x9f\xf9\x2f\x2b\x26\x3d\x72\xdf\x08\x8a\x77\x06\xcf\xb6\x46\x08\x55\xab\x3c\x9a\xe5\xb8\xed\xb3\x3c\x6a\xa3\x8c\xe3\x2c\xc9\xaf\x46\xa2\xe5\x11\xce\xff\x06\x92\x3b\x93\x8a\x26\x8c\x46\xf9\x2a\xcb\x70\xf1\x6a\x95\x8f\x92\x2c\x8b\x66\x79\xad\x0b\xcf\xf2\xba\x33\x2b\xaa\xf3\x64\xb2\x88\xaa\x55\x8e\x8b\xa4\xf5\x48\x3d\x47\x6c\x91\xe6\x73\x5c\xab\xa4\x3d\x7c\xdb\x4c\xf6\x3a\x99\xd1\x51\x5e\xb0\x11\xfd\x6d\x95\x64\x51\x12\x93\x31\x06\x96\x90\x47\x27\x24\x21\x2f\xc9\x98\x9c\x9c\x90\x31\xe9\x41\x0a\x7f\xfa\xf4\x89\x44\x51\x62\x75\x76\xe2\x70\x41\x9b\x67\x70\xbf\x68\x34\x70\x93\x3e\x13\x05\x9f\x30\x74\x59\xb2\xbb\xa8\x18\x7f\x68\xe8\x89\x2b\x7a\x57\xc3\xe7\x4e\x46\xf3\x39\x5b\x00\x5e\x47\x08\xce\x75\x92\xa5\xd3\x84\xd1\x11\x08\x95\x08\xfe\xc6\x24\x4f\x96\x66\x2c\xa4\x33\x22\xd2\x39\x6a\xbc\x5f\x2d\x32\x40\x7a\xa7\x5e\x8d\xeb\x49\x95\x8e\x29\xa0\x6a\x35\xdd\x66\x4e\xb6\xa8\x8a\x1b\x92\xd3\x1b\x72\x5e\x55\x45\x15\x5d\xb6\xf6\xef\x79\x3d\xeb\x16\x49\x6b\x4e\x15\x92\x08\x70\xe4\x26\x65\x0b\x92\x90\x96\x06\xdb\x22\x4b\xca\x16\xc5\xf4\xb2\x2d\x07\xf4\x1a\x75\xad\xca\xa8\xf0\xef\x74\x3a\x93\x24\xcb\xc6\xc9\xe4\xaa\x0e\xb4\xe3\x44\xb4\xc3\x41\x4f\xd2\x8e\x0b\x2e\x53\x09\xff\x47\xc8\x9a\x55\x5e\xaf\xc6\x5c\xae\xb8\x0d\x8e\x9c\x9a\x5c\x71\x03\x45\x3a\xf0\x57\x52\xe7\x25\x89\xda\x5c\xf6\x79\x5f\xa2\x36\xe9\x89\x54\xd4\x3d\x73\xca\x44\xcf\x8c\x40\xba\x08\xfc\x35\xde\x19\x65\x42\xea\xc8\x8a\x3d\x3a\x8c\x78\x6d\x52\x68\x91\x51\x3b\x42\x18\xaa\xb2\x76\x8d\x93\x62\x59\x16\x39\xcd\xd9\xc8\x40\xd3\x69\x31\x91\x80\x55\x9b\x35\x2a\x3a\x4b\x67\x7f\xbf\x53\xe4\xa3\x29\xad\x59\x55\xdc\x75\xca\x55\xbd\x88\x3c\xbc\x74\x71\x3c\x38\x84\xf4\x18\xd5\x59\xc1\xa2\x29\x9d\xa5\x79\xca\x93\x63\x32\x61\xb7\x31\xd9\xdf\xaf\x27\x45\x49\x63\x62\x09\x2b\xde\xa9\x26\xa3\xd3\xa3\xa2\xe3\x38\xa8\xd1\x84\xdd\x92\x13\x41\x4c\x78\xe5\x33\xd6\xed\x96\x1a\xfa\x1e\x6f\x98\xec\xef\x8e\xde\x47\x0a\x70\x03\x4f\x3e\xac\x32\x34\x82\xad\x9a\x8e\xdf\xf3\xe1\x36\xcb\x0d\x36\x2f\xd5\x74\x29\x01\x74\x26\xec\xb6\x53\x67\xe9\x84\x46\xed\xd8\x2d\x1a\xcd\xf2\x88\xa3\xd8\xb6\xa6\xc8\x1e\xb1\xca\x85\xd8\x0d\x90\x5e\x24\xf9\x9c\xd6\x0e\xd2\x1a\xdf\x69\x5a\xb1\xbb\x0d\xbd\xf0\xee\x89\xc4\x39\xd0\x1d\x19\x65\x35\x39\x21\x4e\x66\x8e\x25\xc0\x6c\xdb\x44\xe7\x30\x15\xa6\xf0\x15\xe4\xd7\x2a\x87\xa2\x74\xea\xc0\xb6\x48\xc7\x2b\xb0\xa0\xac\x5d\x80\x52\x6c\x09\x2c\x1c\x01\x8e\
func manageBuildManageJsMapBytes() ([]byte, error) {
return bindataRead(
_manageBuildManageJsMap,
"manage/build/manage.js.map",
)
}
func manageBuildManageJsMap() (*asset, error) {
bytes, err := manageBuildManageJsMapBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/manage.js.map", size: 96102, mode: os.FileMode(420), modTime: time.Unix(1602425982, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedCssBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\xd3\xda\x46\x0c\xc6\xcf\xf8\x53\x6c\x2f\x7d\x81\x61\x8d\x6d\xc2\x4b\xba\x9e\x4c\x73\xea\xa9\x9d\x5e\xda\x0f\xb0\xd8\xb2\xad\x64\xff\xcd\xae\x0c\x98\x4e\xbf\x7b\x67\x6d\x43\x21\x24\x37\x8f\x25\xed\xf3\x93\xf4\xe8\x33\x6a\x67\x3d\xb1\xde\xab\xe5\x5b\x47\xe4\x82\xd8\x6e\x1b\x6b\x28\xa4\xad\xb5\xad\x02\xe9\x30\xa4\x95\xd5\xdb\x2a\x84\xe2\xd7\x46\x6a\x54\xc3\xa7\xdf\x64\x1f\x08\x8d\x14\xe7\xb6\xa3\xcf\x1f\xb2\xac\xdc\xef\xb3\x9f\x6b\x0c\x4e\xc9\xe1\x53\x38\x4b\xf7\xb6\x2a\x93\x64\xbb\x4e\xd8\x9a\xfd\x6d\x90\x42\xc2\xd6\xdb\x24\x11\xde\x5a\x62\xff\x24\x0b\xce\x83\x93\x15\x9a\x56\xb0\x2c\xdd\x1d\xf6\x1e\x74\x99\xfc\x7b\xab\xf8\x6b\x70\xb6\xf5\xd2\x75\xc3\x54\xd6\x91\x56\xb1\x2a\x72\xf1\x09\x41\xb0\xb7\x1b\xc4\xdb\x86\x05\xf0\xd8\x94\x73\xc2\x19\xb0\xed\x48\xb0\x88\x95\x2c\x08\x2e\xc4\x3d\x98\x1a\xfc\x28\x67\x1d\xa1\xc6\x2b\xfc\x0e\x2d\x1e\x51\x21\x0d\xa3\xf0\xd1\xd6\x43\x94\xd0\xd2\xb7\x68\x04\xcb\x46\xa2\xf9\xc5\x80\x57\x10\x2c\x07\x5d\xb2\xed\x9a\xe5\xef\x8e\x22\xd6\x42\xa1\x01\xde\xcd\x6a\x79\x5a\x1c\x8a\xf1\xa9\x2e\xdf\xb0\xae\xd8\xb0\x6e\xb7\x61\xdd\x87\x0d\xeb\xf6\x1b\xd6\xbd\xdf\xf9\x6f\x78\xfb\x7d\x16\x05\xf8\x19\x8e\x5f\x91\xf8\x24\xa4\xad\xa5\x6e\xe4\x94\x86\x50\x2a\x94\x01\xea\x32\x59\x70\x6d\xaf\xdc\x86\xcb\x4b\x5a\xeb\x61\x08\x95\x54\x30\x4b\xdf\x65\x26\xe6\x22\xcd\xf6\x1f\xf3\x79\xb8\x5d\xf1\x4d\x34\x4f\xdf\xf3\x8f\xb7\xe0\xee\x25\x58\x1c\x8a\x5b\xf0\xb5\x8d\xd7\xa4\xb4\x46\x1d\xc3\x36\x6e\x96\x86\x71\xb3\xbb\xdd\xc3\x5a\xff\xb0\x0a\xaa\x5e\xc1\x6c\x86\xd4\x79\x50\x56\xd6\x50\x73\xea\x7a\x7d\x34\x12\xc7\x2d\xcf\x36\x12\xec\xa8\x6c\xf5\xb5\x4c\x16\xce\x06\x24\xb4\x46\x30\x0f\x4a\x12\x9e\xc6\x66\xbf\x5b\xee\xb0\xa2\xde\x83\x30\x96\x96\xdf\x4b\xe0\xa8\x65\x0b\xab\x28\xf3\xff\xab\xf2\x18\xac\xea\x09\xa2\x5b\xac\x13\x2c\xda\x46\x41\x43\xd3\xd7\x95\xa3\xa9\xe1\x22\x58\x1e\xd7\xf5\x0c\xc7\x7e\x9a\xce\x47\x1a\xfa\x11\xd2\xa4\xc8\x50\xb7\xe3\x6c\x8e\x5f\xa0\x22\xde\x20\x09\x56\xd9\x13\xf8\x87\xf1\xfc\xe9\x5b\x69\x30\xe8\x79\x3c\x46\x9e\x58\x3f\x0e\xc4\xc9\xba\x1e\x97\x7d\x92\x7e\x79\xbf\x9c\x55\xf9\xe0\xd6\x88\xa6\x30\x10\x0f\x34\x28\x10\xcc\x58\x13\xdb\xb9\xd3\x36\x0a\x2e\x65\xb2\xf8\x12\x2f\xa6\x19\x78\x65\x0d\x81\xa1\xe9\x3f\x07\x53\x8f\x18\xb3\xa2\xc2\xc7\x43\xf8\x56\xf3\x75\x3f\x4f\x86\xc8\xd2\x5f\xa2\x1d\x16\x0a\x88\xc0\x3f\x5e\x79\x76\x18\x03\xe3\x3d\x92\x97\x26\x34\xd6\x6b\xc1\x7a\xe7\xc0\x57\x32\xcc\x06\x06\x59\x83\x7f\x6a\x3a\xf7\xa0\x59\x25\x55\xb5\x7c\x46\x61\x6b\x56\xac\xc6\xa2\xff\x02\x00\x00\xff\xff\xd9\xd4\x91\x08\xc4\x04\x00\x00")
func manageBuildSharedCssBaseCssBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedCssBaseCss,
"manage/build/shared/css/base.css",
)
}
func manageBuildSharedCssBaseCss() (*asset, error) {
bytes, err := manageBuildSharedCssBaseCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/css/base.css", size: 1220, mode: os.FileMode(420), modTime: time.Unix(1598156756, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedCssEnlargeCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xdd\x8a\x22\x31\x10\x85\xaf\x93\xa7\xc8\xcd\x80\x2e\x46\x7a\x06\x64\x99\xce\xd3\xc4\xa4\xba\xbb\x98\x98\x0a\x49\xf9\x33\x2e\xfb\xee\x4b\xa2\xae\xab\xc2\x8e\x17\x03\xda\x74\x2a\xcd\xa9\xef\x9c\xaa\x25\xc4\x60\xf3\x08\xea\x97\x14\x89\x0a\x32\x52\xec\xd5\x80\x07\xf0\x46\x0a\xa6\xd4\xab\xce\x48\x11\x60\xe0\xd3\xdb\x1e\x3d\x4f\xbd\x7a\xed\xba\xdd\xde\x48\x31\x01\x8e\x13\x9f\xce\x93\x91\xe2\xa8\x31\x7a\x38\xb4\x82\x91\x82\x76\x90\x87\x40\xfb\x5e\x4d\xe8\x3d\x44\x23\xa5\xe0\x6c\xe3\xa5\x51\xb7\x5c\x15\x45\xc9\x3a\xe4\x4f\x23\xc5\xda\xba\x8f\x31\xd3\x36\xfa\x5e\xe5\x71\x6d\x67\xdd\x42\x9d\x7f\xcb\xf7\xd5\xdc\xc8\xdf\x52\x5e\x88\xb5\x0b\x54\x60\xa1\xfe\x9e\x8f\x44\x1b\xed\x28\x72\xa6\x50\xaa\x9f\x81\x22\xeb\x82\x47\xa8\x7d\xde\x61\xd3\x7c\x30\x43\xd6\xa5\x76\x8c\x63\xad\x77\x3f\xdb\x05\xc3\x81\x75\x23\x1b\x28\x6f\x7a\xb5\x4d\x09\xb2\xb3\x05\x1a\x71\xbd\x2c\x93\xf5\xd5\xc8\x6b\x3a\xb4\xff\x3d\x5f\xc5\x13\x8e\x02\xe5\x33\xfb\xdb\x6a\xb5\x50\xd7\xc7\xe9\x8b\x07\x03\x2d\x78\xeb\x7d\xc3\x71\x36\xb8\xd9\xce\xe6\x99\xbe\x20\xce\xd5\x0f\xf5\x36\xaf\x10\xff\x99\x4e\x3e\xcd\xa0\x7b\xc8\xff\xdf\x6e\x0f\xf1\x3c\x35\xee\x2f\xf4\x30\x2e\xee\x2a\xb4\xe5\xa7\x2d\x79\x2c\x29\xd8\xcf\x5e\x61\x0c\x18\x41\xaf\x03\xb9\x8f\x6b\x8a\x18\x27\xc8\xc8\x77\xa1\x51\x64\x88\x7c\xe7\x20\x43\xb0\x8c\x3b\x30\xe7\xf5\xaa\x43\xd4\x94\x71\xc4\xd8\x2b\xa6\xa4\xaa\xa3\x5b\xa1\x34\x11\xd3\xad\x8a\x5d\x17\x0a\x5b\x86\xaf\x36\xff\xe5\x76\xf1\x5f\xaa\xf0\x55\x37\x43\x20\xeb\xbf\x4f\xf9\x4f\x00\x00\x00\xff\xff\x70\x98\x64\x5b\xa3\x03\x00\x00")
func manageBuildSharedCssEnlargeCssBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedCssEnlargeCss,
"manage/build/shared/css/enlarge.css",
)
}
func manageBuildSharedCssEnlargeCss() (*asset, error) {
bytes, err := manageBuildSharedCssEnlargeCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/css/enlarge.css", size: 931, mode: os.FileMode(420), modTime: time.Unix(1598113428, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedCssGalleryCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcd\x6e\xea\x30\x10\x85\xd7\xf1\x53\xcc\x92\xa0\x6b\x08\xdc\xcb\xad\x9a\x6c\xfa\x2a\x13\x7b\x08\x53\x9c\xd8\xb2\xcd\x5f\x2b\xde\xbd\x72\x09\x6d\x40\xa0\xd2\x8d\x2d\x4b\x67\xbe\x33\x3e\xa7\xf4\xd6\x46\x78\x17\x99\x94\x0d\x1a\x43\xfe\x20\x83\x43\xc5\x5d\x53\xc2\x16\xfd\x48\x9e\x9f\x79\x35\xd4\xd4\x18\x48\xae\x88\x9b\x55\x2c\x61\xfe\xaf\x70\xfb\x4a\x1c\x85\x78\x69\x49\x33\x42\x50\x9e\xa8\x03\xec\x34\x8c\x5a\xdc\xcb\x1d\xeb\xb8\x2a\xe1\xb9\x28\xdc\x3e\x4f\x66\x5f\xae\x77\x91\xc5\x27\x32\x3b\xfe\x4c\x7d\x7a\x9c\x3a\xfb\xff\x30\x75\xf1\x0b\xea\x7c\x40\x9d\xf4\x92\x34\xe0\x50\xeb\x41\x90\x57\xf9\xa6\x40\x7b\x85\xf4\x27\x52\x51\x09\x91\x69\x0e\xce\xe0\xa1\x84\xa5\xa1\x84\x4d\x97\xdc\x79\x74\x25\xa4\xb3\x1a\xba\x48\x8e\xd4\x26\xab\x16\x7d\xc3\xdd\x99\x23\x8b\xc9\xa2\x6f\xe4\x52\xe9\x58\xc5\x8d\xa7\xef\x89\xfb\xbb\x0d\x16\xa9\x8d\x55\xeb\x1b\x34\x6e\x9b\x44\xba\xd6\x65\xe7\x60\x14\x1a\x35\xba\xe4\x0f\x82\xcb\x61\x0c\xb3\xc9\x3c\xaf\x60\x3a\x86\xbf\x29\x43\xe0\x00\x1d\x46\xde\x12\x04\x7e\x23\xb0\x1d\x68\x0a\xeb\x68\xdd\x9f\x53\x75\x37\x04\xad\xad\xd9\x10\x8c\xa7\x22\xeb\x9b\xc3\x4d\xb4\x95\xc8\x6c\xfd\x4a\x2a\xca\x25\xa7\x45\xec\x96\x7c\xfa\xc0\x47\x00\x00\x00\xff\xff\x00\x1d\x81\x7b\xee\x02\x00\x00")
func manageBuildSharedCssGalleryCssBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedCssGalleryCss,
"manage/build/shared/css/gallery.css",
)
}
func manageBuildSharedCssGalleryCss() (*asset, error) {
bytes, err := manageBuildSharedCssGalleryCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/css/gallery.css", size: 750, mode: os.FileMode(420), modTime: time.Unix(1598113428, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedCssManageCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe2\xd2\xd7\x52\x56\x28\xce\x2f\x2d\x4a\x4e\xf5\x4d\x2c\x28\xc8\xcc\x4b\x0f\x0d\xf2\xb1\xcd\x4d\xcc\x4b\x4c\x4f\xd5\x4b\x2e\x2e\xd6\xcb\x4d\x2c\x50\xd0\xd2\x07\x04\x00\x00\xff\xff\x86\x0f\x67\x80\x27\x00\x00\x00")
func manageBuildSharedCssManageCssBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedCssManageCss,
"manage/build/shared/css/manage.css",
)
}
func manageBuildSharedCssManageCss() (*asset, error) {
bytes, err := manageBuildSharedCssManageCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/css/manage.css", size: 39, mode: os.FileMode(420), modTime: time.Unix(1598113428, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedJsEnlargeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\xdd\x6f\xe3\xb8\x11\x7f\xb6\xff\x8a\x29\xae\x80\xe4\xc4\xb1\x9d\x2d\xee\x65\x53\x2f\x70\xc8\x06\xb8\x02\x2d\x5a\x5c\xb6\xd8\xdb\x2b\x8a\x0d\x23\x8d\x2d\xf6\x68\x52\x20\xa9\xd8\xde\x85\xff\xf7\x82\x1f\x12\x29\x99\xf6\x3a\x57\x1c\xd0\x27\x5b\xe4\x7c\xfc\xe6\x83\x33\x43\x09\x77\xb5\x90\x1a\x4a\x5c\x91\x86\x69\x28\x18\x51\x0a\x1e\x38\x23\x72\x8d\xf0\x75\x3c\x9a\x5f\x8d\x47\xb5\xc4\x15\xdd\xc1\x12\xb2\xef\x5e\x28\x6e\x6f\xb2\xbb\xf1\x08\x19\xc2\x12\x78\xc3\xd8\xdd\x78\x54\x30\xa1\xf0\xa1\xb7\x22\xb8\x46\xae\x55\x6f\xb1\xae\x84\x16\xfd\x15\x89\x4c\x90\x32\x5e\x1b\x8f\xbe\x08\xb1\x81\x25\x2c\xee\xc6\xa3\x9d\xff\xdd\xbb\xdf\xf1\x68\x23\x1a\x85\xef\xc5\x96\xc3\x12\x56\x84\x29\x34\x8b\xb5\x44\x85\xf2\x05\xcb\xc7\x42\x0a\xc6\x60\x09\x5f\x0f\x3d\xe1\xca\x2f\x8d\x47\xa2\x46\x7e\x6f\xd0\x7e\xa0\x1b\x14\x8d\x0e\x50\xae\xe6\x63\x0b\x5b\x69\xd9\x14\x5a\xc8\x1c\x19\x4e\xc1\x99\xbe\x6c\x0d\x9f\x18\x97\x8c\x74\x45\xd5\x4c\x55\x62\x4b\xf9\x3a\xe0\xf0\xeb\x9d\xb3\xdc\x9f\x6e\x3d\xb2\xca\x2d\xec\x7a\x4f\xfb\xde\x53\xc2\xcc\x20\x3e\x65\x6b\xb7\x79\x64\xb1\xdb\xe9\x0c\xfb\x28\x49\x5d\xa3\xcc\x27\x1d\xd3\x33\xe5\xe5\x2f\x42\x6c\xee\x05\xd7\x52\x30\x65\xb6\xe2\xbd\x47\xfa\x05\x07\xe4\x1f\x29\x2f\xc5\x76\x48\xf8\x41\x34\x45\x35\xa0\x7c\x2f\xc9\x7a\xb0\xe4\x80\x7b\x66\x64\x38\x33\x80\x78\x79\x5f\x51\x56\xe6\x96\x0a\x19\x1a\x96\x43\x1c\x90\x0e\x77\x88\x80\x4b\xc1\x52\x14\xcd\x06\xb9\x9e\x15\x12\x89\x36\x59\x68\x9e\xf2\xac\xa4\x2f\x59\x50\x6c\xf4\xd8\xdc\xfe\x2b\x55\x7a\x46\xca\x32\xcf\xd0\x25\xf9\x80\x48\xe9\x3d\xc3\x59\x49\x55\xcd\x88\x89\x49\xc6\x05\xc7\x2c\x41\x22\x6a\x52\x50\x6d\x49\x16\x59\x70\xc4\x97\xc8\x93\x0f\xaf\x00\x38\xe0\x3b\x01\xf6\xc6\x90\xdd\x14\x9e\x6e\x00\xfd\xc8\x8f\x03\x99\x96\x3a\xd6\xf7\x17\x7e\x1e\x21\x19\xe0\xb3\xf4\x67\x91\x51\x9e\x64\xa1\x9c\xa3\xfc\x80\x3b\x73\xdc\x32\x93\x6b\x70\x9d\x25\xc8\x2a\x89\x2b\x5b\x65\xb2\x93\x6e\x49\xda\x68\xb9\x27\xfd\x18\xfc\xbd\xd1\xaf\x33\xce\x31\x9c\xb5\x4e\x34\x3a\xcd\x74\x6c\xdf\x4d\x96\xa2\xfb\xad\x06\x3a\xf6\xc8\xc2\xa8\xe0\x5e\x62\x5f\x4b\x7e\xca\x3a\xbb\x9f\xa2\xef\x19\x66\xeb\x66\x76\x4c\x94\xb0\x2a\x99\x8e\x2d\xc3\xa4\x57\x96\xa2\x36\x71\xd9\x49\x89\x78\x4e\xda\xe3\x49\xbe\x75\x40\x22\x51\x11\xa8\x5e\x53\x3a\x85\x89\x6e\xd6\x91\xf4\xc0\x72\x0a\x92\xa7\x48\xf3\x28\x59\x18\x07\x66\x49\x1b\x8f\x50\x07\xc6\x18\x74\xe8\xad\x17\x42\xf6\x0c\x27\x01\x9b\xfd\x14\xfd\x2b\xc1\x7a\xb6\xb6\xa0\x1f\x77\x9b\x50\xd0\x43\x25\x20\x65\xf9\xf0\x82\x5c\x1b\x58\xc8\x51\xe6\x59\xc1\x68\xf1\x6b\x36\x85\x1c\x27\xb0\x7c\x67\x79\x46\x68\x5c\x61\xc8\xde\xbb\xe9\xc5\x35\x9a\x20\xeb\x07\x1d\x8e\x10\x5c\xc1\xf5\x62\xf6\xe6\xfb\x29\xd8\x25\xd3\xce\xcd\xe0\x63\x9a\xdb\x6c\x0b\x73\x78\x93\xda\xa8\xcc\x46\x24\xb4\x94\x64\xeb\x94\x1c\xa6\xae\x2f\x27\xcb\xc1\xef\x82\xfe\xe6\x77\x42\xdf\x06\xc5\xb5\xf9\x10\x8c\x28\x3d\x8f\xed\xb1\xa9\xec\x75\x36\x75\x49\x34\x5a\x8d\x46\x8e\x05\x3d\x39\x72\x4f\x97\x3e\xff\x9b\xb0\x16\x6d\x3b\x81\x58\xbc\x5b\xfb\x90\x90\x2c\x51\xd1\x2f\x68\xfc\x1e\xdc\x4e\x57\x90\xc7\x03\x9c\x13\xe1\x51\x06\xf5\x3e\x1a\x87\x13\xde\xf2\xb3\x0e\x7c\x1d\x87\x35\x37\xeb\x04\x0f\xf6\xce\xc5\x11\xb6\x5a\x50\xae\x51\x96\x62\xcb\x5f\x91\x18\xf1\x60\xa8\x65\x83\x61\x27\xd6\xe6\x26\x94\xa2\x91\x4a\x48\x73\x56\xd7\x92\x3c\x3f\x53\xbe\xce\xd2\xa9\x7b\x11\xd0\x8d\x78\xc1\xcb\x80\x76\x1e\xee\xc0\xf6\x7c\x5c\x13\x9e\xe3\xcc\x88\x33\x65\xe9\xe7\x29\x84\x87\x4f\x4e\xc0\x30\x5d\x8f\xa2\xf0\x0a\xd8\x4d\xfd\x1b\xbd\xdb\x8d\xdd\x97\xb9\xf7\xc8\xb5\xdd\xb9\xf2\xe3\x6e\x6f\x6e\x4d\xe0\xdd\x56\x88\xec\x32\xac\xf3\x39\xfc\xa0\x54\xb3\x41\x58\x35\x8c\x81\x2a\x24\x22\x1f\xd6\x0e\x9c\x95\xc8\x34\xf9\xe4\x4a\xc7\x62\xf1\x06\xae\xa0\xdb\x37\x4e\x2f\x18\x6d\xfd\xef\xfe\x7e\xba\xa8\x56\x98\x1b\xd4\x8f\x44\x55\xde\x22\x3b\xa0\x43\x45\x54\x05\x4b\xf0\x07\x91\x89\x82\x68\x2a\xf8\xcc\x2c\x1b\x19\x26\x23\xfe\x60\x1e\x66\x4a\x13\xa9\xd5\x47\xaa\xab\x3c\xba\x2d\x4d\x7c\x82\x84\x31\xc1\x5b\x2a\x51\x37\x92\x5b\x18\x9d\x2e\x5a\xc2\xd2\x2a\x9c\x49\xac\x19\x29\x30\x96\x34\x85\x2c\xea\x59\x06\x6b\x4e\xcb\x16\xfa\x96\xe8\xa2\x8a\xb0\x9f\xac\x1b\x46\x7a\x51\x1
func manageBuildSharedJsEnlargeJsBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedJsEnlargeJs,
"manage/build/shared/js/enlarge.js",
)
}
func manageBuildSharedJsEnlargeJs() (*asset, error) {
bytes, err := manageBuildSharedJsEnlargeJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/js/enlarge.js", size: 8079, mode: os.FileMode(420), modTime: time.Unix(1598113428, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedJsGalleryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xdf\x6f\xdb\x36\x10\x7e\x96\xff\x8a\x5b\x51\xc0\x52\x1d\xcb\x49\xb0\x01\x43\x5c\x77\x68\xbb\xac\x0b\xb0\xae\xc5\x5a\x74\x0f\x45\x80\x30\xd6\x59\x22\x4a\x91\x1a\x49\x59\xf6\x12\xff\xef\x03\x7f\xc9\xb4\xec\x6e\x18\xfa\x62\x58\xc7\xe3\xc7\xbb\xef\xbe\x3b\x12\x37\x8d\x90\x1a\x0a\x5c\x91\x96\x69\x58\x32\xa2\x14\xbc\x21\x8c\xa1\xdc\xc2\xc3\x28\x59\x0a\xae\xb4\x6c\x97\x5a\xc8\x14\x19\x66\xc6\x96\xe8\x8a\xaa\x1c\x19\xc2\x02\x90\xe1\x7c\x14\x4c\x25\x69\x60\x01\x17\x97\xf3\x60\xb8\x27\x0a\x7f\x45\x5a\x56\xda\xd8\xcf\xcf\xfb\x85\x35\xc5\xce\x1c\xfc\x27\x2d\x74\x65\xd7\x2e\xbf\x8f\x70\x24\xb9\x7f\x43\x9a\x34\x9b\xc7\x96\x57\x3d\xd8\x60\xe1\x53\x0c\x66\xd6\x46\x49\x32\x9b\xd9\x65\x89\x25\x55\x1a\x65\x70\x89\x76\x16\x92\x74\xf6\x73\x37\x1a\x25\xb3\x19\x5c\x6f\xb4\x24\x4b\x0d\x26\x89\x35\x61\x2d\xaa\x51\xd2\x07\x62\xd3\x9e\xcd\xe0\x03\xad\x1b\x86\x60\x7f\x6b\xe4\x9a\x68\x2a\x38\x68\x01\x65\x8b\x4a\xc1\x4a\x8a\x1a\x1a\x52\x14\x94\x97\x3d\x88\xe3\x10\x9a\x0d\x2c\xa0\xa3\xbc\x10\x5d\x5e\xa2\x7e\x2d\xea\xa6\xd5\x58\x7c\xd0\x5b\x86\x69\x60\x34\x33\x4b\xef\xa5\x68\x50\xea\xed\x27\x03\x90\x8e\x3d\xde\x94\xe1\x4a\x8f\xb3\x5c\x62\xc3\xc8\xd2\xd8\x37\xe3\x33\x18\x8f\x23\x2e\x2c\xfd\x0d\x91\x0a\x6f\xb8\x4e\x9b\x4d\x06\xcf\xe0\x12\x1e\x1f\xe1\xfc\x38\xcd\x7d\x69\x5c\x9a\x31\xbb\x36\xdb\x6f\x8c\x7a\x3a\x2d\x9d\x8a\xa6\xe6\xa4\x69\x65\xa1\xff\x35\xfc\x03\xb1\x1c\x64\x71\x3a\x83\xa0\x21\xe8\x4c\xdd\x5d\x16\x03\x29\xec\xd5\x3a\x14\x5c\x08\x3d\x5f\x32\x8a\xdc\x99\xf7\x47\xdc\xf0\x95\x90\x35\x88\x56\x02\xf2\x92\x72\x04\xb1\x3a\x3a\xef\x58\x5b\xf6\x38\x4f\x16\x29\x8a\xeb\x35\x72\xfd\x9b\xf1\xe1\x28\xd3\xb1\x44\x45\xff\xc6\xf1\x19\xa4\x19\x2c\x5e\x58\xdf\x84\xae\x20\x3d\x15\x5f\xcf\x39\xe5\x1c\xa5\x35\x3a\xf4\x24\x91\xa8\x5b\xc9\x0d\x6b\xc9\xce\xfc\x78\x9d\x2f\x5d\x65\x9c\xc0\x77\xf6\xf7\xab\x91\x30\x41\x8a\xc3\x38\xbe\x0e\xa2\x50\xdf\x70\x8d\x72\x4d\x58\x7a\xe8\x95\xdf\x53\x5e\x58\x5b\x76\x06\x3f\x9c\x9f\x87\x5e\x8a\x60\xf6\xfc\x7f\x6b\x4b\x9f\x68\x5a\x5b\xa9\xd7\x84\x2d\x5b\x46\x34\x42\x41\x6b\xe4\x8a\x0a\xae\x80\xf0\x02\x8c\x27\xe8\x0a\xeb\x51\xe2\x36\x45\xa2\x46\xd7\xbc\x2a\xd6\xc1\x5f\x2d\xca\xed\x07\x64\x68\x46\xdd\x4b\xc6\xd2\x71\x1e\x04\x4c\x35\xd6\x4e\xa7\x6e\xbb\xc4\xa5\xdd\xfb\x52\x4a\xb2\xcd\x4d\xcf\xa7\x01\x31\xcb\x6b\xd2\x84\x2f\xc3\xae\xd5\xf1\x2f\x4c\x10\x1d\xac\x79\x41\x34\x51\xa8\x73\x22\xb3\x08\x34\x0a\xdf\x47\xc5\xc8\x56\xb4\x3a\xb5\xa7\xb9\xa1\xe6\x3c\x7d\x58\x37\x1a\xeb\x6b\x86\xff\x3f\x89\x95\x90\x90\x3a\xa8\xcf\x94\x17\xb8\x39\x33\x84\xdc\x1a\x89\x0f\xa0\x73\xe4\x5a\x52\x54\x69\xe6\xc5\x37\x08\x15\x16\x51\xd8\x0e\xeb\x76\x1e\x64\xfd\x5d\xbf\x14\x94\x6b\x76\x0b\x86\x39\x4a\x29\x64\x7a\xf7\x96\x2a\x65\xe6\x64\x94\xb9\x09\x2d\x90\x47\x34\x3c\x7d\xb0\x98\xbb\x3b\x1b\xf7\xb1\xf4\xa3\x4c\x68\x5d\x5e\x33\xdb\xa6\xa7\x79\xa0\x75\x39\x0e\x59\x24\xce\x39\x57\x66\x88\xe5\x55\x18\x39\x77\x4f\x1f\xde\x12\x5d\xe5\x2b\x26\x84\x4c\xfb\xa8\xf2\x2a\xdb\x35\x9b\xbb\xf9\xf1\xce\xce\xcf\x92\xbb\xa7\x0f\x7b\xef\xae\x77\x36\x21\xee\xfa\x91\xf2\x1e\xa5\x9d\x29\xae\xaa\xa3\xe4\xa0\xba\x36\x2e\x86\x03\x15\x7c\xbe\xb5\x55\x37\xf6\x65\x2b\x65\x18\x53\xa1\xe0\x25\x69\xe6\x7e\x59\x69\x22\xf5\x8d\xe1\x0a\x16\x66\x54\xba\xcb\xea\x15\x56\x64\x8d\xc0\xe8\x17\x04\x02\xf7\x52\x74\x0a\xe5\x15\x68\xb9\x35\x37\xd6\x8a\x6a\x20\x0a\x6a\xc2\xb7\x40\x39\x10\x90\xa2\x83\x8e\xea\xea\xe0\x6a\x70\x1c\x9b\x33\x68\x0f\xef\xff\x3e\x77\x8d\x90\x33\xe4\xa5\xae\xbc\x75\x32\xf1\x24\xcf\x66\xf0\xb2\x28\x6c\xa4\xd6\x8f\xf0\x92\x61\x18\x9d\x41\x49\x3e\xad\x3f\x70\xd9\xa7\x96\x0e\xef\x82\x67\xee\x18\x2f\x2f\xa7\x84\x03\x3a\x26\x8b\x63\x9c\x49\x44\x51\x10\xe4\xc1\xa6\x17\x70\x3c\x76\x4f\xeb\xf4\xc9\xc7\x77\x3f\xbf\xbb\x82\x15\xdd\xc0\x92\x28\x54\xd0\x55\x28\x71\x7f\x1b\xa8\xda\x36\x0d\xe8\x8a\x70\xa0\x35\x29\xf1\x89\x97\xeb\xbd\x44\xf2\xc5\x4b\xc1\x53\xf2\x06\xb5\x19\x4a\xc0\x71\xe3\xef\x11\x53\x0a\x52\x14\x7b\x4e\x2a\xa2\x7e\xc7\x8d\xcd\x05\x16\x9e\xea\x09\x5c\x0c\xe9\xde\x6f\xe0\xde\x3b\x30\x18\x03\xfc\xf4\x1f\x7c\x4e\x2e\x6e\x33\xb8\xb2\xb7\xeb\x10\xee\xdd\x1a\xe5\x8a\x89\x0e\x16\x87\xea\x9b\x0
func manageBuildSharedJsGalleryJsBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedJsGalleryJs,
"manage/build/shared/js/gallery.js",
)
}
func manageBuildSharedJsGalleryJs() (*asset, error) {
bytes, err := manageBuildSharedJsGalleryJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/js/gallery.js", size: 3275, mode: os.FileMode(420), modTime: time.Unix(1602425859, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedJsManageJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x59\x5d\x57\xdb\x3e\x93\xbf\x7f\x3e\x45\xe2\xcd\xfa\x91\xb6\x83\x48\xca\xbe\x9c\x26\xa8\x1c\x68\x81\xbe\x50\xe8\xf3\x87\xbd\xca\xc9\xe1\x18\x5b\xb1\x0d\x8e\xe4\xca\x0a\x24\x4d\xfc\xdd\xf7\x8c\x64\xc7\x36\xa5\x7f\xba\x37\x48\x19\xcd\x8c\x46\x33\xbf\x19\x8f\xc4\x63\xa0\x7b\x41\x9e\xf3\xf9\x52\x86\x26\x55\x92\xd0\x8d\xb7\x2c\x44\xaf\x30\x3a\x0d\x8d\x37\xa9\xe9\x3d\x43\xe8\xa6\xdc\xfd\x12\xc4\xd0\x8d\x16\x66\xa9\xed\x4a\xb3\x80\x0a\x2a\xfa\xd5\xdd\xbd\x08\x0d\x0b\xb5\x08\x8c\x20\x72\x99\x65\x2d\x3e\x8d\x0a\x0c\x9b\x2b\x7d\x1a\x84\x09\x11\xad\x25\xd5\xe8\xf6\x6a\xa2\xc7\xb9\x59\xe7\x42\xcd\x7b\xa6\x61\x0c\x89\x01\xd1\x98\xd1\xe7\xe6\x48\x70\x2e\xc6\xa6\xcf\xb9\xd8\x6e\x8d\xef\x7b\xca\xda\xd0\x92\xde\x6e\xff\x5e\x67\xe1\x74\x1a\x16\xe4\xb9\x90\xd1\x87\x24\xcd\xa2\x8e\x75\x01\x32\x80\x44\x96\x54\x16\x42\x9b\x13\x31\x57\x5a\x10\x01\x72\xbb\x7d\x76\xc8\xd4\x1d\x32\x0f\xb4\x90\xe6\x52\x45\x82\x69\xb1\x50\x8f\xc2\x69\x35\x2d\xce\x65\xcb\x9f\x91\x0a\x97\x0b\x21\x6b\xcf\x9d\x66\x02\x7f\x75\xd8\xb3\xdf\xb3\xdf\x88\x95\xdd\xaa\xc3\x3f\x6f\xa2\x92\x11\xaf\xe7\xb5\x96\xa2\xfa\x3c\x68\x3b\xe7\xf2\xc8\x54\x46\x1e\x1b\xa3\xd3\xbb\xa5\x11\x44\xd0\xb1\x61\xb1\x30\x6d\x4a\x9f\x73\xe9\xfb\x86\x15\x1d\x32\x48\x5a\x66\xc2\xf4\xf2\x06\x37\x09\x9a\x9a\x73\x53\x86\x4a\x16\xa6\x17\xf3\xe9\x0c\x16\xf8\x67\x80\x7f\x56\xf8\xe7\x8e\x7f\xd7\x6a\x91\x16\xe8\x9e\x42\x65\x8f\x82\xd0\x09\x6a\x59\xf3\xfe\xa8\x51\xf4\x84\x8a\x06\x2c\x5f\x16\xa8\xd2\x6e\x73\x8b\x0c\x4e\xef\x03\x97\xe2\xa9\x77\x2d\x4c\x23\xf0\x48\xe8\x26\x9d\x93\xfe\x2d\xdd\xdc\xf2\xfe\x70\x12\xa9\xcd\x5c\x69\x82\x82\x86\x0f\x27\xe6\x30\x66\x99\x90\xb1\x49\x26\xe6\x0d\x1f\xd1\x8d\x53\x24\x78\x3c\x35\xb3\x09\x42\x12\x4e\x89\x60\x83\x01\x2d\x51\xac\x66\xe6\xc3\xc9\xa2\x96\xa3\x0b\x96\xab\x9c\x50\x42\x27\x5d\xcd\x83\x97\x35\x0f\x50\xf3\x03\x4b\x82\x82\x08\xba\xdd\x92\x07\x16\x44\x88\x2e\x10\x84\xd2\x72\xb0\xdb\xa1\x7c\x4a\xd2\x4c\xec\xb6\x74\xda\x27\xab\xdd\xb6\xab\xdd\xb6\xe8\x22\x40\x37\xc0\x03\x0b\x33\x11\x68\x42\xcb\x26\xb6\xa7\xe8\xb2\x74\x6e\x73\xaf\xcf\xb9\x61\x73\x1d\xc4\x88\x15\x44\xe5\x32\x8f\x30\x2f\x29\x68\x62\xd8\x9d\x05\xf1\xad\xa3\xd1\x49\x6d\xb0\x61\x51\xaa\xcd\x7a\x52\x8d\x7c\xba\x37\x9a\x41\xa3\x06\x01\x50\xcf\x59\x4e\x0c\x0b\xcd\x0a\x04\x05\xc3\x82\xb9\x11\xba\x52\xb7\x4b\xf2\x27\x5a\x56\x28\x38\xde\x45\x0b\x7d\x76\xdd\xc4\xec\xbe\x4a\x3f\xd4\x9c\xfa\x3e\x39\x66\x91\xc8\x84\x41\x34\x83\x61\x29\x11\xb4\x05\xdd\x4b\x07\x5d\xd0\xf6\x90\x56\x46\xd9\xe9\xb1\x75\xb1\xa1\xd4\x61\x7e\x72\x6c\xfd\x6c\x28\x5c\xb3\xd0\x01\x88\x50\xfe\x7e\xd3\x56\xae\x7d\x9f\x58\x40\x47\x64\x84\x2e\xa1\xb4\xc4\x1d\x15\xe6\x7e\xb3\xe3\x95\x4d\x68\x64\x0b\xdb\x45\xef\x86\x18\x90\x10\x56\x81\xde\xd4\x2e\x19\x17\xa0\xe4\xed\x42\x2d\xa5\x19\x07\x38\x8d\x44\x61\xb4\x5a\x8f\x53\x68\xfb\x67\xbc\x2c\xb9\x61\x83\xc1\xa4\xf0\xfd\x82\x2d\x08\x6a\x82\x27\x67\xa2\x73\x97\xe4\x01\x5b\x04\x39\x11\x94\xcd\xd3\xcc\x08\x4d\x14\x9d\xa4\x47\xa9\x3b\x0b\x63\x4c\xd2\xb1\x26\x12\x0d\x1e\x0c\x58\xbd\x27\x9f\xce\x4a\x0a\xcb\xb6\xfb\x77\x16\x9f\x38\x3f\xd7\xea\xed\xf6\x15\x4a\x64\x2b\xbc\x44\x13\xc9\x1a\xc3\x29\xb4\x17\x9b\x39\xb3\x20\x6e\x73\xb6\xb4\x70\xd4\x0b\x12\xb1\xc1\xa7\xb3\x96\x0d\x1f\x9c\x0d\x7b\x23\xce\xad\x01\x0e\x63\xd3\xe1\xcc\xf7\x49\x5c\xe7\x39\xac\xb7\x5b\xb2\xe6\xfd\x21\xdc\x31\x93\x08\x49\x1e\x69\x75\x4c\xcb\x8d\xfe\xc8\xc8\xb0\x43\x9b\x8a\xfd\x83\xd1\x76\x38\xdb\xf2\xd1\xe1\xa1\xf8\xf7\x83\x51\xb3\xe5\x39\x11\xa0\x20\x84\x02\x02\x58\x42\x66\xf1\x5c\x7b\x61\xce\x73\x9b\xf5\x15\xf8\x23\xae\x58\xae\x55\x5e\x6c\xb7\x9b\x12\x62\x8e\x95\x80\x37\xa1\xb5\x87\x0a\xcd\xca\x4d\x2c\xe3\x78\x09\x55\x40\x0d\x48\x65\x6e\xc5\x8f\x65\x90\x8d\x03\xb8\x53\x4b\x19\x8d\x25\xa1\x0d\x1a\xa6\xb3\x36\x1c\xb0\x04\xb6\xf3\x0f\x09\x1d\x80\x4c\x67\x10\x2a\x69\xc4\xca\x8c\x31\x6f\xbe\x05\x39\x99\x1f\xcd\xf1\xc0\x35\x79\x3a\xa3\x10\x06\x59\x76\x17\x84\x0f\x85\xdd\xcb\xba\x62\x9c\x41\xf1\x90\xe6\xb7\xce\x84\xfe\xa8\xb4\xf9\xb6\xc0\xb2\x99\xce\x49\x6c\x63\x12\x1e\x85\x44\x40\x04\x16\xc3\x8c\x31\xdd\xe0\x4e\x71\x5d\xd5\x9c\x23\x3d\x1d\xce\xc6\x72\x52\x7d\x44\xac
func manageBuildSharedJsManageJsBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedJsManageJs,
"manage/build/shared/js/manage.js",
)
}
func manageBuildSharedJsManageJs() (*asset, error) {
bytes, err := manageBuildSharedJsManageJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/js/manage.js", size: 7204, mode: os.FileMode(420), modTime: time.Unix(1598113428, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageBuildSharedJsViewJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xcf\x4e\xf3\x30\x0c\x3f\x7f\x79\x0a\xdf\x9a\x4a\xdf\xb2\x07\x88\x76\x00\x31\xe0\x88\xc4\x11\x71\xc8\x5a\xb7\x2b\x72\xe3\xe1\x64\xaa\x26\xc4\xbb\xa3\x52\x77\x1b\x68\x3b\x70\x8c\x7f\x7f\xed\xb6\xeb\x77\x2c\x19\x1e\x02\x11\xca\x01\x1a\xe1\x1e\x0a\xb7\x6c\xa7\xb7\x7b\x4b\x85\x37\xca\x59\x47\x0a\xd2\xe2\x91\x83\xd3\x7b\xe2\x98\xe5\x12\x6e\xbb\x58\x03\x12\xf6\x18\x73\x32\xa6\xe2\x98\x32\xa8\xd3\x9a\x10\x56\x50\x73\xb5\x1f\x51\xf7\xbe\x47\x39\x3c\x23\x61\x95\x59\x6c\xd1\x87\x2e\x3a\x65\x16\xa5\xff\x29\x85\x15\x44\x1c\xe6\x8a\xf6\x64\x58\xfa\x39\x44\xab\xac\x09\xd3\xd5\x94\x1b\x22\x5b\xbc\xd4\x21\x87\x85\xd2\x5f\x4f\x51\x3a\xd1\x28\xdd\xd4\x1e\x8d\x36\x5c\x1f\x4a\x6f\x1a\x16\xb0\x2a\x20\x04\x6e\xce\x83\x4b\xf8\x30\xff\xe6\x9b\x08\xb6\x5d\xca\x28\x16\x09\xdd\x98\x99\x30\x3b\x05\xff\x8f\xe2\xd2\x9b\xcf\x5f\xed\x9f\x04\x89\x43\xfd\xc7\x25\x16\xbb\x49\xb6\x68\x58\xbe\x17\xba\x5a\xf2\xcc\xff\x62\x57\xc5\x2f\x55\x56\xe8\x9e\xe5\xac\xfc\xac\x1f\x42\xae\xb6\x8f\x21\x6d\x6d\x39\xfd\x07\x77\xb8\xd9\xb7\xc6\x0c\x5d\xac\x79\x70\x2d\xac\xe6\x2f\xe9\xe7\xd9\x78\x68\x95\x7b\xf3\x15\x00\x00\xff\xff\xe9\xb5\xb6\x88\x83\x02\x00\x00")
func manageBuildSharedJsViewJsBytes() ([]byte, error) {
return bindataRead(
_manageBuildSharedJsViewJs,
"manage/build/shared/js/view.js",
)
}
func manageBuildSharedJsViewJs() (*asset, error) {
bytes, err := manageBuildSharedJsViewJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/build/shared/js/view.js", size: 643, mode: os.FileMode(420), modTime: time.Unix(1598113428, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageIndexTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xb1\x6e\xe3\x30\x0c\x86\xe7\xf8\x29\x18\xcd\x27\xfb\x6e\xbb\x41\x32\x70\x97\xb4\x6b\x0b\x34\x1d\x3a\x2a\x12\x13\x2b\x91\xe5\x40\x64\x1d\x04\x86\xde\xbd\x90\x0d\xb4\x40\x96\x76\x22\xf9\xff\xe0\xb7\x7c\x6a\xbd\x7d\xda\xec\xde\x9e\x1f\xa0\xe3\x3e\xb4\x95\x2a\x03\x82\x89\x47\x2d\x30\x8a\x12\xa0\x71\x6d\xb5\x52\x3d\xb2\x01\xdb\x99\x44\xc8\x5a\xbc\xee\x1e\xe5\x5f\xf1\x99\x47\xd3\xa3\x16\xa3\xc7\xeb\x65\x48\x2c\xc0\x0e\x91\x31\xb2\x16\x57\xef\xb8\xd3\x0e\x47\x6f\x51\xce\xc7\x2f\xf0\xd1\xb3\x37\x41\x92\x35\x01\xf5\x9f\xfa\xf7\xcc\x61\xcf\x01\xdb\x69\x82\x7a\x57\x36\xc8\x59\x35\x4b\x56\xad\x54\xf0\xf1\x0c\x09\x83\x16\xc4\xb7\x80\xd4\x21\xb2\x80\x2e\xe1\x41\x8b\xf2\xf2\x8f\x08\x99\x20\x67\x4b\xd4\xec\x0d\x61\x6d\x89\xc4\xf7\x9f\xfe\x00\xf5\x16\x47\x0c\xc3\xa5\xc7\xc8\x39\x4f\x13\x06\xc2\x32\xef\xa0\xd3\x84\xd1\xe5\xdc\x9b\x68\x8e\x5f\xf4\xb5\x94\xf0\x32\x62\x60\x5c\x83\x94\x25\x21\x9b\xfc\x85\x81\x92\xfd\x39\xff\x74\x8f\x3f\x91\x00\x87\x07\x4c\x60\xe8\x16\x6d\xab\x9a\x05\xdb\x56\xaa\x59\x7c\xa8\xfd\xe0\x6e\xe0\x0c\x1b\xb9\x7f\xb7\xe7\xa2\xa4\x20\xff\xcf\x3b\xe4\x2c\x96\xae\x78\x48\x43\x58\xca\xcd\x72\x94\xb6\x80\x0a\x61\x06\xce\xe2\x3f\x02\x00\x00\xff\xff\x38\xac\xa8\x66\x09\x02\x00\x00")
2020-08-23 00:21:56 +08:00
func manageIndexTmplBytes() ([]byte, error) {
return bindataRead(
_manageIndexTmpl,
"manage/index.tmpl",
)
}
func manageIndexTmpl() (*asset, error) {
bytes, err := manageIndexTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/index.tmpl", size: 521, mode: os.FileMode(420), modTime: time.Unix(1598162000, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageIndextmplGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xdf\x6b\xdb\x30\x10\x7e\xd6\xfd\x15\x37\x3d\x0c\x19\x8c\xbb\x87\xb2\x87\x42\x1e\x92\x34\x83\xc1\x96\x8e\x2c\x5b\xd9\x53\x51\x9c\x73\x26\x2a\x5b\x46\x3e\xf5\x07\x5d\xfe\xf7\x21\x39\x76\x5a\x4a\x20\x81\x20\xe9\xd3\xf7\xe9\xee\xbe\x3b\xb7\xba\xbc\xd7\x3b\xc2\x5a\x9b\x06\xc0\xd4\xad\xf3\x8c\x0a\x84\xdc\x3c\x33\x75\x12\x84\xac\xac\xde\xc5\xf5\x2f\xd7\xf6\x82\xa9\x6e\xad\x66\x8a\x80\x71\x17\xc6\x05\x36\x36\x1e\x5c\x27\x21\x03\xe0\xe7\x96\xf0\x6b\xb3\xa5\xa7\x6b\xcd\x1a\x3b\xf6\xa1\x64\x7c\x01\x31\xed\x3a\xe2\x0e\xd3\xaf\x63\x6f\x9a\x1d\x88\xb9\x6b\xd8\x3b\x3b\x9c\x41\xcc\x42\x79\x4f\xfc\x96\xb4\x36\x6c\xe9\x48\xb9\xa6\x07\xb2\xae\xad\xa9\x61\xdc\x38\x67\x61\x0f\xf0\xa0\x3d\x6e\x63\xb8\xc9\x31\xf4\xcb\x1b\xea\x15\xb2\x0f\x94\xc3\x3e\x71\xb9\x6e\xc7\xa0\xf1\xec\x02\x8f\x01\xaa\xd0\x94\xc9\x0c\x95\xc5\xb4\x63\xf1\xc5\xcf\x74\xf7\x5b\x7b\xf5\x31\x4a\x73\x94\x2c\x73\x94\xf1\x3f\xf8\x81\x95\xb1\x24\xb3\xf7\x02\x17\x38\x47\xe9\x06\xbe\x0b\xdc\x06\x3e\xc9\x8e\x55\x14\xbd\x55\x39\x4a\x3d\xa8\x0e\xd0\x49\xc5\xc1\xc8\x1c\x65\x39\x4a\x0e\xd8\x49\x4d\xef\x75\x8e\x72\x33\x4a\x7a\xe8\xa4\x22\x75\x22\xd6\x1c\xd7\x51\x94\xd0\x51\xf3\x43\xfb\x8e\x54\x06\x20\xaa\x1c\xc9\x7b\xbc\x9a\xa0\xeb\x8a\x9b\x96\x1a\x15\xbd\xcb\x40\x98\x2a\x5d\x7c\x98\x60\x63\x6c\xf4\x58\xb4\xba\x31\xa5\x22\xef\x33\x10\x7b\x10\x9b\x70\xd4\xf6\x03\x56\xac\x48\x6f\xa7\xd6\xaa\xea\x0c\x3d\x08\x8e\xca\xa1\x33\xc5\xf7\xd0\xb1\x02\x21\x46\x60\x49\x8f\x4a\x9a\x38\x28\x32\x3b\x24\xdc\x77\x5f\x6d\x42\x95\x65\x39\x88\x98\x7f\x22\xcc\x42\x15\xdf\x6a\xe8\x51\xa5\xef\xa1\x98\x85\xaa\xa2\x18\x27\xa6\x30\x41\x2e\x16\x4f\x54\x06\x26\x35\xd0\xf3\x34\x89\x67\xa5\xe9\xde\x59\xf4\xc5\x58\x52\x69\x62\x22\x70\x77\xbb\xba\x59\x7e\xfb\xf3\x2f\xed\xe7\xab\xc5\x74\xbd\xe8\xf7\xeb\xd5\xaf\xe5\x3c\xc7\x4f\x9f\x2f\x2f\xcf\xf1\xf3\xae\x0f\x33\x41\x57\x15\xb7\xde\xbc\x4a\xb6\x98\xc5\xa2\x54\x76\xc6\x2b\x7b\xf8\x1f\x00\x00\xff\xff\xa7\x8d\x33\x87\x2a\x04\x00\x00")
2020-08-23 00:21:56 +08:00
func manageIndextmplGoBytes() ([]byte, error) {
return bindataRead(
_manageIndextmplGo,
"manage/indextmpl.go",
)
}
func manageIndextmplGo() (*asset, error) {
bytes, err := manageIndextmplGoBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/indextmpl.go", size: 1066, mode: os.FileMode(420), modTime: time.Unix(1598113354, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _managePackageJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4e\x04\x21\x10\x84\xef\xf3\x14\x1d\xce\xd2\xce\x9f\x89\xd9\x93\x07\x9f\x63\x93\x11\x3a\x8a\x61\x80\x00\x83\x07\xb3\xef\x6e\x68\x76\xd7\xfd\xcb\xdc\xaa\xbf\xaa\x1a\xea\xb7\x03\x10\x6e\x59\x49\xec\x40\xa4\x42\x36\x93\x5c\x42\x10\x4f\x55\x2f\x14\x93\xf1\xae\x9e\x06\xec\xb1\x6f\x6a\x52\xd1\x84\x9c\xc4\x0e\xaa\x19\x40\x7c\x6c\xc6\xea\x0a\x45\x6f\xed\x16\x40\x2a\x06\x01\x84\xa6\x72\xa5\x83\xfc\x39\x9d\x52\x5e\x62\xe6\x52\x13\x0b\x70\x04\x48\xf9\xe5\x53\x86\x1e\xf9\x13\x1d\xc0\x81\x1b\x35\x95\x77\x0a\xe4\x34\x39\x65\xe8\xa2\xf9\xad\x25\x3f\x07\xbb\x7d\x1a\x27\x95\x5f\x57\xef\xbe\x2b\x20\xf6\xc3\x78\xfe\xe5\x7b\xd2\x79\x4d\x32\x52\xf2\xb6\xf0\xcb\xf7\xaf\x97\x70\x63\x59\x1f\x71\xc2\xf9\x5a\x97\xc7\x0c\x6b\x0a\x45\xb2\x7e\xd1\xad\xef\x3e\xe1\x44\xb6\x5d\x99\x7a\xc1\x1e\xa7\xc7\x54\xa6\x98\x28\x1e\xa9\x01\xc7\xf3\x52\xff\xee\xe9\x76\x97\x47\xa3\xd4\x41\xa5\xb2\x86\x1d\x3d\xce\x38\xb3\xa3\x3b\x74\x7f\x01\x00\x00\xff\xff\xcd\xff\x69\x50\xed\x01\x00\x00")
func managePackageJsonBytes() ([]byte, error) {
return bindataRead(
_managePackageJson,
"manage/package.json",
)
}
func managePackageJson() (*asset, error) {
bytes, err := managePackageJsonBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/package.json", size: 493, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageRollupConfigJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x14\x3c\x93\xbf\xe2\xed\x65\xe5\x00\xb2\x75\xb7\x91\xa2\xed\x5e\xba\xc0\x02\x2d\x9a\x16\x7b\x08\x82\x0d\x4d\x8e\x2c\x6e\xa8\x47\x95\x1f\xf6\x06\x81\xff\x7b\x41\x51\x86\x93\x22\xe8\x45\x90\xc8\x99\x79\x9a\xc7\x79\xb4\xe3\xe4\x43\xa2\x78\x84\x4b\xa0\x3e\xf8\x91\x9a\xe0\x9d\xcb\xd3\x7a\x72\xf9\x60\x79\x5d\xb7\x9a\x9d\x5c\xa0\x01\xd1\xbb\xe3\x05\xfb\x73\x05\x77\x0b\x98\xbd\xc1\x7a\x41\x5c\x29\xda\x8f\xa3\xe7\xef\xf1\x7d\xce\x65\xf7\x8a\x77\xf6\x88\x00\xe7\x95\x79\xf7\x8f\xae\xdb\x57\xca\x0b\x25\x84\x88\x40\xe7\x77\x29\x75\xb3\xd9\x49\xa9\x3d\xc7\x44\x53\xf0\x26\xeb\x64\x3d\xd3\x2d\x7d\x98\x82\xd7\x88\x71\x03\x3e\x6e\xfe\xfc\xfd\xcb\x97\xbf\xff\xf8\xf6\xf5\x97\xbf\x3e\xfd\xb6\x93\x12\x3f\x66\x79\x83\x5e\x65\x97\xe8\x45\x0a\xcb\x53\x4e\x5b\x6a\x62\xd0\xdd\xa8\x2c\x6f\xbe\xc7\xa6\x95\xc2\xe7\x34\xaf\xbf\x48\x21\xa2\xcf\x41\x63\x54\xd3\x96\x52\xc8\x68\xa5\x10\xbd\x0f\xa3\x2a\x34\x6b\x7b\x14\xbc\x60\x35\x62\x4b\x8d\x9a\xa6\xf9\xb3\xb7\xae\x7c\xee\xb3\x75\xa6\x1b\x15\xab\x03\x8a\xb2\x14\xe7\x56\x8a\xea\x22\x6e\xe9\xbe\xa8\xcf\x07\xb2\x2a\x85\x44\xd7\x11\x58\xed\x1d\x28\x64\x5e\x27\x3b\x82\xf4\x00\xfd\x14\xe9\x34\x80\x89\x7d\x22\xcb\xaf\xdc\x16\x8e\xc1\x71\x3b\x7b\x5e\xd6\xda\x45\xe8\x84\xc6\x39\xc2\x8f\x14\x94\x4e\xa4\xf8\xb9\x9c\xdb\xe4\x19\x9c\xe8\xd3\xdd\x1d\xf9\x5c\xc4\x92\x5f\xe0\x8a\x22\x26\x15\x54\x89\x8d\x75\xa0\x35\xed\x91\x12\x02\xf5\x3e\xd0\x84\x30\x3b\x66\x8d\x02\xd7\x31\x6e\x49\xc7\x48\xb7\x3f\xcd\x0d\x9a\x57\x36\xa7\x60\x13\x56\x6f\x2d\xeb\x18\x9b\x9b\x5d\x81\x9c\xa5\x10\xe7\x9b\x56\xca\xb9\xda\xe7\x9e\x9e\x7d\xa6\x41\x1d\x51\x7e\x11\x81\x95\x23\x83\x09\x6c\xc0\xda\x22\x92\xe5\x98\x94\x73\xa8\x99\xa9\x2c\x9e\xc6\xb6\xf0\x8a\xb1\xd1\xc7\x92\xac\x27\xb8\x67\x62\xc0\x50\x1a\x10\x41\x4b\x6b\x37\xf4\x99\x2b\x27\xfa\xd2\x44\x15\x11\x2f\xcc\x19\xad\x8c\xb1\xa5\x5b\xca\x91\xf6\xdc\xdb\x43\x0e\x6a\xce\xcf\xba\xd2\x4a\xae\x4a\x42\xd2\x00\x32\x5e\xe7\x11\x9c\x2a\xa0\xf4\xc3\x20\x29\xeb\xe2\xb6\x62\x87\x94\xa6\xb8\xed\xba\x83\x4d\x43\xde\x6f\xb4\x1f\xbb\x37\x23\x11\xbb\x14\x80\x6e\x54\x31\x21\x74\x93\xd2\x4f\xea\x80\xd8\x5d\x06\x45\x0a\xb1\x8c\x58\x0d\xc1\x3e\xf8\x53\x44\xb8\x86\x4d\x18\x98\x3c\x61\x4b\xf7\xcd\x32\xbd\x0f\x4b\x33\x85\xb8\x88\xac\xae\xad\x65\x32\x38\xd2\xe8\x0d\x5a\xd2\xca\x39\x7a\xe4\x69\x2c\x81\xa2\x98\x54\x48\x8f\xe4\xeb\x31\x76\xdd\xec\x6e\x9f\xd9\x38\xd0\xa0\x22\xed\x01\xa6\x03\x18\x25\x06\x46\x0a\xf1\x2a\x56\xf4\xf1\x23\x45\x84\x23\xae\x95\xbe\xaa\xa4\x87\x59\xe3\x71\xca\x7b\x67\xf5\x23\x19\x1b\xa0\x93\x0f\xcf\xa4\xd8\x50\x40\x1f\x10\x67\x48\x65\x2c\xd6\xc8\x33\xe9\x41\xf1\x01\xff\x13\xec\xff\xd4\xbe\xde\x12\x4b\xc4\x9a\xd7\x61\x3a\xa1\x09\xc5\x8a\x75\xc6\xf2\xa1\x66\xf6\x4a\x5f\x5d\x1a\x30\x03\x2a\xa9\xe4\x0b\xca\x90\xef\xe9\xb2\x6b\x70\xbc\x69\x69\xb4\x6c\xfb\x67\x29\xc4\xdb\xfa\xf5\xca\x59\xdd\x48\xf1\xd0\x4a\x71\x2a\xd6\xeb\xed\xa0\x1d\x54\xb8\xd3\x01\xe0\x2d\xf5\xca\x45\x48\x71\x96\xe7\x9d\x94\x7d\xe6\x4a\x5f\xfa\x56\xe0\x0e\xa9\x1e\x03\x0c\xdd\x56\xf8\x4e\x4a\x11\x90\x72\xe0\x59\x6f\x1e\xa3\x5f\xe7\x43\xa9\x14\x21\x6c\x4f\xab\x0f\x0b\x6b\x59\x12\x57\x91\x12\x93\xa2\x21\x4a\x8e\xfe\xc9\x36\x60\xd5\xe8\xc1\x3a\xf3\x6d\xb9\x08\x9b\x9b\x4d\x9c\xd4\x89\x57\x0d\x4f\x63\xd3\xd2\x7d\x13\x32\x37\x2d\x35\xb3\x46\x79\x59\xaf\xeb\xd3\xe0\xd8\x3c\xb4\x4b\x05\x11\x93\xb1\xbe\xa4\xce\x1e\xd8\x07\x14\x88\xe5\x01\xc1\xa6\xd7\xaf\x0f\xed\x82\x1e\xe0\x5c\x0d\xed\xbc\x70\x7e\x35\xf7\x52\x9c\x77\xf2\x2c\xff\x0d\x00\x00\xff\xff\x5d\x81\x7c\xb3\x9e\x06\x00\x00")
func manageRollupConfigJsBytes() ([]byte, error) {
return bindataRead(
_manageRollupConfigJs,
"manage/rollup.config.js",
)
}
func manageRollupConfigJs() (*asset, error) {
bytes, err := manageRollupConfigJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/rollup.config.js", size: 1694, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageSrcAppSvelte = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xcd\x6e\xdb\x3c\x10\x3c\x53\x4f\xb1\x9f\xbe\x83\x64\xc0\x96\x9c\xab\x4d\x09\xe8\x4f\x9a\x02\x4d\xd0\xa0\x49\x4f\x45\x0f\xac\xbc\xb6\xd8\x52\xa4\x43\xae\xe2\x18\x86\xdf\xbd\x20\x29\xff\x05\xb9\xf4\x44\x8a\x9c\x99\x9d\xdd\xa1\xcd\x5d\x63\xe5\x9a\xea\x84\xc9\x6e\x6d\x2c\xc1\x0e\x96\x48\x4d\x8b\x76\x0c\x16\x9f\x7a\x74\x34\x06\x25\x1d\xdd\xb7\x86\x8c\x83\x3d\x2c\xad\xe9\x20\x2b\xca\x96\x68\x5d\xfc\x76\xd9\xfc\x48\xbd\x11\x4a\xa1\xdd\x1e\x11\xc3\x77\xe1\x9e\x51\x11\x66\xf3\x24\x61\xc2\x6d\x75\x03\xcb\x5e\x37\x24\x8d\x86\x15\xd2\x1d\x92\x58\x08\x12\x8f\x92\x14\xe6\x23\xd8\x25\x8c\x35\x46\x3b\x02\x8b\x6e\x0d\x15\x88\x8d\x90\x74\x30\x95\x0f\x9e\xf2\xec\xe6\xfa\x31\x1b\x43\xd6\x0d\xf4\x92\x3c\x3f\x1b\x8d\xe6\x09\x63\x16\xa9\xb7\x3a\x08\x14\x84\x2f\x94\xfb\xd3\x7d\xc2\x14\x12\x04\x1c\x54\x6f\x94\x7e\xdb\x5f\xec\xfb\x9f\x8d\x9d\x46\x96\x5f\x4d\xa7\xd3\xe9\x28\x3a\x8b\x02\xde\xd3\x51\xe0\xc2\xe5\x11\xf2\xd2\x29\xa8\x40\xe3\x06\x36\x52\x2f\xcc\xa6\xf8\xf8\xf5\xee\x5e\x58\x87\x36\x1f\x15\x6b\xbf\xf9\x64\x4d\xf7\x40\x56\xea\x55\xee\xd9\x63\x48\xfd\x52\xbe\x74\x2a\x3d\x2b\xd5\x18\x4d\xa8\xc9\x41\xe5\x25\x8b\xa7\x1e\xed\xf6\x01\x15\x36\x64\xec\x3b\xa5\xf2\xec\x56\x3a\x7a\xdf\x37\x7f\x90\xbe\xa1\xeb\x15\x41\x0d\x1f\x06\x4e\x16\x74\x8e\x52\xeb\xf8\x02\x2a\xf8\xf1\x73\xd0\x0f\xa8\x62\x69\xec\xb5\x68\xda\xbc\x81\xaa\x0e\x53\x62\x11\x59\xac\x7b\xd7\xe6\xcd\x65\xcd\x3c\xfb\x82\xdb\x6c\x54\x48\xad\xd1\x7e\x7e\xbc\xbb\x0d\x35\xf6\xe7\xb1\x45\xf6\x29\xb1\x63\xdd\xb3\x34\xe6\x09\x2f\x0f\x2f\x37\xe1\xf1\x81\xcd\x5a\x14\x8b\x3a\x61\xbb\xff\xe3\x60\x63\xd2\xd4\xa2\x8e\xdb\x7d\xc2\x18\x0f\xbb\x7a\x17\x0f\x78\x7c\x35\x9e\x33\x6b\x04\x35\x2d\xa0\xb5\xc6\x9e\x01\xaf\xfd\xf7\x19\xac\x0c\xd2\x7b\x5f\xfd\xbc\x66\xc2\x17\xf2\xb9\x4e\x18\xd7\xc2\x2f\x8c\xf7\xca\x2f\x8c\x2b\x59\x73\x01\xad\xc5\x65\x95\x16\x45\x5a\x0f\x3f\x09\x5e\x8a\x9a\x97\x4a\x06\x6c\x19\xc0\xbc\x0c\xdc\x84\x71\x2f\x89\xd6\x5f\x5d\x74\xb2\x0f\x82\xed\x15\x34\x4a\x38\x57\xa5\x0b\xd9\xa5\xf5\xad\x11\x0b\xa9\x57\x45\x51\xf0\xb2\xbd\x0a\x9c\xd9\x65\xc7\x9e\x72\xea\xf7\x80\x79\xd5\xed\x6b\xdd\x48\xaf\xd2\x5d\x44\xa4\x71\x0e\x3e\x00\x92\x7a\x15\x6f\x8f\x62\x87\x99\x30\x5e\x1e\xac\x9f\x42\x18\xc2\x0b\x9e\xe2\x3e\x4c\xf7\xf0\x57\xb1\x1b\xce\xa0\x7c\x33\x84\x4e\x48\x5d\x7f\xd7\xe2\x97\x0f\xd2\x80\x32\x62\x31\xa8\xcc\x60\xf0\xc6\xcb\x00\xba\xc8\x26\x84\x91\xf0\xff\x26\x13\x78\x96\xdd\x0c\x1c\x12\x2c\xa9\x6a\xa9\x53\x33\x98\x4c\xea\xe4\x6f\x00\x00\x00\xff\xff\xe0\x92\x6d\xf5\xf6\x04\x00\x00")
2020-08-23 00:21:56 +08:00
func manageSrcAppSvelteBytes() ([]byte, error) {
return bindataRead(
_manageSrcAppSvelte,
"manage/src/App.svelte",
)
}
func manageSrcAppSvelte() (*asset, error) {
bytes, err := manageSrcAppSvelteBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/src/App.svelte", size: 1270, mode: os.FileMode(420), modTime: time.Unix(1602426052, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageSrcGallerySvelte = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcb\x6e\xb3\x30\x10\x85\xd7\xf6\x53\xcc\x9f\x7f\x11\x90\x0a\xde\x73\xdb\x55\x5d\x55\xea\xa6\x0f\xe0\xc0\x24\x38\x32\x36\xf2\x4c\xd2\x0b\xe2\xdd\x2b\x82\x13\xda\x9d\x67\xce\x39\x9f\x8e\xa7\xa2\x36\x98\x91\x1b\x29\xcc\x30\xfa\xc0\x30\x81\x77\xaf\xfe\xe2\xf8\x09\xf4\x91\x31\xbc\x8f\x9d\x66\x84\x19\x8e\xc1\x0f\xb0\xa7\x2b\x5a\xc6\x7d\xf9\xf0\xbf\x68\x6b\x31\x7c\x45\x39\xcf\xd5\xe1\x62\x6c\xa7\xa8\xd7\x01\x3b\x75\x26\x75\x5a\x0d\xf9\x99\x7e\xa5\xde\x7a\xcf\xfe\x9e\x51\xb7\x29\xdf\xd0\x52\xe0\xe7\xcd\x66\x91\x61\x5c\x44\x2a\xa5\x14\xcb\x14\x69\xcf\x16\xcb\x3f\x8b\x5b\x2a\x36\x4f\x92\x14\xea\x06\x26\x29\x44\x54\xa1\x06\x87\x1f\xf7\xae\xc9\x06\x49\x4b\x29\xe6\xb4\x94\x95\xba\xdf\x41\x56\x83\x36\x0e\x5a\xab\x89\xea\x5d\x74\xee\xe0\x60\x5c\x57\x70\x6f\xa8\x9e\xb6\xf4\xdc\x48\x31\xfd\x47\xdd\xf6\xb1\x25\x68\x5a\x5f\xb3\x14\xa2\x5a\x3f\x39\xad\x0b\xf0\xae\x20\xf3\x8d\x6d\xaf\xdd\x09\x1f\x94\x3c\x60\xeb\x87\xf1\xc2\x98\xa4\x33\xa8\x05\xa8\x16\xe0\x2c\x2b\xb5\x14\x59\x0a\xfd\xcb\x32\xb8\x9a\xa1\x00\x42\x86\x23\xd7\x3d\x0f\xb6\x80\x2c\x6b\xe4\x4f\x00\x00\x00\xff\xff\xf6\x98\x99\x67\xbe\x01\x00\x00")
2020-08-23 00:21:56 +08:00
func manageSrcGallerySvelteBytes() ([]byte, error) {
return bindataRead(
_manageSrcGallerySvelte,
"manage/src/Gallery.svelte",
)
}
func manageSrcGallerySvelte() (*asset, error) {
bytes, err := manageSrcGallerySvelteBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/src/Gallery.svelte", size: 446, mode: os.FileMode(420), modTime: time.Unix(1602425981, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageSrcPhotoSvelte = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x55\x51\x6f\xdb\x36\x10\x7e\x96\x7e\xc5\x8d\x28\x20\x79\x91\x2c\x27\x29\x3a\xcc\x31\xf3\x50\x34\x18\xf6\x50\x64\xc0\x02\xec\xa1\x28\x56\x46\x3e\xcb\x0c\x24\x4a\x21\xcf\x8e\x1d\x43\xff\x7d\x20\x29\xbb\x72\x67\x2f\x6e\x57\xa0\x2f\xb6\x44\xde\x7d\xf7\xdd\x77\x1f\xa9\x89\xc9\xb5\x6c\xe8\x3a\x0c\x64\xd5\xd4\x9a\x60\x03\xb9\x46\x41\x78\xb3\x44\x45\xef\xa4\x69\x04\xe5\x73\xd4\x09\xd4\xea\x7d\xbd\x50\x04\x2d\xcc\x74\x5d\x41\x64\x96\x58\x12\x46\x57\xbd\xcc\x19\x76\xb1\x1a\x1f\x17\x68\x3e\xc7\x0e\xb3\x39\x51\x33\x7c\x30\xd1\x55\x18\x06\x79\xad\x0c\xc1\xb4\xc3\x06\x7e\xb8\x62\x3c\xb0\xb1\xb8\x72\xd8\x25\x12\x34\xf3\x9a\xea\xab\x30\x78\x35\x06\x2d\x9e\x80\x6f\xab\xc4\xd1\x6f\x37\x77\x51\xe2\xf7\x07\xc3\x85\x2e\x6d\xa2\xcd\x20\x49\x25\x02\x87\x28\xda\xae\x18\xf9\x6c\x17\x36\xf0\x24\xa7\x34\x1f\xc3\x79\x02\x73\x94\xc5\x9c\xc6\x70\x0e\xad\x07\x17\x1a\xb8\x0b\x1c\xba\x20\xc8\xfc\x8b\x8f\xdb\x41\x8b\xc2\x00\x87\x0f\x1f\xed\x82\x30\x6b\x95\xc3\x6c\xa1\x72\x92\xb5\x82\x02\xe9\x0f\xcb\xe5\x3d\x92\x98\x0a\x12\x77\x96\x46\x3c\x80\x4d\x18\x74\xbd\xd7\xf7\x0f\x98\xd3\x5b\x61\x2c\x19\xc7\x7b\xa8\xb1\x29\x45\x8e\x71\xe4\x5e\xb3\x28\x01\xff\x54\x75\x20\x59\x34\xb8\xda\xe5\x6b\x34\x0d\x70\x10\x4f\x42\xd2\x56\xf5\xf8\x0b\x39\x7a\x35\xce\x20\xca\x9c\x16\xd1\xc0\x81\x68\xa4\x85\x56\x0e\x65\x48\xb8\x22\x2b\x75\xd0\x86\x41\x37\xe2\xd8\xf7\x13\x0f\x80\x5f\x3b\xd2\xa4\xd7\xee\x3f\xd8\x0a\xea\x0b\x1f\xe9\xd3\x56\x68\x21\x77\xb3\x8d\xd1\xb7\x1d\x64\x19\xfc\x85\x90\x0b\x05\xb2\x50\xb5\x46\xa8\xa4\x31\x52\x15\x7e\x46\xc6\xa6\x84\x41\x6b\x73\x5f\x10\xf3\x4f\xf9\xfc\xc3\xb5\xb4\x7e\x38\x20\xe5\x83\xa9\xd5\xc9\x52\x76\x4e\x3c\xac\xa4\x6f\xd2\xe2\x07\xdb\x63\x12\x47\x36\x23\x9f\x0b\x55\x60\x74\x54\xe3\xbb\xdb\x77\xb7\x63\xb8\xa9\x24\x01\x6a\x5d\xeb\xd3\x75\xbd\x13\x85\xf9\xd1\xba\xda\x43\xd5\xe9\xea\x31\x0c\xe9\x1d\xc4\xbe\x5b\xb7\xc2\x1b\xd2\x43\xd3\x94\x92\x62\x96\xb0\x93\x6d\xec\x0f\xef\x11\x17\x3b\x21\xbe\xd2\xc4\xa2\xe8\x59\x38\x0c\x76\x2a\x37\x1a\x97\x12\x9f\x62\x7f\x79\x24\x30\xab\x75\x25\x28\x81\xc7\x85\x28\x25\xad\xbf\x41\x6f\x0f\xb8\xa7\x34\xae\xe8\x77\x35\xc5\x15\xf0\x1e\xc8\xb0\x14\xc6\x2f\xdf\xce\x62\x36\x64\xbd\xf8\x7b\x5f\xa3\x17\x6b\x16\xf7\x86\xb4\x54\x45\x3c\x4a\x76\x70\xfb\xb3\x04\xee\xf3\xce\xe0\xd3\xdf\xf3\x57\x1b\xdf\x50\xfb\xf8\x6a\xd3\xb5\xd2\x7e\xda\x23\x04\xdc\xfe\xa2\x32\xb2\x56\x6f\xd7\x77\xeb\x06\x63\xdf\xfb\xa0\x7f\x68\xf6\xcc\x60\x8b\x9c\xd9\xac\xee\x0e\x0f\xda\xbe\x92\x47\xd0\x9c\x80\x1d\x9e\x9b\x11\x93\x95\x28\x30\x7b\xc2\xfb\x86\x8d\x81\x0d\xdd\x43\xd2\xdb\x79\x68\xb0\x70\x3b\x0f\x4d\xe1\x36\xda\x0f\x1e\xeb\xa3\x2b\x39\xc9\xb6\x5f\xc4\x70\x32\x95\x4b\xc8\x4b\x61\x0c\x67\x85\x28\x4b\xd4\xeb\x54\x12\x56\x76\xaa\x65\x2d\xa6\x38\x4d\x69\xbe\xa8\xee\x95\x90\x25\xf3\x17\x19\x67\x1b\xf7\xdf\x32\xb0\x5e\x4a\x85\xe6\x6c\x23\x74\xcb\xae\xc3\x60\xd2\xc8\x9c\x16\x1a\xc1\xd0\xda\x46\xda\x93\x5d\x8a\xf5\x18\x54\xad\xf0\xca\x46\x04\x13\x53\x2f\x74\x8e\x60\x74\x6e\x90\x38\xdb\x6c\xfd\x73\x79\x31\x4a\x20\xfa\xdc\x5a\x94\xc0\x2f\xa3\x41\x0b\x17\xab\x04\x76\x41\xe7\x6f\x0e\x07\x9d\xaf\x18\xd0\xba\x41\xde\xd7\x06\x2a\x9c\x4a\xc1\x59\x5c\x89\x55\xda\x7d\x0d\x7f\x1d\x8d\x9a\xd5\xe0\xbf\x99\xbc\x79\x7d\x02\x93\x63\x74\x0f\x32\x39\xb9\x71\x3b\xb9\x17\x1b\xef\x07\xd9\x72\xdf\xa1\xcd\xa3\x75\x8f\x91\x3b\x5f\x79\x70\x59\x15\x16\xf9\xe5\x76\x18\x58\x83\x8a\x92\x38\xf3\x8f\x8e\xa9\xb3\x0e\xfc\x0c\x97\x17\xa3\x96\xd9\x55\x7f\xe8\x38\xbb\xbc\x18\xb9\x77\x6b\x42\xa9\x0a\xce\x4a\xf1\xbc\x76\x2b\xce\x74\xa8\x4a\xa1\x0b\x4c\x3b\x9b\xa6\xb3\xda\xba\xd0\xdd\x21\xde\x88\x59\xe7\xc4\xbe\x29\x3b\x9f\x1f\xb0\x76\xea\xe8\xbe\x30\xa6\x7f\xcd\xfb\xf2\xf5\x77\x77\xde\x57\xd4\x38\x95\x6c\x37\x83\x1d\xd0\xff\xa7\xf6\x05\xe2\x31\x1f\x1c\x4c\xf8\x06\x1b\xec\x8f\x73\x92\x4d\xe5\xf2\x3a\x9c\xfc\x94\xa6\xb0\x94\xd5\x18\x0c\x12\xcc\x88\xcf\xa9\x2a\xc7\x90\xa6\xd7\xe1\x3f\x01\x00\x00\xff\xff\x92\xad\x62\xc5\xf0\x0b\x00\x00")
2020-08-23 00:21:56 +08:00
func manageSrcPhotoSvelteBytes() ([]byte, error) {
return bindataRead(
_manageSrcPhotoSvelte,
"manage/src/Photo.svelte",
)
}
func manageSrcPhotoSvelte() (*asset, error) {
bytes, err := manageSrcPhotoSvelteBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/src/Photo.svelte", size: 3056, mode: os.FileMode(420), modTime: time.Unix(1602425901, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageSrcHttpJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x73\x9b\x40\x0c\x85\xcf\xec\xaf\x50\x99\xce\x80\x27\x84\xb8\xb9\x32\xb4\xd3\x43\x4f\xed\x21\x93\xb4\xe7\x66\x0d\x22\xd0\xc0\x2e\x91\x44\x63\x4f\x86\xff\xde\xd9\x05\xdb\x38\x6e\x72\xb3\xbc\x4f\x4f\x4f\x1f\x6a\xba\xde\x92\xc0\x0b\x14\xd6\x08\xd9\x36\x81\xcd\x50\x3c\xa2\x24\x20\xf6\x11\x0d\x8c\x50\x91\xed\x20\x4a\xaf\x58\x2c\x21\xa7\x7f\x38\xca\x94\x6a\x51\xf6\x1d\xbf\xff\xea\x76\xc0\x4c\xcd\x65\xca\xc3\x86\x0b\x6a\x36\x18\xfb\x07\xc8\x3f\xc3\x8b\x0a\x4e\xc4\x90\xc3\xdc\x34\xae\x32\xef\x35\x0d\xdd\x5b\x4d\xd5\x1b\x4e\x4b\xe9\xb9\x91\x4f\xbd\xf7\xf1\xc5\x1b\x36\x0b\xe1\xa9\x8b\x2a\x5a\xcd\x0c\xb7\xf8\x34\x20\xcb\x37\x22\x4b\x80\x5b\x41\x53\x32\x4c\xd5\xb4\x0e\x0b\x0d\x85\x58\x8a\x09\x79\xe5\xfe\x0b\x78\xe8\x91\xe2\xfb\xb9\x13\x08\x65\x20\x83\x25\xb0\x68\x19\x18\x3e\xbe\x38\x7e\x53\x31\x9e\x54\x3f\x71\x2b\xe3\xfd\x2a\x53\x41\x20\x75\xc3\x29\x21\x43\x0e\x84\x9c\xa9\x60\x54\xa3\x52\xb8\xf5\x5f\x49\xf3\xce\x14\x50\x0d\xa6\x90\xc6\x1a\xa8\x50\x8a\x1a\x5d\x00\x3f\x70\x75\x08\xe6\x5a\x7b\xc8\x41\x3f\xeb\x46\x26\xd9\x41\x94\xa9\xa0\xa9\xc0\x85\xee\xe7\xe9\xf0\x21\x87\xeb\xf5\x7a\xda\x41\x6a\xb2\xcf\x60\xf0\xf9\x04\x80\x97\xaf\x7c\x9a\x60\x5a\xcb\x8f\xc8\x16\xd9\x0e\xa9\xe6\x41\x71\x87\x52\xdb\x32\x71\x42\x3b\x50\x81\x09\x6c\x6c\xb9\xcb\xcd\xd0\xb6\x8b\xa4\xdc\x3c\x18\xc8\xfd\xc0\x5f\xb7\x3f\xe2\xd3\x33\xb9\x80\xe8\xca\x09\x22\x37\xda\xfd\x48\x19\x35\x15\xf5\x8d\x26\xdd\x71\xaa\xfb\x1e\x4d\x19\x47\xd3\x45\x44\xc9\xc9\x15\xbd\xdf\xe2\xbf\x7e\x94\x2c\xcf\xe5\xfd\x86\xfd\x16\xd1\x71\x21\xd7\xb0\xc7\xfd\x34\xef\x30\x43\x8b\xbd\x51\x4d\x58\x25\x9e\xea\xcc\x42\x05\x81\x63\x90\xa8\xc0\x1d\xda\x91\xe4\xd3\x7f\x41\xb6\x0d\xcb\x4d\x6d\xc5\x72\xdc\xe9\xed\x77\xdc\x71\xfe\x69\xbd\x5e\x27\xee\x9e\x48\xbe\x56\x82\x94\x47\xd1\x82\x65\x4f\x58\x35\x5b\xc8\x21\xec\x5d\xdb\x55\x78\x08\xd8\xfb\x65\x8e\x9c\xef\x16\x2b\xc6\x2e\xca\x24\x48\x19\x25\x0e\xdd\xdc\x4b\xd9\xf5\x18\x26\x10\x5e\x87\xaf\x9f\x3b\x14\x5d\x6a\xd1\xee\x55\x68\xc0\x33\x01\x9a\xc2\x96\x8d\x79\x38\x78\x0c\xd4\x9e\x89\xa6\xac\x61\x32\x87\x7e\xfd\x5c\x62\xdb\x74\x8d\x20\xb9\xfe\xf3\x08\x7a\x7b\xf9\x88\x3b\x0e\x13\x98\xc9\xbc\x56\x78\x44\x97\xba\x9a\x1c\x8e\xc0\x16\xd8\xa3\x2f\x11\x5c\xcc\x64\x52\xb1\x77\x42\x8d\x79\x70\x30\x46\xf5\x2f\x00\x00\xff\xff\x81\x98\xb8\x27\x15\x05\x00\x00")
func manageSrcHttpJsBytes() ([]byte, error) {
return bindataRead(
_manageSrcHttpJs,
"manage/src/http.js",
)
}
func manageSrcHttpJs() (*asset, error) {
bytes, err := manageSrcHttpJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/src/http.js", size: 1301, mode: os.FileMode(420), modTime: time.Unix(1598161795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageSrcMainJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x1c\xcc\xcd\x0a\x42\x21\x10\x40\xe1\x75\xf3\x14\xb3\xb3\x20\x6c\x9f\xb4\xf0\x51\x4c\xc7\x08\xd4\x19\x74\xec\x87\xe8\xdd\x2f\xd7\xfd\x39\xdf\xb3\x0a\x77\x45\x2f\x82\xb9\x73\x45\x63\x2f\x5e\xc4\x8e\x17\x15\x25\xe3\x00\x22\xb7\xa1\x18\x44\xf0\x86\x8d\xde\x7b\x79\xfc\xc1\x41\x43\x7f\x90\x5e\x31\x71\x9c\x95\x9a\xda\x3b\xa7\xef\x19\xfe\x27\x07\x40\x9f\x65\x26\xca\x61\x96\xf5\x3a\xd8\x02\x00\x00\xff\xff\x9f\xcb\x53\x66\x68\x00\x00\x00")
2020-08-23 00:21:56 +08:00
func manageSrcMainJsBytes() ([]byte, error) {
return bindataRead(
_manageSrcMainJs,
"manage/src/main.js",
)
}
func manageSrcMainJs() (*asset, error) {
bytes, err := manageSrcMainJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/src/main.js", size: 104, mode: os.FileMode(420), modTime: time.Unix(1598154390, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _manageSrcStoresJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x4b\xca\xc3\x30\x0c\x84\xf7\x39\x85\x76\x8e\xe1\xc7\xff\x01\x4c\x0e\xe3\x87\x0a\x21\xb6\x55\xe4\x49\x1f\x94\xde\xbd\x34\x2d\x81\x76\xd3\x8d\xd0\xe2\xfb\x66\x66\xae\x47\x51\xd0\x8d\x94\x43\x0e\xb1\xf0\x1f\x9d\x75\xc6\xf3\xa3\x3b\x1d\x54\x2a\x99\x7e\xe2\x02\xfe\xef\x10\x65\xe3\x87\x81\x2f\x9b\x93\xa4\xf5\xed\x42\xa5\xd0\xb4\x27\x8c\x59\xd2\x5a\xb9\xc1\x45\xc9\x57\x97\x03\x42\x67\xb8\x37\x68\xfd\xa7\x1f\xd7\xb4\x30\x7e\xeb\x2f\xce\x7e\xd7\x43\x16\x6e\x34\xed\xa3\x47\x03\xc9\x62\xac\x1f\x1e\x01\x00\x00\xff\xff\x68\x61\x7c\xad\xda\x00\x00\x00")
func manageSrcStoresJsBytes() ([]byte, error) {
return bindataRead(
_manageSrcStoresJs,
"manage/src/stores.js",
)
}
func manageSrcStoresJs() (*asset, error) {
bytes, err := manageSrcStoresJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "manage/src/stores.js", size: 218, mode: os.FileMode(420), modTime: time.Unix(1598155494, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _sharedCssBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\xd3\xda\x46\x0c\xc6\xcf\xf8\x53\x6c\x2f\x7d\x81\x61\x8d\x6d\xc2\x4b\xba\x9e\x4c\x73\xea\xa9\x9d\x5e\xda\x0f\xb0\xd8\xb2\xad\x64\xff\xcd\xae\x0c\x98\x4e\xbf\x7b\x67\x6d\x43\x21\x24\x37\x8f\x25\xed\xf3\x93\xf4\xe8\x33\x6a\x67\x3d\xb1\xde\xab\xe5\x5b\x47\xe4\x82\xd8\x6e\x1b\x6b\x28\xa4\xad\xb5\xad\x02\xe9\x30\xa4\x95\xd5\xdb\x2a\x84\xe2\xd7\x46\x6a\x54\xc3\xa7\xdf\x64\x1f\x08\x8d\x14\xe7\xb6\xa3\xcf\x1f\xb2\xac\xdc\xef\xb3\x9f\x6b\x0c\x4e\xc9\xe1\x53\x38\x4b\xf7\xb6\x2a\x93\x64\xbb\x4e\xd8\x9a\xfd\x6d\x90\x42\xc2\xd6\xdb\x24\x11\xde\x5a\x62\xff\x24\x0b\xce\x83\x93\x15\x9a\x56\xb0\x2c\xdd\x1d\xf6\x1e\x74\x99\xfc\x7b\xab\xf8\x6b\x70\xb6\xf5\xd2\x75\xc3\x54\xd6\x91\x56\xb1\x2a\x72\xf1\x09\x41\xb0\xb7\x1b\xc4\xdb\x86\x05\xf0\xd8\x94\x73\xc2\x19\xb0\xed\x48\xb0\x88\x95\x2c\x08\x2e\xc4\x3d\x98\x1a\xfc\x28\x67\x1d\xa1\xc6\x2b\xfc\x0e\x2d\x1e\x51\x21\x0d\xa3\xf0\xd1\xd6\x43\x94\xd0\xd2\xb7\x68\x04\xcb\x46\xa2\xf9\xc5\x80\x57\x10\x2c\x07\x5d\xb2\xed\x9a\xe5\xef\x8e\x22\xd6\x42\xa1\x01\xde\xcd\x6a\x79\x5a\x1c\x8a\xf1\xa9\x2e\xdf\xb0\xae\xd8\xb0\x6e\xb7\x61\xdd\x87\x0d\xeb\xf6\x1b\xd6\xbd\xdf\xf9\x6f\x78\xfb\x7d\x16\x05\xf8\x19\x8e\x5f\x91\xf8\x24\xa4\xad\xa5\x6e\xe4\x94\x86\x50\x2a\x94\x01\xea\x32\x59\x70\x6d\xaf\xdc\x86\xcb\x4b\x5a\xeb\x61\x08\x95\x54\x30\x4b\xdf\x65\x26\xe6\x22\xcd\xf6\x1f\xf3\x79\xb8\x5d\xf1\x4d\x34\x4f\xdf\xf3\x8f\xb7\xe0\xee\x25\x58\x1c\x8a\x5b\xf0\xb5\x8d\xd7\xa4\xb4\x46\x1d\xc3\x36\x6e\x96\x86\x71\xb3\xbb\xdd\xc3\x5a\xff\xb0\x0a\xaa\x5e\xc1\x6c\x86\xd4\x79\x50\x56\xd6\x50\x73\xea\x7a\x7d\x34\x12\xc7\x2d\xcf\x36\x12\xec\xa8\x6c\xf5\xb5\x4c\x16\xce\x06\x24\xb4\x46\x30\x0f\x4a\x12\x9e\xc6\x66\xbf\x5b\xee\xb0\xa2\xde\x83\x30\x96\x96\xdf\x4b\xe0\xa8\x65\x0b\xab\x28\xf3\xff\xab\xf2\x18\xac\xea\x09\xa2\x5b\xac\x13\x2c\xda\x46\x41\x43\xd3\xd7\x95\xa3\xa9\xe1\x22\x58\x1e\xd7\xf5\x0c\xc7\x7e\x9a\xce\x47\x1a\xfa\x11\xd2\xa4\xc8\x50\xb7\xe3\x6c\x8e\x5f\xa0\x22\xde\x20\x09\x56\xd9\x13\xf8\x87\xf1\xfc\xe9\x5b\x69\x30\xe8\x79\x3c\x46\x9e\x58\x3f\x0e\xc4\xc9\xba\x1e\x97\x7d\x92\x7e\x79\xbf\x9c\x55\xf9\xe0\xd6\x88\xa6\x30\x10\x0f\x34\x28\x10\xcc\x58\x13\xdb\xb9\xd3\x36\x0a\x2e\x65\xb2\xf8\x12\x2f\xa6\x19\x78\x65\x0d\x81\xa1\xe9\x3f\x07\x53\x8f\x18\xb3\xa2\xc2\xc7\x43\xf8\x56\xf3\x75\x3f\x4f\x86\xc8\xd2\x5f\xa2\x1d\x16\x0a\x88\xc0\x3f\x5e\x79\x76\x18\x03\xe3\x3d\x92\x97\x26\x34\xd6\x6b\xc1\x7a\xe7\xc0\x57\x32\xcc\x06\x06\x59\x83\x7f\x6a\x3a\xf7\xa0\x59\x25\x55\xb5\x7c\x46\x61\x6b\x56\xac\xc6\xa2\xff\x02\x00\x00\xff\xff\xd9\xd4\x91\x08\xc4\x04\x00\x00")
2020-05-31 21:51:09 +08:00
func sharedCssBaseCssBytes() ([]byte, error) {
return bindataRead(
_sharedCssBaseCss,
"shared/css/base.css",
)
}
func sharedCssBaseCss() (*asset, error) {
bytes, err := sharedCssBaseCssBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "shared/css/base.css", size: 1220, mode: os.FileMode(420), modTime: time.Unix(1598156747, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
2020-06-01 18:07:48 +08:00
var _sharedCssEnlargeCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xdd\x8a\x22\x31\x10\x85\xaf\x93\xa7\xc8\xcd\x80\x2e\x46\x7a\x06\x64\x99\xce\xd3\xc4\xa4\xba\xbb\x98\x98\x0a\x49\xf9\x33\x2e\xfb\xee\x4b\xa2\xae\xab\xc2\x8e\x17\x03\xda\x74\x2a\xcd\xa9\xef\x9c\xaa\x25\xc4\x60\xf3\x08\xea\x97\x14\x89\x0a\x32\x52\xec\xd5\x80\x07\xf0\x46\x0a\xa6\xd4\xab\xce\x48\x11\x60\xe0\xd3\xdb\x1e\x3d\x4f\xbd\x7a\xed\xba\xdd\xde\x48\x31\x01\x8e\x13\x9f\xce\x93\x91\xe2\xa8\x31\x7a\x38\xb4\x82\x91\x82\x76\x90\x87\x40\xfb\x5e\x4d\xe8\x3d\x44\x23\xa5\xe0\x6c\xe3\xa5\x51\xb7\x5c\x15\x45\xc9\x3a\xe4\x4f\x23\xc5\xda\xba\x8f\x31\xd3\x36\xfa\x5e\xe5\x71\x6d\x67\xdd\x42\x9d\x7f\xcb\xf7\xd5\xdc\xc8\xdf\x52\x5e\x88\xb5\x0b\x54\x60\xa1\xfe\x9e\x8f\x44\x1b\xed\x28\x72\xa6\x50\xaa\x9f\x81\x22\xeb\x82\x47\xa8\x7d\xde\x61\xd3\x7c\x30\x43\xd6\xa5\x76\x8c\x63\xad\x77\x3f\xdb\x05\xc3\x81\x75\x23\x1b\x28\x6f\x7a\xb5\x4d\x09\xb2\xb3\x05\x1a\x71\xbd\x2c\x93\xf5\xd5\xc8\x6b\x3a\xb4\xff\x3d\x5f\xc5\x13\x8e\x02\xe5\x33\xfb\xdb\x6a\xb5\x50\xd7\xc7\xe9\x8b\x07\x03\x2d\x78\xeb\x7d\xc3\x71\x36\xb8\xd9\xce\xe6\x99\xbe\x20\xce\xd5\x0f\xf5\x36\xaf\x10\xff\x99\x4e\x3e\xcd\xa0\x7b\xc8\xff\xdf\x6e\x0f\xf1\x3c\x35\xee\x2f\xf4\x30\x2e\xee\x2a\xb4\xe5\xa7\x2d\x79\x2c\x29\xd8\xcf\x5e\x61\x0c\x18\x41\xaf\x03\xb9\x8f\x6b\x8a\x18\x27\xc8\xc8\x77\xa1\x51\x64\x88\x7c\xe7\x20\x43\xb0\x8c\x3b\x30\xe7\xf5\xaa\x43\xd4\x94\x71\xc4\xd8\x2b\xa6\xa4\xaa\xa3\x5b\xa1\x34\x11\xd3\xad\x8a\x5d\x17\x0a\x5b\x86\xaf\x36\xff\xe5\x76\xf1\x5f\xaa\xf0\x55\x37\x43\x20\xeb\xbf\x4f\xf9\x4f\x00\x00\x00\xff\xff\x70\x98\x64\x5b\xa3\x03\x00\x00")
2020-05-31 21:51:09 +08:00
func sharedCssEnlargeCssBytes() ([]byte, error) {
return bindataRead(
_sharedCssEnlargeCss,
"shared/css/enlarge.css",
)
}
func sharedCssEnlargeCss() (*asset, error) {
bytes, err := sharedCssEnlargeCssBytes()
if err != nil {
return nil, err
}
2020-08-23 00:21:56 +08:00
info := bindataFileInfo{name: "shared/css/enlarge.css", size: 931, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _sharedCssGalleryCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcd\x6e\xea\x30\x10\x85\xd7\xf1\x53\xcc\x92\xa0\x6b\x08\xdc\xcb\xad\x9a\x6c\xfa\x2a\x13\x7b\x08\x53\x9c\xd8\xb2\xcd\x5f\x2b\xde\xbd\x72\x09\x6d\x40\xa0\xd2\x8d\x2d\x4b\x67\xbe\x33\x3e\xa7\xf4\xd6\x46\x78\x17\x99\x94\x0d\x1a\x43\xfe\x20\x83\x43\xc5\x5d\x53\xc2\x16\xfd\x48\x9e\x9f\x79\x35\xd4\xd4\x18\x48\xae\x88\x9b\x55\x2c\x61\xfe\xaf\x70\xfb\x4a\x1c\x85\x78\x69\x49\x33\x42\x50\x9e\xa8\x03\xec\x34\x8c\x5a\xdc\xcb\x1d\xeb\xb8\x2a\xe1\xb9\x28\xdc\x3e\x4f\x66\x5f\xae\x77\x91\xc5\x27\x32\x3b\xfe\x4c\x7d\x7a\x9c\x3a\xfb\xff\x30\x75\xf1\x0b\xea\x7c\x40\x9d\xf4\x92\x34\xe0\x50\xeb\x41\x90\x57\xf9\xa6\x40\x7b\x85\xf4\x27\x52\x51\x09\x91\x69\x0e\xce\xe0\xa1\x84\xa5\xa1\x84\x4d\x97\xdc\x79\x74\x25\xa4\xb3\x1a\xba\x48\x8e\xd4\x26\xab\x16\x7d\xc3\xdd\x99\x23\x8b\xc9\xa2\x6f\xe4\x52\xe9\x58\xc5\x8d\xa7\xef\x89\xfb\xbb\x0d\x16\xa9\x8d\x55\xeb\x1b\x34\x6e\x9b\x44\xba\xd6\x65\xe7\x60\x14\x1a\x35\xba\xe4\x0f\x82\xcb\x61\x0c\xb3\xc9\x3c\xaf\x60\x3a\x86\xbf\x29\x43\xe0\x00\x1d\x46\xde\x12\x04\x7e\x23\xb0\x1d\x68\x0a\xeb\x68\xdd\x9f\x53\x75\x37\x04\xad\xad\xd9\x10\x8c\xa7\x22\xeb\x9b\xc3\x4d\xb4\x95\xc8\x6c\xfd\x4a\x2a\xca\x25\xa7\x45\xec\x96\x7c\xfa\xc0\x47\x00\x00\x00\xff\xff\x00\x1d\x81\x7b\xee\x02\x00\x00")
func sharedCssGalleryCssBytes() ([]byte, error) {
return bindataRead(
_sharedCssGalleryCss,
"shared/css/gallery.css",
)
}
func sharedCssGalleryCss() (*asset, error) {
bytes, err := sharedCssGalleryCssBytes()
if err != nil {
return nil, err
}
2020-08-23 00:21:56 +08:00
info := bindataFileInfo{name: "shared/css/gallery.css", size: 750, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _sharedCssManageCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe2\xd2\xd7\x52\x56\x28\xce\x2f\x2d\x4a\x4e\xf5\x4d\x2c\x28\xc8\xcc\x4b\x0f\x0d\xf2\xb1\xcd\x4d\xcc\x4b\x4c\x4f\xd5\x4b\x2e\x2e\xd6\xcb\x4d\x2c\x50\xd0\xd2\x07\x04\x00\x00\xff\xff\x86\x0f\x67\x80\x27\x00\x00\x00")
2020-05-31 21:51:09 +08:00
2020-08-23 00:21:56 +08:00
func sharedCssManageCssBytes() ([]byte, error) {
2020-05-31 21:51:09 +08:00
return bindataRead(
2020-08-23 00:21:56 +08:00
_sharedCssManageCss,
"shared/css/manage.css",
2020-05-31 21:51:09 +08:00
)
}
2020-08-23 00:21:56 +08:00
func sharedCssManageCss() (*asset, error) {
bytes, err := sharedCssManageCssBytes()
2020-05-31 21:51:09 +08:00
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "shared/css/manage.css", size: 39, mode: os.FileMode(420), modTime: time.Unix(1598113213, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
2020-06-01 18:07:48 +08:00
var _sharedJsEnlargeJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\xdd\x6f\xe3\xb8\x11\x7f\xb6\xff\x8a\x29\xae\x80\xe4\xc4\xb1\x9d\x2d\xee\x65\x53\x2f\x70\xc8\x06\xb8\x02\x2d\x5a\x5c\xb6\xd8\xdb\x2b\x8a\x0d\x23\x8d\x2d\xf6\x68\x52\x20\xa9\xd8\xde\x85\xff\xf7\x82\x1f\x12\x29\x99\xf6\x3a\x57\x1c\xd0\x27\x5b\xe4\x7c\xfc\xe6\x83\x33\x43\x09\x77\xb5\x90\x1a\x4a\x5c\x91\x86\x69\x28\x18\x51\x0a\x1e\x38\x23\x72\x8d\xf0\x75\x3c\x9a\x5f\x8d\x47\xb5\xc4\x15\xdd\xc1\x12\xb2\xef\x5e\x28\x6e\x6f\xb2\xbb\xf1\x08\x19\xc2\x12\x78\xc3\xd8\xdd\x78\x54\x30\xa1\xf0\xa1\xb7\x22\xb8\x46\xae\x55\x6f\xb1\xae\x84\x16\xfd\x15\x89\x4c\x90\x32\x5e\x1b\x8f\xbe\x08\xb1\x81\x25\x2c\xee\xc6\xa3\x9d\xff\xdd\xbb\xdf\xf1\x68\x23\x1a\x85\xef\xc5\x96\xc3\x12\x56\x84\x29\x34\x8b\xb5\x44\x85\xf2\x05\xcb\xc7\x42\x0a\xc6\x60\x09\x5f\x0f\x3d\xe1\xca\x2f\x8d\x47\xa2\x46\x7e\x6f\xd0\x7e\xa0\x1b\x14\x8d\x0e\x50\xae\xe6\x63\x0b\x5b\x69\xd9\x14\x5a\xc8\x1c\x19\x4e\xc1\x99\xbe\x6c\x0d\x9f\x18\x97\x8c\x74\x45\xd5\x4c\x55\x62\x4b\xf9\x3a\xe0\xf0\xeb\x9d\xb3\xdc\x9f\x6e\x3d\xb2\xca\x2d\xec\x7a\x4f\xfb\xde\x53\xc2\xcc\x20\x3e\x65\x6b\xb7\x79\x64\xb1\xdb\xe9\x0c\xfb\x28\x49\x5d\xa3\xcc\x27\x1d\xd3\x33\xe5\xe5\x2f\x42\x6c\xee\x05\xd7\x52\x30\x65\xb6\xe2\xbd\x47\xfa\x05\x07\xe4\x1f\x29\x2f\xc5\x76\x48\xf8\x41\x34\x45\x35\xa0\x7c\x2f\xc9\x7a\xb0\xe4\x80\x7b\x66\x64\x38\x33\x80\x78\x79\x5f\x51\x56\xe6\x96\x0a\x19\x1a\x96\x43\x1c\x90\x0e\x77\x88\x80\x4b\xc1\x52\x14\xcd\x06\xb9\x9e\x15\x12\x89\x36\x59\x68\x9e\xf2\xac\xa4\x2f\x59\x50\x6c\xf4\xd8\xdc\xfe\x2b\x55\x7a\x46\xca\x32\xcf\xd0\x25\xf9\x80\x48\xe9\x3d\xc3\x59\x49\x55\xcd\x88\x89\x49\xc6\x05\xc7\x2c\x41\x22\x6a\x52\x50\x6d\x49\x16\x59\x70\xc4\x97\xc8\x93\x0f\xaf\x00\x38\xe0\x3b\x01\xf6\xc6\x90\xdd\x14\x9e\x6e\x00\xfd\xc8\x8f\x03\x99\x96\x3a\xd6\xf7\x17\x7e\x1e\x21\x19\xe0\xb3\xf4\x67\x91\x51\x9e\x64\xa1\x9c\xa3\xfc\x80\x3b\x73\xdc\x32\x93\x6b\x70\x9d\x25\xc8\x2a\x89\x2b\x5b\x65\xb2\x93\x6e\x49\xda\x68\xb9\x27\xfd\x18\xfc\xbd\xd1\xaf\x33\xce\x31\x9c\xb5\x4e\x34\x3a\xcd\x74\x6c\xdf\x4d\x96\xa2\xfb\xad\x06\x3a\xf6\xc8\xc2\xa8\xe0\x5e\x62\x5f\x4b\x7e\xca\x3a\xbb\x9f\xa2\xef\x19\x66\xeb\x66\x76\x4c\x94\xb0\x2a\x99\x8e\x2d\xc3\xa4\x57\x96\xa2\x36\x71\xd9\x49\x89\x78\x4e\xda\xe3\x49\xbe\x75\x40\x22\x51\x11\xa8\x5e\x53\x3a\x85\x89\x6e\xd6\x91\xf4\xc0\x72\x0a\x92\xa7\x48\xf3\x28\x59\x18\x07\x66\x49\x1b\x8f\x50\x07\xc6\x18\x74\xe8\xad\x17\x42\xf6\x0c\x27\x01\x9b\xfd\x14\xfd\x2b\xc1\x7a\xb6\xb6\xa0\x1f\x77\x9b\x50\xd0\x43\x25\x20\x65\xf9\xf0\x82\x5c\x1b\x58\xc8\x51\xe6\x59\xc1\x68\xf1\x6b\x36\x85\x1c\x27\xb0\x7c\x67\x79\x46\x68\x5c\x61\xc8\xde\xbb\xe9\xc5\x35\x9a\x20\xeb\x07\x1d\x8e\x10\x5c\xc1\xf5\x62\xf6\xe6\xfb\x29\xd8\x25\xd3\xce\xcd\xe0\x63\x9a\xdb\x6c\x0b\x73\x78\x93\xda\xa8\xcc\x46\x24\xb4\x94\x64\xeb\x94\x1c\xa6\xae\x2f\x27\xcb\xc1\xef\x82\xfe\xe6\x77\x42\xdf\x06\xc5\xb5\xf9\x10\x8c\x28\x3d\x8f\xed\xb1\xa9\xec\x75\x36\x75\x49\x34\x5a\x8d\x46\x8e\x05\x3d\x39\x72\x4f\x97\x3e\xff\x9b\xb0\x16\x6d\x3b\x81\x58\xbc\x5b\xfb\x90\x90\x2c\x51\xd1\x2f\x68\xfc\x1e\xdc\x4e\x57\x90\xc7\x03\x9c\x13\xe1\x51\x06\xf5\x3e\x1a\x87\x13\xde\xf2\xb3\x0e\x7c\x1d\x87\x35\x37\xeb\x04\x0f\xf6\xce\xc5\x11\xb6\x5a\x50\xae\x51\x96\x62\xcb\x5f\x91\x18\xf1\x60\xa8\x65\x83\x61\x27\xd6\xe6\x26\x94\xa2\x91\x4a\x48\x73\x56\xd7\x92\x3c\x3f\x53\xbe\xce\xd2\xa9\x7b\x11\xd0\x8d\x78\xc1\xcb\x80\x76\x1e\xee\xc0\xf6\x7c\x5c\x13\x9e\xe3\xcc\x88\x33\x65\xe9\xe7\x29\x84\x87\x4f\x4e\xc0\x30\x5d\x8f\xa2\xf0\x0a\xd8\x4d\xfd\x1b\xbd\xdb\x8d\xdd\x97\xb9\xf7\xc8\xb5\xdd\xb9\xf2\xe3\x6e\x6f\x6e\x4d\xe0\xdd\x56\x88\xec\x32\xac\xf3\x39\xfc\xa0\x54\xb3\x41\x58\x35\x8c\x81\x2a\x24\x22\x1f\xd6\x0e\x9c\x95\xc8\x34\xf9\xe4\x4a\xc7\x62\xf1\x06\xae\xa0\xdb\x37\x4e\x2f\x18\x6d\xfd\xef\xfe\x7e\xba\xa8\x56\x98\x1b\xd4\x8f\x44\x55\xde\x22\x3b\xa0\x43\x45\x54\x05\x4b\xf0\x07\x91\x89\x82\x68\x2a\xf8\xcc\x2c\x1b\x19\x26\x23\xfe\x60\x1e\x66\x4a\x13\xa9\xd5\x47\xaa\xab\x3c\xba\x2d\x4d\x7c\x82\x84\x31\xc1\x5b\x2a\x51\x37\x92\x5b\x18\x9d\x2e\x5a\xc2\xd2\x2a\x9c\x49\xac\x19\x29\x30\x96\x34\x85\x2c\xea\x59\x06\x6b\x4e\xcb\x16\xfa\x96\xe8\xa2\x8a\xb0\x9f\xac\x1b\x46\x7a\x51\x11\xbe\xc6\x
2020-05-31 21:51:09 +08:00
func sharedJsEnlargeJsBytes() ([]byte, error) {
return bindataRead(
_sharedJsEnlargeJs,
"shared/js/enlarge.js",
)
}
func sharedJsEnlargeJs() (*asset, error) {
bytes, err := sharedJsEnlargeJsBytes()
if err != nil {
return nil, err
}
2020-08-23 00:21:56 +08:00
info := bindataFileInfo{name: "shared/js/enlarge.js", size: 8079, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _sharedJsGalleryJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\xdf\x6f\xdb\x36\x10\x7e\x96\xff\x8a\x5b\x51\xc0\x52\x1d\xcb\x49\xb0\x01\x43\x5c\x77\x68\xbb\xac\x0b\xb0\xae\xc5\x5a\x74\x0f\x45\x80\x30\xd6\x59\x22\x4a\x91\x1a\x49\x59\xf6\x12\xff\xef\x03\x7f\xc9\xb4\xec\x6e\x18\xfa\x62\x58\xc7\xe3\xc7\xbb\xef\xbe\x3b\x12\x37\x8d\x90\x1a\x0a\x5c\x91\x96\x69\x58\x32\xa2\x14\xbc\x21\x8c\xa1\xdc\xc2\xc3\x28\x59\x0a\xae\xb4\x6c\x97\x5a\xc8\x14\x19\x66\xc6\x96\xe8\x8a\xaa\x1c\x19\xc2\x02\x90\xe1\x7c\x14\x4c\x25\x69\x60\x01\x17\x97\xf3\x60\xb8\x27\x0a\x7f\x45\x5a\x56\xda\xd8\xcf\xcf\xfb\x85\x35\xc5\xce\x1c\xfc\x27\x2d\x74\x65\xd7\x2e\xbf\x8f\x70\x24\xb9\x7f\x43\x9a\x34\x9b\xc7\x96\x57\x3d\xd8\x60\xe1\x53\x0c\x66\xd6\xc2\xa2\xc4\x92\x2a\x8d\x32\x38\x44\xfb\x0a\x49\x3a\xfb\xb9\x1b\x8d\x92\xd9\x0c\xae\x37\x5a\x92\xa5\x06\x93\xc2\x9a\xb0\x16\xd5\x28\xe9\xc3\xb0\x49\xcf\x66\xf0\x81\xd6\x0d\x43\xb0\xbf\x35\x72\x4d\x34\x15\x1c\xb4\x80\xb2\x45\xa5\x60\x25\x45\x0d\x0d\x29\x0a\xca\xcb\x1e\xc4\x31\x08\xcd\x06\x16\xd0\x51\x5e\x88\x2e\x2f\x51\xbf\x16\x75\xd3\x6a\x2c\x3e\xe8\x2d\xc3\x34\xf0\x99\x99\xa5\xf7\x52\x34\x28\xf5\xf6\x93\x01\x48\xc7\x1e\x6f\xca\x70\xa5\xc7\x59\x2e\xb1\x61\x64\x69\xec\x9b\xf1\x19\x8c\xc7\x11\x13\x96\xfc\x86\x48\x85\x37\x5c\xa7\xcd\x26\x83\x67\x70\x09\x8f\x8f\x70\x7e\x9c\xe6\xbe\x30\x2e\xcd\x98\x5b\x9b\xed\x37\x46\x3d\x9d\x96\x4e\x43\x53\x73\xd2\xb4\xb2\xd0\xff\x1a\xfe\x81\x54\x0e\xb2\x38\x9d\x41\x50\x10\x74\xa6\xea\x2e\x8b\x81\x10\xf6\x5a\x1d\xca\x2d\x84\x9e\x2f\x19\x45\xee\xcc\xfb\x23\x6e\xf8\x4a\xc8\x1a\x44\x2b\x01\x79\x49\x39\x82\x58\x1d\x9d\x77\xac\x2d\x7b\x9c\x27\x8b\x14\xc5\xf5\x1a\xb9\xfe\xcd\xf8\x70\x94\xe9\x58\xa2\xa2\x7f\xe3\xf8\x0c\xd2\x0c\x16\x2f\xac\x6f\x42\x57\x90\x9e\x8a\xaf\xe7\x9c\x72\x8e\xd2\x1a\x1d\x7a\x92\x48\xd4\xad\xe4\x86\xb5\x64\x67\x7e\xbc\xce\x97\xae\x32\x4e\xe0\x3b\xfb\xfb\xd5\x48\x98\x20\xc5\x61\x1c\x5f\x07\x51\xa8\x6f\xb8\x46\xb9\x26\x2c\x3d\xf4\xca\xef\x29\x2f\xac\x2d\x3b\x83\x1f\xce\xcf\x43\x2f\x45\x30\x7b\xfe\xbf\xb5\xa1\x4f\x34\xad\xad\xd4\x6b\xc2\x96\x2d\x23\x1a\xa1\xa0\x35\x72\x45\x05\x57\x40\x78\x01\xc6\x13\x74\x85\xf5\x28\x71\x9b\x22\x51\xa3\x6b\x5e\x15\xeb\xe0\xaf\x16\xe5\xf6\x03\x32\x34\x83\xee\x25\x63\xe9\x38\x0f\x02\xa6\x1a\x6b\xa7\x53\xb7\x5d\xe2\xd2\xee\x7d\x29\x25\xd9\xe6\xa6\xe7\xd3\x80\x98\xe5\x35\x69\xc2\x97\x61\xd7\xea\xf8\x17\x26\x88\x0e\xd6\xbc\x20\x9a\x28\xd4\x39\x91\x59\x04\x1a\x85\xef\xa3\x62\x64\x2b\x5a\x9d\xda\xd3\xdc\x48\x73\x9e\x3e\xac\x1b\x8d\xf5\x35\xc3\xff\x9f\xc4\x4a\x48\x48\x1d\xd4\x67\xca\x0b\xdc\x9c\x19\x42\x6e\x8d\xc4\x07\xd0\x39\x72\x2d\x29\xaa\x34\xf3\xe2\x1b\x84\x0a\x8b\x28\x6c\x87\x75\x3b\x0f\xb2\xfe\xae\x5f\x0a\xca\x35\xbb\x05\xc3\x1c\xa5\x14\x32\xbd\x7b\x4b\x95\x32\x73\x32\xca\xdc\x84\x16\xc8\x23\x1a\x9e\x3e\x58\xcc\xdd\x9d\x8d\xfb\x58\xfa\x51\x26\xb4\x2e\xaf\x99\x6d\xd3\xd3\x3c\xd0\xba\x1c\x87\x2c\x12\xe7\x9c\x2b\x33\xc4\xf2\x2a\x8c\x9c\xbb\xa7\x0f\x6f\x89\xae\xf2\x15\x13\x42\xa6\x7d\x54\x79\x95\xed\x9a\xcd\xdd\xfc\x78\x67\xe7\x67\xc9\xdd\xd3\x87\xbd\x77\xd7\x3b\x9b\x10\x77\xfd\x48\x79\x8f\xd2\xce\x14\x57\xd5\x51\x72\x50\x5d\x1b\x17\xc3\x81\x0a\x3e\xdf\xda\xaa\x1b\xfb\xb2\x95\x32\x8c\xa9\x50\xf0\x92\x34\x73\xbf\xac\x34\x91\xfa\xc6\x70\x05\x0b\x33\x2a\xdd\x65\xf5\x0a\x2b\xb2\x46\x60\xf4\x0b\x02\x81\x7b\x29\x3a\x85\xf2\x0a\xb4\xdc\x9a\x1b\x6b\x45\x35\x10\x05\x35\xe1\x5b\xa0\x1c\x08\x48\xd1\x41\x47\x75\x75\x70\x35\x38\x8e\xcd\x19\xb4\x87\xf7\x7f\x9f\xbb\x46\xc8\x19\xf2\x52\x57\xde\x3a\x99\x78\x92\x67\x33\x78\x59\x14\x36\x52\xeb\x47\x78\xc9\x30\x8c\xce\xa0\x24\x9f\xd6\x1f\xb8\xec\x53\x4b\x87\x77\xc1\x33\x77\x8c\x97\x97\x53\xc2\x01\x1d\x93\xc5\x31\xce\x24\xa2\x28\x08\xf2\x60\xd3\x0b\x38\x1e\xbb\xa7\x75\xfa\xe4\xe3\xbb\x9f\xdf\x5d\xc1\x8a\x6e\x60\x49\x14\x2a\xe8\x2a\x94\xb8\xbf\x0d\x54\x6d\x9b\x06\x74\x45\x38\xd0\x9a\x94\xf8\xc4\xcb\xf5\x5e\x22\xf9\xe2\xa5\xe0\x29\x79\x83\xda\x0c\x25\xe0\xb8\xf1\xf7\x88\x29\x05\x29\x8a\x3d\x27\x15\x51\xbf\xe3\xc6\xe6\x02\x0b\x4f\xf5\x04\x2e\x86\x74\xef\x37\x70\xef\x1d\x18\x8c\x01\x7e\xfa\x0f\x3e\x27\x17\xb7\x19\x5c\xd9\xdb\x75\x08\xf7\x6e\x8d\x72\xc5\x44\x07\x8b\x43\xf5\x4d\x06\x07\xee\xa9\x3e\x49\xea\x
2020-05-31 21:51:09 +08:00
func sharedJsGalleryJsBytes() ([]byte, error) {
return bindataRead(
_sharedJsGalleryJs,
"shared/js/gallery.js",
)
}
func sharedJsGalleryJs() (*asset, error) {
bytes, err := sharedJsGalleryJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "shared/js/gallery.js", size: 3273, mode: os.FileMode(420), modTime: time.Unix(1602426126, 0)}
2020-08-23 00:21:56 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _sharedJsManageJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x59\x5d\x57\xdb\x3e\x93\xbf\x7f\x3e\x45\xe2\xcd\xfa\x91\xb6\x83\x48\xca\xbe\x9c\x26\xa8\x1c\x68\x81\xbe\x50\xe8\xf3\x87\xbd\xca\xc9\xe1\x18\x5b\xb1\x0d\x8e\xe4\xca\x0a\x24\x4d\xfc\xdd\xf7\x8c\x64\xc7\x36\xa5\x7f\xba\x37\x48\x19\xcd\x8c\x46\x33\xbf\x19\x8f\xc4\x63\xa0\x7b\x41\x9e\xf3\xf9\x52\x86\x26\x55\x92\xd0\x8d\xb7\x2c\x44\xaf\x30\x3a\x0d\x8d\x37\xa9\xe9\x3d\x43\xe8\xa6\xdc\xfd\x12\xc4\xd0\x8d\x16\x66\xa9\xed\x4a\xb3\x80\x0a\x2a\xfa\xd5\xdd\xbd\x08\x0d\x0b\xb5\x08\x8c\x20\x72\x99\x65\x2d\x3e\x8d\x0a\x0c\x9b\x2b\x7d\x1a\x84\x09\x11\xad\x25\xd5\xe8\xf6\x6a\xa2\xc7\xb9\x59\xe7\x42\xcd\x7b\xa6\x61\x0c\x89\x01\xd1\x98\xd1\xe7\xe6\x48\x70\x2e\xc6\xa6\xcf\xb9\xd8\x6e\x8d\xef\x7b\xca\xda\xd0\x92\xde\x6e\xff\x5e\x67\xe1\x74\x1a\x16\xe4\xb9\x90\xd1\x87\x24\xcd\xa2\x8e\x75\x01\x32\x80\x44\x96\x54\x16\x42\x9b\x13\x31\x57\x5a\x10\x01\x72\xbb\x7d\x76\xc8\xd4\x1d\x32\x0f\xb4\x90\xe6\x52\x45\x82\x69\xb1\x50\x8f\xc2\x69\x35\x2d\xce\x65\xcb\x9f\x91\x0a\x97\x0b\x21\x6b\xcf\x9d\x66\x02\x7f\x75\xd8\xb3\xdf\xb3\xdf\x88\x95\xdd\xaa\xc3\x3f\x6f\xa2\x92\x11\xaf\xe7\xb5\x96\xa2\xfa\x3c\x68\x3b\xe7\xf2\xc8\x54\x46\x1e\x1b\xa3\xd3\xbb\xa5\x11\x44\xd0\xb1\x61\xb1\x30\x6d\x4a\x9f\x73\xe9\xfb\x86\x15\x1d\x32\x48\x5a\x66\xc2\xf4\xf2\x06\x37\x09\x9a\x9a\x73\x53\x86\x4a\x16\xa6\x17\xf3\xe9\x0c\x16\xf8\x67\x80\x7f\x56\xf8\xe7\x8e\x7f\xd7\x6a\x91\x16\xe8\x9e\x42\x65\x8f\x82\xd0\x09\x6a\x59\xf3\xfe\xa8\x51\xf4\x84\x8a\x06\x2c\x5f\x16\xa8\xd2\x6e\x73\x8b\x0c\x4e\xef\x03\x97\xe2\xa9\x77\x2d\x4c\x23\xf0\x48\xe8\x26\x9d\x93\xfe\x2d\xdd\xdc\xf2\xfe\x70\x12\xa9\xcd\x5c\x69\x82\x82\x86\x0f\x27\xe6\x30\x66\x99\x90\xb1\x49\x26\xe6\x0d\x1f\xd1\x8d\x53\x24\x78\x3c\x35\xb3\x09\x42\x12\x4e\x89\x60\x83\x01\x2d\x51\xac\x66\xe6\xc3\xc9\xa2\x96\xa3\x0b\x96\xab\x9c\x50\x42\x27\x5d\xcd\x83\x97\x35\x0f\x50\xf3\x03\x4b\x82\x82\x08\xba\xdd\x92\x07\x16\x44\x88\x2e\x10\x84\xd2\x72\xb0\xdb\xa1\x7c\x4a\xd2\x4c\xec\xb6\x74\xda\x27\xab\xdd\xb6\xab\xdd\xb6\xe8\x22\x40\x37\xc0\x03\x0b\x33\x11\x68\x42\xcb\x26\xb6\xa7\xe8\xb2\x74\x6e\x73\xaf\xcf\xb9\x61\x73\x1d\xc4\x88\x15\x44\xe5\x32\x8f\x30\x2f\x29\x68\x62\xd8\x9d\x05\xf1\xad\xa3\xd1\x49\x6d\xb0\x61\x51\xaa\xcd\x7a\x52\x8d\x7c\xba\x37\x9a\x41\xa3\x06\x01\x50\xcf\x59\x4e\x0c\x0b\xcd\x0a\x04\x05\xc3\x82\xb9\x11\xba\x52\xb7\x4b\xf2\x27\x5a\x56\x28\x38\xde\x45\x0b\x7d\x76\xdd\xc4\xec\xbe\x4a\x3f\xd4\x9c\xfa\x3e\x39\x66\x91\xc8\x84\x41\x34\x83\x61\x29\x11\xb4\x05\xdd\x4b\x07\x5d\xd0\xf6\x90\x56\x46\xd9\xe9\xb1\x75\xb1\xa1\xd4\x61\x7e\x72\x6c\xfd\x6c\x28\x5c\xb3\xd0\x01\x88\x50\xfe\x7e\xd3\x56\xae\x7d\x9f\x58\x40\x47\x64\x84\x2e\xa1\xb4\xc4\x1d\x15\xe6\x7e\xb3\xe3\x95\x4d\x68\x64\x0b\xdb\x45\xef\x86\x18\x90\x10\x56\x81\xde\xd4\x2e\x19\x17\xa0\xe4\xed\x42\x2d\xa5\x19\x07\x38\x8d\x44\x61\xb4\x5a\x8f\x53\x68\xfb\x67\xbc\x2c\xb9\x61\x83\xc1\xa4\xf0\xfd\x82\x2d\x08\x6a\x82\x27\x67\xa2\x73\x97\xe4\x01\x5b\x04\x39\x11\x94\xcd\xd3\xcc\x08\x4d\x14\x9d\xa4\x47\xa9\x3b\x0b\x63\x4c\xd2\xb1\x26\x12\x0d\x1e\x0c\x58\xbd\x27\x9f\xce\x4a\x0a\xcb\xb6\xfb\x77\x16\x9f\x38\x3f\xd7\xea\xed\xf6\x15\x4a\x64\x2b\xbc\x44\x13\xc9\x1a\xc3\x29\xb4\x17\x9b\x39\xb3\x20\x6e\x73\xb6\xb4\x70\xd4\x0b\x12\xb1\xc1\xa7\xb3\x96\x0d\x1f\x9c\x0d\x7b\x23\xce\xad\x01\x0e\x63\xd3\xe1\xcc\xf7\x49\x5c\xe7\x39\xac\xb7\x5b\xb2\xe6\xfd\x21\xdc\x31\x93\x08\x49\x1e\x69\x75\x4c\xcb\x8d\xfe\xc8\xc8\xb0\x43\x9b\x8a\xfd\x83\xd1\x76\x38\xdb\xf2\xd1\xe1\xa1\xf8\xf7\x83\x51\xb3\xe5\x39\x11\xa0\x20\x84\x02\x02\x58\x42\x66\xf1\x5c\x7b\x61\xce\x73\x9b\xf5\x15\xf8\x23\xae\x58\xae\x55\x5e\x6c\xb7\x9b\x12\x62\x8e\x95\x80\x37\xa1\xb5\x87\x0a\xcd\xca\x4d\x2c\xe3\x78\x09\x55\x40\x0d\x48\x65\x6e\xc5\x8f\x65\x90\x8d\x03\xb8\x53\x4b\x19\x8d\x25\xa1\x0d\x1a\xa6\xb3\x36\x1c\xb0\x04\xb6\xf3\x0f\x09\x1d\x80\x4c\x67\x10\x2a\x69\xc4\xca\x8c\x31\x6f\xbe\x05\x39\x99\x1f\xcd\xf1\xc0\x35\x79\x3a\xa3\x10\x06\x59\x76\x17\x84\x0f\x85\xdd\xcb\xba\x62\x9c\x41\xf1\x90\xe6\xb7\xce\x84\xfe\xa8\xb4\xf9\xb6\xc0\xb2\x99\xce\x49\x6c\x63\x12\x1e\x85\x44\x40\x04\x16\xc3\x8c\x31\xdd\xe0\x4e\x71\x5d\xd5\x9c\x23\x3d\x1d\xce\xc6\x72\x52\x7d\x44\xac\xa4\xef\x0
2020-08-23 00:21:56 +08:00
func sharedJsManageJsBytes() ([]byte, error) {
return bindataRead(
_sharedJsManageJs,
"shared/js/manage.js",
)
}
func sharedJsManageJs() (*asset, error) {
bytes, err := sharedJsManageJsBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "shared/js/manage.js", size: 7204, mode: os.FileMode(420), modTime: time.Unix(1598113213, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _sharedJsViewJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xcf\x4e\xf3\x30\x0c\x3f\x7f\x79\x0a\xdf\x9a\x4a\xdf\xb2\x07\x88\x76\x00\x31\xe0\x88\xc4\x11\x71\xc8\x5a\xb7\x2b\x72\xe3\xe1\x64\xaa\x26\xc4\xbb\xa3\x52\x77\x1b\x68\x3b\x70\x8c\x7f\x7f\xed\xb6\xeb\x77\x2c\x19\x1e\x02\x11\xca\x01\x1a\xe1\x1e\x0a\xb7\x6c\xa7\xb7\x7b\x4b\x85\x37\xca\x59\x47\x0a\xd2\xe2\x91\x83\xd3\x7b\xe2\x98\xe5\x12\x6e\xbb\x58\x03\x12\xf6\x18\x73\x32\xa6\xe2\x98\x32\xa8\xd3\x9a\x10\x56\x50\x73\xb5\x1f\x51\xf7\xbe\x47\x39\x3c\x23\x61\x95\x59\x6c\xd1\x87\x2e\x3a\x65\x16\xa5\xff\x29\x85\x15\x44\x1c\xe6\x8a\xf6\x64\x58\xfa\x39\x44\xab\xac\x09\xd3\xd5\x94\x1b\x22\x5b\xbc\xd4\x21\x87\x85\xd2\x5f\x4f\x51\x3a\xd1\x28\xdd\xd4\x1e\x8d\x36\x5c\x1f\x4a\x6f\x1a\x16\xb0\x2a\x20\x04\x6e\xce\x83\x4b\xf8\x30\xff\xe6\x9b\x08\xb6\x5d\xca\x28\x16\x09\xdd\x98\x99\x30\x3b\x05\xff\x8f\xe2\xd2\x9b\xcf\x5f\xed\x9f\x04\x89\x43\xfd\xc7\x25\x16\xbb\x49\xb6\x68\x58\xbe\x17\xba\x5a\xf2\xcc\xff\x62\x57\xc5\x2f\x55\x56\xe8\x9e\xe5\xac\xfc\xac\x1f\x42\xae\xb6\x8f\x21\x6d\x6d\x39\xfd\x07\x77\xb8\xd9\xb7\xc6\x0c\x5d\xac\x79\x70\x2d\xac\xe6\x2f\xe9\xe7\xd9\x78\x68\x95\x7b\xf3\x15\x00\x00\xff\xff\xe9\xb5\xb6\x88\x83\x02\x00\x00")
func sharedJsViewJsBytes() ([]byte, error) {
return bindataRead(
_sharedJsViewJs,
"shared/js/view.js",
)
}
func sharedJsViewJs() (*asset, error) {
bytes, err := sharedJsViewJsBytes()
if err != nil {
return nil, err
}
2020-08-23 00:21:56 +08:00
info := bindataFileInfo{name: "shared/js/view.js", size: 643, mode: os.FileMode(420), modTime: time.Unix(1598094638, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _viewIndexTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xcf\x6f\xdb\x3a\x0c\x3e\x27\x7f\x05\xab\x77\x79\x0f\xa8\xed\xa4\x2d\xfa\xb6\x4c\x36\x30\xac\xdb\x61\xc0\xb0\x02\xcb\x0e\x3b\x32\x36\x63\xab\x95\x65\x43\x92\xf3\x63\x99\xff\xf7\x41\xb2\x9b\xa6\x59\xda\xa5\x43\x77\x72\x4c\xf3\xfb\x48\x91\x1f\xc5\xf0\x93\xab\xcf\xef\xa6\xdf\xae\xdf\x43\x61\x4b\x99\x0c\xb9\x7b\x80\x44\x95\xc7\x8c\x14\x73\x06\xc2\x2c\x19\x0e\x78\x49\x16\x21\x2d\x50\x1b\xb2\x31\xfb\x3a\xfd\x10\xbc\x62\x5b\xbb\xc2\x92\x62\xb6\x10\xb4\xac\x2b\x6d\x19\xa4\x95\xb2\xa4\x6c\xcc\x96\x22\xb3\x45\x9c\xd1\x42\xa4\x14\xf8\x97\x53\x10\x4a\x58\x81\x32\x30\x29\x4a\x8a\xc7\xe1\xc8\xf3\x58\x61\x25\x25\x9b\x0d\xcc\x9a\xf4\x96\xac\xa3\xcd\xd0\xa2\x37\x43\x38\xf5\x8f\xb6\xe5\x51\xe7\x37\x1c\x70\x29\xd4\x2d\x68\x92\x31\x33\x76\x2d\xc9\x14\x44\x96\x41\xa1\x69\x1e\xb3\xcd\x06\xc2\xb7\xc6\x90\x35\xd0\xb6\xa9\x31\xd1\x0c\x0d\x85\xa9\x31\xec\xd9\xc8\x1c\xa5\x24\xbd\xfe\x33\x30\x29\x89\x3a\xbf\x8f\x7c\x12\x04\x30\x2d\x84\x81\x9e\x15\x96\x95\xbe\x35\xb0\x14\xb6\xa8\x1a\x0b\x1f\x71\x81\x5f\x52\x2d\x6a\x7b\x02\x41\xe0\x00\xc6\xbf\x81\x5d\xd7\x14\xb3\xb2\xca\x1a\x49\x0c\x8c\x4e\xf7\x62\xdd\x98\xc8\x15\x3f\xbc\x31\x0c\x32\x9a\x93\x06\x34\x6b\x95\x26\x3c\xea\x08\x92\x21\x8f\xba\x46\xf2\x59\x95\xad\x1d\xb3\xc2\x45\x32\x1c\x0c\x78\x23\xdd\xc3\x9d\x2b\xe1\xd8\x9f\xe3\x9f\xac\x5a\x2a\x59\x61\xc6\x92\xab\xfe\x17\x8f\x30\xe1\x91\x14\xbf\x3a\x97\xa8\x30\xa7\x88\x25\x9f\xfc\x8f\x5d\x47\x1e\x79\x76\x1e\x75\xc1\xbc\x96\x48\xfb\x2f\xc5\xf8\x88\x5e\x17\x63\x8f\xde\xc2\x78\x89\x42\x41\x2a\xd1\x98\x98\xf5\x25\x74\x75\x1d\x6c\x36\xa0\x51\xe5\x04\xe1\x75\x51\xd9\xca\x95\xc4\x05\xc9\xc4\x62\xcf\x3b\x10\x96\x4a\xa8\x35\xb9\x33\x51\x16\xd8\xa2\x29\x67\x0a\x85\x64\xe0\x32\x08\x50\xfb\xca\xa2\x86\x10\xda\x96\x81\x4f\xc9\x9b\x6a\x47\xfc\x48\xa6\x3d\xd8\x62\x6e\xba\xc6\x4c\x31\x77\x39\xb0\xae\x5a\x78\x2f\x0f\xcf\xd2\x73\x7b\x4c\xaf\x90\xfd\x8f\x1d\xb0\x16\xa9\x6d\x34\x81\x57\x5a\xcc\x32\x61\x6a\x89\xeb\x09\xa8\x4a\xd1\x9b\xce\x67\xc0\x4d\xd5\xe8\x94\x9c\x28\xfc\x64\x3a\x1e\x4d\x4e\x0d\x10\xc2\xf9\xd9\x08\x98\x28\x5d\x7f\x96\x34\xab\x19\xfc\x3f\x82\xb6\x85\xb3\xd5\x29\x3c\xf0\x1b\x5f\x1e\xf4\x1b\xaf\x58\x2f\xbd\xdd\x6f\x25\x65\x02\x63\xf6\x6f\x89\xab\x6e\xa4\x27\xf0\x7a\x34\xaa\x57\xff\x1d\x93\xd1\xe5\xc5\x71\x19\x3d\x92\xf9\xc1\x8c\x9e\x57\x88\x9b\x9a\xf2\x63\x0a\xb1\xeb\xe7\xc2\xbe\xd4\xb1\x9f\x8c\xff\x48\x9e\xe3\xd5\x5d\x10\x51\xe6\xdb\xf9\xff\x1d\x8c\x81\xc7\x0c\x50\xda\x98\xdd\xbd\x74\x37\xf2\x56\xe4\x3f\xa0\x6c\xa4\xc7\xb7\x2d\xeb\x3c\x0a\x12\x79\x61\x63\x76\x7e\x36\xea\x2d\x6e\x58\x84\x5b\x09\x12\xbf\xaf\x7b\xdb\xae\x7a\x83\x7e\xa0\x82\x79\xa5\x0f\x2b\x39\xea\xa5\xfc\x50\xd7\xfd\x6c\x1e\x18\xc7\xc0\x1f\xe6\xa8\xce\xee\xe9\xe4\xfc\xe2\x6f\x29\xf7\xf8\x40\xcf\x4a\xbb\x6b\xd8\x3d\xdb\x0b\x25\xb9\x47\xfb\xb4\x7c\x0e\xa1\x5e\x40\x3d\x87\x7a\x1f\x61\xb7\x19\x32\xb1\xe8\x6f\x6e\x52\x99\xbf\xaf\x79\xe4\xae\x77\xb7\xaa\xba\x1d\xc5\xa3\xfe\x3f\x89\xdb\x9a\x0b\x51\x4e\xc0\x90\x85\xb9\x8d\x9d\x79\xe2\x17\xe4\xcf\x00\x00\x00\xff\xff\xfa\x00\x52\x8d\xbf\x08\x00\x00")
2020-05-31 21:51:09 +08:00
func viewIndexTmplBytes() ([]byte, error) {
return bindataRead(
_viewIndexTmpl,
"view/index.tmpl",
)
}
func viewIndexTmpl() (*asset, error) {
bytes, err := viewIndexTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "view/index.tmpl", size: 2239, mode: os.FileMode(420), modTime: time.Unix(1598160566, 0)}
2020-05-31 21:51:09 +08:00
a := &asset{bytes: bytes, info: info}
return a, nil
}
// Asset loads and returns the asset for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func Asset(name string) ([]byte, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
}
return a.bytes, nil
}
return nil, fmt.Errorf("Asset %s not found", name)
}
// MustAsset is like Asset but panics when Asset would return an error.
// It simplifies safe initialization of global variables.
func MustAsset(name string) []byte {
a, err := Asset(name)
if err != nil {
panic("asset: Asset(" + name + "): " + err.Error())
}
return a
}
// AssetInfo loads and returns the asset info for the given name.
// It returns an error if the asset could not be found or
// could not be loaded.
func AssetInfo(name string) (os.FileInfo, error) {
cannonicalName := strings.Replace(name, "\\", "/", -1)
if f, ok := _bindata[cannonicalName]; ok {
a, err := f()
if err != nil {
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
}
return a.info, nil
}
return nil, fmt.Errorf("AssetInfo %s not found", name)
}
// AssetNames returns the names of the assets.
func AssetNames() []string {
names := make([]string, 0, len(_bindata))
for name := range _bindata {
names = append(names, name)
}
return names
}
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
"manage/.container": manageContainer,
"manage/.gitignore": manageGitignore,
"manage/Dockerfile": manageDockerfile,
"manage/Makefile": manageMakefile,
"manage/README.md": manageReadmeMd,
"manage/build/index.html": manageBuildIndexHtml,
"manage/build/manage.css": manageBuildManageCss,
"manage/build/manage.css.map": manageBuildManageCssMap,
"manage/build/manage.js": manageBuildManageJs,
"manage/build/manage.js.map": manageBuildManageJsMap,
"manage/build/shared/css/base.css": manageBuildSharedCssBaseCss,
"manage/build/shared/css/enlarge.css": manageBuildSharedCssEnlargeCss,
"manage/build/shared/css/gallery.css": manageBuildSharedCssGalleryCss,
"manage/build/shared/css/manage.css": manageBuildSharedCssManageCss,
"manage/build/shared/js/enlarge.js": manageBuildSharedJsEnlargeJs,
"manage/build/shared/js/gallery.js": manageBuildSharedJsGalleryJs,
"manage/build/shared/js/manage.js": manageBuildSharedJsManageJs,
"manage/build/shared/js/view.js": manageBuildSharedJsViewJs,
"manage/index.tmpl": manageIndexTmpl,
"manage/indextmpl.go": manageIndextmplGo,
"manage/package.json": managePackageJson,
"manage/rollup.config.js": manageRollupConfigJs,
"manage/src/App.svelte": manageSrcAppSvelte,
"manage/src/Gallery.svelte": manageSrcGallerySvelte,
"manage/src/Photo.svelte": manageSrcPhotoSvelte,
"manage/src/http.js": manageSrcHttpJs,
"manage/src/main.js": manageSrcMainJs,
"manage/src/stores.js": manageSrcStoresJs,
"shared/css/base.css": sharedCssBaseCss,
"shared/css/enlarge.css": sharedCssEnlargeCss,
"shared/css/gallery.css": sharedCssGalleryCss,
"shared/css/manage.css": sharedCssManageCss,
"shared/js/enlarge.js": sharedJsEnlargeJs,
"shared/js/gallery.js": sharedJsGalleryJs,
"shared/js/manage.js": sharedJsManageJs,
"shared/js/view.js": sharedJsViewJs,
"view/index.tmpl": viewIndexTmpl,
2020-05-31 21:51:09 +08:00
}
// AssetDir returns the file names below a certain
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
// following hierarchy:
// data/
// foo.txt
// img/
// a.png
// b.png
// then AssetDir("data") would return []string{"foo.txt", "img"}
// AssetDir("data/img") would return []string{"a.png", "b.png"}
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
// AssetDir("") will return []string{"data"}.
func AssetDir(name string) ([]string, error) {
node := _bintree
if len(name) != 0 {
cannonicalName := strings.Replace(name, "\\", "/", -1)
pathList := strings.Split(cannonicalName, "/")
for _, p := range pathList {
node = node.Children[p]
if node == nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
}
}
if node.Func != nil {
return nil, fmt.Errorf("Asset %s not found", name)
}
rv := make([]string, 0, len(node.Children))
for childName := range node.Children {
rv = append(rv, childName)
}
return rv, nil
}
type bintree struct {
Func func() (*asset, error)
Children map[string]*bintree
}
var _bintree = &bintree{nil, map[string]*bintree{
2020-08-23 00:21:56 +08:00
"manage": &bintree{nil, map[string]*bintree{
".container": &bintree{manageContainer, map[string]*bintree{}},
".gitignore": &bintree{manageGitignore, map[string]*bintree{}},
"Dockerfile": &bintree{manageDockerfile, map[string]*bintree{}},
"Makefile": &bintree{manageMakefile, map[string]*bintree{}},
"README.md": &bintree{manageReadmeMd, map[string]*bintree{}},
"build": &bintree{nil, map[string]*bintree{
"index.html": &bintree{manageBuildIndexHtml, map[string]*bintree{}},
"manage.css": &bintree{manageBuildManageCss, map[string]*bintree{}},
"manage.css.map": &bintree{manageBuildManageCssMap, map[string]*bintree{}},
"manage.js": &bintree{manageBuildManageJs, map[string]*bintree{}},
"manage.js.map": &bintree{manageBuildManageJsMap, map[string]*bintree{}},
"shared": &bintree{nil, map[string]*bintree{
"css": &bintree{nil, map[string]*bintree{
"base.css": &bintree{manageBuildSharedCssBaseCss, map[string]*bintree{}},
"enlarge.css": &bintree{manageBuildSharedCssEnlargeCss, map[string]*bintree{}},
"gallery.css": &bintree{manageBuildSharedCssGalleryCss, map[string]*bintree{}},
"manage.css": &bintree{manageBuildSharedCssManageCss, map[string]*bintree{}},
}},
"js": &bintree{nil, map[string]*bintree{
"enlarge.js": &bintree{manageBuildSharedJsEnlargeJs, map[string]*bintree{}},
"gallery.js": &bintree{manageBuildSharedJsGalleryJs, map[string]*bintree{}},
"manage.js": &bintree{manageBuildSharedJsManageJs, map[string]*bintree{}},
"view.js": &bintree{manageBuildSharedJsViewJs, map[string]*bintree{}},
}},
}},
}},
2020-08-23 00:21:56 +08:00
"index.tmpl": &bintree{manageIndexTmpl, map[string]*bintree{}},
"indextmpl.go": &bintree{manageIndextmplGo, map[string]*bintree{}},
"package.json": &bintree{managePackageJson, map[string]*bintree{}},
"rollup.config.js": &bintree{manageRollupConfigJs, map[string]*bintree{}},
"src": &bintree{nil, map[string]*bintree{
"App.svelte": &bintree{manageSrcAppSvelte, map[string]*bintree{}},
"Gallery.svelte": &bintree{manageSrcGallerySvelte, map[string]*bintree{}},
"Photo.svelte": &bintree{manageSrcPhotoSvelte, map[string]*bintree{}},
"http.js": &bintree{manageSrcHttpJs, map[string]*bintree{}},
2020-08-23 00:21:56 +08:00
"main.js": &bintree{manageSrcMainJs, map[string]*bintree{}},
"stores.js": &bintree{manageSrcStoresJs, map[string]*bintree{}},
2020-08-23 00:21:56 +08:00
}},
}},
2020-05-31 21:51:09 +08:00
"shared": &bintree{nil, map[string]*bintree{
"css": &bintree{nil, map[string]*bintree{
"base.css": &bintree{sharedCssBaseCss, map[string]*bintree{}},
"enlarge.css": &bintree{sharedCssEnlargeCss, map[string]*bintree{}},
"gallery.css": &bintree{sharedCssGalleryCss, map[string]*bintree{}},
2020-08-23 00:21:56 +08:00
"manage.css": &bintree{sharedCssManageCss, map[string]*bintree{}},
2020-05-31 21:51:09 +08:00
}},
"js": &bintree{nil, map[string]*bintree{
"enlarge.js": &bintree{sharedJsEnlargeJs, map[string]*bintree{}},
"gallery.js": &bintree{sharedJsGalleryJs, map[string]*bintree{}},
2020-08-23 00:21:56 +08:00
"manage.js": &bintree{sharedJsManageJs, map[string]*bintree{}},
2020-05-31 21:51:09 +08:00
"view.js": &bintree{sharedJsViewJs, map[string]*bintree{}},
}},
}},
"view": &bintree{nil, map[string]*bintree{
"index.tmpl": &bintree{viewIndexTmpl, map[string]*bintree{}},
}},
}}
// RestoreAsset restores an asset under the given directory
func RestoreAsset(dir, name string) error {
data, err := Asset(name)
if err != nil {
return err
}
info, err := AssetInfo(name)
if err != nil {
return err
}
err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755))
if err != nil {
return err
}
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
if err != nil {
return err
}
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
if err != nil {
return err
}
return nil
}
// RestoreAssets restores an asset under the given directory recursively
func RestoreAssets(dir, name string) error {
children, err := AssetDir(name)
// File
if err != nil {
return RestoreAsset(dir, name)
}
// Dir
for _, child := range children {
err = RestoreAssets(dir, filepath.Join(name, child))
if err != nil {
return err
}
}
return nil
}
func _filePath(dir, name string) string {
cannonicalName := strings.Replace(name, "\\", "/", -1)
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
}