-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkollaj24-3-2017.sql
1846 lines (1812 loc) · 330 KB
/
kollaj24-3-2017.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
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 10.1.19-MariaDB - mariadb.org binary distribution
-- Server OS: Win32
-- HeidiSQL Version: 9.4.0.5125
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping database structure for kollaj
CREATE DATABASE IF NOT EXISTS `kollaj` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci */;
USE `kollaj`;
-- Dumping structure for table kollaj.chats
CREATE TABLE IF NOT EXISTS `chats` (
`id` int(100) NOT NULL AUTO_INCREMENT,
`sid` int(10) NOT NULL,
`rid` int(10) NOT NULL,
`joinedOn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`,`sid`,`rid`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
-- Dumping data for table kollaj.chats: ~8 rows (approximately)
/*!40000 ALTER TABLE `chats` DISABLE KEYS */;
INSERT INTO `chats` (`id`, `sid`, `rid`, `joinedOn`) VALUES
(1, 1, 21, '2017-02-09 21:17:19'),
(2, 20, 21, '2017-02-09 21:17:33'),
(3, 20, 1, '2017-02-09 21:18:06'),
(4, 1, 23, '2017-02-09 22:36:14'),
(5, 42, 42, '2017-03-16 02:46:41'),
(6, 42, 43, '2017-03-16 02:49:35'),
(7, 42, 44, '2017-03-16 02:56:31'),
(8, 42, 45, '2017-03-16 02:58:55');
/*!40000 ALTER TABLE `chats` ENABLE KEYS */;
-- Dumping structure for table kollaj.comments
CREATE TABLE IF NOT EXISTS `comments` (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`uid` int(10) NOT NULL DEFAULT '0',
`pid` int(10) NOT NULL DEFAULT '0',
`comment` varchar(1000) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`editOver` int(10) DEFAULT NULL,
PRIMARY KEY (`ID`),
KEY `uid` (`uid`),
KEY `pid` (`pid`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table kollaj.comments: ~51 rows (approximately)
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
INSERT INTO `comments` (`ID`, `uid`, `pid`, `comment`, `date`, `editOver`) VALUES
(1, 21, 81, 'só fumam!', '2017-02-07 21:28:01', NULL),
(2, 1, 1, 'este é o 1º comentario escrito no kollaj. O sr. Carlitos deverá receber uma notificação, e um comment. A taxa de sucesso será...', '2017-02-07 23:14:39', NULL),
(3, 1, 1, 'este ficou mt feio... o 2º será', '2017-02-07 23:16:28', NULL),
(4, 1, 60, 'Aloha, just testing around...', '2017-02-07 23:17:43', NULL),
(5, 1, 81, 'here\'s a testé', '2017-02-07 23:20:41', NULL),
(6, 1, 81, 'dat riil test', '2017-02-07 23:21:17', NULL),
(7, 1, 81, 'another comment just to see what happens when you write something that\'s actually long. Does it display correctly?', '2017-02-07 23:22:58', NULL),
(8, 1, 81, 'another test of the comments thing. Dunno if this time it\'ll work. in theory, it should, will it, we\'ll see!', '2017-02-08 14:36:13', NULL),
(9, 1, 81, 'Testtt!', '2017-02-08 16:24:21', NULL),
(10, 1, 77, 'testing smth', '2017-02-09 04:07:23', NULL),
(11, 1, 43, 'test commenmt', '2017-02-09 08:39:12', NULL),
(12, 1, 81, 'uiuiiiasidasjbdasd ', '2017-02-09 16:53:17', NULL),
(13, 1, 81, 'testing comments AGAIN!', '2017-02-09 17:02:49', NULL),
(14, 1, 81, 'testing comments AGAIN!', '2017-02-09 17:02:50', NULL),
(15, 1, 81, 'testing comments AGAIN!', '2017-02-09 17:02:51', NULL),
(16, 1, 81, 'testing comments AGAIN!', '2017-02-09 17:02:51', NULL),
(17, 1, 81, 'testing comments AGAIN!', '2017-02-09 17:02:53', NULL),
(18, 1, 81, 'testing comments AGAIN!', '2017-02-09 17:02:53', NULL),
(19, 1, 43, 'testing again', '2017-02-09 17:03:29', NULL),
(20, 1, 81, '', '2017-02-09 17:04:52', NULL),
(21, 1, 81, 'test', '2017-02-09 17:05:04', NULL),
(22, 1, 81, '', '2017-02-09 17:09:32', NULL),
(23, 1, 81, '', '2017-02-09 17:11:06', NULL),
(24, 1, 81, 'test', '2017-02-09 17:12:31', NULL),
(25, 1, 81, ' ', '2017-02-09 17:13:03', NULL),
(26, 1, 81, ' ', '2017-02-09 17:14:18', NULL),
(27, 1, 81, ' ', '2017-02-09 17:14:24', NULL),
(28, 1, 81, 'tewt', '2017-02-09 17:57:08', NULL),
(29, 1, 81, ' ', '2017-02-09 17:57:29', NULL),
(30, 20, 84, 'Glub glub @spacewalkingninja', '2017-02-13 22:45:37', NULL),
(31, 20, 43, 'Test on bia', '2017-02-13 23:20:46', NULL),
(32, 20, 86, '@spacewalkingninja well, you should be notified now!', '2017-02-14 02:13:30', NULL),
(33, 20, 86, 'test @spacewalkingninja', '2017-02-14 02:17:56', NULL),
(34, 20, 86, '@gothqueen @jafsilva4 @spacewalkingninja', '2017-02-14 02:21:49', NULL),
(35, 20, 86, '@spacewalkingninja, @gothqueen and @jafsilva4', '2017-02-14 02:25:10', NULL),
(36, 20, 86, '@spacewalkingninja, @gothqueen and @jafsilva4', '2017-02-14 02:26:13', NULL),
(37, 20, 86, '@spacewalkingninja, @gothqueen and @jafsilva4', '2017-02-14 02:27:49', NULL),
(38, 20, 86, '@spacewalkingninja, @gothqueen and @jafsilva4', '2017-02-14 02:31:17', NULL),
(39, 1, 84, 'well testing, @jafsilva4', '2017-02-14 18:39:11', NULL),
(40, 20, 86, '@gothqueen, topa isso. @SpaceWalkingNinja topa isso tu também!', '2017-02-14 23:40:33', NULL),
(41, 20, 70, '@spacewalkingNinja q tal? ?', '2017-02-14 23:41:29', NULL),
(42, 1, 121, 'testing this shit', '2017-02-18 00:44:11', NULL),
(43, 1, 12, 'testing', '2017-02-18 00:45:11', NULL),
(44, 1, 11, 'comentarios a pois!', '2017-03-08 17:01:43', NULL),
(45, 1, 11, 'tajaver', '2017-03-08 17:01:49', NULL),
(46, 1, 11, '@jafsilva teste!', '2017-03-10 06:04:59', NULL),
(47, 1, 408, 'test124', '2017-03-10 06:05:35', NULL),
(48, 1, 86, 'Também', '2017-03-10 06:09:24', NULL),
(49, 1, 86, 'Também', '2017-03-10 06:11:11', NULL),
(50, 44, 418, 'asdasdasd', '2017-03-16 03:29:44', NULL),
(51, 44, 418, 's', '2017-03-16 03:29:48', NULL);
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
-- Dumping structure for table kollaj.contacts
CREATE TABLE IF NOT EXISTS `contacts` (
`id` int(33) NOT NULL AUTO_INCREMENT,
`contact_ID` int(10) NOT NULL,
`friend_ID` int(10) NOT NULL,
`accepted` int(1) NOT NULL DEFAULT '0',
`acon` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`,`contact_ID`,`friend_ID`,`accepted`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8;
-- Dumping data for table kollaj.contacts: ~10 rows (approximately)
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
INSERT INTO `contacts` (`id`, `contact_ID`, `friend_ID`, `accepted`, `acon`) VALUES
(18, 1, 20, 1, '2017-02-06 18:11:07'),
(41, 1, 21, 1, '2017-02-09 18:28:59'),
(43, 20, 1, 1, '2017-02-13 23:19:47'),
(44, 37, 1, 1, '2017-02-25 16:33:47'),
(45, 13, 1, 1, '2017-02-26 03:04:21'),
(54, 20, 2, 1, '2017-03-19 00:27:11'),
(55, 2, 20, 1, '2017-03-19 00:27:15'),
(56, 21, 2, 1, '2017-03-19 00:46:02'),
(57, 13, 37, 1, '2017-03-19 00:47:47'),
(58, 1, 13, 1, '2017-03-19 00:48:33');
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
-- Dumping structure for table kollaj.editor_calibrate_index
CREATE TABLE IF NOT EXISTS `editor_calibrate_index` (
`calibration` float NOT NULL,
`deviceModel` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`deviceUUID` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`deviceManufacturer` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
KEY `Index 1` (`calibration`,`deviceModel`,`deviceUUID`,`deviceManufacturer`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- Dumping data for table kollaj.editor_calibrate_index: ~3 rows (approximately)
/*!40000 ALTER TABLE `editor_calibrate_index` DISABLE KEYS */;
INSERT INTO `editor_calibrate_index` (`calibration`, `deviceModel`, `deviceUUID`, `deviceManufacturer`) VALUES
(0.005, 'ALE-L21', 'fa686157a27433bb', 'HUAWEI'),
(0.014, '6044D', 'd0189b5167765918', 'TCL'),
(0.068, 'ZTE BLADE A512', '8396de32c62a27bd', 'ZTE'),
(0.068, 'ZTE BLADE A512', 'de8df609429f166c', 'ZTE'),
(0.069, 'HUAWEI CUN-L01', '9c72045b0121a53a', 'HUAWEI');
/*!40000 ALTER TABLE `editor_calibrate_index` ENABLE KEYS */;
-- Dumping structure for table kollaj.inbox
CREATE TABLE IF NOT EXISTS `inbox` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sid` int(10) NOT NULL,
`rid` int(10) NOT NULL DEFAULT '0',
`chatID` int(100) NOT NULL DEFAULT '0',
`msg` varchar(1000) NOT NULL DEFAULT '0',
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`seen` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`,`sid`,`rid`,`chatID`),
KEY `msg_date_seen` (`msg`(191),`date`,`seen`)
) ENGINE=InnoDB AUTO_INCREMENT=146 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table kollaj.inbox: ~144 rows (approximately)
/*!40000 ALTER TABLE `inbox` DISABLE KEYS */;
INSERT INTO `inbox` (`id`, `sid`, `rid`, `chatID`, `msg`, `date`, `seen`) VALUES
(1, 1, 21, 1, 'this is a test message on kollaj', '2017-02-09 21:14:41', 1),
(2, 1, 21, 1, 'from Kris to Bia', '2017-02-09 21:14:44', 1),
(3, 21, 1, 1, 'from Bia to Kris', '2017-02-09 21:14:46', 1),
(4, 20, 21, 2, 'from Tony to Bia', '2017-02-09 21:18:27', 1),
(5, 20, 1, 3, 'Tony to Kris', '2017-02-09 21:14:51', 1),
(6, 20, 21, 2, 'Tony to Bia', '2017-02-09 21:16:00', 1),
(7, 21, 20, 2, 'Bia to Tony', '2017-02-09 21:15:06', 1),
(8, 1, 23, 0, 'this is a test message on kollaj', '2017-02-09 22:36:14', 1),
(9, 1, 21, 0, 'this is a test message on kollaj', '2017-02-10 01:49:17', 1),
(10, 1, 21, 0, 'test', '2017-02-10 02:23:07', 1),
(11, 1, 21, 0, 'test', '2017-02-10 02:23:09', 1),
(12, 1, 21, 0, 'test', '2017-02-10 02:23:09', 1),
(13, 1, 21, 0, 'mete ai uma mensagem//carlitos', '2017-02-10 02:23:35', 1),
(14, 1, 21, 0, 'this is a test message on kollaj', '2017-02-10 02:28:00', 1),
(15, 1, 21, 0, 'test', '2017-02-10 18:17:53', 1),
(16, 1, 20, 0, 'this is a test message on kollaj', '2017-02-10 19:10:25', 1),
(17, 1, 21, 0, 'THIS IS ANOTHER TEST!', '2017-02-10 19:14:26', 1),
(18, 1, 21, 0, 'THIS IS ANOTHER TEST!', '2017-02-10 19:15:39', 1),
(19, 1, 21, 0, 'this is a test message on kollaj', '2017-02-10 19:20:39', 1),
(20, 1, 21, 0, 'THIS IS ANOTHER TEST!', '2017-02-10 19:20:51', 1),
(21, 1, 21, 0, 'ah poizé ', '2017-02-14 05:30:12', 1),
(22, 1, 21, 0, 'épa', '2017-02-14 18:39:33', 1),
(23, 1, 21, 0, 'épa', '2017-02-14 18:48:12', 1),
(24, 1, 21, 0, 'épa', '2017-02-14 18:48:34', 1),
(25, 1, 21, 0, ' a épa', '2017-02-14 18:49:25', 1),
(26, 1, 21, 0, 'épá', '2017-02-14 18:53:43', 1),
(27, 1, 21, 0, ' ajdlaskdnasd é ô ção', '2017-02-14 18:51:10', 1),
(28, 1, 21, 0, ' ajdlaskdnasd é ô ção', '2017-02-14 18:51:47', 1),
(29, 1, 21, 0, ' ééééé´ho alô', '2017-02-14 19:00:40', 1),
(30, 1, 21, 0, ' ééééé´ho alô', '2017-02-14 19:01:34', 1),
(31, 1, 21, 0, ' ', '2017-02-14 19:11:12', 1),
(32, 1, 21, 0, ' alô !!!', '2017-02-14 19:11:18', 1),
(33, 1, 21, 0, ' alô !!! this is um bizarro testé â', '2017-02-14 19:14:29', 1),
(34, 1, 21, 0, ' alô !!! this is um bizarro testé â', '2017-02-14 19:15:00', 1),
(35, 1, 21, 0, ' alô !!! this is um bizarro testé â', '2017-02-14 19:20:15', 1),
(36, 1, 21, 0, ' alô !!!!!!!!! ', '2017-02-14 19:20:40', 1),
(37, 1, 21, 0, ' what funciona ?? ô ô !', '2017-02-14 19:21:31', 1),
(38, 1, 21, 0, ' what funciona ?? ô ô !', '2017-02-14 19:22:19', 1),
(39, 1, 21, 0, ' incrível!!! esta porra já aceita caracteres tûga ! и български/кирилица също?', '2017-02-14 19:25:17', 1),
(40, 20, 1, 0, ' Blah blah blah ', '2017-02-15 00:15:25', 1),
(41, 1, 20, 0, ' this is a test message on kollaj', '2017-02-17 23:17:11', 1),
(42, 1, 20, 0, ' this is a test message on kollaj', '2017-02-17 23:21:56', 1),
(43, 1, 20, 0, ' this is a test message on kollaj', '2017-02-17 23:59:28', 1),
(44, 1, 20, 0, ' yo nigga', '2017-02-18 00:00:17', 1),
(45, 1, 20, 0, ' yo nigga', '2017-02-18 00:00:29', 1),
(46, 1, 20, 0, ' queres flr pelo ', '2017-02-18 00:00:35', 1),
(47, 1, 20, 0, ' kollaj?', '2017-02-18 00:00:39', 1),
(48, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:39', 1),
(49, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:41', 1),
(50, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:41', 1),
(51, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:42', 1),
(52, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:43', 1),
(53, 1, 20, 0, ' queres flr pelo', '2017-02-18 00:46:33', 1),
(54, 1, 20, 0, ' kollaj ?', '2017-02-18 00:46:37', 1),
(55, 20, 1, 0, ' Hello', '2017-02-18 00:46:51', 1),
(56, 20, 1, 0, ' Chupa me a pila', '2017-02-18 00:47:07', 1),
(57, 1, 20, 0, ' a tua sorte é q essa merda ainda n brekou XD', '2017-02-18 00:47:34', 1),
(58, 1, 20, 0, ' é', '2017-02-18 00:47:50', 1),
(59, 1, 21, 0, ' dfsdfsdfs', '2017-02-18 18:45:24', 1),
(60, 1, 20, 0, ' test uan tu', '2017-02-23 09:18:22', 1),
(61, 1, 20, 0, ' texte un dos trez', '2017-02-23 09:20:13', 1),
(62, 1, 21, 0, ' sjdajksdalksda', '2017-03-08 17:01:16', 1),
(63, 1, 21, 0, ' Ççççção', '2017-03-10 04:34:39', 1),
(64, 1, 21, 0, ' çççç', '2017-03-10 04:36:48', 1),
(65, 1, 21, 0, ' Ççç', '2017-03-10 04:38:23', 1),
(66, 1, 21, 0, ' teste um dois três', '2017-03-10 04:38:32', 1),
(67, 1, 21, 0, ' asdfag', '2017-03-10 04:39:53', 1),
(68, 1, 21, 0, ' test12', '2017-03-10 04:49:13', 1),
(69, 1, 23, 0, ' test12', '2017-03-10 04:50:46', 1),
(70, 1, 21, 0, ' test 43', '2017-03-10 04:50:57', 1),
(71, 1, 21, 0, ' Тест йо йо ', '2017-03-10 04:53:33', 1),
(72, 1, 21, 0, ' асфхайсдфсдгфасд this is in inglish and isto em tugâ o manõ', '2017-03-12 14:33:14', 1),
(73, 42, 42, 0, 'Array', '2017-03-16 02:46:41', 1),
(74, 42, 43, 0, 'Life shrinks or expands in proportion to one’s courage.|Anais Nin\r', '2017-03-16 02:49:36', 1),
(75, 43, 42, 0, ' asd', '2017-03-16 02:50:42', 1),
(76, 42, 43, 0, 'First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.|Aristotle\r', '2017-03-16 02:50:42', 1),
(77, 43, 42, 0, ' ', '2017-03-16 02:50:47', 1),
(78, 42, 43, 0, '“Since we decided a few weeks ago to adopt the leaf as legal tender, we have, of course, all become immensely rich.”\r', '2017-03-16 02:50:47', 1),
(79, 43, 42, 0, ' ', '2017-03-16 02:50:54', 1),
(80, 42, 43, 0, 'The storm had now definitely abated, and what thunder there was now grumbled over more distant hills, like a man saying “And another thing…” twenty minutes after admitting he’s lost the argument.\r', '2017-03-16 02:50:54', 1),
(81, 43, 42, 0, ' ', '2017-03-16 02:51:08', 1),
(82, 42, 43, 0, 'So I started writing my own quotes now.\r', '2017-03-16 02:51:09', 1),
(83, 43, 42, 0, ' ', '2017-03-16 02:51:13', 1),
(84, 42, 43, 0, 'A truly rich man is one whose children run into his arms when his hands are empty.|Unknown\r', '2017-03-16 02:51:13', 1),
(85, 43, 42, 0, ' ', '2017-03-16 02:51:20', 1),
(86, 42, 43, 0, 'Our lives begin to end the day we become silent about things that matter.|Martin Luther King Jr.\r', '2017-03-16 02:51:21', 1),
(87, 43, 42, 0, ' ', '2017-03-16 02:51:25', 1),
(88, 42, 43, 0, 'In order to succeed, your desire for success should be greater than your fear of failure.|Bill Cosby\r', '2017-03-16 02:51:25', 1),
(89, 43, 42, 0, ' ', '2017-03-16 02:51:33', 1),
(90, 42, 43, 0, 'The last ever dolphin message was misinterpreted as a surprisingly sophisticated attempt to do a double-backwards-somersault through a hoop whilst whistling the ‘Star Spangled Banner’, but in fact the message was this: So long and thanks for all the fish.\r', '2017-03-16 02:51:33', 1),
(91, 42, 44, 0, '“I\'m selfish, impatient and a little insecure. I make mistakes, I am out of control and at times hard to handle. But if you can\'t handle me at my worst, then you sure as hell don\'t deserve me at my best.†- Marilyn Monroe\r', '2017-03-16 02:56:31', 1),
(92, 42, 45, 0, 'You make me want to be a better man.\r', '2017-03-16 02:58:55', 1),
(93, 44, 42, 0, ' ', '2017-03-16 03:07:31', 1),
(94, 42, 44, 0, 'Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.|Johann Wolfgang von Goethe\r', '2017-03-16 03:07:31', 1),
(95, 44, 42, 0, ' ', '2017-03-16 03:07:35', 1),
(96, 42, 44, 0, 'The only way to do great work is to love what you do.|Steve Jobs\r', '2017-03-16 03:07:35', 1),
(97, 44, 42, 0, ' ', '2017-03-16 03:09:09', 1),
(98, 42, 44, 0, 'When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us.|Helen Keller\r', '2017-03-16 03:09:09', 1),
(99, 44, 42, 0, ' ', '2017-03-16 03:09:13', 1),
(100, 42, 44, 0, 'âIt seemed to me,â said Wonko the Sane, âthat any civilization that had so far lost its head as to need to include a set of detailed instructions for use in a packet of toothpicks, was no longer a civilization in which I could live and stay sane.â\r', '2017-03-16 03:09:13', 1),
(101, 44, 42, 0, ' ', '2017-03-16 03:09:26', 1),
(102, 42, 44, 0, 'So I started writing my own quotes now.\r', '2017-03-16 03:09:26', 1),
(103, 44, 42, 0, ' ', '2017-03-16 03:09:29', 1),
(104, 42, 44, 0, 'Curiously enough, the only thing that went through the mind of the bowl of petunias as it fell was Oh no, not again. Many people have speculated that if we knew exactly why the bowl of petunias had thought that we would know a lot more about the nature of the Universe than we do now.\r', '2017-03-16 03:09:29', 1),
(105, 44, 42, 0, ' ', '2017-03-16 03:09:33', 1),
(106, 42, 44, 0, 'Many were increasingly of the opinion that they?d all made a big mistake in coming down from the trees in the first place. And some said that even the trees had been a bad move, and that no one should ever have left the oceans.\r', '2017-03-16 03:09:33', 1),
(107, 44, 42, 0, ' ', '2017-03-16 03:09:37', 1),
(108, 42, 44, 0, 'Do what you can, where you are, with what you have.|Teddy Roosevelt\r', '2017-03-16 03:09:38', 1),
(109, 44, 42, 0, ' ', '2017-03-16 03:09:40', 1),
(110, 42, 44, 0, '?Shee, you guys are so unhip it?s a wonder your bums don?t fall off.?\r', '2017-03-16 03:09:40', 1),
(111, 44, 42, 0, ' ', '2017-03-16 03:10:08', 1),
(112, 42, 44, 0, 'Whatever the mind of man can conceive and believe, it can achieve.|Napoleon Hill\r', '2017-03-16 03:10:08', 1),
(113, 44, 42, 0, ' ', '2017-03-16 03:10:11', 1),
(114, 42, 44, 0, 'The Bulgarians always say: "Brother, if you can\'t solve a problem with money... solve it with a lot of money."\r', '2017-03-16 03:10:11', 1),
(115, 44, 42, 0, ' ', '2017-03-16 03:10:31', 1),
(116, 42, 44, 0, 'Your time is limited, so don’t waste it living someone else’s life.|Steve Jobs\r', '2017-03-16 03:10:31', 1),
(117, 44, 42, 0, ' ', '2017-03-16 03:10:34', 1),
(118, 42, 44, 0, 'You make me want to be a better man.\r', '2017-03-16 03:10:34', 1),
(119, 44, 42, 0, ' ', '2017-03-16 03:10:37', 1),
(120, 42, 44, 0, '“Be yourself; everyone else is already taken.” - Oscard Wilde\r', '2017-03-16 03:10:37', 1),
(121, 44, 42, 0, ' ', '2017-03-16 03:10:41', 1),
(122, 42, 44, 0, 'Dream big and dare to fail.|Norman Vaughan\r', '2017-03-16 03:10:41', 1),
(123, 44, 42, 0, ' ', '2017-03-16 03:10:44', 1),
(124, 42, 44, 0, '“Shee, you guys are so unhip it’s a wonder your bums don’t fall off.”\r', '2017-03-16 03:10:44', 1),
(125, 44, 42, 0, ' ', '2017-03-16 03:10:47', 1),
(126, 42, 44, 0, 'How wonderful it is that nobody need wait a single moment before starting to improve the world.|Anne Frank\r', '2017-03-16 03:10:47', 1),
(127, 44, 42, 0, ' ', '2017-03-16 03:10:53', 1),
(128, 42, 44, 0, 'That fucking bitch...\r', '2017-03-16 03:10:54', 1),
(129, 44, 42, 0, ' ', '2017-03-16 03:10:56', 1),
(130, 42, 44, 0, 'If you want your children to turn out well, spend twice as much time with them, and half as much money.|Abigail Van Buren\r', '2017-03-16 03:10:56', 1),
(131, 44, 42, 0, ' ', '2017-03-16 03:10:59', 1),
(132, 42, 44, 0, 'Either you run the day, or the day runs you.|Jim Rohn\r', '2017-03-16 03:10:59', 1),
(133, 44, 42, 0, ' ', '2017-03-16 03:11:02', 1),
(134, 42, 44, 0, 'Change your thoughts and you change your world.|Norman Vincent Peale\r', '2017-03-16 03:11:02', 1),
(135, 44, 42, 0, ' ', '2017-03-16 03:20:02', 1),
(136, 42, 44, 0, '“Since we decided a few weeks ago to adopt the leaf as legal tender, we have, of course, all become immensely rich.”\r', '2017-03-16 03:20:02', 1),
(137, 44, 42, 0, ' sdasda', '2017-03-16 03:23:20', 1),
(138, 42, 44, 0, 'Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.|Jamie Paolinetti\r', '2017-03-16 03:23:20', 1),
(139, 44, 42, 0, ' ,khgjkhgkhjg', '2017-03-16 14:06:28', 1),
(140, 42, 44, 0, 'The ships hung in the sky in much the same way that bricks don’t.\r', '2017-03-16 14:06:29', 1),
(141, 44, 42, 0, ' kjhjkh', '2017-03-16 14:06:34', 1),
(142, 42, 44, 0, 'Our lives begin to end the day we become silent about things that matter.|Martin Luther King Jr.\r', '2017-03-16 14:06:35', 1),
(143, 44, 42, 0, ' iuhdlfd', '2017-03-16 14:08:28', 1),
(144, 42, 44, 0, 'Nothing is impossible, the word itself says, “I’m possible!”|Audrey Hepburn\r', '2017-03-16 14:08:28', 1),
(145, 1, 21, 0, ' скдлфйасдфхкф dsgjhsdjkfhgdjlg çççççãóò', '2017-03-18 18:04:04', 1);
/*!40000 ALTER TABLE `inbox` ENABLE KEYS */;
-- Dumping structure for table kollaj.logger
CREATE TABLE IF NOT EXISTS `logger` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`msg` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
-- Dumping data for table kollaj.logger: ~82 rows (approximately)
/*!40000 ALTER TABLE `logger` DISABLE KEYS */;
INSERT INTO `logger` (`id`, `date`, `msg`) VALUES
(1, NULL, 'sql'),
(2, '2017-02-15 04:21:41', 'got here'),
(3, '2017-02-15 04:23:25', 'got here, and im yes'),
(4, '2017-02-15 04:24:46', 'got here, and im yes'),
(5, '2017-02-15 04:26:09', 'got here, and im 1'),
(6, '2017-02-15 04:27:25', 'got here, and im 1'),
(7, '2017-02-15 04:28:43', 'got here, and im 1'),
(8, '2017-02-15 04:29:51', 'got here, and im '),
(9, '2017-02-15 04:32:45', 'got here, and im '),
(10, '2017-02-15 04:39:44', 'got here, and im '),
(11, '2017-02-15 04:41:39', 'got here, and im '),
(12, '2017-02-15 04:43:53', 'got here, and im '),
(13, '2017-02-15 04:45:20', 'got here, and im '),
(14, '2017-02-15 04:46:58', 'got here, and im '),
(15, '2017-02-15 04:48:23', 'got here, and im 1 567'),
(16, '2017-02-15 05:05:43', 'got here, and im 1 567'),
(17, '2017-02-15 05:08:53', 'got here, and im lower than 567'),
(18, '2017-02-15 05:08:53', 'got here, and im in editor'),
(19, '2017-02-15 05:09:56', 'got here, and im lower than 567'),
(20, '2017-02-15 05:09:56', 'got here, and im in editor'),
(21, '2017-02-15 05:09:56', 'SELECT * FROM post WHERE uid=\'31\' AND ty>567 LIMIT 5'),
(22, '2017-02-15 05:19:08', 'got here, and im lower than -1500'),
(23, '2017-02-15 05:19:08', 'got here, and im in editor'),
(24, '2017-02-15 05:19:09', 'SELECT * FROM post WHERE uid=\'31\' AND ty>-1500 LIMIT 5'),
(25, '2017-02-15 05:23:05', 'got here, and im lower than -1500'),
(26, '2017-02-15 05:23:05', 'got here, and im in editor'),
(27, '2017-02-15 05:23:05', 'SELECT * FROM post WHERE uid=\'31\' AND ty>-1500 LIMIT 5'),
(28, '2017-02-15 05:28:12', 'got here, and im lower than -1500'),
(29, '2017-02-15 05:28:12', 'got here, and im in editor'),
(30, '2017-02-15 05:28:12', 'SELECT * FROM post WHERE uid=\'31\' AND ty>-1500 LIMIT 5'),
(31, '2017-02-15 05:32:07', 'got here, and im lower than -1500'),
(32, '2017-02-15 05:32:07', 'got here, and im in editor'),
(33, '2017-02-15 05:32:07', 'SELECT * FROM post WHERE uid=\'31\' AND ty>-1500 LIMIT 5'),
(34, '2017-02-15 05:33:44', 'got here, and im lower than 1134'),
(35, '2017-02-15 05:33:44', 'got here, and im in editor'),
(36, '2017-02-15 05:33:45', 'SELECT * FROM post WHERE uid=\'31\' AND ty>1134 LIMIT 5'),
(37, '2017-02-15 05:35:47', 'got here, and im lower than 1134'),
(38, '2017-02-15 05:35:47', 'got here, and im in editor'),
(39, '2017-02-15 05:35:47', 'SELECT * FROM post WHERE uid=\'31\' AND ty>\'1134\' LIMIT 5'),
(40, '2017-02-15 05:36:58', 'got here, and im lower than -1500'),
(41, '2017-02-15 05:36:58', 'got here, and im in editor'),
(42, '2017-02-15 05:36:58', 'SELECT * FROM post WHERE uid=\'31\' AND ty>\'-1500\' LIMIT 5'),
(43, '2017-02-15 05:43:16', 'got here, and im lower than -1500'),
(44, '2017-02-15 05:43:16', 'got here, and im in editor, with -1500'),
(45, '2017-02-15 05:43:16', 'SELECT * FROM post WHERE uid=\'31\' AND ty>\'-1500\' LIMIT 5'),
(46, '2017-02-15 05:44:17', 'got here, and im lower than -1500'),
(47, '2017-02-15 05:44:17', 'got here, and im in editor, with -1750'),
(48, '2017-02-15 05:44:17', 'SELECT * FROM post WHERE uid=\'31\' AND ty>\'-1750\' LIMIT 5'),
(49, '2017-02-15 05:46:50', 'got here, and im lower than -1500'),
(50, '2017-02-15 05:46:50', 'got here, and im in editor, with -1500'),
(51, '2017-02-15 05:46:50', 'SELECT * FROM post WHERE uid=\'31\' AND ty>\'-1500\' LIMIT 5'),
(52, '2017-02-15 05:48:16', 'got here, and im lower than 567'),
(53, '2017-02-15 05:48:16', 'got here, and im in editor, with 567'),
(54, '2017-02-15 05:48:16', 'SELECT * FROM post WHERE uid=\'31\' AND ty>\'-1500\' LIMIT 5'),
(55, '2017-02-15 05:50:17', 'got here, and im lower than 567'),
(56, '2017-02-15 05:50:17', 'got here, and im in editor, with 567'),
(57, '2017-02-15 05:50:17', '1'),
(58, '2017-02-15 05:51:50', 'got here, and im lower than 567'),
(59, '2017-02-15 05:51:50', 'got here, and im in editor, with 567'),
(60, '2017-02-15 05:51:50', '1 \n 1'),
(61, '2017-02-15 05:56:38', 'got here, and im lower than 567'),
(62, '2017-02-15 05:56:38', 'got here, and im in editor, with 567'),
(63, '2017-02-15 05:57:29', 'got here, and im lower than 567'),
(64, '2017-02-15 05:57:30', 'got here, and im in editor, with 567'),
(65, '2017-02-15 05:57:30', '1 \n SELECT * FROM post WHERE uid=\'31\' AND ty>\'-1500\' LIMIT 5'),
(66, '2017-02-15 05:58:10', 'got here, and im lower than 567'),
(67, '2017-02-15 05:58:10', 'got here, and im in editor, with 567'),
(68, '2017-02-15 05:58:10', '1 \n '),
(69, '2017-02-15 05:59:13', 'got here, and im lower than 567'),
(70, '2017-02-15 05:59:13', 'got here, and im in editor, with 567'),
(71, '2017-02-15 05:59:13', '1 \n '),
(72, '2017-02-15 06:00:46', 'got here, and im lower than 567'),
(73, '2017-02-15 06:00:46', 'got here, and im in editor, with 567'),
(74, '2017-02-15 06:00:46', '1 \n '),
(75, '2017-02-15 06:02:38', 'got here, and im lower than 567'),
(76, '2017-02-15 06:02:38', 'got here, and im in editor, with 567'),
(77, '2017-02-15 06:02:39', '1 \n '),
(78, '2017-02-15 06:05:38', 'got here, and im lower than 567'),
(79, '2017-02-15 06:05:38', 'got here, and im in editor, with 567'),
(80, '2017-02-15 06:05:38', '1 \n '),
(81, '2017-02-15 06:06:34', 'got here, and im lower than 567'),
(82, '2017-02-15 06:06:34', 'got here, and im in editor, with 567'),
(83, '2017-02-15 06:06:34', '1'),
(84, '2017-02-15 06:07:50', 'got here, and im lower than 567'),
(85, '2017-02-15 06:07:50', 'got here, and im in editor, with 567'),
(86, '2017-02-15 06:07:50', 'Array\n(\n [0] => Array\n (\n [id] => 91\n [imgpath] => http://192.168.1.126/kollaj/uploads/a9c9ca537971a692b56bb434c2512b24.jpg\n [imgW] => 297.675\n [imgH] => 396.9\n [imgX] => 31.162499999999994\n [imgY] => 85.05000000000001\n [mask1] => M 328.8375 85.05000000000001 L 155.53117185444705 85.05000000000003 165.21756968657274 481.9500000000001 328.8375 481.95 Z\n [mask2] => M 31.162499999999994 85.05000000000001 L 34.88592664496427 85.05000000000003 328.8374999999996 427.52338678158077 328.8375 481.95 31.162499999999994 481.95 Z\n [scale] => 1.2544877976380862\n [angle] => 91.29936284535029\n [tx] => 66.40800476074219\n [ty] => -212.83297729492188\n [proffset] => 0\n )\n\n [1] => Array\n (\n [id] => 90\n [imgpath] => http://192.168.1.126/kollaj/uploads/c28c6a8de6037554c2407b203b54cd4c.jpg\n [imgW] => 705\n ');
/*!40000 ALTER TABLE `logger` ENABLE KEYS */;
-- Dumping structure for table kollaj.notification
CREATE TABLE IF NOT EXISTS `notification` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contact_ID` int(10) NOT NULL,
`friend_ID` int(10) NOT NULL DEFAULT '0',
`notifType` int(2) NOT NULL DEFAULT '1',
`seen` int(1) NOT NULL DEFAULT '0',
`action` int(2) DEFAULT '1',
`actionTo` varchar(250) DEFAULT '1',
`notifText` char(250) DEFAULT NULL,
`notifFullText` varchar(50) DEFAULT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `Index 1` (`id`,`friend_ID`,`contact_ID`,`notifType`,`seen`)
) ENGINE=InnoDB AUTO_INCREMENT=243 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table kollaj.notification: ~187 rows (approximately)
/*!40000 ALTER TABLE `notification` DISABLE KEYS */;
INSERT INTO `notification` (`id`, `contact_ID`, `friend_ID`, `notifType`, `seen`, `action`, `actionTo`, `notifText`, `notifFullText`, `date`) VALUES
(10, 1, 23, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-06 18:00:04'),
(11, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-06 18:01:36'),
(12, 1, 20, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-06 18:08:42'),
(13, 1, 20, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-06 18:10:58'),
(14, 1, 20, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-06 18:11:07'),
(15, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-07 00:24:55'),
(16, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-07 00:24:58'),
(17, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-07 00:24:59'),
(18, 1, 21, 1, 0, 1, '1', 'spacewalkingninja commented:Aloha, just testing around...', NULL, '2017-02-07 23:17:43'),
(19, 1, 13, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-08 00:46:15'),
(20, 1, 23, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 03:58:50'),
(21, 1, 20, 1, 0, 1, '1', 'spacewalkingninja commented: testing smth', NULL, '2017-02-09 04:07:23'),
(22, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 07:26:46'),
(23, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 07:27:09'),
(24, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 07:59:53'),
(25, 1, 21, 1, 0, 1, '1', 'spacewalkingninja commented: test commenmt', NULL, '2017-02-09 08:39:12'),
(26, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:15:29'),
(27, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 16:15:39'),
(28, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:15:43'),
(29, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 16:19:32'),
(30, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:19:37'),
(31, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 16:40:50'),
(32, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:41:35'),
(33, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 16:43:57'),
(34, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:44:03'),
(35, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 16:44:10'),
(36, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:44:17'),
(37, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 16:44:24'),
(38, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 16:44:28'),
(39, 1, 21, 1, 0, 1, '1', 'spacewalkingninja commented: testing again', NULL, '2017-02-09 17:03:29'),
(40, 1, 21, 1, 0, 1, '1', 'spacewalkingninja stopped following you!', NULL, '2017-02-09 18:01:44'),
(62, 1, 21, 1, 0, 1, '1', 'spacewalkingninja is now following you!', NULL, '2017-02-09 18:28:59'),
(63, 1, 21, 1, 0, 1, '1', 'this is a test message on kollaj', NULL, '2017-02-09 18:30:22'),
(64, 1, 23, 1, 0, 1, '1', 'this is a test message on kollaj', NULL, '2017-02-09 22:36:14'),
(65, 1, 21, 1, 0, 1, '1', 'this is a test message on kollaj', NULL, '2017-02-10 01:49:16'),
(66, 1, 21, 1, 0, 1, '1', 'test', NULL, '2017-02-10 02:23:06'),
(67, 1, 21, 1, 0, 1, '1', 'test', NULL, '2017-02-10 02:23:09'),
(68, 1, 21, 1, 0, 1, '1', 'test', NULL, '2017-02-10 02:23:09'),
(69, 1, 21, 1, 0, 1, '1', 'mete ai uma mensagem//carlitos', NULL, '2017-02-10 02:23:35'),
(70, 1, 21, 1, 0, 1, '1', 'this is a test message on kollaj', NULL, '2017-02-10 02:28:00'),
(71, 1, 21, 1, 0, 1, '1', 'test', NULL, '2017-02-10 18:17:52'),
(72, 1, 20, 1, 0, 1, '1', 'this is a test message on kollaj', NULL, '2017-02-10 19:10:24'),
(73, 1, 21, 1, 0, 1, '1', 'THIS IS ANOTHER TEST!', NULL, '2017-02-10 19:14:26'),
(74, 1, 21, 1, 0, 1, '1', 'THIS IS ANOTHER TEST!', NULL, '2017-02-10 19:15:39'),
(75, 1, 21, 1, 0, 1, '1', 'this is a test message on kollaj', NULL, '2017-02-10 19:20:38'),
(76, 1, 21, 1, 0, 1, '1', 'THIS IS ANOTHER TEST!', NULL, '2017-02-10 19:20:51'),
(77, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-13 20:20:30'),
(81, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-13 22:45:46'),
(84, 20, 21, 1, 0, 1, '1', 'jafsilva4 vibed your photo!', NULL, '2017-02-13 23:20:28'),
(85, 20, 21, 1, 0, 1, '1', 'jafsilva4 commented: Test on bia', NULL, '2017-02-13 23:20:47'),
(86, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 00:27:52'),
(100, 20, 21, 1, 0, 1, '1', 'jafsilva4 mentioned you in a comment!', NULL, '2017-02-14 02:31:17'),
(106, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 03:30:53'),
(107, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 03:39:01'),
(108, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 03:39:07'),
(109, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 03:39:14'),
(110, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 03:39:18'),
(111, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 03:39:21'),
(112, 1, 21, 1, 0, 1, '1', 'ah poizé', NULL, '2017-02-14 05:30:12'),
(113, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 05:36:44'),
(114, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 06:04:37'),
(115, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 17:16:56'),
(116, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 17:48:11'),
(117, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 17:49:34'),
(118, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 17:49:45'),
(119, 1, 20, 1, 0, 1, '1', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 17:50:14'),
(120, 1, 20, 1, 0, 2, '23095.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-02-14 18:35:59'),
(121, 1, 20, 1, 0, 3, '729de3bc06da387fca2336edaced6288.jpg', 'spacewalkingninja mentioned you in a comment!', NULL, '2017-02-14 18:39:11'),
(122, 1, 20, 1, 0, 3, '729de3bc06da387fca2336edaced6288.jpg', 'spacewalkingninja commented: well testing, @jafsilva4', NULL, '2017-02-14 18:39:12'),
(123, 1, 21, 2, 0, 1, '1', 'épa', NULL, '2017-02-14 18:39:33'),
(124, 1, 21, 2, 0, 1, '1', 'épa', NULL, '2017-02-14 18:48:12'),
(125, 1, 21, 2, 0, 1, '1', 'épa', NULL, '2017-02-14 18:48:34'),
(126, 1, 21, 2, 0, 1, '1', ' a épa', NULL, '2017-02-14 18:49:25'),
(127, 1, 21, 2, 0, 1, '1', ' ajdlaskdnasd é ô ção', NULL, '2017-02-14 18:50:40'),
(128, 1, 21, 2, 0, 1, '1', ' ajdlaskdnasd é ô ção', NULL, '2017-02-14 18:51:10'),
(129, 1, 21, 2, 0, 1, '1', ' ajdlaskdnasd é ô ção', NULL, '2017-02-14 18:51:47'),
(130, 1, 21, 2, 0, 1, '1', ' ééééé´ho alô', NULL, '2017-02-14 19:00:39'),
(131, 1, 21, 2, 0, 1, '1', ' ééééé´ho alô', NULL, '2017-02-14 19:01:34'),
(132, 1, 21, 2, 0, 1, '1', '', NULL, '2017-02-14 19:11:12'),
(133, 1, 21, 2, 0, 1, '1', ' alô !!!', NULL, '2017-02-14 19:11:18'),
(134, 1, 21, 2, 0, 1, '1', ' alô !!! this is um bizarro testé â', NULL, '2017-02-14 19:14:29'),
(135, 1, 21, 2, 0, 1, '1', ' alô !!! this is um bizarro testé â', NULL, '2017-02-14 19:20:15'),
(136, 1, 21, 2, 0, 1, '1', ' alô !!!!!!!!!', NULL, '2017-02-14 19:20:40'),
(137, 1, 21, 2, 0, 1, '1', ' what funciona ?? ô ô !', NULL, '2017-02-14 19:21:31'),
(138, 1, 21, 2, 0, 1, '1', ' what funciona ?? ô ô !', NULL, '2017-02-14 19:22:19'),
(139, 1, 21, 2, 0, 1, '1', ' incrível!!! esta porra já aceita caracteres tûga ! и български/кирилица също?', NULL, '2017-02-14 19:25:17'),
(140, 20, 21, 1, 0, 3, '196ab754bae6b6cca15b3c7a71e1339c.jpg', 'jafsilva4 mentioned you in a comment!', NULL, '2017-02-14 23:40:33'),
(141, 20, 1, 1, 0, 3, '196ab754bae6b6cca15b3c7a71e1339c.jpg', 'jafsilva4 mentioned you in a comment!', NULL, '2017-02-14 23:40:33'),
(142, 20, 1, 1, 0, 3, '11757.jpg', 'jafsilva4 mentioned you in a comment!', NULL, '2017-02-14 23:41:30'),
(143, 20, 1, 2, 0, 1, '1', ' Blah blah blah', NULL, '2017-02-15 00:15:25'),
(144, 20, 31, 1, 0, 2, 'e46e39bbe1e071b50372e9844739f816.jpg', 'jafsilva4 vibed your photo!', NULL, '2017-02-17 16:26:40'),
(145, 1, 20, 2, 0, 1, '1', ' this is a test message on kollaj', NULL, '2017-02-17 23:17:10'),
(146, 1, 20, 2, 0, 1, '1', ' this is a test message on kollaj', NULL, '2017-02-17 23:21:56'),
(147, 1, 20, 2, 0, 1, '1', ' this is a test message on kollaj', NULL, '2017-02-17 23:59:28'),
(148, 1, 20, 2, 0, 1, '1', ' yo nigga', NULL, '2017-02-18 00:00:17'),
(149, 1, 20, 2, 0, 1, '1', ' yo nigga', NULL, '2017-02-18 00:00:28'),
(150, 1, 20, 2, 0, 1, '1', ' queres flr pelo', NULL, '2017-02-18 00:00:35'),
(151, 1, 20, 2, 0, 1, '1', ' kollaj?', NULL, '2017-02-18 00:00:39'),
(152, 20, 1, 2, 0, 1, '1', ' Jkjkhlh', NULL, '2017-02-18 00:00:39'),
(153, 20, 1, 2, 0, 1, '1', ' Jkjkhlh', NULL, '2017-02-18 00:00:41'),
(154, 20, 1, 2, 0, 1, '1', ' Jkjkhlh', NULL, '2017-02-18 00:00:41'),
(155, 20, 1, 2, 0, 1, '1', ' Jkjkhlh', NULL, '2017-02-18 00:00:42'),
(156, 20, 1, 2, 0, 1, '1', ' Jkjkhlh', NULL, '2017-02-18 00:00:43'),
(157, 1, 20, 1, 0, 3, '25599a2602a424f2dccca657ffbfb28b.jpg', 'spacewalkingninja commented: testing this shit', NULL, '2017-02-18 00:44:11'),
(158, 1, 20, 2, 0, 1, '1', ' queres flr pelo', NULL, '2017-02-18 00:46:33'),
(159, 1, 20, 2, 0, 1, '1', ' kollaj ?', NULL, '2017-02-18 00:46:37'),
(160, 20, 1, 2, 0, 1, '1', ' Hello', NULL, '2017-02-18 00:46:51'),
(161, 20, 1, 2, 0, 1, '1', ' Chupa me a pila', NULL, '2017-02-18 00:47:07'),
(162, 1, 20, 2, 0, 1, '1', ' a tua sorte é q essa merda ainda n brekou XD', NULL, '2017-02-18 00:47:34'),
(163, 1, 20, 2, 0, 1, '1', ' é', NULL, '2017-02-18 00:47:50'),
(164, 1, 20, 1, 0, 2, 'c67c7d7f20645bb23d658834b014e664.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-02-18 00:49:45'),
(165, 1, 20, 1, 0, 2, '25599a2602a424f2dccca657ffbfb28b.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-02-18 00:50:52'),
(166, 1, 20, 1, 0, 2, '9140.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-02-18 00:52:07'),
(167, 1, 20, 1, 0, 2, '32896a3cf049931eb1e4a7a8d2b808ec.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-02-18 01:38:50'),
(168, 1, 21, 2, 0, 1, '1', ' dfsdfsdfs', NULL, '2017-02-18 18:45:24'),
(169, 1, 20, 2, 0, 1, '1', ' test uan tu', NULL, '2017-02-23 09:18:22'),
(170, 1, 20, 2, 0, 1, '1', ' texte un dos trez', NULL, '2017-02-23 09:20:13'),
(171, 37, 1, 1, 0, 1, 'Vargas420', 'Vargas420 is now following you!', NULL, '2017-02-25 16:33:47'),
(172, 1, 21, 1, 0, 2, '1fa5c192cdf107b11f02a87d26957c64.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-03-01 18:38:48'),
(173, 1, 21, 2, 0, 1, '1', ' sjdajksdalksda', NULL, '2017-03-08 17:01:16'),
(174, 1, 21, 2, 0, 1, '1', ' Ççççção', NULL, '2017-03-10 04:34:38'),
(175, 1, 21, 2, 0, 1, '1', ' çççç', NULL, '2017-03-10 04:36:48'),
(176, 1, 21, 2, 0, 1, '1', ' Ççç', NULL, '2017-03-10 04:38:22'),
(177, 1, 21, 2, 0, 1, '1', ' teste um dois três', NULL, '2017-03-10 04:38:32'),
(178, 1, 21, 2, 0, 1, '1', ' asdfag', NULL, '2017-03-10 04:39:53'),
(179, 1, 21, 2, 0, 1, '1', ' test12', NULL, '2017-03-10 04:49:13'),
(180, 1, 23, 2, 0, 1, '1', ' test12', NULL, '2017-03-10 04:50:46'),
(181, 1, 21, 2, 0, 1, '1', ' test 43', NULL, '2017-03-10 04:50:57'),
(182, 1, 21, 2, 0, 1, '1', ' Тест йо йо', NULL, '2017-03-10 04:53:33'),
(183, 1, 21, 1, 0, 2, '27029.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-03-10 05:11:03'),
(184, 1, 20, 1, 0, 2, '4d8ad3de266975b3cfa77e15155cd173.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-03-10 05:54:47'),
(185, 1, 0, 1, 0, 3, '16258.jpg', 'spacewalkingninja mentioned you in a comment!', NULL, '2017-03-10 06:04:59'),
(186, 1, 21, 1, 0, 3, '1fa5c192cdf107b11f02a87d26957c64.jpg', 'spacewalkingninja commented: test124', NULL, '2017-03-10 06:05:35'),
(187, 1, 20, 1, 0, 3, '196ab754bae6b6cca15b3c7a71e1339c.jpg', 'spacewalkingninja commented: Também', NULL, '2017-03-10 06:09:24'),
(188, 1, 20, 1, 0, 3, '196ab754bae6b6cca15b3c7a71e1339c.jpg', 'spacewalkingninja commented: Também', NULL, '2017-03-10 06:11:11'),
(189, 1, 21, 2, 0, 1, '1', ' асфхайсдфсдгфасд this is in inglish and isto em tugâ o manõ', NULL, '2017-03-12 14:33:14'),
(190, 43, 42, 2, 0, 1, '1', ' asd', NULL, '2017-03-16 02:50:42'),
(191, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:50:47'),
(192, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:50:54'),
(193, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:51:08'),
(194, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:51:13'),
(195, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:51:20'),
(196, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:51:25'),
(197, 43, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 02:51:33'),
(198, 1, 44, 1, 0, 1, 'SpaceWalkingNinja', 'Aloha, and feel at home <3 !', NULL, '2017-03-16 02:56:31'),
(199, 1, 45, 1, 0, 1, 'SpaceWalkingNinja', 'Aloha, and feel at home <3 !', NULL, '2017-03-16 02:58:56'),
(200, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:07:30'),
(201, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:07:35'),
(202, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:09'),
(203, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:13'),
(204, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:26'),
(205, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:29'),
(206, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:33'),
(207, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:37'),
(208, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:09:40'),
(209, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:08'),
(210, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:11'),
(211, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:31'),
(212, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:34'),
(213, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:37'),
(214, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:41'),
(215, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:44'),
(216, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:46'),
(217, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:53'),
(218, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:56'),
(219, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:10:59'),
(220, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:11:02'),
(221, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:11:47'),
(222, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:16:35'),
(223, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:16:37'),
(224, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:17:56'),
(225, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:18:10'),
(226, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:19:21'),
(227, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:19:23'),
(228, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:19:23'),
(229, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:19:24'),
(230, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:19:24'),
(231, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:19:33'),
(232, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:19:36'),
(233, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:19:39'),
(234, 44, 1, 1, 0, 1, 'asdasd3', 'asdasd3 is now following you!', NULL, '2017-03-16 03:19:39'),
(235, 44, 1, 1, 0, 1, '1', 'asdasd3 stopped following you!', NULL, '2017-03-16 03:19:41'),
(236, 44, 42, 2, 0, 1, '1', '', NULL, '2017-03-16 03:20:02'),
(237, 44, 42, 2, 0, 1, '1', ' sdasda', NULL, '2017-03-16 03:23:20'),
(238, 44, 42, 2, 0, 1, '1', ' ,khgjkhgkhjg', NULL, '2017-03-16 14:06:28'),
(239, 44, 42, 2, 0, 1, '1', ' kjhjkh', NULL, '2017-03-16 14:06:34'),
(240, 44, 42, 2, 0, 1, '1', ' iuhdlfd', NULL, '2017-03-16 14:08:28'),
(241, 1, 20, 1, 0, 2, 'c9725258c945b0f2daf1e16d6f15b651.jpg', 'spacewalkingninja vibed your photo!', NULL, '2017-03-18 18:02:40'),
(242, 1, 21, 2, 0, 1, '1', ' скдлфйасдфхкф dsgjhsdjkfhgdjlg çççççãóò', NULL, '2017-03-18 18:04:04');
/*!40000 ALTER TABLE `notification` ENABLE KEYS */;
-- Dumping structure for table kollaj.outbox
CREATE TABLE IF NOT EXISTS `outbox` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sid` int(10) NOT NULL DEFAULT '0',
`rid` int(10) NOT NULL DEFAULT '0',
`chatID` int(100) NOT NULL DEFAULT '0',
`msg` varchar(1000) DEFAULT '0',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`,`sid`,`rid`,`chatID`),
KEY `msg_date` (`msg`(191),`date`)
) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table kollaj.outbox: ~144 rows (approximately)
/*!40000 ALTER TABLE `outbox` DISABLE KEYS */;
INSERT INTO `outbox` (`id`, `sid`, `rid`, `chatID`, `msg`, `date`) VALUES
(1, 1, 21, 1, 'this is a test message on kollaj', '2017-02-09 18:30:22'),
(2, 1, 21, 1, 'from Kris to Bia', '2017-02-09 18:35:17'),
(3, 21, 1, 1, 'from Bia to Kris', '2017-02-09 18:35:24'),
(4, 20, 21, 2, 'from Tony to Bia', '2017-02-09 18:35:34'),
(5, 20, 1, 3, 'Tony to Kris', '2017-02-09 18:35:39'),
(6, 20, 21, 2, 'Tony to Bia', '2017-02-09 18:36:00'),
(7, 21, 20, 2, 'Bia to Tony', '2017-02-09 18:36:18'),
(8, 1, 23, 0, 'this is a test message on kollaj', '2017-02-09 22:36:15'),
(9, 1, 21, 0, 'this is a test message on kollaj', '2017-02-10 01:49:17'),
(10, 1, 21, 0, 'test', '2017-02-10 02:23:07'),
(11, 1, 21, 0, 'test', '2017-02-10 02:23:09'),
(12, 1, 21, 0, 'test', '2017-02-10 02:23:10'),
(13, 1, 21, 0, 'mete ai uma mensagem//carlitos', '2017-02-10 02:23:35'),
(14, 1, 21, 0, 'this is a test message on kollaj', '2017-02-10 02:28:01'),
(15, 1, 21, 0, 'test', '2017-02-10 18:17:53'),
(16, 1, 20, 0, 'this is a test message on kollaj', '2017-02-10 19:10:25'),
(17, 1, 21, 0, 'THIS IS ANOTHER TEST!', '2017-02-10 19:14:27'),
(18, 1, 21, 0, 'THIS IS ANOTHER TEST!', '2017-02-10 19:15:40'),
(19, 1, 21, 0, 'this is a test message on kollaj', '2017-02-10 19:20:39'),
(20, 1, 21, 0, 'THIS IS ANOTHER TEST!', '2017-02-10 19:20:51'),
(21, 1, 21, 0, 'ah poizé ', '2017-02-14 05:30:12'),
(22, 1, 21, 0, 'épa', '2017-02-14 18:39:34'),
(23, 1, 21, 0, 'épa', '2017-02-14 18:48:12'),
(24, 1, 21, 0, 'épa', '2017-02-14 18:48:35'),
(25, 1, 21, 0, ' a épa', '2017-02-14 18:49:25'),
(26, 1, 21, 0, 'épá', '2017-02-14 18:50:41'),
(27, 1, 21, 0, ' ajdlaskdnasd é ô ção', '2017-02-14 18:51:11'),
(28, 1, 21, 0, ' ajdlaskdnasd é ô ção', '2017-02-14 18:51:47'),
(29, 1, 21, 0, ' ééééé´ho alô', '2017-02-14 19:00:40'),
(30, 1, 21, 0, ' ééééé´ho alô', '2017-02-14 19:01:34'),
(31, 1, 21, 0, ' ', '2017-02-14 19:11:12'),
(32, 1, 21, 0, ' alô !!!', '2017-02-14 19:11:18'),
(33, 1, 21, 0, ' alô !!! this is um bizarro testé â', '2017-02-14 19:14:29'),
(34, 1, 21, 0, ' alô !!! this is um bizarro testé â', '2017-02-14 19:20:15'),
(35, 1, 21, 0, ' alô !!!!!!!!! ', '2017-02-14 19:20:40'),
(36, 1, 21, 0, ' what funciona ?? ô ô !', '2017-02-14 19:21:31'),
(37, 1, 21, 0, ' what funciona ?? ô ô !', '2017-02-14 19:22:19'),
(38, 1, 21, 0, ' incrível!!! esta porra já aceita caracteres tûga ! и български/кирилица също?', '2017-02-14 19:25:17'),
(39, 20, 1, 0, ' Blah blah blah ', '2017-02-15 00:15:25'),
(40, 1, 20, 0, ' this is a test message on kollaj', '2017-02-17 23:17:12'),
(41, 1, 20, 0, ' this is a test message on kollaj', '2017-02-17 23:21:57'),
(42, 1, 20, 0, ' this is a test message on kollaj', '2017-02-17 23:59:29'),
(43, 1, 20, 0, ' yo nigga', '2017-02-18 00:00:17'),
(44, 1, 20, 0, ' yo nigga', '2017-02-18 00:00:29'),
(45, 1, 20, 0, ' queres flr pelo ', '2017-02-18 00:00:35'),
(46, 1, 20, 0, ' kollaj?', '2017-02-18 00:00:39'),
(47, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:39'),
(48, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:41'),
(49, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:42'),
(50, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:42'),
(51, 20, 1, 0, ' Jkjkhlh', '2017-02-18 00:00:43'),
(52, 1, 20, 0, ' queres flr pelo', '2017-02-18 00:46:33'),
(53, 1, 20, 0, ' kollaj ?', '2017-02-18 00:46:37'),
(54, 20, 1, 0, ' Hello', '2017-02-18 00:46:51'),
(55, 20, 1, 0, ' Chupa me a pila', '2017-02-18 00:47:08'),
(56, 1, 20, 0, ' a tua sorte é q essa merda ainda n brekou XD', '2017-02-18 00:47:34'),
(57, 1, 20, 0, ' é', '2017-02-18 00:47:50'),
(58, 1, 21, 0, ' dfsdfsdfs', '2017-02-18 18:45:24'),
(59, 1, 20, 0, ' test uan tu', '2017-02-23 09:18:23'),
(60, 1, 20, 0, ' texte un dos trez', '2017-02-23 09:20:13'),
(61, 1, 21, 0, ' sjdajksdalksda', '2017-03-08 17:01:16'),
(62, 1, 21, 0, ' Ççççção', '2017-03-10 04:34:39'),
(63, 1, 21, 0, ' çççç', '2017-03-10 04:36:48'),
(64, 1, 21, 0, ' Ççç', '2017-03-10 04:38:23'),
(65, 1, 21, 0, ' teste um dois três', '2017-03-10 04:38:33'),
(66, 1, 21, 0, ' asdfag', '2017-03-10 04:39:53'),
(67, 1, 21, 0, ' test12', '2017-03-10 04:49:13'),
(68, 1, 23, 0, ' test12', '2017-03-10 04:50:46'),
(69, 1, 21, 0, ' test 43', '2017-03-10 04:50:58'),
(70, 1, 21, 0, ' Тест йо йо ', '2017-03-10 04:53:33'),
(71, 1, 21, 0, ' асфхайсдфсдгфасд this is in inglish and isto em tugâ o manõ', '2017-03-12 14:33:14'),
(72, 42, 42, 0, 'Array', '2017-03-16 02:46:41'),
(73, 42, 43, 0, 'Life shrinks or expands in proportion to one’s courage.|Anais Nin\r', '2017-03-16 02:49:36'),
(74, 43, 42, 0, ' asd', '2017-03-16 02:50:42'),
(75, 42, 43, 0, 'First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.|Aristotle\r', '2017-03-16 02:50:43'),
(76, 43, 42, 0, ' ', '2017-03-16 02:50:47'),
(77, 42, 43, 0, '“Since we decided a few weeks ago to adopt the leaf as legal tender, we have, of course, all become immensely rich.”\r', '2017-03-16 02:50:48'),
(78, 43, 42, 0, ' ', '2017-03-16 02:50:54'),
(79, 42, 43, 0, 'The storm had now definitely abated, and what thunder there was now grumbled over more distant hills, like a man saying “And another thing…” twenty minutes after admitting he’s lost the argument.\r', '2017-03-16 02:50:54'),
(80, 43, 42, 0, ' ', '2017-03-16 02:51:08'),
(81, 42, 43, 0, 'So I started writing my own quotes now.\r', '2017-03-16 02:51:09'),
(82, 43, 42, 0, ' ', '2017-03-16 02:51:13'),
(83, 42, 43, 0, 'A truly rich man is one whose children run into his arms when his hands are empty.|Unknown\r', '2017-03-16 02:51:13'),
(84, 43, 42, 0, ' ', '2017-03-16 02:51:21'),
(85, 42, 43, 0, 'Our lives begin to end the day we become silent about things that matter.|Martin Luther King Jr.\r', '2017-03-16 02:51:21'),
(86, 43, 42, 0, ' ', '2017-03-16 02:51:25'),
(87, 42, 43, 0, 'In order to succeed, your desire for success should be greater than your fear of failure.|Bill Cosby\r', '2017-03-16 02:51:25'),
(88, 43, 42, 0, ' ', '2017-03-16 02:51:33'),
(89, 42, 43, 0, 'The last ever dolphin message was misinterpreted as a surprisingly sophisticated attempt to do a double-backwards-somersault through a hoop whilst whistling the ‘Star Spangled Banner’, but in fact the message was this: So long and thanks for all the fish.\r', '2017-03-16 02:51:33'),
(90, 42, 44, 0, '“I\'m selfish, impatient and a little insecure. I make mistakes, I am out of control and at times hard to handle. But if you can\'t handle me at my worst, then you sure as hell don\'t deserve me at my best.†- Marilyn Monroe\r', '2017-03-16 02:56:31'),
(91, 42, 45, 0, 'You make me want to be a better man.\r', '2017-03-16 02:58:55'),
(92, 44, 42, 0, ' ', '2017-03-16 03:07:31'),
(93, 42, 44, 0, 'Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.|Johann Wolfgang von Goethe\r', '2017-03-16 03:07:31'),
(94, 44, 42, 0, ' ', '2017-03-16 03:07:35'),
(95, 42, 44, 0, 'The only way to do great work is to love what you do.|Steve Jobs\r', '2017-03-16 03:07:35'),
(96, 44, 42, 0, ' ', '2017-03-16 03:09:09'),
(97, 42, 44, 0, 'When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us.|Helen Keller\r', '2017-03-16 03:09:09'),
(98, 44, 42, 0, ' ', '2017-03-16 03:09:13'),
(99, 42, 44, 0, 'âIt seemed to me,â said Wonko the Sane, âthat any civilization that had so far lost its head as to need to include a set of detailed instructions for use in a packet of toothpicks, was no longer a civilization in which I could live and stay sane.â\r', '2017-03-16 03:09:13'),
(100, 44, 42, 0, ' ', '2017-03-16 03:09:26'),
(101, 42, 44, 0, 'So I started writing my own quotes now.\r', '2017-03-16 03:09:26'),
(102, 44, 42, 0, ' ', '2017-03-16 03:09:29'),
(103, 42, 44, 0, 'Curiously enough, the only thing that went through the mind of the bowl of petunias as it fell was Oh no, not again. Many people have speculated that if we knew exactly why the bowl of petunias had thought that we would know a lot more about the nature of the Universe than we do now.\r', '2017-03-16 03:09:29'),
(104, 44, 42, 0, ' ', '2017-03-16 03:09:33'),
(105, 42, 44, 0, 'Many were increasingly of the opinion that they?d all made a big mistake in coming down from the trees in the first place. And some said that even the trees had been a bad move, and that no one should ever have left the oceans.\r', '2017-03-16 03:09:33'),
(106, 44, 42, 0, ' ', '2017-03-16 03:09:37'),
(107, 42, 44, 0, 'Do what you can, where you are, with what you have.|Teddy Roosevelt\r', '2017-03-16 03:09:38'),
(108, 44, 42, 0, ' ', '2017-03-16 03:09:40'),
(109, 42, 44, 0, '?Shee, you guys are so unhip it?s a wonder your bums don?t fall off.?\r', '2017-03-16 03:09:40'),
(110, 44, 42, 0, ' ', '2017-03-16 03:10:08'),
(111, 42, 44, 0, 'Whatever the mind of man can conceive and believe, it can achieve.|Napoleon Hill\r', '2017-03-16 03:10:08'),
(112, 44, 42, 0, ' ', '2017-03-16 03:10:11'),
(113, 42, 44, 0, 'The Bulgarians always say: &quot;Brother, if you can\'t solve a problem with money... solve it with a lot of money.&quot;\r', '2017-03-16 03:10:11'),
(114, 44, 42, 0, ' ', '2017-03-16 03:10:31'),
(115, 42, 44, 0, 'Your time is limited, so don’t waste it living someone else’s life.|Steve Jobs\r', '2017-03-16 03:10:31'),
(116, 44, 42, 0, ' ', '2017-03-16 03:10:34'),
(117, 42, 44, 0, 'You make me want to be a better man.\r', '2017-03-16 03:10:34'),
(118, 44, 42, 0, ' ', '2017-03-16 03:10:37'),
(119, 42, 44, 0, '“Be yourself; everyone else is already taken.” - Oscard Wilde\r', '2017-03-16 03:10:37'),
(120, 44, 42, 0, ' ', '2017-03-16 03:10:41'),
(121, 42, 44, 0, 'Dream big and dare to fail.|Norman Vaughan\r', '2017-03-16 03:10:41'),
(122, 44, 42, 0, ' ', '2017-03-16 03:10:44'),
(123, 42, 44, 0, '“Shee, you guys are so unhip it’s a wonder your bums don’t fall off.”\r', '2017-03-16 03:10:44'),
(124, 44, 42, 0, ' ', '2017-03-16 03:10:47'),
(125, 42, 44, 0, 'How wonderful it is that nobody need wait a single moment before starting to improve the world.|Anne Frank\r', '2017-03-16 03:10:47'),
(126, 44, 42, 0, ' ', '2017-03-16 03:10:54'),
(127, 42, 44, 0, 'That fucking bitch...\r', '2017-03-16 03:10:54'),
(128, 44, 42, 0, ' ', '2017-03-16 03:10:56'),
(129, 42, 44, 0, 'If you want your children to turn out well, spend twice as much time with them, and half as much money.|Abigail Van Buren\r', '2017-03-16 03:10:57'),
(130, 44, 42, 0, ' ', '2017-03-16 03:10:59'),
(131, 42, 44, 0, 'Either you run the day, or the day runs you.|Jim Rohn\r', '2017-03-16 03:10:59'),
(132, 44, 42, 0, ' ', '2017-03-16 03:11:02'),
(133, 42, 44, 0, 'Change your thoughts and you change your world.|Norman Vincent Peale\r', '2017-03-16 03:11:02'),
(134, 44, 42, 0, ' ', '2017-03-16 03:20:02'),
(135, 42, 44, 0, '“Since we decided a few weeks ago to adopt the leaf as legal tender, we have, of course, all become immensely rich.”\r', '2017-03-16 03:20:02'),
(136, 44, 42, 0, ' sdasda', '2017-03-16 03:23:20'),
(137, 42, 44, 0, 'Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.|Jamie Paolinetti\r', '2017-03-16 03:23:20'),
(138, 44, 42, 0, ' ,khgjkhgkhjg', '2017-03-16 14:06:29'),
(139, 42, 44, 0, 'The ships hung in the sky in much the same way that bricks don’t.\r', '2017-03-16 14:06:29'),
(140, 44, 42, 0, ' kjhjkh', '2017-03-16 14:06:35'),
(141, 42, 44, 0, 'Our lives begin to end the day we become silent about things that matter.|Martin Luther King Jr.\r', '2017-03-16 14:06:35'),
(142, 44, 42, 0, ' iuhdlfd', '2017-03-16 14:08:28'),
(143, 42, 44, 0, 'Nothing is impossible, the word itself says, “I’m possible!”|Audrey Hepburn\r', '2017-03-16 14:08:28'),
(144, 1, 21, 0, ' скдлфйасдфхкф dsgjhsdjkfhgdjlg çççççãóò', '2017-03-18 18:04:04');
/*!40000 ALTER TABLE `outbox` ENABLE KEYS */;
-- Dumping structure for table kollaj.post
CREATE TABLE IF NOT EXISTS `post` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`uid` int(10) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`imgpath` varchar(250) NOT NULL,
`imgdesc` varchar(1000) NOT NULL,
`likes` int(6) NOT NULL,
`price` int(6) DEFAULT NULL,
`type` varchar(10) NOT NULL DEFAULT 'imagePost',
`seen` int(10) NOT NULL,
`angle` varchar(50) NOT NULL,
`scale` varchar(50) NOT NULL,
`tx` varchar(50) NOT NULL,
`ty` varchar(50) NOT NULL,
`imgX` varchar(50) NOT NULL,
`imgY` varchar(50) NOT NULL,
`imgH` varchar(50) NOT NULL,
`imgW` varchar(50) NOT NULL,
`mask1` varchar(500) NOT NULL,
`mask2` varchar(500) NOT NULL,
`kollaj` int(1) NOT NULL DEFAULT '1',
`customUrl` varchar(50) DEFAULT NULL,
`special` int(1) NOT NULL DEFAULT '0',
`sof` int(1) DEFAULT '1' COMMENT 'show the img on feed?',
`sfimg` int(1) DEFAULT '1' COMMENT 'show full img on img post?',
PRIMARY KEY (`id`),
KEY `uid` (`uid`,`imgpath`(191))
) ENGINE=InnoDB AUTO_INCREMENT=420 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table kollaj.post: ~330 rows (approximately)
/*!40000 ALTER TABLE `post` DISABLE KEYS */;
INSERT INTO `post` (`id`, `uid`, `date`, `imgpath`, `imgdesc`, `likes`, `price`, `type`, `seen`, `angle`, `scale`, `tx`, `ty`, `imgX`, `imgY`, `imgH`, `imgW`, `mask1`, `mask2`, `kollaj`, `customUrl`, `special`, `sof`, `sfimg`) VALUES
(1, 1, '2017-01-27 20:34:47', 'fbd02154b0981ad2d0e20ad5259850da.jpg', '', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.111111111111086', '160.99999999999997', '397.00000000000006', '705.7777777777778', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(3, 46, '2017-01-27 20:54:45', '20326.jpg', '', 0, NULL, 'imagePost', 0, '18.372740439937047', '0.9830644675696159', '29.458999633789063', '-56.954986572265625', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999864 409.78961182672407 L 329.10000000000025 350.5450546259301 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.09999999999917 222.30722436403397 30.90000000000006 278.63199310824257 Z', 1, NULL, 0, 1, 0),
(4, 1, '2017-01-27 22:14:32', '4775.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '79.3900146484375', '8.493011474609375', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 329.1 85.19999999999999 L 142.53902095437252 85.20000000000002 148.33013299313782 482.79999999999995 329.1 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 286.9331038208789 85.20000000000002 303.58404451467436 482.80000000000064 30.899999999999977 482.8 Z', 1, NULL, 0, 1, 1),
(5, 1, '2017-01-27 22:15:12', '25757.jpg', '', 0, NULL, 'imagePost', 0, '101.02479826727017', '1.4480790168773172', '79.3900146484375', '8.493011474609375', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 329.1 85.19999999999999 L 142.53902095437252 85.20000000000002 148.33013299313782 482.79999999999995 329.1 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 286.9331038208789 85.20000000000002 303.58404451467436 482.80000000000064 30.899999999999977 482.8 Z', 1, NULL, 0, 1, 0),
(6, 1, '2017-01-27 22:17:43', '852.jpg', '', 0, NULL, 'imagePost', 0, '136.6404364989114', '1.004849473463875', '-153.78700065612793', '-171.36599731445313', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.10000000000065 240.8556840254437 30.899999999999995 413.856209246535 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.1000000000004 193.35865573641047 30.90000000000004 153.43514210422407 Z', 1, NULL, 0, 1, 1),
(7, 1, '2017-01-28 16:16:45', '2765.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 145.74232166777202 194.76501305483035 86.62060178163836 375.23498694516985 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 181.0010828110869 194.76501305483023 277.4083993719495 375.2349869451696 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(8, 2, '2017-01-28 16:17:39', '11026.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 145.74232166777202 194.76501305483035 86.62060178163836 375.23498694516985 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 181.0010828110869 194.76501305483023 277.4083993719495 375.2349869451696 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(9, 1, '2017-01-28 16:17:45', '739.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 145.74232166777202 194.76501305483035 86.62060178163836 375.23498694516985 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 181.0010828110869 194.76501305483023 277.4083993719495 375.2349869451696 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(10, 1, '2017-01-28 18:26:50', '23107.jpg', '', 0, NULL, 'imagePost', 0, '96.05741565442122', '0.9400133071610177', '-163.13500022888184', '-89.78401184082031', '20', '166.5', '240', '320', 'M 340 166.5 L 30.16309318767951 166.49999999999997 192.50527625508838 406.49999999999955 340 406.5 Z', 'M 20 166.5 L 340 166.5 340 406.5 247.76587972316537 406.49999999999955 20.000000000000057 318.5810215010993 Z', 1, NULL, 0, 1, 0),
(11, 1, '2017-01-28 18:26:53', '16258.jpg', '', 0, NULL, 'imagePost', 0, '91.40239295006097', '1.0844175974999464', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 282.2006092600963 194.7650130548302 187.30985769426871 375.2349869451693 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 47.45686614498106 194.76501305483038 62.08702088883041 375.2349869451695 340 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(12, 1, '2017-01-28 18:26:53', '19962.jpg', '', 0, NULL, 'imagePost', 0, '91.40239295006097', '1.0844175974999464', '0', '-120', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 282.2006092600963 194.7650130548302 187.30985769426871 375.2349869451693 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 47.45686614498106 194.76501305483038 62.08702088883041 375.2349869451695 340 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(13, 1, '2017-01-30 11:14:26', '18691.jpg', '', 0, NULL, 'imagePost', 0, '-36.835878466856116', '0.8158206216901444', '146.29700088500977', '-174.8620147705078', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 328.8375 85.05000000000001 L 168.30794231433697 85.05000000000004 72.13499817194916 481.9500000000002 328.8375 481.95 Z', 'M 31.162499999999994 85.05000000000001 L 195.66668577277443 85.05000000000007 257.85537704998234 481.9499999999997 31.162499999999994 481.95 Z', 1, NULL, 0, 1, 0),
(14, 1, '2017-01-30 11:14:26', '32499.jpg', '', 0, NULL, 'imagePost', 0, '-36.835878466856116', '0.8158206216901444', '146.29700088500977', '-174.8620147705078', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 328.8375 85.05000000000001 L 168.30794231433697 85.05000000000004 72.13499817194916 481.9500000000002 328.8375 481.95 Z', 'M 31.162499999999994 85.05000000000001 L 195.66668577277443 85.05000000000007 257.85537704998234 481.9499999999997 31.162499999999994 481.95 Z', 1, NULL, 0, 1, 1),
(15, 1, '2017-01-30 13:15:25', '1307.jpg', '', 0, NULL, 'imagePost', 0, '-33.59064631427157', '0.9765473062944923', '-24.964996337890625', '207.8380126953125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83749999999736 462.1440804411992 31.162499999999977 218.9492915343928 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 336.7655659161241 31.16250000000002 103.0835364665563 Z', 1, NULL, 0, 1, 0),
(16, 1, '2017-01-30 13:15:28', '15655.jpg', '', 0, NULL, 'imagePost', 0, '-33.59064631427157', '0.9765473062944923', '-24.964996337890625', '207.8380126953125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83749999999736 462.1440804411992 31.162499999999977 218.9492915343928 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 336.7655659161241 31.16250000000002 103.0835364665563 Z', 1, NULL, 0, 1, 1),
(17, 1, '2017-01-30 13:15:30', '22201.jpg', '', 0, NULL, 'imagePost', 0, '-33.59064631427157', '0.9765473062944923', '-24.964996337890625', '207.8380126953125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83749999999736 462.1440804411992 31.162499999999977 218.9492915343928 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 336.7655659161241 31.16250000000002 103.0835364665563 Z', 1, NULL, 0, 1, 1),
(18, 1, '2017-01-30 13:15:32', '18352.jpg', '', 0, NULL, 'imagePost', 0, '-33.59064631427157', '0.9765473062944923', '-24.964996337890625', '207.8380126953125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83749999999736 462.1440804411992 31.162499999999977 218.9492915343928 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 336.7655659161241 31.16250000000002 103.0835364665563 Z', 1, NULL, 0, 1, 1),
(19, 1, '2017-01-31 16:44:22', '27793.jpg', 'Take her away!', 0, NULL, 'imagePost', 0, '88.40400407302491', '1.0267232590896702', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 190.957116088948 194.76501305483038 54.70946641923724 375.23498694516974 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 200.62770838361763 194.7650130548301 291.53077983114656 375.23498694517093 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(20, 1, '2017-01-31 16:44:51', '7124.jpg', 'You are a part of the Rebel Alliance and a traitor!', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 163.98145894047582 194.76501305483018 118.65195707656224 375.2349869451698 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 223.55956413250044 194.7650130548302 266.7510010927424 375.23498694517014 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(21, 1, '2017-01-31 16:44:51', '28410.jpg', 'As you wish. You mean it controls your actions? I care.', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 163.98145894047582 194.76501305483018 118.65195707656224 375.2349869451698 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 223.55956413250044 194.7650130548302 266.7510010927424 375.23498694517014 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(23, 21, '2017-01-31 17:01:37', '29830.jpg', 'We shall say \'Ni\' again to you, if you do not appease us.', 0, NULL, 'imagePost', 0, '13.814922722127108', '1.529250032028902', '3.5', '57.5', '20', '200.16666666666669', '179.66666666666666', '320', 'M 19.999999999999968 355.5264057180736 L 339.9999999999987 355.9831532739391 340 200.16666666666669 20 200.16666666666669 Z', 'M 20 200.16666666666669 L 319.8926356402633 200.16666666666666 318.16519116569464 379.83333333333184 20 379.83333333333337 Z', 1, NULL, 0, 1, 1),
(24, 1, '2017-01-31 18:33:08', '3365.jpg', '', 0, NULL, 'imagePost', 0, '96.8178758783447', '2.215715301701214', '-8.787979125976563', '499.139999389648438', '20', '218', '180', '320', 'M 20 218 L 189.24318422722996 218.00000000000034 226.55194191424786 398.00000000000074 20 398 Z', 'M 340 218 L 56.64482041010779 218.00000000000006 74.11919210322955 398.0000000000001 340 398 Z', 1, NULL, 0, 1, 0),
(31, 20, '2017-02-01 00:09:07', '7944.jpg', '', 0, NULL, 'imagePost', 0, '109.11783023041403', '1.819010835297079', '-67.40601348876953', '505.99501037597656', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 42.65767184223926 194.76501305483018 110.24765444658672 375.2349869451691 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 237.2305753778367 194.7650130548307 197.90712040210985 375.2349869451694 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(32, 20, '2017-02-01 00:15:40', '30855.jpg', '', 0, NULL, 'imagePost', 0, '105.83335651438972', '1.7814701785356857', '0', '570', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 141.34642817752524 194.76501305483038 188.32677574463005 375.23498694516934 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 181.40927004545887 194.7650130548302 233.6455970037816 375.23498694516974 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(33, 20, '2017-02-01 00:16:15', '9140.jpg', '', 0, NULL, 'imagePost', 0, '92.12515839928255', '1.1730897717784596', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 340 194.7650130548303 340 375.2349869451697 75.39044780484738 375.2349869451695 19.999999999999954 315.0580062977522 Z', 'M 20 194.7650130548303 L 274.645362272901 194.76501305482998 286.4007094080427 375.23498694517065 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(34, 20, '2017-02-01 00:18:41', '15325.jpg', '', 0, NULL, 'imagePost', 0, '92.7496630883262', '1.950146377083625', '3.4950103759765625', '1329.8350219726563', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 194.0782016759378 194.7650130548304 188.91010448136262 375.2349869451693 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 168.61292309127398 194.76501305483015 164.107498517273 375.2349869451696 340 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(35, 20, '2017-02-01 00:44:50', '31450.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '99.86199951171875', '1240.1279907226563', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 309.8811942532066 194.76501305483052 252.35411751710495 375.23498694516957 20 375.2349869451697 Z', 'M 20 194.7650130548303 L 247.42954130782542 194.76501305483026 167.9701653195963 375.23498694516957 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(36, 20, '2017-02-01 00:48:00', '9972.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '20.97100830078125', '1319.7989807128906', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 148.0272581782649 194.76501305483038 125.85224455228273 375.2349869451695 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 271.70069053152594 194.76501305483 243.71441664200947 375.23498694516945 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(37, 20, '2017-02-01 00:50:53', '22663.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '28.46099853515625', '1319.1869812011719', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 176.50983714466489 194.76501305483023 141.29666098140734 375.23498694516985 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 274.6732258949026 194.76501305483004 257.2191677939279 375.23498694517025 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(38, 20, '2017-02-01 00:53:48', '22649.jpg', '', 0, NULL, 'imagePost', 0, '-13.11019798162215', '0.9599392750510316', '48.608001708984375', '1324.8559875488281', '20', '194.7650130548303', '180.46997389033942', '320', 'M 19.999999999999954 310.3666348156189 L 339.99999999999943 291.7860411630596 340 194.7650130548303 20 194.7650130548303 Z', 'M 20 375.2349869451697 L 340 375.2349869451697 340.0000000000005 262.14309874143873 19.999999999999964 275.45332565362753 Z', 1, NULL, 0, 1, 0),
(39, 20, '2017-02-01 00:57:38', '9883.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '35.94999694824219', '1289.8419799804688', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 267.1754106291747 194.76501305483004 249.07042581056854 375.2349869451695 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 187.92189813636028 194.7650130548304 160.97570880218197 375.23498694516974 340 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(40, 20, '2017-02-01 01:01:27', '10769.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '59.58099365234375', '1323.0130004882813', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 253.79519370078222 194.76501305483026 233.4859501530946 375.23498694516974 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 178.66448228401455 194.76501305483018 179.58899521034544 375.23498694516917 340 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(41, 20, '2017-02-01 01:04:39', '25426.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '81.81199645996094', '1262.1180114746094', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 309.725834221562 194.7650130548305 247.00562823726642 375.2349869451695 20 375.2349869451697 Z', 'M 20 194.7650130548303 L 208.9785083138436 194.7650130548301 170.11124779160534 375.2349869451696 20 375.2349869451697 Z', 1, NULL, 0, 1, 1),
(42, 1, '2017-02-01 18:39:19', '22674.jpg', 'Annihilate? No. No violence. I won\'t stand for it. Not now, not ever, do you understand me?! I\'m the Doctor, the Oncoming Storm - and you basically meant beat them in a football match, didn\'t you?', 0, NULL, 'imagePost', 0, '4.4863062142088665', '1.0882523430252748', '-15', '700', '20', '187.5', '240', '320', 'M 20.000000000000007 361.3130624773879 L 339.99999999999943 370.4203345468528 340 187.5 20 187.5 Z', 'M 20 427.5 L 340 427.5 340.0000000000006 233.42520568405175 19.999999999999982 272.2268219657568 Z', 1, NULL, 0, 1, 1),
(43, 21, '2017-02-02 00:33:34', '27029.jpg', 'I am the last of my species, and I know how that weighs on the heart so don\'t lie to me!', 0, NULL, 'imagePost', 0, '0', '1', '3.5', '66.03399658203125', '66.09444444444446', '87', '406', '227.81111111111107', 'M 66.09444444444446 493 L 293.90555555555557 493 293.90555555555596 128.80978660779925 66.09444444444456 189.1571008094187 Z', 'M 66.09444444444414 462.0000000000001 L 293.90555555555244 462 293.90555555555557 87 66.09444444444446 87 Z', 1, NULL, 0, 1, 1),
(44, 21, '2017-02-02 00:37:28', '25858.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '60', '1301', '66.09444444444446', '87', '406', '227.81111111111107', 'M 66.09444444444443 400.99917447568055 L 293.905555555556 418.3823516287397 293.90555555555557 87 66.09444444444446 87 Z', 'M 66.09444444444446 493 L 293.90555555555557 493 293.90555555555534 223.60662473794673 66.09444444444439 230.48394129979025 Z', 1, NULL, 0, 1, 1),
(45, 21, '2017-02-02 00:37:28', '1691.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '60', '1301', '66.09444444444446', '87', '406', '227.81111111111107', 'M 66.09444444444443 400.99917447568055 L 293.905555555556 418.3823516287397 293.90555555555557 87 66.09444444444446 87 Z', 'M 66.09444444444446 493 L 293.90555555555557 493 293.90555555555534 223.60662473794673 66.09444444444439 230.48394129979025 Z', 1, NULL, 0, 1, 1),
(46, 20, '2017-02-02 00:42:14', '15968.jpg', '', 0, NULL, 'imagePost', 0, '62.74486043018396', '0.6573856183959638', '29.958999633789063', '1308.8330078125', '20', '194.7650130548303', '180.46997389033942', '320', 'M 19.999999999999957 330.22339214864706 L 340.0000000000007 334.7971867992806 340 194.7650130548303 20 194.7650130548303 Z', 'M 20 375.2349869451697 L 340 375.2349869451697 340.0000000000005 260.76233988360815 19.999999999999968 238.14980299903056 Z', 1, NULL, 0, 1, 1),
(47, 20, '2017-02-02 00:42:31', '32537.jpg', '', 0, NULL, 'imagePost', 0, '8.194990457842778', '0.7351844643218763', '31.7550048828125', '1267.8650207519531', '20', '194.7650130548303', '180.46997389033942', '320', 'M 19.999999999999957 330.22339214864706 L 340.0000000000007 334.7971867992806 340 194.7650130548303 20 194.7650130548303 Z', 'M 20 375.2349869451697 L 340 375.2349869451697 340.0000000000005 260.76233988360815 19.999999999999968 238.14980299903056 Z', 1, NULL, 0, 1, 1),
(48, 21, '2017-02-02 00:45:25', '22616.jpg', 'I\'m the Doctor. Well, they call me the Doctor. I don\'t know why. I call me the Doctor too. I still don\'t know why.', 0, NULL, 'imagePost', 0, '26.119022226709262', '0.9226465447049054', '-30.5', '2498.019989013672', '66.09444444444446', '87', '406', '227.81111111111107', 'M 66.09444444444435 469.2902496099843 L 293.90555555555625 318.95624024961006 293.90555555555557 87 66.09444444444446 87 Z', 'M 66.09444444444446 493 L 293.90555555555557 493 293.90555555555596 126.00208875021613 66.0944444444445 315.4300485352745 Z', 1, NULL, 0, 1, 1),
(49, 20, '2017-02-02 22:58:33', '2577.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '10.985000610351563', '1855.8790283203125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 178.5937014672482 31.162500000000062 232.71757860359773 Z', 'M 31.162499999999884 366.19512149579487 L 328.83749999999907 322.4450377765329 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(50, 20, '2017-02-02 23:01:07', '9201.jpg', 'Saving the world with meals on wheels.', 0, NULL, 'imagePost', 0, '0', '1', '39.94398498535156', '3012.8870239257813', '20', '195', '180', '320', 'M 20 195 L 286.0452816173166 194.99999999999983 255.06507614337914 375.00000000000045 20 375 Z', 'M 340 195 L 150.52830900070376 195.0000000000002 131.56287709396875 375.00000000000017 340 375 Z', 1, NULL, 0, 1, 1),
(51, 20, '2017-02-02 23:24:18', '14447.jpg', 'No… It\'s a thing; it\'s like a plan, but with more greatness. I am the Doctor, and you are the Daleks! You know how I sometimes have really brilliant ideas? It\'s art! A statement on modern society, \'Oh Ain\'t Modern Society Awful?\'!', 0, NULL, 'imagePost', 0, '0', '1', '33.95298767089844', '3016.8580017089844', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000005 157.02733101267867 31.162499999999973 198.87492537743177 Z', 'M 31.162499999999977 315.2628668433213 L 328.8375000000005 289.9555161117459 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(52, 20, '2017-02-02 23:24:24', '25581.jpg', 'Father Christmas. Santa Claus. Or as I\'ve always known him: Jeff.', 0, NULL, 'imagePost', 0, '0', '1', '30.457992553710938', '3012.0910034179688', '20', '195', '180', '320', 'M 20 195 L 243.56657011241737 194.99999999999983 229.85508953658 374.99999999999955 20 375 Z', 'M 340 195 L 112.41750098952797 194.9999999999999 109.09446925749039 375.0000000000003 340 375 Z', 1, NULL, 0, 1, 1),
(53, 20, '2017-02-02 23:51:56', '9395.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '27.96099853515625', '3602.3290100097656', '20', '195', '180', '320', 'M 20 195 L 299.51811783463063 195.0000000000001 277.51060258376987 374.9999999999996 20 375 Z', 'M 340 195 L 172.64209891755743 194.99999999999983 183.0800503069158 375.0000000000003 340 375 Z', 1, NULL, 0, 1, 1),
(54, 20, '2017-02-02 23:55:09', '2117.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '9.7030029296875', '3607.635986328125', '20', '195', '180', '320', 'M 20 195 L 267.43466779893504 195.00000000000034 251.37191482746837 375.0000000000005 20 375 Z', 'M 340 195 L 152.41033708192043 195.0000000000002 144.5642725598839 375.0000000000001 340 375 Z', 1, NULL, 0, 1, 1),
(55, 20, '2017-02-02 23:57:16', '28199.jpg', 'All I\'ve got to do is pass as an ordinary human being. Simple. What could possibly go wrong?', 0, NULL, 'imagePost', 0, '0', '1', '75.89500427246094', '3596.782012939453', '20', '195', '180', '320', 'M 340 195 L 99.80518193594862 195.00000000000017 94.29724167885388 375.0000000000001 340 375 Z', 'M 20 195 L 247.87028376774575 194.99999999999991 212.2754168469236 375.0000000000004 20 375 Z', 1, NULL, 0, 1, 1),
(56, 20, '2017-02-02 23:57:40', '30932.jpg', 'Uh, no, they\'re saying "Boo-urns, Boo-urns." Well, he\'s kind of had it in for me ever since I accidentally ran over his dog. Actually, replace "accidentally" with "repeatedly" and replace "dog" with "son."', 0, NULL, 'imagePost', 0, '-79.692612646373', '1.673706433809859', '25.464004516601563', '3563.373992919922', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999998 241.5893481451589 31.162500000000094 255.81674504869568 Z', 'M 31.16250000000002 337.6726754851605 L 328.8375 329.0142456191997 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(57, 20, '2017-02-02 23:57:47', '14973.jpg', 'Now honestly, what is that? Do they give a Nobel Prize for attempted chemistry?', 0, NULL, 'imagePost', 0, '-79.692612646373', '1.673706433809859', '27.46099853515625', '3592.3519897460938', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999998 241.5893481451589 31.162500000000094 255.81674504869568 Z', 'M 31.16250000000002 337.6726754851605 L 328.8375 329.0142456191997 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(58, 20, '2017-02-03 00:02:44', '3396.jpg', 'Oh, so they have Internet on computers now!', 0, NULL, 'imagePost', 0, '0', '1', '0', '5130', '20', '195', '180', '320', 'M 20 195 L 271.20664696661163 194.99999999999983 272.23394344615394 374.9999999999996 20 375 Z', 'M 20 375 L 340 375 340.0000000000005 247.3928404932721 19.99999999999997 260.04012756926295 Z', 1, NULL, 0, 1, 1),
(59, 20, '2017-02-03 00:02:45', '29047.jpg', 'Dear Mr. President, There are too many states nowadays. Please, eliminate three. P.S. I am not a crackpot.', 0, NULL, 'imagePost', 0, '0', '1', '0', '5103', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 257.72233881245234 85.05000000000014 259.7000822113886 481.94999999999976 31.162499999999994 481.95 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 181.08451012723123 31.16249999999997 203.22503436755494 Z', 1, NULL, 0, 1, 1),
(60, 21, '2017-02-03 00:02:46', '13344.jpg', ' The answers to life\'s problems aren\'t at the bottom of a bottle, they\'re on TV! ', 0, NULL, 'imagePost', 0, '0', '1', '0', '2900', '20', '200.16666666666669', '179.66666666666666', '320', 'M 20 200.16666666666669 L 245.91850784502088 200.16666666666669 244.02001280819746 379.8333333333333 20 379.83333333333337 Z', 'M 20 379.83333333333337 L 340 379.83333333333337 339.9999999999998 267.1397288708372 20.000000000000014 254.08161322280063 Z', 1, NULL, 0, 1, 1),
(63, 23, '2017-02-03 22:31:37', 'default.jpg', 'Fire can be our friend; whether it\'s toasting marshmallows or raining down on Charlie. ', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(64, 24, '2017-02-03 22:34:56', 'default.jpg', 'Kids, you tried your best and you failed miserably. The lesson is, never try.', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(65, 27, '2017-02-03 22:42:23', 'default.jpg', 'Obi-Wan is here. The Force is with him. ', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(66, 28, '2017-02-03 22:45:02', 'default.jpg', 'Hey, Luke! May the Force be with you. I find your lack of faith disturbing. Don\'t be too proud of this technological terror you\'ve constructed. The ability to destroy a planet is insignificant next to the power of the Force.', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(67, 20, '2017-02-06 23:26:18', '1827.jpg', 'Don\'t underestimate the Force.', 0, NULL, 'imagePost', 0, '-160.29494156288956', '1.621233333895514', '35.94999694824219', '-93.42698669433594', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83750000000003 144.3918441275866 31.162499999999962 448.27933067170557 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000009 112.82429143146584 31.162499999999962 353.6341883610112 Z', 1, NULL, 0, 1, 1),
(68, 20, '2017-02-06 23:26:20', '3417.jpg', 'Remember, a Jedi can feel the Force flowing through him.', 0, NULL, 'imagePost', 0, '-160.29494156288956', '1.621233333895514', '35.94999694824219', '-93.42698669433594', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83750000000003 144.3918441275866 31.162499999999962 448.27933067170557 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000009 112.82429143146584 31.162499999999962 353.6341883610112 Z', 1, NULL, 0, 1, 1),
(69, 20, '2017-02-06 23:26:29', '21508.jpg', 'The Lady of the Lake, her arm clad in the purest shimmering samite, held aloft Excalibur from the bosom of the water, signifying by divine providence that I, Arthur, was to carry Excalibur. That is why I am your king.', 0, NULL, 'imagePost', 0, '-160.29494156288956', '1.621233333895514', '35.94999694824219', '-93.42698669433594', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83750000000003 144.3918441275866 31.162499999999962 448.27933067170557 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000009 112.82429143146584 31.162499999999962 353.6341883610112 Z', 1, NULL, 0, 1, 1),
(70, 20, '2017-02-06 23:44:11', '11757.jpg', 'Is that a cooking show? And until then, I can never die? I don\'t \'need\' to drink.', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000015 171.35442747785925 31.162500000000062 233.69666712398254 Z', 'M 31.162500000000023 378.36479319962257 L 328.837499999999 316.10691740707705 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(71, 20, '2017-02-06 23:48:59', '25770.jpg', 'Now that the, uh, garbage ball is in space, Doctor, perhaps you can help me with my sexual inhibitions? ', 0, NULL, 'imagePost', 0, '32.84708818922036', '0.9604841222169157', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000005 204.08853212609222 31.162500000000083 284.06453192592323 Z', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.8375000000004 279.9169799906515 31.16249999999995 352.6487939022197 Z', 1, NULL, 0, 1, 1),
(72, 20, '2017-02-06 23:53:13', '29730.jpg', ' $9.95 a minute. Tell her she looks thin.', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 228.48484920504796 31.16250000000008 288.50123894672925 Z', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83749999999986 264.8791573473157 31.16250000000004 337.03337854368965 Z', 1, NULL, 0, 0, 1),
(73, 20, '2017-02-06 23:58:38', '32435.jpg', 'You don\'t frighten us, English pig-dogs! Go and boil your bottoms, sons of a silly person! I blow my nose at you, so-called Ah-thoor Keeng, you and all your silly English K-n-n-n-n-n-n-n-niggits! Camelot!', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83750000000043 277.6326136185906 31.162499999999984 318.1826861413825 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000005 160.01711767148655 31.16249999999997 214.53027065518975 Z', 1, NULL, 0, 1, 0),
(74, 20, '2017-02-07 00:02:50', '3923.jpg', 'You can crush me but you can\'t crush my spirit! Who are those horrible orange men? ', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000001 230.2479396774079 31.16250000000008 281.35316751007736 Z', 'M 31.16249999999999 388.2847161148445 L 328.8375000000002 340.64580223600467 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(75, 20, '2017-02-07 00:05:40', '10375.jpg', 'Why? Well, she turned me into a newt.', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999962 352.94131918538926 L 328.8375000000005 294.7592781610778 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999975 193.31827548452253 31.162500000000087 253.40738953305325 Z', 1, NULL, 0, 1, 1),
(76, 20, '2017-02-07 00:54:26', '21542.jpg', 'Hi, I\'m a naughty nurse, and I really need someone to talk to. $9.95 a minute.', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162500000000023 382.3148256514593 L 328.8375000000005 299.91106036314983 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000043 160.50177153993917 31.162499999999923 253.1022218204861 Z', 1, NULL, 0, 1, 1),
(77, 20, '2017-02-07 01:09:41', '32287.jpg', 'The nose? What do you mean? The nose? Well, I got better. …Are you suggesting that coconuts migrate?', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999888 366.5765872122526 L 328.8375000000001 372.67346210308807 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999998 188.0752292600563 31.16249999999998 218.08793320013086 Z', 1, NULL, 0, 1, 1),
(78, 20, '2017-02-07 01:20:08', '23095.jpg', 'You are the last hope of the universe. Then we\'ll go with that data file! When will that be? I can explain. It\'s very valuable.', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999962 353.41408273762937 L 328.83750000000003 389.9522028689967 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 235.75565958137582 31.162499999999966 211.14993848720192 Z', 1, NULL, 0, 1, 1),
(79, 20, '2017-02-07 01:27:18', '24184.jpg', 'Lorem Ipsum dolor sit amet bla bla bla', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 221.23436496230372 31.162500000000083 283.1442046391018 Z', 'M 31.162500000000023 379.1665605604531 L 328.8374999999997 357.7606858558625 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 1),
(80, 20, '2017-02-07 01:45:26', '4512.jpg', 'This is another description', 0, NULL, 'imagePost', 0, '10.137696384043238', '1.5707166393654068', '0', '0', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999866 424.07127339605563 L 328.83750000000003 373.3519321014282 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 321.6348514459318 85.0499999999996 L 328.8375 85.05000000000001 328.8375 481.95 31.162499999999994 481.95 31.16250000000006 229.49895958748908 Z', 1, NULL, 0, 1, 1),
(81, 1, '2017-02-07 17:53:29', '8204e4597d2384601653681859868073.jpg', 'Smokando no tchill 420 a programa-los ', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.0999999999996 254.76797204115874 30.89999999999988 459.78720905019986 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.09999999999997 169.73029704784128 30.89999999999999 246.9782266157069 Z', 1, NULL, 0, 1, 1),
(82, 29, '2017-02-09 18:05:32', 'default.jpg', '', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(83, 30, '2017-02-12 15:56:49', '423efb49c90b42e9029db7218a8c0fc1.jpg', '', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(84, 20, '2017-02-13 22:44:59', '729de3bc06da387fca2336edaced6288.jpg', 'Isto é o dvoluto', 0, NULL, 'imagePost', 0, '88.5621944376237', '1.2514880736677634', '0', '13680', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 236.23973285489515 194.7650130548307 318.1443659768729 375.2349869451692 20 375.2349869451697 Z', 'M 20 375.2349869451697 L 340 375.2349869451697 340.0000000000005 265.4607743942199 19.999999999999964 298.284251659496 Z', 1, NULL, 0, 1, 1),
(85, 20, '2017-02-13 22:54:57', 'cecedc5a2e790f8a9f786e107f7d66ae.jpg', '#$%&/()= еифхсйкдфх', 0, NULL, 'imagePost', 0, '96.47482039802162', '1.535721714390621', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 153.64585993809692 194.76501305483018 71.68852344953852 375.2349869451698 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 158.17376612867244 194.76501305483015 239.17001961509075 375.23498694516934 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(86, 20, '2017-02-13 23:02:35', '196ab754bae6b6cca15b3c7a71e1339c.jpg', 'avaliação teste a àgua é doce ou slagada. népia.', 0, NULL, 'imagePost', 0, '90.46691582735673', '1.6658043637994568', '0', '0', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 218.30973320028633 194.7650130548303 242.85823095423942 375.2349869451694 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 165.6579593741917 194.76501305483018 104.64253340824072 375.23498694516917 340 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(87, 20, '2017-02-15 00:18:32', '32896a3cf049931eb1e4a7a8d2b808ec.jpg', 'Fxyfjgkcgah', 0, NULL, 'imagePost', 0, '-91.79480238244946', '0.9073212532731793', '7.9879913330078125', '13512.574996948242', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162500000000083 287.11429860108757 L 328.8375000000013 470.55906992196225 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83749999999964 428.62382182430025 31.1625 150.07017848967 Z', 1, NULL, 0, 1, 1),
(88, 20, '2017-02-15 00:20:17', '4d8ad3de266975b3cfa77e15155cd173.jpg', '', 0, NULL, 'imagePost', 0, '-149.45188218937392', '0.717248380692812', '7.489990234375', '13512.574996948242', '20', '163.5', '240', '320', 'M 20 163.5 L 223.38693493747405 163.49999999999997 170.56183887884256 403.4999999999999 20 403.5 Z', 'M 20 403.5 L 340 403.5 340.00000000000045 218.25142724486327 20.000000000000032 234.5164258215967 Z', 1, NULL, 0, 1, 1),
(89, 20, '2017-02-15 03:38:28', '9feaaba4e29e5cacd68b82784c673534.jpg', 'Test desc', 0, NULL, 'imagePost', 0, '0.3284022296677449', '0.7749117834413928', '-90.87299346923828', '-80.43699645996094', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 328.8375 85.05000000000001 L 61.303479069859435 85.05000000000001 68.12048207832484 481.9500000000002 328.8375 481.95 Z', 'M 31.162499999999994 85.05000000000001 L 295.65230581893115 85.04999999999998 299.75120287555654 481.9499999999986 31.162499999999994 481.95 Z', 1, NULL, 0, 1, 1),
(90, 31, '2017-02-15 03:47:12', 'c28c6a8de6037554c2407b203b54cd4c.jpg', '', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(92, 31, '2017-02-15 08:26:52', '488df323f3a97238df3fb9868782111e.jpg', 'This is my first textbox whatever.. ', 0, NULL, 'imagePost', 0, '-50.85470757053872', '1.1360543400474126', '-89.375', '-8.990997314453125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.16250000000002 342.40011668969834 L 328.8374999999982 445.78014905834345 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 85.05000000000001 L 285.3713954878179 85.04999999999991 243.52389020251556 481.9500000000004 31.162499999999994 481.95 Z', 1, NULL, 0, 1, 1),
(93, 31, '2017-02-15 08:46:55', 'f57898dd60a23f5bd6d8ff0a4bdcde1f.jpg', '420 blaze it', 0, NULL, 'imagePost', 0, '-95.00193237025593', '1.0651231780383204', '-18.972000122070313', '113.4129638671875', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 246.69588320980787 85.04999999999974 254.28939401194017 481.9499999999991 31.162499999999994 481.95 Z', 'M 328.8375 85.05000000000001 L 147.02858090756732 85.05000000000014 114.48176864183088 481.9499999999999 328.8375 481.95 Z', 1, NULL, 0, 1, 1),
(94, 31, '2017-02-16 01:59:21', '6eff3d266be7afa17e47fdce8850d519.jpg', 'The rasta lighter', 0, NULL, 'imagePost', 0, '-94.25980668053865', '0.9801269833952916', '-1.4980010986328125', '268.78997802734375', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 286.16801103571197 85.2 266.40552257560546 482.8000000000007 30.899999999999977 482.8 Z', 'M 329.1 85.19999999999999 L 137.27861515369307 85.19999999999997 140.50553501613084 482.7999999999999 329.1 482.8 Z', 1, NULL, 0, 1, 1),
(95, 31, '2017-02-16 04:33:18', 'e46e39bbe1e071b50372e9844739f816.jpg', 'Never forget filters!', 0, NULL, 'imagePost', 0, '0', '1', '-86.87899780273438', '1088.5370178222656', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 200.33863682983545 85.19999999999997 241.03983960154105 482.8000000000001 30.899999999999977 482.8 Z', 'M 329.1 85.19999999999999 L 83.97185799421104 85.20000000000002 85.26765660719416 482.7999999999995 329.1 482.8 Z', 1, NULL, 0, 1, 1),
(96, 31, '2017-02-16 07:26:20', 'd55fe9d6ff74825a8705940327134c38.jpg', 'Testetsstssts', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 227.11121137012435 85.19999999999997 241.11700675026918 482.80000000000024 30.899999999999977 482.8 Z', 'M 329.1 85.19999999999999 L 116.61844671222137 85.2 148.37306516192248 482.7999999999999 329.1 482.8 Z', 1, NULL, 0, 1, 1),
(97, 31, '2017-02-16 07:26:20', 'd55fe9d6ff74825a8705940327134c38.jpg', 'Testetsstssts', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 227.11121137012435 85.19999999999997 241.11700675026918 482.80000000000024 30.899999999999977 482.8 Z', 'M 329.1 85.19999999999999 L 116.61844671222137 85.2 148.37306516192248 482.7999999999999 329.1 482.8 Z', 1, NULL, 0, 1, 1),
(98, 31, '2017-02-16 07:28:33', 'aa2a59e6750517bffe4b62bd93683a01.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(99, 31, '2017-02-16 07:28:33', 'aa2a59e6750517bffe4b62bd93683a01.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(100, 31, '2017-02-16 07:28:34', 'eb4c81c42b10bc53a6d64d14375678e2.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(101, 31, '2017-02-16 07:28:34', 'eb4c81c42b10bc53a6d64d14375678e2.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(102, 31, '2017-02-16 07:28:34', 'eb4c81c42b10bc53a6d64d14375678e2.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(103, 31, '2017-02-16 07:28:34', 'eb4c81c42b10bc53a6d64d14375678e2.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(104, 31, '2017-02-16 07:28:34', 'eb4c81c42b10bc53a6d64d14375678e2.jpg', '', 0, NULL, 'imagePost', 0, '132.74180775082618', '0.6527866610508538', '-21.970016479492188', '-149.38299560546875', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 141.7553740005455 85.20000000000003 329.1000000000004 342.4708645980948 329.1 482.8 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.1 482.8 135.09769230525058 482.79999999999956 30.899999999999935 331.91246703595385 Z', 1, NULL, 0, 1, 1),
(105, 31, '2017-02-16 07:29:17', '62184516779f4f618b186fe36e4bd003.jpg', 'Response = \n', 0, NULL, 'imagePost', 0, '22.280312641751493', '1.1287978578221274', '0', '0', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.900000000000034 443.5612315156332 L 329.1000000000011 329.8894758605967 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.10000000000036 122.03863288804605 30.899999999999935 226.45064647976622 Z', 1, NULL, 0, 1, 1),
(106, 31, '2017-02-16 07:29:17', '62184516779f4f618b186fe36e4bd003.jpg', 'Response = \n', 0, NULL, 'imagePost', 0, '22.280312641751493', '1.1287978578221274', '0', '0', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.900000000000034 443.5612315156332 L 329.1000000000011 329.8894758605967 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.10000000000036 122.03863288804605 30.899999999999935 226.45064647976622 Z', 1, NULL, 0, 1, 1),
(107, 31, '2017-02-16 07:29:17', '62184516779f4f618b186fe36e4bd003.jpg', 'Response = \n', 0, NULL, 'imagePost', 0, '22.280312641751493', '1.1287978578221274', '0', '0', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.900000000000034 443.5612315156332 L 329.1000000000011 329.8894758605967 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.10000000000036 122.03863288804605 30.899999999999935 226.45064647976622 Z', 1, NULL, 0, 1, 1),
(108, 20, '2017-02-17 15:18:30', '1cfa91bec312cae2ad501e2ea701f498.jpg', 'Hghjbb', 0, NULL, 'imagePost', 0, '-109.11797988933665', '1.1313979186073093', '0', '0', '20', '195', '180', '320', 'M 20 195 L 278.7495632805188 194.99999999999977 326.88405608018803 374.9999999999991 20 375 Z', 'M 340 195 L 165.3050024572913 194.99999999999983 51.63532854029868 374.99999999999994 340 375 Z', 1, NULL, 0, 1, 1),
(109, 20, '2017-02-17 15:18:30', '1cfa91bec312cae2ad501e2ea701f498.jpg', 'Hghjbb', 0, NULL, 'imagePost', 0, '-109.11797988933665', '1.1313979186073093', '0', '0', '20', '195', '180', '320', 'M 20 195 L 278.7495632805188 194.99999999999977 326.88405608018803 374.9999999999991 20 375 Z', 'M 340 195 L 165.3050024572913 194.99999999999983 51.63532854029868 374.99999999999994 340 375 Z', 1, NULL, 0, 1, 1),
(110, 20, '2017-02-17 15:18:30', '1cfa91bec312cae2ad501e2ea701f498.jpg', 'Hghjbb', 0, NULL, 'imagePost', 0, '-109.11797988933665', '1.1313979186073093', '0', '0', '20', '195', '180', '320', 'M 20 195 L 278.7495632805188 194.99999999999977 326.88405608018803 374.9999999999991 20 375 Z', 'M 340 195 L 165.3050024572913 194.99999999999983 51.63532854029868 374.99999999999994 340 375 Z', 1, NULL, 0, 1, 1),
(111, 20, '2017-02-17 15:18:30', '1cfa91bec312cae2ad501e2ea701f498.jpg', 'Hghjbb', 0, NULL, 'imagePost', 0, '-109.11797988933665', '1.1313979186073093', '0', '0', '20', '195', '180', '320', 'M 20 195 L 278.7495632805188 194.99999999999977 326.88405608018803 374.9999999999991 20 375 Z', 'M 340 195 L 165.3050024572913 194.99999999999983 51.63532854029868 374.99999999999994 340 375 Z', 1, NULL, 0, 1, 1),
(112, 20, '2017-02-17 16:32:55', '958739f83e86910323319c1f47a2b956.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(113, 20, '2017-02-17 16:32:55', '958739f83e86910323319c1f47a2b956.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(114, 20, '2017-02-17 16:32:55', '958739f83e86910323319c1f47a2b956.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(115, 20, '2017-02-17 16:32:55', '958739f83e86910323319c1f47a2b956.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(116, 20, '2017-02-17 16:32:56', '059b9f2b36f9244377ea9e8463534322.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(117, 20, '2017-02-17 16:32:55', '958739f83e86910323319c1f47a2b956.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(118, 20, '2017-02-17 16:32:56', '059b9f2b36f9244377ea9e8463534322.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(119, 20, '2017-02-17 16:32:57', 'c9725258c945b0f2daf1e16d6f15b651.jpg', 'Jfkgngkg', 0, NULL, 'imagePost', 0, '-89.05959898036423', '1.5890469498146533', '-50.829010009765625', '-28.97698974609375', '20', '207', '180', '320', 'M 20 207 L 193.60489984390858 206.99999999999977 284.85205790184045 387.0000000000013 20 387 Z', 'M 340 207 L 191.56989848143246 206.99999999999977 33.693415030543726 387.0000000000003 340 387 Z', 1, NULL, 0, 1, 1),
(120, 20, '2017-02-17 16:38:44', 'c67c7d7f20645bb23d658834b014e664.jpg', 'Ycufugu', 0, NULL, 'imagePost', 0, '-96.65641005320083', '0.6839746506901113', '0', '0', '20', '195', '180', '320', 'M 20 195 L 268.3654517267528 194.99999999999983 244.16020685397356 374.99999999999966 20 375 Z', 'M 340 195 L 100.51334368566393 195.00000000000017 100.40932448435747 375.0000000000001 340 375 Z', 1, NULL, 0, 1, 1),
(121, 20, '2017-02-17 16:39:10', '25599a2602a424f2dccca657ffbfb28b.jpg', 'Response = \nRighj', 0, NULL, 'imagePost', 0, '-97.36054028662227', '0.9470178800209804', '0', '0', '20', '195', '180', '320', 'M 20 195 L 256.59090626132075 194.9999999999999 249.21510967864438 375.00000000000034 20 375 Z', 'M 340 195 L 84.60896458444024 194.99999999999991 110.5780299455099 375.00000000000034 340 375 Z', 1, NULL, 0, 1, 1),
(122, 32, '2017-02-17 16:42:36', '895d7fe4cc3cbd534b49c3cb0638fe1e.jpg', '', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(123, 32, '2017-02-17 16:50:34', '0a6d58148d9888efde9377fe50bcb2d3.jpg', 'Tedting agaib ', 0, NULL, 'imagePost', 0, '-90.04006571530329', '1.0354286669758068', '-86.09001159667969', '1.032989501953125', '20', '195', '180', '320', 'M 20 195 L 286.6635971255008 194.99999999999983 339.99999999999983 306.0121572198586 340 375 20 375 Z', 'M 20 195 L 340 195 340.00000000000057 281.8249047585102 58.78517114343473 374.99999999999994 20 375 Z', 1, NULL, 0, 1, 1),
(124, 32, '2017-02-17 17:03:07', '93cf0552ba57a7d1a0aaee73338e0cf5.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '195', '180', '320', 'M 20 195 L 261.1800714271874 195.00000000000034 207.36614496686033 374.9999999999999 20 375 Z', 'M 340 195 L 114.89810746996419 194.99999999999994 143.73483251500215 375.00000000000017 340 375 Z', 1, NULL, 0, 0, 0),
(125, 32, '2017-02-17 17:03:48', 'f4eecd0c8222a60997ec4ea66fb28734.jpg', 'Response = \n', 0, NULL, 'imagePost', 0, '0', '1', '0', '0', '20', '195', '180', '320', 'M 20 195 L 233.97121205067225 195.00000000000028 202.2499558257759 374.99999999999983 20 375 Z', 'M 340 195 L 102.48545549182536 195.0000000000002 121.8312690582838 375 340 375 Z', 1, NULL, 0, 0, 0),
(126, 32, '2017-02-17 17:40:38', 'f8d49cf5b868fa341881146e75286d8c.jpg', '', 0, NULL, 'imagePost', 0, '-8.748206392895668', '0.9853814299343625', '29.858001708984375', '-7.98602294921875', '20', '195', '180', '320', 'M 20 195 L 265.4532588462864 195.00000000000034 283.0940823653907 374.99999999999926 20 375 Z', 'M 340 195 L 106.03867680589022 194.9999999999999 122.64888784537064 374.9999999999999 340 375 Z', 1, NULL, 0, 0, 0),
(127, 32, '2017-02-17 17:45:50', 'c8cd7331a622f19239d1de0eaa077203.jpg', '', 0, NULL, 'imagePost', 0, '-82.48095498802434', '0.942266170640939', '-107.47200012207031', '-85.9320068359375', '20', '195', '180', '320', 'M 125.25412265039198 195 L 340 195 340 375 20 375 19.99999999999997 249.77116756072093 Z', 'M 20 195 L 340 195 340 375 138.13775968416573 375.00000000000006 19.99999999999996 305.46475365216395 Z', 1, NULL, 0, 0, 0),
(128, 32, '2017-02-17 18:01:21', 'ad85f46fa028c1034f9400497daf43b0.jpg', 'Seta no olho', 0, NULL, 'imagePost', 0, '-87.88448749311146', '0.8398904145925221', '13.1820068359375', '-80.93598937988281', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 184.1257036176381 194.7650130548302 199.6279904683101 375.23498694516934 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 182.4553052692686 194.7650130548302 160.29467569119353 375.23498694516974 340 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(129, 32, '2017-02-17 22:25:09', '01ee69a12ce2ab98b31b216652b57cbc.jpg', 'Omg what i use my socisl network for xDDD', 0, NULL, 'imagePost', 0, '-70.23102942112973', '0.7039511712114888', '-48.621002197265625', '45.17401123046875', '20', '194.7650130548303', '180.46997389033942', '320', 'M 340 194.7650130548303 L 173.93788145800497 194.7650130548302 165.55955228933814 375.23498694516957 340 375.2349869451697 Z', 'M 20 194.7650130548303 L 199.91555439108677 194.7650130548301 184.3110509298784 375.23498694516917 20 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(130, 32, '2017-02-17 22:26:48', '0620a2d63778fdd6b816065c2b1fb997.jpg', 'Response = \n', 0, NULL, 'imagePost', 0, '71.52006033871476', '0.4739369285611179', '14.095001220703125', '148.59500122070313', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 375.2349869451697 L 340 375.2349869451697 340.00000000000114 224.48457072531525 19.99999999999999 232.45029633565127 Z', 'M 19.999999999999957 325.6332264005521 L 340.0000000000006 333.2979630466049 340 194.7650130548303 20 194.7650130548303 Z', 1, NULL, 0, 1, 0),
(131, 32, '2017-02-17 22:28:43', 'fe328686b637334e70f43f3be2b1bace.jpg', 'Response = \n', 0, NULL, 'imagePost', 0, '75.50813523851093', '0.6710528171244379', '88.08100891113281', '196.84600830078125', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 339.5446034505693 194.76501305483464 243.80182666804453 375.2349869451694 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 104.76643971636581 194.76501305483023 35.72320945017713 375.23498694516974 340 375.2349869451697 Z', 1, NULL, 0, 1, 0),
(132, 1, '2017-02-18 00:04:46', 'be91a99940bea1d7bff4db6aea86acc5.jpg', '', 0, NULL, 'imagePost', 0, '77.8172180094225', '1.189802052823905', '-69.49899291992188', '-144.38699340820313', '20', '194.7650130548303', '180.46997389033942', '320', 'M 20 194.7650130548303 L 255.11359410301841 194.76501305483026 199.57650803629045 375.2349869451692 20 375.2349869451697 Z', 'M 340 194.7650130548303 L 157.8406380471084 194.76501305483015 135.55402576834229 375.23498694516957 340 375.2349869451697 Z', 1, NULL, 0, 0, 1),
(134, 32, '2017-02-20 00:14:42', 'ac84b4c31c9ff6af7691df7c3aa5689a.jpg', '', 0, NULL, 'imagePost', 0, '-104.97473363543247', '0.33046439395822536', '127.32301330566406', '62.4509887695312500', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 304.5383746997858 85.19999999999959 226.41770550815696 482.79999999999995 30.899999999999977 482.8 Z', 'M 30.899999999999977 85.19999999999999 L 214.52476267179455 85.19999999999996 165.69720173880143 482.79999999999944 30.899999999999977 482.8 Z', 1, NULL, 0, 0, 0),
(135, 32, '2017-02-20 00:16:36', 'a25fa125d9dd66eac109a4edebb37fd2.jpg', '', 0, NULL, 'imagePost', 0, '38.79111644434761', '0.7748944669565196', '63.91099548339844', '-4.49597167968753560', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 85.19999999999999 L 329.1 85.19999999999999 329.09999999999917 221.7082726161247 30.899999999999853 383.7108239395421 Z', 'M 248.41685197609155 85.2 L 329.1 85.19999999999999 329.1 482.8 30.899999999999977 482.8 30.89999999999999 234.9197747564337 Z', 1, NULL, 0, 0, 0),
(136, 32, '2017-02-20 00:20:42', '93a6e181f3c44e40ec5b483ad27697de.jpg', '', 0, NULL, 'imagePost', 0, '-23.760881990657367', '0.5076975774085711', '99.86199951171875', '79.937988281253500', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 482.8 L 329.1 482.8 329.10000000000025 200.42268903901896 30.89999999999994 162.44708083535582 Z', 'M 30.899999999999995 394.33470718877663 L 329.1000000000011 329.41940223420664 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 1, NULL, 0, 1, 0),
(137, 32, '2017-02-20 00:44:42', 'd335a84b498ffcda9e13a7af295270f3.jpg', '', 0, NULL, 'imagePost', 0, '-54.15173776892897', '0.6935767366677533', '142.80197143554688', '14.988037109375355', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 329.1 85.19999999999999 L 74.76619791155396 85.2 54.38859716639579 482.79999999999995 329.1 482.8 Z', 'M 329.1 85.19999999999999 L 217.96196258513848 85.19999999999997 132.96329193342805 482.7999999999995 329.1 482.8 Z', 1, NULL, 0, 0, 0),
(138, 32, '2017-02-20 00:52:22', 'a80e86e8a14a28f91ca8146bbd0a9bc9.jpg', '', 0, NULL, 'imagePost', 0, '-108.4527156960479', '0.26939961305291416', '130.8179931640625', '129.89698791503906176', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 482.8 L 329.1 482.8 329.10000000000053 183.85721743485934 30.9 138.59173876242744 Z', 'M 30.89999999999992 323.40473388647035 L 329.10000000000036 344.109407195565 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 1, NULL, 0, 0, 0),
(139, 32, '2017-02-20 02:36:14', '40d882d4275459996631d684d4a3a02d.jpg', '', 0, NULL, 'imagePost', 0, '-20.670154816437503', '0.5433309769277015', '166.54600524902344', '143.22199249267578176', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 482.8 L 329.1 482.8 329.1000000000005 192.47366072739936 30.899999999999938 161.1350558546466 Z', 'M 30.900000000000063 371.6979148557334 L 329.1000000000005 325.7595024004731 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 1, NULL, 0, 1, 0),
(140, 32, '2017-02-20 02:38:36', '2b1abb4a2f748fd96d622cce1dc7ab86.jpg', '', 0, NULL, 'imagePost', 0, '-37.02051973934499', '0.13799716481449684', '137.70703125', '197.34597778320312352', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.899999999999977 482.8 L 329.1 482.8 329.0999999999996 156.91304231795817 30.89999999999993 228.3132477558677 Z', 'M 30.90000000000007 352.0947177413356 L 329.10000000000116 330.32250836784624 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 1, NULL, 0, 0, 0),
(141, 32, '2017-02-20 02:57:41', '52955346d81339b882fb73ee8845472a.jpg', '', 0, NULL, 'imagePost', 0, '-2.547230697375653', '0.2853433792506801', '147.7949981689453', '79.93698120117188', '30.899999999999977', '85.19999999999999', '397.6', '298.20000000000005', 'M 30.89999999999998 343.57035254116835 L 329.1000000000005 320.7556534693344 329.1 85.19999999999999 30.899999999999977 85.19999999999999 Z', 'M 30.899999999999977 482.8 L 329.1 482.8 329.0999999999997 262.69212758555324 30.89999999999999 245.78696733781345 Z', 1, NULL, 0, 0, 0),
(142, 32, '2017-02-20 21:05:50', 'edf05d67729e209d563c3a5f5bc9e8c2.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '0', '567', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999998 187.2841335081888 31.162499999999977 218.32945758824096 Z', 'M 31.16250000000003 330.4558549758525 L 328.8375000000002 340.7576047374333 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(143, 32, '2017-02-20 23:11:52', 'f6241825ea606444337cfd36c974f202.jpg', 'Samson paper', 0, NULL, 'imagePost', 0, '23.372527673033574', '0.38897119215468823', '115.8389892578125', '461.5769805908203', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 238.92136970287447 31.162500000000062 240.1782821256884 Z', 'M 31.162500000000016 342.71301269531244 L 328.8375000000002 342.7130126953106 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 0),
(144, 32, '2017-02-20 23:28:58', '13675c937e1ce97a9085a4a221f970fd.jpg', '', 0, NULL, 'imagePost', 0, '-82.64554360501006', '0.2790793808249121', '160.27699279785156', '437.6009979248047', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000026 269.4898254939954 31.16249999999997 157.62691985298918 Z', 'M 31.162500000000012 344.31664470282317 L 328.8375 326.79570308418306 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 0),
(145, 32, '2017-02-20 23:33:19', 'afd70d1ca74cfe56fcec0d780e794e61.jpg', '', 0, NULL, 'imagePost', 0, '-102.37265194738848', '0.22384257054116627', '139.8050079345703', '689.9039916992188', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999888 370.5592248157523 L 328.83750000000015 348.9607056059431 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000002 268.959691618004 31.162499999999977 225.65200477540145 Z', 1, NULL, 0, 0, 0),
(146, 32, '2017-02-20 23:36:14', '9f0a149bb35d8854d4e1206b81371e11.jpg', '', 0, NULL, 'imagePost', 0, '0.7134762358904254', '0.537224235175072', '94.01101684570313', '561.0050659179688', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 328.8375 85.05000000000001 L 142.34788713648152 85.05000000000013 159.4766877928032 481.94999999999925 328.8375 481.95 Z', 'M 31.162499999999994 85.05000000000001 L 227.20711219247852 85.05000000000011 203.89983237526124 481.9500000000004 31.162499999999994 481.95 Z', 1, NULL, 0, 0, 0),
(147, 32, '2017-02-20 23:38:38', 'c5b178031734207a6e9978ec8007680a.jpg', '', 0, NULL, 'imagePost', 0, '-19.196149444854427', '0.23518191574195535', '115.33998107910156', '-213.83301544189453', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 236.36960051664107 31.162499999999977 226.58962190236753 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 232.17471319438926 31.162499999999923 244.55370573218832 Z', 1, NULL, 0, 0, 0),
(148, 32, '2017-02-20 23:45:32', 'e9c122add7a5bd424a369a219c5c98af.jpg', '', 0, NULL, 'imagePost', 0, '-3.6197274418889265', '0.20329499823019445', '122.8289794921875', '677.056162516276', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 228.65908171847292 31.162500000000044 189.61274971320012 Z', 'M 31.16249999999995 302.64952902802617 L 328.837499999999 322.3227200269504 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 0),
(149, 32, '2017-02-20 23:47:49', 'e06a828b77ee5c2069fe6d15edc0605a.jpg', '', 0, NULL, 'imagePost', 0, '-2.3824662303447894', '0.46703335019260384', '17.475997924804688', '656.3988058907645', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 248.21672695194425 31.162500000000062 240.2146043378256 Z', 'M 31.162499999999977 314.16161325452106 L 328.837499999999 313.3107907510869 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 0),
(150, 32, '2017-02-20 23:50:01', 'dbf197c4ed29d6349d7f15142e064b07.jpg', '', 0, NULL, 'imagePost', 0, '-1.2359935515772804', '0.2992860931425081', '-68.90400695800781', '727.3815569196429', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 230.86404370177536 85.05000000000011 219.37308569869555 481.9499999999998 31.162499999999994 481.95 Z', 'M 328.8375 85.05000000000001 L 144.25002290315146 85.05000000000013 163.33608526444635 481.9500000000001 328.8375 481.95 Z', 1, NULL, 0, 0, 0),
(151, 32, '2017-02-20 23:56:31', '0ca63c7ccaf3d789b8ceb186ba22cbd2.jpg', '', 0, NULL, 'imagePost', 0, '1.5843024265188888', '0.4730961181574601', '4.4929962158203125', '876.1366248497596', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 238.37405350285755 31.162499999999977 222.83888443767654 Z', 'M 31.16249999999998 323.08579059262024 L 328.83750000000003 328.23661915792303 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 1, 0),
(152, 32, '2017-02-21 00:12:30', '0e5477f761c3e813185179d46123aa94.jpg', 'Another test', 0, NULL, 'imagePost', 0, '90.6247480817874', '0.27027812130901585', '132.31600952148438', '929.1720111553485', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000043 204.07655068727567 31.16249999999998 226.61455015952595 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000004 278.6504285154977 31.162499999999973 271.66073358616245 Z', 1, NULL, 0, 0, 0),
(153, 32, '2017-02-21 00:14:20', 'fcb4d8c7b0464ba489d89b114e572ad0.jpg', '', 0, NULL, 'imagePost', 0, '-89.2646462309483', '0.28938525192576275', '26.464004516601563', '1003.2805690058956', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000043 205.73319077456446 31.162499999999977 225.5902254469039 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000002 266.4183459190586 31.16250000000008 278.5227188699144 Z', 1, NULL, 0, 0, 0),
(154, 32, '2017-02-21 00:19:31', 'dc2bac3679b986624de34c83db1b0a9d.jpg', '', 0, NULL, 'imagePost', 0, '-5.21904602616371', '0.4235006982051683', '-34.82099914550781', '1059.0407087218086', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999977 323.2716224486758 L 328.837499999999 324.6114477010661 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 247.8134135442255 31.162500000000087 253.68923402167664 Z', 1, NULL, 0, 0, 0),
(155, 32, '2017-02-21 00:20:37', 'a011087affc643cf189217cab0108dcb.jpg', '', 0, NULL, 'imagePost', 0, '2.2485233921890995', '0.33164831252732424', '-120.33200073242188', '1134.3315026625148', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 328.8375 85.05000000000001 L 131.48274370048205 85.04999999999991 144.92953537242283 481.9500000000002 328.8375 481.95 Z', 'M 31.162499999999994 85.05000000000001 L 225.81691545612227 85.05000000000013 201.28605390667184 481.95000000000044 31.162499999999994 481.95 Z', 1, NULL, 0, 0, 0),
(156, 32, '2017-02-21 00:21:25', '42bdb92c351398fac06ab990c4a7a22f.jpg', '', 0, NULL, 'imagePost', 0, '64.94488935973038', '0.8734390260231195', '-23.466995239257813', '1281.6791600641216', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162500000000012 342.3103209091407 L 328.8374999999999 330.2059219882798 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000015 265.3160924756056 31.162499999999977 266.6774394624394 Z', 1, NULL, 0, 0, 0),
(157, 32, '2017-02-21 00:23:35', '5daa455859d3992a69f9644a74b35d99.jpg', '', 0, NULL, 'imagePost', 0, '-55.20948733419925', '0.9867277151800308', '0', '1576.3207547169811', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000015 173.1678493450874 31.162500000000062 231.14499208429737 Z', 'M 31.162499999999984 314.4517093401263 L 328.837499999999 324.29465727104383 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(158, 32, '2017-02-21 00:24:17', 'bb09ca1361f3becd8e0724ba67a99164.jpg', '', 0, NULL, 'imagePost', 0, '47.22211437852934', '0.6395856663827197', '-15.47900390625', '1793.8779682663253', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 234.4965977596665 31.162499999999927 246.94331831621693 Z', 'M 31.16250000000004 335.25197549047624 L 328.8375000000002 344.76225386383385 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(159, 32, '2017-02-21 00:25:45', 'f5b53fd333c505d9bd4bee23d4f387fb.jpg', '', 0, NULL, 'imagePost', 0, '89.15978028148106', '2.00077084380199', '-166.76801300048828', '2197.9902257379495', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.8375 335.4157668478546 31.162499999999973 276.65841333278024 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 240.27670454951794 31.162499999999977 223.97354343300344 Z', 1, NULL, 0, 0, 0),
(160, 32, '2017-02-21 01:19:29', '72e6faf8ab14e89cecfc5a7e496ae7c1.jpg', '', 0, NULL, 'imagePost', 0, '25.499794581659785', '0.23898663631766615', '-57.41900634765625', '2488.474236254422', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 224.55407222199793 31.162499999999977 221.9022428535399 Z', 'M 31.162499999999973 322.38325876122667 L 328.83749999999895 311.7609163364204 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(161, 32, '2017-02-21 01:22:08', 'a59746ca9e9cd47166e017f9ed976961.jpg', 'Does it pass the joint test?', 0, NULL, 'imagePost', 0, '-6.816686163623558', '0.9209979140940423', '-126.82500076293945', '2573.9265323854843', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 328.8375 85.05000000000001 L 133.1309169500213 85.0499999999999 73.13092064931918 481.9500000000001 328.8375 481.95 Z', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.8375 481.95 181.2720177173713 481.94999999999925 31.162500000000065 139.63130234232744 Z', 1, NULL, 0, 1, 0),
(164, 32, '2017-02-21 01:37:58', '11e0065605ca5cf895708e8c012b7250.jpg', '', 0, NULL, 'imagePost', 0, '-153.56269359940882', '0.33351804379665945', '-3.9949951171875', '2833.0050048828125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162500000000037 330.0853643824497 L 328.83749999999895 319.3676084760381 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000004 277.838840890619 31.16249999999997 270.2703234990372 Z', 1, NULL, 0, 0, 0),
(165, 32, '2017-02-21 01:41:24', 'e3f0d80415a53763e821e0a5688f4697.jpg', '', 0, NULL, 'imagePost', 0, '-148.0239918427884', '0.35200037820502905', '0', '2843.4960021972656', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.16250000000003 332.16995550179473 L 328.837499999999 321.7108970712259 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000043 279.61968084232245 31.162499999999973 276.4073272760667 Z', 1, NULL, 0, 0, 0),
(166, 32, '2017-02-21 01:44:54', '51713db30c15e85bac08be614c3c3572.jpg', '', 0, NULL, 'imagePost', 0, '-149.0705334989359', '0.36269230183433593', '-3.4949951171875', '2845.9939880371094', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000004 281.9692569462511 31.162499999999923 253.18902674980222 Z', 'M 31.16249999999995 310.42466677723183 L 328.837499999999 322.2480656370503 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(167, 32, '2017-02-21 01:48:28', '719d2e50284aa7f0bf8775a59d850d70.jpg', '', 0, NULL, 'imagePost', 0, '-135.30933354976844', '0.3655602903839241', '-2.49700927734375', '2847.4929809570313', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000043 281.5364880190051 31.162499999999923 252.83240101941453 Z', 'M 31.16249999999995 312.31159427350275 L 328.83749999999907 324.3683026716508 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(168, 32, '2017-02-21 01:53:37', '96945e0898dbd41ddc6f4dc53bae7071.jpg', '', 0, NULL, 'imagePost', 0, '34.546281696053825', '0.3401470564525323', '109.84698486328125', '2873.9719848632813', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 236.58992405514644 31.162500000000062 233.42749201461314 Z', 'M 31.16249999999995 305.55456102725134 L 328.83750000000043 286.12866907651477 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(169, 32, '2017-02-21 01:55:40', 'eebf2e45012dfdeff567e9c35b676eed.jpg', '', 0, NULL, 'imagePost', 0, '177.16734361690828', '0.2602360004475646', '70.9019775390625', '111.41299438476563', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 242.04100693301518 31.162499999999977 274.1934033493843 Z', 'M 31.162500000000037 329.0357173472808 L 328.837499999999 315.99115034488716 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(170, 32, '2017-02-21 02:00:42', 'd9fe773a4c2f38a6f06b4016218a9245.jpg', '', 0, NULL, 'imagePost', 0, '-12.515291400295496', '0.32634818034348656', '80.38798522949219', '3222.9210205078125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.16249999999997 359.3683134579772 L 328.8374999999999 335.86511556710263 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 234.4911612605629 31.162500000000094 262.9430585457876 Z', 1, NULL, 0, 0, 0),
(171, 32, '2017-02-21 02:05:11', '68a24cdb36b36ec25eab84365ee14398.jpg', '', 0, NULL, 'imagePost', 0, '12.90485254521559', '0.4322465765887919', '87.87800598144531', '2421.383026123047', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.83750000000043 289.66931038077865 31.162500000000087 278.91472266239634 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 224.52592884612582 31.16249999999997 211.48139999837707 Z', 1, NULL, 0, 0, 0),
(172, 32, '2017-02-21 02:09:22', '8e3db026346a1abd691c66927fe98b68.jpg', '', 0, NULL, 'imagePost', 0, '-158.9710677368834', '0.34027251445705065', '-2.49700927734375', '2546.0079956054688', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000004 281.4273289899172 31.16250000000009 263.1252948512587 Z', 'M 31.16249999999998 317.2852130542074 L 328.837499999999 320.0130783645166 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(173, 32, '2017-02-21 02:23:32', '018be0f26efc6a79aab0b19d0d44ed84.jpg', '', 0, NULL, 'imagePost', 0, '-149.6345568633658', '0.33087969901514225', '65.90899658203125', '2697.3890075683594', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 246.97071164036421 31.16249999999997 210.02415841463366 Z', 'M 31.16250000000002 341.8338244264873 L 328.8375 330.2916794198091 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(174, 32, '2017-02-21 02:24:38', 'e4f68cf4b65e51121490aa403707f9ed.jpg', '', 0, NULL, 'imagePost', 0, '155.00411806313127', '0.45679180394414914', '110.84599304199219', '2427.1009979248047', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000002 268.2979779192245 31.16250000000006 240.91424428936082 Z', 'M 31.16249999999998 324.93233124006565 L 328.8375 335.33810626895837 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(175, 32, '2017-02-21 02:27:29', '4b29f607b73b4a2a2b324dcef4976753.jpg', '', 0, NULL, 'imagePost', 0, '11.091562495492099', '0.4360022420154177', '92.37199401855469', '2882.3919982910156', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 227.96737201297077 31.162500000000062 235.52460004095875 Z', 'M 31.16249999999995 313.30538136358575 L 328.8375000000005 292.6708722438589 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(176, 32, '2017-02-21 02:29:33', '046c5466f0dc6640b19f0bbcbf2d0683.jpg', '', 0, NULL, 'imagePost', 0, '58.90208477606984', '0.40536603715100955', '93.87001037597656', '2601.0379943847656', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 238.03045921204074 31.162499999999923 245.66780852944916 Z', 'M 31.16249999999998 315.46290803727715 L 328.8375000000005 299.3040506014639 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(177, 32, '2017-02-21 02:30:46', '52a201ef9d1c83236b3d9a0df96cb7fc.jpg', '', 0, NULL, 'imagePost', 0, '-13.62917435081863', '1.0092098941618983', '-54.42400360107422', '2798.884002685547', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.16249999999996 291.6195595869055 L 328.8374999999999 332.1946589397522 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000026 276.7119282653415 31.16250000000006 234.0421896391817 Z', 1, NULL, 0, 0, 0),
(178, 32, '2017-02-21 02:32:33', 'b674b1f33a2c51c1fb345712a7eb6c23.jpg', '', 0, NULL, 'imagePost', 0, '-133.88665199390493', '0.3657916550650453', '-1.9969940185546875', '2656.4959716796875', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 256.7122629839288 31.16250000000009 255.3843793742382 Z', 'M 31.16249999999995 313.72746016014986 L 328.837499999999 302.2713414322727 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(179, 32, '2017-02-21 03:27:56', '1d64642ee6492f70694fcdf9b6fbdff9.jpg', '', 0, NULL, 'imagePost', 0, '-91.526812835268', '0.5855964294373444', '37.447998046875', '3400.3569946289063', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000004 196.017587461595 31.162500000000097 263.79069671842564 Z', 'M 31.162500000000033 330.7033041906385 L 328.8375000000005 293.63700353940317 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(180, 32, '2017-02-21 03:30:56', '9a89e8cdb7024653a46e658939062ce5.jpg', '', 0, NULL, 'imagePost', 0, '-48.783967945236554', '0.5127622103220628', '3.9949951171875', '3606.114990234375', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 222.5928855788566 31.162500000000094 256.8752766035769 Z', 'M 31.16249999999995 302.197431709895 L 328.8375000000005 289.86028218119077 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(181, 33, '2017-02-21 03:35:31', 'f927c1860cfacdae3c2cd5f8246ac5a4.jpg', '', 0, NULL, 'imagePost', 0, '0', '1.1854855445575602', '0', '-510', '44.1', '160.99', '397', '705', 'M 44.1 160.9 L 749.8 160.9 749.8 558 398.4 558 44.1 160.9 Z', 'M 44.1 160.9 L 749.8 160.9 749.8 160.9 396.5 558 44.1 558 Z', 1, NULL, 1, 1, 1),
(191, 33, '2017-02-21 03:55:46', '216df682b2e5bb16f66fd802baa5cbeb.jpg', '', 0, NULL, 'imagePost', 0, '1.5327229987690316', '0.9551976423604972', '-41.94200134277344', '1105.4850158691406', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 260.5207989415474 31.162499999999977 268.2341910213065 Z', 'M 31.162499999999948 308.1811070363106 L 328.8375000000005 293.62896203978744 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(192, 33, '2017-02-21 03:57:35', '055ab708f4a92188a491a6af650ba422.jpg', '', 0, NULL, 'imagePost', 0, '98.13232349383145', '0.9744667245012848', '110.84600830078125', '1265.3989868164063', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 226.95951189036364 31.162500000000065 233.78830449553635 Z', 'M 31.162499999999945 309.8535248244073 L 328.8375000000005 297.40444575788376 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(193, 33, '2017-02-21 04:00:05', '98fd56494d0b8ac2000a7d84473e815d.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '-57.91999816894531', '1469.875', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162500000000033 329.47243454986415 L 328.83750000000015 348.53146506323657 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000002 266.81457083136866 31.162500000000087 256.4324948660234 Z', 1, NULL, 0, 0, 0),
(194, 33, '2017-02-21 04:01:05', 'e547dc38508914716e08c19181ce6150.jpg', '', 0, NULL, 'imagePost', 0, '91.22807999538134', '1.0291109463455304', '149.2919921875', '2550.240997314453', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999986 257.0212075597747 31.162499999999977 270.36455177278395 Z', 'M 31.162500000000016 345.6289190862539 L 328.837499999999 309.59059197727686 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(195, 33, '2017-02-21 04:01:56', '6f5b491b8ffd25c7c79eedc8214bc80b.jpg', '', 0, NULL, 'imagePost', 0, '133.01803026819857', '2.3223929091407958', '-107.67499542236328', '3006.1849670410156', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 242.9180926571915 31.162499999999977 224.07744259049863 Z', 'M 31.162499999999945 302.18915440590945 L 328.8375 327.30444142043245 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(196, 33, '2017-02-21 04:15:40', 'bf19d476b7eb54d7f8148895a8cd7fb4.jpg', '', 0, NULL, 'imagePost', 0, '-97.6870258530983', '0.5970297834792131', '131.8170166015625', '1679.469970703125', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 237.4459019601514 31.162499999999973 269.8627913041023 Z', 'M 31.162500000000026 337.7939823400373 L 328.83749999999895 318.7180013614301 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(197, 33, '2017-02-21 04:17:14', '100d5b1699501e026c1a7de676737242.jpg', '', 0, NULL, 'imagePost', 0, '17.08401259502432', '1.160298018487946', '-15.478012084960938', '3445.438995361328', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.16249999999995 443.42513278509153 L 328.8375000000006 361.76203790477877 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 182.62587746675672 31.162499999999966 293.0046208094938 Z', 1, NULL, 0, 0, 0),
(198, 33, '2017-02-21 04:18:11', '061594f5e1161a968184010512622a5f.jpg', '', 0, NULL, 'imagePost', 0, '0', '1', '-11.483993530273438', '4572.434997558594', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.16250000000004 331.69449599877134 L 328.8375000000005 300.7725154899347 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8374999999999 249.18591411460105 31.16250000000008 286.35857950302176 Z', 1, NULL, 0, 0, 0),
(199, 33, '2017-02-21 04:23:06', 'cb1e57d3fcf1dd1b17c0f6c0bef96d26.jpg', '', 0, NULL, 'imagePost', 0, '80.96045809250813', '0.3517573581666221', '-41.4429931640625', '3722.5009765625', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000001 233.04961105119312 31.162499999999955 300.074494373405 Z', 'M 31.16249999999997 357.40006982133974 L 328.8375000000005 292.9726840568982 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(200, 33, '2017-02-21 04:35:41', 'a023aab34891b40364e591869544122a.jpg', '', 0, NULL, 'imagePost', 0, '13.826889606112331', '0.6456855515510767', '147.29598999023438', '3692.093002319336', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 85.05000000000001 L 197.89077783300945 85.0500000000001 328.8375000000005 292.35812067793063 328.8375 481.95 31.162499999999994 481.95 Z', 'M 201.47455955507905 85.05000000000007 L 328.8375 85.05000000000001 328.8375 481.95 31.162499999999994 481.95 31.162499999999973 211.3609015985137 Z', 1, NULL, 0, 0, 0),
(201, 33, '2017-02-21 04:37:25', '626d7522202cdac003d6ffe5eb693051.jpg', '', 0, NULL, 'imagePost', 0, '-7.7357960181172984', '1.3253561848793272', '0', '3890', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83749999999975 212.8605753689226 31.16249999999998 224.37223472622972 Z', 'M 31.16250000000003 381.5961355966726 L 328.83750000000066 396.60327483301654 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),
(202, 33, '2017-02-21 04:47:26', '0ffbbfb35f95bd906755e6180836c5d3.jpg', '', 0, NULL, 'imagePost', 0, '80.88172320880778', '0.4692672384961356', '149.7919921875', '5002.930999755859', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375 228.48723083715993 31.162500000000097 264.69611524738764 Z', 'M 31.162499999999994 85.05000000000001 L 328.8375 85.05000000000001 328.8375000000004 277.8939064570167 31.162500000000037 336.07594553740444 Z', 1, NULL, 0, 0, 0),
(203, 33, '2017-02-21 04:48:37', 'c375d5f9c941c400797aa899e5056834.jpg', '', 0, NULL, 'imagePost', 0, '94.48704914598989', '0.6124386456484261', '130.31900024414063', '5017.5670166015625', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999948 310.7584518935414 L 328.837499999999 311.20312767787163 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.83750000000003 233.53788520940003 31.162500000000094 262.4729369500947 Z', 1, NULL, 0, 0, 0),
(204, 33, '2017-02-21 04:49:01', 'fb09d23de087076ed542010c51bb1146.jpg', '', 0, NULL, 'imagePost', 0, '114.96684756929415', '0.32640102647468205', '129.32101440429688', '4124.877014160156', '31.162499999999994', '85.05000000000001', '396.9', '297.675', 'M 31.162499999999994 481.95 L 328.8375 481.95 328.8375000000003 197.42214773616257 31.162499999999977 229.3680260398556 Z', 'M 31.16249999999998 316.4971200978438 L 328.8375000000005 296.8182597359235 328.8375 85.05000000000001 31.162499999999994 85.05000000000001 Z', 1, NULL, 0, 0, 0),