-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordpress.sql
1065 lines (1039 loc) · 291 KB
/
wordpress.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
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 100121
Source Host : localhost:3306
Source Schema : wordpress
Target Server Type : MySQL
Target Server Version : 100121
File Encoding : 65001
Date: 10/08/2018 02:22:31
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for wp_commentmeta
-- ----------------------------
DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
PRIMARY KEY (`meta_id`) USING BTREE,
INDEX `comment_id`(`comment_id`) USING BTREE,
INDEX `meta_key`(`meta_key`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Table structure for wp_comments
-- ----------------------------
DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime(0) NOT NULL,
`comment_date_gmt` datetime(0) NOT NULL,
`comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`) USING BTREE,
INDEX `comment_post_ID`(`comment_post_ID`) USING BTREE,
INDEX `comment_approved_date_gmt`(`comment_approved`, `comment_date_gmt`) USING BTREE,
INDEX `comment_date_gmt`(`comment_date_gmt`) USING BTREE,
INDEX `comment_parent`(`comment_parent`) USING BTREE,
INDEX `comment_author_email`(`comment_author_email`(10)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_comments
-- ----------------------------
INSERT INTO `wp_comments` VALUES (1, 1, 'A WordPress Commenter', '[email protected]', 'https://wordpress.org/', '', '2018-07-28 03:57:23', '2018-07-28 03:57:23', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.', 0, '1', '', '', 0, 0);
-- ----------------------------
-- Table structure for wp_links
-- ----------------------------
DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE `wp_links` (
`link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime(0) NOT NULL,
`link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`) USING BTREE,
INDEX `link_visible`(`link_visible`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Table structure for wp_options
-- ----------------------------
DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE `wp_options` (
`option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`) USING BTREE,
UNIQUE INDEX `option_name`(`option_name`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 817 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_options
-- ----------------------------
INSERT INTO `wp_options` VALUES (1, 'siteurl', 'http://localhost/wordpress', 'yes');
INSERT INTO `wp_options` VALUES (2, 'home', 'http://localhost/wordpress', 'yes');
INSERT INTO `wp_options` VALUES (3, 'blogname', 'discord', 'yes');
INSERT INTO `wp_options` VALUES (4, 'blogdescription', 'Just another WordPress site', 'yes');
INSERT INTO `wp_options` VALUES (5, 'users_can_register', '0', 'yes');
INSERT INTO `wp_options` VALUES (6, 'admin_email', '[email protected]', 'yes');
INSERT INTO `wp_options` VALUES (7, 'start_of_week', '1', 'yes');
INSERT INTO `wp_options` VALUES (8, 'use_balanceTags', '0', 'yes');
INSERT INTO `wp_options` VALUES (9, 'use_smilies', '1', 'yes');
INSERT INTO `wp_options` VALUES (10, 'require_name_email', '1', 'yes');
INSERT INTO `wp_options` VALUES (11, 'comments_notify', '1', 'yes');
INSERT INTO `wp_options` VALUES (12, 'posts_per_rss', '10', 'yes');
INSERT INTO `wp_options` VALUES (13, 'rss_use_excerpt', '1', 'yes');
INSERT INTO `wp_options` VALUES (14, 'mailserver_url', 'mail.example.com', 'yes');
INSERT INTO `wp_options` VALUES (15, 'mailserver_login', '[email protected]', 'yes');
INSERT INTO `wp_options` VALUES (16, 'mailserver_pass', 'password', 'yes');
INSERT INTO `wp_options` VALUES (17, 'mailserver_port', '110', 'yes');
INSERT INTO `wp_options` VALUES (18, 'default_category', '1', 'yes');
INSERT INTO `wp_options` VALUES (19, 'default_comment_status', 'open', 'yes');
INSERT INTO `wp_options` VALUES (20, 'default_ping_status', 'open', 'yes');
INSERT INTO `wp_options` VALUES (21, 'default_pingback_flag', '1', 'yes');
INSERT INTO `wp_options` VALUES (22, 'posts_per_page', '2', 'yes');
INSERT INTO `wp_options` VALUES (23, 'date_format', 'F j, Y', 'yes');
INSERT INTO `wp_options` VALUES (24, 'time_format', 'g:i a', 'yes');
INSERT INTO `wp_options` VALUES (25, 'links_updated_date_format', 'F j, Y g:i a', 'yes');
INSERT INTO `wp_options` VALUES (26, 'comment_moderation', '0', 'yes');
INSERT INTO `wp_options` VALUES (27, 'moderation_notify', '1', 'yes');
INSERT INTO `wp_options` VALUES (28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes');
INSERT INTO `wp_options` VALUES (29, 'rewrite_rules', 'a:107:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:41:\"wp_show_posts/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"wp_show_posts/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"wp_show_posts/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wp_show_posts/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wp_show_posts/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"wp_show_posts/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"wp_show_posts/([^/]+)/embed/?$\";s:46:\"index.php?wp_show_posts=$matches[1]&embed=true\";s:34:\"wp_show_posts/([^/]+)/trackback/?$\";s:40:\"index.php?wp_show_posts=$matches[1]&tb=1\";s:42:\"wp_show_posts/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?wp_show_posts=$matches[1]&paged=$matches[2]\";s:49:\"wp_show_posts/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?wp_show_posts=$matches[1]&cpage=$matches[2]\";s:38:\"wp_show_posts/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?wp_show_posts=$matches[1]&page=$matches[2]\";s:30:\"wp_show_posts/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"wp_show_posts/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"wp_show_posts/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"wp_show_posts/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"wp_show_posts/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"wp_show_posts/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=73&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'yes');
INSERT INTO `wp_options` VALUES (30, 'hack_file', '0', 'yes');
INSERT INTO `wp_options` VALUES (31, 'blog_charset', 'UTF-8', 'yes');
INSERT INTO `wp_options` VALUES (32, 'moderation_keys', '', 'no');
INSERT INTO `wp_options` VALUES (33, 'active_plugins', 'a:3:{i:0;s:25:\"pagination/pagination.php\";i:1;s:56:\"wp-front-end-login-and-register/wp-mp-register-login.php\";i:2;s:31:\"wp-show-posts/wp-show-posts.php\";}', 'yes');
INSERT INTO `wp_options` VALUES (34, 'category_base', '', 'yes');
INSERT INTO `wp_options` VALUES (35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes');
INSERT INTO `wp_options` VALUES (36, 'comment_max_links', '2', 'yes');
INSERT INTO `wp_options` VALUES (37, 'gmt_offset', '0', 'yes');
INSERT INTO `wp_options` VALUES (38, 'default_email_category', '1', 'yes');
INSERT INTO `wp_options` VALUES (39, 'recently_edited', 'a:5:{i:0;s:64:\"C:\\xampp\\htdocs\\wordpress/wp-content/themes/ribosome/content.php\";i:1;s:62:\"C:\\xampp\\htdocs\\wordpress/wp-content/themes/ribosome/style.css\";i:2;s:64:\"C:\\xampp\\htdocs\\wordpress/wp-content/plugins/akismet/akismet.php\";i:4;s:96:\"C:\\xampp\\htdocs\\wordpress/wp-content/themes/ribosome/css/font-awesome-4.7.0/css/font-awesome.css\";i:5;s:63:\"C:\\xampp\\htdocs\\wordpress/wp-content/themes/ribosome/css/ie.css\";}', 'no');
INSERT INTO `wp_options` VALUES (40, 'template', 'ribosome', 'yes');
INSERT INTO `wp_options` VALUES (41, 'stylesheet', 'ribosome', 'yes');
INSERT INTO `wp_options` VALUES (42, 'comment_whitelist', '1', 'yes');
INSERT INTO `wp_options` VALUES (43, 'blacklist_keys', '', 'no');
INSERT INTO `wp_options` VALUES (44, 'comment_registration', '0', 'yes');
INSERT INTO `wp_options` VALUES (45, 'html_type', 'text/html', 'yes');
INSERT INTO `wp_options` VALUES (46, 'use_trackback', '0', 'yes');
INSERT INTO `wp_options` VALUES (47, 'default_role', 'subscriber', 'yes');
INSERT INTO `wp_options` VALUES (48, 'db_version', '38590', 'yes');
INSERT INTO `wp_options` VALUES (49, 'uploads_use_yearmonth_folders', '1', 'yes');
INSERT INTO `wp_options` VALUES (50, 'upload_path', '', 'yes');
INSERT INTO `wp_options` VALUES (51, 'blog_public', '1', 'yes');
INSERT INTO `wp_options` VALUES (52, 'default_link_category', '2', 'yes');
INSERT INTO `wp_options` VALUES (53, 'show_on_front', 'page', 'yes');
INSERT INTO `wp_options` VALUES (54, 'tag_base', '', 'yes');
INSERT INTO `wp_options` VALUES (55, 'show_avatars', '1', 'yes');
INSERT INTO `wp_options` VALUES (56, 'avatar_rating', 'G', 'yes');
INSERT INTO `wp_options` VALUES (57, 'upload_url_path', '', 'yes');
INSERT INTO `wp_options` VALUES (58, 'thumbnail_size_w', '150', 'yes');
INSERT INTO `wp_options` VALUES (59, 'thumbnail_size_h', '150', 'yes');
INSERT INTO `wp_options` VALUES (60, 'thumbnail_crop', '1', 'yes');
INSERT INTO `wp_options` VALUES (61, 'medium_size_w', '300', 'yes');
INSERT INTO `wp_options` VALUES (62, 'medium_size_h', '300', 'yes');
INSERT INTO `wp_options` VALUES (63, 'avatar_default', 'mystery', 'yes');
INSERT INTO `wp_options` VALUES (64, 'large_size_w', '1024', 'yes');
INSERT INTO `wp_options` VALUES (65, 'large_size_h', '1024', 'yes');
INSERT INTO `wp_options` VALUES (66, 'image_default_link_type', 'none', 'yes');
INSERT INTO `wp_options` VALUES (67, 'image_default_size', '', 'yes');
INSERT INTO `wp_options` VALUES (68, 'image_default_align', '', 'yes');
INSERT INTO `wp_options` VALUES (69, 'close_comments_for_old_posts', '0', 'yes');
INSERT INTO `wp_options` VALUES (70, 'close_comments_days_old', '14', 'yes');
INSERT INTO `wp_options` VALUES (71, 'thread_comments', '1', 'yes');
INSERT INTO `wp_options` VALUES (72, 'thread_comments_depth', '5', 'yes');
INSERT INTO `wp_options` VALUES (73, 'page_comments', '0', 'yes');
INSERT INTO `wp_options` VALUES (74, 'comments_per_page', '50', 'yes');
INSERT INTO `wp_options` VALUES (75, 'default_comments_page', 'newest', 'yes');
INSERT INTO `wp_options` VALUES (76, 'comment_order', 'asc', 'yes');
INSERT INTO `wp_options` VALUES (77, 'sticky_posts', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES (78, 'widget_categories', 'a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (79, 'widget_text', 'a:11:{i:2;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday—Friday: 9:00AM–5:00PM\nSaturday & Sunday: 11:00AM–3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:4:{s:5:\"title\";s:6:\"footer\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:8;a:4:{s:5:\"title\";s:8:\"discord1\";s:4:\"text\";s:606:\"<div>\r\n\r\n \r\n<div class=\"widget-channel\">\r\n<div class=\"widget-channel-name\"><center>📞Public Talk📞</center></div>\r\n \r\n\r\n</div>\r\n<center></center><center>🗣Private Talk🗣</center> \r\n<div class=\"widget-channel\">\r\n<div class=\"widget-channel-name\"><center></center><center>🎶Public Music🎶</center></div>\r\n</div>\r\n \r\n<div class=\"widget-channel\">\r\n<div class=\"widget-channel-name\"><center></center><center>💤AFK💤</center><center></center></div>\r\n \r\n\r\n</div>\r\n</div>\r\n<div>\r\n<button style=\"margin-left: 283px;\r\n margin-bottom:10px;\"><a href=\"#\">connect</a></button>\r\n\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:9;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:11;a:4:{s:5:\"title\";s:8:\"discord2\";s:4:\"text\";s:233:\"<center><ol>\r\n discord two<br><br><br>\r\n discord two<br><br><br>\r\n discord two<br><br><br>\r\n discord two\r\n</ol></center><br><br><br>\r\n<button style=\"margin-left: 283px;\r\n margin-bottom:10px;\"><a href=\"#\">connect</a></button>\r\n\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:12;a:4:{s:5:\"title\";s:8:\"discord3\";s:4:\"text\";s:141:\"<ul>\r\n <li>discord three</li>\r\n <li>discord three</li>\r\n <li>discord three</li>\r\n <li>discord three</li>\r\n <li>discord three</li>\r\n</ul>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;i:14;a:4:{s:5:\"title\";s:7:\"DISCORD\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}}', 'yes');
INSERT INTO `wp_options` VALUES (80, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (81, 'uninstall_plugins', 'a:1:{s:25:\"pagination/pagination.php\";s:20:\"pgntn_delete_options\";}', 'no');
INSERT INTO `wp_options` VALUES (82, 'timezone_string', '', 'yes');
INSERT INTO `wp_options` VALUES (83, 'page_for_posts', '8', 'yes');
INSERT INTO `wp_options` VALUES (84, 'page_on_front', '73', 'yes');
INSERT INTO `wp_options` VALUES (85, 'default_post_format', '0', 'yes');
INSERT INTO `wp_options` VALUES (86, 'link_manager_enabled', '0', 'yes');
INSERT INTO `wp_options` VALUES (87, 'finished_splitting_shared_terms', '1', 'yes');
INSERT INTO `wp_options` VALUES (88, 'site_icon', '32', 'yes');
INSERT INTO `wp_options` VALUES (89, 'medium_large_size_w', '768', 'yes');
INSERT INTO `wp_options` VALUES (90, 'medium_large_size_h', '0', 'yes');
INSERT INTO `wp_options` VALUES (91, 'wp_page_for_privacy_policy', '3', 'yes');
INSERT INTO `wp_options` VALUES (92, 'initial_db_version', '38590', 'yes');
INSERT INTO `wp_options` VALUES (93, 'wp_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes');
INSERT INTO `wp_options` VALUES (94, 'fresh_site', '0', 'yes');
INSERT INTO `wp_options` VALUES (95, 'widget_search', 'a:4:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:3;a:1:{s:5:\"title\";s:6:\"Search\";}i:4;a:1:{s:5:\"title\";s:6:\"Search\";}}', 'yes');
INSERT INTO `wp_options` VALUES (96, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (97, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (98, 'widget_archives', 'a:4:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES (99, 'widget_meta', 'a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:4;a:1:{s:5:\"title\";s:5:\"text1\";}}', 'yes');
INSERT INTO `wp_options` VALUES (100, 'sidebars_widgets', 'a:5:{s:19:\"wp_inactive_widgets\";a:16:{i:0;s:6:\"text-9\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:12:\"categories-2\";i:5;s:14:\"recent-posts-2\";i:6;s:17:\"recent-comments-2\";i:7;s:6:\"text-5\";i:8;s:8:\"search-4\";i:9;s:6:\"text-2\";i:10;s:8:\"search-3\";i:11;s:6:\"text-3\";i:12;s:6:\"text-4\";i:13;s:6:\"text-6\";i:14;s:12:\"categories-3\";i:15;s:10:\"nav_menu-2\";}s:9:\"sidebar-1\";a:2:{i:0;s:6:\"text-8\";i:1;s:7:\"text-11\";}s:12:\"wt-sub-title\";a:0:{}s:11:\"wt-post-end\";a:0:{}s:13:\"array_version\";i:3;}', 'yes');
INSERT INTO `wp_options` VALUES (101, 'widget_pages', 'a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES (102, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (103, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (104, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (105, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (106, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (107, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (108, 'widget_nav_menu', 'a:3:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES (109, 'widget_custom_html', 'a:2:{s:12:\"_multiwidget\";i:1;i:3;a:2:{s:5:\"title\";s:2:\"fg\";s:7:\"content\";s:170:\" 📞Public Talk📞\r\n 🗣Private Talk🗣\r\n 🎶Public Music🎶\r\n 💤AFK💤\r\n MEMBERS ONLINE\";}}', 'yes');
INSERT INTO `wp_options` VALUES (110, 'cron', 'a:6:{i:1533892817;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1533916644;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1533916794;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1533959886;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1533962189;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}', 'yes');
INSERT INTO `wp_options` VALUES (111, 'theme_mods_twentyseventeen', 'a:7:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:3:\"top\";i:2;s:6:\"social\";i:3;}s:7:\"panel_1\";i:12;s:7:\"panel_2\";i:9;s:7:\"panel_3\";i:11;s:7:\"panel_4\";i:10;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532751646;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-2\";i:1;s:8:\"search-3\";i:2;s:6:\"text-3\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-4\";}s:9:\"sidebar-3\";a:2:{i:0;s:6:\"text-5\";i:1;s:8:\"search-4\";}}}}', 'yes');
INSERT INTO `wp_options` VALUES (124, 'can_compress_scripts', '1', 'no');
INSERT INTO `wp_options` VALUES (141, 'recently_activated', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES (150, 'nav_menu_options', 'a:1:{s:8:\"auto_add\";a:0:{}}', 'yes');
INSERT INTO `wp_options` VALUES (155, 'current_theme', 'Ribosome', 'yes');
INSERT INTO `wp_options` VALUES (156, 'theme_mods_andorra', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"social\";i:3;s:15:\"main_navigation\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532751792;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:8:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:6:\"text-5\";i:7;s:8:\"search-4\";}s:12:\"main-sidebar\";a:4:{i:0;s:6:\"text-2\";i:1;s:8:\"search-3\";i:2;s:6:\"text-3\";i:3;s:6:\"text-4\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:15:\"footer-widget-3\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` VALUES (157, 'theme_switched', '', 'yes');
INSERT INTO `wp_options` VALUES (161, 'theme_mods_hava', 'a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header-menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"footer_text\";s:5:\"@2018\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532828094;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:12:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:6:\"text-5\";i:7;s:8:\"search-4\";i:8;s:6:\"text-2\";i:9;s:8:\"search-3\";i:10;s:6:\"text-3\";i:11;s:6:\"text-4\";}s:15:\"footer-widget-1\";a:3:{i:0;s:6:\"text-6\";i:1;s:12:\"categories-3\";i:2;s:10:\"nav_menu-2\";}s:15:\"footer-widget-2\";a:0:{}s:15:\"footer-widget-3\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` VALUES (163, 'category_children', 'a:0:{}', 'yes');
INSERT INTO `wp_options` VALUES (183, 'theme_mods_twentysixteen', 'a:1:{s:18:\"custom_css_post_id\";i:-1;}', 'yes');
INSERT INTO `wp_options` VALUES (210, 'theme_mods_northern-web-coders', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532831825;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:15:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:6:\"text-5\";i:7;s:8:\"search-4\";i:8;s:6:\"text-2\";i:9;s:8:\"search-3\";i:10;s:6:\"text-3\";i:11;s:6:\"text-4\";i:12;s:6:\"text-6\";i:13;s:12:\"categories-3\";i:14;s:10:\"nav_menu-2\";}s:12:\"sidebar-blog\";a:0:{}s:12:\"sidebar-page\";a:0:{}s:12:\"sidebar-shop\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` VALUES (217, 'theme_mods_leftside', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532832690;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:15:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:6:\"text-5\";i:7;s:8:\"search-4\";i:8;s:6:\"text-2\";i:9;s:8:\"search-3\";i:10;s:6:\"text-3\";i:11;s:6:\"text-4\";i:12;s:6:\"text-6\";i:13;s:12:\"categories-3\";i:14;s:10:\"nav_menu-2\";}s:7:\"primary\";a:0:{}s:12:\"footer-right\";a:0:{}s:13:\"footer-middle\";a:0:{}s:11:\"footer-left\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` VALUES (221, 'theme_mods_powerwp', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532834348;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:15:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:6:\"text-5\";i:7;s:8:\"search-4\";i:8;s:6:\"text-2\";i:9;s:8:\"search-3\";i:10;s:6:\"text-3\";i:11;s:6:\"text-4\";i:12;s:6:\"text-6\";i:13;s:12:\"categories-3\";i:14;s:10:\"nav_menu-2\";}s:21:\"powerwp-header-banner\";a:0:{}s:20:\"powerwp-left-sidebar\";a:0:{}s:21:\"powerwp-right-sidebar\";a:0:{}s:16:\"powerwp-footer-1\";a:0:{}s:16:\"powerwp-footer-2\";a:0:{}s:16:\"powerwp-footer-3\";a:0:{}s:16:\"powerwp-footer-4\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` VALUES (234, 'theme_mods_magazie-minimal', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:0;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1532837950;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:15:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:6:\"text-5\";i:7;s:8:\"search-4\";i:8;s:6:\"text-2\";i:9;s:8:\"search-3\";i:10;s:6:\"text-3\";i:11;s:6:\"text-4\";i:12;s:6:\"text-6\";i:13;s:12:\"categories-3\";i:14;s:10:\"nav_menu-2\";}s:9:\"sidebar-1\";a:2:{i:0;s:6:\"text-8\";i:1;s:6:\"meta-4\";}s:13:\"sidebar-right\";a:0:{}}}}', 'yes');
INSERT INTO `wp_options` VALUES (235, 'widget_magazie-minimal-recent-post-widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (248, '_transient_magazie_minimal_categories', '1', 'yes');
INSERT INTO `wp_options` VALUES (260, 'theme_mods_twentyfifteen', 'a:1:{s:18:\"custom_css_post_id\";i:-1;}', 'yes');
INSERT INTO `wp_options` VALUES (271, 'theme_mods_ribosome', 'a:14:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:25:\"ribosome_sidebar_position\";s:9:\"izquierda\";s:39:\"ribosome_contenido_completo_entradas_pp\";s:0:\"\";s:19:\"ribosome_color_tema\";s:7:\"#00BCD5\";s:28:\"ribosome_color_excerpt_title\";i:1;s:27:\"ribosome_footer_text_center\";s:215:\"Footer text center\nAbout\nBlog\nHosting\nDonate\nSupport\nDevelopers\nGet Involved\nLearn\nShowcase\nPlugins\nThemes\nIdeas\nWordCamp\nWordPress.TV\nBuddyPress\nbbPress\nWordPress.com\nMatt\nPrivacy\nPublic Code\nMobile phone:xxxxxxxxx\";s:25:\"ribosome_footer_text_left\";s:14:\"Copyright@2018\";s:16:\"background_image\";s:0:\"\";s:16:\"header_textcolor\";s:6:\"ffffff\";s:29:\"ribosome_color_excerpt_border\";i:1;s:27:\"ribosome_color_widget_title\";i:1;s:32:\"ribosome_color_header_sin_imagen\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (290, 'wpmp_redirect_settings', 'a:2:{s:19:\"wpmp_login_redirect\";s:2:\"-1\";s:20:\"wpmp_logout_redirect\";s:2:\"-1\";}', 'yes');
INSERT INTO `wp_options` VALUES (291, 'wpmp_display_settings', 'a:10:{s:24:\"wpmp_email_error_message\";s:46:\"Could not able to send the email notification.\";s:30:\"wpmp_account_activated_message\";s:51:\"Your account has been activated. You can login now.\";s:33:\"wpmp_account_notactivated_message\";s:72:\"Your account has not been activated yet, please verify your email first.\";s:24:\"wpmp_login_error_message\";s:34:\"Username or password is incorrect.\";s:26:\"wpmp_login_success_message\";s:31:\"You are successfully logged in.\";s:41:\"wpmp_password_reset_invalid_email_message\";s:44:\"We cannot identify any user with this email.\";s:37:\"wpmp_password_reset_link_sent_message\";s:51:\"A link to reset your password has been sent to you.\";s:40:\"wpmp_password_reset_link_notsent_message\";s:29:\"Password reset link not sent.\";s:35:\"wpmp_password_reset_success_message\";s:44:\"Your password has been changed successfully.\";s:41:\"wpmp_invalid_password_reset_token_message\";s:33:\"This token appears to be invalid.\";}', 'yes');
INSERT INTO `wp_options` VALUES (292, 'wpmp_form_settings', 'a:10:{s:19:\"wpmp_signup_heading\";s:8:\"Register\";s:19:\"wpmp_signin_heading\";s:5:\"Login\";s:26:\"wpmp_resetpassword_heading\";s:14:\"Reset Password\";s:23:\"wpmp_signin_button_text\";s:5:\"Login\";s:23:\"wpmp_signup_button_text\";s:8:\"Register\";s:30:\"wpmp_returntologin_button_text\";s:15:\"Return to Login\";s:32:\"wpmp_forgot_password_button_text\";s:15:\"Forgot Password\";s:30:\"wpmp_resetpassword_button_text\";s:14:\"Reset Password\";s:19:\"wpmp_enable_captcha\";s:1:\"1\";s:27:\"wpmp_enable_forgot_password\";s:1:\"1\";}', 'yes');
INSERT INTO `wp_options` VALUES (293, 'wpmp_email_settings', 'a:8:{s:25:\"wpmp_notification_subject\";s:21:\"Welcome to %BLOGNAME%\";s:25:\"wpmp_notification_message\";s:390:\"Thank you for registering on %BLOGNAME%.\n<br><br>\n<strong>First Name :</strong> %FIRSTNAME%<br>\n<strong>Last Name : </strong>%LASTNAME%<br>\n<strong>Username :</strong> %USERNAME%<br>\n<strong>Email :</strong> %USEREMAIL%<br>\n<strong>Password :</strong> As choosen at the time of registration.\n<br><br>\nPlease visit %BLOGURL% to login.\n<br><br>\nThanks and regards,\n<br>\nThe team at %BLOGNAME%\";s:29:\"wpmp_admin_email_notification\";s:1:\"1\";s:28:\"wpmp_user_email_confirmation\";s:1:\"1\";s:43:\"wpmp_new_account_verification_email_subject\";s:38:\"%BLOGNAME% | Please confirm your email\";s:43:\"wpmp_new_account_verification_email_message\";s:186:\"Thank you for registering on %BLOGNAME%.\n<br><br>\nPlease confirm your email by clicking on below link :\n<br><br>\n%ACTIVATIONLINK%\n<br><br>\nThanks and regards,\n<br>\nThe team at %BLOGNAME%\";s:33:\"wpmp_password_reset_email_subject\";s:27:\"%BLOGNAME% | Password Reset\";s:33:\"wpmp_password_reset_email_message\";s:204:\"Hello %USERNAME%,\n<br><br>\nWe have received a request to change your password.\nClick on the link to change your password : \n<br><br>\n%RECOVERYLINK%\n<br><br>\nThanks and regards,\n<br>\nThe team at %BLOGNAME%\";}', 'yes');
INSERT INTO `wp_options` VALUES (308, 'bstwbsftwppdtplgns_options', 'a:1:{s:8:\"bws_menu\";a:1:{s:7:\"version\";a:1:{s:25:\"pagination/pagination.php\";s:5:\"2.1.5\";}}}', 'yes');
INSERT INTO `wp_options` VALUES (309, 'pgntn_options', 'a:30:{s:21:\"plugin_option_version\";s:5:\"1.1.1\";s:23:\"display_settings_notice\";i:1;s:22:\"suggest_feature_banner\";i:1;s:13:\"first_install\";i:1532856199;s:13:\"where_display\";a:1:{i:0;s:10:\"everywhere\";}s:13:\"loop_position\";s:6:\"bottom\";s:12:\"display_info\";i:1;s:17:\"display_next_prev\";i:1;s:9:\"prev_text\";s:11:\"« Previous\";s:9:\"next_text\";s:7:\"Next »\";s:8:\"show_all\";i:0;s:18:\"display_count_page\";i:2;s:27:\"display_standard_pagination\";a:3:{i:0;s:5:\"posts\";i:1;s:9:\"multipage\";i:2;s:8:\"comments\";}s:27:\"additional_pagination_style\";s:0:\"\";s:25:\"display_custom_pagination\";i:1;s:14:\"add_appearance\";i:1;s:5:\"width\";s:2:\"60\";s:5:\"align\";s:4:\"left\";s:16:\"background_color\";s:7:\"#ffffff\";s:24:\"current_background_color\";s:7:\"#efefef\";s:10:\"text_color\";s:7:\"#1e14ca\";s:18:\"current_text_color\";s:4:\"#000\";s:11:\"hover_color\";s:4:\"#000\";s:12:\"border_color\";s:7:\"#cccccc\";s:12:\"border_width\";i:1;s:13:\"border_radius\";i:0;s:12:\"padding_left\";i:0;s:13:\"padding_right\";i:0;s:13:\"nofollow_link\";i:0;s:19:\"go_settings_counter\";i:3;}', 'yes');
INSERT INTO `wp_options` VALUES (313, 'widget_wpsp_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes');
INSERT INTO `wp_options` VALUES (521, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.8-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.8\";s:7:\"version\";s:5:\"4.9.8\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1533874672;s:15:\"version_checked\";s:5:\"4.9.8\";s:12:\"translations\";a:0:{}}', 'no');
INSERT INTO `wp_options` VALUES (524, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"[email protected]\";s:7:\"version\";s:5:\"4.9.8\";s:9:\"timestamp\";i:1533653311;}', 'no');
INSERT INTO `wp_options` VALUES (525, '_site_transient_timeout_browser_6d4f4edeccc9b4914f178441bd9d7757', '1534258252', 'no');
INSERT INTO `wp_options` VALUES (526, '_site_transient_browser_6d4f4edeccc9b4914f178441bd9d7757', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"66.0.3359.170\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'no');
INSERT INTO `wp_options` VALUES (699, '_transient_timeout_plugin_slugs', '1533913605', 'no');
INSERT INTO `wp_options` VALUES (700, '_transient_plugin_slugs', 'a:6:{i:0;s:19:\"akismet/akismet.php\";i:1;s:9:\"hello.php\";i:2;s:25:\"pagination/pagination.php\";i:3;s:25:\"wp-discord/wp-discord.php\";i:4;s:56:\"wp-front-end-login-and-register/wp-mp-register-login.php\";i:5;s:31:\"wp-show-posts/wp-show-posts.php\";}', 'no');
INSERT INTO `wp_options` VALUES (765, '_site_transient_update_themes', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1533874675;s:7:\"checked\";a:10:{s:7:\"andorra\";s:7:\"1.0.2.3\";s:4:\"hava\";s:3:\"1.3\";s:8:\"leftside\";s:3:\"5.9\";s:15:\"magazie-minimal\";s:3:\"1.0\";s:19:\"northern-web-coders\";s:5:\"3.0.4\";s:7:\"powerwp\";s:5:\"1.0.5\";s:8:\"ribosome\";s:5:\"2.4.1\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:15:\"twentyseventeen\";s:3:\"1.6\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:2:{s:8:\"ribosome\";a:4:{s:5:\"theme\";s:8:\"ribosome\";s:11:\"new_version\";s:5:\"2.4.3\";s:3:\"url\";s:38:\"https://wordpress.org/themes/ribosome/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/ribosome.2.4.3.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.7.zip\";}}s:12:\"translations\";a:0:{}}', 'no');
INSERT INTO `wp_options` VALUES (766, '_site_transient_update_plugins', 'O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1533874675;s:8:\"response\";a:1:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.6\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"pagination/pagination.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/pagination\";s:4:\"slug\";s:10:\"pagination\";s:6:\"plugin\";s:25:\"pagination/pagination.php\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/pagination/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/pagination.1.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/pagination/assets/icon-256x256.png?rev=1637795\";s:2:\"1x\";s:63:\"https://ps.w.org/pagination/assets/icon-128x128.png?rev=1637795\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/pagination/assets/banner-1544x500.jpg?rev=1590715\";s:2:\"1x\";s:65:\"https://ps.w.org/pagination/assets/banner-772x250.jpg?rev=1590715\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"wp-discord/wp-discord.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/wp-discord\";s:4:\"slug\";s:10:\"wp-discord\";s:6:\"plugin\";s:25:\"wp-discord/wp-discord.php\";s:11:\"new_version\";s:5:\"0.4.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-discord/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-discord.0.4.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-discord/assets/icon-128x128.jpg?rev=1504108\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/wp-discord/assets/banner-772x250.jpg?rev=1504108\";}s:11:\"banners_rtl\";a:0:{}}s:56:\"wp-front-end-login-and-register/wp-mp-register-login.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:45:\"w.org/plugins/wp-front-end-login-and-register\";s:4:\"slug\";s:31:\"wp-front-end-login-and-register\";s:6:\"plugin\";s:56:\"wp-front-end-login-and-register/wp-mp-register-login.php\";s:11:\"new_version\";s:5:\"2.0.0\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/wp-front-end-login-and-register/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/wp-front-end-login-and-register.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:84:\"https://ps.w.org/wp-front-end-login-and-register/assets/icon-128x128.png?rev=1717377\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:86:\"https://ps.w.org/wp-front-end-login-and-register/assets/banner-772x250.png?rev=1717370\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"wp-show-posts/wp-show-posts.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wp-show-posts\";s:4:\"slug\";s:13:\"wp-show-posts\";s:6:\"plugin\";s:31:\"wp-show-posts/wp-show-posts.php\";s:11:\"new_version\";s:5:\"1.1.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wp-show-posts/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wp-show-posts.1.1.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/wp-show-posts/assets/icon-128x128.png?rev=1459346\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-show-posts/assets/banner-772x250.png?rev=1459346\";}s:11:\"banners_rtl\";a:0:{}}}}', 'no');
INSERT INTO `wp_options` VALUES (814, '_transient_is_multi_author', '0', 'yes');
INSERT INTO `wp_options` VALUES (815, '_site_transient_timeout_theme_roots', '1533893907', 'no');
INSERT INTO `wp_options` VALUES (816, '_site_transient_theme_roots', 'a:10:{s:7:\"andorra\";s:7:\"/themes\";s:4:\"hava\";s:7:\"/themes\";s:8:\"leftside\";s:7:\"/themes\";s:15:\"magazie-minimal\";s:7:\"/themes\";s:19:\"northern-web-coders\";s:7:\"/themes\";s:7:\"powerwp\";s:7:\"/themes\";s:8:\"ribosome\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}', 'no');
-- ----------------------------
-- Table structure for wp_postmeta
-- ----------------------------
DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
PRIMARY KEY (`meta_id`) USING BTREE,
INDEX `post_id`(`post_id`) USING BTREE,
INDEX `meta_key`(`meta_key`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 651 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_postmeta
-- ----------------------------
INSERT INTO `wp_postmeta` VALUES (1, 2, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (2, 3, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (3, 3, '_edit_lock', '1532750160:1');
INSERT INTO `wp_postmeta` VALUES (4, 5, '_wp_attached_file', '2018/07/espresso.jpg');
INSERT INTO `wp_postmeta` VALUES (5, 5, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/07/espresso.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"espresso-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"espresso-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"espresso-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"espresso-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"espresso-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (6, 5, '_starter_content_theme', 'twentyseventeen');
INSERT INTO `wp_postmeta` VALUES (8, 6, '_wp_attached_file', '2018/07/sandwich.jpg');
INSERT INTO `wp_postmeta` VALUES (9, 6, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/07/sandwich.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sandwich-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"sandwich-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"sandwich-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"sandwich-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"sandwich-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (10, 6, '_starter_content_theme', 'twentyseventeen');
INSERT INTO `wp_postmeta` VALUES (12, 7, '_wp_attached_file', '2018/07/coffee.jpg');
INSERT INTO `wp_postmeta` VALUES (13, 7, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2018/07/coffee.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"coffee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"coffee-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"coffee-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"coffee-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:18:\"coffee-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (14, 7, '_starter_content_theme', 'twentyseventeen');
INSERT INTO `wp_postmeta` VALUES (17, 8, '_customize_changeset_uuid', '8702d5a0-4543-435a-8086-93f723095378');
INSERT INTO `wp_postmeta` VALUES (18, 9, '_thumbnail_id', '6');
INSERT INTO `wp_postmeta` VALUES (20, 9, '_customize_changeset_uuid', '8702d5a0-4543-435a-8086-93f723095378');
INSERT INTO `wp_postmeta` VALUES (21, 10, '_thumbnail_id', '5');
INSERT INTO `wp_postmeta` VALUES (23, 10, '_customize_changeset_uuid', '8702d5a0-4543-435a-8086-93f723095378');
INSERT INTO `wp_postmeta` VALUES (26, 11, '_customize_changeset_uuid', '8702d5a0-4543-435a-8086-93f723095378');
INSERT INTO `wp_postmeta` VALUES (27, 12, '_thumbnail_id', '5');
INSERT INTO `wp_postmeta` VALUES (29, 12, '_customize_changeset_uuid', '8702d5a0-4543-435a-8086-93f723095378');
INSERT INTO `wp_postmeta` VALUES (30, 13, '_edit_lock', '1532750393:1');
INSERT INTO `wp_postmeta` VALUES (103, 13, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (104, 13, '_wp_trash_meta_time', '1532750417');
INSERT INTO `wp_postmeta` VALUES (105, 8, '_edit_lock', '1532922199:1');
INSERT INTO `wp_postmeta` VALUES (108, 29, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (109, 29, '_wp_trash_meta_time', '1532752405');
INSERT INTO `wp_postmeta` VALUES (110, 30, '_edit_lock', '1532752480:1');
INSERT INTO `wp_postmeta` VALUES (111, 31, '_wp_attached_file', '2018/07/96efee081261eaf10521ec0e8efa919c.jpg');
INSERT INTO `wp_postmeta` VALUES (112, 31, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:44:\"2018/07/96efee081261eaf10521ec0e8efa919c.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"96efee081261eaf10521ec0e8efa919c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"96efee081261eaf10521ec0e8efa919c-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"96efee081261eaf10521ec0e8efa919c-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"96efee081261eaf10521ec0e8efa919c-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"hava-large\";a:4:{s:4:\"file\";s:44:\"96efee081261eaf10521ec0e8efa919c-700x525.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"hava-medium\";a:4:{s:4:\"file\";s:44:\"96efee081261eaf10521ec0e8efa919c-250x188.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"hava-small\";a:4:{s:4:\"file\";s:43:\"96efee081261eaf10521ec0e8efa919c-120x90.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (113, 32, '_wp_attached_file', '2018/07/cropped-96efee081261eaf10521ec0e8efa919c.jpg');
INSERT INTO `wp_postmeta` VALUES (114, 32, '_wp_attachment_context', 'site-icon');
INSERT INTO `wp_postmeta` VALUES (115, 32, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:52:\"2018/07/cropped-96efee081261eaf10521ec0e8efa919c.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"hava-medium\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-250x250.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"hava-small\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-120x120.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:52:\"cropped-96efee081261eaf10521ec0e8efa919c-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:50:\"cropped-96efee081261eaf10521ec0e8efa919c-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (116, 30, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (117, 30, '_wp_trash_meta_time', '1532752494');
INSERT INTO `wp_postmeta` VALUES (118, 31, '_wp_attachment_is_custom_background', 'ribosome');
INSERT INTO `wp_postmeta` VALUES (131, 40, '_edit_lock', '1532834795:1');
INSERT INTO `wp_postmeta` VALUES (133, 41, '_customize_changeset_uuid', 'cbad910c-3bb6-4270-a674-09e03f8ce19b');
INSERT INTO `wp_postmeta` VALUES (134, 40, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (135, 40, '_wp_trash_meta_time', '1532834814');
INSERT INTO `wp_postmeta` VALUES (143, 12, '_edit_lock', '1532856617:1');
INSERT INTO `wp_postmeta` VALUES (147, 48, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (148, 48, '_wp_trash_meta_time', '1532838341');
INSERT INTO `wp_postmeta` VALUES (149, 49, '_edit_lock', '1532838523:1');
INSERT INTO `wp_postmeta` VALUES (150, 49, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (151, 49, '_wp_trash_meta_time', '1532838555');
INSERT INTO `wp_postmeta` VALUES (154, 51, '_edit_lock', '1532839766:1');
INSERT INTO `wp_postmeta` VALUES (163, 53, '_menu_item_type', 'post_type');
INSERT INTO `wp_postmeta` VALUES (164, 53, '_menu_item_menu_item_parent', '0');
INSERT INTO `wp_postmeta` VALUES (165, 53, '_menu_item_object_id', '10');
INSERT INTO `wp_postmeta` VALUES (166, 53, '_menu_item_object', 'page');
INSERT INTO `wp_postmeta` VALUES (167, 53, '_menu_item_target', '');
INSERT INTO `wp_postmeta` VALUES (168, 53, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (169, 53, '_menu_item_xfn', '');
INSERT INTO `wp_postmeta` VALUES (170, 53, '_menu_item_url', '');
INSERT INTO `wp_postmeta` VALUES (179, 51, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (180, 51, '_wp_trash_meta_time', '1532839776');
INSERT INTO `wp_postmeta` VALUES (181, 55, '_edit_lock', '1532839946:1');
INSERT INTO `wp_postmeta` VALUES (198, 55, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (199, 55, '_wp_trash_meta_time', '1532839950');
INSERT INTO `wp_postmeta` VALUES (201, 59, '_oembed_89a5a2d2eaab4c1191f728d25d7fdef0', '<blockquote class=\"wp-embedded-content\" data-secret=\"RvzAm1sPr1\"><a href=\"http://localhost/wordpress/\">Sample Page</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"http://localhost/wordpress/embed/#?secret=RvzAm1sPr1\" data-secret=\"RvzAm1sPr1\" width=\"600\" height=\"338\" title=\"“Sample Page” — discord\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>');
INSERT INTO `wp_postmeta` VALUES (202, 59, '_oembed_time_89a5a2d2eaab4c1191f728d25d7fdef0', '1532854171');
INSERT INTO `wp_postmeta` VALUES (203, 59, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (204, 59, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (205, 59, '_edit_lock', '1532864903:1');
INSERT INTO `wp_postmeta` VALUES (206, 62, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (207, 62, '_wp_trash_meta_time', '1532854743');
INSERT INTO `wp_postmeta` VALUES (209, 63, '_menu_item_type', 'post_type');
INSERT INTO `wp_postmeta` VALUES (210, 63, '_menu_item_menu_item_parent', '0');
INSERT INTO `wp_postmeta` VALUES (211, 63, '_menu_item_object_id', '59');
INSERT INTO `wp_postmeta` VALUES (212, 63, '_menu_item_object', 'page');
INSERT INTO `wp_postmeta` VALUES (213, 63, '_menu_item_target', '');
INSERT INTO `wp_postmeta` VALUES (214, 63, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (215, 63, '_menu_item_xfn', '');
INSERT INTO `wp_postmeta` VALUES (216, 63, '_menu_item_url', '');
INSERT INTO `wp_postmeta` VALUES (218, 64, '_menu_item_type', 'post_type');
INSERT INTO `wp_postmeta` VALUES (219, 64, '_menu_item_menu_item_parent', '0');
INSERT INTO `wp_postmeta` VALUES (220, 64, '_menu_item_object_id', '59');
INSERT INTO `wp_postmeta` VALUES (221, 64, '_menu_item_object', 'page');
INSERT INTO `wp_postmeta` VALUES (222, 64, '_menu_item_target', '');
INSERT INTO `wp_postmeta` VALUES (223, 64, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (224, 64, '_menu_item_xfn', '');
INSERT INTO `wp_postmeta` VALUES (225, 64, '_menu_item_url', '');
INSERT INTO `wp_postmeta` VALUES (227, 65, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (228, 65, '_edit_lock', '1532855115:1');
INSERT INTO `wp_postmeta` VALUES (229, 65, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (230, 67, '_menu_item_type', 'post_type');
INSERT INTO `wp_postmeta` VALUES (231, 67, '_menu_item_menu_item_parent', '0');
INSERT INTO `wp_postmeta` VALUES (232, 67, '_menu_item_object_id', '65');
INSERT INTO `wp_postmeta` VALUES (233, 67, '_menu_item_object', 'page');
INSERT INTO `wp_postmeta` VALUES (234, 67, '_menu_item_target', '');
INSERT INTO `wp_postmeta` VALUES (235, 67, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (236, 67, '_menu_item_xfn', '');
INSERT INTO `wp_postmeta` VALUES (237, 67, '_menu_item_url', '');
INSERT INTO `wp_postmeta` VALUES (239, 68, '_edit_lock', '1533656274:1');
INSERT INTO `wp_postmeta` VALUES (240, 68, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (243, 70, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (244, 70, '_edit_lock', '1533656035:1');
INSERT INTO `wp_postmeta` VALUES (247, 11, '_edit_lock', '1533694592:1');
INSERT INTO `wp_postmeta` VALUES (248, 72, '_edit_lock', '1533829385:1');
INSERT INTO `wp_postmeta` VALUES (249, 72, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (250, 72, 'wpsp_post_type', 'post');
INSERT INTO `wp_postmeta` VALUES (251, 72, 'wpsp_posts_per_page', '24');
INSERT INTO `wp_postmeta` VALUES (252, 72, 'wpsp_pagination', '1');
INSERT INTO `wp_postmeta` VALUES (253, 72, 'wpsp_columns', 'col-12');
INSERT INTO `wp_postmeta` VALUES (254, 72, 'wpsp_columns_gutter', '2em');
INSERT INTO `wp_postmeta` VALUES (255, 72, 'wpsp_image', '1');
INSERT INTO `wp_postmeta` VALUES (256, 72, 'wpsp_image_alignment', 'center');
INSERT INTO `wp_postmeta` VALUES (257, 72, 'wpsp_image_location', 'below-title');
INSERT INTO `wp_postmeta` VALUES (258, 72, 'wpsp_content_type', 'excerpt');
INSERT INTO `wp_postmeta` VALUES (259, 72, 'wpsp_excerpt_length', '30');
INSERT INTO `wp_postmeta` VALUES (260, 72, 'wpsp_include_title', '1');
INSERT INTO `wp_postmeta` VALUES (261, 72, 'wpsp_title_element', 'h2');
INSERT INTO `wp_postmeta` VALUES (262, 72, 'wpsp_read_more_class', 'wp-show-posts-read-more');
INSERT INTO `wp_postmeta` VALUES (263, 72, 'wpsp_include_author', '');
INSERT INTO `wp_postmeta` VALUES (264, 72, 'wpsp_author_location', 'below-post');
INSERT INTO `wp_postmeta` VALUES (265, 72, 'wpsp_include_date', '1');
INSERT INTO `wp_postmeta` VALUES (266, 72, 'wpsp_date_location', 'below-title');
INSERT INTO `wp_postmeta` VALUES (267, 72, 'wpsp_include_terms', '');
INSERT INTO `wp_postmeta` VALUES (268, 72, 'wpsp_terms_location', 'below-post');
INSERT INTO `wp_postmeta` VALUES (269, 72, 'wpsp_include_comments', '');
INSERT INTO `wp_postmeta` VALUES (270, 72, 'wpsp_comments_location', 'below-post');
INSERT INTO `wp_postmeta` VALUES (271, 72, 'wpsp_exclude_current', '');
INSERT INTO `wp_postmeta` VALUES (272, 72, 'wpsp_ignore_sticky_posts', '');
INSERT INTO `wp_postmeta` VALUES (273, 72, 'wpsp_order', 'DESC');
INSERT INTO `wp_postmeta` VALUES (274, 72, 'wpsp_orderby', 'date');
INSERT INTO `wp_postmeta` VALUES (275, 72, 'wpsp_post_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (276, 72, 'wpsp_tax_operator', 'IN');
INSERT INTO `wp_postmeta` VALUES (277, 72, 'wpsp_no_results', 'Sorry, no posts were found.');
INSERT INTO `wp_postmeta` VALUES (278, 73, '_edit_lock', '1532922209:1');
INSERT INTO `wp_postmeta` VALUES (279, 73, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (280, 73, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (281, 75, '_edit_lock', '1533829400:1');
INSERT INTO `wp_postmeta` VALUES (282, 75, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (286, 78, '_edit_lock', '1533655772:1');
INSERT INTO `wp_postmeta` VALUES (287, 78, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (290, 2, '_edit_lock', '1532940726:1');
INSERT INTO `wp_postmeta` VALUES (300, 2, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (302, 88, '_edit_lock', '1532865465:1');
INSERT INTO `wp_postmeta` VALUES (303, 88, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (304, 88, '_wp_trash_meta_time', '1532865483');
INSERT INTO `wp_postmeta` VALUES (305, 89, '_edit_lock', '1532865518:1');
INSERT INTO `wp_postmeta` VALUES (306, 89, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (307, 89, '_wp_trash_meta_time', '1532865519');
INSERT INTO `wp_postmeta` VALUES (308, 90, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (309, 90, '_wp_trash_meta_time', '1532865558');
INSERT INTO `wp_postmeta` VALUES (322, 98, '_menu_item_type', 'custom');
INSERT INTO `wp_postmeta` VALUES (323, 98, '_menu_item_menu_item_parent', '0');
INSERT INTO `wp_postmeta` VALUES (324, 98, '_menu_item_object_id', '98');
INSERT INTO `wp_postmeta` VALUES (325, 98, '_menu_item_object', 'custom');
INSERT INTO `wp_postmeta` VALUES (326, 98, '_menu_item_target', '');
INSERT INTO `wp_postmeta` VALUES (327, 98, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}');
INSERT INTO `wp_postmeta` VALUES (328, 98, '_menu_item_xfn', '');
INSERT INTO `wp_postmeta` VALUES (329, 98, '_menu_item_url', 'http://localhost/wordpress');
INSERT INTO `wp_postmeta` VALUES (330, 97, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (331, 97, '_wp_trash_meta_time', '1532951103');
INSERT INTO `wp_postmeta` VALUES (332, 99, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (333, 99, '_wp_trash_meta_time', '1532951183');
INSERT INTO `wp_postmeta` VALUES (334, 100, '_edit_lock', '1532951277:1');
INSERT INTO `wp_postmeta` VALUES (335, 100, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (336, 100, '_wp_trash_meta_time', '1532951285');
INSERT INTO `wp_postmeta` VALUES (337, 101, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (338, 101, '_wp_trash_meta_time', '1532951310');
INSERT INTO `wp_postmeta` VALUES (341, 103, '_edit_lock', '1532951480:1');
INSERT INTO `wp_postmeta` VALUES (342, 103, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (343, 103, '_wp_trash_meta_time', '1532951510');
INSERT INTO `wp_postmeta` VALUES (352, 1, '_edit_lock', '1533656297:1');
INSERT INTO `wp_postmeta` VALUES (353, 1, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (358, 110, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (359, 110, '_wp_trash_meta_time', '1532956333');
INSERT INTO `wp_postmeta` VALUES (360, 111, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (361, 111, '_wp_trash_meta_time', '1532956392');
INSERT INTO `wp_postmeta` VALUES (369, 72, 'wpsp_read_more_text', 'Join');
INSERT INTO `wp_postmeta` VALUES (370, 126, '_wp_attached_file', '2018/07/188752295108935680.png');
INSERT INTO `wp_postmeta` VALUES (371, 126, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/07/188752295108935680.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"188752295108935680-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (376, 129, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (377, 129, 'wpsp_post_type', 'post');
INSERT INTO `wp_postmeta` VALUES (378, 129, 'wpsp_posts_per_page', '10');
INSERT INTO `wp_postmeta` VALUES (379, 129, 'wpsp_pagination', '');
INSERT INTO `wp_postmeta` VALUES (380, 129, 'wpsp_columns', 'col-6');
INSERT INTO `wp_postmeta` VALUES (381, 129, 'wpsp_columns_gutter', '2em');
INSERT INTO `wp_postmeta` VALUES (382, 129, 'wpsp_image', '1');
INSERT INTO `wp_postmeta` VALUES (383, 129, 'wpsp_image_alignment', 'center');
INSERT INTO `wp_postmeta` VALUES (384, 129, 'wpsp_image_location', 'below-title');
INSERT INTO `wp_postmeta` VALUES (385, 129, 'wpsp_content_type', 'excerpt');
INSERT INTO `wp_postmeta` VALUES (386, 129, 'wpsp_excerpt_length', '30');
INSERT INTO `wp_postmeta` VALUES (387, 129, 'wpsp_include_title', '1');
INSERT INTO `wp_postmeta` VALUES (388, 129, 'wpsp_title_element', 'h2');
INSERT INTO `wp_postmeta` VALUES (389, 129, 'wpsp_read_more_class', 'wp-show-posts-read-more');
INSERT INTO `wp_postmeta` VALUES (390, 129, 'wpsp_include_author', '');
INSERT INTO `wp_postmeta` VALUES (391, 129, 'wpsp_author_location', 'below-post');
INSERT INTO `wp_postmeta` VALUES (392, 129, 'wpsp_include_date', '1');
INSERT INTO `wp_postmeta` VALUES (393, 129, 'wpsp_date_location', 'below-title');
INSERT INTO `wp_postmeta` VALUES (394, 129, 'wpsp_include_terms', '');
INSERT INTO `wp_postmeta` VALUES (395, 129, 'wpsp_terms_location', 'below-post');
INSERT INTO `wp_postmeta` VALUES (396, 129, 'wpsp_include_comments', '');
INSERT INTO `wp_postmeta` VALUES (397, 129, 'wpsp_comments_location', 'below-post');
INSERT INTO `wp_postmeta` VALUES (398, 129, 'wpsp_exclude_current', '');
INSERT INTO `wp_postmeta` VALUES (399, 129, 'wpsp_ignore_sticky_posts', '');
INSERT INTO `wp_postmeta` VALUES (400, 129, 'wpsp_order', 'DESC');
INSERT INTO `wp_postmeta` VALUES (401, 129, 'wpsp_orderby', 'date');
INSERT INTO `wp_postmeta` VALUES (402, 129, 'wpsp_post_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (403, 129, 'wpsp_tax_operator', 'IN');
INSERT INTO `wp_postmeta` VALUES (404, 129, 'wpsp_no_results', 'Sorry, no posts were found.');
INSERT INTO `wp_postmeta` VALUES (405, 129, '_edit_lock', '1533655814:1');
INSERT INTO `wp_postmeta` VALUES (406, 130, '_wp_attached_file', '2018/07/321845546534830085.png');
INSERT INTO `wp_postmeta` VALUES (407, 130, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/07/321845546534830085.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"321845546534830085-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (410, 133, '_wp_attached_file', '2018/07/340546839994695694.jpg');
INSERT INTO `wp_postmeta` VALUES (411, 133, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/07/340546839994695694.jpg\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"340546839994695694-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (414, 136, '_wp_attached_file', '2018/07/429679495449018371.png');
INSERT INTO `wp_postmeta` VALUES (415, 136, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/07/429679495449018371.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"429679495449018371-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (418, 139, '_wp_attached_file', '2018/07/451356836990287872.png');
INSERT INTO `wp_postmeta` VALUES (419, 139, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/07/451356836990287872.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"451356836990287872-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (422, 143, '_edit_lock', '1533657696:1');
INSERT INTO `wp_postmeta` VALUES (423, 143, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (424, 144, '_wp_attached_file', '2018/08/452157688877678592.jpg');
INSERT INTO `wp_postmeta` VALUES (425, 144, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/452157688877678592.jpg\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"452157688877678592-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (428, 146, '_edit_lock', '1533657075:1');
INSERT INTO `wp_postmeta` VALUES (429, 146, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (430, 147, '_wp_attached_file', '2018/08/461274876905390081.jpg');
INSERT INTO `wp_postmeta` VALUES (431, 147, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/461274876905390081.jpg\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"461274876905390081-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (434, 149, '_edit_lock', '1533656911:1');
INSERT INTO `wp_postmeta` VALUES (435, 149, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (436, 150, '_wp_attached_file', '2018/08/461863108730945537.jpg');
INSERT INTO `wp_postmeta` VALUES (437, 150, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/461863108730945537.jpg\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"461863108730945537-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (440, 152, '_edit_lock', '1533828654:1');
INSERT INTO `wp_postmeta` VALUES (441, 152, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (442, 153, '_wp_attached_file', '2018/08/462415420951887882.jpg');
INSERT INTO `wp_postmeta` VALUES (443, 153, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/462415420951887882.jpg\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"462415420951887882-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (446, 155, '_edit_lock', '1533660941:1');
INSERT INTO `wp_postmeta` VALUES (447, 155, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (448, 156, '_wp_attached_file', '2018/08/466069566787944469.png');
INSERT INTO `wp_postmeta` VALUES (449, 156, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/466069566787944469.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"466069566787944469-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (452, 158, '_edit_lock', '1533826031:1');
INSERT INTO `wp_postmeta` VALUES (453, 158, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (454, 159, '_wp_attached_file', '2018/08/474406326114451476.png');
INSERT INTO `wp_postmeta` VALUES (455, 159, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/474406326114451476.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"474406326114451476-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (472, 166, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (473, 166, '_wp_trash_meta_time', '1533658927');
INSERT INTO `wp_postmeta` VALUES (476, 168, '_edit_lock', '1533664419:1');
INSERT INTO `wp_postmeta` VALUES (477, 168, '_customize_restore_dismissed', '1');
INSERT INTO `wp_postmeta` VALUES (478, 169, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (479, 169, '_wp_trash_meta_time', '1533664473');
INSERT INTO `wp_postmeta` VALUES (480, 11, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (481, 11, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (482, 171, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (483, 171, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (484, 171, '_edit_lock', '1533694511:1');
INSERT INTO `wp_postmeta` VALUES (485, 173, '_edit_lock', '1533694525:1');
INSERT INTO `wp_postmeta` VALUES (486, 173, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (487, 173, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (488, 176, '_edit_lock', '1533694534:1');
INSERT INTO `wp_postmeta` VALUES (489, 176, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (490, 178, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (491, 178, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (492, 178, '_edit_lock', '1533694683:1');
INSERT INTO `wp_postmeta` VALUES (493, 180, '_edit_lock', '1533694555:1');
INSERT INTO `wp_postmeta` VALUES (494, 180, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (495, 180, '_wp_page_template', 'default');
INSERT INTO `wp_postmeta` VALUES (496, 173, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (497, 173, '_wp_trash_meta_time', '1533694759');
INSERT INTO `wp_postmeta` VALUES (498, 173, '_wp_desired_post_slug', 'afdaf');
INSERT INTO `wp_postmeta` VALUES (499, 41, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (500, 41, '_wp_trash_meta_time', '1533694769');
INSERT INTO `wp_postmeta` VALUES (501, 41, '_wp_desired_post_slug', 'fdf');
INSERT INTO `wp_postmeta` VALUES (502, 180, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (503, 180, '_wp_trash_meta_time', '1533694771');
INSERT INTO `wp_postmeta` VALUES (504, 180, '_wp_desired_post_slug', 'fdsgs');
INSERT INTO `wp_postmeta` VALUES (505, 178, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (506, 178, '_wp_trash_meta_time', '1533694773');
INSERT INTO `wp_postmeta` VALUES (507, 178, '_wp_desired_post_slug', 'fsg');
INSERT INTO `wp_postmeta` VALUES (508, 176, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (509, 176, '_wp_trash_meta_time', '1533694780');
INSERT INTO `wp_postmeta` VALUES (510, 176, '_wp_desired_post_slug', 'gfgf');
INSERT INTO `wp_postmeta` VALUES (511, 171, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (512, 171, '_wp_trash_meta_time', '1533694787');
INSERT INTO `wp_postmeta` VALUES (513, 171, '_wp_desired_post_slug', 'asfdsa');
INSERT INTO `wp_postmeta` VALUES (514, 129, '_wp_trash_meta_status', 'draft');
INSERT INTO `wp_postmeta` VALUES (515, 129, '_wp_trash_meta_time', '1533827268');
INSERT INTO `wp_postmeta` VALUES (516, 129, '_wp_desired_post_slug', '');
INSERT INTO `wp_postmeta` VALUES (517, 182, '_edit_lock', '1533827397:1');
INSERT INTO `wp_postmeta` VALUES (518, 184, '_edit_lock', '1533828440:1');
INSERT INTO `wp_postmeta` VALUES (519, 184, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (520, 185, '_wp_attached_file', '2018/08/474710468766859273.png');
INSERT INTO `wp_postmeta` VALUES (521, 185, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/474710468766859273.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"474710468766859273-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (526, 188, '_edit_lock', '1533828456:1');
INSERT INTO `wp_postmeta` VALUES (527, 188, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (530, 190, '_edit_lock', '1533828629:1');
INSERT INTO `wp_postmeta` VALUES (531, 190, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (536, 192, '_edit_lock', '1533828645:1');
INSERT INTO `wp_postmeta` VALUES (537, 192, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (540, 194, '_edit_lock', '1533828667:1');
INSERT INTO `wp_postmeta` VALUES (541, 194, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (544, 196, '_edit_lock', '1533828679:1');
INSERT INTO `wp_postmeta` VALUES (545, 196, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (548, 198, '_edit_lock', '1533828695:1');
INSERT INTO `wp_postmeta` VALUES (549, 198, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (552, 200, '_edit_lock', '1533828734:1');
INSERT INTO `wp_postmeta` VALUES (553, 200, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (556, 202, '_edit_lock', '1533828756:1');
INSERT INTO `wp_postmeta` VALUES (557, 202, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (560, 204, '_edit_lock', '1533828849:1');
INSERT INTO `wp_postmeta` VALUES (561, 204, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (564, 206, '_edit_lock', '1533886693:1');
INSERT INTO `wp_postmeta` VALUES (565, 206, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (570, 209, '_edit_lock', '1533886615:1');
INSERT INTO `wp_postmeta` VALUES (571, 209, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (574, 211, '_edit_lock', '1533829414:1');
INSERT INTO `wp_postmeta` VALUES (575, 211, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (578, 213, '_edit_lock', '1533886577:1');
INSERT INTO `wp_postmeta` VALUES (579, 213, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (582, 215, '_edit_lock', '1533886534:1');
INSERT INTO `wp_postmeta` VALUES (583, 215, '_edit_last', '1');
INSERT INTO `wp_postmeta` VALUES (588, 217, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (589, 217, '_wp_trash_meta_time', '1533830484');
INSERT INTO `wp_postmeta` VALUES (590, 218, '_edit_lock', '1533833842:1');
INSERT INTO `wp_postmeta` VALUES (591, 218, '_customize_restore_dismissed', '1');
INSERT INTO `wp_postmeta` VALUES (592, 219, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (593, 219, '_wp_trash_meta_time', '1533834104');
INSERT INTO `wp_postmeta` VALUES (594, 220, '_wp_attached_file', '2018/08/340546839994695694.jpg');
INSERT INTO `wp_postmeta` VALUES (595, 220, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/340546839994695694.jpg\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"340546839994695694-60x60.jpg\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (597, 221, '_customize_restore_dismissed', '1');
INSERT INTO `wp_postmeta` VALUES (598, 222, '_edit_lock', '1533875267:1');
INSERT INTO `wp_postmeta` VALUES (599, 222, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (600, 222, '_wp_trash_meta_time', '1533875274');
INSERT INTO `wp_postmeta` VALUES (601, 223, '_edit_lock', '1533875964:1');
INSERT INTO `wp_postmeta` VALUES (602, 223, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (603, 223, '_wp_trash_meta_time', '1533875968');
INSERT INTO `wp_postmeta` VALUES (611, 228, '_wp_attached_file', '2018/08/208383978137321472.png');
INSERT INTO `wp_postmeta` VALUES (612, 228, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:30:\"2018/08/208383978137321472.png\";s:5:\"sizes\";a:1:{s:31:\"ribosome-recent-posts-thumbnail\";a:4:{s:4:\"file\";s:28:\"208383978137321472-60x60.png\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wp_postmeta` VALUES (615, 224, '_customize_restore_dismissed', '1');
INSERT INTO `wp_postmeta` VALUES (616, 230, '_edit_lock', '1533888461:1');
INSERT INTO `wp_postmeta` VALUES (617, 230, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (618, 230, '_wp_trash_meta_time', '1533888466');
INSERT INTO `wp_postmeta` VALUES (619, 231, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (620, 231, '_wp_trash_meta_time', '1533888521');
INSERT INTO `wp_postmeta` VALUES (621, 232, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (622, 232, '_wp_trash_meta_time', '1533888566');
INSERT INTO `wp_postmeta` VALUES (623, 233, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (624, 233, '_wp_trash_meta_time', '1533889250');
INSERT INTO `wp_postmeta` VALUES (625, 234, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (626, 234, '_wp_trash_meta_time', '1533889326');
INSERT INTO `wp_postmeta` VALUES (627, 235, '_edit_lock', '1533889539:1');
INSERT INTO `wp_postmeta` VALUES (628, 235, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (629, 235, '_wp_trash_meta_time', '1533889554');
INSERT INTO `wp_postmeta` VALUES (630, 236, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (631, 236, '_wp_trash_meta_time', '1533889743');
INSERT INTO `wp_postmeta` VALUES (632, 237, '_edit_lock', '1533889925:1');
INSERT INTO `wp_postmeta` VALUES (633, 237, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (634, 237, '_wp_trash_meta_time', '1533889955');
INSERT INTO `wp_postmeta` VALUES (635, 238, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (636, 238, '_wp_trash_meta_time', '1533890160');
INSERT INTO `wp_postmeta` VALUES (637, 239, '_edit_lock', '1533890246:1');
INSERT INTO `wp_postmeta` VALUES (638, 239, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (639, 239, '_wp_trash_meta_time', '1533890252');
INSERT INTO `wp_postmeta` VALUES (640, 240, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (641, 240, '_wp_trash_meta_time', '1533890286');
INSERT INTO `wp_postmeta` VALUES (642, 241, '_edit_lock', '1533890347:1');
INSERT INTO `wp_postmeta` VALUES (643, 241, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (644, 241, '_wp_trash_meta_time', '1533890349');
INSERT INTO `wp_postmeta` VALUES (645, 242, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (646, 242, '_wp_trash_meta_time', '1533890386');
INSERT INTO `wp_postmeta` VALUES (647, 243, '_edit_lock', '1533890448:1');
INSERT INTO `wp_postmeta` VALUES (648, 243, '_wp_trash_meta_status', 'publish');
INSERT INTO `wp_postmeta` VALUES (649, 243, '_wp_trash_meta_time', '1533890450');
INSERT INTO `wp_postmeta` VALUES (650, 244, '_edit_lock', '1533890716:1');
-- ----------------------------
-- Table structure for wp_posts
-- ----------------------------
DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE `wp_posts` (
`ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`post_date` datetime(0) NOT NULL,
`post_date_gmt` datetime(0) NOT NULL,
`post_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime(0) NOT NULL,
`post_modified_gmt` datetime(0) NOT NULL,
`post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`) USING BTREE,
INDEX `post_name`(`post_name`(191)) USING BTREE,
INDEX `type_status_date`(`post_type`, `post_status`, `post_date`, `ID`) USING BTREE,
INDEX `post_parent`(`post_parent`) USING BTREE,
INDEX `post_author`(`post_author`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 245 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_posts
-- ----------------------------
INSERT INTO `wp_posts` VALUES (1, 1, '2018-07-28 03:57:23', '2018-07-28 03:57:23', '<img class=\"alignnone size-full wp-image-139 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/451356836990287872.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">osu!Perfect</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Welcoming community to all osu! players...</h5>\r\n<!--more-->This is the result.', 'post0', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2018-08-07 15:39:11', '2018-08-07 15:39:11', '', 0, 'http://localhost/wordpress/?p=1', 0, 'post', '', 1);
INSERT INTO `wp_posts` VALUES (2, 1, '2018-07-28 03:57:23', '2018-07-28 03:57:23', '[wp_show_posts id=\"72\"]', 'Sample', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2018-07-29 11:55:12', '2018-07-29 11:55:12', '', 0, 'http://localhost/wordpress/?page_id=2', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (3, 1, '2018-07-28 03:57:23', '2018-07-28 03:57:23', '<h2>Who we are</h2><p>Our website address is: http://localhost/wordpress.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><h3>Media</h3><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><h3>Contact forms</h3><h3>Cookies</h3><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h3>Embedded content from other websites</h3><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2>What rights you have over your data</h2><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2018-07-28 03:57:23', '2018-07-28 03:57:23', '', 0, 'http://localhost/wordpress/?page_id=3', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (5, 1, '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 'Espresso', '', 'inherit', 'open', 'closed', '', 'espresso', '', '', '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 0, 'http://localhost/wordpress/wp-content/uploads/2018/07/espresso.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (6, 1, '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 'Sandwich', '', 'inherit', 'open', 'closed', '', 'sandwich', '', '', '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 0, 'http://localhost/wordpress/wp-content/uploads/2018/07/sandwich.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (7, 1, '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 'Coffee', '', 'inherit', 'open', 'closed', '', 'coffee', '', '', '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 0, 'http://localhost/wordpress/wp-content/uploads/2018/07/coffee.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (8, 1, '2018-07-28 04:00:11', '2018-07-28 04:00:11', 'Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 0, 'http://localhost/wordpress/?page_id=8', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (9, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 0, 'http://localhost/wordpress/?page_id=9', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (10, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 0, 'http://localhost/wordpress/?page_id=10', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (11, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'sfdsafafas', 'Blog', '', 'publish', 'closed', 'closed', '', 'blog', '', '', '2018-08-08 02:17:14', '2018-08-08 02:17:14', '', 0, 'http://localhost/wordpress/?page_id=11', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (12, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.', 'A homepage section', '', 'publish', 'closed', 'closed', '', 'a-homepage-section', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 0, 'http://localhost/wordpress/?page_id=12', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (13, 1, '2018-07-28 04:00:11', '2018-07-28 04:00:11', '{\n \"widget_text[2]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"51730a220a96b8a327dbb4e8f0ba4b39\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"widget_search[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"2f3fd0ff596e7185e85e68f15ecedc58\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"widget_text[3]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"c5197f545e07c019522f313133495204\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"sidebars_widgets[sidebar-1]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-2\",\n \"search-3\",\n \"text-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"widget_text[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkZpbmQgVXMiO3M6NDoidGV4dCI7czoxNjg6IjxzdHJvbmc+QWRkcmVzczwvc3Ryb25nPgoxMjMgTWFpbiBTdHJlZXQKTmV3IFlvcmssIE5ZIDEwMDAxCgo8c3Ryb25nPkhvdXJzPC9zdHJvbmc+Ck1vbmRheSZtZGFzaDtGcmlkYXk6IDk6MDBBTSZuZGFzaDs1OjAwUE0KU2F0dXJkYXkgJmFtcDsgU3VuZGF5OiAxMTowMEFNJm5kYXNoOzM6MDBQTSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"Find Us\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"51730a220a96b8a327dbb4e8f0ba4b39\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"sidebars_widgets[sidebar-2]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"widget_text[5]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjE1OiJBYm91dCBUaGlzIFNpdGUiO3M6NDoidGV4dCI7czo4NToiVGhpcyBtYXkgYmUgYSBnb29kIHBsYWNlIHRvIGludHJvZHVjZSB5b3Vyc2VsZiBhbmQgeW91ciBzaXRlIG9yIGluY2x1ZGUgc29tZSBjcmVkaXRzLiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"About This Site\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"c5197f545e07c019522f313133495204\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"widget_search[4]\": {\n \"starter_content\": true,\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjY6IlNlYXJjaCI7fQ==\",\n \"title\": \"Search\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"2f3fd0ff596e7185e85e68f15ecedc58\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"sidebars_widgets[sidebar-3]\": {\n \"starter_content\": true,\n \"value\": [\n \"text-5\",\n \"search-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"nav_menus_created_posts\": {\n \"starter_content\": true,\n \"value\": [\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11,\n 12\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"nav_menu[-1]\": {\n \"value\": {\n \"name\": \"Top Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-1]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://localhost/wordpress/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-2]\": {\n \"value\": {\n \"object_id\": 9,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"post_type\",\n \"title\": \"About\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"About\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-3]\": {\n \"value\": {\n \"object_id\": 11,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"post_type\",\n \"title\": \"Blog\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Blog\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-4]\": {\n \"value\": {\n \"object_id\": 10,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Contact\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact\",\n \"nav_menu_term_id\": -1,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"twentyseventeen::nav_menu_locations[top]\": {\n \"starter_content\": true,\n \"value\": -1,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"nav_menu[-5]\": {\n \"value\": {\n \"name\": \"Social Links Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-5]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 0,\n \"type\": \"custom\",\n \"title\": \"Yelp\",\n \"url\": \"https://www.yelp.com\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-6]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Facebook\",\n \"url\": \"https://www.facebook.com/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-7]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"Twitter\",\n \"url\": \"https://twitter.com/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-8]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"custom\",\n \"title\": \"Instagram\",\n \"url\": \"https://www.instagram.com/explore/tags/wordcamp/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"nav_menu_item[-9]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 4,\n \"type\": \"custom\",\n \"title\": \"Email\",\n \"url\": \"mailto:[email protected]\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"nav_menu_term_id\": -5,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:00:11\"\n },\n \"twentyseventeen::nav_menu_locations[social]\": {\n \"starter_content\": true,\n \"value\": -5,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"show_on_front\": {\n \"starter_content\": true,\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"page_on_front\": {\n \"starter_content\": true,\n \"value\": 8,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"page_for_posts\": {\n \"starter_content\": true,\n \"value\": 11,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"twentyseventeen::panel_1\": {\n \"starter_content\": true,\n \"value\": 12,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"twentyseventeen::panel_2\": {\n \"starter_content\": true,\n \"value\": 9,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"twentyseventeen::panel_3\": {\n \"starter_content\": true,\n \"value\": 11,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"twentyseventeen::panel_4\": {\n \"starter_content\": true,\n \"value\": 10,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:58:45\"\n },\n \"blogname\": {\n \"value\": \"discord\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:59:53\"\n },\n \"blogdescription\": {\n \"value\": \"Just another WordPress site\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 03:59:53\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '8702d5a0-4543-435a-8086-93f723095378', '', '', '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 0, 'http://localhost/wordpress/?p=13', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (14, 1, '2018-07-28 04:00:11', '2018-07-28 04:00:11', 'Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.', 'Home', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2018-07-28 04:00:11', '2018-07-28 04:00:11', '', 8, 'http://localhost/wordpress/2018/07/28/8-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (15, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.', 'About', '', 'inherit', 'closed', 'closed', '', '9-revision-v1', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 9, 'http://localhost/wordpress/2018/07/28/9-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (16, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.', 'Contact', '', 'inherit', 'closed', 'closed', '', '10-revision-v1', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 10, 'http://localhost/wordpress/2018/07/28/10-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (17, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 'Blog', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 11, 'http://localhost/wordpress/2018/07/28/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (18, 1, '2018-07-28 04:00:12', '2018-07-28 04:00:12', 'This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.', 'A homepage section', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2018-07-28 04:00:12', '2018-07-28 04:00:12', '', 12, 'http://localhost/wordpress/2018/07/28/12-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (29, 1, '2018-07-28 04:33:25', '2018-07-28 04:33:25', '{\n \"hava::footer_text\": {\n \"value\": \"@2018\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:33:25\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'cb6e616a-c72e-41f3-b337-308bea23a038', '', '', '2018-07-28 04:33:25', '2018-07-28 04:33:25', '', 0, 'http://localhost/wordpress/2018/07/28/cb6e616a-c72e-41f3-b337-308bea23a038/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (30, 1, '2018-07-28 04:34:54', '2018-07-28 04:34:54', '{\n \"nav_menu_item[-834710642]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:34:21\"\n },\n \"nav_menu_item[-1961702631]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:34:21\"\n },\n \"nav_menu_item[-1513618983]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:34:21\"\n },\n \"site_icon\": {\n \"value\": 32,\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-28 04:34:54\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '3a514988-9597-4a5c-b5e5-fc6cee0caecc', '', '', '2018-07-28 04:34:54', '2018-07-28 04:34:54', '', 0, 'http://localhost/wordpress/?p=30', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (31, 1, '2018-07-28 04:34:32', '2018-07-28 04:34:32', '', '96efee081261eaf10521ec0e8efa919c', '', 'inherit', 'open', 'closed', '', '96efee081261eaf10521ec0e8efa919c', '', '', '2018-07-30 08:29:07', '2018-07-30 08:29:07', '', 70, 'http://localhost/wordpress/wp-content/uploads/2018/07/96efee081261eaf10521ec0e8efa919c.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (32, 1, '2018-07-28 04:34:39', '2018-07-28 04:34:39', 'http://localhost/wordpress/wp-content/uploads/2018/07/cropped-96efee081261eaf10521ec0e8efa919c.jpg', 'cropped-96efee081261eaf10521ec0e8efa919c.jpg', '', 'inherit', 'open', 'closed', '', 'cropped-96efee081261eaf10521ec0e8efa919c-jpg', '', '', '2018-07-28 04:34:39', '2018-07-28 04:34:39', '', 0, 'http://localhost/wordpress/wp-content/uploads/2018/07/cropped-96efee081261eaf10521ec0e8efa919c.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (40, 1, '2018-07-29 03:26:51', '2018-07-29 03:26:51', '{\n \"sidebars_widgets[sidebar-1]\": {\n \"value\": [\n \"text-8\",\n \"meta-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:22:35\"\n },\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjk6InNpZGUgYmFyMSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"f582f0b6c78148b57caf154be6e4cfc8\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:20:35\"\n },\n \"widget_text[9]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjA6IiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"0aaa609097b773af07d294424029f00c\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:20:35\"\n },\n \"page_for_posts\": {\n \"value\": \"0\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:25:35\"\n },\n \"magazie-minimal::nav_menu_locations[primary]\": {\n \"value\": 0,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:26:35\"\n },\n \"nav_menu[2]\": {\n \"value\": {\n \"name\": \"Top Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:22:35\"\n },\n \"nav_menus_created_posts\": {\n \"value\": [\n 41\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:22:35\"\n },\n \"widget_meta[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:22:35\"\n },\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:25:35\"\n },\n \"page_on_front\": {\n \"value\": \"12\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:25:35\"\n },\n \"nav_menu_item[19]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:26:35\"\n },\n \"nav_menu_item[20]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:26:35\"\n },\n \"nav_menu_item[21]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:26:35\"\n },\n \"nav_menu_item[22]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 03:26:35\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'cbad910c-3bb6-4270-a674-09e03f8ce19b', '', '', '2018-07-29 03:26:51', '2018-07-29 03:26:51', '', 0, 'http://localhost/wordpress/?p=40', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (41, 1, '2018-07-29 03:26:51', '2018-07-29 03:26:51', '', 'fdf', '', 'trash', 'closed', 'closed', '', 'fdf__trashed', '', '', '2018-08-08 02:19:29', '2018-08-08 02:19:29', '', 0, 'http://localhost/wordpress/?page_id=41', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (42, 1, '2018-07-29 03:26:51', '2018-07-29 03:26:51', '', 'fdf', '', 'inherit', 'closed', 'closed', '', '41-revision-v1', '', '', '2018-07-29 03:26:51', '2018-07-29 03:26:51', '', 41, 'http://localhost/wordpress/2018/07/29/41-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (48, 1, '2018-07-29 04:25:40', '2018-07-29 04:25:40', '{\n \"ribosome::ribosome_sidebar_position\": {\n \"value\": \"izquierda\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:25:40\"\n },\n \"ribosome::ribosome_contenido_completo_entradas_pp\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:25:40\"\n },\n \"ribosome::nav_menu_locations[primary]\": {\n \"value\": 0,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:25:40\"\n },\n \"nav_menu[2]\": {\n \"value\": {\n \"name\": \"Top Menu\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:25:40\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'a481bbb6-d786-4b4f-bf70-50b65a7958f5', '', '', '2018-07-29 04:25:40', '2018-07-29 04:25:40', '', 0, 'http://localhost/wordpress/2018/07/29/a481bbb6-d786-4b4f-bf70-50b65a7958f5/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (49, 1, '2018-07-29 04:29:14', '2018-07-29 04:29:14', '{\n \"widget_meta[4]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjU6InRleHQxIjt9\",\n \"title\": \"text1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"b5e54001d10d6547c333451fad732ac5\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:26:43\"\n },\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjQ6InRleHQiO3M6NDoidGV4dCI7czo5OiJzaWRlIGJhcjEiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"text\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"0f60a85164019c6319850ae0cf470984\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:26:43\"\n },\n \"ribosome::ribosome_color_tema\": {\n \"value\": \"#82A31D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:26:43\"\n },\n \"sidebars_widgets[sidebar-1]\": {\n \"value\": [\n \"text-8\",\n \"meta-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:27:43\"\n },\n \"widget_archives[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:27:43\"\n },\n \"ribosome::ribosome_color_excerpt_title\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:28:43\"\n },\n \"ribosome::ribosome_footer_text_center\": {\n \"value\": \"Footer text center\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:28:43\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'fdeadd7a-bf40-4df6-b4e5-da458135e489', '', '', '2018-07-29 04:29:14', '2018-07-29 04:29:14', '', 0, 'http://localhost/wordpress/?p=49', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (51, 1, '2018-07-29 04:49:32', '2018-07-29 04:49:32', '{\n \"show_on_front\": {\n \"value\": \"page\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"page_on_front\": {\n \"value\": \"2\",\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"ribosome::nav_menu_locations[primary]\": {\n \"value\": 3,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:32\"\n },\n \"nav_menu_item[23]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"nav_menu_item[24]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"nav_menu_item[25]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"nav_menu_item[26]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"nav_menu_item[27]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:48:26\"\n },\n \"nav_menu_item[-64074777]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"login\",\n \"url\": \"http://localhost/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": 3,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n },\n \"nav_menu_item[-1222910709]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n },\n \"nav_menu_item[-1037194742]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n },\n \"nav_menu_item[-949754767]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n },\n \"nav_menu_item[-586522194]\": {\n \"value\": {\n \"object_id\": 10,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"Contact\",\n \"url\": \"http://localhost/wordpress/contact/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact\",\n \"nav_menu_term_id\": 3,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n },\n \"nav_menu_item[-1595067270]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"sign up\",\n \"url\": \"http://localhost/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": 3,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n },\n \"nav_menu_item[-1305840353]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:49:26\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'b22c064d-4b80-4102-a701-70d9a0b69bbf', '', '', '2018-07-29 04:49:32', '2018-07-29 04:49:32', '', 0, 'http://localhost/wordpress/?p=51', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (53, 1, '2018-07-29 04:49:35', '2018-07-29 04:49:35', ' ', '', '', 'publish', 'closed', 'closed', '', '53', '', '', '2018-07-29 09:00:19', '2018-07-29 09:00:19', '', 0, 'http://localhost/wordpress/2018/07/29/53/', 2, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` VALUES (55, 1, '2018-07-29 04:52:28', '2018-07-29 04:52:28', '{\n \"ribosome::nav_menu_locations[primary]\": {\n \"value\": 2,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:51:26\"\n },\n \"nav_menu_item[-498290689]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:52:26\"\n },\n \"nav_menu_item[-1742400885]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:51:26\"\n },\n \"nav_menu_item[-317790863]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:51:26\"\n },\n \"nav_menu_item[-606071538]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:52:28\"\n },\n \"nav_menu_item[-104089842]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 2,\n \"type\": \"custom\",\n \"title\": \"login\",\n \"url\": \"http://localhost/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:51:26\"\n },\n \"nav_menu_item[-159970639]\": {\n \"value\": {\n \"object_id\": 10,\n \"object\": \"page\",\n \"menu_item_parent\": 0,\n \"position\": 3,\n \"type\": \"post_type\",\n \"title\": \"sign up\",\n \"url\": \"http://localhost/wordpress/contact/\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Contact\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Page\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:51:26\"\n },\n \"nav_menu_item[-2062004826]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:52:26\"\n },\n \"nav_menu_item[-1948638]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:52:26\"\n },\n \"nav_menu_item[-772210352]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:52:26\"\n },\n \"nav_menu_item[-34597793]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 04:52:26\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '7bfb635a-e551-43ef-887a-fa1236d6573c', '', '', '2018-07-29 04:52:28', '2018-07-29 04:52:28', '', 0, 'http://localhost/wordpress/?p=55', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (59, 1, '2018-07-29 08:49:52', '2018-07-29 08:49:52', '[wpmp_login_form]', 'Login Page', '', 'publish', 'closed', 'closed', '', 'login-page', '', '', '2018-07-29 08:49:52', '2018-07-29 08:49:52', '', 0, 'http://localhost/wordpress/?page_id=59', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (60, 1, '2018-07-29 08:49:52', '2018-07-29 08:49:52', '[wpmp_login_form]', 'Login Page', '', 'inherit', 'closed', 'closed', '', '59-revision-v1', '', '', '2018-07-29 08:49:52', '2018-07-29 08:49:52', '', 59, 'http://localhost/wordpress/2018/07/29/59-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (62, 1, '2018-07-29 08:59:03', '2018-07-29 08:59:03', '{\n \"nav_menu_item[56]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 56,\n \"object\": \"custom\",\n \"type\": \"custom\",\n \"type_label\": \"Custom Link\",\n \"title\": \"login\",\n \"url\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 2,\n \"position\": 1,\n \"status\": \"publish\",\n \"original_title\": \"\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 08:59:03\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '8e668312-5550-4f1e-b51e-42f94fceb689', '', '', '2018-07-29 08:59:03', '2018-07-29 08:59:03', '', 0, 'http://localhost/wordpress/2018/07/29/8e668312-5550-4f1e-b51e-42f94fceb689/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (63, 1, '2018-07-29 09:00:19', '2018-07-29 09:00:19', '', 'Login', '', 'publish', 'closed', 'closed', '', 'login-3', '', '', '2018-07-29 09:00:19', '2018-07-29 09:00:19', '', 0, 'http://localhost/wordpress/?p=63', 1, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` VALUES (64, 1, '2018-07-29 09:01:14', '2018-07-29 09:01:14', '', 'Login', '', 'publish', 'closed', 'closed', '', 'login', '', '', '2018-07-30 11:45:02', '2018-07-30 11:45:02', '', 0, 'http://localhost/wordpress/?p=64', 2, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` VALUES (65, 1, '2018-07-29 09:02:46', '2018-07-29 09:02:46', '[wpmp_register_form]', 'Sign Up', '', 'publish', 'closed', 'closed', '', 'sign-up', '', '', '2018-07-29 09:02:46', '2018-07-29 09:02:46', '', 0, 'http://localhost/wordpress/?page_id=65', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (66, 1, '2018-07-29 09:02:46', '2018-07-29 09:02:46', '[wpmp_register_form]', 'Sign Up', '', 'inherit', 'closed', 'closed', '', '65-revision-v1', '', '', '2018-07-29 09:02:46', '2018-07-29 09:02:46', '', 65, 'http://localhost/wordpress/2018/07/29/65-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (67, 1, '2018-07-29 09:03:09', '2018-07-29 09:03:09', ' ', '', '', 'publish', 'closed', 'closed', '', '67', '', '', '2018-07-30 11:45:02', '2018-07-30 11:45:02', '', 0, 'http://localhost/wordpress/?p=67', 3, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` VALUES (68, 1, '2018-07-29 09:08:08', '2018-07-29 09:08:08', '<img class=\"alignnone size-full wp-image-136 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/429679495449018371.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Eintracht Prüg...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Ein kleiner Deutscher Server mit Fokus ...</h5>\r\n<!--more-->\r\n\r\nThe result is here, thanks', 'post1', '', 'publish', 'open', 'open', '', 'post-1', '', '', '2018-08-07 15:37:37', '2018-08-07 15:37:37', '', 0, 'http://localhost/wordpress/?p=68', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (69, 1, '2018-07-29 09:08:08', '2018-07-29 09:08:08', 'post1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1content', 'post 1', '', 'inherit', 'closed', 'closed', '', '68-revision-v1', '', '', '2018-07-29 09:08:08', '2018-07-29 09:08:08', '', 68, 'http://localhost/wordpress/2018/07/29/68-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (70, 1, '2018-07-29 09:08:28', '2018-07-29 09:08:28', '<img class=\"size-full wp-image-133 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/340546839994695694.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Eintracht Prüg...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Ein kleiner Deutscher Server mit Fokus ...</h5>\r\n<!--more-->\r\n\r\nThis is the test .', 'post2', '', 'publish', 'open', 'open', '', 'post2', '', '', '2018-08-07 15:35:41', '2018-08-07 15:35:41', '', 0, 'http://localhost/wordpress/?p=70', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (71, 1, '2018-07-29 09:08:28', '2018-07-29 09:08:28', 'post2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2content', 'post2', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2018-07-29 09:08:28', '2018-07-29 09:08:28', '', 70, 'http://localhost/wordpress/2018/07/29/70-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (72, 1, '2018-07-29 09:36:45', '2018-07-29 09:36:45', '', 'Post Lists', '', 'publish', 'closed', 'closed', '', 'post-lists', '', '', '2018-08-09 15:43:46', '2018-08-09 15:43:46', '', 0, 'http://localhost/wordpress/?post_type=wp_show_posts&p=72', 0, 'wp_show_posts', '', 0);
INSERT INTO `wp_posts` VALUES (73, 1, '2018-07-29 09:37:25', '2018-07-29 09:37:25', '[wp_show_posts id=\"72\"]', 'Posts', '', 'publish', 'closed', 'closed', '', 'posts', '', '', '2018-07-29 09:37:25', '2018-07-29 09:37:25', '', 0, 'http://localhost/wordpress/?page_id=73', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (74, 1, '2018-07-29 09:37:25', '2018-07-29 09:37:25', '[wp_show_posts id=\"72\"]', 'Posts', '', 'inherit', 'closed', 'closed', '', '73-revision-v1', '', '', '2018-07-29 09:37:25', '2018-07-29 09:37:25', '', 73, 'http://localhost/wordpress/2018/07/29/73-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (75, 1, '2018-07-29 11:28:29', '2018-07-29 11:28:29', '<img class=\"size-full wp-image-130 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n<p class=\"card-text text-muted\"></p>\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post3', '', 'publish', 'open', 'open', '', 'post3', '', '', '2018-08-07 15:34:10', '2018-08-07 15:34:10', '', 0, 'http://localhost/wordpress/?p=75', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (76, 1, '2018-07-29 11:28:29', '2018-07-29 11:28:29', 'fdfdfasfafafdasfdsafasfafasfasfasfasf', 'post3', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2018-07-29 11:28:29', '2018-07-29 11:28:29', '', 75, 'http://localhost/wordpress/2018/07/29/75-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (78, 1, '2018-07-29 11:35:52', '2018-07-29 11:35:52', '<div class=\"snippet-item r-snippetized\"><img class=\"size-full wp-image-126 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n</div>\r\n<div>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">I Love Imanity 👑</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Somos um dos Servidores com tema de Ani...</h5>\r\n</div>\r\n<!--more-->\r\n<div class=\"snippet-item r-snippetized\">All welcome.dfafdsafasdfdasfdasf Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'publish', 'open', 'open', '', 'post4', '', '', '2018-08-07 15:26:32', '2018-08-07 15:26:32', '', 0, 'http://localhost/wordpress/?p=78', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (79, 1, '2018-07-29 11:35:52', '2018-07-29 11:35:52', 'post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4post4', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-29 11:35:52', '2018-07-29 11:35:52', '', 78, 'http://localhost/wordpress/2018/07/29/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (86, 1, '2018-07-29 11:54:04', '2018-07-29 11:54:04', '[wp_show_posts id=\"72\"]', 'Sample Page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2018-07-29 11:54:04', '2018-07-29 11:54:04', '', 2, 'http://localhost/wordpress/2018/07/29/2-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (87, 1, '2018-07-29 11:55:12', '2018-07-29 11:55:12', '[wp_show_posts id=\"72\"]', 'Sample', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2018-07-29 11:55:12', '2018-07-29 11:55:12', '', 2, 'http://localhost/wordpress/2018/07/29/2-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (88, 1, '2018-07-29 11:58:03', '2018-07-29 11:58:03', '{\n \"sidebars_widgets[sidebar-1]\": {\n \"value\": [\n \"text-8\",\n \"text-11\",\n \"text-12\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 11:57:38\"\n },\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjU6IlRleHQxIjtzOjQ6InRleHQiO3M6ODoic2lkZWJhcjIiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"Text1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"3348ebc2d0bca56b55d2b8a614e365b3\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 11:57:38\"\n },\n \"widget_text[12]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjU6IlRleHQzIjtzOjQ6InRleHQiO3M6ODoic2lkZWJhcjMiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"Text3\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"23a9289a6e5d1abc584f7fed7a56aa4d\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 11:57:38\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'a477adeb-304a-4571-aee5-12e478120487', '', '', '2018-07-29 11:58:03', '2018-07-29 11:58:03', '', 0, 'http://localhost/wordpress/?p=88', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (89, 1, '2018-07-29 11:58:39', '2018-07-29 11:58:39', '{\n \"ribosome::ribosome_footer_text_center\": {\n \"value\": \"Footer text center\\nAbout\\nBlog\\nHosting\\nDonate\\nSupport\\nDevelopers\\nGet Involved\\nLearn\\nShowcase\\nPlugins\\nThemes\\nIdeas\\nWordCamp\\nWordPress.TV\\nBuddyPress\\nbbPress\\nWordPress.com\\nMatt\\nPrivacy\\nPublic Code\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 11:58:38\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '0f18f782-f8d2-4214-9a28-5e704ee66e7b', '', '', '2018-07-29 11:58:39', '2018-07-29 11:58:39', '', 0, 'http://localhost/wordpress/?p=89', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (90, 1, '2018-07-29 11:59:18', '2018-07-29 11:59:18', '{\n \"ribosome::ribosome_footer_text_left\": {\n \"value\": \"Copyright@2018\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-29 11:59:18\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '0b99da51-a013-461f-a4e6-3b9bc24706a9', '', '', '2018-07-29 11:59:18', '2018-07-29 11:59:18', '', 0, 'http://localhost/wordpress/2018/07/29/0b99da51-a013-461f-a4e6-3b9bc24706a9/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (96, 1, '2018-07-30 08:29:29', '2018-07-30 08:29:29', 'post2contentpost2contentpost2contentpost2contentpost2contentpost2contentpost2contentpontpost2contentpos<img class=\"alignnone wp-image-31\" style=\"font-size: 1rem;\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/96efee081261eaf10521ec0e8efa919c-300x225.jpg\" alt=\"\" width=\"115\" height=\"86\" /><span style=\"font-size: 1rem;\">t</span><span style=\"font-size: 1rem;\">2conten</span><span style=\"font-size: 1rem;\">tpost2cont</span>', 'post2', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2018-07-30 08:29:29', '2018-07-30 08:29:29', '', 70, 'http://localhost/wordpress/2018/07/30/70-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (97, 1, '2018-07-30 11:45:02', '2018-07-30 11:45:02', '{\n \"ribosome::nav_menu_locations[primary]\": {\n \"value\": 2,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:45:02\"\n },\n \"nav_menu_item[64]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 59,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost/wordpress/login-page/\",\n \"title\": \"Login\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 2,\n \"position\": 2,\n \"status\": \"publish\",\n \"original_title\": \"Login Page\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:45:02\"\n },\n \"nav_menu_item[67]\": {\n \"value\": {\n \"menu_item_parent\": 0,\n \"object_id\": 65,\n \"object\": \"page\",\n \"type\": \"post_type\",\n \"type_label\": \"Page\",\n \"url\": \"http://localhost/wordpress/sign-up/\",\n \"title\": \"\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"nav_menu_term_id\": 2,\n \"position\": 3,\n \"status\": \"publish\",\n \"original_title\": \"Sign Up\",\n \"_invalid\": false\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:45:02\"\n },\n \"nav_menu_item[-577693820]\": {\n \"value\": {\n \"object_id\": 0,\n \"object\": \"\",\n \"menu_item_parent\": 0,\n \"position\": 1,\n \"type\": \"custom\",\n \"title\": \"Home\",\n \"url\": \"http://localhost/wordpress\",\n \"target\": \"\",\n \"attr_title\": \"\",\n \"description\": \"\",\n \"classes\": \"\",\n \"xfn\": \"\",\n \"status\": \"publish\",\n \"original_title\": \"Home\",\n \"nav_menu_term_id\": 2,\n \"_invalid\": false,\n \"type_label\": \"Custom Link\"\n },\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:45:02\"\n },\n \"nav_menu_item[-1347608433]\": {\n \"value\": false,\n \"type\": \"nav_menu_item\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:45:02\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '9a885f38-ca0d-4efa-bb58-d5b197d8c1a6', '', '', '2018-07-30 11:45:02', '2018-07-30 11:45:02', '', 0, 'http://localhost/wordpress/2018/07/30/9a885f38-ca0d-4efa-bb58-d5b197d8c1a6/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (98, 1, '2018-07-30 11:45:02', '2018-07-30 11:45:02', '', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2018-07-30 11:45:02', '2018-07-30 11:45:02', '', 0, 'http://localhost/wordpress/2018/07/30/home/', 1, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` VALUES (99, 1, '2018-07-30 11:46:23', '2018-07-30 11:46:23', '{\n \"ribosome::background_image\": {\n \"value\": \"http://localhost/wordpress/wp-content/uploads/2018/07/96efee081261eaf10521ec0e8efa919c.jpg\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:46:23\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '7e7871a7-900a-40ae-83d2-6634663e7f93', '', '', '2018-07-30 11:46:23', '2018-07-30 11:46:23', '', 0, 'http://localhost/wordpress/2018/07/30/7e7871a7-900a-40ae-83d2-6634663e7f93/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (100, 1, '2018-07-30 11:48:04', '2018-07-30 11:48:04', '{\n \"ribosome::header_textcolor\": {\n \"value\": \"#ffa5a5\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:48:04\"\n },\n \"ribosome::ribosome_color_excerpt_border\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:47:33\"\n },\n \"ribosome::ribosome_color_widget_title\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:47:33\"\n },\n \"ribosome::ribosome_color_header_sin_imagen\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:47:33\"\n },\n \"ribosome::ribosome_color_tema\": {\n \"value\": \"#82A31D\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:48:04\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'ef28460b-4218-41fa-8707-007e0091107c', '', '', '2018-07-30 11:48:04', '2018-07-30 11:48:04', '', 0, 'http://localhost/wordpress/?p=100', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (101, 1, '2018-07-30 11:48:30', '2018-07-30 11:48:30', '{\n \"ribosome::header_textcolor\": {\n \"value\": \"#ffffff\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:48:30\"\n },\n \"ribosome::ribosome_color_excerpt_title\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:48:30\"\n },\n \"ribosome::ribosome_color_excerpt_border\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:48:30\"\n },\n \"ribosome::ribosome_color_widget_title\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:48:30\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '4474ef57-09dc-4729-a5b3-da7f3b2a2afb', '', '', '2018-07-30 11:48:30', '2018-07-30 11:48:30', '', 0, 'http://localhost/wordpress/2018/07/30/4474ef57-09dc-4729-a5b3-da7f3b2a2afb/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (102, 1, '2018-07-30 11:49:34', '2018-07-30 11:49:34', 'post1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1contentpost1content', 'connect1', '', 'inherit', 'closed', 'closed', '', '68-revision-v1', '', '', '2018-07-30 11:49:34', '2018-07-30 11:49:34', '', 68, 'http://localhost/wordpress/2018/07/30/68-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (103, 1, '2018-07-30 11:51:49', '2018-07-30 11:51:49', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6ImRpc2NvcmQiO3M6NDoidGV4dCI7czoxMToiZGlzY29yZCBvbmUiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"dbfef3dc784bd17140e8d552d8998f77\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:51:49\"\n },\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6ImRpc2NvcmQiO3M6NDoidGV4dCI7czoxMToiZGlzY29yZCB0d28iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"71ac8ef4087fd3548306524973bdf342\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:51:49\"\n },\n \"widget_text[12]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6ImRpc2NvcmQiO3M6NDoidGV4dCI7czoxMzoiZGlzY29yZCB0aHJlZSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"1995a5be04e4b3efb124066dc1ee3eb8\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 11:51:49\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '53facebc-67a4-4056-93c3-31bebd9c296d', '', '', '2018-07-30 11:51:49', '2018-07-30 11:51:49', '', 0, 'http://localhost/wordpress/?p=103', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (104, 1, '2018-07-30 12:58:03', '2018-07-30 12:58:03', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337\r\n\r\n\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-30 12:58:03', '2018-07-30 12:58:03', '', 78, 'http://localhost/wordpress/2018/07/30/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (105, 1, '2018-07-30 12:59:12', '2018-07-30 12:59:12', 'Name: Fusion gaming\r\nDescription: Fun games anime Pokémon stuff anything you can find on my server Permanent invite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post3', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2018-07-30 12:59:12', '2018-07-30 12:59:12', '', 75, 'http://localhost/wordpress/2018/07/30/75-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (106, 1, '2018-07-30 12:59:33', '2018-07-30 12:59:33', '<div class=\"snippet-item r-snippetized\">Name: Dynamic Vocalism\r\nDescription: Learn to sing, practice with friendly people, talk about music, participate in challenges, make friends. Join Dynamic Vocalism Permanent invite link: <a href=\"http://discord.gg/xNwSFd7\" target=\"_blank\" rel=\"noopener\">http://discord.gg/xNwSFd7</a> Category: Music Owner: !turges#3232\r\n\r\n\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post2', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2018-07-30 12:59:33', '2018-07-30 12:59:33', '', 70, 'http://localhost/wordpress/2018/07/30/70-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (107, 1, '2018-07-30 12:59:51', '2018-07-30 12:59:51', 'Name: #DogTeam\r\nDescription: A Server for Dog Owners and Dog Lovers! Join this discord server, if you like dogs! Permanent invite link: <a href=\"http://discord.gg/Eru6SWF\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Eru6SWF</a> Category: Community Owner: bencAdenc#2816', 'connect1', '', 'inherit', 'closed', 'closed', '', '68-revision-v1', '', '', '2018-07-30 12:59:51', '2018-07-30 12:59:51', '', 68, 'http://localhost/wordpress/2018/07/30/68-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (108, 1, '2018-07-30 13:00:09', '2018-07-30 13:00:09', '<div class=\"snippet-item r-snippetized\">Name: Sarainia\'s Server\r\nDescription: We do literally everything, from all channel topics, to roles, to bots, to news, to NSFW, you name it, it\'s all there & if we missed something just request it, & it will happen poof! When you get in DM me so I know you want the S1 Key & that will unlock the rest of the channels so you can see them & chat in them! :) Permanent invite link: <a href=\"http://discord.gg/hZbTx9J\" target=\"_blank\" rel=\"noopener\">http://discord.gg/hZbTx9J</a>Category: Other Owner: Sarainia#7847\r\n\r\n\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2018-07-30 13:00:09', '2018-07-30 13:00:09', '', 1, 'http://localhost/wordpress/2018/07/30/1-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (110, 1, '2018-07-30 13:12:13', '2018-07-30 13:12:13', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6MTM1OiI8dWw+DQogCTxsaT5kaXNjb3JkIG9uZTwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHRocmVlPC9saT4NCiAJPGxpPmRpc2NvcmQgZm91cjwvbGk+DQogCTxsaT5kaXNjb3JkIGZpdmU8L2xpPg0KPC91bD4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"2bbe847ee741ebf3495ce893726576eb\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 13:12:13\"\n },\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQyIjtzOjQ6InRleHQiO3M6MTMxOiI8b2w+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQo8L29sPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord2\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"3f956c8c9edbbc2a11cc7fa01838dc2b\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 13:12:13\"\n },\n \"widget_text[12]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQzIjtzOjQ6InRleHQiO3M6MjQ1OiI8dWw+DQogCTxsaT5kaXNjb3JkIHRocmVlPC9saT4NCiAJPGxpPmRpc2NvcmQgdGhyZWU8L2xpPg0KIAk8bGk+ZGlzY29yZCB0aHJlZTwvbGk+DQogCTxsaT5kaXNjb3JkIHRocmVlPC9saT4NCiAJPGxpPmRpc2NvcmQgdGhyZWU8L2xpPg0KIAk8bGk+ZGlzY29yZCB0aHJlZTwvbGk+DQogCTxsaT5kaXNjb3JkIHRocmVlPC9saT4NCiAJPGxpPmRpc2NvcmQgdGhyZWU8L2xpPg0KIAk8bGk+ZGlzY29yZCB0aHJlZTwvbGk+DQo8L3VsPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord3\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"203969429c6a5688a78e8d92e9b6330c\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 13:12:13\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '2107af91-46e3-4ea2-9e0a-a3b920533dbd', '', '', '2018-07-30 13:12:13', '2018-07-30 13:12:13', '', 0, 'http://localhost/wordpress/2018/07/30/2107af91-46e3-4ea2-9e0a-a3b920533dbd/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (111, 1, '2018-07-30 13:13:12', '2018-07-30 13:13:12', '{\n \"widget_text[12]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQzIjtzOjQ6InRleHQiO3M6MTQxOiI8dWw+DQogCTxsaT5kaXNjb3JkIHRocmVlPC9saT4NCiAJPGxpPmRpc2NvcmQgdGhyZWU8L2xpPg0KIAk8bGk+ZGlzY29yZCB0aHJlZTwvbGk+DQogCTxsaT5kaXNjb3JkIHRocmVlPC9saT4NCiAJPGxpPmRpc2NvcmQgdGhyZWU8L2xpPg0KPC91bD4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord3\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"929af4e70ee0f84aa449932034da379f\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-07-30 13:13:12\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '6a65f288-09b1-4c06-a75a-422b26480c78', '', '', '2018-07-30 13:13:12', '2018-07-30 13:13:12', '', 0, 'http://localhost/wordpress/2018/07/30/6a65f288-09b1-4c06-a75a-422b26480c78/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (113, 1, '2018-07-31 02:44:48', '2018-07-31 02:44:48', '<!--more-->\r\n<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337\r\n\r\n\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:44:48', '2018-07-31 02:44:48', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (114, 1, '2018-08-07 15:10:07', '2018-08-07 15:10:07', '<div class=\"snippet-item r-snippetized\"><img class=\"size-full wp-image-126 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png\" alt=\"\" width=\"128\" height=\"128\" /></div>\n<div></div>\n<!--more-->\n<div class=\"snippet-item r-snippetized\">All welcome.dfafdsafasdfdasfdasf Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-autosave-v1', '', '', '2018-08-07 15:10:07', '2018-08-07 15:10:07', '', 78, 'http://localhost/wordpress/2018/07/31/78-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (115, 1, '2018-07-31 02:45:27', '2018-07-31 02:45:27', '\r\n<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337\r\n\r\n<!--more-->\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:45:27', '2018-07-31 02:45:27', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (116, 1, '2018-07-31 02:46:31', '2018-07-31 02:46:31', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\n\r\n <!--more--\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:46:31', '2018-07-31 02:46:31', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (117, 1, '2018-07-31 02:46:58', '2018-07-31 02:46:58', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\n\r\n <!--more-->\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:46:58', '2018-07-31 02:46:58', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (118, 1, '2018-07-31 02:49:12', '2018-07-31 02:49:12', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\n<!--more-->dgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg\r\n\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a>\r\n\r\n</div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:49:12', '2018-07-31 02:49:12', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (119, 1, '2018-07-31 02:50:50', '2018-07-31 02:50:50', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat. All welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a>\r\n\r\n</div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:50:50', '2018-07-31 02:50:50', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (120, 1, '2018-07-31 02:53:12', '2018-07-31 02:53:12', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat.</div>\r\n<div></div>\r\n<!--more-->\r\n<div class=\"snippet-item r-snippetized\">\r\nAll welcome. Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a>\r\n\r\n</div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 02:53:12', '2018-07-31 02:53:12', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (121, 1, '2018-07-31 03:01:58', '2018-07-31 03:01:58', '<div class=\"snippet-item r-snippetized\">Name: My little pony - gaming is magic\r\nDescription: A My little pony Discord server open to gamers of all kinds. Also a hub for WindowsLogics build of Fighting is Magic (Aurora) Currently in development for a number of years, we have also rooms for many games including: Fortnite, Pubg, Dark souls, War thunder and many others. Also includes memes and NSFW/Roleplay and chat.</div>\r\n<div></div>\r\n<!--more-->\r\n<div class=\"snippet-item r-snippetized\">All welcome.dfafdsafasdfdasfdasf Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-07-31 03:01:58', '2018-07-31 03:01:58', '', 78, 'http://localhost/wordpress/2018/07/31/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (122, 1, '2018-07-31 04:18:19', '2018-07-31 04:18:19', 'Name: Fusion gaming\r\nDescription: Fun games anime Pokémon stuff anything you can find on my server Permanent\r\n\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post3', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2018-07-31 04:18:19', '2018-07-31 04:18:19', '', 75, 'http://localhost/wordpress/2018/07/31/75-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (124, 1, '2018-07-31 04:35:28', '2018-07-31 04:35:28', '<div class=\"snippet-item r-snippetized\">Name: Sarainia\'s Server\r\nDescription: We do literally everything, from all channel topics, to roles, to bots, to news, to NSFW, you name it, it\'s all there & if we missed something just request it, & it will happen poof! When you get in DM me so I know you want the S1 Key & that will unlock the rest of the channels so you can see them & chat in them! :) Permanent invite link: <a href=\"http://discord.gg/hZbTx9J\" target=\"_blank\" rel=\"noopener\">http://discord.gg/hZbTx9J</a>Category: Other Owner: Sarainia#7847\r\n<!--more-->\r\n<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2018-07-31 04:35:28', '2018-07-31 04:35:28', '', 1, 'http://localhost/wordpress/2018/07/31/1-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (125, 1, '2018-08-07 14:50:53', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2018-08-07 14:50:53', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=125', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (126, 1, '2018-08-07 15:09:52', '2018-08-07 15:09:52', '', '188752295108935680', '', 'inherit', 'open', 'closed', '', '188752295108935680', '', '', '2018-08-07 15:09:52', '2018-08-07 15:09:52', '', 78, 'http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (127, 1, '2018-08-07 15:10:28', '2018-08-07 15:10:28', '<div class=\"snippet-item r-snippetized\"><img class=\"size-full wp-image-126 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png\" alt=\"\" width=\"128\" height=\"128\" /></div>\r\n<div>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">I Love Imanity 👑</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Somos um dos Servidores com tema de Ani...</h5>\r\n</div>\r\n<!--more-->\r\n<div class=\"snippet-item r-snippetized\">All welcome.dfafdsafasdfdasfdasf Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-08-07 15:10:28', '2018-08-07 15:10:28', '', 78, 'http://localhost/wordpress/2018/08/07/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (128, 1, '2018-08-07 15:26:32', '2018-08-07 15:26:32', '<div class=\"snippet-item r-snippetized\"><img class=\"size-full wp-image-126 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n</div>\r\n<div>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">I Love Imanity 👑</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Somos um dos Servidores com tema de Ani...</h5>\r\n</div>\r\n<!--more-->\r\n<div class=\"snippet-item r-snippetized\">All welcome.dfafdsafasdfdasfdasf Permanent invite link: <a href=\"http://discord.gg/PSDK6fJ\" target=\"_blank\" rel=\"noopener\">http://discord.gg/PSDK6fJ</a> Category: Gaming Owner: chelsea1901#1337>\r\ndgsasfdasfdasfasfasfasgdfgdfsgdsgdfsgdfsgfgdfsgdfsgdfsgdfsgdfsgdfsgdfgdfgsgdssg<b>Invite link expired/broken? Report it</b><a href=\"http://discordservers.blogspot.ca/p/report.html\" target=\"_blank\" rel=\"noopener\">here</a></div>', 'post4', '', 'inherit', 'closed', 'closed', '', '78-revision-v1', '', '', '2018-08-07 15:26:32', '2018-08-07 15:26:32', '', 78, 'http://localhost/wordpress/2018/08/07/78-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (129, 1, '2018-08-09 15:07:48', '2018-08-09 15:07:48', '', 'post3', '', 'trash', 'closed', 'closed', '', '__trashed', '', '', '2018-08-09 15:07:48', '2018-08-09 15:07:48', '', 0, 'http://localhost/wordpress/?post_type=wp_show_posts&p=129', 0, 'wp_show_posts', '', 0);
INSERT INTO `wp_posts` VALUES (130, 1, '2018-08-07 15:33:17', '2018-08-07 15:33:17', '', '321845546534830085', '', 'inherit', 'open', 'closed', '', '321845546534830085', '', '', '2018-08-07 15:33:17', '2018-08-07 15:33:17', '', 75, 'http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (131, 1, '2018-08-07 15:33:46', '2018-08-07 15:33:46', '<img class=\"alignnone size-full wp-image-130\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\n<p class=\"card-text text-muted\"></p>\n<!--more-->\n\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post3', '', 'inherit', 'closed', 'closed', '', '75-autosave-v1', '', '', '2018-08-07 15:33:46', '2018-08-07 15:33:46', '', 75, 'http://localhost/wordpress/2018/08/07/75-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (132, 1, '2018-08-07 15:34:10', '2018-08-07 15:34:10', '<img class=\"size-full wp-image-130 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n<p class=\"card-text text-muted\"></p>\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post3', '', 'inherit', 'closed', 'closed', '', '75-revision-v1', '', '', '2018-08-07 15:34:10', '2018-08-07 15:34:10', '', 75, 'http://localhost/wordpress/2018/08/07/75-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (133, 1, '2018-08-07 15:34:34', '2018-08-07 15:34:34', '', '340546839994695694', '', 'inherit', 'open', 'closed', '', '340546839994695694', '', '', '2018-08-07 15:34:34', '2018-08-07 15:34:34', '', 70, 'http://localhost/wordpress/wp-content/uploads/2018/07/340546839994695694.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (134, 1, '2018-08-07 15:35:22', '2018-08-07 15:35:22', '<img class=\"size-full wp-image-133 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/340546839994695694.jpg\" alt=\"\" width=\"128\" height=\"128\" />\n\n<hr />\n\n<h5 class=\"card-title\" style=\"text-align: center;\">Eintracht Prüg...</h5>\n<h5 class=\"card-title\" style=\"text-align: center;\">Ein kleiner Deutscher Server mit Fokus ...</h5>', 'post2', '', 'inherit', 'closed', 'closed', '', '70-autosave-v1', '', '', '2018-08-07 15:35:22', '2018-08-07 15:35:22', '', 70, 'http://localhost/wordpress/2018/08/07/70-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (135, 1, '2018-08-07 15:35:41', '2018-08-07 15:35:41', '<img class=\"size-full wp-image-133 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/340546839994695694.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Eintracht Prüg...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Ein kleiner Deutscher Server mit Fokus ...</h5>\r\n<!--more-->\r\n\r\nThis is the test .', 'post2', '', 'inherit', 'closed', 'closed', '', '70-revision-v1', '', '', '2018-08-07 15:35:41', '2018-08-07 15:35:41', '', 70, 'http://localhost/wordpress/2018/08/07/70-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (136, 1, '2018-08-07 15:36:43', '2018-08-07 15:36:43', '', '429679495449018371', '', 'inherit', 'open', 'closed', '', '429679495449018371', '', '', '2018-08-07 15:36:43', '2018-08-07 15:36:43', '', 68, 'http://localhost/wordpress/wp-content/uploads/2018/07/429679495449018371.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (137, 1, '2018-08-07 15:37:27', '2018-08-07 15:37:27', '<img class=\"alignnone size-full wp-image-136 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/429679495449018371.png\" alt=\"\" width=\"128\" height=\"128\" />\n\n<hr />\n\n<h5 class=\"card-title\" style=\"text-align: center;\">Eintracht Prüg...</h5>\n<h5 class=\"card-title\" style=\"text-align: center;\">Ein kleiner Deutscher Server mit Fokus ...</h5>\n<!--more-->', 'post1', '', 'inherit', 'closed', 'closed', '', '68-autosave-v1', '', '', '2018-08-07 15:37:27', '2018-08-07 15:37:27', '', 68, 'http://localhost/wordpress/2018/08/07/68-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (138, 1, '2018-08-07 15:37:37', '2018-08-07 15:37:37', '<img class=\"alignnone size-full wp-image-136 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/429679495449018371.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Eintracht Prüg...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Ein kleiner Deutscher Server mit Fokus ...</h5>\r\n<!--more-->\r\n\r\nThe result is here, thanks', 'post1', '', 'inherit', 'closed', 'closed', '', '68-revision-v1', '', '', '2018-08-07 15:37:37', '2018-08-07 15:37:37', '', 68, 'http://localhost/wordpress/2018/08/07/68-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (139, 1, '2018-08-07 15:38:20', '2018-08-07 15:38:20', '', '451356836990287872', '', 'inherit', 'open', 'closed', '', '451356836990287872', '', '', '2018-08-07 15:38:20', '2018-08-07 15:38:20', '', 1, 'http://localhost/wordpress/wp-content/uploads/2018/07/451356836990287872.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (140, 1, '2018-08-07 15:38:58', '2018-08-07 15:38:58', '<img class=\"alignnone size-full wp-image-139 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/451356836990287872.png\" alt=\"\" width=\"128\" height=\"128\" />\n\n<hr />\n\n<h5 class=\"card-title\">osu!Perfect</h5>\n<h5 class=\"card-title\">Welcoming community to all osu! players...</h5>', 'post0', '', 'inherit', 'closed', 'closed', '', '1-autosave-v1', '', '', '2018-08-07 15:38:58', '2018-08-07 15:38:58', '', 1, 'http://localhost/wordpress/2018/08/07/1-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (141, 1, '2018-08-07 15:39:11', '2018-08-07 15:39:11', '<img class=\"alignnone size-full wp-image-139 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/451356836990287872.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">osu!Perfect</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Welcoming community to all osu! players...</h5>\r\n<!--more-->This is the result.', 'post0', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2018-08-07 15:39:11', '2018-08-07 15:39:11', '', 1, 'http://localhost/wordpress/2018/08/07/1-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (142, 1, '2018-08-07 15:40:52', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2018-08-07 15:40:52', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=142', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (143, 1, '2018-08-07 15:42:11', '2018-08-07 15:42:11', '<img class=\"size-full wp-image-144 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/452157688877678592.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Steam VK</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are one of the largest Steam communi...</h5>\r\n<!--more-->\r\n\r\nThis is the result.', 'post5', '', 'publish', 'open', 'open', '', 'post5', '', '', '2018-08-07 15:51:21', '2018-08-07 15:51:21', '', 0, 'http://localhost/wordpress/?p=143', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (144, 1, '2018-08-07 15:41:15', '2018-08-07 15:41:15', '', '452157688877678592', '', 'inherit', 'open', 'closed', '', '452157688877678592', '', '', '2018-08-07 15:41:15', '2018-08-07 15:41:15', '', 143, 'http://localhost/wordpress/wp-content/uploads/2018/08/452157688877678592.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (145, 1, '2018-08-07 15:42:11', '2018-08-07 15:42:11', '<img class=\"size-full wp-image-144 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/452157688877678592.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Steam VK</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are one of the largest Steam communi...</h5>\r\n<!--more-->\r\n\r\nThis is the result.', 'post5', '', 'inherit', 'closed', 'closed', '', '143-revision-v1', '', '', '2018-08-07 15:42:11', '2018-08-07 15:42:11', '', 143, 'http://localhost/wordpress/2018/08/07/143-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (146, 1, '2018-08-07 15:44:14', '2018-08-07 15:44:14', '<img class=\"size-full wp-image-147 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461274876905390081.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">osu!Perfect</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Welcoming community to all osu! players...</h5>\r\n<!--more-->This is the reslt', 'post6', '', 'publish', 'open', 'open', '', 'post6', '', '', '2018-08-07 15:51:13', '2018-08-07 15:51:13', '', 0, 'http://localhost/wordpress/?p=146', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (147, 1, '2018-08-07 15:43:13', '2018-08-07 15:43:13', '', '461274876905390081', '', 'inherit', 'open', 'closed', '', '461274876905390081', '', '', '2018-08-07 15:43:13', '2018-08-07 15:43:13', '', 146, 'http://localhost/wordpress/wp-content/uploads/2018/08/461274876905390081.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (148, 1, '2018-08-07 15:44:14', '2018-08-07 15:44:14', '<img class=\"size-full wp-image-147 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461274876905390081.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">osu!Perfect</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Welcoming community to all osu! players...</h5>', 'post6', '', 'inherit', 'closed', 'closed', '', '146-revision-v1', '', '', '2018-08-07 15:44:14', '2018-08-07 15:44:14', '', 146, 'http://localhost/wordpress/2018/08/07/146-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (149, 1, '2018-08-07 15:45:21', '2018-08-07 15:45:21', '<img class=\"alignnone size-full wp-image-150 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461863108730945537.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">D I C E ♢</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">If you\'re looking for a place to chat a...</h5>\r\n<!--more-->This is the reslt', 'post7', '', 'publish', 'open', 'open', '', 'post7', '', '', '2018-08-07 15:50:48', '2018-08-07 15:50:48', '', 0, 'http://localhost/wordpress/?p=149', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (150, 1, '2018-08-07 15:44:55', '2018-08-07 15:44:55', '', '461863108730945537', '', 'inherit', 'open', 'closed', '', '461863108730945537', '', '', '2018-08-07 15:44:55', '2018-08-07 15:44:55', '', 149, 'http://localhost/wordpress/wp-content/uploads/2018/08/461863108730945537.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (151, 1, '2018-08-07 15:45:21', '2018-08-07 15:45:21', '<img class=\"alignnone size-full wp-image-150 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461863108730945537.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">D I C E ♢</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">If you\'re looking for a place to chat a...</h5>', 'post7', '', 'inherit', 'closed', 'closed', '', '149-revision-v1', '', '', '2018-08-07 15:45:21', '2018-08-07 15:45:21', '', 149, 'http://localhost/wordpress/2018/08/07/149-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (152, 1, '2018-08-07 15:46:39', '2018-08-07 15:46:39', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post8', '', 'publish', 'open', 'open', '', 'post8', '', '', '2018-08-07 15:50:29', '2018-08-07 15:50:29', '', 0, 'http://localhost/wordpress/?p=152', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (153, 1, '2018-08-07 15:45:53', '2018-08-07 15:45:53', '', '462415420951887882', '', 'inherit', 'open', 'closed', '', '462415420951887882', '', '', '2018-08-07 15:45:53', '2018-08-07 15:45:53', '', 152, 'http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (154, 1, '2018-08-07 15:46:39', '2018-08-07 15:46:39', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>', 'post8', '', 'inherit', 'closed', 'closed', '', '152-revision-v1', '', '', '2018-08-07 15:46:39', '2018-08-07 15:46:39', '', 152, 'http://localhost/wordpress/2018/08/07/152-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (155, 1, '2018-08-07 15:47:27', '2018-08-07 15:47:27', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post9', '', 'publish', 'open', 'open', '', 'post9', '', '', '2018-08-07 16:36:26', '2018-08-07 16:36:26', '', 0, 'http://localhost/wordpress/?p=155', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (156, 1, '2018-08-07 15:46:59', '2018-08-07 15:46:59', '', '466069566787944469', '', 'inherit', 'open', 'closed', '', '466069566787944469', '', '', '2018-08-07 15:46:59', '2018-08-07 15:46:59', '', 155, 'http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (157, 1, '2018-08-07 15:47:27', '2018-08-07 15:47:27', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n<p style=\"text-align: center;\">Nation™</p>\r\n<p style=\"text-align: center;\">With 2500+ members Nation is an upcomin...</p>', 'post9', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-08-07 15:47:27', '2018-08-07 15:47:27', '', 155, 'http://localhost/wordpress/2018/08/07/155-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (158, 1, '2018-08-07 15:48:18', '2018-08-07 15:48:18', '<img class=\"alignnone size-full wp-image-159 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474406326114451476.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<!--more-->\r\n\r\nThis is the reslt', 'post10', '', 'publish', 'open', 'open', '', 'post10', '', '', '2018-08-07 15:49:21', '2018-08-07 15:49:21', '', 0, 'http://localhost/wordpress/?p=158', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (159, 1, '2018-08-07 15:47:50', '2018-08-07 15:47:50', '', '474406326114451476', '', 'inherit', 'open', 'closed', '', '474406326114451476', '', '', '2018-08-07 15:47:50', '2018-08-07 15:47:50', '', 158, 'http://localhost/wordpress/wp-content/uploads/2018/08/474406326114451476.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (160, 1, '2018-08-07 15:48:18', '2018-08-07 15:48:18', '<img class=\"alignnone size-full wp-image-159 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474406326114451476.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>', 'post10', '', 'inherit', 'closed', 'closed', '', '158-revision-v1', '', '', '2018-08-07 15:48:18', '2018-08-07 15:48:18', '', 158, 'http://localhost/wordpress/2018/08/07/158-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (161, 1, '2018-08-07 15:49:21', '2018-08-07 15:49:21', '<img class=\"alignnone size-full wp-image-159 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474406326114451476.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<!--more-->\r\n\r\nThis is the reslt', 'post10', '', 'inherit', 'closed', 'closed', '', '158-revision-v1', '', '', '2018-08-07 15:49:21', '2018-08-07 15:49:21', '', 158, 'http://localhost/wordpress/2018/08/07/158-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (162, 1, '2018-08-07 15:50:14', '2018-08-07 15:50:14', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n<p style=\"text-align: center;\">Nation™</p>\r\n<p style=\"text-align: center;\">With 2500+ members Nation is an upcomin...<!--more-->This is the reslt</p>', 'post9', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-08-07 15:50:14', '2018-08-07 15:50:14', '', 155, 'http://localhost/wordpress/2018/08/07/155-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (163, 1, '2018-08-07 15:50:29', '2018-08-07 15:50:29', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post8', '', 'inherit', 'closed', 'closed', '', '152-revision-v1', '', '', '2018-08-07 15:50:29', '2018-08-07 15:50:29', '', 152, 'http://localhost/wordpress/2018/08/07/152-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (164, 1, '2018-08-07 15:50:48', '2018-08-07 15:50:48', '<img class=\"alignnone size-full wp-image-150 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461863108730945537.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">D I C E ♢</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">If you\'re looking for a place to chat a...</h5>\r\n<!--more-->This is the reslt', 'post7', '', 'inherit', 'closed', 'closed', '', '149-revision-v1', '', '', '2018-08-07 15:50:48', '2018-08-07 15:50:48', '', 149, 'http://localhost/wordpress/2018/08/07/149-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (165, 1, '2018-08-07 15:51:13', '2018-08-07 15:51:13', '<img class=\"size-full wp-image-147 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461274876905390081.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">osu!Perfect</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Welcoming community to all osu! players...</h5>\r\n<!--more-->This is the reslt', 'post6', '', 'inherit', 'closed', 'closed', '', '146-revision-v1', '', '', '2018-08-07 15:51:13', '2018-08-07 15:51:13', '', 146, 'http://localhost/wordpress/2018/08/07/146-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (166, 1, '2018-08-07 16:22:07', '2018-08-07 16:22:07', '{\n \"ribosome::background_image\": {\n \"value\": \"\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-07 16:22:07\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '6c66f539-0998-4baa-a5ff-087b32749eaa', '', '', '2018-08-07 16:22:07', '2018-08-07 16:22:07', '', 0, 'http://localhost/wordpress/2018/08/07/6c66f539-0998-4baa-a5ff-087b32749eaa/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (167, 1, '2018-08-07 16:36:26', '2018-08-07 16:36:26', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post9', '', 'inherit', 'closed', 'closed', '', '155-revision-v1', '', '', '2018-08-07 16:36:26', '2018-08-07 16:36:26', '', 155, 'http://localhost/wordpress/2018/08/07/155-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (168, 1, '2018-08-07 17:08:43', '0000-00-00 00:00:00', '{\n \"ribosome::ribosome_color_tema\": {\n \"value\": \"#DD9933\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-07 17:08:43\"\n }\n}', '', '', 'auto-draft', 'closed', 'closed', '', '61ded2e4-7183-4023-a6b3-e5d4d116233c', '', '', '2018-08-07 17:08:43', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=168', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (169, 1, '2018-08-07 17:54:33', '2018-08-07 17:54:33', '{\n \"sidebars_widgets[sidebar-1]\": {\n \"value\": [\n \"text-8\",\n \"text-11\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-07 17:54:33\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '3c36743a-e05e-4d93-91b6-6b74f485cb13', '', '', '2018-08-07 17:54:33', '2018-08-07 17:54:33', '', 0, 'http://localhost/wordpress/2018/08/07/3c36743a-e05e-4d93-91b6-6b74f485cb13/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (170, 1, '2018-08-08 02:17:14', '2018-08-08 02:17:14', 'sfdsafafas', 'Blog', '', 'inherit', 'closed', 'closed', '', '11-revision-v1', '', '', '2018-08-08 02:17:14', '2018-08-08 02:17:14', '', 11, 'http://localhost/wordpress/2018/08/08/11-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (171, 1, '2018-08-08 02:17:24', '2018-08-08 02:17:24', 'dfdsaf', 'asfdsa', '', 'trash', 'closed', 'closed', '', 'asfdsa__trashed', '', '', '2018-08-08 02:19:47', '2018-08-08 02:19:47', '', 0, 'http://localhost/wordpress/?page_id=171', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (172, 1, '2018-08-08 02:17:24', '2018-08-08 02:17:24', 'dfdsaf', 'asfdsa', '', 'inherit', 'closed', 'closed', '', '171-revision-v1', '', '', '2018-08-08 02:17:24', '2018-08-08 02:17:24', '', 171, 'http://localhost/wordpress/2018/08/08/171-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (173, 1, '2018-08-08 02:17:39', '2018-08-08 02:17:39', 'ggg', 'ggg', '', 'trash', 'closed', 'closed', '', 'afdaf__trashed', '', '', '2018-08-08 02:19:19', '2018-08-08 02:19:19', '', 0, 'http://localhost/wordpress/?page_id=173', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (174, 1, '2018-08-08 02:17:39', '2018-08-08 02:17:39', 'afsdfas', 'afdaf', '', 'inherit', 'closed', 'closed', '', '173-revision-v1', '', '', '2018-08-08 02:17:39', '2018-08-08 02:17:39', '', 173, 'http://localhost/wordpress/2018/08/08/173-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (175, 1, '2018-08-08 02:17:47', '2018-08-08 02:17:47', 'ggg', 'ggg', '', 'inherit', 'closed', 'closed', '', '173-revision-v1', '', '', '2018-08-08 02:17:47', '2018-08-08 02:17:47', '', 173, 'http://localhost/wordpress/2018/08/08/173-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (176, 1, '2018-08-08 02:17:54', '2018-08-08 02:17:54', 'fgf', 'gfgf', '', 'trash', 'closed', 'closed', '', 'gfgf__trashed', '', '', '2018-08-08 02:19:40', '2018-08-08 02:19:40', '', 0, 'http://localhost/wordpress/?page_id=176', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (177, 1, '2018-08-08 02:17:54', '2018-08-08 02:17:54', 'fgf', 'gfgf', '', 'inherit', 'closed', 'closed', '', '176-revision-v1', '', '', '2018-08-08 02:17:54', '2018-08-08 02:17:54', '', 176, 'http://localhost/wordpress/2018/08/08/176-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (178, 1, '2018-08-08 02:18:03', '2018-08-08 02:18:03', 'sgfsg', 'fsg', '', 'trash', 'closed', 'closed', '', 'fsg__trashed', '', '', '2018-08-08 02:19:33', '2018-08-08 02:19:33', '', 0, 'http://localhost/wordpress/?page_id=178', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (179, 1, '2018-08-08 02:18:03', '2018-08-08 02:18:03', 'sgfsg', 'fsg', '', 'inherit', 'closed', 'closed', '', '178-revision-v1', '', '', '2018-08-08 02:18:03', '2018-08-08 02:18:03', '', 178, 'http://localhost/wordpress/2018/08/08/178-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (180, 1, '2018-08-08 02:18:13', '2018-08-08 02:18:13', 'sfgsfdg', 'fdsgs', '', 'trash', 'closed', 'closed', '', 'fdsgs__trashed', '', '', '2018-08-08 02:19:31', '2018-08-08 02:19:31', '', 0, 'http://localhost/wordpress/?page_id=180', 0, 'page', '', 0);
INSERT INTO `wp_posts` VALUES (181, 1, '2018-08-08 02:18:13', '2018-08-08 02:18:13', 'sfgsfdg', 'fdsgs', '', 'inherit', 'closed', 'closed', '', '180-revision-v1', '', '', '2018-08-08 02:18:13', '2018-08-08 02:18:13', '', 180, 'http://localhost/wordpress/2018/08/08/180-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (182, 1, '2018-08-09 15:09:26', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-08-09 15:09:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?post_type=wp_show_posts&p=182', 0, 'wp_show_posts', '', 0);
INSERT INTO `wp_posts` VALUES (183, 1, '2018-08-09 15:18:39', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2018-08-09 15:18:39', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?post_type=wp_show_posts&p=183', 0, 'wp_show_posts', '', 0);
INSERT INTO `wp_posts` VALUES (184, 1, '2018-08-09 15:20:31', '2018-08-09 15:20:31', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post11', '', 'publish', 'open', 'open', '', 'post11', '', '', '2018-08-09 15:21:06', '2018-08-09 15:21:06', '', 0, 'http://localhost/wordpress/?p=184', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (185, 1, '2018-08-09 15:19:17', '2018-08-09 15:19:17', '', '474710468766859273', '', 'inherit', 'open', 'closed', '', '474710468766859273', '', '', '2018-08-09 15:19:17', '2018-08-09 15:19:17', '', 184, 'http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (186, 1, '2018-08-09 15:20:31', '2018-08-09 15:20:31', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>', 'post11', '', 'inherit', 'closed', 'closed', '', '184-revision-v1', '', '', '2018-08-09 15:20:31', '2018-08-09 15:20:31', '', 184, 'http://localhost/wordpress/2018/08/09/184-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (187, 1, '2018-08-09 15:21:06', '2018-08-09 15:21:06', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post11', '', 'inherit', 'closed', 'closed', '', '184-revision-v1', '', '', '2018-08-09 15:21:06', '2018-08-09 15:21:06', '', 184, 'http://localhost/wordpress/2018/08/09/184-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (188, 1, '2018-08-09 15:29:57', '2018-08-09 15:29:57', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post12', '', 'publish', 'open', 'open', '', 'post12', '', '', '2018-08-09 15:29:57', '2018-08-09 15:29:57', '', 0, 'http://localhost/wordpress/?p=188', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (189, 1, '2018-08-09 15:29:57', '2018-08-09 15:29:57', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post12', '', 'inherit', 'closed', 'closed', '', '188-revision-v1', '', '', '2018-08-09 15:29:57', '2018-08-09 15:29:57', '', 188, 'http://localhost/wordpress/2018/08/09/188-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (190, 1, '2018-08-09 15:30:11', '2018-08-09 15:30:11', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post13', '', 'publish', 'open', 'open', '', 'post13', '', '', '2018-08-09 15:30:15', '2018-08-09 15:30:15', '', 0, 'http://localhost/wordpress/?p=190', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (191, 1, '2018-08-09 15:30:11', '2018-08-09 15:30:11', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post13', '', 'inherit', 'closed', 'closed', '', '190-revision-v1', '', '', '2018-08-09 15:30:11', '2018-08-09 15:30:11', '', 190, 'http://localhost/wordpress/2018/08/09/190-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (192, 1, '2018-08-09 15:33:05', '2018-08-09 15:33:05', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post14', '', 'publish', 'open', 'open', '', 'post14', '', '', '2018-08-09 15:33:05', '2018-08-09 15:33:05', '', 0, 'http://localhost/wordpress/?p=192', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (193, 1, '2018-08-09 15:33:05', '2018-08-09 15:33:05', '<img class=\"alignnone size-full wp-image-185 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/474710468766859273.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">RCC Tech & Ente...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We Welcome Everyone to join RCC TEC...</h5>\r\n<!--more-->hello hello', 'post14', '', 'inherit', 'closed', 'closed', '', '192-revision-v1', '', '', '2018-08-09 15:33:05', '2018-08-09 15:33:05', '', 192, 'http://localhost/wordpress/2018/08/09/192-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (194, 1, '2018-08-09 15:33:28', '2018-08-09 15:33:28', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post15', '', 'publish', 'open', 'open', '', 'post15', '', '', '2018-08-09 15:33:28', '2018-08-09 15:33:28', '', 0, 'http://localhost/wordpress/?p=194', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (195, 1, '2018-08-09 15:33:28', '2018-08-09 15:33:28', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post15', '', 'inherit', 'closed', 'closed', '', '194-revision-v1', '', '', '2018-08-09 15:33:28', '2018-08-09 15:33:28', '', 194, 'http://localhost/wordpress/2018/08/09/194-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (196, 1, '2018-08-09 15:33:40', '2018-08-09 15:33:40', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post16', '', 'publish', 'open', 'open', '', 'post16', '', '', '2018-08-09 15:33:40', '2018-08-09 15:33:40', '', 0, 'http://localhost/wordpress/?p=196', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (197, 1, '2018-08-09 15:33:40', '2018-08-09 15:33:40', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post16', '', 'inherit', 'closed', 'closed', '', '196-revision-v1', '', '', '2018-08-09 15:33:40', '2018-08-09 15:33:40', '', 196, 'http://localhost/wordpress/2018/08/09/196-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (198, 1, '2018-08-09 15:33:54', '2018-08-09 15:33:54', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post17', '', 'publish', 'open', 'open', '', 'post17', '', '', '2018-08-09 15:33:54', '2018-08-09 15:33:54', '', 0, 'http://localhost/wordpress/?p=198', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (199, 1, '2018-08-09 15:33:54', '2018-08-09 15:33:54', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post17', '', 'inherit', 'closed', 'closed', '', '198-revision-v1', '', '', '2018-08-09 15:33:54', '2018-08-09 15:33:54', '', 198, 'http://localhost/wordpress/2018/08/09/198-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (200, 1, '2018-08-09 15:34:07', '2018-08-09 15:34:07', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post18', '', 'publish', 'open', 'open', '', 'post18', '', '', '2018-08-09 15:34:07', '2018-08-09 15:34:07', '', 0, 'http://localhost/wordpress/?p=200', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (201, 1, '2018-08-09 15:34:07', '2018-08-09 15:34:07', '<img class=\"alignnone size-full wp-image-153 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/462415420951887882.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The Neko Café...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">We are a active,growing & friendly ...</h5>\r\n<!--more-->This is the reslt', 'post18', '', 'inherit', 'closed', 'closed', '', '200-revision-v1', '', '', '2018-08-09 15:34:07', '2018-08-09 15:34:07', '', 200, 'http://localhost/wordpress/2018/08/09/200-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (202, 1, '2018-08-09 15:34:56', '2018-08-09 15:34:56', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post19', '', 'publish', 'open', 'open', '', 'post19', '', '', '2018-08-09 15:34:56', '2018-08-09 15:34:56', '', 0, 'http://localhost/wordpress/?p=202', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (203, 1, '2018-08-09 15:34:56', '2018-08-09 15:34:56', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post19', '', 'inherit', 'closed', 'closed', '', '202-revision-v1', '', '', '2018-08-09 15:34:56', '2018-08-09 15:34:56', '', 202, 'http://localhost/wordpress/2018/08/09/202-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (204, 1, '2018-08-09 15:35:09', '2018-08-09 15:35:09', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post20', '', 'publish', 'open', 'open', '', 'post20', '', '', '2018-08-09 15:35:09', '2018-08-09 15:35:09', '', 0, 'http://localhost/wordpress/?p=204', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (205, 1, '2018-08-09 15:35:09', '2018-08-09 15:35:09', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post20', '', 'inherit', 'closed', 'closed', '', '204-revision-v1', '', '', '2018-08-09 15:35:09', '2018-08-09 15:35:09', '', 204, 'http://localhost/wordpress/2018/08/09/204-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (206, 1, '2018-08-09 15:36:43', '2018-08-09 15:36:43', '<img class=\"size-full wp-image-228 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/208383978137321472.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post21', '', 'publish', 'open', 'open', '', 'post20-2', '', '', '2018-08-10 07:39:51', '2018-08-10 07:39:51', '', 0, 'http://localhost/wordpress/?p=206', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (207, 1, '2018-08-09 15:36:43', '2018-08-09 15:36:43', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post20', '', 'inherit', 'closed', 'closed', '', '206-revision-v1', '', '', '2018-08-09 15:36:43', '2018-08-09 15:36:43', '', 206, 'http://localhost/wordpress/2018/08/09/206-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (208, 1, '2018-08-09 15:36:56', '2018-08-09 15:36:56', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post21', '', 'inherit', 'closed', 'closed', '', '206-revision-v1', '', '', '2018-08-09 15:36:56', '2018-08-09 15:36:56', '', 206, 'http://localhost/wordpress/2018/08/09/206-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (209, 1, '2018-08-09 15:37:10', '2018-08-09 15:37:10', '<img class=\"alignnone size-full wp-image-147 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461274876905390081.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post22', '', 'publish', 'open', 'open', '', 'post22', '', '', '2018-08-10 07:39:11', '2018-08-10 07:39:11', '', 0, 'http://localhost/wordpress/?p=209', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (210, 1, '2018-08-09 15:37:10', '2018-08-09 15:37:10', '<img class=\"alignnone size-full wp-image-156 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/466069566787944469.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post22', '', 'inherit', 'closed', 'closed', '', '209-revision-v1', '', '', '2018-08-09 15:37:10', '2018-08-09 15:37:10', '', 209, 'http://localhost/wordpress/2018/08/09/209-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (211, 1, '2018-08-09 15:45:55', '2018-08-09 15:45:55', '<img class=\"size-full wp-image-130 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post23', '', 'publish', 'open', 'open', '', 'post23', '', '', '2018-08-09 15:45:55', '2018-08-09 15:45:55', '', 0, 'http://localhost/wordpress/?p=211', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (212, 1, '2018-08-09 15:45:55', '2018-08-09 15:45:55', '<img class=\"size-full wp-image-130 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post23', '', 'inherit', 'closed', 'closed', '', '211-revision-v1', '', '', '2018-08-09 15:45:55', '2018-08-09 15:45:55', '', 211, 'http://localhost/wordpress/2018/08/09/211-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (213, 1, '2018-08-09 15:46:09', '2018-08-09 15:46:09', '<img class=\"alignnone size-full wp-image-126 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post24', '', 'publish', 'open', 'open', '', 'post24', '', '', '2018-08-10 07:38:20', '2018-08-10 07:38:20', '', 0, 'http://localhost/wordpress/?p=213', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (214, 1, '2018-08-09 15:46:09', '2018-08-09 15:46:09', '<img class=\"size-full wp-image-130 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post24', '', 'inherit', 'closed', 'closed', '', '213-revision-v1', '', '', '2018-08-09 15:46:09', '2018-08-09 15:46:09', '', 213, 'http://localhost/wordpress/2018/08/09/213-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (215, 1, '2018-08-09 15:46:25', '2018-08-09 15:46:25', '<img class=\"size-full wp-image-220 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/340546839994695694.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post25', '', 'publish', 'open', 'open', '', 'post25', '', '', '2018-08-10 07:37:48', '2018-08-10 07:37:48', '', 0, 'http://localhost/wordpress/?p=215', 0, 'post', '', 0);
INSERT INTO `wp_posts` VALUES (216, 1, '2018-08-09 15:46:25', '2018-08-09 15:46:25', '<img class=\"size-full wp-image-130 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/321845546534830085.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post25', '', 'inherit', 'closed', 'closed', '', '215-revision-v1', '', '', '2018-08-09 15:46:25', '2018-08-09 15:46:25', '', 215, 'http://localhost/wordpress/2018/08/09/215-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (217, 1, '2018-08-09 16:01:24', '2018-08-09 16:01:24', '{\n \"ribosome::ribosome_footer_text_center\": {\n \"value\": \"Footer text center\\nAbout\\nBlog\\nHosting\\nDonate\\nSupport\\nDevelopers\\nGet Involved\\nLearn\\nShowcase\\nPlugins\\nThemes\\nIdeas\\nWordCamp\\nWordPress.TV\\nBuddyPress\\nbbPress\\nWordPress.com\\nMatt\\nPrivacy\\nPublic Code\\nMobile phone:xxxxxxxxx\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 16:01:24\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '3b6fc392-36f9-4d80-96af-0f6986de2a2e', '', '', '2018-08-09 16:01:24', '2018-08-09 16:01:24', '', 0, 'http://localhost/wordpress/2018/08/09/3b6fc392-36f9-4d80-96af-0f6986de2a2e/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (218, 1, '2018-08-09 16:57:22', '0000-00-00 00:00:00', '{\n \"sidebars_widgets[sidebar-1]\": {\n \"value\": [\n \"text-8\",\n \"text-11\",\n \"meta-6\",\n \"nav_menu-4\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 16:57:22\"\n },\n \"widget_custom_html[3]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjI6Ijd5IjtzOjc6ImNvbnRlbnQiO3M6MjoicnQiO30=\",\n \"title\": \"7y\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"7d9b7fc13c052927573f4b24f0bd176c\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 16:51:54\"\n },\n \"widget_meta[6]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YToxOntzOjU6InRpdGxlIjtzOjI6ImhnIjt9\",\n \"title\": \"hg\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"f119d4bb4399270d95bb7389e3bb1620\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 16:51:54\"\n },\n \"widget_media_gallery[3]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo2OntzOjU6InRpdGxlIjtzOjQ6ImRkZGYiO3M6NzoiY29sdW1ucyI7aTozO3M6NDoic2l6ZSI7czo5OiJ0aHVtYm5haWwiO3M6OToibGlua190eXBlIjtzOjQ6InBvc3QiO3M6MTQ6Im9yZGVyYnlfcmFuZG9tIjtiOjA7czozOiJpZHMiO2E6MTp7aTowO2k6MTg1O319\",\n \"title\": \"dddf\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"96ece53947d3405ed5eb210a4b5b936b\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 16:56:47\"\n },\n \"widget_nav_menu[4]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjI6ImRmIjtzOjg6Im5hdl9tZW51IjtpOjM7fQ==\",\n \"title\": \"df\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"21f5ee3c43094040bb459dd99fac5f0c\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 16:56:47\"\n }\n}', '', '', 'auto-draft', 'closed', 'closed', '', 'fbd868a8-fcee-4046-a941-149937907911', '', '', '2018-08-09 16:57:22', '2018-08-09 16:57:22', '', 0, 'http://localhost/wordpress/?p=218', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (219, 1, '2018-08-09 17:01:44', '2018-08-09 17:01:44', '{\n \"ribosome::ribosome_color_tema\": {\n \"value\": \"#00BCD5\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-09 17:01:44\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '74f60af6-1c77-401c-b946-9ea570432803', '', '', '2018-08-09 17:01:44', '2018-08-09 17:01:44', '', 0, 'http://localhost/wordpress/2018/08/09/74f60af6-1c77-401c-b946-9ea570432803/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (220, 1, '2018-08-10 04:18:10', '2018-08-10 04:18:10', '', '340546839994695694', '', 'inherit', 'open', 'closed', '', '340546839994695694-2', '', '', '2018-08-10 07:37:31', '2018-08-10 07:37:31', '', 215, 'http://localhost/wordpress/wp-content/uploads/2018/08/340546839994695694.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` VALUES (221, 1, '2018-08-10 04:19:29', '0000-00-00 00:00:00', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6MjkwOiI8aW1nIGNsYXNzPSJzaXplLWZ1bGwgd3AtaW1hZ2UtMjIwIGFsaWduY2VudGVyIiBzcmM9Imh0dHA6Ly9sb2NhbGhvc3Qvd29yZHByZXNzL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA4LzM0MDU0NjgzOTk5NDY5NTY5NC5qcGciIGFsdD0iIiB3aWR0aD0iMTI4IiBoZWlnaHQ9IjEyOCIgLz4NCjx1bD4NCiAJPGxpPmRpc2NvcmQgb25lPC9saT4NCiAJPGxpPmRpc2NvcmQgdHdvPC9saT4NCiAJPGxpPmRpc2NvcmQgdGhyZWU8L2xpPg0KIAk8bGk+ZGlzY29yZCBmb3VyPC9saT4NCiAJPGxpPjwvbGk+DQo8L3VsPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"27bec4102cf80090630f08aa43bc7e48\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:19:29\"\n }\n}', '', '', 'auto-draft', 'closed', 'closed', '', 'a55a5432-8ded-409a-ad1c-e76fa1c3f623', '', '', '2018-08-10 04:19:29', '2018-08-10 04:19:29', '', 0, 'http://localhost/wordpress/?p=221', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (222, 1, '2018-08-10 04:27:54', '2018-08-10 04:27:54', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjY4OiI8ZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+wqAgwqAgwqAgwqAgwqAgwqAgwqAgwqAgwqAgwqDwn5OeUHVibGljIFRhbGvwn5OePC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj7CoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDwn5ejUHJpdmF0ZSBUYWxr8J+XozwvZGl2Pg0KPGRpdj48L2Rpdj4NCjwvZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+wqAgwqAgwqAgwqAgwqAgwqAgwqAgwqAgwqAg8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2Rpdj4NCjxkaXY+PC9kaXY+DQo8L2Rpdj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPsKgIMKgIMKgIMKgIMKgIMKgIMKgIMKgIMKgIMKgIMKgIMKgIPCfkqRBRkvwn5KkPC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8L2Rpdj4NCjxkaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtbWVtYmVycy1vbmxpbmUiPsKgIMKgIMKgIMKgIMKgIMKgIMKgIMKgTUVNQkVSUyBPTkxJTkU8L2Rpdj4NCjwvZGl2PiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"702476e2cbe10a86f0fb19d63af1d8cd\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:27:47\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '91824838-a31a-4bee-ab91-8815a4efa652', '', '', '2018-08-10 04:27:54', '2018-08-10 04:27:54', '', 0, 'http://localhost/wordpress/?p=222', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (223, 1, '2018-08-10 04:39:28', '2018-08-10 04:39:28', '{\n \"sidebars_widgets[sidebar-1]\": {\n \"value\": [\n \"text-8\",\n \"text-11\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:33:35\"\n },\n \"widget_text[14]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjc6IkRJU0NPUkQiO3M6NDoidGV4dCI7czowOiIiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"DISCORD\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"71dfbd941e9c732e663bb64dcc7d3b46\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:30:35\"\n },\n \"widget_pages[3]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:30:35\"\n },\n \"widget_nav_menu[4]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:30:35\"\n },\n \"widget_custom_html[3]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YToyOntzOjU6InRpdGxlIjtzOjI6ImZnIjtzOjc6ImNvbnRlbnQiO3M6MTcwOiIg8J+TnlB1YmxpYyBUYWxr8J+Tng0KICAgICAgICAgICAgICAgICAgICDwn5ejUHJpdmF0ZSBUYWxr8J+Xow0KICAgICAgICAgICAgICAgICAg8J+OtlB1YmxpYyBNdXNpY/CfjrYNCiAgICAgICAgICAgICAgICAgICAgICAgIPCfkqRBRkvwn5KkDQogICAgICAgICAgICAgICBNRU1CRVJTIE9OTElORSI7fQ==\",\n \"title\": \"fg\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"547acb33d0aafce2b1d370c21b2b5b95\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:32:35\"\n },\n \"widget_archives[6]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:33:35\"\n },\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjA0OiI8ZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+PGNlbnRlcj7wn5OeUHVibGljIFRhbGvwn5OePC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPvCfjrZQdWJsaWMgTXVzaWPwn462PC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPvCfkqRBRkvwn5KkPC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8L2Rpdj4NCjxkaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtbWVtYmVycy1vbmxpbmUiPjxsZWZ0Pk1FTUJFUlMgT05MSU5FPC9sZWZ0PjwvZGl2Pg0KPC9kaXY+IjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"8aee39636c1485d5a3143995015ee2ce\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:39:00\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '579ec258-ae14-4d04-91df-107fff1207b5', '', '', '2018-08-10 04:39:28', '2018-08-10 04:39:28', '', 0, 'http://localhost/wordpress/?p=223', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (224, 1, '2018-08-10 04:42:31', '0000-00-00 00:00:00', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjIzOiI8ZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+PGNlbnRlcj7wn5OeUHVibGljIFRhbGvwn5OePC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPvCfjrZQdWJsaWMgTXVzaWPwn462PC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPvCfkqRBRkvwn5KkPC9jZW50ZXI+PC9kaXY+DQo8ZGl2PjwvZGl2Pg0KPC9kaXY+DQo8L2Rpdj4NCjxkaXY+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtbWVtYmVycy1vbmxpbmUiPjxsZWZ0Pk1FTUJFUlMgT05MSU5FPC9sZWZ0PjwvZGl2Pg0KPGJ1dHRvbj48L2J1dHRvbj4NCjwvZGl2PiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"9eac63ca44e71f33d44620672ea08879\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 04:42:31\"\n }\n}', '', '', 'auto-draft', 'closed', 'closed', '', 'd40406db-6ca7-42d6-bf44-4e1c51335f8d', '', '', '2018-08-10 04:42:31', '0000-00-00 00:00:00', '', 0, 'http://localhost/wordpress/?p=224', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (225, 1, '2018-08-10 07:37:48', '2018-08-10 07:37:48', '<img class=\"size-full wp-image-220 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/340546839994695694.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post25', '', 'inherit', 'closed', 'closed', '', '215-revision-v1', '', '', '2018-08-10 07:37:48', '2018-08-10 07:37:48', '', 215, 'http://localhost/wordpress/2018/08/10/215-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (226, 1, '2018-08-10 07:38:20', '2018-08-10 07:38:20', '<img class=\"alignnone size-full wp-image-126 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/07/188752295108935680.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">✧・゚: * Zero-G Spot ...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Zero-G Spot is a galaxy themed kink com...</h5>\r\n<!--more-->\r\n\r\ninvite link: <a href=\"http://discord.gg/Dh4kEYM\" target=\"_blank\" rel=\"noopener\">http://discord.gg/Dh4kEYM</a> Category: Gaming Owner: Tornadoblaster1#4932', 'post24', '', 'inherit', 'closed', 'closed', '', '213-revision-v1', '', '', '2018-08-10 07:38:20', '2018-08-10 07:38:20', '', 213, 'http://localhost/wordpress/2018/08/10/213-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (227, 1, '2018-08-10 07:39:11', '2018-08-10 07:39:11', '<img class=\"alignnone size-full wp-image-147 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/461274876905390081.jpg\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post22', '', 'inherit', 'closed', 'closed', '', '209-revision-v1', '', '', '2018-08-10 07:39:11', '2018-08-10 07:39:11', '', 209, 'http://localhost/wordpress/2018/08/10/209-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (228, 1, '2018-08-10 07:39:44', '2018-08-10 07:39:44', '', '208383978137321472', '', 'inherit', 'open', 'closed', '', '208383978137321472', '', '', '2018-08-10 07:39:44', '2018-08-10 07:39:44', '', 206, 'http://localhost/wordpress/wp-content/uploads/2018/08/208383978137321472.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` VALUES (229, 1, '2018-08-10 07:39:51', '2018-08-10 07:39:51', '<img class=\"size-full wp-image-228 aligncenter\" src=\"http://localhost/wordpress/wp-content/uploads/2018/08/208383978137321472.png\" alt=\"\" width=\"128\" height=\"128\" />\r\n\r\n<hr />\r\n\r\n<h5 class=\"card-title\" style=\"text-align: center;\">Discord Emoji &...</h5>\r\n<h5 class=\"card-title\" style=\"text-align: center;\">The official server of DiscordEmoji.com...</h5>\r\n<p style=\"text-align: center;\"><!--more-->This is the reslt</p>', 'post21', '', 'inherit', 'closed', 'closed', '', '206-revision-v1', '', '', '2018-08-10 07:39:51', '2018-08-10 07:39:51', '', 206, 'http://localhost/wordpress/2018/08/10/206-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` VALUES (230, 1, '2018-08-10 08:07:46', '2018-08-10 08:07:46', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjE4OiI8ZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+PGNlbnRlcj7wn5OeUHVibGljIFRhbGvwn5OePC9jZW50ZXI+PC9kaXY+DQo8YnI+PGJyPjxicj4NCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+PGJyPjxicj48YnI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pjxicj48YnI+PGJyPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+PGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfkqRBRkvwn5KkPC9jZW50ZXI+PGNlbnRlcj48L2NlbnRlcj48L2Rpdj48YnI+PGJyPjxicj4NCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LW1lbWJlcnMtb25saW5lIj5NRU1CRVJTIE9OTElORTwvZGl2Pg0KPGRpdj48L2Rpdj48YnI+PGJyPjxicj4NCjwvZGl2Pg0KPGRpdj48L2Rpdj4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"06657e288622b745202587901d1c1846\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:07:41\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '7088816c-2573-456c-8ea0-d982785e40d9', '', '', '2018-08-10 08:07:46', '2018-08-10 08:07:46', '', 0, 'http://localhost/wordpress/?p=230', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (231, 1, '2018-08-10 08:08:41', '2018-08-10 08:08:41', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NTQzOiI8ZGl2Pg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+PGNlbnRlcj7wn5OeUHVibGljIFRhbGvwn5OePC9jZW50ZXI+PC9kaXY+DQombmJzcDsNCg0KPC9kaXY+DQo8Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+Xo1ByaXZhdGUgVGFsa/Cfl6M8L2NlbnRlcj4mbmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+PC9jZW50ZXI+PGNlbnRlcj7wn462UHVibGljIE11c2lj8J+OtjwvY2VudGVyPjwvZGl2Pg0KPC9kaXY+DQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+PC9jZW50ZXI+PGNlbnRlcj7wn5KkQUZL8J+SpDwvY2VudGVyPjxjZW50ZXI+PC9jZW50ZXI+PC9kaXY+DQombmJzcDsNCg0KPC9kaXY+DQo8L2Rpdj4NCjxkaXY+DQo8ZGl2PjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGRpdj48L2Rpdj4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"69c6bde5485df3011352e8f21b0092ec\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:08:41\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '0e863fd5-18b4-44ca-833e-3349e210d5e8', '', '', '2018-08-10 08:08:41', '2018-08-10 08:08:41', '', 0, 'http://localhost/wordpress/2018/08/10/0e863fd5-18b4-44ca-833e-3349e210d5e8/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (232, 1, '2018-08-10 08:09:26', '2018-08-10 08:09:26', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NTQ5OiI8ZGl2PiZuYnNwOw0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwiPg0KPGRpdiBjbGFzcz0id2lkZ2V0LWNoYW5uZWwtbmFtZSI+PGNlbnRlcj7wn5OeUHVibGljIFRhbGvwn5OePC9jZW50ZXI+PC9kaXY+DQombmJzcDsNCg0KPC9kaXY+DQo8Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+Xo1ByaXZhdGUgVGFsa/Cfl6M8L2NlbnRlcj4mbmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+PC9jZW50ZXI+PGNlbnRlcj7wn462UHVibGljIE11c2lj8J+OtjwvY2VudGVyPjwvZGl2Pg0KPC9kaXY+DQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+PC9jZW50ZXI+PGNlbnRlcj7wn5KkQUZL8J+SpDwvY2VudGVyPjxjZW50ZXI+PC9jZW50ZXI+PC9kaXY+DQombmJzcDsNCg0KPC9kaXY+DQo8L2Rpdj4NCjxkaXY+DQo8ZGl2PjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGRpdj48L2Rpdj4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"c88ed247b69d29239ab15d3e6bfccc5c\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:09:26\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '84740483-41e6-4509-958f-a0c3c91e597b', '', '', '2018-08-10 08:09:26', '2018-08-10 08:09:26', '', 0, 'http://localhost/wordpress/2018/08/10/84740483-41e6-4509-958f-a0c3c91e597b/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (233, 1, '2018-08-10 08:20:49', '2018-08-10 08:20:49', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NTUxOiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGRpdj48L2Rpdj4NCiZuYnNwOw0KPC9kaXY+DQo8ZGl2PjwvZGl2PiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"336ecb3b018319406ca1395a0fb33d8b\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:20:49\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '85582226-4e38-45aa-9c8f-cdef8280b44a', '', '', '2018-08-10 08:20:49', '2018-08-10 08:20:49', '', 0, 'http://localhost/wordpress/2018/08/10/85582226-4e38-45aa-9c8f-cdef8280b44a/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (234, 1, '2018-08-10 08:22:06', '2018-08-10 08:22:06', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NTI2OiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGRpdj48L2Rpdj4NCg0KIjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"5ffbae274da0ad294b78a9d56347ebe0\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:22:06\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'd3256be3-0ce0-4e68-b13c-82fc7568526f', '', '', '2018-08-10 08:22:06', '2018-08-10 08:22:06', '', 0, 'http://localhost/wordpress/2018/08/10/d3256be3-0ce0-4e68-b13c-82fc7568526f/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (235, 1, '2018-08-10 08:25:54', '2018-08-10 08:25:54', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NTY4OiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGJ1dHRvbj48YSBocmVmPSIjIj5jb25uZWN0PC9hPjwvYnV0dG9uPg0KPGRpdj48L2Rpdj4NCg0KIjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"d91b06ff6a44f25b09a3bd235b2c2dea\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:25:54\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '7042aea8-d97d-4b4f-acfd-0bd62b9b728b', '', '', '2018-08-10 08:25:54', '2018-08-10 08:25:54', '', 0, 'http://localhost/wordpress/?p=235', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (236, 1, '2018-08-10 08:29:03', '2018-08-10 08:29:03', '{\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQyIjtzOjQ6InRleHQiO3M6MTQ5OiI8b2w+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQo8L29sPg0KPGJ1dHRvbj48YSBocmVmPSIjIj5jb25uZWN0PC9hPjwvYnV0dG9uPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord2\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"7d59410fd48f002727b9cffb8c471fe6\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:29:03\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'ca746ee0-e267-4d02-bd61-936264b48689', '', '', '2018-08-10 08:29:03', '2018-08-10 08:29:03', '', 0, 'http://localhost/wordpress/2018/08/10/ca746ee0-e267-4d02-bd61-936264b48689/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (237, 1, '2018-08-10 08:32:34', '2018-08-10 08:32:34', '{\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQyIjtzOjQ6InRleHQiO3M6MTk3OiI8b2w+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+PGJyPjxicj48YnI+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+PGJyPjxicj48YnI+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+PGJyPjxicj48YnI+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQo8L29sPjxicj48YnI+PGJyPg0KPGJ1dHRvbj48YSBocmVmPSIjIj5jb25uZWN0PC9hPjwvYnV0dG9uPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord2\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"b7ea3b97349edd1551b5019ca7aa9cff\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:32:34\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '5fffebc6-10c5-4cb5-adde-6b1cdd0d7b41', '', '', '2018-08-10 08:32:34', '2018-08-10 08:32:34', '', 0, 'http://localhost/wordpress/?p=237', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (238, 1, '2018-08-10 08:35:59', '2018-08-10 08:35:59', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjIzOiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGJ1dHRvbiBzdHlsZT0ibWFyZ2luLWxlZnQ6IDI4M3B4Ow0KICAgIG1hcmdpbi1ib3R0b206IDIwcHg7Ij48YSBocmVmPSIjIj5jb25uZWN0PC9hPjwvYnV0dG9uPg0KPjxkaXY+PC9kaXY+DQoNCiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"2eeb25eac5168c8ca2b1558ba896aecf\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:35:59\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '696b6002-6270-4b91-b2f7-96ef4514b70e', '', '', '2018-08-10 08:35:59', '2018-08-10 08:35:59', '', 0, 'http://localhost/wordpress/2018/08/10/696b6002-6270-4b91-b2f7-96ef4514b70e/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (239, 1, '2018-08-10 08:37:32', '2018-08-10 08:37:32', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjIxOiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGJ1dHRvbiBzdHlsZT0ibWFyZ2luLWxlZnQ6IDI4M3B4Ow0KICAgIG1hcmdpbi1ib3R0b206IDBweDsiPjxhIGhyZWY9IiMiPmNvbm5lY3Q8L2E+PC9idXR0b24+DQo8ZGl2PjwvZGl2Pg0KDQoiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"81da7bf6d4cfd3d2c7fa0ca2fb0cedcc\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:37:32\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '6a9d0bbb-a813-4655-92d7-1b40449506da', '', '', '2018-08-10 08:37:32', '2018-08-10 08:37:32', '', 0, 'http://localhost/wordpress/?p=239', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (240, 1, '2018-08-10 08:38:06', '2018-08-10 08:38:06', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjA2OiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGJ1dHRvbiBzdHlsZT0ibWFyZ2luLWxlZnQ6IDI4M3B4Ow0KICAgIG1hcmdpbi1ib3R0b206MTBweDsiPjxhIGhyZWY9IiMiPmNvbm5lY3Q8L2E+PC9idXR0b24+DQoiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba1e54d7e93facfe28ea5c0aa6b90b35\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:38:06\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', '9553fd80-a0d8-4650-88d1-614be900dc60', '', '', '2018-08-10 08:38:06', '2018-08-10 08:38:06', '', 0, 'http://localhost/wordpress/2018/08/10/9553fd80-a0d8-4650-88d1-614be900dc60/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (241, 1, '2018-08-10 08:39:08', '2018-08-10 08:39:08', '{\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQyIjtzOjQ6InRleHQiO3M6MjUyOiI8b2w+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+PGJyPjxicj48YnI+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+PGJyPjxicj48YnI+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+PGJyPjxicj48YnI+DQogCTxsaT5kaXNjb3JkIHR3bzwvbGk+DQo8L29sPjxicj48YnI+PGJyPg0KPGJ1dHRvbiBzdHlsZT0ibWFyZ2luLWxlZnQ6IDI4M3B4Ow0KICAgIG1hcmdpbi1ib3R0b206MTBweDsiPjxhIGhyZWY9IiMiPmNvbm5lY3Q8L2E+PC9idXR0b24+DQoiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord2\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"f38bb31f46289acc2dc07079cb436e7a\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:39:07\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'd5303445-3447-495b-abdb-4ad6ebea6f15', '', '', '2018-08-10 08:39:08', '2018-08-10 08:39:08', '', 0, 'http://localhost/wordpress/?p=241', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (242, 1, '2018-08-10 08:39:46', '2018-08-10 08:39:46', '{\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQyIjtzOjQ6InRleHQiO3M6MjY5OiI8Y2VudGVyPjxvbD4NCiAJPGxpPmRpc2NvcmQgdHdvPC9saT48YnI+PGJyPjxicj4NCiAJPGxpPmRpc2NvcmQgdHdvPC9saT48YnI+PGJyPjxicj4NCiAJPGxpPmRpc2NvcmQgdHdvPC9saT48YnI+PGJyPjxicj4NCiAJPGxpPmRpc2NvcmQgdHdvPC9saT4NCjwvb2w+PC9jZW50ZXI+PGJyPjxicj48YnI+DQo8YnV0dG9uIHN0eWxlPSJtYXJnaW4tbGVmdDogMjgzcHg7DQogICAgbWFyZ2luLWJvdHRvbToxMHB4OyI+PGEgaHJlZj0iIyI+Y29ubmVjdDwvYT48L2J1dHRvbj4NCiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord2\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"7e6a37649c4dab04697a42ee7275c1a3\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:39:46\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'd3933056-049f-4f2d-ab88-6b1a194b8379', '', '', '2018-08-10 08:39:46', '2018-08-10 08:39:46', '', 0, 'http://localhost/wordpress/2018/08/10/d3933056-049f-4f2d-ab88-6b1a194b8379/', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (243, 1, '2018-08-10 08:40:49', '2018-08-10 08:40:49', '{\n \"widget_text[11]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQyIjtzOjQ6InRleHQiO3M6MjMzOiI8Y2VudGVyPjxvbD4NCiAJZGlzY29yZCB0d288YnI+PGJyPjxicj4NCiAJZGlzY29yZCB0d288YnI+PGJyPjxicj4NCiAJZGlzY29yZCB0d288YnI+PGJyPjxicj4NCiAJZGlzY29yZCB0d28NCjwvb2w+PC9jZW50ZXI+PGJyPjxicj48YnI+DQo8YnV0dG9uIHN0eWxlPSJtYXJnaW4tbGVmdDogMjgzcHg7DQogICAgbWFyZ2luLWJvdHRvbToxMHB4OyI+PGEgaHJlZj0iIyI+Y29ubmVjdDwvYT48L2J1dHRvbj4NCiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n \"title\": \"discord2\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ed2d1d21f93085b3874a8d7513fa9477\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:40:48\"\n }\n}', '', '', 'trash', 'closed', 'closed', '', 'a4d1bdef-61ba-4b90-aec4-ac43a6545243', '', '', '2018-08-10 08:40:49', '2018-08-10 08:40:49', '', 0, 'http://localhost/wordpress/?p=243', 0, 'customize_changeset', '', 0);
INSERT INTO `wp_posts` VALUES (244, 1, '2018-08-10 08:45:16', '0000-00-00 00:00:00', '{\n \"widget_text[8]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjg6ImRpc2NvcmQxIjtzOjQ6InRleHQiO3M6NjA2OiI8ZGl2Pg0KDQombmJzcDsNCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsIj4NCjxkaXYgY2xhc3M9IndpZGdldC1jaGFubmVsLW5hbWUiPjxjZW50ZXI+8J+TnlB1YmxpYyBUYWxr8J+TnjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPGNlbnRlcj48L2NlbnRlcj48Y2VudGVyPvCfl6NQcml2YXRlIFRhbGvwn5ejPC9jZW50ZXI+Jm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+OtlB1YmxpYyBNdXNpY/CfjrY8L2NlbnRlcj48L2Rpdj4NCjwvZGl2Pg0KJm5ic3A7DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbCI+DQo8ZGl2IGNsYXNzPSJ3aWRnZXQtY2hhbm5lbC1uYW1lIj48Y2VudGVyPjwvY2VudGVyPjxjZW50ZXI+8J+SpEFGS/CfkqQ8L2NlbnRlcj48Y2VudGVyPjwvY2VudGVyPjwvZGl2Pg0KJm5ic3A7DQoNCjwvZGl2Pg0KPC9kaXY+DQo8ZGl2Pg0KPGJ1dHRvbiBzdHlsZT0ibWFyZ2luLWxlZnQ6IDI4M3B4Ow0KICAgIG1hcmdpbi1ib3R0b206MTBweDsiPjxhIGhyZWY9IiMiPmNvbm5lY3Q8L2E+PC9idXR0b24+DQoiO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n \"title\": \"discord1\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"ba1e54d7e93facfe28ea5c0aa6b90b35\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2018-08-10 08:45:16\"\n }\n}', '', '', 'auto-draft', 'closed', 'closed', '', '3b4e7fa7-a288-42f1-b38e-195bbb75e75b', '', '', '2018-08-10 08:45:16', '2018-08-10 08:45:16', '', 0, 'http://localhost/wordpress/?p=244', 0, 'customize_changeset', '', 0);
-- ----------------------------
-- Table structure for wp_term_relationships
-- ----------------------------
DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`, `term_taxonomy_id`) USING BTREE,
INDEX `term_taxonomy_id`(`term_taxonomy_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_term_relationships
-- ----------------------------
INSERT INTO `wp_term_relationships` VALUES (1, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (53, 3, 0);
INSERT INTO `wp_term_relationships` VALUES (63, 3, 0);
INSERT INTO `wp_term_relationships` VALUES (64, 2, 0);
INSERT INTO `wp_term_relationships` VALUES (67, 2, 0);
INSERT INTO `wp_term_relationships` VALUES (68, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (70, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (75, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (78, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (98, 2, 0);
INSERT INTO `wp_term_relationships` VALUES (143, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (146, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (149, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (152, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (155, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (158, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (184, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (188, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (190, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (192, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (194, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (196, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (198, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (200, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (202, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (204, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (206, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (209, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (211, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (213, 1, 0);
INSERT INTO `wp_term_relationships` VALUES (215, 1, 0);
-- ----------------------------
-- Table structure for wp_term_taxonomy
-- ----------------------------
DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`) USING BTREE,
UNIQUE INDEX `term_id_taxonomy`(`term_id`, `taxonomy`) USING BTREE,
INDEX `taxonomy`(`taxonomy`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_term_taxonomy
-- ----------------------------
INSERT INTO `wp_term_taxonomy` VALUES (1, 1, 'category', '', 0, 26);
INSERT INTO `wp_term_taxonomy` VALUES (2, 2, 'nav_menu', '', 0, 3);
INSERT INTO `wp_term_taxonomy` VALUES (3, 3, 'nav_menu', '', 0, 2);
-- ----------------------------
-- Table structure for wp_termmeta
-- ----------------------------
DROP TABLE IF EXISTS `wp_termmeta`;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
PRIMARY KEY (`meta_id`) USING BTREE,
INDEX `term_id`(`term_id`) USING BTREE,
INDEX `meta_key`(`meta_key`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Table structure for wp_terms
-- ----------------------------
DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`) USING BTREE,
INDEX `slug`(`slug`(191)) USING BTREE,
INDEX `name`(`name`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_terms
-- ----------------------------
INSERT INTO `wp_terms` VALUES (1, 'Uncategorized', 'uncategorized', 0);
INSERT INTO `wp_terms` VALUES (2, 'Top Menu', 'top-menu', 0);
INSERT INTO `wp_terms` VALUES (3, 'Social Links Menu', 'social-links-menu', 0);
-- ----------------------------
-- Table structure for wp_usermeta
-- ----------------------------
DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL,
PRIMARY KEY (`umeta_id`) USING BTREE,
INDEX `user_id`(`user_id`) USING BTREE,
INDEX `meta_key`(`meta_key`(191)) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 43 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Compact;
-- ----------------------------
-- Records of wp_usermeta
-- ----------------------------
INSERT INTO `wp_usermeta` VALUES (1, 1, 'nickname', 'discord');
INSERT INTO `wp_usermeta` VALUES (2, 1, 'first_name', '');
INSERT INTO `wp_usermeta` VALUES (3, 1, 'last_name', '');
INSERT INTO `wp_usermeta` VALUES (4, 1, 'description', '');
INSERT INTO `wp_usermeta` VALUES (5, 1, 'rich_editing', 'true');
INSERT INTO `wp_usermeta` VALUES (6, 1, 'syntax_highlighting', 'true');