-
Notifications
You must be signed in to change notification settings - Fork 0
/
bindata.go
836 lines (711 loc) · 82.1 KB
/
bindata.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
// Code generated by go-bindata.
// sources:
// templates/Makefile.tmpl
// templates/config/config.go.tmpl
// templates/config/logger.go.tmpl
// templates/config/mode.go.tmpl
// templates/controllers/home.go.tmpl
// templates/controllers/params.go.tmpl
// templates/controllers/user.example.go.tmpl
// templates/controllers/version.go.tmpl
// templates/errors/controllers.go.tmpl
// templates/errors/error.go.tmpl
// templates/glide.yaml.tmpl
// templates/main.go.tmpl
// templates/models/.keep.tmpl
// templates/public/assets/javascripts/app.js.tmpl
// templates/public/assets/stylesheets/app.css.tmpl
// templates/utils/conversions.go.tmpl
// templates/utils/strings.go.tmpl
// templates/views/bindata.go.tmpl
// templates/views/index.home.tmpl.tmpl
// templates/views/layout.tmpl.tmpl
// templates/web/assets.go.tmpl
// templates/web/middlewares/echorus.go.tmpl
// templates/web/middlewares/http_error_handler.go.tmpl
// templates/web/middlewares/rest.go.tmpl
// templates/web/server.go.tmpl
// templates/web/template.go.tmpl
// DO NOT EDIT!
package main
import (
"bytes"
"compress/gzip"
"fmt"
"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 {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
clErr := gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
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
}
func (fi bindataFileInfo) Name() string {
return fi.name
}
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
func (fi bindataFileInfo) IsDir() bool {
return false
}
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
var _templatesMakefileTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x90\x5d\x8b\x13\x31\x14\x86\xaf\x9b\x5f\xf1\xba\x5b\xac\x0a\x99\x69\x05\xe9\x3a\xa0\x0c\xcb\x82\xf6\x46\x7b\xeb\x95\x9b\x4c\x4e\xd3\xb8\x99\x9c\x21\x49\xbb\x4a\xdb\xff\x2e\xf3\xe1\x22\x2c\x7b\x93\x90\x97\x27\xe7\x3c\xe7\x5c\xe3\x56\x25\x32\xe0\x80\x7d\xce\x5d\xaa\xca\xb2\x25\xe3\x0e\x6d\xd1\x70\x5b\xd6\xec\x49\x93\xa1\x63\xe9\xdd\x91\x64\xc3\x86\x64\x24\xcf\xca\xb8\x60\xe5\x8e\xa3\xb4\xec\x55\xb0\xf2\x91\xb4\xec\x22\xff\xa2\x26\x27\xe9\x82\x5c\x7d\x94\xde\x05\x4a\xf2\x46\xbf\xa7\x9b\xf5\x7a\xad\x57\xa4\xc4\x76\x73\x87\x4f\x28\x73\xdb\x95\xa7\x53\x31\xf1\x3f\x83\x6a\xe9\x72\x29\x3a\x67\x84\x48\x14\x8f\x54\x21\x52\xca\x2a\x66\x31\xab\x77\xe9\x51\xe5\x66\x0f\x49\x58\x14\xef\x54\x4a\x94\x53\x61\x79\x31\x05\xda\x05\xa3\xb2\x1a\x13\x46\x81\x33\x7e\xab\x68\x13\x64\x58\x41\x6e\x4e\x17\xa0\x55\x0f\xf4\xaf\x20\xce\xe7\xf1\xfd\xe0\xbc\x17\xa2\x3f\x2b\x31\xab\xfb\x1b\xf7\x8d\xca\x98\xbf\xd9\x6e\xee\xde\xde\xf7\x5c\x8e\x07\x12\x42\xd3\x8e\x23\xf5\x10\x35\x7b\xc6\xd5\x17\x0a\x14\x55\x26\x8c\x2a\x57\x62\x56\x5b\x86\x9d\xd2\x27\xec\xf6\xe0\xbc\x81\x76\x41\xc5\x3f\x13\xa3\x87\x48\xf2\x0b\xf3\xe3\xf9\x46\x2c\x0b\x31\x89\x57\x83\x31\x46\x1b\x31\x43\xfd\x42\x91\x61\x7f\x11\x52\xc3\x73\xa3\xfc\x9e\x53\x86\xec\xf0\x61\xb9\x5c\xe2\x35\x06\xb7\xf9\xfc\x15\x3e\x4f\x83\x0a\x51\x6c\xbf\x7e\xff\xf6\xa3\x1a\x3f\x3e\xad\xe9\xbf\x66\xb8\x86\xa7\xbc\x48\xb0\x8c\xcc\x3d\x31\x92\x07\x4f\x09\x7d\xd7\x24\xfe\x06\x00\x00\xff\xff\x6c\x73\x6b\x4a\x44\x02\x00\x00")
func templatesMakefileTmplBytes() ([]byte, error) {
return bindataRead(
_templatesMakefileTmpl,
"templates/Makefile.tmpl",
)
}
func templatesMakefileTmpl() (*asset, error) {
bytes, err := templatesMakefileTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/Makefile.tmpl", size: 580, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesConfigConfigGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x52\xcd\x6e\xdb\x3c\x10\x3c\x6b\x9f\x62\x3f\x1e\x3e\x48\x85\x25\xa5\x3d\x06\x70\x01\xc7\x31\xd0\x1e\x9a\x18\x4e\x9b\x1e\xda\x22\xa1\xe8\x95\x4c\x44\x22\xd5\x25\x29\x34\x30\xfc\xee\x05\xe5\x1f\xc0\xfd\x45\x2f\x04\x39\x98\x99\x1d\xee\x6e\x2f\xd5\x93\x6c\x08\x95\x35\xb5\x6e\x00\x74\xd7\x5b\xf6\x98\x42\x22\xaa\x67\x4f\x4e\x40\x22\xac\x2b\xe9\x1b\x29\x01\x90\x88\x46\xfb\x4d\xa8\x0a\x65\xbb\x52\x49\xc9\xad\x75\x17\x25\x99\x41\x40\x06\x50\x96\x38\xaf\x1b\x1c\x24\x6b\x59\xb5\x84\x1b\xdb\xae\x1d\xca\xb6\x3d\xb8\x07\x96\x5e\x5b\x53\xc0\x20\x79\x64\xbe\x98\x1f\xaa\x46\xe5\x78\xfd\x9d\x06\x6b\xcb\x68\x03\x63\xcf\xb6\x61\xd9\x15\xe0\x9f\x7b\x3a\x8a\x9c\xe7\xa0\x3c\x6e\x21\xb9\x27\x76\x91\xee\x3c\x6b\xd3\xe0\x23\x99\xe1\x52\xcc\x96\xcb\x87\xfb\xc5\xea\xee\xed\xed\x8d\x78\x04\x48\x56\x36\x78\xe2\x1b\xd9\x91\xeb\xa5\xa2\x73\xf2\xea\xf6\xc3\xfb\xc5\xea\xe1\x66\xf6\x6e\x71\xb7\x9c\xcd\x17\x02\xc9\x0c\xd7\x54\xcb\xd0\xfa\x4b\x21\x1e\x61\x07\x50\x07\xa3\x50\x1b\xed\xd3\x2c\x16\x8d\x5f\x99\xe2\xff\xfb\x30\xdb\x1d\x24\x64\x86\x62\x29\xd9\x51\x3a\xaf\x9b\x0c\x20\xd1\x75\xfc\x6f\x71\x4c\x37\x9d\xa2\x10\x51\x99\x9c\xa1\x38\xec\x6f\x69\x06\xc9\xee\x54\xe7\x04\x1e\x73\x6e\x21\x89\x0d\x3c\xe0\x38\x8e\xa9\xb8\x0a\x75\x4d\x0c\x89\x97\xcd\x04\x1f\xf0\x72\x8a\x71\x64\xc5\xdc\x76\x9d\x34\xeb\x54\xb8\x8d\x98\xa0\xc8\x55\x3c\x1b\xed\x71\x4d\x4e\xb1\xae\x08\xf3\x5c\x56\x15\xd3\x30\xbd\xc0\x3c\xf7\xb2\x71\xf8\xea\x35\x96\x6b\x1a\x4a\x13\xda\x56\x64\xc5\x6d\xf0\x7d\xf0\x31\x53\xc5\xd2\xa8\xcd\x2f\xed\x1b\xed\xa3\xb3\x7b\xee\x2a\xdb\x6a\x95\x33\xd5\x63\xbd\xaf\xe3\x99\xbb\x8d\xe5\x91\xf0\x66\x31\xbb\x3e\xf3\x54\xb6\xeb\xb4\xff\x93\x27\xd3\x90\xf7\xb1\x99\x7f\xb3\x3a\x34\xa4\xf8\xc8\xda\x53\xea\x65\xf3\x23\x76\x37\xf6\x2f\x15\xb9\xf8\x89\xbd\xff\xda\x3f\x08\xf6\xb9\x33\x48\x98\x7c\xe0\xe3\xc2\xa5\xfb\x61\xac\xa8\x6f\xa5\xa2\xf4\x28\xb9\x8a\x68\x9a\x4d\xf0\xd3\x97\x48\x48\xc5\x67\x23\x4e\xaf\xed\x6e\x82\xf9\xcb\x2c\x3b\x0d\x5c\x6d\x48\x3d\xa5\xc4\x8c\xc4\x6c\x79\x5c\x31\x5d\xc7\x07\xfe\x37\x45\xa3\xdb\x71\x73\x7a\x69\xb4\x8a\xac\xc3\xb2\x7c\x0f\x00\x00\xff\xff\x02\x27\x06\x12\xc9\x03\x00\x00")
func templatesConfigConfigGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesConfigConfigGoTmpl,
"templates/config/config.go.tmpl",
)
}
func templatesConfigConfigGoTmpl() (*asset, error) {
bytes, err := templatesConfigConfigGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/config/config.go.tmpl", size: 969, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesConfigLoggerGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x4c\xce\x3d\x4e\xc4\x40\x0c\x86\xe1\x3a\x3e\x85\x95\x2a\x29\x92\x9c\x60\x5b\x24\xa4\x88\x06\x2e\x30\x0c\x1e\x63\x91\xd8\x91\x67\x66\x37\x08\x71\x77\xc4\xfe\xc0\xb6\x9f\x1f\xbd\xf2\x16\xe2\x47\x60\xc2\x68\x9a\x84\x01\x64\xdd\xcc\x0b\x76\xd0\xb4\x2c\xe5\xbd\xbe\x8e\xd1\xd6\xe9\x59\xbc\x6e\x99\x74\x5a\x8c\xbd\xe6\x16\x9a\xcd\x29\xc9\x4e\x8e\xf7\x6c\x1f\xa2\x87\xcf\x2b\x1a\xae\xe4\x6d\x48\xe6\x6b\x28\x85\xbc\x85\x1e\x60\x9a\x70\x36\x46\xc9\x18\x14\x45\x73\x09\x1a\x09\x2d\xfd\xae\x5e\x33\x2e\xc6\x4c\x0e\xc7\xe0\x67\x77\xc0\x4b\x6e\x7c\xa2\x53\xd7\x03\xa4\xaa\x11\x45\xa5\x74\x3d\x7e\x41\x33\x1b\x8f\x0f\xb7\x3e\x1e\x50\xe9\xd4\xdd\x7e\x1b\x5f\x68\x2f\x7f\xc7\xfe\x82\x67\x3a\xd2\xf2\x5f\x7d\xd4\x64\xe7\x09\xbe\xe1\x27\x00\x00\xff\xff\xa3\x8f\xb7\x58\x0c\x01\x00\x00")
func templatesConfigLoggerGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesConfigLoggerGoTmpl,
"templates/config/logger.go.tmpl",
)
}
func templatesConfigLoggerGoTmpl() (*asset, error) {
bytes, err := templatesConfigLoggerGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/config/logger.go.tmpl", size: 268, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesConfigModeGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x52\x41\xaf\xd3\x30\x0c\x3e\xc7\xbf\xc2\x44\x7a\x52\x2b\x4d\x7b\xf7\xa1\x5e\x80\x09\x2e\x3c\x90\x1e\xda\x15\x85\xd4\xd9\x22\x5a\xa7\x4a\xdc\x72\x40\xfb\xef\xa8\xc9\xa0\x91\xc6\x6e\x71\xfc\xf9\xf3\xe7\xcf\x9e\x8c\xfd\x69\xce\x84\x36\xb0\xf3\x67\x00\x3f\x4e\x21\x0a\x36\xa0\xb4\x1b\x45\x83\xd2\x21\x69\x68\x01\x6c\xe0\x94\xff\x9f\x9f\xf1\xc8\x8b\x8f\x81\x47\x62\x39\x99\xe8\xcd\x8f\x81\x5e\xcc\x48\xe8\x13\xca\x85\x90\xd7\x77\x70\xf9\x4d\x1b\x14\x97\x1b\x16\xe5\x62\x04\x7b\x72\x9e\xa9\x54\x98\x69\x1a\xbc\x35\xe2\x03\xe3\x18\x7a\xda\x83\x7a\xd4\xa3\x43\x7d\x7c\xff\xe9\xcb\xf7\xe3\xcb\x49\x67\x31\x1f\x68\xa1\x21\x4c\xb9\x43\xdd\x6d\x55\x01\xaa\xce\x76\xa8\xfb\x2d\x2c\xd5\xdf\x28\xfd\xaf\x2c\x7f\x77\xa8\x85\xd2\x0d\xf8\x35\x86\x7e\xb6\x59\xe1\x3d\xbc\x4a\x76\xa8\xa7\x7f\x51\x76\x6e\x31\x71\x2d\xf9\x1c\xfa\x55\x7d\x25\x08\xc0\xcd\x6c\xd1\xb3\x97\xa6\xc5\xdf\xa0\xbc\x43\xc2\x43\x87\x21\xed\x3f\x92\x10\x2f\xcd\x03\x17\xda\xb7\x48\xf8\xa6\x43\xad\xd7\x32\x95\x7e\x79\xb1\x17\xa4\x1c\x58\x93\xa8\xee\xb2\xcb\x33\xee\xaa\x01\x0e\xa0\x94\xda\x14\x11\x28\xd5\x93\x33\xf3\x20\x39\x33\x19\xf6\xb6\x71\xa3\xec\x5f\xa7\xe8\x59\x5c\xa3\xdf\x99\x1e\x9f\x12\x2e\x66\x98\xe9\x80\x4f\x49\xef\x1e\xdd\xc0\x0e\xa9\x6d\x41\xa9\x2b\xa8\x2b\x5c\x01\xca\xb5\x60\x24\x99\x23\x97\x65\xdb\x39\xc6\xd5\xba\x7a\xe9\x95\xa5\xfb\xe2\xca\x91\x97\xa6\xc5\x24\xd1\xf3\x79\x9d\xab\x30\xfc\x35\xf2\x46\xfd\x4a\xb2\xb2\x27\x92\xfb\x3b\xba\xa7\x2c\xe8\xa6\x5e\x5f\xe1\xcf\xe6\x57\x86\x6c\x00\xb8\xc2\x9f\x00\x00\x00\xff\xff\x23\x2a\x00\xcc\x22\x03\x00\x00")
func templatesConfigModeGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesConfigModeGoTmpl,
"templates/config/mode.go.tmpl",
)
}
func templatesConfigModeGoTmpl() (*asset, error) {
bytes, err := templatesConfigModeGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/config/mode.go.tmpl", size: 802, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesControllersHomeGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x44\x8e\x41\x6a\xc3\x40\x0c\x45\xd7\xd6\x29\x84\x56\x36\x84\xf1\x21\xba\x69\x29\xa5\xd0\x1c\xa0\x28\xb2\xea\x31\x19\x8f\x06\x59\x86\x40\xc8\xdd\x8b\x5b\x68\xd7\xff\xfd\xff\x7e\x63\xb9\xf2\xac\x28\x56\xc3\xad\x14\xf5\x0d\x60\x59\x9b\x79\x60\x0f\x1d\x55\x8d\x31\x47\x34\x02\xe8\x68\x5e\x22\xef\x97\x24\xb6\x8e\x85\x2f\x5b\xb0\x5c\x47\x95\x6c\x04\x03\xc0\x38\xe2\x4b\x9d\xf4\xf6\x6c\xab\xa2\x6b\x9d\xd4\x37\xe4\xd6\xca\x22\x1c\x8b\x55\xcc\x47\xd0\x78\xd6\x04\x5f\x7b\x95\x7f\xba\x17\x3c\x56\xd2\x93\xd5\xd0\x5b\x0c\xa8\xee\xe6\x78\x87\x4e\xd2\x59\xa3\xa7\xcc\x75\x2a\xea\x9f\xab\x46\xb6\x89\x4e\x48\x7f\x5d\x1a\x00\x3a\xd7\xd8\xbd\xa2\xa4\x8f\x1f\x6d\x7f\x1c\x4e\xe7\xe0\xd8\xb7\xf7\xd7\x13\xd2\x72\xd0\xe9\xf0\xa7\x58\x5b\xa1\xd3\xaf\xef\x8d\xdb\xfd\x31\xc0\x03\xbe\x03\x00\x00\xff\xff\x7d\x57\x4c\x50\x05\x01\x00\x00")
func templatesControllersHomeGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesControllersHomeGoTmpl,
"templates/controllers/home.go.tmpl",
)
}
func templatesControllersHomeGoTmpl() (*asset, error) {
bytes, err := templatesControllersHomeGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/controllers/home.go.tmpl", size: 261, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesControllersParamsGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x53\x41\x6b\xdb\x4c\x10\x3d\xef\xfe\x8a\xf9\x74\x92\x3e\x8c\x54\x02\xbd\x38\xe4\x50\x4a\xd3\x5e\x1a\x02\x31\xbd\x84\x10\x36\xd2\x48\xde\x4a\xda\x15\xb3\x2b\x99\x60\xf4\xdf\xcb\xec\xca\x8e\x1c\x1a\xe8\xcd\x9a\x9d\xf7\xe6\xcd\x9b\xe7\x41\x95\xad\x6a\x10\x4a\x6b\x3c\xd9\xae\x43\x72\x52\xea\x7e\xb0\xe4\x21\x95\x22\x39\x1e\xf3\x81\xec\x6f\x2c\xfd\xf3\xa0\xfc\x7e\x9e\x8b\x55\xc5\xa8\x1e\xe7\xb9\x40\x22\x4b\x2e\xf9\xc7\xee\xd1\xeb\x8e\x9b\x1b\x3b\xa9\x4e\x57\xca\x5b\x82\xa4\xb1\x43\xdb\xe4\xda\x14\xca\x29\xd7\xe2\xa4\xcb\x7d\xb1\x6a\xc8\xa7\xcf\x89\xcc\xa4\xf4\xaf\x03\xb2\xac\x7b\x45\xaa\x77\xbf\xce\x78\xe7\x69\x2c\xfd\x71\x96\xa2\x28\xe0\x0b\xc4\xe7\x5b\x8d\x5d\x05\xa5\x32\xe0\xbc\x25\x84\x0a\xbd\xd2\x9d\x03\x5b\x83\x82\x3a\x3c\xd6\x64\x7b\xf8\xb1\xdb\xdd\xc3\x10\x20\xf9\x89\x3a\x62\x7b\x35\x3c\x3a\x4f\xda\x34\x4f\xda\x78\xa4\x5a\x95\xc8\x43\x08\x9d\x1d\xa9\x44\x00\x80\xf3\x03\x1c\xa5\x10\x77\xaa\xc7\x34\x83\x08\x92\x62\x66\xd1\xf5\x68\x4a\x48\x87\x09\xfe\x7f\x27\x3b\x83\xe5\x27\xa6\x1a\x56\x03\x32\x08\x8e\x32\xa1\xae\xc1\xb6\x1b\xfe\x86\xed\x0d\xac\x1d\x39\x41\x1f\xc2\xea\xa9\xce\xae\xe1\x3f\xdb\x06\x11\x6c\x34\xb7\x27\xa3\x69\x8d\x3d\x98\x44\x0a\x26\xa2\x0d\xd8\x96\xeb\x3a\x4f\x4f\x1b\x64\xd7\xb0\x80\x22\xea\x06\x28\x8f\x3b\x48\x21\x66\x29\x04\xa1\x1f\xc9\x44\x41\x2e\xbf\xc3\xc3\xd7\xb7\xa0\x7c\xe3\x62\x9a\x44\xeb\x9e\x5f\xb4\xa9\xb4\x69\x92\xcd\xa9\xf9\x67\xa0\x4d\x4e\xa3\x92\x2d\xf0\x88\x4d\x28\x06\xfb\x5d\xb2\x05\x58\x9c\x0f\x5c\xee\xd6\x52\xaf\xbc\x47\x4a\x91\x28\xe3\xd6\x39\x63\x17\xe5\x49\x87\xd1\x9d\x9c\x17\x4b\x3f\x04\x46\x01\x19\x3c\x3e\xad\x8f\x79\x94\xa2\x1c\x89\xd0\xf8\xf0\xed\xd8\x89\x5e\xb5\x98\x5e\xb4\x6d\xe0\x53\x26\xa5\x70\x07\xed\xcb\x3d\x4c\xdc\x84\x44\x79\xca\xc9\xcb\x02\x87\x72\x78\x71\x88\x28\x60\x2b\x05\x67\xef\x3b\x7a\x30\xe8\x3c\x56\x31\x61\x6e\x31\x43\x0a\x51\x5b\x82\xe7\x60\xce\x15\xb3\x92\x32\x0d\xc2\x14\xbd\x2f\x0a\xd8\xed\x91\x10\xb4\x03\x6b\xba\x57\xb0\x06\x97\x10\x8c\xc6\xeb\x0e\x8c\x05\xec\x5f\xb0\xaa\xce\xc4\x0c\xab\xcf\x8b\x7c\xe8\xc5\x15\x1f\xf2\xdd\xe2\x37\xa0\x86\x01\x4d\x95\x5e\x94\x37\x0b\x71\x9e\xe7\xcb\xf1\xff\xbe\xea\xf6\x2d\x15\x17\xce\x1d\xe3\x2a\x31\x0e\xe8\x91\x92\x2d\x84\xff\x7a\xbe\xb3\x0f\x86\x8d\x9e\x42\xb4\xb2\x98\x00\x36\x34\xdc\x1f\x00\x26\x66\x8e\xec\x69\xbc\x3a\x9f\x7c\x75\xf6\x0b\xa1\x72\x96\x7f\x02\x00\x00\xff\xff\x60\xa7\xce\xa4\xb6\x04\x00\x00")
func templatesControllersParamsGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesControllersParamsGoTmpl,
"templates/controllers/params.go.tmpl",
)
}
func templatesControllersParamsGoTmpl() (*asset, error) {
bytes, err := templatesControllersParamsGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/controllers/params.go.tmpl", size: 1206, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesControllersUserExampleGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x53\x41\x6f\xdc\x2c\x10\x3d\xc3\xaf\x98\x8f\x43\x64\x47\xf9\xec\xfb\x56\x39\xb4\x51\x0f\xed\x61\x1b\x35\x4a\x2f\x51\x94\x65\x61\xd6\xa6\x6b\xc0\x85\x21\x49\xb5\xda\xfe\xf6\x0a\xe3\xec\x6e\xd4\x4a\xa9\x2f\x20\x78\xf3\x66\x78\xef\x79\x94\x6a\x2b\x3b\x04\xe5\x1d\x05\x3f\x0c\x18\x22\xe7\xc6\x8e\x3e\x10\x54\x9c\x09\x87\xd4\xf6\x44\xa3\xe0\x9c\x89\xce\x50\x9f\xd6\x8d\xf2\xb6\x1d\xe4\x3a\x92\x54\xdb\x16\x55\xef\x05\xaf\x39\xa7\x9f\x23\xe6\x92\xdb\x88\x21\xc2\xf4\x45\x0a\x49\xd1\x6e\x0f\x6d\x0b\x57\x3e\x0d\x1a\xd6\x08\x77\xf7\xe7\xd6\x6b\x1c\x62\x93\x91\x9c\xa5\x88\xe1\x5a\x06\x69\xe3\x8c\x87\x1d\x67\xec\x2b\x46\x9f\x82\xc2\xa5\xb4\x98\xcf\x8d\xeb\x60\xf5\x3d\x7a\xb7\x10\xff\x8b\x55\x26\xbc\x8d\xa8\x61\xe3\x03\x60\x08\x3e\xe4\x9d\x95\x64\x5c\xc7\x19\xfb\x68\xa5\x19\x00\x0e\x43\x9c\x14\x63\xbe\x12\xf0\x28\x07\xa3\x17\x22\xe0\x8f\x64\x02\xea\x5f\x2f\x1b\xb1\xe2\x8c\x5d\xcb\x18\x9f\x7c\xd0\x7f\x29\x1f\xe7\xab\x37\x18\x96\x46\x6d\xa7\xc9\xff\x64\x70\x46\x6d\x1f\x9c\xb4\xf8\x06\xc5\xfb\x0e\xe1\xf0\x19\x47\x79\x99\x29\x64\x87\x19\xb2\xcf\xaa\x6f\x92\x53\x50\xa5\x11\xce\x8f\x3a\xd6\x90\x7b\x57\xf5\x4b\xe7\x1d\x67\x01\x29\x05\x07\x69\x6c\x4e\x85\xe5\xfb\x99\x60\x89\x4f\x93\x6d\x55\x0d\xe7\xc5\xbf\x63\xcd\xd9\x74\xb0\xdb\x1f\xc0\x55\x9a\x41\x35\x5c\x05\x94\x84\x95\x82\x9c\x82\xe6\xca\x3b\xc2\x67\xaa\x67\x47\x76\x9c\xa9\xe6\x06\xa9\x12\xbd\x74\x7a\xc0\xf0\x60\x91\x7a\xaf\xc5\x05\x88\x52\x28\x6a\xce\xd9\xa3\x0c\x30\x16\xff\x8f\x4f\xe0\xcc\x6c\x32\x0d\x2c\x2e\x41\x35\x1f\x8c\xd3\xd5\x59\x01\xd5\xef\xa6\xf3\xff\x2e\xc1\x99\x61\x8a\xca\x3c\x27\x86\x90\x35\x61\x05\xf6\xea\x9d\x70\x09\x22\x73\x8b\x9c\x9b\x25\xa2\x9e\x93\x33\x19\x20\xc9\x78\xc7\x5f\x37\xfc\x56\x2e\xf0\x5f\x9b\x72\xd6\xb6\xf0\xc9\x45\x0c\x04\xc6\x81\x96\x24\xd7\x32\x62\x89\xe7\xb3\xb4\xe3\x80\x25\xe8\x99\xde\xca\xf1\xae\x38\x73\x5f\x96\xcc\x77\x92\x8b\x05\x08\xab\x7d\x52\x3d\x5a\x74\x24\x2e\x4a\x83\xb9\xa1\x6a\x3e\xdf\x7c\x59\x56\xf9\x97\x6c\x6e\x48\x52\x8a\x45\x4a\x7d\x31\xa9\x57\xf3\x3d\xff\x1d\x00\x00\xff\xff\x2d\xac\xf9\x91\xd3\x03\x00\x00")
func templatesControllersUserExampleGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesControllersUserExampleGoTmpl,
"templates/controllers/user.example.go.tmpl",
)
}
func templatesControllersUserExampleGoTmpl() (*asset, error) {
bytes, err := templatesControllersUserExampleGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/controllers/user.example.go.tmpl", size: 979, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesControllersVersionGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x4c\x8f\x31\x6b\xc3\x40\x0c\x85\xe7\xd3\xaf\x10\x37\xd9\x10\xce\x7b\xd7\x6c\x2d\x6d\x86\x40\xd7\x70\x51\x64\xdf\x35\xf6\xe9\x90\xe5\x52\x30\xfe\xef\x25\xc4\x85\xae\x12\xef\xbd\xef\xab\x91\xee\x71\x60\x24\x29\xa6\x32\x8e\xac\x33\x40\x9e\xaa\xa8\x61\x03\xce\x17\xb6\x2e\x99\x55\x0f\xe0\xfc\x90\x2d\x2d\xd7\x40\x32\x75\x63\xbc\xce\x16\xe9\xde\x31\x25\xf1\xe0\xfc\xba\x86\xaa\xf2\xc5\x64\x97\x1a\x2d\x6d\x5b\xf7\xef\x52\xe2\xc4\xdb\xd6\x91\x94\x3e\x0f\x1e\x5a\x80\xae\xc3\x4f\xd6\x39\x4b\x41\x65\x5b\xb4\xcc\x68\x89\x91\x16\x55\x2e\x86\xdf\xfb\x4f\x7a\xb4\x94\x67\x8c\xb5\x8e\x99\xa2\x65\x29\x01\xfa\xa5\xd0\x5f\xba\x21\x7c\x10\x84\xa3\x14\xe3\x1f\x6b\x91\x55\x45\x71\x05\x47\xe1\xcc\xd6\xf8\x14\xcb\x6d\x64\xbd\x4c\x6c\x49\x6e\xfe\x80\x7e\x4f\xfa\x16\xc0\x3d\xb7\x91\xc2\xeb\xf9\xf4\xd1\x3c\x44\xc3\xd9\xa2\x2d\xf3\xe9\xed\xf0\x2c\x7e\x8f\x75\x05\xe7\xfc\x4e\xe4\x5f\xf0\x69\x11\x8e\xfd\x10\xf6\xaa\x03\xb8\xad\x85\x0d\x7e\x03\x00\x00\xff\xff\x2d\xd1\x2a\x25\x4d\x01\x00\x00")
func templatesControllersVersionGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesControllersVersionGoTmpl,
"templates/controllers/version.go.tmpl",
)
}
func templatesControllersVersionGoTmpl() (*asset, error) {
bytes, err := templatesControllersVersionGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/controllers/version.go.tmpl", size: 333, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesErrorsControllersGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x8f\x31\x6b\xc3\x30\x10\x85\x67\xe9\x57\x3c\x0c\x2d\x09\xb8\xc9\x6e\xe8\x14\x3a\x84\x92\x0e\x4d\xb6\x52\x88\x90\xcf\xa9\xb0\x7d\x32\xd2\x85\x34\x04\xff\xf7\x62\xcb\xc4\x19\xaa\xe9\xa4\xa7\xf7\xdd\x7b\x9d\xb1\xb5\x39\x11\x28\x04\x1f\xa2\xd6\xae\xed\x7c\x10\x64\x55\x2b\x99\xd6\xeb\x35\x3e\xe8\xb2\xf1\x2c\xc1\x37\x0d\x85\xf8\x36\x7c\x43\x20\x39\x07\x8e\x30\x60\xba\x20\x76\x64\x5d\xe5\x2c\x92\x58\xf9\x80\x07\xc7\x44\x5e\x0d\xac\xad\x4c\x56\x78\x6e\xae\xf0\x4c\xd8\x32\x53\x48\x46\xc7\x90\x1f\xc2\x71\xbc\xc5\x23\xa2\x6b\x2c\xad\x74\x75\x66\xfb\x5f\x8a\x45\x8d\x28\xc1\xf1\x29\x47\x4b\x62\x4a\x23\x06\xbb\x65\x5a\x87\x9b\x56\x35\x5d\x51\xbc\xa2\x6a\x65\xb5\xef\x82\x63\xa9\x16\x99\x9d\x19\x2f\x4f\x31\xcb\x51\x2f\xb5\x9a\x22\x3d\x8f\xd4\x9b\x56\x6a\x2f\x46\xce\xb1\xc0\x70\xe2\x38\x2f\x6a\xba\x2e\xf3\xbb\x74\xa0\x5f\x29\x26\x69\x98\xef\x72\x8a\x5e\xe0\xeb\x7b\xee\x75\x1b\xc2\x28\xb5\xf1\x25\x25\xa4\xf5\x25\xdd\x1d\xea\xdd\x71\x99\xde\x1f\xd3\x65\xa3\xb6\x9b\x7a\x15\x30\x5d\x47\x5c\x7e\x92\x89\x9e\x0f\x7e\x70\xcf\xad\x47\x4e\xdf\xe7\x5a\xf5\xba\xd7\x7f\x01\x00\x00\xff\xff\x7d\x50\x0f\x5b\xd1\x01\x00\x00")
func templatesErrorsControllersGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesErrorsControllersGoTmpl,
"templates/errors/controllers.go.tmpl",
)
}
func templatesErrorsControllersGoTmpl() (*asset, error) {
bytes, err := templatesErrorsControllersGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/errors/controllers.go.tmpl", size: 465, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesErrorsErrorGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x56\x51\x6f\xe3\x36\x0c\x7e\xb6\x7e\x05\x61\xa0\x83\x3d\xa4\x4e\x57\xdc\xbd\x64\xeb\xc3\x36\x14\xd8\x61\xcb\x70\x58\xbb\xed\x21\x0b\x5a\x55\xa6\x1b\x5d\x6d\xd9\x90\xe8\x5e\x03\xc3\xff\x7d\xa0\x25\x3b\x4e\x9b\x3e\x9c\x5f\x9c\x8a\xe4\xa7\x8f\xe4\x47\xba\x8d\x54\x4f\xf2\x11\x01\xad\xad\xad\x13\x42\x57\x4d\x6d\x09\x12\x11\xc5\x0f\x7b\x42\x17\x8b\x28\x2e\x2a\xe2\x97\x41\x5a\xee\x88\x1a\xfe\x4d\xf8\x42\x4b\xc2\xaa\x29\x25\x61\x2c\x44\x14\x77\x5d\xd6\xd8\xfa\x0b\x2a\xba\x6b\x24\xed\xfa\x7e\x39\x3b\x31\xb2\xc2\xbe\x5f\xb6\xa4\x4b\x17\x8b\x54\x88\xe5\x12\x7e\xbb\xbd\xfd\xfc\x6b\x9d\xa3\x05\x6d\x08\x6d\x21\x15\x82\x76\xa0\xab\xa6\xc4\x0a\x0d\x61\x0e\x0f\x7b\x90\x4d\x53\x6a\x25\x49\xd7\x66\xe4\x48\xfb\x06\x4f\x46\x77\x22\x9a\xe1\x82\x45\x6a\xad\x01\xda\x79\x6f\x70\x24\xa9\x75\xa0\xd8\x56\xd4\x76\x30\x3c\xea\x67\x0c\xc0\x22\x1a\x23\x93\x94\x41\x45\x3f\xd0\x5c\x33\xa9\x0a\x49\xe6\x92\x24\x38\xb2\xad\xa2\xd6\xa2\x67\xb1\x86\x4a\x36\x1b\x47\x56\x9b\xc7\xed\x44\xa4\xf3\x91\xd7\x8c\x0a\x39\x3a\x65\xf5\x03\x82\x2c\xcb\x90\x01\xd4\x4a\xb5\x16\x73\xf8\xba\x43\x03\x12\x4a\xad\xd0\xb8\x21\x7b\xe9\x9e\x30\xcf\x3c\xb8\x8f\xf7\x37\x72\x6e\x37\x9e\x3f\x3f\xda\x10\x4c\xcf\xfd\x17\x57\x9b\x55\xec\xd3\x8b\xef\x47\xc7\x5b\x7c\x21\xf0\xd4\x4e\x39\xde\x71\x0b\xd9\xfb\xda\x73\xe2\x67\xb3\xfd\x64\x0c\x5a\x7f\x71\xf0\xf6\x94\xe3\x7b\x2e\xc7\x40\xeb\xe0\xe2\x8e\x02\xde\x98\x67\xd4\x87\x7e\xf0\x13\xf8\x04\x6c\x6e\x05\x53\xf8\x5d\x9b\xfc\x84\x99\xf1\xd8\xbc\x1e\xab\xbf\x3e\xca\x63\x6c\xca\xa2\xae\x34\x4b\x91\xf6\x9e\xe5\xb3\xb4\x43\x93\xff\xd0\x8e\xe0\x6a\xde\xa1\xd9\x4f\xff\xea\x44\x14\xab\xda\x90\xad\xcb\x12\xad\x3b\x6f\x0d\xbe\x34\xa8\x08\xf3\x78\xc5\xbc\x23\x4f\x71\x35\x96\x3a\xee\xba\xb6\x51\xd2\x21\xbc\x92\xf6\xf9\xc7\x8b\x8b\xf3\x8b\x8b\x8b\x78\xc1\x41\xa1\x15\x21\x2c\xfe\x78\x7c\xee\x2b\xbf\x82\xf8\x13\x0b\xc6\xc8\x12\x6e\xd0\x3e\xa3\xf5\x0d\x67\xcf\x7e\xf1\x8a\x57\x23\xad\xac\xdc\xdd\x83\x36\xb9\x36\x8f\xdf\xca\xed\xc3\xe5\xe5\xbb\xdc\x3e\x5c\x5e\x9e\xe4\xf6\xb7\x69\x6c\xad\xd0\x39\xf9\x50\x22\x5c\x1b\xd2\xb4\xf7\x8e\x16\xa5\xab\xcd\x04\xf0\x8f\x2c\x75\xee\xe7\xb3\x2e\xa0\xeb\x32\x8b\xae\x6e\xad\xc2\xbe\x87\x42\xea\x12\xf3\x90\x51\x2f\x44\xd1\x1a\x05\x5e\x9d\xc3\x9c\xa1\xb5\x7e\x24\x86\x81\xe3\xa4\x74\x01\x3b\xb5\x80\xfa\x09\x56\x57\x6c\xca\x92\x69\xd0\xd3\x1f\xf9\x98\x13\x0f\x83\xbd\x53\xd9\x61\x62\x45\xd4\x8b\xc9\x40\xd4\x64\xfe\x9a\xb1\xc4\xbe\xc2\x5e\xa7\x23\x91\x04\xe1\xfb\x83\x5a\x53\x5f\xfe\x24\x1d\x45\xd8\x4d\x78\x45\x45\xd9\x4d\x63\xb5\xa1\x22\x89\xcf\xdc\xf9\x99\x5b\xc1\x99\x8b\x17\x80\x19\x2b\x97\xdf\x4c\x82\xdf\xa3\x54\x37\x63\x99\xb6\xa9\x98\x6f\x03\x6e\xaa\x54\xe4\x86\x6d\x30\x1b\x15\xcd\x7b\xc0\x69\xf3\x58\x62\xb8\x3f\x3b\x90\x7c\x97\x1f\x2b\x1d\xad\x2d\x60\x58\xd5\xd9\x2f\x6d\x51\xa0\x15\x11\x1f\x65\xff\x5a\x4d\x78\x33\xb8\x26\xf1\x26\x4e\x45\xc4\x3b\x4f\x2f\x38\x80\x8b\x6b\xa5\xe1\xb5\x9f\x85\x49\xe6\xba\xbe\x8d\xfb\x2f\xe6\xc0\xb7\x06\xee\x4c\xa0\xc3\x76\x5d\x80\x86\x9f\xa0\x44\x93\x8c\x80\xe9\xf9\x0f\x03\xe6\x49\xd0\xc5\x80\xda\x03\x96\x0e\xdf\xf7\xda\x7a\xaf\x79\x67\x07\xb7\xe0\x91\x1e\x35\x32\xd4\xe8\x78\x85\xcf\x7a\x88\x41\x10\x53\x10\x0f\x4f\xf2\x84\xfb\x50\xce\x13\x6d\x1f\x77\xc8\xe6\x09\xf7\xdb\x8d\x9f\xb6\xed\x14\xef\xa6\x25\xfb\x4d\x28\xf3\x31\x7b\x0d\x76\x04\x74\x4c\x7f\xf8\x72\x66\xeb\xd6\xd1\xcf\x54\xeb\xe4\x24\x68\xd0\xda\x00\x28\x9b\x06\x4d\xfe\xd7\xa0\xc1\xdb\x7a\x06\xbc\x38\x7c\xcb\xd6\x29\xac\xc3\xcc\x79\xb1\xde\x86\xef\xf9\x38\x7f\xaf\x6e\x19\x15\x3d\xcd\x21\xb1\xd3\xf8\x4f\xc0\x40\x2e\x99\xfe\xfa\x13\xbf\x26\x63\x44\x9a\x7d\x96\xd6\x61\x72\x7c\xcb\xa0\x1c\x7f\xc4\x38\xdf\xcd\x35\xdc\xf5\x0c\x9f\x5d\xbf\xa0\x6a\x69\x0c\x3c\x50\xe7\xc8\xea\xcd\xa4\xc1\x55\xc8\xe3\xa0\x90\x99\x74\x46\x7f\xd1\x8b\xff\x03\x00\x00\xff\xff\xb5\x2f\xf9\x72\xf4\x08\x00\x00")
func templatesErrorsErrorGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesErrorsErrorGoTmpl,
"templates/errors/error.go.tmpl",
)
}
func templatesErrorsErrorGoTmpl() (*asset, error) {
bytes, err := templatesErrorsErrorGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/errors/error.go.tmpl", size: 2292, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesGlideYamlTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x94\x3f\x6f\xeb\x56\x0c\xc5\x77\x7f\x0a\x01\x99\x6d\xdd\xff\x7f\x32\x74\xe9\xd2\xa1\x5b\x51\x74\x2c\x48\x5e\x52\x51\x22\xeb\x1a\x57\xb2\x13\xbf\x87\x7c\xf7\x22\xc1\xc3\xab\x55\xc4\xe8\x24\x42\x00\x7f\xe7\xe8\x90\xd4\x09\xe8\x05\x06\x7e\xec\xbe\x7f\x3f\x9c\x5a\x7d\x66\x5a\xff\x3e\xc1\xfa\xf4\xfe\xde\xdf\xbc\x99\xe1\xc8\xef\xef\xbb\xf1\x78\xaa\x6d\x7d\xdc\x3d\x74\x7f\xce\x34\xc1\xb2\x8c\x32\x72\xd9\xed\xbb\x9f\x94\xa1\x9e\x5e\x86\xc3\x38\xf7\xe7\x26\x70\xe1\x9e\xa6\xf1\x70\x31\xbb\xae\xbb\x70\x5b\xc6\x3a\x3f\x76\xcc\x86\x13\x80\x47\x63\xc4\x7b\x51\x2a\x90\x89\x52\xac\x8f\xc1\x53\x30\xc6\x65\xb0\x19\x60\x4b\x1d\xd7\xa7\x33\x1e\xa8\x1e\x7b\x02\x68\x53\x5d\x54\xcf\xf3\xe5\x16\x6b\x0e\xea\xa0\xbe\x74\x02\x0b\x2c\x2f\x7c\x19\xe9\xa9\x1f\xea\x05\xa6\xb1\xc0\x5a\xdb\xe1\xe2\x6f\xdb\x23\x5a\x64\x0c\x45\x2c\x39\x03\x58\xac\x57\x19\x50\xc8\x22\x01\x91\x12\x14\x8c\x94\x62\xdc\x3d\x74\x7f\x31\x76\xd2\xe0\xc8\xaf\xb5\xbd\xdc\x71\x39\x01\x2e\x2b\xd0\x4b\xcf\xf4\x54\x6f\x75\x28\x92\xb3\xd9\x0b\x16\x51\xc9\x83\x2e\x31\x38\x67\xd9\x60\x08\x85\xb2\x03\x46\x88\xd9\x45\xea\x1e\xba\x5f\xba\x8b\x3d\xa8\x83\xdd\x75\xdd\x72\xc6\x1f\x2a\xcb\xe3\xae\xeb\xf6\xdd\x71\x2c\x65\xe2\x57\x68\xfc\x7f\x06\x86\x7a\x3c\xd6\xf9\xd6\x42\x06\x67\x45\x54\x31\x41\xb3\xe2\xe0\x7d\x76\xce\x18\xce\xcc\xac\x12\x89\x55\x1a\x00\x91\xe3\x57\xba\x78\x5d\x79\xf9\xac\xa8\x4e\xb5\x7d\x56\x53\x1d\x3e\x9f\x0d\xe6\x52\x8f\x77\xfc\xfc\x5a\x0b\xef\x7f\xe3\xb7\xcf\x40\xf6\xcb\x0a\xeb\x48\xb7\xa6\x00\x22\x29\x9b\x0c\x09\xe8\xe2\x33\x60\x34\x49\x45\xa3\x12\x69\x1f\x5c\x0e\xc6\x4b\x16\xa4\x7c\x07\xdf\x16\xea\x27\x5e\x17\x9e\xa9\x5d\x4f\xeb\x66\xb2\x41\x2b\xf7\xf1\xb1\x21\x16\x9b\x30\x80\x52\x5a\x89\x33\x28\x94\x98\xbc\x4b\x31\x3a\xc3\x09\xef\x90\xd7\xeb\xc4\x0d\xfb\xa1\x01\xb1\x9c\xa7\x5b\xb2\x57\xe0\x12\x06\x8e\x56\x88\xa2\x47\xe7\xd9\x18\x52\x1e\x63\x0e\x26\x43\x88\x14\x33\x67\x9b\xee\x90\xcb\xd0\xc6\x67\x98\x2e\xd0\x3f\xbf\xae\xfb\x61\xb3\x26\xc6\x51\xb0\xe2\x83\x37\x06\x52\x64\xf2\xd6\x66\x22\xeb\x43\x4c\xc9\x8a\x56\x36\xdb\x98\xa4\xdc\x33\xcd\x13\x7c\x83\x36\xf5\x43\xdd\xe3\x38\x17\x58\x61\x0f\xcb\xc2\xab\x2c\xdb\x45\x08\xd1\x06\x2e\xce\xa3\x73\x28\x36\x59\x0f\xc2\x8c\x68\x95\x75\xe8\x23\x17\x6b\xb2\x58\xde\x3d\x74\xbf\xd7\x61\x18\xe7\xe1\x8e\xdc\x1f\x63\x3b\x9f\x16\x9e\xfb\xa9\x0e\xed\xbc\xd1\x50\x07\xfd\xdf\xbb\xfc\xb7\xef\x6d\x4f\x0d\xae\x3f\xba\xf6\xa7\xc6\x32\xbe\x71\xd9\x4b\x6d\x47\x58\x57\x6e\x9b\x31\x26\xce\xce\x4b\x2c\x01\x85\x3d\x24\x4d\x1c\xb4\xd1\x25\x9b\x92\xb4\x4e\xec\x9c\x55\x96\xfd\xbd\xb0\x8f\xc3\x79\xfd\xd6\xc3\xbc\x8c\x9b\x6b\x34\x29\x14\x62\x2a\x3a\x8b\xe4\x98\x99\x31\x5a\x06\xe7\x1c\xbb\x98\x31\x2b\x2b\x86\x84\xee\xc5\xfc\xe1\x72\xfe\x08\xf9\xf3\x18\x00\x27\xde\xc4\xab\x7c\xc0\x08\x59\x4c\xd1\x62\x4a\x0e\x2e\xa7\x12\x8a\x76\x01\xa8\x68\xc9\xc5\x73\xb1\xc5\xdf\x5b\xe9\x9f\xf0\x71\x81\x75\xbd\x6e\x16\x2f\x60\x0c\x58\xc4\x6b\x89\x51\xa5\xe8\x15\x03\x25\x25\x60\x13\x66\x6f\x10\xb3\x58\x13\xec\x96\x5c\x27\x98\x87\x43\x6d\x43\xff\xd6\x2f\xd7\xcd\x90\x20\xb8\x50\xac\x65\xc3\x6c\x75\x34\x10\x82\x16\x52\x19\x09\x8c\x45\x74\x29\x65\x70\x1a\x29\x7d\xf5\x47\x38\xcf\xe3\xdb\xee\x9f\x00\x00\x00\xff\xff\xc0\x27\x9a\xcf\x45\x06\x00\x00")
func templatesGlideYamlTmplBytes() ([]byte, error) {
return bindataRead(
_templatesGlideYamlTmpl,
"templates/glide.yaml.tmpl",
)
}
func templatesGlideYamlTmpl() (*asset, error) {
bytes, err := templatesGlideYamlTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/glide.yaml.tmpl", size: 1605, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesMainGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x91\x4f\xab\xd4\x30\x14\xc5\xd7\xb9\x9f\xe2\x9a\x85\xb4\xf2\x9a\x80\xcb\xca\x2c\x1e\xe3\x5a\xc4\x01\x37\x22\x43\xda\xb9\x8d\x71\x9a\x3f\x24\x69\xbb\x28\xfd\xee\x92\x4e\x85\x01\x37\xbe\x55\x6f\x7f\xe7\x70\xce\x81\x04\xd5\xdf\x95\x26\xb4\xca\x38\x00\x29\xb5\x6f\x35\x39\x8a\x2a\x13\x6a\xdf\x74\xc6\xdd\x54\x56\xd8\x18\xed\x7c\x24\x14\x9f\x2f\xd7\x4b\x2e\x57\x13\xee\x1a\x17\xea\xb0\xf1\xe5\x23\x55\x4a\x94\x93\xd0\x1e\xc3\xd4\x8d\xa6\x97\x42\x88\x37\xe5\x1d\xe4\x70\x94\xa0\xbd\x62\x36\xb4\xa4\x52\xb2\x1f\xf2\x49\x7e\x80\x52\x03\xc6\x06\x1f\x33\x56\xc0\xf8\x60\x33\x07\xc6\x7d\xe2\x00\x8c\xaf\xab\x08\xd1\xff\xa6\x3e\x5f\x83\xca\xbf\xb6\x4d\x3e\x11\xa7\x2c\x6d\x9b\xec\xbd\x1b\x8c\xe6\xff\xe9\x5e\xa8\x2b\x56\xed\xc3\x5d\x0b\xe3\xe4\x14\x07\x35\x93\xec\x47\x23\xe6\x8f\x1c\x6a\x80\x59\x45\x54\x21\xe0\x87\xc2\x5e\x43\x00\x18\x26\xd7\xa3\x71\x26\x57\x35\xae\xc0\x8a\x78\xc2\xf7\x87\xbc\x02\x22\xe2\x17\x65\xa9\x45\xfe\x4f\x1f\x7f\x01\xc6\xbe\x53\x4c\xc6\xbb\x16\x1f\x53\xc5\x79\xd0\xe2\x60\x45\x3e\x7b\x6b\x95\xbb\xa5\x16\x7f\xfc\xdc\x4b\x0f\xb0\x02\x63\x6c\xa1\xee\xef\x7f\xf1\x6e\x2f\x80\xb8\xc1\x76\x8c\x2a\xcf\xfe\x18\x65\x06\xa4\x18\xb1\x3d\x95\xed\xe2\xdb\xe4\x2a\x9f\xc4\x6b\xd4\xa9\xfe\xb4\x0b\xef\x4e\xe8\xcc\x58\x9c\x6c\xb0\x59\x7c\x8d\xc6\xe5\xd1\x55\x14\x63\x0d\xac\x04\xfe\x09\x00\x00\xff\xff\x4b\x46\xd2\xfd\x4a\x02\x00\x00")
func templatesMainGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesMainGoTmpl,
"templates/main.go.tmpl",
)
}
func templatesMainGoTmpl() (*asset, error) {
bytes, err := templatesMainGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/main.go.tmpl", size: 586, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesModelsKeepTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func templatesModelsKeepTmplBytes() ([]byte, error) {
return bindataRead(
_templatesModelsKeepTmpl,
"templates/models/.keep.tmpl",
)
}
func templatesModelsKeepTmpl() (*asset, error) {
bytes, err := templatesModelsKeepTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/models/.keep.tmpl", size: 0, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesPublicAssetsJavascriptsAppJsTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func templatesPublicAssetsJavascriptsAppJsTmplBytes() ([]byte, error) {
return bindataRead(
_templatesPublicAssetsJavascriptsAppJsTmpl,
"templates/public/assets/javascripts/app.js.tmpl",
)
}
func templatesPublicAssetsJavascriptsAppJsTmpl() (*asset, error) {
bytes, err := templatesPublicAssetsJavascriptsAppJsTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/public/assets/javascripts/app.js.tmpl", size: 0, mode: os.FileMode(420), modTime: time.Unix(1487674931, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesPublicAssetsStylesheetsAppCssTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func templatesPublicAssetsStylesheetsAppCssTmplBytes() ([]byte, error) {
return bindataRead(
_templatesPublicAssetsStylesheetsAppCssTmpl,
"templates/public/assets/stylesheets/app.css.tmpl",
)
}
func templatesPublicAssetsStylesheetsAppCssTmpl() (*asset, error) {
bytes, err := templatesPublicAssetsStylesheetsAppCssTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/public/assets/stylesheets/app.css.tmpl", size: 0, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesUtilsConversionsGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x92\x41\x6b\xdc\x30\x10\x85\xcf\xd6\xaf\x78\x31\x14\xec\xb2\x38\x3d\x2f\xec\xa1\x85\x1e\x0a\x6d\x0f\xcd\x71\xd9\x83\xe2\x8c\xbc\x62\x6d\x49\x8c\x46\x4b\x42\xd8\xff\x5e\x24\x39\xd9\x84\x96\x42\x61\x61\x2d\xeb\xcd\x9b\xf9\xde\x38\xe8\xf1\xa4\x27\x42\x12\x3b\x47\xa5\xec\x12\x3c\x0b\x3a\xd5\xb4\x66\x91\x56\x35\x2d\xd3\x44\x8f\x21\x3f\x45\xe1\xd1\xbb\x73\xab\x7a\xa5\x6e\x6f\xf1\x43\xcb\x78\x24\xfe\xee\xfd\x29\x05\x30\x49\x62\x17\x21\x47\xc2\xa2\x03\xce\x7a\x4e\x04\x6f\xca\x0b\xa7\x17\x7a\xc0\xa8\x83\x24\xa6\x38\x28\x93\xdc\xf8\xbe\xbe\x5b\xf2\x09\xfb\x43\x14\xb6\x6e\xda\x80\x09\x1f\x6b\xeb\xe1\x57\xf9\xeb\xb3\xed\xbe\x5e\xaf\x2a\x3c\xab\x86\x29\xa6\x59\xb0\xdd\x61\xd1\x27\xea\xfe\xd0\xf4\xaa\x31\x9e\x61\x37\x65\x88\xac\x63\xed\x26\x02\xd3\x70\x97\xee\xe9\x31\xfc\xd4\x0b\xc5\xae\xcf\x5e\x8d\x35\xb0\xb8\xd9\xe1\x53\x39\xad\xde\xfb\x5c\x78\x40\x6e\x20\xe3\x71\x6f\x0f\xaa\x69\x2e\x2a\xff\x2a\x33\xaa\x4c\x5d\x6a\x2a\x29\xca\x67\xf1\x16\x39\x2a\x62\xa9\x89\x4c\xf6\x4c\x0e\xeb\xd4\xe2\xa1\x1d\xac\x13\x9a\x88\x87\x5c\xf4\x4d\x10\xb4\xb3\x63\x84\xad\x81\xd5\xe2\x68\xbd\x83\xd1\x76\x7e\x8d\x6c\x35\xef\xe2\xea\xd5\x67\x9b\x3c\xac\xdd\x80\x98\x33\xde\xba\xa5\xa1\xea\x7a\x95\xa1\xf2\xd5\xcd\x0e\xce\xce\x05\xac\xf4\xea\xcc\x22\xc3\x57\x66\xcf\xa6\x6b\x5f\x8c\xb7\xf8\x10\xdb\x62\xd5\xf7\x6f\x11\xed\x1b\xba\x2f\x74\x57\x39\xfe\x42\x58\xb7\x9e\x01\xd7\x01\xff\x1b\xef\xc5\xbd\xab\x56\x39\x25\x36\x7a\xa4\xe7\x4b\x8f\xeb\xd6\xcf\x1b\xf8\x53\xa6\x2d\xaa\xa1\x7b\xdd\xb5\x35\xb8\xf1\xa7\x7f\x50\x56\xf7\x2d\x92\x7b\x20\x9e\x9f\xca\x3e\x9e\x42\xf9\x52\xad\x0b\x49\xae\x1d\xb1\xa4\x28\xb8\xa7\x2b\x4b\xfb\x3e\x94\xb3\xba\xa8\xdf\x01\x00\x00\xff\xff\x8e\x75\x89\xc4\x3f\x03\x00\x00")
func templatesUtilsConversionsGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesUtilsConversionsGoTmpl,
"templates/utils/conversions.go.tmpl",
)
}
func templatesUtilsConversionsGoTmpl() (*asset, error) {
bytes, err := templatesUtilsConversionsGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/utils/conversions.go.tmpl", size: 831, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesUtilsStringsGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x90\x4f\x6b\xdc\x30\x10\xc5\xcf\x9a\x4f\xf1\xc8\x21\xb1\xd8\xe6\xdf\x35\x69\x7a\x2d\x85\xde\x9a\x9e\x82\x29\xaa\x3d\xf6\x8a\x78\x67\xcc\x48\xda\x10\x9a\xfd\xee\x45\xde\x38\xb0\xd0\xde\xcc\xbc\xdf\xfc\xfc\x34\x73\xe8\x9e\xc3\xc8\x28\x39\x4e\x89\x28\xee\x66\xb5\x8c\x86\xdc\x59\x91\xd8\x69\xcf\x67\xe4\x89\xae\xaf\xf1\xa8\x3f\x24\x3c\x33\x3a\x95\x3d\x5b\x46\xde\x32\xc6\xb8\x67\x41\xca\x16\x65\x44\x56\xa4\x23\x11\x12\x63\xd0\x69\xd2\x97\x65\xbe\x65\x7c\xd5\x29\xc8\x88\x41\x6d\x17\xf2\x5d\xd5\x85\xce\x54\x5e\x77\x09\xc1\x3e\x9c\xdc\x57\xc9\xa4\x2f\x6c\x97\x8b\x24\x48\x8f\xd9\xb8\xe3\x9e\x7b\xfc\x7e\x45\x10\x14\xe9\xd9\x52\xa7\xc6\x57\x34\x14\xe9\xd6\x5e\x4d\x5c\x8b\xf8\xb5\xd0\x1f\x72\x56\x84\x13\xee\x1e\xf0\xd4\xd6\xcf\x26\x8a\x27\x37\xb1\x8c\x79\x5b\xa7\x13\x4b\xb3\x20\x9e\xc8\xed\x83\x41\x4b\x7e\x47\xc9\x0d\x6a\x88\x95\xba\xb9\x47\xc4\x67\x1c\xd7\xee\x11\x37\x9b\xaa\x76\x71\x40\xc4\x17\xdc\xe0\xfc\x1c\xef\xb7\xba\xfa\x96\x7e\xce\x33\xdb\x51\xfa\x14\x5b\x5f\xc3\xa6\x89\x9b\xdb\x0f\xc1\x29\xfe\xbd\x3e\x76\xc5\x37\xb7\xad\xf7\x78\x7b\xfb\x5f\x7e\xb9\xe4\xf5\xdf\xae\x16\x7d\x40\x98\x67\x96\xbe\xd1\x92\x3f\xe1\xe2\xd7\x85\x27\xe7\x0e\xf4\xaf\x70\x15\x3e\xea\x89\xb0\xf5\x9e\xdc\x81\xc8\x19\xe7\x62\xeb\x01\xeb\x8a\xa7\x03\xfd\x0d\x00\x00\xff\xff\x4a\x1c\x17\x1d\x1b\x02\x00\x00")
func templatesUtilsStringsGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesUtilsStringsGoTmpl,
"templates/utils/strings.go.tmpl",
)
}
func templatesUtilsStringsGoTmpl() (*asset, error) {
bytes, err := templatesUtilsStringsGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/utils/strings.go.tmpl", size: 539, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesViewsBindataGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x59\x5b\x6f\xe3\x36\x16\x7e\x96\x7e\xc5\xa9\x81\x76\xa5\xd6\x95\xe5\x8b\x7c\x5b\xe4\xa1\x9d\x69\xb1\xb3\x68\xa7\x8b\xe9\x2c\xf6\x61\x38\x18\x50\x12\x65\x13\x23\x8b\x5e\x49\x4e\x98\x04\xfe\xef\x8b\xc3\x43\xc9\x92\xe3\x64\xd2\xa0\xd8\xc5\x06\x70\x2c\x51\x3c\xdf\xb9\x7f\x24\xe5\xd1\x08\x5e\xa9\x54\xc0\x46\x14\xa2\xe4\xb5\x48\x21\xbe\x85\x8d\xfa\x3e\x96\x45\xca\x6b\x1e\xb8\xa3\x11\x54\xea\x50\x26\xa2\x5a\xe3\xf5\xb5\x14\x37\xd5\x48\x16\xa9\xd0\xc1\x56\xed\x44\x50\xef\xf6\xf9\xe9\x41\xce\x6f\xd5\xa1\x6e\x07\x5f\xff\x06\x6f\x7f\x7b\x0f\x3f\xbd\x7e\xf3\xfe\x2b\xd7\xdd\xf3\xe4\x33\xdf\x08\x9a\xea\xba\x72\xb7\x57\x65\x0d\x9e\xeb\x0c\xe2\xdb\x5a\x54\x03\xd7\x19\x24\x6a\xb7\x2f\x45\x55\x8d\x36\x77\x72\x8f\x03\xd9\xae\xc6\x2f\xa9\xe8\xff\x48\xaa\x43\x2d\x73\xbc\x51\x46\x60\xcf\xeb\xed\x28\x93\xb9\xc0\x0b\x1c\xa8\xea\x52\x16\x1b\xf3\xac\x96\x3b\x31\x70\x7d\xd7\xcd\x0e\x45\x02\xd6\xa3\x77\x82\xa7\x1e\x5e\xc0\x87\x8f\xa8\x76\x08\x05\xdf\x09\x20\x31\x1f\xbc\x66\x54\x94\xa5\x2a\x7d\xb8\x77\x9d\xcd\x9d\xb9\x83\xf5\x15\xa0\x55\xc1\x5b\x71\x83\x20\xa2\xf4\x8c\xd9\x78\xff\xe3\x21\xcb\x44\x69\x60\x7d\xdf\x75\x64\x66\x04\xbe\xba\x82\x42\xe6\x08\xe1\x94\xa2\x3e\x94\x05\xde\x0e\x21\xdb\xd5\xc1\x4f\x88\x9e\x79\x03\x04\x82\xaf\xff\xbd\x86\xaf\xaf\x07\x64\x89\xd1\xe5\xbb\xce\xd1\x75\x9d\x6b\x5e\x42\x7c\xc8\x80\xf4\x90\x12\xd7\xf9\x44\xe6\x5c\x81\x54\xc1\x2b\xb5\xbf\xf5\xbe\x89\x0f\xd9\x10\x36\x77\xbe\xeb\x24\xf9\x4f\x8d\xa5\xc1\xab\x5c\x55\xc2\xf3\xdd\x3f\xcb\x1e\x84\x21\xfc\x47\x80\x44\x59\x92\xdd\x76\x30\x3e\x64\xc1\x8f\x68\xba\xe7\x0f\x71\x86\x7b\x74\xdd\xfa\x76\x2f\x80\x57\x95\xa8\x31\xe4\x87\xa4\x46\x14\xe3\x9f\xcd\x87\xeb\xc8\x22\x53\x00\xaa\x0a\x7e\x96\xb9\x78\x53\x64\xaa\x95\xb3\x29\x6c\xc6\x3b\x08\x26\x87\x00\x36\x8d\xae\x53\xc9\x3b\x73\x2f\x8b\x7a\x3e\x73\x9d\x1d\x96\x38\xb4\xa0\xbf\xaa\x54\x98\xc1\xf7\x72\x27\x00\xcb\x24\xc0\x2b\xd4\x63\x4a\xc5\xcb\xe4\xb9\x2e\x1f\xde\xf2\x9d\xf0\x7c\xab\x01\x75\x5a\x2f\x33\x19\xa0\x76\xf7\xf8\x84\xec\xef\xf2\x0e\x65\x8d\x35\x7d\x51\x34\xf4\x49\x51\xb4\xd5\xf3\xbb\x96\xf7\x01\xd0\xb5\x2f\x01\xa0\x73\x9e\x7f\x72\xf4\x01\x82\xf5\xfe\x71\x90\x37\xd5\x6b\x59\x7a\x3e\xc4\x4a\xe5\x5d\x69\x9e\x57\x5f\xf0\xfc\xb6\x22\xc7\x45\x99\xf1\x44\xdc\x1f\x3b\xd2\xb6\x24\xb0\xca\x3f\x19\x4e\x78\x83\xb4\xf2\x37\xb5\x13\xef\x77\xfb\x1c\xae\x6c\x45\x78\x03\xa6\xc7\x19\xd3\xcb\x98\xe9\x70\xc9\x74\x18\xda\xcf\x8a\xe9\xb9\x60\x7a\x69\xc7\xb2\x8c\xe9\x78\xc2\xf4\x6c\xc5\x74\xb2\x62\x7a\x92\x30\x1d\x4f\x99\x16\x53\xa6\xa3\x09\xd3\x51\xc8\x74\x1c\xd2\xb3\x29\x5e\xcf\x98\x5e\x4c\x99\x9e\xa5\x4c\x27\x82\xe9\x64\xc9\xf4\x62\xc1\xf4\x2c\x63\x3a\x49\x99\x8e\xf0\xd9\x92\xf0\x70\xce\x2c\x26\x4c\x7c\x36\x59\x31\x1d\x8d\x99\x9e\x2c\xed\x9c\x84\xe4\xe2\x88\xe9\x74\xcc\x74\x92\x9d\x74\xa0\x7e\xb4\x0b\xc7\xc3\x05\xd3\x13\xf4\x63\xca\x74\x38\x3b\xf9\x82\xb6\xe3\xc7\xc8\x4e\x99\x5e\xcd\x08\x77\x92\x76\xfc\x0d\x07\x0d\x97\x3d\x8c\x96\xed\xb3\x4b\xfc\xd5\x74\x63\x87\xff\x5c\xc7\xb9\x10\xf1\xa1\xeb\x38\x83\x8b\x04\x3f\x18\xba\x8e\xdf\xb6\xc7\x43\x49\x54\xfc\xad\xe9\xea\xae\x62\xd3\xd6\x2d\x77\x3e\x6a\xf3\x97\xf8\xa9\xa5\x15\x43\x0c\xeb\xab\xf3\x22\xbb\xc7\xf6\x5b\xc3\x63\x96\x03\xb6\xd8\x1a\x66\xd1\x10\xb0\x57\xd6\xdd\x56\xf2\x66\x93\xd0\x37\xe3\xd8\x01\x6b\xea\x90\x7f\x16\x52\x7b\xe3\xd9\x72\xbe\x5c\x45\xd1\x74\x3c\x84\xd0\x3f\xba\x0e\x47\xcd\xdf\x18\x1f\xef\x8d\x63\x6b\xb0\xfe\xa1\x59\x6b\xf3\xff\xd8\x06\x9b\x0f\x1f\x56\xf7\x2f\x66\x6d\x7c\x71\x69\x63\x89\xad\xb0\xa4\x52\x2a\x67\x2c\x13\x2c\xb1\x71\xc8\xf4\x72\xc6\x74\x16\x33\x3d\xc5\xf2\x8c\x98\x9e\x45\x4c\x2f\x22\xa6\xc7\x58\x46\x58\xa6\x58\x9a\x2b\xa6\xc3\x31\xd3\x73\x4e\xf2\x69\x48\x2d\x11\x09\xa6\x79\xc2\xf4\x04\xcb\x54\x30\x3d\x5e\x31\x9d\xa5\x84\x6d\xda\x22\x62\x7a\x32\xa6\x32\xce\xc6\x4c\xc7\xa8\x07\xe7\xce\xa9\x1d\x66\x53\xa6\x79\x44\x32\x8b\x39\xd3\x33\xc1\x74\xca\x99\x4e\xb1\x15\x2c\x96\x88\xc9\xbe\x04\x3f\x0b\xa6\x05\x7e\xd0\x1e\xd4\xc3\x99\x5e\xae\x98\xe6\x63\x9a\x6f\x64\x56\x4c\x2f\x43\xfa\xe0\x3c\x31\x21\x5f\x26\x11\xe1\x8a\x84\xe2\x32\x47\xfd\x88\xb5\x64\x7a\xbe\xb0\xfe\x85\xe4\x0b\xc6\x70\x86\x71\x9a\xd8\x16\x15\xa4\x0f\xe3\x98\xa1\x0c\xb6\x5b\x42\xb1\x5f\x4e\x98\x9e\xa2\x3f\x0b\xb2\x63\x32\xb3\x7e\xa4\x64\x0f\xb6\x3e\xda\x8c\xf1\x45\x0c\x94\x5b\x4d\x28\x76\xc2\xe6\x6c\x95\x30\x1d\x2d\x99\x1e\x2f\x99\x5e\xda\x58\x62\x8c\xf0\x1e\xa9\x65\x9a\x52\xae\x57\x19\xd3\xa1\xa0\xbc\x61\x3c\x97\x0b\x8a\x2d\xb6\x7a\x86\x32\x0b\xca\x7d\x84\xe3\x9c\xe9\xf1\x82\xe9\x64\x4e\x54\x35\x41\x3d\x0b\xa2\x93\x70\x42\xf4\x36\x99\x33\x1d\x72\xb2\x91\x63\x4c\x50\x27\xfa\x65\xeb\x6a\xb5\xa4\x39\x73\xf4\x93\x53\xee\x10\x73\x6a\xf3\x96\x5a\xaa\x44\xfb\xc2\x8c\x72\xb5\x8c\x48\x5f\x36\x27\x9c\x09\xd6\x8b\xb5\x27\x9d\x31\x3d\xcf\x98\x9e\x23\x2e\x27\x3b\xe7\x88\x85\x94\x17\x51\x1c\xb2\x90\x62\x9f\x45\x84\x89\x76\xe1\xf5\xd4\xda\xb6\x1a\x13\xbd\x86\x11\xe5\x78\x31\xa6\xd8\x4e\x05\xd9\x8b\xf9\xc0\x38\xf1\x39\xd3\x22\x65\x3a\xc6\xe7\x96\xc2\xb1\x76\x91\x8e\xb1\x66\x4c\xcc\x30\x26\x11\xc5\x02\x6d\x8b\x66\xe4\x6b\x66\x29\x7d\xc5\xc9\x4f\xc4\x42\xfb\xe6\x11\xf9\x12\x67\x54\x2f\xe7\x14\xbc\x4c\xa8\x46\x16\x18\x53\x8c\x7b\xd2\x9d\xd7\xa7\xe0\x53\x4b\xbf\x90\x7f\x4f\x00\x1d\xf2\xed\x6c\xa2\x2f\x10\xef\x49\xe4\xd9\xac\xfb\xc0\xcc\x3f\x97\x72\x7b\xf6\x5a\xba\x9d\x2e\xc3\xff\x0d\xdf\x8e\x46\xf0\x83\xd9\x5e\xe6\x8a\xa7\x15\xf0\x22\x05\x9a\x53\x41\xbd\x6d\xb6\x9e\x99\x2a\xcd\xdd\x46\x5e\x8b\xc2\x6c\x73\xcd\x41\xe7\x4d\xdd\xce\xe5\x05\x85\x14\x64\xd6\x91\x4b\xd4\x21\x4f\xa1\x50\x35\xc4\x02\x32\x75\x28\x52\x50\x25\x4a\xf6\x1e\xa0\x66\x91\x06\x94\x33\x63\x8c\xf7\xa5\x33\x46\xc2\x8b\x42\x15\x32\xe1\x39\x6e\x33\xd1\x75\x7b\x8e\x09\xde\x89\x7d\xce\x13\xe1\xd1\x5e\x7c\xc0\xd8\x60\x08\x83\xd1\x60\x08\xdf\x8f\x29\x8d\xd9\x10\xd4\x67\x94\xf8\x64\x93\xf4\xa1\x0f\xf6\xf1\xaf\xf8\x1c\x33\xcc\xdb\xaa\xc8\xb0\x04\x2e\xd4\xc0\xa3\xe7\x02\x0a\xe9\xd7\x15\x24\xbc\xf8\x0b\x46\x89\x9b\x83\xa2\x71\xe0\xc2\x61\x01\x4f\x0b\x6d\x6a\x02\x9b\x37\x4c\x90\x73\x74\xbf\xac\x03\xc3\x68\x82\x6b\x51\x7d\x9b\xd7\x5f\x0f\x55\x4d\x93\x64\x05\xb9\xfc\x2c\x6c\xa6\xe3\x43\x0d\x7b\x5e\xc8\xa4\x82\x9b\xad\x28\xec\xe8\x8d\x49\x49\x63\x84\x4d\x67\x93\xe6\x4a\xee\xf6\xb9\xcc\xa4\xa8\xa0\xe2\x99\x00\x59\xc8\x5a\xf2\x5c\xde\xf1\x5a\xaa\x02\x54\x06\x9b\x5c\xc5\x3c\x87\x6b\x5e\x4a\x1e\xe7\xa2\xb2\xe9\x6c\x6d\xe8\xa7\x94\x32\x8a\x31\x3c\x05\xf9\x34\xed\x62\xbf\x19\x8b\xbd\x81\x29\xac\xb5\x9d\x3c\x80\xef\xe8\x38\xfa\x1d\x0c\xfc\x35\xe0\xad\x28\x4b\x8a\x90\xe7\xfb\xbd\xd3\x15\xef\x56\xbb\x39\x0e\x3d\x55\xf1\xa6\x91\xff\xdb\x65\x8f\x56\x9d\x95\x7e\xe7\x58\xf7\x7f\x57\xff\x26\xc8\x2f\xec\x01\x69\x1c\x7e\x56\x0b\x34\x6a\x1e\x6b\x03\x33\x09\x3d\xab\x7a\x79\x2e\xcc\x88\xea\xe4\xad\xea\xe6\xc2\x08\x78\x58\xa9\xa7\x13\x2c\x89\xac\xaf\x60\xc7\x3f\x0b\xaf\x79\x32\x84\x70\x08\xb9\x28\xbc\x26\xa0\x58\x78\x58\x3a\x85\x4d\x4d\xc9\x8b\x8d\x68\xc3\x6d\x02\x47\x48\x57\xc0\xf7\x7b\x51\xa4\x26\x59\x55\x63\x75\xd7\x61\x1c\xb7\x6e\xb4\xf2\xb2\x02\x0e\x35\x36\xd9\x10\xb6\x2a\x4f\xd1\x38\xc1\x93\xad\x2d\x3e\xfb\x66\x4a\x95\x43\xd8\x21\x7c\x0a\xb5\x02\x59\x57\xb6\x7e\xcd\xfe\xba\x81\x42\x4f\xf6\x1f\xc8\x8d\x8f\xe8\xfb\xc3\x25\xf2\xde\x7d\xec\x8c\xb3\xbe\x70\x44\x19\xba\x97\x16\xe5\xf5\xf9\xb2\x3a\xec\xa6\xe6\xb5\x2c\x7b\x89\xc9\x64\xde\x64\x27\x16\xb9\xba\x01\x0e\x89\x28\x6b\x2e\x0b\x14\x49\x65\x29\x92\x5a\x95\xb7\x20\x76\xb1\x48\x53\x91\x82\x2c\x4e\x72\x0f\xdf\xc6\xfd\xac\x4a\x10\x9a\xef\xf6\xb9\xc0\x2e\xbd\x55\x07\x28\x0f\x45\x67\x16\xa8\x02\xf0\x7b\x14\x04\x81\x61\x03\x33\x98\xa8\x02\x55\x1a\x93\x10\x26\x53\x79\xae\x6e\x30\xd6\x5b\x29\x4a\x5e\x26\xdb\x5b\xf3\x82\x0f\xff\x8c\x74\x73\x03\x90\x29\x15\xd4\xba\x3e\x0d\xc8\xdd\xa6\xf3\x18\x80\x07\xfb\x62\xd3\x1d\x88\x9b\x81\xba\xe5\xe3\xd7\xb2\xf4\x06\x08\x3c\xf0\xfb\xd4\xdc\x94\xdd\xfd\xc0\xea\xc1\x06\x97\xbb\xcd\xe0\xd8\x8d\x28\xc9\x8e\x70\xfc\x51\x79\x63\x06\x4a\x1b\xf5\xe7\xf2\x0d\xba\x6f\x62\x72\x1a\x2f\x54\x2d\xb4\xac\xea\x73\xdc\x86\x0a\xfb\x28\x38\x4b\xe6\xf9\x43\xe5\xc6\xb5\x63\xb7\xe3\x70\xfe\xf9\xba\xdf\x74\xd8\x89\xf9\x0a\x95\x8a\x86\xbd\xea\x52\x08\xc3\x69\xd8\x7d\xa6\x79\x90\x9c\x42\xd3\x61\x2f\x65\x48\x67\xcf\xeb\xed\x2f\xb2\xaa\xbb\x22\xbf\xef\x73\x59\x7b\x7d\x48\x23\x84\x02\xd8\xea\x9f\x86\xb0\x3f\xb5\x7a\x0b\x61\x38\xd2\x58\x7c\x05\xf8\x15\xbc\xda\xca\x3c\x2d\x45\xf1\x61\xff\x11\x1f\xc9\x0c\xe8\x69\x87\x52\x5f\xb2\xde\x3b\xc4\x9e\xc7\xe6\xb5\xa3\xd1\xf5\x33\x46\xf6\x19\xef\x30\x9f\xc2\x45\x2a\xba\x7e\x9c\xf1\x7a\x3e\x35\xb4\x97\xe0\xfd\xdb\x1e\xf7\xf5\xe6\x91\x31\xd7\x27\xf6\x2b\xaf\x87\x27\xa1\x1e\xff\xe1\x93\xee\x8b\x50\x9b\xf3\xce\x8b\x4c\xe3\xa4\x69\xba\x8b\xec\xe5\x3a\xad\xd6\x0e\xd3\x7d\xdb\xd4\xce\xb1\xa5\x43\x03\x7b\x05\xdf\xd8\xcb\x7b\x13\xa5\x0b\x22\x2d\x1d\x0e\xd6\xcf\x9a\xec\x0c\x1e\xd2\x66\x2b\x77\x81\x3f\x2f\xc2\x1c\x8f\xe6\xb4\xd3\xa7\xd4\x3e\x4a\x87\x5b\x1f\x87\xc0\x7f\x47\x62\xde\x77\xa2\xaa\x55\x29\x28\xf7\x25\xdd\x98\xed\x0c\x2d\x22\x87\x22\x15\xdd\xbd\x4f\xcb\xba\xd4\xaf\x5d\x69\x2f\x95\xe5\xd9\x8f\x02\xb4\x25\xba\x77\x1d\x6c\xf2\xe7\xee\xef\x6c\xca\xed\x51\xca\x91\xcd\x8e\xa7\x15\x6d\x77\x47\xcf\x11\xa7\x37\xfe\xaa\x0a\x7e\xfd\x9c\xca\xf2\x87\x3c\xf7\x3e\xe1\xfa\xf0\x0f\x5e\x6f\xc9\xe0\xe6\x37\x90\xa0\xa1\x1d\xdf\x1f\xf6\x8e\x5e\xe1\x22\x8a\x9e\xfc\x71\xa2\xaf\x8a\x7e\x68\x09\xfe\x55\xca\x5a\x20\xc6\xb9\x3e\xa3\x62\x08\x14\x11\x74\x2e\xa0\x37\xd5\x7f\xc8\x99\x57\x5b\x3c\x01\x56\x8f\x60\x37\xa8\xf4\xfa\xfa\xfc\xfe\x39\x8a\xfa\x2f\x9a\xcf\xca\xa4\xfa\x23\x75\x02\xa5\x48\x0e\x65\x25\xaf\x45\x7e\xa1\x66\xaa\xa7\x8a\x26\xb1\x1d\xdb\xcf\x7e\x9b\x26\xd7\xc1\x45\x5d\xe6\xe2\x09\x7f\x2e\xd7\x27\x51\xcb\x68\x04\xaf\x65\xe9\x36\xb4\x6d\xb4\x9d\x98\x2a\xe9\x92\x14\xc5\xfd\x82\xe1\x6d\xf1\xfc\x5d\xc9\xc2\x2e\x24\x46\xd2\x7f\x7a\x9f\x6c\xe2\x6c\x69\xba\x1f\x6b\x13\xa2\x0b\x69\x6d\xc3\x73\xda\x85\xbe\x74\x65\x6b\x7f\xc1\xe8\xda\x6e\x29\xb8\x5d\x97\x53\x59\x1e\x87\xcf\x58\xf7\x82\x20\x30\x1f\xf7\xe8\xfe\x27\x00\x00\xff\xff\x5c\xc7\xde\xb7\x13\x1d\x00\x00")
func templatesViewsBindataGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesViewsBindataGoTmpl,
"templates/views/bindata.go.tmpl",
)
}
func templatesViewsBindataGoTmpl() (*asset, error) {
bytes, err := templatesViewsBindataGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/views/bindata.go.tmpl", size: 7443, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesViewsIndexHomeTmplTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb2\x49\xc9\x2c\xb3\xe3\x52\x50\xb0\xc9\x30\xb4\x73\x4d\xce\xc8\x77\x4f\xcd\x53\x48\x49\x4d\x4b\x2c\xcd\x29\x51\x28\x48\x4c\x4f\xb5\xd1\xcf\x30\xb4\xe3\xb2\xd1\x07\x2b\x03\x04\x00\x00\xff\xff\xd1\xc3\x94\x48\x2d\x00\x00\x00")
func templatesViewsIndexHomeTmplTmplBytes() ([]byte, error) {
return bindataRead(
_templatesViewsIndexHomeTmplTmpl,
"templates/views/index.home.tmpl.tmpl",
)
}
func templatesViewsIndexHomeTmplTmpl() (*asset, error) {
bytes, err := templatesViewsIndexHomeTmplTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/views/index.home.tmpl.tmpl", size: 45, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesViewsLayoutTmplTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x92\x31\x93\xda\x30\x10\x85\x7b\x7e\xc5\xa2\x1a\x5b\x49\x2f\x39\x45\x92\x3a\x14\x69\x52\x65\x16\x79\x41\x02\x49\xf6\x78\x65\x03\xe3\xf1\x7f\xbf\xc1\xb2\x81\x99\x2b\xae\xf2\x7b\xbb\x6b\x3d\xed\x37\x52\xdb\x5f\x7f\x7e\xfe\xfd\xb7\xff\x0d\x36\x05\x5f\x6d\xd4\xe3\x03\x1e\xe3\x49\x0b\x8a\xa2\xda\x00\x28\x4b\x58\x3f\x04\x80\x0a\x94\x10\x22\x06\xd2\x62\x70\x74\x6d\x9b\x2e\x09\x30\x4d\x4c\x14\x93\x16\x57\x57\x27\xab\x6b\x1a\x9c\xa1\x62\x36\x3b\x70\xd1\x25\x87\xbe\x60\x83\x9e\xf4\xf7\xf2\xdb\x0e\x02\xde\x5c\xe8\xc3\x7b\xa9\x67\xea\x66\x8f\x07\x4f\x3a\x36\x02\xe4\x92\x98\x5c\xf2\x54\x8d\x63\x39\x8b\x69\x52\x32\x57\x72\xd7\xbb\x78\x81\x8e\xbc\x16\x9c\xee\x9e\xd8\x12\x25\x01\xb6\xa3\xa3\x16\xb2\xed\x0f\xde\x19\x89\xcc\x94\x58\xbe\x06\x58\x62\xdb\x96\x86\xf9\x87\x45\xb6\x7a\x1c\x5d\xac\xe9\x06\xa5\xb1\x64\x2e\xdc\x07\x06\x81\x6d\xfb\xdf\x30\x8b\x69\x5a\x6e\xa2\x64\xa6\xf0\x90\xb5\x1b\x96\xf8\x43\x53\xdf\xb3\x5c\x30\x51\xf7\xb4\x72\xf5\x6b\x61\x5b\x14\xb0\xc7\x13\xad\xbc\xa0\x28\x9e\xc3\x01\x5d\x5c\x0d\xc0\x38\x96\x77\x47\xbe\x9e\xa6\xe7\x61\x79\x20\xa7\xca\x1c\x9b\xcd\xb1\x69\xd2\x5b\x2a\x9b\xce\xb5\x09\xb8\x33\x9f\x00\x9c\x71\xc0\xdc\xce\x00\xce\x5f\xec\x7f\x9e\xd7\xaf\x94\xcc\x3f\x2d\x2b\xcb\x57\xa0\x92\x33\x09\x25\xf3\xd3\xf9\x08\x00\x00\xff\xff\xa3\x12\x4a\x63\x4b\x02\x00\x00")
func templatesViewsLayoutTmplTmplBytes() ([]byte, error) {
return bindataRead(
_templatesViewsLayoutTmplTmpl,
"templates/views/layout.tmpl.tmpl",
)
}
func templatesViewsLayoutTmplTmpl() (*asset, error) {
bytes, err := templatesViewsLayoutTmplTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/views/layout.tmpl.tmpl", size: 587, mode: os.FileMode(420), modTime: time.Unix(1487674918, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesWebAssetsGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xd4\x58\xff\x6f\xdb\xb8\x15\xff\x59\xfc\x2b\xde\x09\x68\x27\xdd\xe9\x64\x77\x6b\x7b\x3d\x0f\xf9\xe1\xae\x69\x81\xde\xd6\xde\xd0\x76\xd8\x0f\x4d\x11\xd0\x12\x65\x73\x91\x49\x8d\xa4\x12\x27\x81\xff\xf7\xe1\x3d\x52\xb2\xe4\x38\x76\xda\xdd\x76\x58\x80\xd8\x26\xc5\xf7\xfd\xc3\x0f\x9f\x38\x99\xc0\x4b\x5d\x0a\x58\x08\x25\x0c\x77\xa2\x84\xf9\x35\x2c\xf4\xf7\x73\xa9\x4a\xee\x78\xce\x26\x13\xb0\xba\x35\x85\xb0\x33\xfc\xdd\xb4\xf3\x5a\x16\x13\x6e\xad\x70\x76\xf2\x4f\x7e\xc9\x6d\x61\x64\xe3\xec\x24\xbf\x10\xa2\xb9\xbb\xc4\xba\xeb\x5a\xd8\xa5\x10\xc3\x25\xa7\xbf\xc2\xbb\x5f\x3f\xc2\xab\xd3\x37\x1f\xbf\x61\xac\xe1\xc5\x05\x5f\x08\xb8\x12\x73\xc6\xe4\xaa\xd1\xc6\x41\xc2\xa2\x78\x7e\xed\x84\x8d\x59\x14\x17\x7a\xd5\x18\x61\xed\x64\x71\x23\x1b\x9c\xa8\x56\x0e\xbf\xa4\xf6\x9f\x13\xa9\x5b\x27\x6b\x1c\x68\x12\x68\xb8\x5b\x4e\x2a\x59\x0b\xfc\x81\x13\xd6\x19\xa9\x16\xf4\xcc\xc9\x95\x88\x59\xca\x58\xd5\xaa\x02\x42\x9c\xef\x05\x2f\x13\xfc\x01\x9f\x3e\xa3\xd9\x0c\x14\x5f\x09\xf0\x62\x29\x24\xdd\xac\x30\x46\x9b\x14\x6e\x59\xb4\xb8\xa1\x11\xcc\x4e\x00\xbd\xca\xdf\x89\x2b\x54\x22\x4c\x42\x6e\xe3\xf8\xe7\xb6\xaa\x84\x21\xb5\x69\xca\x22\x59\x91\xc0\x37\x27\xa0\x64\x8d\x2a\x22\x23\x5c\x6b\x14\x0e\x33\xa8\x56\x2e\x7f\x85\xda\xab\x24\x46\x45\xf0\xe8\x5f\x33\x78\x74\x19\x7b\x4f\xc8\x56\xca\xa2\x0d\x63\xd1\x25\x37\x30\x6f\x2b\xf0\x76\xbc\x11\x16\x9d\x7b\x77\x4e\x40\xea\xfc\xa5\x6e\xae\x93\xc7\xf3\xb6\xca\x60\x71\x93\xb2\xa8\xa8\x5f\x75\x9e\xe6\x2f\x6b\x6d\x45\x92\xb2\xdf\xca\x1f\x54\xe3\xf5\xdf\xa3\x48\x18\xe3\xfd\x0e\x93\xf3\xb6\xca\x7f\x46\xd7\x93\x34\xc3\x15\x6c\xc3\x98\xbb\x6e\x04\x10\x60\x30\xe5\x6d\xe1\x50\x0b\xc5\x17\xea\xc1\x22\xa9\x2a\x0d\xa0\x6d\xfe\x5a\xd6\xe2\x8d\xaa\x74\x2f\x17\x4a\xd8\xcd\x0f\x34\x50\x0d\x01\x42\x19\x59\x64\xe5\x0d\x8d\xa5\x72\xcf\x9f\xb2\x68\x85\xc0\x87\x5e\xe9\x5b\x5d\x0a\x9a\xfc\x28\x57\x02\x10\x26\x39\xfe\x42\x3b\x04\x95\xa4\x92\xbb\xb6\x52\x78\xc7\x57\x22\x49\x83\x05\xb4\x19\xa2\xac\x64\x8e\xd6\xd9\xe6\x80\xec\x07\x79\x83\xb2\xe4\xcd\x58\x14\x1d\x3d\x28\x8a\xbe\x26\xe9\xd0\xf3\xb1\x02\x0c\xed\x98\x02\x0c\x2e\x49\xb7\x81\xde\xd1\x10\xa2\xbf\x5f\xc9\x1b\x7b\x2a\x4d\x92\xc2\x5c\xeb\x7a\x28\xcd\x6b\x7b\x24\xf2\x6b\xeb\x03\x17\xa6\xe2\x85\xb8\xdd\x0c\xa4\x03\x24\x10\xe5\xe7\x9e\x4a\x7e\x22\x26\xf9\x65\xcb\x35\x7f\x11\xa2\x81\x93\x00\x8d\x24\x3e\x5b\x3f\xa9\xce\xd6\x2f\xe6\x67\xeb\xe9\x8b\xb3\xf5\x74\x1a\xfe\x7f\x3c\x5b\x3f\x17\x67\xeb\x17\x61\xae\xaa\xce\xd6\xd3\x27\xdb\xe7\x38\xa6\xb9\xe9\xa1\xff\xb8\x23\x8a\x03\xae\x04\x34\xef\x63\x89\x0e\xf3\x03\x96\x61\x51\x74\x28\xae\x8c\x45\x51\x7c\x84\x65\xe3\x8c\x45\x69\x8f\xcb\x03\xca\xd0\xa9\x6f\x49\xcb\xd0\x29\xda\x58\x3d\x7b\x1d\x0f\xec\x18\x55\xf4\x3b\x9c\xf6\xe8\xec\x64\xb7\xde\xb7\xb8\x13\x66\x70\x3c\x2a\x40\xdc\xcf\x60\x9a\x01\xe2\x77\x36\x84\x77\xf2\xf4\x8f\xd3\x94\xe6\x11\x95\x33\x8f\xda\xbf\x2b\xb9\x4e\x9e\x3c\x7d\xf1\xfc\x87\xe7\xcf\x7e\x9c\xfe\x29\x83\x69\xba\x61\x11\x47\x17\x1e\x93\x95\x5b\x0a\x75\x06\x21\x62\xf4\x6f\x46\x9f\x9b\xbe\x34\x3c\xbb\x17\x71\x1f\xb6\x47\xd7\xef\x8d\xb8\x1d\x57\xfe\x33\xc4\xed\x28\xdb\x83\xb8\x3b\x87\xf6\xfd\x88\xdb\x51\xf6\xa5\x88\xdb\x1f\xd8\x7f\x07\x71\x7b\xa2\xfa\x7d\x11\x37\x99\x00\x65\x01\x6a\xcd\x4b\x0b\x5c\x95\xe0\xd7\x58\x70\xcb\xee\x40\xac\xb4\xa1\xd1\x42\x5e\x0a\x45\x87\x2f\x35\x65\x6f\x5c\xbf\x96\x2b\x9f\x6a\x90\xd5\x40\xae\xd0\x6d\x5d\x82\xd2\x0e\xe6\x02\x2a\xdd\xaa\x12\xb4\x41\xc9\xd1\x03\xb4\x2c\xca\xdc\xd7\x95\x9c\x49\x8e\x75\x3e\x05\x57\x4a\x2b\x59\xf0\x1a\x0f\x3f\x0c\x3d\x74\x57\xf9\x7b\xd1\xd4\xbc\x10\x89\xef\x10\xe2\xb3\xb3\x38\x83\x78\x12\x67\xf0\xfd\x13\x5f\xd2\x2a\x03\x7d\x81\x12\xe7\xa1\x60\x9f\xc6\xca\x3e\xff\x19\x9f\x63\xb5\x79\x8f\x96\x0a\xe1\xb0\x07\x0f\xf7\x76\x2b\x3e\xa5\x8f\x2c\x14\x5c\xfd\x01\xb3\xc4\xa9\xa9\xa5\x00\xf6\xb4\x30\xd8\xc3\xf4\xa5\xc9\x43\xdd\xb0\x40\xd1\x86\x1d\xb7\x81\x69\xa4\xe4\x06\xad\x69\xa8\xeb\xdb\xd6\x3a\xbf\x48\x5a\xa8\xe5\x85\x08\x95\x9e\xb7\x0e\x1a\xae\x64\x61\xe1\x6a\x29\x54\x98\xbd\xa2\x92\x74\x4e\x84\x72\x76\x65\xb6\x72\xd5\xd4\xb2\x92\xc2\x82\xe5\x95\x00\xa9\xa4\x93\xbc\x96\x37\xdc\x49\xad\x40\x57\xb0\xa8\xf5\x9c\xd7\x70\xc9\x8d\xe4\xf3\x5a\xd8\x50\xce\xde\x87\x71\x49\x7d\x45\x31\x87\xdb\x24\x6f\x97\xed\xdd\x7b\xe4\x71\x12\x13\xb0\x66\x61\x71\x0c\xdf\xf9\x26\xf9\x3b\x88\xd3\x19\xe0\x50\x18\xe3\x33\x94\xa4\xe9\xa8\xe7\xe3\x43\xb4\x53\x93\x76\x08\xf1\xb4\xa9\xff\xd7\xb0\x47\xaf\x76\xa0\x3f\x68\x36\xff\xef\xf0\x4f\x49\xfe\xca\x3d\x20\x29\xe0\x07\x6d\x81\xce\xcc\x7d\xdb\x80\x16\x61\x64\x76\x54\x67\x45\x33\x7a\x50\x37\x3b\xac\x05\x09\x24\x88\xd4\x6d\x5f\xed\x45\x66\x27\xb0\xe2\x17\x22\xe9\x9e\x64\x48\xdd\xb5\x50\x49\x97\x50\x04\x1e\x42\x47\x85\xd2\x18\xae\x16\xa2\x4f\x37\x25\xce\x6b\x3a\x01\xde\x34\x42\x95\x54\x2c\xdb\x79\x3d\x0c\x18\xe7\x43\x18\xbd\xbc\xb4\xc0\xc1\xe1\x26\xcb\x60\xa9\xeb\x12\x9d\x13\xbc\x58\x06\xf0\x85\xb7\x68\x6d\x32\x58\xa1\xfa\x12\x9c\x06\xe9\x6c\xc0\x2f\x75\x18\x9d\x2a\x8c\xa4\xf9\xe4\xc3\xf8\x8c\xb1\xdf\x3d\x3a\x6f\xd9\xf1\x56\x70\x76\xa8\x81\xcb\xee\x28\xb8\x7b\x06\xce\x0e\x9d\xc7\xd9\xb0\x8e\xa7\xd2\x8c\xaa\x88\x2f\xd8\xa1\x94\x73\x51\xeb\x2b\xe0\x50\x08\xe3\xb8\x54\x28\x52\x4a\x23\x0a\xa7\xcd\x35\x88\xd5\x5c\x94\xa5\x28\x41\xaa\xad\xdc\xdd\x6b\x86\xd7\xda\x80\x58\xf3\x55\x53\x0b\xdc\xd2\xd7\xba\x05\xd3\xaa\xc1\x2a\xd0\x0a\xf0\x7b\x92\xe7\x39\x51\x07\x4d\x16\x5a\xa1\x49\x72\x09\xd5\x54\xba\xae\xf5\x15\x16\x66\x29\x85\xe1\xa6\x58\x5e\xd3\xcd\x05\xfe\x91\x74\x37\x00\xa8\xb4\xce\xdd\xda\x6d\x27\xe4\x6a\x31\x78\x0c\xc0\xf3\x46\x2d\x86\x13\xf3\x6e\xc2\xf5\xe4\x8d\xaf\x40\x31\x2a\x8e\xd3\x31\x8f\x77\x18\xbd\x8d\x83\x1d\x64\x03\xb9\x5a\xc4\x9b\x61\x46\xbd\xec\x04\xe7\xef\x95\x27\x37\x50\x9a\xcc\xef\xca\x77\xda\x53\xca\xc9\x76\x5e\x69\x27\xd6\xd2\xba\x5d\xbd\x1d\x6f\x8e\xb5\xe0\x2a\x59\xd7\x77\x8d\x53\x68\x9b\xe1\xf6\xc4\xf5\xbb\x4d\x42\xb7\x1d\xb7\x34\xa9\xf0\xa5\x34\x50\x9d\x33\x42\x10\x01\xe2\x56\xa5\x9d\x86\x4c\x36\xa5\xed\xf8\xb5\x74\x1a\x35\xdc\x2d\xff\x2a\xad\x1b\x8a\x7c\x68\x6a\xe9\x92\xb1\x4a\x12\x42\x01\xe4\x85\xf3\x0c\x9a\x2d\x2f\xf4\x2a\x88\x50\xc9\xe3\x13\xc0\xaf\xfc\xe5\x52\xd6\xa5\x11\xea\x53\xf3\x19\x1f\xc9\x0a\xfc\xd3\x01\xff\x7e\x4d\x73\x10\x79\xaa\xdd\x74\x37\x27\x64\xeb\x35\x66\xf6\x01\xd7\x30\x87\xf4\x22\x6f\x5d\xde\x4f\x8f\xa3\x98\x3a\x8e\x2c\x70\xfc\x6e\x44\x94\xa3\x75\xde\x99\xcb\x2d\x55\x9a\xcb\x6c\x2b\x34\x22\x4b\x7c\x32\xbc\xcb\x09\x35\x1f\xdc\xc5\x50\x90\xb4\xe9\xf6\x52\x1d\x8b\x7a\xab\x03\x5a\xfc\xb6\xc3\xce\xa6\xe7\x4e\x52\x7b\x02\x8f\xc3\xcf\x5b\xca\xd2\x1e\x91\x2d\x77\xc6\xb3\x07\xad\x8e\x7c\x7b\x63\x1f\xba\x3c\x8a\x07\x64\xfc\x60\xa1\x28\xee\x58\xb7\x5f\x7f\x88\xbf\xf7\xea\xd9\x6c\x32\x02\x92\xff\x8a\x07\x94\xfe\x5b\xb9\xb1\x7b\x0a\x1c\x77\x83\x3e\xf1\x63\xe3\x0f\x8c\xf7\xc2\x3a\x6d\x84\x87\xac\xf1\x03\x6a\xd9\xfc\x41\xd9\xaa\x52\x0c\xfb\xbb\xfe\xb0\xf0\x34\x33\x94\x4e\x4a\x69\x76\xae\x63\x7d\xdb\x77\xcb\x22\xe4\xa6\x87\xf6\xb0\x01\xa9\xe1\xd5\x31\x92\x5d\x57\xd7\x8b\xf6\x1d\xe0\x43\xc4\xfd\x5d\xab\xb6\xf9\xdb\x8b\x52\x9a\x9f\xea\x3a\x39\xc7\x63\xed\x6f\xdc\x2d\xbd\xc3\xdd\xed\x73\xde\xb1\x65\x9a\x66\xa3\xd7\xcb\xe9\x0f\xcf\x9e\x1d\xbc\x16\x1e\x9b\xf2\x57\xdc\xf9\x3f\x8c\x74\x02\x75\xec\xda\x23\x13\x19\xf8\x8c\x60\x70\xb9\xbf\x23\xfc\xa2\x60\x5e\x2e\xf1\x2d\xd7\xde\xa3\xbb\xd3\xea\x2f\x0e\x77\xc7\x0f\x31\x34\xbe\xe2\xdb\x81\x89\xfd\x12\x9c\x80\x11\x45\x6b\xac\xbc\x14\xf5\x1e\xcc\xd8\x43\xa0\x29\x02\xd1\x8c\xab\xdf\x97\x89\x45\xd8\x8b\xc8\x5a\x1c\x88\x67\x3f\x3e\x3d\x23\x4e\x26\x70\x2a\x0d\xeb\x4e\x1b\xb2\xb6\x25\xd8\x62\xc8\xad\x3e\xef\x7b\x1c\xef\xc1\xf3\x8b\x96\x2a\x9c\x7f\x24\x99\x1e\x7e\x17\xa0\x3c\x87\xd3\x65\x9c\x6b\x4a\xd1\x9e\xb2\xf6\xe9\xd9\x76\xda\x5f\x7b\x20\xf7\x77\xc7\x43\xdf\xc3\xc9\xd1\xb7\x13\xa5\x34\x9b\xec\x01\xc7\x75\x9e\xe7\xf4\xcf\x36\xec\xdf\x01\x00\x00\xff\xff\xd1\x15\x94\x48\xa3\x1a\x00\x00")
func templatesWebAssetsGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesWebAssetsGoTmpl,
"templates/web/assets.go.tmpl",
)
}
func templatesWebAssetsGoTmpl() (*asset, error) {
bytes, err := templatesWebAssetsGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/web/assets.go.tmpl", size: 6819, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesWebMiddlewaresEchorusGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x56\x59\x6f\xdb\x38\x10\x7e\xb6\x7e\xc5\x94\x80\x0b\x69\xa1\xca\xce\x61\x64\x93\xad\x0b\x14\xa9\xdb\x04\xc8\xe1\xad\xd3\xa7\x20\x28\x18\x69\x74\x6c\x24\xca\x26\xa9\xb8\x46\xe2\xff\xbe\x18\x52\xb2\x25\x27\x7b\xe4\xc1\x92\xc8\xf9\xbe\xb9\x38\x33\xf4\x9c\x87\x0f\x3c\x41\x28\xb2\x28\xca\x71\xc9\x25\x2a\xc7\xc9\x8a\x79\x29\x35\xb8\x4e\x8f\xa1\x08\xcb\x28\x13\xc9\xe0\x2f\x55\x0a\xe6\xf4\x58\x5c\x68\x7a\xe9\xac\x40\xe6\x38\x3d\x96\x64\x3a\xad\xee\x83\xb0\x2c\x06\xb3\x4c\x56\x73\x85\x62\x90\x97\x89\xac\x14\xeb\x4a\x73\x7e\xaf\x34\x0f\x1f\x06\x18\xa6\x25\x73\x3c\xc7\x79\xe4\x92\x6c\x24\x12\x51\x00\xc0\x18\x94\x96\x99\x48\xdc\xdb\xbb\xfb\x95\xc6\xa7\xfd\x23\x1f\x8e\xf7\x7c\x18\x1d\xf9\x30\x1a\xf9\x30\x3a\xf6\x61\xb4\xef\xc3\x68\xe8\xc3\xde\xf0\x78\xed\x39\xbd\x65\x9a\x69\xfc\x0f\xea\xe1\xef\x2d\xea\x68\x43\x5d\x61\x9e\x97\xcb\x37\x58\xdd\xdb\x50\x25\x46\x00\x6f\x70\xf8\xf0\x78\x43\xbd\xcf\x2b\x7c\x0b\x95\x7e\x35\xb5\xe0\x09\x0a\xcd\xff\x3f\xf5\x60\x43\x0d\x57\x5c\xbc\xc9\xea\x61\x2b\x56\x85\xfa\x5f\xa8\x94\x5d\x0b\xf5\x1c\x67\x30\x80\x49\x98\x96\xb2\x52\x20\x51\x57\x52\x28\xd0\x29\x42\x5e\x26\x09\xca\x56\x89\x41\x5c\x4a\x83\x04\x85\xf2\x11\x65\xe0\xc4\x95\x08\x1b\xae\x5b\xe3\x7f\xb3\x65\x14\x5c\x98\xa5\x07\x54\x37\xc1\xe5\x46\xc9\x57\xa2\x3c\x91\x87\x64\x09\x48\x83\x2b\xf0\x97\xb6\xb8\x33\x2e\xa2\x1c\x25\x81\xbc\x17\x3b\x44\xeb\xf0\x42\x0b\x39\x2d\x85\xc6\x5f\xda\x03\x17\xa5\x04\x94\xb2\x94\x9e\xc1\xf6\x94\xe6\x52\xc3\xc9\x18\xa8\xee\x83\xab\x72\xe9\x7a\x0e\xed\x67\x31\xc1\x60\x0c\x64\xd9\x0d\xbd\x3f\xcc\xf2\xdd\x18\x44\x96\x5b\x66\x2f\x0c\x26\xa4\x88\x54\x7a\xb4\xb1\xa6\x07\x8a\x68\x47\x5b\xaf\xd7\xcb\xb9\x46\x11\xae\x48\x80\x22\x0a\x66\xd5\xbd\x6b\xec\x5a\x53\x12\x17\x24\x09\x83\xef\xb8\xa8\x50\x69\xcb\x91\xa8\x9a\x5d\x35\x2f\x85\x42\xbb\x3d\xe7\x3a\xa5\x7d\x89\x8b\xe0\xc7\xf7\x8b\x60\xca\x75\x6a\xb4\xa4\x26\x0b\x97\x05\xea\xb4\x34\x2e\xc4\x85\x0e\x66\x73\x99\x09\x1d\xbb\xac\xaf\x98\x0f\x61\xf0\x0d\xb5\xcb\x2c\x52\xfe\xb4\x50\xe6\x79\x75\xbc\x5d\x0d\xe3\x31\xb0\xfe\x3b\xe5\x7e\x14\x59\xfe\xc9\x63\x75\xcc\x3b\x18\x60\x1f\xd8\x26\xf4\x30\xcf\x50\xe8\xf3\x69\xe3\x36\xcf\xcf\xa7\xd6\xe9\xad\x53\xe4\xf6\xa5\x59\xd5\xc9\xd7\x95\x3a\x2d\x23\xb4\x32\x15\xcc\xcc\x4e\x5b\x96\x97\xd2\x28\xa4\x8f\xaf\xa5\xb4\x00\x77\xcb\x6c\x19\x78\x01\xb6\x96\x5c\x2b\x35\xc0\xb0\x2c\x0a\x14\xe6\xc0\x19\x6b\xce\xd9\x3a\x6c\x72\x63\x4a\x83\xd1\x69\xef\x9c\x75\xcd\xdb\x49\xab\x81\x9f\x80\xc9\x2e\xd6\x45\x40\xcf\x07\x5c\x99\xd3\x2b\xf8\x03\xba\x05\x9f\xdf\xda\x1e\xbb\xcb\x84\x46\x19\xf3\x10\x9f\xd6\x3e\xe4\x28\xdc\x30\x98\x72\xc9\x8b\x2b\x5e\xa0\x72\x3d\x7b\x14\xd4\x43\x3f\x7d\x98\x0b\x5e\xd8\xbc\x70\x91\x20\x74\x91\xb5\x5b\x64\xe7\xd6\x00\xef\x60\xdc\x40\x5c\xb3\xb1\x2d\xc9\x45\x85\x32\x6b\xaa\xe9\xcf\x0a\xe5\xca\xc0\x94\xbb\xb1\xb6\xe8\x9a\x6a\x08\x2d\x1b\x8b\xc6\x46\x2d\x33\xd9\x5a\xb4\xec\xd8\xda\x24\xb5\xbe\xe9\x94\x93\x31\xd0\xc5\x12\x5c\x72\xa9\x52\x9e\xbb\xa4\xc5\x6b\x35\x56\x27\xbb\x96\x08\x63\xb0\x33\xc8\x65\xe7\x89\x28\x69\x18\x9b\xfc\x42\x54\x51\xf2\xc0\xa0\x50\xa3\x54\xf4\xa9\x32\x91\xb0\x6d\x90\x59\x6c\xf2\x69\xcc\x50\xed\x0e\x5f\x57\xfd\xb4\xde\xba\x6b\xa7\x51\x70\x2e\xe2\x32\x76\xd9\x2d\x0d\xa9\x3b\xe8\x7f\xd8\x1b\xaa\xe7\xbe\x82\xfe\x41\x04\x7d\xf5\x0c\xfd\xbd\x83\x47\x78\x86\xbe\x02\xda\xa5\x77\xff\xc3\x91\x32\x6f\x65\x0e\xfe\x65\x5f\xf8\xd0\x2a\xde\xed\x22\x42\x1f\xcc\xd4\xb5\x94\x7a\x28\xd8\x45\xd3\x3b\x76\xd5\x2a\xe7\x86\x02\xb5\xea\x3a\x28\x9d\xfa\xad\xf0\xfc\x76\x8d\x9a\x45\x3d\x42\x68\x10\x3a\x26\x43\x6b\x67\xed\xd8\x61\xbc\xd3\x49\x21\x75\x5f\x26\xb4\x57\xdf\x03\x94\x37\xb5\xcc\x74\x98\xd2\x57\xc8\x15\x82\x81\x7c\x1a\xc3\xfe\x70\x08\xef\xdf\xdb\xe5\x47\x38\x18\x0e\x4f\xb6\xd3\xd6\xdc\xf5\x3b\xf8\x83\x0e\xfe\xb0\x83\x37\x17\xfc\x0e\xfe\xb0\x83\x1f\x75\xf0\xf6\x56\x77\x7a\x11\xc6\xbc\xca\x75\x4b\x22\x31\x7a\x2d\xbc\x4e\xef\xd7\xb1\xbd\x12\x63\x2d\x6f\x42\x65\xdf\x26\x37\xac\xa5\x9c\xae\xf5\x46\x34\xbd\x9e\x75\x64\x74\xf9\x6e\x64\x3f\x3a\xa2\xc6\x5b\x2b\xfc\x32\xb9\x98\xdc\x4c\xd8\xae\xcf\x35\xf3\xf3\xcd\xe9\x19\xfb\x87\x4c\xb2\xb3\xc9\xe7\x2f\x6d\x61\xfd\x5f\xa1\x11\x5f\x4f\x6f\xce\xaf\xaf\x66\xec\x65\x62\x5f\xcb\x93\x42\x6d\x33\xf5\x77\x00\x00\x00\xff\xff\xaa\x03\xf8\xef\x1c\x0a\x00\x00")
func templatesWebMiddlewaresEchorusGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesWebMiddlewaresEchorusGoTmpl,
"templates/web/middlewares/echorus.go.tmpl",
)
}
func templatesWebMiddlewaresEchorusGoTmpl() (*asset, error) {
bytes, err := templatesWebMiddlewaresEchorusGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/web/middlewares/echorus.go.tmpl", size: 2588, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesWebMiddlewaresHttp_error_handlerGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x90\x41\x8b\xdb\x30\x10\x85\xcf\xd2\xaf\x98\x0a\x0a\x56\x31\xf2\x3d\xb0\xa7\x50\x08\xa5\xd9\x96\x26\xf7\x32\x2b\x8d\x63\x75\x2d\xc9\x48\x63\xb2\x4b\xf0\x7f\x2f\xb2\xb7\x6d\xa0\x97\xbd\xce\xbc\xf7\xbd\x37\x33\xa1\x7d\xc6\x0b\x41\xf0\xce\x8d\x74\xc5\x4c\x45\x4a\x1f\xa6\x94\x19\x1a\x29\x54\x1f\x58\x49\x29\xd4\xed\x66\xa6\x9c\x7e\x91\xe5\x9f\x13\xf2\xb0\x2c\xdd\xdd\x24\x62\xa0\x65\xe9\x28\xe7\x94\x8b\x92\x42\x5d\x3c\x0f\xf3\x93\xb1\x29\x74\x23\x3e\x15\x46\xfb\xdc\x91\x1d\x92\x92\x5a\xca\xae\x83\xc3\xf9\xfc\xfd\x73\x55\x1f\x30\xba\x91\x32\xf8\x02\x78\xd7\x01\x78\x40\x86\x3e\xe5\x80\x5c\x20\x53\x74\x94\xc9\xc1\x16\x60\x64\x3f\x47\xfb\x1f\xa3\xa1\x9c\x37\x45\x0b\x16\x6a\x9a\xd9\xa7\xc8\xf4\xc2\x1a\x6e\x52\xf8\x1e\x3e\x58\xf3\x83\xca\x94\x62\xa1\x46\x9b\x7d\x0a\xc1\x33\x93\xab\x5b\x61\xcd\x89\xb8\x51\xab\x5f\xb5\x95\x63\x56\x78\xa3\xb5\x94\x42\x94\xab\x67\x3b\xd4\x31\xec\x1e\xd6\x6d\xc3\xaf\x13\xe9\xcd\x8b\x85\xe0\xd3\x9a\xf8\xb7\xd4\x4e\x8a\x0a\x3d\x9c\x8f\x5f\x6b\x31\xb3\x4f\x8e\x5a\xe8\x03\x9b\xd3\x94\x7d\xe4\xbe\x51\x1f\xcb\x5b\xd0\x91\x4a\xc1\x0b\x69\xfd\x8f\xb5\x1d\x7a\x4f\xfa\x72\xfa\xf6\xd8\xbc\xcd\x4f\x8c\x3c\x97\x8a\xac\x13\xbd\x52\xaa\xd9\x51\x8f\xf3\xc8\xab\xa3\x56\x7d\xf8\xf3\xb1\x47\xba\xd6\x5f\xe4\x34\x8e\x94\xcb\x76\x98\x9a\x23\xbd\x4c\x64\x99\xdc\xd6\xa3\x0a\x8f\xf5\x1e\x21\x54\x26\x2c\x29\xaa\x1d\x80\xda\xe3\x18\xc0\xa5\x6b\x6c\xe1\x35\x19\xd5\x6e\x02\x47\x8c\x7e\x2c\x6a\x77\xff\xaa\x75\xb7\xe8\xf7\x17\x5e\xa4\x58\xe4\x22\x7f\x07\x00\x00\xff\xff\xb6\xcf\x64\xd9\x85\x02\x00\x00")
func templatesWebMiddlewaresHttp_error_handlerGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesWebMiddlewaresHttp_error_handlerGoTmpl,
"templates/web/middlewares/http_error_handler.go.tmpl",
)
}
func templatesWebMiddlewaresHttp_error_handlerGoTmpl() (*asset, error) {
bytes, err := templatesWebMiddlewaresHttp_error_handlerGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/web/middlewares/http_error_handler.go.tmpl", size: 645, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesWebMiddlewaresRestGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x92\xc1\x8e\xda\x30\x10\x86\xcf\xf8\x29\x46\x5c\x0a\x2d\x22\xf7\x54\x3d\xac\x20\x65\x0f\x48\xad\x0a\xfb\x00\xde\x78\x92\x58\x24\x76\x64\x4f\x94\x22\xc4\xbb\x57\xe3\xac\xd8\x6e\x90\xb3\xdc\x12\xff\xf3\x7f\xff\x8c\x3d\xad\xcc\x4f\xb2\x44\x68\xb4\x52\x35\xf6\xd2\xa1\x17\x42\x37\xad\x75\x04\xf3\x52\x53\xd5\xbd\xae\x73\xdb\x24\xb5\x7c\xf5\x24\xf3\x53\x82\x79\x65\xe7\x42\x24\x09\x3c\xd5\x35\xd8\x02\xa8\x42\x68\x90\x2a\xab\x3c\x48\x87\xe1\xdf\xcb\x06\x81\xce\x2d\x82\xf4\xf0\x2c\x8d\xaa\xd1\xfd\xec\x4c\xce\x36\x5d\xc0\xd9\x76\xa0\xac\xf9\x42\xd0\x4b\x43\x40\x16\x7c\xd7\x86\x48\x69\xce\x37\x98\x2d\x60\xf3\xe7\x65\xbb\x62\xa2\x79\xab\xd7\x4d\x5b\x63\x83\x86\x40\x53\x68\x62\xe3\x50\x12\x1e\x06\x3b\x2a\xd0\x86\xd0\x15\x32\x47\x11\xe2\xa3\x32\x5c\xc4\x6c\x10\x17\x3c\xd1\x7a\x63\x0d\xe1\x5f\x5a\x02\x3a\x67\x9d\xb8\x06\xf8\x5e\x7b\x8a\xa2\x23\x22\x83\x59\x9a\xc0\x1e\x2a\xdb\x47\xb1\x11\x91\xb1\x2c\x4d\x60\x5f\x5a\x35\x75\x15\x51\x99\xd1\x83\x38\x01\xdf\x62\x8d\x13\xf0\xa8\xcc\xf0\x41\x9c\x80\xf3\x33\x83\xc2\x42\x1b\xf4\x61\x7f\x0a\x5b\xdb\xbe\xd7\xa6\x04\x87\xde\x76\x2e\x47\x9f\x72\x21\xc0\xef\x5f\x87\x63\x0a\x00\x49\x2b\xa9\x1a\x8e\x76\x59\x38\x89\x1e\x25\xa9\x56\x6f\xe6\xa7\xe3\xe6\x39\xbd\x3b\xde\x66\xfb\x51\x75\xd1\x99\x3c\x74\xb5\x28\x9d\xed\x5a\xf8\x1a\x7a\xdf\xf1\xf7\x0a\xb8\x0a\x3c\x39\x6d\xca\xd5\xad\xbf\xf7\x89\x2f\xd7\x25\x0f\xad\x8b\x9b\xb6\x02\x7b\x82\xf4\xc7\xed\x7f\xbd\x18\xad\xe5\xf2\x3b\x57\x5c\xc4\x6c\x16\xe2\xd6\x3c\xe4\x82\x63\xde\xf9\xeb\xc1\xb2\x14\xb3\xeb\x27\xec\x0f\x7b\x39\x26\xef\xb2\x3b\x30\xd7\x3f\x80\xfd\xb0\x97\x31\xec\xb7\x39\x5f\xdf\xfc\x3f\x3a\xdb\x1e\xa0\x8f\x96\xf3\xee\x42\xf8\xe1\x22\x09\x83\xf5\x81\x8c\xd1\x8e\x8e\x33\xb6\xd9\x3e\x3b\x66\x91\x90\xc1\x1b\x42\xae\xe2\x5f\x00\x00\x00\xff\xff\xab\x3b\x96\xbd\x34\x05\x00\x00")
func templatesWebMiddlewaresRestGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesWebMiddlewaresRestGoTmpl,
"templates/web/middlewares/rest.go.tmpl",
)
}
func templatesWebMiddlewaresRestGoTmpl() (*asset, error) {
bytes, err := templatesWebMiddlewaresRestGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/web/middlewares/rest.go.tmpl", size: 1332, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesWebServerGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x55\x41\x6f\xe3\x36\x13\x3d\x8b\xbf\x62\x40\x60\x17\xd2\xc2\x11\x81\xef\xf0\x1d\x04\xe4\x90\x3a\xd9\x24\x40\x9a\x1a\x71\x92\xcb\x76\xb1\xa0\xa5\x91\xcc\x46\x22\x05\x92\xb6\xd3\x1a\xfe\xef\xc5\x90\x92\xad\x64\xbb\x8b\xf6\x46\xbd\x79\x33\x7c\x33\x9c\x19\xf5\xb2\x7c\x91\x0d\xc2\x0e\x57\x8c\xa9\xae\x37\xd6\x43\xca\x12\x5e\x77\x9e\x33\x96\x38\x2f\xbd\x2a\x81\x37\xca\xaf\x37\xab\xbc\x34\x9d\x98\x9b\x0a\xcf\x6e\xf0\x55\x60\xb9\x36\x67\x91\xc0\x59\x22\x9d\x43\x5f\xbb\x37\x54\x6c\xe5\x5f\xd2\xb6\xa2\x31\x67\x2b\xa5\x2b\xe9\xe5\xd9\x40\xe3\x2c\x99\x12\x5b\xb9\x72\x5e\x96\x2f\x21\xe6\xcf\x6c\xa2\x53\x55\xd5\xe2\x4e\x5a\x24\xda\x7e\x9f\xf7\xd6\xfc\x81\xa5\xff\xd6\x4b\xbf\x3e\x1c\xc4\x04\xd1\xb2\xc3\xc3\x41\x94\x46\xd7\xaa\xf9\x0f\x6c\x6f\x4d\xdb\xa2\x75\xff\xd6\x65\x87\xab\x89\xac\x98\x9a\xe9\x5f\x9a\x5c\x69\xb1\xb1\xb5\xdc\xa2\x28\x5b\x95\x6f\xff\xc7\x59\xc6\xd8\x56\x5a\x2a\xb0\x10\x30\x37\x5d\x27\x75\x05\x15\xd6\x4a\xa3\x03\xbf\x46\x70\x68\xb7\x68\xa1\x1c\x4c\xe9\xfc\xee\x36\xcb\x59\x32\x52\xcf\xe1\x23\x85\x1a\x3e\xf7\x2c\x49\xee\x65\x87\x05\x00\x00\x8f\xae\x7c\xc6\x92\xe4\xa2\x55\xd2\xa1\x2b\xe0\xcb\x57\xe7\xad\xd2\xcd\x9e\x3b\x7e\x20\xcb\x93\x93\x4d\xe0\x73\xe7\xa5\xf5\x30\x75\x2a\xbd\x32\xba\x00\x90\xe1\x40\xd0\xe7\x56\x36\x8e\xd8\x35\x1d\x66\x2c\x39\x30\x96\x84\x33\x9c\xc3\x97\xaf\x24\x85\x28\xa4\x23\xe8\x5a\x86\xcb\x46\x68\xd4\xc6\xfb\x19\x50\x5f\x85\x5b\x46\x05\x7c\xd9\x63\xa9\xea\x3f\x43\xd6\xa1\xeb\xbc\x81\x56\x39\x8f\x1a\xbc\xc9\x03\x37\x28\xfe\x59\xe0\xd5\x0c\xa8\xaf\x94\x6e\xde\xc6\xfe\x45\xe9\xca\x8d\xb5\xf4\x26\x56\x36\xdc\xa7\xb0\x82\xdb\xc5\x29\xfc\x81\x9e\xa4\xde\xe8\x72\xc8\x3a\xa5\xf7\xc7\x57\x0f\x9f\x62\x9d\xc3\x47\x06\x68\xad\xb1\xb0\x67\x2c\x41\xdd\x28\x8d\x50\x9c\xc3\x55\xb9\x36\x57\xe1\x2b\xcd\x58\xd2\x5b\xa5\xfd\x83\xd9\x78\x74\x69\xe4\x64\x8c\x25\x43\x42\xc5\x39\xd4\x9d\xcf\x97\x81\x54\xa7\xfc\x83\x2b\x3e\x38\x3e\x83\xe1\xb2\x21\xbd\x94\xaf\x78\xf6\x3d\xd8\xf3\x2c\x63\x49\xec\xe2\xfc\xce\x34\xf9\xad\xae\x4d\x9d\xf2\x65\x4c\x2f\x5e\xa1\x74\x03\x46\x43\x88\x1a\x91\x6c\xd4\x9a\x2f\xe9\xa5\xd3\x11\x65\x89\x45\xbf\xb1\x1a\xb4\x6a\xd9\x81\x31\x21\x26\x99\x80\xd2\xce\x4b\x5d\x2a\xe9\x87\x86\xbc\x5b\x2e\x87\x42\xe6\xb1\x4e\xd3\xb4\xe1\x13\xcd\x64\x4e\x10\xec\xa7\xb5\x09\xf0\x3d\xee\xd2\x93\x8a\x27\x87\xe9\x69\x4a\xf2\x07\x2c\xcd\x16\x6d\x9a\xfd\x88\xe1\x42\x58\xbb\x71\xe9\x29\x75\x22\x93\xde\xf0\x1a\x6b\xa9\xab\x16\xed\xd1\xfd\xe6\xf1\x71\x11\x2c\x37\xd1\x00\xe7\x30\x8d\xf6\xde\x1c\x22\x3d\x2b\xdc\x39\xf0\xd8\xf5\x2d\x65\x7c\x8c\xf5\x80\xba\x42\x1b\x62\x4c\x8c\x42\xc0\xd2\x5b\xa3\x1b\xe8\xa5\x95\x1d\x7a\xb4\x27\x97\x67\xd9\xaa\x4a\x7a\x63\xc3\x90\x9e\xb6\x48\xbe\x20\xae\x3b\x9a\xf7\x34\x43\x96\x1a\xc5\x86\x4a\x45\xef\x6b\x6b\x36\xfd\x98\xe9\xbc\x6e\xf2\xd0\x4a\x96\x1a\xdd\xf5\xb2\x0c\xcd\x34\x29\x53\xdc\xba\x79\x68\x81\x07\x63\x7c\xca\x45\xbf\x59\xb5\xaa\xe4\x33\xd0\xb8\xbb\xa0\x25\xeb\x52\x3e\x60\x59\x96\x81\x10\x10\x56\xaf\x1b\x2f\xcf\xaf\xaf\x1e\x53\x2e\xb6\x68\x9d\x32\x7a\x68\xc6\x51\xf3\x73\x44\xb3\x77\xe4\x77\xac\x5b\x5d\xe1\xeb\x8d\xe9\x30\x3e\xcb\xfc\xe1\xe9\xf2\xcd\x32\xab\x4d\x6b\x76\x3b\x6a\x4d\x8b\xce\x6c\x6c\x89\xae\x08\x4c\x80\xc5\x6f\xcb\x47\x5a\x2c\x82\xb6\xea\x80\x5d\x5f\x05\xe8\xc7\x98\x28\x54\x35\xfa\x5f\x3c\xce\x6f\x8a\xef\xf1\xcb\xab\xbb\x7f\xe0\x4f\xfb\x80\x54\xa6\x31\xab\x19\x70\xb1\x71\xb4\xe9\xdf\xe6\x75\x8f\xbb\x27\x82\xa9\x39\x8f\xe3\x12\xab\x4f\x13\x13\xc6\xe0\x54\x65\x6b\x8c\x87\xb8\x66\x33\xf8\x34\xfc\xdf\xf2\x60\xfc\xbc\xa4\xb1\x18\x02\x7c\x7c\x67\xa2\x4d\x16\x8e\x41\x30\x84\xe3\x6c\xc4\x2e\x95\x2d\x06\xec\x52\xd9\x23\x4c\xa3\x5f\xc0\xf1\x48\xf8\xc2\x62\xad\x5e\x43\x0c\x52\x12\x76\xda\x28\xf2\xcd\x52\x9a\x0c\x6b\x46\xb2\x68\x23\x2d\x88\xd0\xea\x94\x47\x52\xc1\x33\x96\xd4\xc6\xc2\xb7\x19\x84\x12\x51\x87\x5a\xa9\x1b\x04\xcc\x87\x38\xc1\xf7\xe4\x4c\xdb\xec\xff\x0e\x3e\xb8\xdf\xa9\x87\x82\x53\xfe\x2b\xfa\xb5\xa9\xc6\xaf\x85\xf4\xeb\x2c\xaa\xfa\x3b\x00\x00\xff\xff\x8e\xc2\x54\x53\x6d\x08\x00\x00")
func templatesWebServerGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesWebServerGoTmpl,
"templates/web/server.go.tmpl",
)
}
func templatesWebServerGoTmpl() (*asset, error) {
bytes, err := templatesWebServerGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/web/server.go.tmpl", size: 2157, mode: os.FileMode(420), modTime: time.Unix(1487674795, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _templatesWebTemplateGoTmpl = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x94\x54\x4d\x8f\xdb\x36\x10\x3d\x8b\xbf\x62\xca\x43\x20\x15\x8a\xd8\x5e\x5d\xa8\x40\x13\xf4\x0b\x68\x82\x22\xdd\xa2\x87\x20\x30\x28\x79\x64\x73\x57\x22\x09\x72\xb4\xde\xc5\x42\xff\xbd\x18\xd2\x96\xbd\xc9\xb6\x45\x2f\x86\x3c\x9c\x99\xf7\xf8\xe6\x71\xbc\xee\xef\xf4\x1e\xe1\x88\x9d\x10\x66\xf2\x2e\x10\x94\xa2\x90\xdd\x23\x61\x94\xa2\x90\x18\x82\x0b\xe9\xeb\x40\xd3\xa8\x08\x27\x3f\x6a\x42\x0e\x18\xc7\xbf\x5e\xd3\x41\x0d\x66\x44\xfe\xe0\x40\xa4\x60\xec\x3e\x4a\x21\x0a\xb9\x37\x74\x98\xbb\xa6\x77\x93\x1a\x75\x17\x49\xf7\x77\x0a\xfb\x43\x2a\x7c\x7a\x6a\x7c\x70\xb7\xd8\xd3\x96\x4b\x97\x45\x5d\x45\xac\x9e\x70\x59\xd4\xbd\xc1\x63\x94\xa2\x12\x82\x1e\x3d\xc2\xcd\x09\x3d\x42\xa4\x30\xf7\x04\x4f\xa2\xa0\x35\xf6\xf5\xf9\xb3\x39\xe7\x89\x45\x88\x7b\x1d\xf8\x46\x57\x69\x6b\x17\x51\xf4\x07\xec\xef\xe2\x3c\x45\x98\xb4\xff\x98\x99\x7f\x32\x96\x30\x0c\xba\xc7\xa7\x85\x91\x87\xd9\xf6\x60\xac\xa1\xb2\x62\x3c\xa5\xe0\xad\x9b\xbc\x19\x8d\xdd\xc3\xa5\xeb\x10\xdc\x04\x7b\xf7\xba\x33\x76\xa7\x49\x8b\x82\x25\xe1\x5b\x44\xd8\xb4\x90\xee\xd1\xfc\x10\x23\xd2\x7b\x8e\x95\x95\x28\x98\x18\xbd\x44\xba\x30\x03\x8c\x68\xcb\xb5\x43\x05\x6d\x0b\xdf\x30\x78\xe1\xb5\x35\x7d\x99\x87\xd2\xbc\xc7\x63\x29\xcf\xf5\x1b\xb0\x0e\xb8\x24\x66\x34\x18\xdc\xb8\xc3\x00\xd6\x05\xd8\x3b\xd8\xa3\xc5\xa0\x09\xc1\x3a\x82\x5e\x8f\x23\xee\x64\x55\x89\x62\x11\xc5\xe0\x02\x6c\x6b\x38\xc3\x31\xdf\xa0\xed\x1e\xe1\x72\x05\x86\xee\x6a\xc0\x10\x3e\xbb\xcd\x4a\xb2\x12\x05\xf3\xe6\x8c\xaf\x5a\xb0\x66\x4c\x35\x17\xbe\x7c\xbe\x08\x51\x14\x49\x8f\xac\x74\xd9\x71\xf4\x8c\x79\xf6\x50\xf3\x46\x47\xbc\xea\x2b\x8a\x2c\xd5\xe4\xc7\x17\xd5\x62\x58\x62\x85\x56\x50\xa5\xe0\x27\x13\x22\xad\xe3\xe1\x20\x41\xbb\xfe\x4f\xca\x9d\x59\x2f\xb9\x45\xa2\xd1\xb6\x40\x0d\x4f\x28\xcf\xba\x28\x12\x6a\x0b\xc4\x79\x80\x63\xc4\xe7\xe1\xcf\x1a\xe5\x4e\xdb\x2c\x54\x9b\x28\x37\xbf\xeb\x10\xb1\x8c\xd5\x77\xff\xa5\x4d\xaa\xbf\x18\xaa\x85\x57\xab\x51\x39\x7d\x3d\xd9\x00\xd5\x39\x59\x29\xf8\x39\x8f\x95\xbd\xa8\x79\x1e\xb0\x3a\x5a\x14\x29\x90\xe4\x7e\x6e\xbc\x8b\xe9\x5b\x98\xf4\x1d\x96\x2f\x7b\xbf\x4e\x26\xcc\x4d\xd8\x29\xff\x68\x93\x13\x0e\x93\x34\x76\x70\xab\x4d\x12\xea\xaf\x76\x70\xff\xdf\x24\x4a\x81\xf2\x73\x37\x9a\x5e\xe5\xee\xea\x56\xdf\xeb\xd8\x07\xe3\x29\x2a\xed\x7d\x73\x1b\xa1\xfd\x1e\xb4\xf7\xdb\xdb\x78\x65\xa2\xd3\xf2\x69\x3e\xa0\x1f\x75\x9f\x6d\x74\x31\x15\xd3\x3b\x8d\xb7\xaa\x41\x36\xb2\x06\xb9\x95\x35\xbc\xfe\x96\x91\x57\x5d\x3e\x72\xb7\x4f\xd0\x42\xca\x7f\xe7\x76\x37\x86\x4b\x9a\x3f\xad\x79\x28\xd3\x9b\x59\x4e\x6b\xa1\xa4\xab\x75\x52\xc1\x07\xb4\x3b\x0c\xe5\x11\x8c\x6b\xfe\x0a\x86\x30\xd4\xd9\x57\x99\x56\x0d\xbc\x1a\xe0\x99\xc6\x3d\xf0\x3e\x6c\xde\x3a\x4b\xf8\x40\x15\xa4\xa7\xcd\xb2\xb0\xe7\xbb\x79\x80\xb4\x89\x9b\x37\xf3\x30\x60\x10\x67\xf5\x36\xec\xbd\xd5\x11\xcd\x8f\x0f\xd8\xcf\x84\x67\x26\xe5\xab\x6e\x1e\x32\x72\x86\xfc\xd2\x7c\x01\x69\x0e\x96\xa3\xd9\x4a\xa7\xff\xff\xd6\xf4\x58\x83\x1c\xf5\xa3\x9b\xa9\x61\x63\xcb\x3a\x33\x7f\xa7\x3d\x37\x94\x8f\x06\xc7\x9d\xdc\x5c\xde\xd8\x2f\x37\xef\x7e\x2b\xbb\x79\x68\xfe\xc8\x8f\xbd\xaa\x6a\xce\x23\x43\x23\xca\x0d\xc8\x2f\xb6\xbd\x4c\xe7\xeb\x14\xe4\xe6\x62\x66\x36\x7c\x25\x16\xf1\x77\x00\x00\x00\xff\xff\xb1\xe3\x99\x56\xaf\x06\x00\x00")
func templatesWebTemplateGoTmplBytes() ([]byte, error) {
return bindataRead(
_templatesWebTemplateGoTmpl,
"templates/web/template.go.tmpl",
)
}
func templatesWebTemplateGoTmpl() (*asset, error) {
bytes, err := templatesWebTemplateGoTmplBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "templates/web/template.go.tmpl", size: 1711, mode: os.FileMode(420), modTime: time.Unix(1487675278, 0)}
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){
"templates/Makefile.tmpl": templatesMakefileTmpl,
"templates/config/config.go.tmpl": templatesConfigConfigGoTmpl,
"templates/config/logger.go.tmpl": templatesConfigLoggerGoTmpl,
"templates/config/mode.go.tmpl": templatesConfigModeGoTmpl,
"templates/controllers/home.go.tmpl": templatesControllersHomeGoTmpl,
"templates/controllers/params.go.tmpl": templatesControllersParamsGoTmpl,
"templates/controllers/user.example.go.tmpl": templatesControllersUserExampleGoTmpl,
"templates/controllers/version.go.tmpl": templatesControllersVersionGoTmpl,
"templates/errors/controllers.go.tmpl": templatesErrorsControllersGoTmpl,
"templates/errors/error.go.tmpl": templatesErrorsErrorGoTmpl,
"templates/glide.yaml.tmpl": templatesGlideYamlTmpl,
"templates/main.go.tmpl": templatesMainGoTmpl,
"templates/models/.keep.tmpl": templatesModelsKeepTmpl,
"templates/public/assets/javascripts/app.js.tmpl": templatesPublicAssetsJavascriptsAppJsTmpl,
"templates/public/assets/stylesheets/app.css.tmpl": templatesPublicAssetsStylesheetsAppCssTmpl,
"templates/utils/conversions.go.tmpl": templatesUtilsConversionsGoTmpl,
"templates/utils/strings.go.tmpl": templatesUtilsStringsGoTmpl,
"templates/views/bindata.go.tmpl": templatesViewsBindataGoTmpl,
"templates/views/index.home.tmpl.tmpl": templatesViewsIndexHomeTmplTmpl,
"templates/views/layout.tmpl.tmpl": templatesViewsLayoutTmplTmpl,
"templates/web/assets.go.tmpl": templatesWebAssetsGoTmpl,
"templates/web/middlewares/echorus.go.tmpl": templatesWebMiddlewaresEchorusGoTmpl,
"templates/web/middlewares/http_error_handler.go.tmpl": templatesWebMiddlewaresHttp_error_handlerGoTmpl,
"templates/web/middlewares/rest.go.tmpl": templatesWebMiddlewaresRestGoTmpl,
"templates/web/server.go.tmpl": templatesWebServerGoTmpl,
"templates/web/template.go.tmpl": templatesWebTemplateGoTmpl,
}
// 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{
"templates": &bintree{nil, map[string]*bintree{
"Makefile.tmpl": &bintree{templatesMakefileTmpl, map[string]*bintree{}},
"config": &bintree{nil, map[string]*bintree{
"config.go.tmpl": &bintree{templatesConfigConfigGoTmpl, map[string]*bintree{}},
"logger.go.tmpl": &bintree{templatesConfigLoggerGoTmpl, map[string]*bintree{}},
"mode.go.tmpl": &bintree{templatesConfigModeGoTmpl, map[string]*bintree{}},
}},
"controllers": &bintree{nil, map[string]*bintree{
"home.go.tmpl": &bintree{templatesControllersHomeGoTmpl, map[string]*bintree{}},
"params.go.tmpl": &bintree{templatesControllersParamsGoTmpl, map[string]*bintree{}},
"user.example.go.tmpl": &bintree{templatesControllersUserExampleGoTmpl, map[string]*bintree{}},
"version.go.tmpl": &bintree{templatesControllersVersionGoTmpl, map[string]*bintree{}},
}},
"errors": &bintree{nil, map[string]*bintree{
"controllers.go.tmpl": &bintree{templatesErrorsControllersGoTmpl, map[string]*bintree{}},
"error.go.tmpl": &bintree{templatesErrorsErrorGoTmpl, map[string]*bintree{}},
}},
"glide.yaml.tmpl": &bintree{templatesGlideYamlTmpl, map[string]*bintree{}},
"main.go.tmpl": &bintree{templatesMainGoTmpl, map[string]*bintree{}},
"models": &bintree{nil, map[string]*bintree{
".keep.tmpl": &bintree{templatesModelsKeepTmpl, map[string]*bintree{}},
}},
"public": &bintree{nil, map[string]*bintree{
"assets": &bintree{nil, map[string]*bintree{
"javascripts": &bintree{nil, map[string]*bintree{
"app.js.tmpl": &bintree{templatesPublicAssetsJavascriptsAppJsTmpl, map[string]*bintree{}},
}},
"stylesheets": &bintree{nil, map[string]*bintree{
"app.css.tmpl": &bintree{templatesPublicAssetsStylesheetsAppCssTmpl, map[string]*bintree{}},
}},
}},
}},
"utils": &bintree{nil, map[string]*bintree{
"conversions.go.tmpl": &bintree{templatesUtilsConversionsGoTmpl, map[string]*bintree{}},
"strings.go.tmpl": &bintree{templatesUtilsStringsGoTmpl, map[string]*bintree{}},
}},
"views": &bintree{nil, map[string]*bintree{
"bindata.go.tmpl": &bintree{templatesViewsBindataGoTmpl, map[string]*bintree{}},
"index.home.tmpl.tmpl": &bintree{templatesViewsIndexHomeTmplTmpl, map[string]*bintree{}},
"layout.tmpl.tmpl": &bintree{templatesViewsLayoutTmplTmpl, map[string]*bintree{}},
}},
"web": &bintree{nil, map[string]*bintree{
"assets.go.tmpl": &bintree{templatesWebAssetsGoTmpl, map[string]*bintree{}},
"middlewares": &bintree{nil, map[string]*bintree{
"echorus.go.tmpl": &bintree{templatesWebMiddlewaresEchorusGoTmpl, map[string]*bintree{}},
"http_error_handler.go.tmpl": &bintree{templatesWebMiddlewaresHttp_error_handlerGoTmpl, map[string]*bintree{}},
"rest.go.tmpl": &bintree{templatesWebMiddlewaresRestGoTmpl, map[string]*bintree{}},
}},
"server.go.tmpl": &bintree{templatesWebServerGoTmpl, map[string]*bintree{}},
"template.go.tmpl": &bintree{templatesWebTemplateGoTmpl, 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, "/")...)...)
}