-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvoxgram.sql
1289 lines (1136 loc) · 93.7 KB
/
voxgram.sql
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
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Servidor: localhost:8889
-- Tiempo de generación: 16-01-2017 a las 19:37:06
-- Versión del servidor: 5.6.28
-- Versión de PHP: 5.6.25
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `voxgram`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `caches`
--
CREATE TABLE `caches` (
`name` varchar(250) NOT NULL,
`data` mediumtext NOT NULL,
`expires` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `caches`
--
INSERT INTO `caches` (`name`, `data`, `expires`) VALUES
('Modules.wire/modules/', 'AdminTheme/AdminThemeDefault/AdminThemeDefault.module\nAdminTheme/AdminThemeReno/AdminThemeReno.module\nFieldtype/FieldtypeCache.module\nFieldtype/FieldtypeCheckbox.module\nFieldtype/FieldtypeComments/CommentFilterAkismet.module\nFieldtype/FieldtypeComments/FieldtypeComments.module\nFieldtype/FieldtypeComments/InputfieldCommentsAdmin.module\nFieldtype/FieldtypeDatetime.module\nFieldtype/FieldtypeEmail.module\nFieldtype/FieldtypeFieldsetClose.module\nFieldtype/FieldtypeFieldsetOpen.module\nFieldtype/FieldtypeFieldsetTabOpen.module\nFieldtype/FieldtypeFile.module\nFieldtype/FieldtypeFloat.module\nFieldtype/FieldtypeImage.module\nFieldtype/FieldtypeInteger.module\nFieldtype/FieldtypeModule.module\nFieldtype/FieldtypeOptions/FieldtypeOptions.module\nFieldtype/FieldtypePage.module\nFieldtype/FieldtypePageTable.module\nFieldtype/FieldtypePageTitle.module\nFieldtype/FieldtypePassword.module\nFieldtype/FieldtypeRepeater/FieldtypeRepeater.module\nFieldtype/FieldtypeRepeater/InputfieldRepeater.module\nFieldtype/FieldtypeSelector.module\nFieldtype/FieldtypeText.module\nFieldtype/FieldtypeTextarea.module\nFieldtype/FieldtypeURL.module\nFileCompilerTags.module\nImageSizerEngineIMagick.module\nInputfield/InputfieldAsmSelect/InputfieldAsmSelect.module\nInputfield/InputfieldButton.module\nInputfield/InputfieldCheckbox.module\nInputfield/InputfieldCheckboxes/InputfieldCheckboxes.module\nInputfield/InputfieldCKEditor/InputfieldCKEditor.module\nInputfield/InputfieldDatetime/InputfieldDatetime.module\nInputfield/InputfieldEmail.module\nInputfield/InputfieldFieldset.module\nInputfield/InputfieldFile/InputfieldFile.module\nInputfield/InputfieldFloat.module\nInputfield/InputfieldForm.module\nInputfield/InputfieldHidden.module\nInputfield/InputfieldIcon/InputfieldIcon.module\nInputfield/InputfieldImage/InputfieldImage.module\nInputfield/InputfieldInteger.module\nInputfield/InputfieldMarkup.module\nInputfield/InputfieldName.module\nInputfield/InputfieldPage/InputfieldPage.module\nInputfield/InputfieldPageAutocomplete/InputfieldPageAutocomplete.module\nInputfield/InputfieldPageListSelect/InputfieldPageListSelect.module\nInputfield/InputfieldPageListSelect/InputfieldPageListSelectMultiple.module\nInputfield/InputfieldPageName/InputfieldPageName.module\nInputfield/InputfieldPageTable/InputfieldPageTable.module\nInputfield/InputfieldPageTitle/InputfieldPageTitle.module\nInputfield/InputfieldPassword/InputfieldPassword.module\nInputfield/InputfieldRadios/InputfieldRadios.module\nInputfield/InputfieldSelect.module\nInputfield/InputfieldSelectMultiple.module\nInputfield/InputfieldSelector/InputfieldSelector.module\nInputfield/InputfieldSubmit/InputfieldSubmit.module\nInputfield/InputfieldText.module\nInputfield/InputfieldTextarea.module\nInputfield/InputfieldURL.module\nJquery/JqueryCore/JqueryCore.module\nJquery/JqueryMagnific/JqueryMagnific.module\nJquery/JqueryTableSorter/JqueryTableSorter.module\nJquery/JqueryUI/JqueryUI.module\nJquery/JqueryWireTabs/JqueryWireTabs.module\nLanguageSupport/FieldtypePageTitleLanguage.module\nLanguageSupport/FieldtypeTextareaLanguage.module\nLanguageSupport/FieldtypeTextLanguage.module\nLanguageSupport/LanguageSupport.module\nLanguageSupport/LanguageSupportFields.module\nLanguageSupport/LanguageSupportPageNames.module\nLanguageSupport/LanguageTabs.module\nLanguageSupport/ProcessLanguage.module\nLanguageSupport/ProcessLanguageTranslator.module\nLazyCron.module\nMarkup/MarkupAdminDataTable/MarkupAdminDataTable.module\nMarkup/MarkupCache.module\nMarkup/MarkupHTMLPurifier/MarkupHTMLPurifier.module\nMarkup/MarkupPageArray.module\nMarkup/MarkupPageFields.module\nMarkup/MarkupPagerNav/MarkupPagerNav.module\nMarkup/MarkupRSS.module\nPage/PageFrontEdit/PageFrontEdit.module\nPagePathHistory.module\nPagePaths.module\nPagePermissions.module\nPageRender.module\nProcess/ProcessCommentsManager/ProcessCommentsManager.module\nProcess/ProcessField/ProcessField.module\nProcess/ProcessForgotPassword.module\nProcess/ProcessHome.module\nProcess/ProcessList.module\nProcess/ProcessLogger/ProcessLogger.module\nProcess/ProcessLogin/ProcessLogin.module\nProcess/ProcessModule/ProcessModule.module\nProcess/ProcessPageAdd/ProcessPageAdd.module\nProcess/ProcessPageClone.module\nProcess/ProcessPageEdit/ProcessPageEdit.module\nProcess/ProcessPageEditImageSelect/ProcessPageEditImageSelect.module\nProcess/ProcessPageEditLink/ProcessPageEditLink.module\nProcess/ProcessPageList/ProcessPageList.module\nProcess/ProcessPageLister/ProcessPageLister.module\nProcess/ProcessPageSearch/ProcessPageSearch.module\nProcess/ProcessPageSort.module\nProcess/ProcessPageTrash.module\nProcess/ProcessPageType/ProcessPageType.module\nProcess/ProcessPageView.module\nProcess/ProcessPermission/ProcessPermission.module\nProcess/ProcessProfile/ProcessProfile.module\nProcess/ProcessRecentPages/ProcessRecentPages.module\nProcess/ProcessRole/ProcessRole.module\nProcess/ProcessTemplate/ProcessTemplate.module\nProcess/ProcessUser/ProcessUser.module\nSession/SessionHandlerDB/ProcessSessionDB.module\nSession/SessionHandlerDB/SessionHandlerDB.module\nSession/SessionLoginThrottle/SessionLoginThrottle.module\nSystem/SystemNotifications/FieldtypeNotifications.module\nSystem/SystemNotifications/SystemNotifications.module\nSystem/SystemUpdater/SystemUpdater.module\nTextformatter/TextformatterEntities.module\nTextformatter/TextformatterMarkdownExtra/TextformatterMarkdownExtra.module\nTextformatter/TextformatterNewlineBR.module\nTextformatter/TextformatterNewlineUL.module\nTextformatter/TextformatterPstripper.module\nTextformatter/TextformatterSmartypants/TextformatterSmartypants.module\nTextformatter/TextformatterStripTags.module', '2010-04-08 03:10:10'),
('ModulesVerbose.info', '{"148":{"summary":"Minimal admin theme that supports all ProcessWire features.","core":true,"versionStr":"0.1.4"},"97":{"summary":"This Fieldtype stores an ON\\/OFF toggle via a single checkbox. The ON value is 1 and OFF value is 0.","core":true,"versionStr":"1.0.1"},"28":{"summary":"Field that stores a date and optionally time","core":true,"versionStr":"1.0.4"},"29":{"summary":"Field that stores an e-mail address","core":true,"versionStr":"1.0.0"},"106":{"summary":"Close a fieldset opened by FieldsetOpen. ","core":true,"versionStr":"1.0.0"},"105":{"summary":"Open a fieldset to group fields. Should be followed by a Fieldset (Close) after one or more fields.","core":true,"versionStr":"1.0.0"},"107":{"summary":"Open a fieldset to group fields. Same as Fieldset (Open) except that it displays in a tab instead.","core":true,"versionStr":"1.0.0"},"6":{"summary":"Field that stores one or more files","core":true,"versionStr":"1.0.4"},"89":{"summary":"Field that stores a floating point (decimal) number","core":true,"versionStr":"1.0.5"},"57":{"summary":"Field that stores one or more GIF, JPG, or PNG images","core":true,"versionStr":"1.0.1"},"84":{"summary":"Field that stores an integer","core":true,"versionStr":"1.0.1"},"27":{"summary":"Field that stores a reference to another module","core":true,"versionStr":"1.0.1"},"4":{"summary":"Field that stores one or more references to ProcessWire pages","core":true,"versionStr":"1.0.3"},"111":{"summary":"Field that stores a page title","core":true,"versionStr":"1.0.0"},"133":{"summary":"Field that stores a hashed and salted password","core":true,"versionStr":"1.0.1"},"3":{"summary":"Field that stores a single line of text","core":true,"versionStr":"1.0.0"},"1":{"summary":"Field that stores multiple lines of text","core":true,"versionStr":"1.0.6"},"135":{"summary":"Field that stores a URL","core":true,"versionStr":"1.0.1"},"25":{"summary":"Multiple selection, progressive enhancement to select multiple","core":true,"versionStr":"1.2.0"},"131":{"summary":"Form button element that you can optionally pass an href attribute to.","core":true,"versionStr":"1.0.0"},"37":{"summary":"Single checkbox toggle","core":true,"versionStr":"1.0.4"},"38":{"summary":"Multiple checkbox toggles","core":true,"versionStr":"1.0.7"},"155":{"summary":"CKEditor textarea rich text editor.","core":true,"versionStr":"1.5.7"},"94":{"summary":"Inputfield that accepts date and optionally time","core":true,"versionStr":"1.0.5"},"80":{"summary":"E-Mail address in valid format","core":true,"versionStr":"1.0.1"},"78":{"summary":"Groups one or more fields together in a container","core":true,"versionStr":"1.0.1"},"55":{"summary":"One or more file uploads (sortable)","core":true,"versionStr":"1.2.4"},"90":{"summary":"Floating point number with precision","core":true,"versionStr":"1.0.3"},"30":{"summary":"Contains one or more fields in a form","core":true,"versionStr":"1.0.7"},"40":{"summary":"Hidden value in a form","core":true,"versionStr":"1.0.1"},"161":{"summary":"Select an icon","core":true,"versionStr":"0.0.2"},"56":{"summary":"One or more image uploads (sortable)","core":true,"versionStr":"1.1.9"},"85":{"summary":"Integer (positive or negative)","core":true,"versionStr":"1.0.4"},"79":{"summary":"Contains any other markup and optionally child Inputfields","core":true,"versionStr":"1.0.2"},"41":{"summary":"Text input validated as a ProcessWire name field","core":true,"versionStr":"1.0.0"},"60":{"summary":"Select one or more pages","core":true,"versionStr":"1.0.6"},"15":{"summary":"Selection of a single page from a ProcessWire page tree list","core":true,"versionStr":"1.0.1"},"137":{"summary":"Selection of multiple pages from a ProcessWire page tree list","core":true,"versionStr":"1.0.2"},"86":{"summary":"Text input validated as a ProcessWire Page name field","core":true,"versionStr":"1.0.6"},"112":{"summary":"Handles input of Page Title and auto-generation of Page Name (when name is blank)","core":true,"versionStr":"1.0.2"},"122":{"summary":"Password input with confirmation field that doesn\'t ever echo the input back.","core":true,"versionStr":"1.0.1"},"39":{"summary":"Radio buttons for selection of a single item","core":true,"versionStr":"1.0.5"},"36":{"summary":"Selection of a single value from a select pulldown","core":true,"versionStr":"1.0.2"},"43":{"summary":"Select multiple items from a list","core":true,"versionStr":"1.0.1"},"149":{"summary":"Build a page finding selector visually.","author":"Avoine + ProcessWire","core":true,"versionStr":"0.2.7"},"32":{"summary":"Form submit button","core":true,"versionStr":"1.0.2"},"34":{"summary":"Single line of text","core":true,"versionStr":"1.0.6"},"35":{"summary":"Multiple lines of text","core":true,"versionStr":"1.0.3"},"108":{"summary":"URL in valid format","core":true,"versionStr":"1.0.2"},"116":{"summary":"jQuery Core as required by ProcessWire Admin and plugins","href":"http:\\/\\/jquery.com","core":true,"versionStr":"1.8.3"},"151":{"summary":"Provides lightbox capability for image galleries. Replacement for FancyBox. Uses Magnific Popup by @dimsemenov.","href":"http:\\/\\/dimsemenov.com\\/plugins\\/magnific-popup\\/","core":true,"versionStr":"0.0.1"},"103":{"summary":"Provides a jQuery plugin for sorting tables.","href":"http:\\/\\/mottie.github.io\\/tablesorter\\/","core":true,"versionStr":"2.2.1"},"117":{"summary":"jQuery UI as required by ProcessWire and plugins","href":"http:\\/\\/ui.jquery.com","core":true,"versionStr":"1.9.6"},"45":{"summary":"Provides a jQuery plugin for generating tabs in ProcessWire.","core":true,"versionStr":"1.0.7"},"67":{"summary":"Generates markup for data tables used by ProcessWire admin","core":true,"versionStr":"1.0.7"},"156":{"summary":"Front-end to the HTML Purifier library.","core":true,"versionStr":"1.0.5"},"113":{"summary":"Adds a render() method to all PageArray instances for basic unordered list generation of PageArrays.","core":true,"versionStr":"1.0.0"},"98":{"summary":"Generates markup for pagination navigation","core":true,"versionStr":"1.0.4"},"114":{"summary":"Adds various permission methods to Page objects that are used by Process modules.","core":true,"versionStr":"1.0.5"},"115":{"summary":"Adds a render method to Page and caches page output.","core":true,"versionStr":"1.0.5"},"48":{"summary":"Edit individual fields that hold page data","core":true,"versionStr":"1.1.2"},"87":{"summary":"Acts as a placeholder Process for the admin root. Ensures proper flow control after login.","core":true,"versionStr":"1.0.1"},"76":{"summary":"Lists the Process assigned to each child page of the current","core":true,"versionStr":"1.0.1"},"160":{"summary":"View and manage system logs.","author":"Ryan Cramer","core":true,"versionStr":"0.0.1","permissions":{"logs-view":"Can view system logs","logs-edit":"Can manage system logs"},"page":{"name":"logs","parent":"setup","title":"Logs"}},"10":{"summary":"Login to ProcessWire","core":true,"versionStr":"1.0.3"},"50":{"summary":"List, edit or install\\/uninstall modules","core":true,"versionStr":"1.1.8"},"17":{"summary":"Add a new page","core":true,"versionStr":"1.0.8"},"7":{"summary":"Edit a Page","core":true,"versionStr":"1.0.8"},"129":{"summary":"Provides image manipulation functions for image fields and rich text editors.","core":true,"versionStr":"1.2.0"},"121":{"summary":"Provides a link capability as used by some Fieldtype modules (like rich text editors).","core":true,"versionStr":"1.0.8"},"12":{"summary":"List pages in a hierarchal tree structure","core":true,"versionStr":"1.1.8"},"150":{"summary":"Admin tool for finding and listing pages by any property.","author":"Ryan Cramer","core":true,"versionStr":"0.2.4","permissions":{"page-lister":"Use Page Lister"}},"104":{"summary":"Provides a page search engine for admin use.","core":true,"versionStr":"1.0.6"},"14":{"summary":"Handles page sorting and moving for PageList","core":true,"versionStr":"1.0.0"},"109":{"summary":"Handles emptying of Page trash","core":true,"versionStr":"1.0.2"},"134":{"summary":"List, Edit and Add pages of a specific type","core":true,"versionStr":"1.0.1"},"83":{"summary":"All page views are routed through this Process","core":true,"versionStr":"1.0.4"},"136":{"summary":"Manage system permissions","core":true,"versionStr":"1.0.1"},"138":{"summary":"Enables user to change their password, email address and other settings that you define.","core":true,"versionStr":"1.0.2"},"159":{"summary":"Shows a list of recently edited pages in your admin.","author":"Ryan Cramer","href":"http:\\/\\/modules.processwire.com\\/","core":true,"versionStr":"0.0.2","permissions":{"page-edit-recent":"Can see recently edited pages"},"page":{"name":"recent-pages","parent":"page","title":"Recent"}},"68":{"summary":"Manage user roles and what permissions are attached","core":true,"versionStr":"1.0.3"},"47":{"summary":"List and edit the templates that control page output","core":true,"versionStr":"1.1.4"},"66":{"summary":"Manage system users","core":true,"versionStr":"1.0.7"},"125":{"summary":"Throttles the frequency of logins for a given account, helps to reduce dictionary attacks by introducing an exponential delay between logins.","core":true,"versionStr":"1.0.2"},"139":{"summary":"Manages system versions and upgrades.","core":true,"versionStr":"0.1.5"},"61":{"summary":"Entity encode ampersands, quotes (single and double) and greater-than\\/less-than signs using htmlspecialchars(str, ENT_QUOTES). It is recommended that you use this on all text\\/textarea fields except those using a rich text editor like TinyMCE or a markup language like Markdown.","core":true,"versionStr":"1.0.0"}}', '2010-04-08 03:10:10'),
('ModulesUninstalled.info', '{"AdminThemeReno":{"name":"AdminThemeReno","title":"Reno","version":17,"versionStr":"0.1.7","author":"Tom Reno (Renobird)","summary":"Admin theme for ProcessWire 2.5+ by Tom Reno (Renobird)","requiresVersions":{"AdminThemeDefault":[">=",0]},"autoload":"template=admin","created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"FieldtypeCache":{"name":"FieldtypeCache","title":"Cache","version":102,"versionStr":"1.0.2","summary":"Caches the values of other fields for fewer runtime queries. Can also be used to combine multiple text fields and have them all be searchable under the cached field name.","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"CommentFilterAkismet":{"name":"CommentFilterAkismet","title":"Comment Filter: Akismet","version":102,"versionStr":"1.0.2","summary":"Uses the Akismet service to identify comment spam. Module plugin for the Comments Fieldtype.","requiresVersions":{"FieldtypeComments":[">=",0]},"created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"FieldtypeComments":{"name":"FieldtypeComments","title":"Comments","version":107,"versionStr":"1.0.7","summary":"Field that stores user posted comments for a single Page","installs":["InputfieldCommentsAdmin"],"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"InputfieldCommentsAdmin":{"name":"InputfieldCommentsAdmin","title":"Comments Admin","version":104,"versionStr":"1.0.4","summary":"Provides an administrative interface for working with comments","requiresVersions":{"FieldtypeComments":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypeOptions":{"name":"FieldtypeOptions","title":"Select Options","version":1,"versionStr":"0.0.1","summary":"Field that stores single and multi select options.","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypePageTable":{"name":"FieldtypePageTable","title":"ProFields: Page Table","version":8,"versionStr":"0.0.8","summary":"A fieldtype containing a group of editable pages.","installs":["InputfieldPageTable"],"autoload":true,"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypeRepeater":{"name":"FieldtypeRepeater","title":"Repeater","version":105,"versionStr":"1.0.5","summary":"Maintains a collection of fields that are repeated for any number of times.","installs":["InputfieldRepeater"],"autoload":true,"created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"InputfieldRepeater":{"name":"InputfieldRepeater","title":"Repeater","version":105,"versionStr":"1.0.5","summary":"Repeats fields from another template. Provides the input for FieldtypeRepeater.","requiresVersions":{"FieldtypeRepeater":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypeSelector":{"name":"FieldtypeSelector","title":"Selector","version":13,"versionStr":"0.1.3","author":"Avoine + ProcessWire","summary":"Build a page finding selector visually.","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FileCompilerTags":{"name":"FileCompilerTags","title":"Tags File Compiler","version":1,"versionStr":"0.0.1","summary":"Enables {var} or {var.property} variables in markup sections of a file. Can be used with any API variable.","created":1472827686,"installed":false,"configurable":4,"namespace":"ProcessWire\\\\","core":true},"ImageSizerEngineIMagick":{"name":"ImageSizerEngineIMagick","title":"IMagick Image Sizer","version":1,"versionStr":"0.0.1","author":"Horst Nogajski","summary":"Upgrades image manipulations to use PHP\'s ImageMagick library when possible.","created":1472827686,"installed":false,"configurable":4,"namespace":"ProcessWire\\\\","core":true},"InputfieldPageAutocomplete":{"name":"InputfieldPageAutocomplete","title":"Page Auto Complete","version":111,"versionStr":"1.1.1","summary":"Multiple Page selection using auto completion and sorting capability. Intended for use as an input field for Page reference fields.","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"InputfieldPageTable":{"name":"InputfieldPageTable","title":"ProFields: Page Table","version":13,"versionStr":"0.1.3","summary":"Inputfield to accompany FieldtypePageTable","requiresVersions":{"FieldtypePageTable":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypePageTitleLanguage":{"name":"FieldtypePageTitleLanguage","title":"Page Title (Multi-Language)","version":100,"versionStr":"1.0.0","author":"Ryan Cramer","summary":"Field that stores a page title in multiple languages. Use this only if you want title inputs created for ALL languages on ALL pages. Otherwise create separate languaged-named title fields, i.e. title_fr, title_es, title_fi, etc. ","requiresVersions":{"LanguageSupportFields":[">=",0],"FieldtypeTextLanguage":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypeTextareaLanguage":{"name":"FieldtypeTextareaLanguage","title":"Textarea (Multi-language)","version":100,"versionStr":"1.0.0","summary":"Field that stores a multiple lines of text in multiple languages","requiresVersions":{"LanguageSupportFields":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"FieldtypeTextLanguage":{"name":"FieldtypeTextLanguage","title":"Text (Multi-language)","version":100,"versionStr":"1.0.0","summary":"Field that stores a single line of text in multiple languages","requiresVersions":{"LanguageSupportFields":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"LanguageSupport":{"name":"LanguageSupport","title":"Languages Support","version":103,"versionStr":"1.0.3","author":"Ryan Cramer","summary":"ProcessWire multi-language support.","installs":["ProcessLanguage","ProcessLanguageTranslator"],"autoload":true,"singular":true,"created":1472827686,"installed":false,"configurable":true,"namespace":"ProcessWire\\\\","core":true},"LanguageSupportFields":{"name":"LanguageSupportFields","title":"Languages Support - Fields","version":100,"versionStr":"1.0.0","author":"Ryan Cramer","summary":"Required to use multi-language fields.","requiresVersions":{"LanguageSupport":[">=",0]},"installs":["FieldtypePageTitleLanguage","FieldtypeTextareaLanguage","FieldtypeTextLanguage"],"autoload":true,"singular":true,"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"LanguageSupportPageNames":{"name":"LanguageSupportPageNames","title":"Languages Support - Page Names","version":9,"versionStr":"0.0.9","author":"Ryan Cramer","summary":"Required to use multi-language page names.","requiresVersions":{"LanguageSupport":[">=",0],"LanguageSupportFields":[">=",0]},"autoload":true,"singular":true,"created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"LanguageTabs":{"name":"LanguageTabs","title":"Languages Support - Tabs","version":114,"versionStr":"1.1.4","author":"adamspruijt, ryan","summary":"Organizes multi-language fields into tabs for a cleaner easier to use interface.","requiresVersions":{"LanguageSupport":[">=",0]},"autoload":"template=admin","singular":true,"created":1472827686,"installed":false,"configurable":4,"namespace":"ProcessWire\\\\","core":true},"ProcessLanguage":{"name":"ProcessLanguage","title":"Languages","version":103,"versionStr":"1.0.3","author":"Ryan Cramer","summary":"Manage system languages","icon":"language","requiresVersions":{"LanguageSupport":[">=",0]},"permission":"lang-edit","permissions":{"lang-edit":"Administer languages and static translation files"},"created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true,"useNavJSON":true},"ProcessLanguageTranslator":{"name":"ProcessLanguageTranslator","title":"Language Translator","version":101,"versionStr":"1.0.1","author":"Ryan Cramer","summary":"Provides language translation capabilities for ProcessWire core and modules.","requiresVersions":{"LanguageSupport":[">=",0]},"permission":"lang-edit","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"LazyCron":{"name":"LazyCron","title":"Lazy Cron","version":102,"versionStr":"1.0.2","summary":"Provides hooks that are automatically executed at various intervals. It is called \'lazy\' because it\'s triggered by a pageview, so the interval is guaranteed to be at least the time requested, rather than exactly the time requested. This is fine for most cases, but you can make it not lazy by connecting this to a real CRON job. See the module file for details. ","href":"http:\\/\\/processwire.com\\/talk\\/index.php\\/topic,284.0.html","autoload":true,"singular":true,"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"MarkupCache":{"name":"MarkupCache","title":"Markup Cache","version":101,"versionStr":"1.0.1","summary":"A simple way to cache segments of markup in your templates. ","href":"https:\\/\\/processwire.com\\/api\\/modules\\/markupcache\\/","autoload":true,"singular":true,"created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"MarkupPageFields":{"name":"MarkupPageFields","title":"Markup Page Fields","version":100,"versionStr":"1.0.0","summary":"Adds $page->renderFields() and $page->images->render() methods that return basic markup for output during development and debugging.","autoload":true,"singular":true,"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true,"permanent":true},"MarkupRSS":{"name":"MarkupRSS","title":"Markup RSS Feed","version":102,"versionStr":"1.0.2","summary":"Renders an RSS feed. Given a PageArray, renders an RSS feed of them.","created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"PageFrontEdit":{"name":"PageFrontEdit","title":"Front-End Page Editor","version":2,"versionStr":"0.0.2","author":"Ryan Cramer","summary":"Enables front-end editing of page fields.","icon":"cube","permissions":{"page-edit-front":"Use the front-end page editor"},"autoload":true,"created":1472827686,"installed":false,"configurable":"PageFrontEditConfig.php","namespace":"ProcessWire\\\\","core":true,"license":"MPL 2.0"},"PagePathHistory":{"name":"PagePathHistory","title":"Page Path History","version":2,"versionStr":"0.0.2","summary":"Keeps track of past URLs where pages have lived and automatically redirects (301 permament) to the new location whenever the past URL is accessed.","autoload":true,"singular":true,"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"PagePaths":{"name":"PagePaths","title":"Page Paths","version":1,"versionStr":"0.0.1","summary":"Enables page paths\\/urls to be queryable by selectors. Also offers potential for improved load performance. Builds an index at install (may take time on a large site). Currently supports only single languages sites.","autoload":true,"singular":true,"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"ProcessCommentsManager":{"name":"ProcessCommentsManager","title":"Comments","version":6,"versionStr":"0.0.6","author":"Ryan Cramer","summary":"Manage comments in your site outside of the page editor.","icon":"comments","requiresVersions":{"FieldtypeComments":[">=",0]},"permission":"comments-manager","permissions":{"comments-manager":"Use the comments manager"},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true,"page":{"name":"comments","parent":"setup","title":"Comments"},"nav":[{"url":"?go=approved","label":"Approved"},{"url":"?go=pending","label":"Pending"},{"url":"?go=spam","label":"Spam"},{"url":"?go=all","label":"All"}]},"ProcessForgotPassword":{"name":"ProcessForgotPassword","title":"Forgot Password","version":101,"versionStr":"1.0.1","summary":"Provides password reset\\/email capability for the Login process.","permission":"page-view","created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"ProcessPageClone":{"name":"ProcessPageClone","title":"Page Clone","version":103,"versionStr":"1.0.3","summary":"Provides ability to clone\\/copy\\/duplicate pages in the admin. Adds a \\"copy\\" option to all applicable pages in the PageList.","permission":"page-clone","permissions":{"page-clone":"Clone a page","page-clone-tree":"Clone a tree of pages"},"autoload":"template=admin","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true,"page":{"name":"clone","title":"Clone","parent":"page","status":1024}},"ProcessSessionDB":{"name":"ProcessSessionDB","title":"Sessions","version":3,"versionStr":"0.0.3","summary":"Enables you to browse active database sessions.","icon":"dashboard","requiresVersions":{"SessionHandlerDB":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"SessionHandlerDB":{"name":"SessionHandlerDB","title":"Session Handler Database","version":5,"versionStr":"0.0.5","summary":"Installing this module makes ProcessWire store sessions in the database rather than the file system. Note that this module will log you out after install or uninstall.","installs":["ProcessSessionDB"],"created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"FieldtypeNotifications":{"name":"FieldtypeNotifications","title":"Notifications","version":4,"versionStr":"0.0.4","summary":"Field that stores user notifications.","requiresVersions":{"SystemNotifications":[">=",0]},"created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"SystemNotifications":{"name":"SystemNotifications","title":"System Notifications","version":12,"versionStr":"0.1.2","summary":"Adds support for notifications in ProcessWire (currently in development)","icon":"bell","installs":["FieldtypeNotifications"],"autoload":true,"created":1472827686,"installed":false,"configurable":"SystemNotificationsConfig.php","namespace":"ProcessWire\\\\","core":true},"TextformatterMarkdownExtra":{"name":"TextformatterMarkdownExtra","title":"Markdown\\/Parsedown Extra","version":130,"versionStr":"1.3.0","summary":"Markdown\\/Parsedown extra lightweight markup language by Emanuil Rusev. Based on Markdown by John Gruber.","created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"TextformatterNewlineBR":{"name":"TextformatterNewlineBR","title":"Newlines to XHTML Line Breaks","version":100,"versionStr":"1.0.0","summary":"Converts newlines to XHTML line break <br \\/> tags. ","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"TextformatterNewlineUL":{"name":"TextformatterNewlineUL","title":"Newlines to Unordered List","version":100,"versionStr":"1.0.0","summary":"Converts newlines to <li> list items and surrounds in an <ul> unordered list. ","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"TextformatterPstripper":{"name":"TextformatterPstripper","title":"Paragraph Stripper","version":100,"versionStr":"1.0.0","summary":"Strips paragraph <p> tags that may have been applied by other text formatters before it. ","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true},"TextformatterSmartypants":{"name":"TextformatterSmartypants","title":"SmartyPants Typographer","version":152,"versionStr":"1.5.2","summary":"Smart typography for web sites, by Michel Fortin based on SmartyPants by John Gruber. If combined with Markdown, it should be applied AFTER Markdown.","created":1472827686,"installed":false,"namespace":"ProcessWire\\\\","core":true,"url":"http:\\/\\/michelf.com\\/projects\\/php-smartypants\\/typographer\\/"},"TextformatterStripTags":{"name":"TextformatterStripTags","title":"Strip Markup Tags","version":100,"versionStr":"1.0.0","summary":"Strips HTML\\/XHTML Markup Tags","created":1472827686,"installed":false,"configurable":3,"namespace":"ProcessWire\\\\","core":true},"Helloworld":{"name":"Helloworld","title":"Hello World","version":2,"versionStr":"0.0.2","summary":"An example module used for demonstration purposes. See the \\/site\\/modules\\/Helloworld.module file for details.","href":"http:\\/\\/processwire.com","icon":"smile-o","autoload":true,"singular":true,"created":1472952971,"installed":false}}', '2010-04-08 03:10:10'),
('Modules.site/modules/', 'Helloworld.module', '2010-04-08 03:10:10'),
('FileCompiler__65ed2ba6b1285ef821390d66cb23af12', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/admin.php","hash":"9636f854995462a4cb877cb1204bc2fe","size":467,"time":1472827686,"ns":"ProcessWire"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/admin.php","hash":"9636f854995462a4cb877cb1204bc2fe","size":467,"time":1472827686}}', '2010-04-08 03:10:10'),
('Permissions.names', '{"logs-edit":1014,"logs-view":1013,"page-delete":34,"page-edit":32,"page-edit-recent":1011,"page-lister":1006,"page-lock":54,"page-move":35,"page-sort":50,"page-template":51,"page-view":36,"profile-edit":53,"user-admin":52}', '2010-04-08 03:10:10'),
('Modules.info', '{"148":{"name":"AdminThemeDefault","title":"Default","version":14,"autoload":"template=admin","created":1472954036,"configurable":19,"namespace":"ProcessWire\\\\"},"97":{"name":"FieldtypeCheckbox","title":"Checkbox","version":101,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"28":{"name":"FieldtypeDatetime","title":"Datetime","version":104,"created":1472954036,"namespace":"ProcessWire\\\\"},"29":{"name":"FieldtypeEmail","title":"E-Mail","version":100,"created":1472954036,"namespace":"ProcessWire\\\\"},"106":{"name":"FieldtypeFieldsetClose","title":"Fieldset (Close)","version":100,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"105":{"name":"FieldtypeFieldsetOpen","title":"Fieldset (Open)","version":100,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"107":{"name":"FieldtypeFieldsetTabOpen","title":"Fieldset in Tab (Open)","version":100,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"6":{"name":"FieldtypeFile","title":"Files","version":104,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"89":{"name":"FieldtypeFloat","title":"Float","version":105,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"57":{"name":"FieldtypeImage","title":"Images","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"84":{"name":"FieldtypeInteger","title":"Integer","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"27":{"name":"FieldtypeModule","title":"Module Reference","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"4":{"name":"FieldtypePage","title":"Page Reference","version":103,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"111":{"name":"FieldtypePageTitle","title":"Page Title","version":100,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"133":{"name":"FieldtypePassword","title":"Password","version":101,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"3":{"name":"FieldtypeText","title":"Text","version":100,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"1":{"name":"FieldtypeTextarea","title":"Textarea","version":106,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"135":{"name":"FieldtypeURL","title":"URL","version":101,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"25":{"name":"InputfieldAsmSelect","title":"asmSelect","version":120,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"131":{"name":"InputfieldButton","title":"Button","version":100,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"37":{"name":"InputfieldCheckbox","title":"Checkbox","version":104,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"38":{"name":"InputfieldCheckboxes","title":"Checkboxes","version":107,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"155":{"name":"InputfieldCKEditor","title":"CKEditor","version":157,"installs":["MarkupHTMLPurifier"],"created":1472954036,"namespace":"ProcessWire\\\\"},"94":{"name":"InputfieldDatetime","title":"Datetime","version":105,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"80":{"name":"InputfieldEmail","title":"Email","version":101,"created":1472954036,"namespace":"ProcessWire\\\\"},"78":{"name":"InputfieldFieldset","title":"Fieldset","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"55":{"name":"InputfieldFile","title":"Files","version":124,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"90":{"name":"InputfieldFloat","title":"Float","version":103,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"30":{"name":"InputfieldForm","title":"Form","version":107,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"40":{"name":"InputfieldHidden","title":"Hidden","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"161":{"name":"InputfieldIcon","title":"Icon","version":2,"created":1472954067,"namespace":"ProcessWire\\\\"},"56":{"name":"InputfieldImage","title":"Images","version":119,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"85":{"name":"InputfieldInteger","title":"Integer","version":104,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"79":{"name":"InputfieldMarkup","title":"Markup","version":102,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"41":{"name":"InputfieldName","title":"Name","version":100,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"60":{"name":"InputfieldPage","title":"Page","version":106,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"15":{"name":"InputfieldPageListSelect","title":"Page List Select","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"137":{"name":"InputfieldPageListSelectMultiple","title":"Page List Select Multiple","version":102,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"86":{"name":"InputfieldPageName","title":"Page Name","version":106,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"112":{"name":"InputfieldPageTitle","title":"Page Title","version":102,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"122":{"name":"InputfieldPassword","title":"Password","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"39":{"name":"InputfieldRadios","title":"Radio Buttons","version":105,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"36":{"name":"InputfieldSelect","title":"Select","version":102,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"43":{"name":"InputfieldSelectMultiple","title":"Select Multiple","version":101,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"149":{"name":"InputfieldSelector","title":"Selector","version":27,"autoload":"template=admin","created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\"},"32":{"name":"InputfieldSubmit","title":"Submit","version":102,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"34":{"name":"InputfieldText","title":"Text","version":106,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"35":{"name":"InputfieldTextarea","title":"Textarea","version":103,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"108":{"name":"InputfieldURL","title":"URL","version":102,"created":1472954036,"namespace":"ProcessWire\\\\"},"116":{"name":"JqueryCore","title":"jQuery Core","version":183,"singular":true,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"151":{"name":"JqueryMagnific","title":"jQuery Magnific Popup","version":1,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\"},"103":{"name":"JqueryTableSorter","title":"jQuery Table Sorter Plugin","version":221,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\"},"117":{"name":"JqueryUI","title":"jQuery UI","version":196,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"45":{"name":"JqueryWireTabs","title":"jQuery Wire Tabs Plugin","version":107,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"67":{"name":"MarkupAdminDataTable","title":"Admin Data Table","version":107,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"156":{"name":"MarkupHTMLPurifier","title":"HTML Purifier","version":105,"created":1472954036,"namespace":"ProcessWire\\\\"},"113":{"name":"MarkupPageArray","title":"PageArray Markup","version":100,"autoload":true,"singular":true,"created":1472954036,"namespace":"ProcessWire\\\\"},"98":{"name":"MarkupPagerNav","title":"Pager (Pagination) Navigation","version":104,"created":1472954036,"namespace":"ProcessWire\\\\"},"114":{"name":"PagePermissions","title":"Page Permissions","version":105,"autoload":true,"singular":true,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"115":{"name":"PageRender","title":"Page Render","version":105,"autoload":true,"singular":true,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"48":{"name":"ProcessField","title":"Fields","version":112,"icon":"cube","permission":"field-admin","created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"87":{"name":"ProcessHome","title":"Admin Home","version":101,"permission":"page-view","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"76":{"name":"ProcessList","title":"List","version":101,"permission":"page-view","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"160":{"name":"ProcessLogger","title":"Logs","version":1,"icon":"tree","permission":"logs-view","singular":1,"created":1472954067,"namespace":"ProcessWire\\\\","useNavJSON":true},"10":{"name":"ProcessLogin","title":"Login","version":103,"permission":"page-view","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"50":{"name":"ProcessModule","title":"Modules","version":118,"permission":"module-admin","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true,"nav":[{"url":"?site#tab_site_modules","label":"Site","icon":"plug","navJSON":"navJSON\\/?site=1"},{"url":"?core#tab_core_modules","label":"Core","icon":"plug","navJSON":"navJSON\\/?core=1"},{"url":"?configurable#tab_configurable_modules","label":"Configure","icon":"gear","navJSON":"navJSON\\/?configurable=1"},{"url":"?install#tab_install_modules","label":"Install","icon":"sign-in","navJSON":"navJSON\\/?install=1"},{"url":"?reset=1","label":"Refresh","icon":"refresh"}]},"17":{"name":"ProcessPageAdd","title":"Page Add","version":108,"icon":"plus-circle","permission":"page-edit","created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"7":{"name":"ProcessPageEdit","title":"Page Edit","version":108,"icon":"edit","permission":"page-edit","singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"129":{"name":"ProcessPageEditImageSelect","title":"Page Edit Image","version":120,"permission":"page-edit","singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"121":{"name":"ProcessPageEditLink","title":"Page Edit Link","version":108,"icon":"link","permission":"page-edit","singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"12":{"name":"ProcessPageList","title":"Page List","version":118,"icon":"sitemap","permission":"page-edit","created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"150":{"name":"ProcessPageLister","title":"Lister","version":24,"icon":"search","permission":"page-lister","created":1472954036,"configurable":true,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"104":{"name":"ProcessPageSearch","title":"Page Search","version":106,"permission":"page-edit","singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"14":{"name":"ProcessPageSort","title":"Page Sort and Move","version":100,"permission":"page-edit","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"109":{"name":"ProcessPageTrash","title":"Page Trash","version":102,"singular":1,"created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"134":{"name":"ProcessPageType","title":"Page Type","version":101,"singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"83":{"name":"ProcessPageView","title":"Page View","version":104,"permission":"page-view","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true},"136":{"name":"ProcessPermission","title":"Permissions","version":101,"icon":"gear","permission":"permission-admin","singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"138":{"name":"ProcessProfile","title":"User Profile","version":102,"permission":"profile-edit","singular":1,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"159":{"name":"ProcessRecentPages","title":"Recent Pages","version":2,"icon":"clock-o","permission":"page-edit-recent","singular":1,"created":1472954061,"namespace":"ProcessWire\\\\","useNavJSON":true,"nav":[{"url":"?edited=1","label":"Edited","icon":"users","navJSON":"navJSON\\/?edited=1"},{"url":"?added=1","label":"Created","icon":"users","navJSON":"navJSON\\/?added=1&me=1"},{"url":"?edited=1&me=1","label":"Edited by me","icon":"user","navJSON":"navJSON\\/?edited=1&me=1"},{"url":"?added=1&me=1","label":"Created by me","icon":"user","navJSON":"navJSON\\/?added=1&me=1"},{"url":"another\\/","label":"Add another","icon":"plus-circle","navJSON":"anotherNavJSON\\/"}]},"68":{"name":"ProcessRole","title":"Roles","version":103,"icon":"gears","permission":"role-admin","created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"47":{"name":"ProcessTemplate","title":"Templates","version":114,"icon":"cubes","permission":"template-admin","created":1472954036,"namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"66":{"name":"ProcessUser","title":"Users","version":107,"icon":"group","permission":"user-admin","created":1472954036,"configurable":"ProcessUserConfig.php","namespace":"ProcessWire\\\\","permanent":true,"useNavJSON":true},"125":{"name":"SessionLoginThrottle","title":"Session Login Throttle","version":102,"autoload":"function","singular":true,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\"},"139":{"name":"SystemUpdater","title":"System Updater","version":15,"singular":true,"created":1472954036,"configurable":3,"namespace":"ProcessWire\\\\","permanent":true},"61":{"name":"TextformatterEntities","title":"HTML Entity Encoder (htmlspecialchars)","version":100,"created":1472954036,"namespace":"ProcessWire\\\\"}}', '2010-04-08 03:10:10'),
('FileCompiler__ea9b23cb383de5ca6f466aa26098cc67', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/home.php","hash":"ca1630e0a411f5bfeaa238f508aeac22","size":102,"time":1484572140,"ns":"ProcessWire"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/home.php","hash":"ca1630e0a411f5bfeaa238f508aeac22","size":102,"time":1484572140}}', '2010-04-08 03:10:10'),
('FileCompiler__cb136c5b3f2598e6f1365003650d4ab3', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/404.php","hash":"a8a6843d19f8d0c74b30dff7b57f4286","size":240,"time":1467868914,"ns":"\\\\"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/404.php","hash":"a6baa99386ad291ffb861f92403cbf84","size":417,"time":1467868914}}', '2010-04-08 03:10:10'),
('FileCompiler__dde7432d85e487f1eaca6cac9de2277d', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/rest\\/core\\/rest.php","hash":"2bde53116cdd212e7e344f7ab9d29140","size":1655,"time":1467868914,"ns":"Rest"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/rest\\/core\\/rest.php","hash":"2bde53116cdd212e7e344f7ab9d29140","size":1655,"time":1467868914}}', '2010-04-08 03:10:10'),
('FileCompiler__66c84dd1aa509f9d740a1832f4250174', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/voices.php","hash":"c51fb92390f696aa68252d033209c85c","size":5482,"time":1480822809,"ns":"ProcessWire"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/voices.php","hash":"c51fb92390f696aa68252d033209c85c","size":5482,"time":1480822809}}', '2010-04-08 03:10:10'),
('FileCompiler__a9e4cefd424935bf9d16529f89a34634', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/voice.php","hash":"3291d7b6ba97917382be3710d8acae46","size":1892,"time":1480747118,"ns":"ProcessWire"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/voice.php","hash":"3291d7b6ba97917382be3710d8acae46","size":1892,"time":1480747118}}', '2010-04-08 03:10:10'),
('FileCompiler__c367091cad40167de2059b0f2ddf365e', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/telegram-user.php","hash":"b890a412b060e1f02d7880c884d63ba6","size":1011,"time":1480745284,"ns":"ProcessWire"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/telegram-user.php","hash":"b890a412b060e1f02d7880c884d63ba6","size":1011,"time":1480745284}}', '2010-04-08 03:10:10');
INSERT INTO `caches` (`name`, `data`, `expires`) VALUES
('FileCompiler__87dc7b58ad49805408bab85876a30364', '{"source":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/templates\\/_init.php","hash":"052dc3ed2ebecdc99661669e9a314715","size":1006,"time":1484591206,"ns":"ProcessWire"},"target":{"file":"\\/Applications\\/MAMP\\/htdocs\\/voxgram\\/site\\/assets\\/cache\\/FileCompiler\\/site\\/templates\\/_init.php","hash":"052dc3ed2ebecdc99661669e9a314715","size":1006,"time":1484591206}}', '2010-04-08 03:10:10');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `fieldgroups`
--
CREATE TABLE `fieldgroups` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(250) CHARACTER SET ascii NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `fieldgroups`
--
INSERT INTO `fieldgroups` (`id`, `name`) VALUES
(2, 'admin'),
(3, 'user'),
(4, 'role'),
(5, 'permission'),
(1, 'home'),
(101, 'telegram-user'),
(97, 'voice'),
(98, 'voices'),
(99, '404'),
(100, 'stats');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `fieldgroups_fields`
--
CREATE TABLE `fieldgroups_fields` (
`fieldgroups_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`fields_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`sort` int(11) UNSIGNED NOT NULL DEFAULT '0',
`data` text
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `fieldgroups_fields`
--
INSERT INTO `fieldgroups_fields` (`fieldgroups_id`, `fields_id`, `sort`, `data`) VALUES
(2, 2, 1, NULL),
(3, 92, 1, NULL),
(4, 5, 0, NULL),
(5, 1, 0, NULL),
(3, 4, 2, NULL),
(1, 1, 0, NULL),
(2, 1, 0, NULL),
(3, 3, 0, NULL),
(97, 1, 0, NULL),
(97, 100, 1, '{"required":1,"requiredAttr":1}'),
(98, 1, 0, NULL),
(97, 99, 4, '{"label":"Emoji","required":1,"requiredAttr":1}'),
(97, 101, 5, NULL),
(97, 103, 6, NULL),
(99, 1, 0, NULL),
(100, 1, 0, NULL),
(97, 97, 2, '{"required":1,"requiredAttr":1}'),
(97, 98, 3, '{"required":1,"requiredAttr":1}'),
(100, 102, 1, NULL),
(101, 1, 0, '{"description":"User name for the telegram user","label":"Username","notes":"title"}'),
(101, 104, 1, NULL);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `fields`
--
CREATE TABLE `fields` (
`id` int(10) UNSIGNED NOT NULL,
`type` varchar(128) CHARACTER SET ascii NOT NULL,
`name` varchar(250) CHARACTER SET ascii NOT NULL,
`flags` int(11) NOT NULL DEFAULT '0',
`label` varchar(250) NOT NULL DEFAULT '',
`data` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `fields`
--
INSERT INTO `fields` (`id`, `type`, `name`, `flags`, `label`, `data`) VALUES
(1, 'FieldtypePageTitle', 'title', 13, 'Title', '{"required":1,"textformatters":["TextformatterEntities"],"size":0,"maxlength":255,"collapsed":0,"minlength":0,"showCount":0,"icon":"pencil"}'),
(2, 'FieldtypeModule', 'process', 25, 'Process', '{"description":"The process that is executed on this page. Since this is mostly used by ProcessWire internally, it is recommended that you don\'t change the value of this unless adding your own pages in the admin.","collapsed":1,"required":1,"moduleTypes":["Process"],"permanent":1}'),
(3, 'FieldtypePassword', 'pass', 24, 'Set Password', '{"collapsed":1,"size":50,"maxlength":128}'),
(5, 'FieldtypePage', 'permissions', 24, 'Permissions', '{"derefAsPage":0,"parent_id":31,"labelFieldName":"title","inputfield":"InputfieldCheckboxes"}'),
(4, 'FieldtypePage', 'roles', 24, 'Roles', '{"derefAsPage":0,"parent_id":30,"labelFieldName":"name","inputfield":"InputfieldCheckboxes","description":"User will inherit the permissions assigned to each role. You may assign multiple roles to a user. When accessing a page, the user will only inherit permissions from the roles that are also assigned to the page\'s template."}'),
(92, 'FieldtypeEmail', 'email', 9, 'E-Mail Address', '{"size":70,"maxlength":255}'),
(97, 'FieldtypeText', 'username', 0, 'Username', '{"description":"Who uploaded this sound","textformatters":["TextformatterEntities"],"collapsed":0,"minlength":0,"maxlength":2048,"showCount":0,"size":0,"tags":"voice","icon":"user","notes":"username","stripTags":1}'),
(98, 'FieldtypeText', 'fileId', 0, 'File Id', '{"notes":"fileId","textformatters":["TextformatterEntities"],"collapsed":0,"minlength":0,"maxlength":2048,"showCount":0,"size":0,"tags":"voice","icon":"volume-up","description":"Telegram File Id"}'),
(99, 'FieldtypeTextarea', 'about', 0, 'About', '{"notes":"about","textformatters":["TextformatterEntities"],"inputfieldClass":"InputfieldTextarea","contentType":0,"collapsed":0,"minlength":0,"maxlength":0,"showCount":0,"rows":5,"stripTags":1,"tags":"voice","icon":"file-o"}'),
(100, 'FieldtypeText', 'fileTitle', 0, 'File Title', '{"description":"Title given by the User","notes":"fileTitle","textformatters":["TextformatterEntities"],"collapsed":0,"minlength":0,"maxlength":2048,"showCount":0,"size":0,"stripTags":1,"tags":"voice","icon":"pencil-square"}'),
(101, 'FieldtypeText', 'tags', 0, 'Tags', '{"notes":"tags","textformatters":["TextformatterEntities"],"collapsed":0,"minlength":0,"maxlength":2048,"showCount":0,"size":0,"stripTags":1,"tags":"voice","icon":"tags"}'),
(102, 'FieldtypeFloat', 'totalVoiceFiles', 0, 'Total Voice Files', '{"description":"Total Voice Files Counter For Stats","precision":0,"zeroNotEmpty":0,"collapsed":0,"inputType":"number","size":10,"min":0,"tags":"stats","icon":"hand-spock-o"}'),
(103, 'FieldtypeCheckbox', 'havePublicAccess', 0, 'is Public?', '{"description":"Set the sound as private or public","notes":"havePublicAccess","collapsed":0,"tags":"Site","icon":"key"}'),
(104, 'FieldtypeText', 'usedEmojis', 0, 'Used Emojis', '{"description":"An Emoji List used by the user","notes":"usedEmojis","collapsed":0,"minlength":0,"maxlength":2048,"showCount":0,"size":0,"tags":"Site","icon":"smile-o"}');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_about`
--
CREATE TABLE `field_about` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` mediumtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_about`
--
INSERT INTO `field_about` (`pages_id`, `data`) VALUES
(1026, 'caca'),
(1027, '😞'),
(1028, '😔'),
(1029, '😭'),
(1030, '😞'),
(1032, '😅'),
(1033, '😡'),
(1034, '😃'),
(1035, '😄'),
(1036, '😄'),
(1037, '😄'),
(1038, '😃'),
(1039, '😄'),
(1040, '😄'),
(1041, '😄'),
(1042, '❤'),
(1043, '😏'),
(1044, '😏'),
(1045, '😏'),
(1046, '😏'),
(1047, '😏'),
(1048, '😏'),
(1049, '❤'),
(1050, '😉'),
(1051, '😃'),
(1052, '💋'),
(1053, '😱'),
(1054, '😝'),
(1055, '😖'),
(1056, '😱'),
(1057, '😱'),
(1058, '👌'),
(1059, '😚');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_email`
--
CREATE TABLE `field_email` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` varchar(250) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_email`
--
INSERT INTO `field_email` (`pages_id`, `data`) VALUES
(41, '[email protected]');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_fileid`
--
CREATE TABLE `field_fileid` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_fileid`
--
INSERT INTO `field_fileid` (`pages_id`, `data`) VALUES
(1026, 'AwADAQADxwEAAsRXygOg5rei38c20QI'),
(1027, 'AwADAQADBwIAAsRXygNrLQZbDbRLpgI'),
(1028, 'AwADAQADCQIAAsRXygMpxrPk2lXaqwI'),
(1029, 'AwADAQADCgIAAsRXygOqA1TV5M8SMgI'),
(1030, 'AwADAQADCwIAAsRXygOMcduKX2bANwI'),
(1032, 'AwADAQADDAIAAsRXygMbgvFdWPtkfAI'),
(1033, 'AwADAQADDQIAAsRXygNKqQF661FrswI'),
(1034, 'AwADAQADDgIAAsRXygMzHqgebALOwgI'),
(1035, 'AwADAQADEAIAAsRXygO8_0P4ZWYLvgI'),
(1036, 'AwADAQADEQIAAsRXygOgnhsFbUyfigI'),
(1037, 'AwADAQADFgIAAsRXygMY01AYQ8GF4QI'),
(1038, 'AwADAQADGAIAAsRXygNTCKYO5-KggQI'),
(1039, 'AwADAQADGwIAAsRXygM37LmSYeJ5uAI'),
(1040, 'AwADAQADHAIAAsRXygPnkKMRYzG69AI'),
(1041, 'AwADAQADHQIAAsRXygMn6pWoIAHJ9gI'),
(1042, 'AwADAQADKAIAAsRXygMJ48H0bCLnbAI'),
(1043, 'AwADAQADLQIAAsRXygNZnzc6LcLykwI'),
(1044, 'AwADAQADLgIAAsRXygN9ZFPuNXESZAI'),
(1045, 'AwADAQADLwIAAsRXygOt9F2ISQABUL0C'),
(1046, 'AwADAQADMAIAAsRXygOuh__IoELCXwI'),
(1047, 'AwADAQADMQIAAsRXygPnLcuugHmaygI'),
(1048, 'AwADAQADMwIAAsRXygMSepN3xHlifwI'),
(1049, 'AwADAQADOAIAAsRXygNG58k9WLj8FQI'),
(1050, 'AwADAQADPAIAAsRXygMygFrjAWy9-gI'),
(1051, 'AwADAQADPgIAAsRXygPQsSqsnmFnAAEC'),
(1052, 'AwADAQADQAIAAsRXygMf117SjZK5PgI'),
(1053, 'AwADAQADQgIAAsRXygP58mtaKxhS2wI'),
(1054, 'AwADAQADWAIAAsRXygOvPy5InUA8bgI'),
(1055, 'AwADAQADWgIAAsRXygOdewnU_bu6VwI'),
(1056, 'AwADAQADWwIAAsRXygO2XJKuRbh4YgI'),
(1057, 'AwADAQADXAIAAsRXygP5GdoCOdEe2gI'),
(1058, 'AwADAQADXQIAAsRXygP4zXv__NvYMAI'),
(1059, 'AwADAQADXgIAAsRXygMmvWB0Kv-ZAAEC');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_filetitle`
--
CREATE TABLE `field_filetitle` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_filetitle`
--
INSERT INTO `field_filetitle` (`pages_id`, `data`) VALUES
(1026, 'kkk'),
(1027, 'Caca'),
(1028, 'caca'),
(1029, 'caquita2'),
(1030, 'asdf'),
(1032, 'asdf'),
(1033, 'caca'),
(1034, 'caca'),
(1035, 'asdf'),
(1036, 'asdasd23'),
(1037, 'asdasdf'),
(1038, '1234'),
(1039, '1234adf'),
(1040, 'sdg'),
(1041, 'asdf'),
(1042, 'as😬😬'),
(1043, '🙈'),
(1044, '😘'),
(1045, '🐤'),
(1046, 'asdf'),
(1047, '😭'),
(1048, '23sd'),
(1049, '123123'),
(1050, '234234'),
(1051, 'asdfasf'),
(1052, '13asdf'),
(1053, '123asdg'),
(1054, 'Teo leo Si'),
(1055, '1'),
(1056, '4335'),
(1057, '4335'),
(1058, 'Yeah'),
(1059, '1234');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_havepublicaccess`
--
CREATE TABLE `field_havepublicaccess` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` tinyint(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_havepublicaccess`
--
INSERT INTO `field_havepublicaccess` (`pages_id`, `data`) VALUES
(1028, 1),
(1029, 1),
(1030, 1),
(1032, 1),
(1035, 1),
(1037, 1),
(1050, 1),
(1052, 1),
(1053, 1),
(1058, 1),
(1059, 1),
(1063, 1),
(1064, 1),
(1065, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_pass`
--
CREATE TABLE `field_pass` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` char(40) NOT NULL,
`salt` char(32) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=ascii;
--
-- Volcado de datos para la tabla `field_pass`
--
INSERT INTO `field_pass` (`pages_id`, `data`, `salt`) VALUES
(41, 'J6qk70qV1nPAlw2gCSybuUh8H4Y4Z/6', '$2y$11$pgGHYKQB8ghWeGMwEbCxXe'),
(40, '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_permissions`
--
CREATE TABLE `field_permissions` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` int(11) NOT NULL,
`sort` int(10) UNSIGNED NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_permissions`
--
INSERT INTO `field_permissions` (`pages_id`, `data`, `sort`) VALUES
(38, 32, 1),
(38, 34, 2),
(38, 35, 3),
(37, 36, 0),
(38, 36, 0),
(38, 50, 4),
(38, 51, 5),
(38, 52, 7),
(38, 53, 8),
(38, 54, 6);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_process`
--
CREATE TABLE `field_process` (
`pages_id` int(11) NOT NULL DEFAULT '0',
`data` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_process`
--
INSERT INTO `field_process` (`pages_id`, `data`) VALUES
(6, 17),
(3, 12),
(8, 12),
(9, 14),
(10, 7),
(11, 47),
(16, 48),
(300, 104),
(21, 50),
(29, 66),
(23, 10),
(304, 138),
(31, 136),
(22, 76),
(30, 68),
(303, 129),
(2, 87),
(302, 121),
(301, 109),
(28, 76),
(1007, 150),
(1010, 159),
(1012, 160);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_roles`
--
CREATE TABLE `field_roles` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` int(11) NOT NULL,
`sort` int(10) UNSIGNED NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_roles`
--
INSERT INTO `field_roles` (`pages_id`, `data`, `sort`) VALUES
(40, 37, 0),
(41, 37, 0),
(41, 38, 2);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_tags`
--
CREATE TABLE `field_tags` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_tags`
--
INSERT INTO `field_tags` (`pages_id`, `data`) VALUES
(1026, 'caca'),
(1027, 'sad'),
(1028, 'caquita'),
(1029, 'qweiqwe'),
(1030, 'asdf'),
(1032, 'asdf'),
(1033, 'cacasd'),
(1034, 'caca'),
(1035, 'asdf'),
(1036, 'asd'),
(1037, 'asdf'),
(1038, 'asdf'),
(1039, 'asf'),
(1040, 'asdf'),
(1041, 'asdf'),
(1042, 'oaisdj'),
(1043, 'klklk'),
(1044, 'klklk'),
(1045, 'klklk'),
(1046, 'asdf'),
(1047, 'asdf'),
(1048, 'asdf'),
(1049, 'asdf'),
(1050, 'asdf'),
(1054, 'chico migraña,alegale');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_title`
--
CREATE TABLE `field_title` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_title`
--
INSERT INTO `field_title` (`pages_id`, `data`) VALUES
(11, 'Templates'),
(16, 'Fields'),
(22, 'Setup'),
(3, 'Pages'),
(6, 'Add Page'),
(8, 'Tree'),
(9, 'Save Sort'),
(10, 'Edit'),
(21, 'Modules'),
(29, 'Users'),
(30, 'Roles'),
(2, 'Admin'),
(7, 'Trash'),
(27, '404 Not Found'),
(302, 'Insert Link'),
(23, 'Login'),
(304, 'Profile'),
(301, 'Empty Trash'),
(300, 'Search'),
(303, 'Insert Image'),
(28, 'Access'),
(31, 'Permissions'),
(32, 'Edit pages'),
(34, 'Delete pages'),
(35, 'Move pages (change parent)'),
(36, 'View pages'),
(50, 'Sort child pages'),
(51, 'Change templates on pages'),
(52, 'Administer users'),
(53, 'User can update profile/password'),
(54, 'Lock or unlock a page'),
(1, 'Home'),
(1006, 'Use Page Lister'),
(1007, 'Find'),
(1010, 'Recent'),
(1011, 'Can see recently edited pages'),
(1012, 'Logs'),
(1013, 'Can view system logs'),
(1014, 'Can manage system logs'),
(1015, 'Voices'),
(1033, 'caca'),
(1017, 'Stats'),
(1032, 'asdf'),
(1031, 'clsource'),
(1030, 'clsource - asdf'),
(1029, 'clsource - caquita2'),
(1028, 'clsource - caca'),
(1027, 'clsource - Caca'),
(1026, 'clsource - kkk'),
(1034, 'caca'),
(1035, 'asdf'),
(1036, 'asdasd23'),
(1037, 'asdasdf'),
(1038, '1234'),
(1039, '1234adf'),
(1040, 'sdg'),
(1041, 'asdf'),
(1042, 'as😬😬'),
(1043, '🙈'),
(1044, '😘'),
(1045, '🐤'),
(1046, 'asdf'),
(1047, '😭'),
(1048, '23sd'),
(1049, '123123'),
(1050, '234234'),
(1051, 'asdfasf'),
(1052, '13asdf'),
(1053, '123asdg'),
(1054, 'Teo leo Si'),
(1055, '1'),
(1056, '4335'),
(1057, '4335'),
(1058, 'Yeah'),
(1059, '1234');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_totalvoicefiles`
--
CREATE TABLE `field_totalvoicefiles` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_totalvoicefiles`
--
INSERT INTO `field_totalvoicefiles` (`pages_id`, `data`) VALUES
(1017, 27);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_usedemojis`
--
CREATE TABLE `field_usedemojis` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `field_username`
--
CREATE TABLE `field_username` (
`pages_id` int(10) UNSIGNED NOT NULL,
`data` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `field_username`
--
INSERT INTO `field_username` (`pages_id`, `data`) VALUES
(1026, 'clsource'),
(1027, 'clsource'),
(1028, 'clsource'),
(1029, 'clsource'),
(1030, 'clsource'),
(1032, 'clsource'),
(1033, 'clsource'),
(1034, 'clsource'),
(1035, 'clsource'),
(1036, 'clsource'),
(1037, 'clsource'),
(1038, 'clsource'),
(1039, 'clsource'),
(1040, 'clsource'),
(1041, 'clsource'),
(1042, 'clsource'),
(1043, 'clsource'),
(1044, 'clsource'),
(1045, 'clsource'),
(1046, 'clsource'),
(1047, 'clsource'),
(1048, 'clsource'),
(1049, 'clsource'),
(1050, 'clsource'),
(1051, 'clsource'),
(1052, 'clsource'),
(1053, 'clsource'),
(1054, 'clsource'),
(1055, 'clsource'),
(1056, 'clsource'),
(1057, 'clsource'),
(1058, 'clsource'),
(1059, 'clsource'),
(1063, 'clsource'),
(1064, 'clsource'),
(1065, 'clsource');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `modules`
--
CREATE TABLE `modules` (
`id` int(10) UNSIGNED NOT NULL,
`class` varchar(128) CHARACTER SET ascii NOT NULL,
`flags` int(11) NOT NULL DEFAULT '0',
`data` text NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `modules`
--
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES
(1, 'FieldtypeTextarea', 0, '', '2016-09-04 01:53:56'),
(2, 'FieldtypeNumber', 0, '', '2016-09-04 01:53:56'),
(3, 'FieldtypeText', 0, '', '2016-09-04 01:53:56'),
(4, 'FieldtypePage', 0, '', '2016-09-04 01:53:56'),
(30, 'InputfieldForm', 0, '', '2016-09-04 01:53:56'),
(6, 'FieldtypeFile', 0, '', '2016-09-04 01:53:56'),
(7, 'ProcessPageEdit', 1, '', '2016-09-04 01:53:56'),
(10, 'ProcessLogin', 0, '', '2016-09-04 01:53:56'),
(12, 'ProcessPageList', 0, '{"pageLabelField":"title","paginationLimit":25,"limit":50}', '2016-09-04 01:53:56'),
(121, 'ProcessPageEditLink', 1, '', '2016-09-04 01:53:56'),
(14, 'ProcessPageSort', 0, '', '2016-09-04 01:53:56'),
(15, 'InputfieldPageListSelect', 0, '', '2016-09-04 01:53:56'),
(117, 'JqueryUI', 1, '', '2016-09-04 01:53:56'),
(17, 'ProcessPageAdd', 0, '', '2016-09-04 01:53:56'),
(125, 'SessionLoginThrottle', 11, '', '2016-09-04 01:53:56'),
(122, 'InputfieldPassword', 0, '', '2016-09-04 01:53:56'),
(25, 'InputfieldAsmSelect', 0, '', '2016-09-04 01:53:56'),
(116, 'JqueryCore', 1, '', '2016-09-04 01:53:56'),
(27, 'FieldtypeModule', 0, '', '2016-09-04 01:53:56'),
(28, 'FieldtypeDatetime', 0, '', '2016-09-04 01:53:56'),
(29, 'FieldtypeEmail', 0, '', '2016-09-04 01:53:56'),
(108, 'InputfieldURL', 0, '', '2016-09-04 01:53:56'),
(32, 'InputfieldSubmit', 0, '', '2016-09-04 01:53:56'),
(33, 'InputfieldWrapper', 0, '', '2016-09-04 01:53:56'),
(34, 'InputfieldText', 0, '', '2016-09-04 01:53:56'),
(35, 'InputfieldTextarea', 0, '', '2016-09-04 01:53:56'),
(36, 'InputfieldSelect', 0, '', '2016-09-04 01:53:56'),
(37, 'InputfieldCheckbox', 0, '', '2016-09-04 01:53:56'),
(38, 'InputfieldCheckboxes', 0, '', '2016-09-04 01:53:56'),
(39, 'InputfieldRadios', 0, '', '2016-09-04 01:53:56'),
(40, 'InputfieldHidden', 0, '', '2016-09-04 01:53:56'),
(41, 'InputfieldName', 0, '', '2016-09-04 01:53:56'),
(43, 'InputfieldSelectMultiple', 0, '', '2016-09-04 01:53:56'),
(45, 'JqueryWireTabs', 0, '', '2016-09-04 01:53:56'),
(46, 'ProcessPage', 0, '', '2016-09-04 01:53:56'),
(47, 'ProcessTemplate', 0, '', '2016-09-04 01:53:56'),
(48, 'ProcessField', 0, '', '2016-09-04 01:53:56'),
(50, 'ProcessModule', 0, '', '2016-09-04 01:53:56'),
(114, 'PagePermissions', 3, '', '2016-09-04 01:53:56'),
(97, 'FieldtypeCheckbox', 1, '', '2016-09-04 01:53:56'),
(115, 'PageRender', 3, '{"clearCache":1}', '2016-09-04 01:53:56'),
(55, 'InputfieldFile', 0, '', '2016-09-04 01:53:56'),
(56, 'InputfieldImage', 0, '', '2016-09-04 01:53:56'),
(57, 'FieldtypeImage', 0, '', '2016-09-04 01:53:56'),
(60, 'InputfieldPage', 0, '{"inputfieldClasses":["InputfieldSelect","InputfieldSelectMultiple","InputfieldCheckboxes","InputfieldRadios","InputfieldAsmSelect","InputfieldPageListSelect","InputfieldPageListSelectMultiple"]}', '2016-09-04 01:53:56'),
(61, 'TextformatterEntities', 0, '', '2016-09-04 01:53:56'),
(66, 'ProcessUser', 0, '{"showFields":["name","email","roles"]}', '2016-09-04 01:53:56'),
(67, 'MarkupAdminDataTable', 0, '', '2016-09-04 01:53:56'),
(68, 'ProcessRole', 0, '{"showFields":["name"]}', '2016-09-04 01:53:56'),
(76, 'ProcessList', 0, '', '2016-09-04 01:53:56'),
(78, 'InputfieldFieldset', 0, '', '2016-09-04 01:53:56'),
(79, 'InputfieldMarkup', 0, '', '2016-09-04 01:53:56'),
(80, 'InputfieldEmail', 0, '', '2016-09-04 01:53:56'),
(89, 'FieldtypeFloat', 1, '', '2016-09-04 01:53:56'),
(83, 'ProcessPageView', 0, '', '2016-09-04 01:53:56'),
(84, 'FieldtypeInteger', 0, '', '2016-09-04 01:53:56'),
(85, 'InputfieldInteger', 0, '', '2016-09-04 01:53:56'),
(86, 'InputfieldPageName', 0, '', '2016-09-04 01:53:56'),
(87, 'ProcessHome', 0, '', '2016-09-04 01:53:56'),
(90, 'InputfieldFloat', 0, '', '2016-09-04 01:53:56'),
(94, 'InputfieldDatetime', 0, '', '2016-09-04 01:53:56'),
(98, 'MarkupPagerNav', 0, '', '2016-09-04 01:53:56'),
(129, 'ProcessPageEditImageSelect', 1, '', '2016-09-04 01:53:56'),
(103, 'JqueryTableSorter', 1, '', '2016-09-04 01:53:56'),
(104, 'ProcessPageSearch', 1, '{"searchFields":"title","displayField":"title path"}', '2016-09-04 01:53:56'),
(105, 'FieldtypeFieldsetOpen', 1, '', '2016-09-04 01:53:56'),
(106, 'FieldtypeFieldsetClose', 1, '', '2016-09-04 01:53:56'),
(107, 'FieldtypeFieldsetTabOpen', 1, '', '2016-09-04 01:53:56'),
(109, 'ProcessPageTrash', 1, '', '2016-09-04 01:53:56'),
(111, 'FieldtypePageTitle', 1, '', '2016-09-04 01:53:56'),
(112, 'InputfieldPageTitle', 0, '', '2016-09-04 01:53:56'),
(113, 'MarkupPageArray', 3, '', '2016-09-04 01:53:56'),
(131, 'InputfieldButton', 0, '', '2016-09-04 01:53:56'),
(133, 'FieldtypePassword', 1, '', '2016-09-04 01:53:56'),
(134, 'ProcessPageType', 1, '{"showFields":[]}', '2016-09-04 01:53:56'),
(135, 'FieldtypeURL', 1, '', '2016-09-04 01:53:56'),
(136, 'ProcessPermission', 1, '{"showFields":["name","title"]}', '2016-09-04 01:53:56'),
(137, 'InputfieldPageListSelectMultiple', 0, '', '2016-09-04 01:53:56'),
(138, 'ProcessProfile', 1, '{"profileFields":["pass","email"]}', '2016-09-04 01:53:56'),
(139, 'SystemUpdater', 1, '{"systemVersion":15,"coreVersion":"3.0.33"}', '2016-09-04 01:53:56'),
(148, 'AdminThemeDefault', 10, '{"colors":"warm"}', '2016-09-04 01:53:56'),
(149, 'InputfieldSelector', 10, '', '2016-09-04 01:53:56'),
(150, 'ProcessPageLister', 0, '', '2016-09-04 01:53:56'),
(151, 'JqueryMagnific', 1, '', '2016-09-04 01:53:56'),
(155, 'InputfieldCKEditor', 0, '', '2016-09-04 01:53:56'),
(156, 'MarkupHTMLPurifier', 0, '', '2016-09-04 01:53:56'),
(159, 'ProcessRecentPages', 1, '', '2016-09-04 01:54:21'),
(160, 'ProcessLogger', 1, '', '2016-09-04 01:54:27'),
(161, 'InputfieldIcon', 0, '', '2016-09-04 01:54:27');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pages`
--
CREATE TABLE `pages` (
`id` int(10) UNSIGNED NOT NULL,
`parent_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
`templates_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
`name` varchar(128) CHARACTER SET ascii NOT NULL,
`status` int(10) UNSIGNED NOT NULL DEFAULT '1',
`modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified_users_id` int(10) UNSIGNED NOT NULL DEFAULT '2',
`created` timestamp NOT NULL DEFAULT '2015-12-18 09:09:00',
`created_users_id` int(10) UNSIGNED NOT NULL DEFAULT '2',
`published` datetime DEFAULT NULL,
`sort` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `pages`
--
INSERT INTO `pages` (`id`, `parent_id`, `templates_id`, `name`, `status`, `modified`, `modified_users_id`, `created`, `created_users_id`, `published`, `sort`) VALUES
(1, 0, 1, 'home', 9, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(2, 1, 2, 'dojo', 1035, '2016-09-04 01:54:22', 40, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 5),
(3, 2, 2, 'page', 21, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(6, 3, 2, 'add', 21, '2016-09-04 01:54:35', 40, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(7, 1, 2, 'trash', 1039, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 6),
(8, 3, 2, 'list', 1045, '2016-09-04 01:54:36', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 1),
(9, 3, 2, 'sort', 1047, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 2),
(10, 3, 2, 'edit', 1045, '2016-09-04 01:54:36', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 3),
(11, 22, 2, 'template', 21, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(16, 22, 2, 'field', 21, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 2),
(21, 2, 2, 'module', 21, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 2),
(22, 2, 2, 'setup', 21, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 1),
(23, 2, 2, 'login', 1035, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 4),
(27, 1, 45, 'http404', 1035, '2016-09-04 02:32:02', 41, '2016-09-04 01:53:56', 3, '2016-09-03 22:53:56', 4),
(28, 2, 2, 'access', 13, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 3),
(29, 28, 2, 'users', 29, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(30, 28, 2, 'roles', 29, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 1),
(31, 28, 2, 'permissions', 29, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 2),
(32, 31, 5, 'page-edit', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 2),
(34, 31, 5, 'page-delete', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 3),
(35, 31, 5, 'page-move', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 4),
(36, 31, 5, 'page-view', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(37, 30, 4, 'guest', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(38, 30, 4, 'superuser', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 1),
(41, 29, 3, 'ninja', 1, '2017-01-16 18:26:50', 40, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 0),
(40, 29, 3, 'guest', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 1),
(50, 31, 5, 'page-sort', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 41, '2016-09-03 22:53:56', 5),
(51, 31, 5, 'page-template', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 41, '2016-09-03 22:53:56', 6),
(52, 31, 5, 'user-admin', 25, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 41, '2016-09-03 22:53:56', 10),
(53, 31, 5, 'profile-edit', 1, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 41, '2016-09-03 22:53:56', 13),
(54, 31, 5, 'page-lock', 1, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 41, '2016-09-03 22:53:56', 8),
(300, 3, 2, 'search', 1045, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 5),
(301, 3, 2, 'trash', 1047, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 5),
(302, 3, 2, 'link', 1041, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 6),
(303, 3, 2, 'image', 1041, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 2, '2016-09-03 22:53:56', 7),
(304, 2, 2, 'profile', 1025, '2016-09-04 01:53:56', 41, '2016-09-04 01:53:56', 41, '2016-09-03 22:53:56', 5),
(1006, 31, 5, 'page-lister', 1, '2016-09-04 01:53:56', 40, '2016-09-04 01:53:56', 40, '2016-09-03 22:53:56', 9),
(1007, 3, 2, 'lister', 1, '2016-09-04 01:53:56', 40, '2016-09-04 01:53:56', 40, '2016-09-03 22:53:56', 8),
(1010, 3, 2, 'recent-pages', 1, '2016-09-04 01:54:21', 40, '2016-09-04 01:54:21', 40, '2016-09-03 22:54:21', 9),
(1011, 31, 5, 'page-edit-recent', 1, '2016-09-04 01:54:21', 40, '2016-09-04 01:54:21', 40, '2016-09-03 22:54:21', 10),
(1012, 22, 2, 'logs', 1, '2016-09-04 01:54:27', 40, '2016-09-04 01:54:27', 40, '2016-09-03 22:54:27', 2),
(1013, 31, 5, 'logs-view', 1, '2016-09-04 01:54:27', 40, '2016-09-04 01:54:27', 40, '2016-09-03 22:54:27', 11),
(1014, 31, 5, 'logs-edit', 1, '2016-09-04 01:54:27', 40, '2016-09-04 01:54:27', 40, '2016-09-03 22:54:27', 12),
(1015, 1, 44, 'voices', 1, '2016-09-04 02:06:55', 41, '2016-09-04 02:06:55', 41, '2016-09-03 23:06:55', 3),
(1036, 7, 43, '1036.1031.2_asdasd23', 8193, '2016-11-24 00:59:50', 41, '2016-11-24 00:27:53', 40, '2016-11-23 21:27:53', 2),
(1017, 1, 46, 'stats', 1, '2016-12-04 02:15:51', 40, '2016-09-04 05:14:29', 41, '2016-09-04 02:14:36', 4),
(1035, 7, 43, '1035.1031.1_asdf', 8193, '2016-11-24 00:59:46', 41, '2016-11-24 00:27:21', 40, '2016-11-23 21:27:21', 1),
(1034, 7, 43, '1034.1031.0_clsource-caca', 8193, '2016-11-24 00:59:43', 41, '2016-11-23 23:37:33', 40, '2016-11-23 20:37:33', 0),
(1033, 7, 43, '1033.1031.1_clsource-caca', 8193, '2016-11-23 23:36:53', 41, '2016-11-23 23:34:06', 40, '2016-11-23 20:34:06', 1),
(1032, 7, 43, '1032.1031.0_clsource-asdf', 8193, '2016-11-23 23:36:49', 41, '2016-11-23 23:30:48', 40, '2016-11-23 20:30:48', 0),
(1030, 7, 43, '1030.1015.2_clsource-asdf', 8193, '2016-11-23 23:30:14', 41, '2016-11-23 23:17:54', 40, '2016-11-23 20:17:54', 2),
(1031, 1015, 47, 'clsource', 1, '2016-12-04 02:15:51', 40, '2016-11-23 23:30:48', 40, '2016-11-23 20:30:48', 1),
(1026, 7, 43, '1026.1015.0_clsource-kkk', 8193, '2016-11-23 22:56:22', 41, '2016-09-13 06:34:28', 40, '2016-09-13 03:34:28', 0),
(1027, 7, 43, '1027.1015.1_clsource-caca', 8193, '2016-11-23 22:56:35', 41, '2016-11-23 22:38:18', 40, '2016-11-23 19:38:18', 1),
(1028, 7, 43, '1028.1015.0_clsource-caca', 8193, '2016-11-23 23:33:01', 41, '2016-11-23 22:58:03', 40, '2016-11-23 19:58:03', 0),
(1029, 7, 43, '1029.1015.1_clsource-caquita2', 8193, '2016-11-23 23:30:10', 41, '2016-11-23 22:59:23', 40, '2016-11-23 19:59:23', 1),
(1037, 7, 43, '1037.1031.3_asdasdf', 8193, '2016-11-24 00:59:53', 41, '2016-11-24 00:41:56', 40, '2016-11-23 21:41:56', 3),
(1038, 7, 43, '1038.1031.4_1234', 8193, '2016-11-24 00:59:57', 41, '2016-11-24 00:42:47', 40, '2016-11-23 21:42:47', 4),
(1039, 7, 43, '1039.1031.5_1234adf', 8193, '2016-11-24 01:00:00', 41, '2016-11-24 00:59:27', 40, '2016-11-23 21:59:27', 5),
(1040, 7, 43, '1040.1031.0_sdg', 8193, '2016-11-24 15:13:24', 41, '2016-11-24 01:00:56', 40, '2016-11-23 22:00:56', 0),
(1041, 7, 43, '1041.1031.1_asdf', 8193, '2016-11-24 15:13:26', 41, '2016-11-24 01:01:16', 40, '2016-11-23 22:01:16', 1),
(1042, 7, 43, '1042.1031.0_as', 8193, '2016-11-24 15:39:22', 41, '2016-11-24 15:17:02', 40, '2016-11-24 12:17:02', 0),
(1043, 7, 43, '1043.1031.1_2016-11-24-12-35-47', 8193, '2016-11-24 15:39:26', 41, '2016-11-24 15:35:47', 40, '2016-11-24 12:35:47', 1),
(1044, 7, 43, '1044.1031.2_2016-11-24-12-36-00', 8193, '2016-11-24 15:39:30', 41, '2016-11-24 15:36:00', 40, '2016-11-24 12:36:00', 2),
(1045, 7, 43, '1045.1031.3_2016-11-24-12-38-37', 8193, '2016-12-01 02:59:45', 41, '2016-11-24 15:38:37', 40, '2016-11-24 12:38:37', 3),
(1046, 7, 43, '1046.1031.1_asdf', 9217, '2016-12-01 02:59:39', 41, '2016-11-24 15:41:07', 40, '2016-11-24 12:41:07', 1),
(1047, 7, 43, '1047.1031.2_2016-11-24-12-42-38', 8193, '2016-12-01 02:59:42', 41, '2016-11-24 15:42:38', 40, '2016-11-24 12:42:38', 2),
(1048, 7, 43, '1048.1031.3_23sd', 8193, '2016-12-01 02:59:49', 41, '2016-11-24 15:50:17', 40, '2016-11-24 12:50:17', 3),
(1049, 7, 43, '1049.1031.4_123123', 8193, '2016-12-01 02:59:52', 41, '2016-11-24 16:18:14', 40, '2016-11-24 13:18:14', 4),
(1050, 7, 43, '1050.1031.5_234234', 8193, '2016-12-01 02:59:55', 41, '2016-11-24 16:20:12', 40, '2016-11-24 13:20:12', 5),
(1051, 7, 43, '1051.1031.6_asdfasf', 8193, '2016-12-01 02:59:59', 41, '2016-11-24 16:59:48', 40, '2016-11-24 13:59:48', 6),
(1052, 7, 43, '1052.1031.7_13asdf', 8193, '2016-12-01 03:00:02', 41, '2016-11-24 18:53:40', 40, '2016-11-24 15:53:40', 7),
(1053, 7, 43, '1053.1031.8_123asdg', 8193, '2016-12-01 03:00:07', 41, '2016-11-24 18:55:09', 40, '2016-11-24 15:55:09', 8),
(1054, 7, 43, '1054.1031.0_teo_leo_si', 8193, '2016-12-01 03:06:58', 41, '2016-12-01 03:02:55', 40, '2016-12-01 00:02:55', 0),
(1055, 7, 43, '1055.1031.0_1', 8193, '2016-12-01 03:19:12', 41, '2016-12-01 03:09:21', 40, '2016-12-01 00:09:21', 0),
(1056, 7, 43, '1056.1031.1_4335', 8193, '2016-12-01 03:19:10', 41, '2016-12-01 03:17:42', 40, '2016-12-01 00:17:42', 1),
(1057, 7, 43, '1057.1031.0_4335', 8193, '2016-12-01 03:50:12', 41, '2016-12-01 03:19:23', 40, '2016-12-01 00:19:23', 0),
(1058, 7, 43, '1058.1031.1_yeah', 8193, '2016-12-01 03:50:17', 41, '2016-12-01 03:22:32', 40, '2016-12-01 00:22:32', 1),
(1059, 7, 43, '1059.1031.2_1234', 8193, '2016-12-01 03:50:20', 41, '2016-12-01 03:26:58', 40, '2016-12-01 00:26:58', 2),
(1063, 1031, 43, '2016-12-03-23-09-11', 1, '2016-12-04 02:09:11', 40, '2016-12-04 02:09:11', 40, '2016-12-03 23:09:11', 0),
(1064, 1031, 43, '2016-12-03-23-13-23', 1, '2016-12-04 02:13:23', 40, '2016-12-04 02:13:23', 40, '2016-12-03 23:13:23', 1),
(1065, 1031, 43, '2016-12-03-23-15-51', 1, '2016-12-04 02:15:51', 40, '2016-12-04 02:15:51', 40, '2016-12-03 23:15:51', 2);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pages_access`
--
CREATE TABLE `pages_access` (
`pages_id` int(11) NOT NULL,
`templates_id` int(11) NOT NULL,
`ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `pages_access`
--
INSERT INTO `pages_access` (`pages_id`, `templates_id`, `ts`) VALUES
(37, 2, '2016-09-04 01:53:56'),
(38, 2, '2016-09-04 01:53:56'),
(32, 2, '2016-09-04 01:53:56'),
(34, 2, '2016-09-04 01:53:56'),
(35, 2, '2016-09-04 01:53:56'),
(36, 2, '2016-09-04 01:53:56'),
(50, 2, '2016-09-04 01:53:56'),
(51, 2, '2016-09-04 01:53:56'),
(52, 2, '2016-09-04 01:53:56'),
(53, 2, '2016-09-04 01:53:56'),
(54, 2, '2016-09-04 01:53:56'),
(1006, 2, '2016-09-04 01:53:56'),
(1011, 2, '2016-09-04 01:54:21'),
(1013, 2, '2016-09-04 01:54:27'),
(1014, 2, '2016-09-04 01:54:27'),
(1015, 1, '2016-09-04 02:06:55'),
(1034, 2, '2016-11-24 00:59:43'),
(27, 1, '2016-09-04 02:32:02'),
(1017, 1, '2016-09-04 05:14:29'),
(1033, 2, '2016-11-23 23:36:53'),
(1032, 2, '2016-11-23 23:36:49'),
(1031, 1, '2016-11-23 23:30:48'),
(1030, 2, '2016-11-23 23:30:14'),
(1029, 2, '2016-11-23 23:30:10'),
(1028, 2, '2016-11-23 23:33:01'),
(1027, 2, '2016-11-23 22:56:35'),
(1026, 2, '2016-11-23 22:56:22'),
(1035, 2, '2016-11-24 00:59:46'),
(1036, 2, '2016-11-24 00:59:50'),
(1037, 2, '2016-11-24 00:59:53'),
(1038, 2, '2016-11-24 00:59:57'),
(1039, 2, '2016-11-24 01:00:00'),
(1040, 2, '2016-11-24 15:13:24'),
(1041, 2, '2016-11-24 15:13:26'),
(1042, 2, '2016-11-24 15:39:22'),
(1043, 2, '2016-11-24 15:39:26'),
(1044, 2, '2016-11-24 15:39:30'),
(1045, 2, '2016-12-01 02:59:46'),
(1046, 2, '2016-12-01 02:59:39'),
(1047, 2, '2016-12-01 02:59:42'),
(1048, 2, '2016-12-01 02:59:49'),
(1049, 2, '2016-12-01 02:59:52'),
(1050, 2, '2016-12-01 02:59:55'),
(1051, 2, '2016-12-01 02:59:59'),
(1052, 2, '2016-12-01 03:00:02'),
(1053, 2, '2016-12-01 03:00:07'),
(1054, 2, '2016-12-01 03:06:58'),
(1055, 2, '2016-12-01 03:19:12'),
(1056, 2, '2016-12-01 03:19:10'),
(1057, 2, '2016-12-01 03:50:12'),
(1058, 2, '2016-12-01 03:50:17'),
(1059, 2, '2016-12-01 03:50:20'),
(1063, 1, '2016-12-04 02:09:11'),
(1064, 1, '2016-12-04 02:13:23'),
(1065, 1, '2016-12-04 02:15:51');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pages_parents`
--
CREATE TABLE `pages_parents` (
`pages_id` int(10) UNSIGNED NOT NULL,
`parents_id` int(10) UNSIGNED NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `pages_parents`
--
INSERT INTO `pages_parents` (`pages_id`, `parents_id`) VALUES
(2, 1),
(3, 1),
(3, 2),
(22, 1),
(22, 2),
(28, 1),
(28, 2),
(29, 1),
(29, 2),
(29, 28),
(30, 1),
(30, 2),
(30, 28),