-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.sql
More file actions
executable file
·3219 lines (3090 loc) · 309 KB
/
Copy pathdb.sql
File metadata and controls
executable file
·3219 lines (3090 loc) · 309 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 28, 2012 at 01:34 PM
-- Server version: 5.5.16
-- PHP Version: 5.3.8
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `demos4clients_com_db`
--
DELIMITER $$
--
-- Procedures
--
CREATE DEFINER=`root`@`localhost` PROCEDURE `get_max_recs`(IN tab VARCHAR(300),IN col VARCHAR(500),IN cond VARCHAR(500))
BEGIN
SET @QUER = CONCAT("SELECT ",col," FROM ",tab," WHERE ",cond);
PREPARE stmt FROM @QUER;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `get_search_sql`(IN tb_name VARCHAR(100),IN cond TEXT,IN cols TEXT)
BEGIN
IF cond ='' THEN
SET @p := CONCAT('SELECT ',cols,' FROM ' , tb_name);
ELSE
SET @p := CONCAT('SELECT ',cols,' FROM ' , tb_name,' WHERE ', cond);
END IF;
PREPARE stmt FROM @p;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
END$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `insert_proc`(IN tab_name varchar(30),IN cols varchar(500),IN vals varchar(500),OUT id INT)
begin
set @quer = concat('insert into ',tab_name,'(',cols,') values (',vals,')');
prepare stmt from @quer;
execute stmt;
deallocate prepare stmt;
select last_insert_id() into id;
end$$
CREATE DEFINER=`root`@`localhost` PROCEDURE `update_proc`(IN tab_name varchar(50),IN parms varchar(1000),IN cond varchar(500))
begin
set @quer = concat('update ',tab_name,' set ',parms,' where ',cond);
prepare stmt from @quer;
execute stmt;
deallocate prepare stmt;
end$$
DELIMITER ;
-- --------------------------------------------------------
--
-- Table structure for table `memeje__allotpoints`
--
CREATE TABLE IF NOT EXISTS `memeje__allotpoints` (
`id_allot` int(11) NOT NULL AUTO_INCREMENT,
`point_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`points` int(11) NOT NULL,
PRIMARY KEY (`id_allot`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=8 ;
--
-- Dumping data for table `memeje__allotpoints`
--
INSERT INTO `memeje__allotpoints` (`id_allot`, `point_type`, `points`) VALUES
(1, 'meme_insert', 15),
(2, 'answer_to_meme', 10),
(3, 'insert_caption', 8),
(4, 'honour', 5),
(5, 'dishonor', 3),
(6, 'honour_other', 1),
(7, 'dishonor_other', 1);
-- --------------------------------------------------------
--
-- Table structure for table `memeje__badge`
--
CREATE TABLE IF NOT EXISTS `memeje__badge` (
`id_badge` int(10) NOT NULL AUTO_INCREMENT,
`image_badge` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`title_badge` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`desc_badge` text COLLATE utf8_unicode_ci,
`expr_point` int(10) NOT NULL,
`badge_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`badge_type_number` int(10) NOT NULL,
`glory_badge_point` int(10) NOT NULL,
`is_glory_badge` int(1) NOT NULL,
`ip` varchar(16) COLLATE utf8_unicode_ci NOT NULL,
`start` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`end` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`add_date` datetime DEFAULT NULL,
PRIMARY KEY (`id_badge`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `memeje__badge`
--
INSERT INTO `memeje__badge` (`id_badge`, `image_badge`, `title_badge`, `desc_badge`, `expr_point`, `badge_type`, `badge_type_number`, `glory_badge_point`, `is_glory_badge`, `ip`, `start`, `end`, `add_date`) VALUES
(1, 'Afixi_54.jpg', 'Congratch!! You have crossed 100 experience point.', 'This achievement can be achieved after getting 100 experience points.', 0, 'exp_point', 100, 0, 0, '117.197.233.105', '0', '0', '2011-07-16 07:28:28'),
(2, 'Afixi_55.jpg', 'You have crossed 200 experience points.', 'After getting 200 experience points you will get this achievement.And Experience point can be won by posting meme ,replying meme,suggesting caption,etc.', 0, 'exp_point', 200, 0, 0, '117.197.233.105', '0', '0', '2011-07-16 07:30:00'),
(3, 'Afixi_51.jpg', '100 duels won', 'This achievement can be achieved after wining 100 duels.', 0, 'duels_won', 100, 0, 0, '117.197.233.105', '0', '0', '2011-07-16 07:31:56'),
(4, 'Afixi_50.jpg', '100 times question of the week won.', 'This achievement can be achieved after getting 100 times question of the week won.', 0, 'ques_week_won', 100, 0, 0, '117.197.233.105', '0', '0', '2011-07-16 07:32:53'),
(5, 'Afixi_56.jpg', 'Crossing 400 Exp Points', 'This achievement can be got if your answer of the question is choosen liked most and getting this you also gain some points.', 0, 'exp_point', 400, 0, 0, '117.197.233.105', '0', '0', '2011-07-16 07:33:51'),
(6, 'Afixi_57.jpeg', 'Crossing 888 overall Replies.', 'This achievement can be won after replying over 888.', 0, 'reply', 888, 0, 0, '117.197.233.105', '0', '0', '2011-08-18 04:11:52');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__caption`
--
CREATE TABLE IF NOT EXISTS `memeje__caption` (
`id_caption` int(11) NOT NULL AUTO_INCREMENT,
`id_meme` int(11) NOT NULL,
`id_user` int(11) NOT NULL,
`is_live` tinyint(2) NOT NULL DEFAULT '1',
`caption` text COLLATE utf8_unicode_ci NOT NULL,
`tot_honour` int(11) NOT NULL DEFAULT '0',
`honour_id_user` text COLLATE utf8_unicode_ci NOT NULL,
`tot_dishonour` int(11) NOT NULL DEFAULT '0',
`dishonour_id_u` text COLLATE utf8_unicode_ci NOT NULL,
`user_status` tinyint(2) NOT NULL,
`add_date` datetime NOT NULL,
`ip` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_caption`),
KEY `id_meme` (`id_meme`,`id_user`),
KEY `user_status` (`user_status`),
KEY `is_live` (`is_live`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=669 ;
--
-- Dumping data for table `memeje__caption`
--
INSERT INTO `memeje__caption` (`id_caption`, `id_meme`, `id_user`, `is_live`, `caption`, `tot_honour`, `honour_id_user`, `tot_dishonour`, `dishonour_id_u`, `user_status`, `add_date`, `ip`) VALUES
(1, 17, 2, 1, 'its my uncle', 1, '2', 0, '', 0, '2011-08-20 02:49:52', '117.201.160.57'),
(2, 17, 2, 1, 'No its my frnd', 2, '2,4', 0, '', 0, '2011-08-20 02:50:40', '117.201.160.57'),
(3, 4, 2, 1, 'Its madona!!', 1, '2', 0, '', 0, '2011-08-20 03:37:23', '117.201.160.57'),
(4, 24, 3, 1, 'hhhhhhhhhhhhhiiiiiiiiiiiiiiiiiiiii', 0, '', 0, '', 0, '2011-08-20 07:22:10', '117.201.160.57'),
(5, 24, 3, 1, 'hiiiiiiiiii', 0, '', 0, '', 0, '2011-08-20 07:22:52', '117.201.160.57'),
(6, 26, 35, 1, 'YAY thanks pati', 1, '35', 0, '', 0, '2011-08-20 17:40:21', '198.94.221.87'),
(7, 26, 35, 1, 'what the what!', 0, '', 0, '', 0, '2011-08-20 17:46:10', '198.94.221.87'),
(11, 31, 35, 1, 'this is a caption', 0, '', 0, '', 0, '2011-08-20 19:12:54', '108.205.200.122'),
(12, 34, 2, 1, 'hello', 0, '', 0, '', 0, '2011-08-21 20:54:55', '117.197.233.113'),
(13, 20, 2, 1, 'Hi its test.', 1, '2', 0, '', 0, '2011-08-23 02:26:41', '117.197.253.54'),
(14, 20, 2, 1, 'dasdfsdsfs', 2, '2,34', 0, '', 0, '2011-08-23 02:26:50', '117.197.253.54'),
(15, 42, 2, 1, 'Hi', 1, '2', 0, '', 0, '2011-08-23 02:31:08', '117.197.253.54'),
(16, 42, 2, 1, 'dfd', 2, '2,4', 0, '', 0, '2011-08-23 02:31:25', '117.197.253.54'),
(17, 41, 4, 1, 'dfgkjdfgkjl', 2, '4,3', 0, '', 0, '2011-08-23 03:03:25', '117.197.253.54'),
(18, 41, 4, 1, 'asdasdasdasd', 2, '4,3', 0, '', 0, '2011-08-23 03:03:40', '117.197.253.54'),
(19, 21, 10, 1, 'Hi this for testing purpose', 1, '10', 0, '', 0, '2011-08-23 21:37:56', '117.201.160.173'),
(20, 20, 10, 1, 'jhkjyhh', 0, '', 0, '', 0, '2011-08-23 21:43:58', '117.201.160.173'),
(21, 20, 34, 1, 'Hello testing', 0, '', 0, '', 0, '2011-08-24 06:32:15', '117.197.236.115'),
(22, 21, 3, 1, 'This one is for testing', 0, '', 0, '', 0, '2011-08-24 06:32:49', '117.197.236.115'),
(23, 44, 34, 1, 'For testing purpose', 0, '', 0, '', 0, '2011-08-24 06:35:06', '117.197.236.115'),
(24, 44, 10, 1, 'Hi this for testing purpose', 0, '', 0, '', 0, '2011-08-24 06:35:37', '117.197.236.115'),
(25, 44, 10, 1, 'This again for testing', 1, '3', 0, '', 0, '2011-08-24 06:36:04', '117.197.236.115'),
(26, 44, 3, 1, 'Testingggg', 1, '3', 0, '', 0, '2011-08-24 06:36:51', '117.197.236.115'),
(27, 36, 2, 1, 'asda asdasd', 0, '', 0, '', 0, '2011-08-24 06:40:30', '117.197.236.115'),
(28, 36, 2, 1, 'sdfsdsd', 0, '', 0, '', 0, '2011-08-24 06:41:56', '117.197.236.115'),
(29, 43, 10, 1, 'For testing', 0, '', 0, '', 0, '2011-08-24 06:45:54', '117.197.236.115'),
(30, 43, 3, 1, 'Testing Add caption', 0, '', 0, '', 0, '2011-08-24 06:46:31', '117.197.236.115'),
(31, 43, 34, 1, 'Testing Add Caption--1', 1, '34', 0, '', 0, '2011-08-24 06:49:07', '117.197.239.207'),
(32, 90, 30, 1, 'test', 1, '30', 0, '', 0, '2011-09-02 07:25:59', '117.201.165.160'),
(33, 90, 30, 1, 'hello', 0, '', 0, '', 0, '2011-09-02 07:43:46', '117.201.165.160'),
(34, 38, 34, 1, 'This for testing', 0, '', 0, '', 0, '2011-09-03 00:47:44', '117.201.148.167'),
(35, 87, 36, 1, 'derp', 1, '36', 0, '', 0, '2011-09-04 13:16:53', '67.160.197.181'),
(36, 92, 2, 1, 'your mom', 1, '2', 0, '', 0, '2011-10-15 22:22:29', '127.0.0.1'),
(37, 101, 2, 1, 'caption here', 1, '2', 0, '', 0, '2011-10-16 17:29:19', '127.0.0.1'),
(38, 106, 2, 1, 'my caption here', 0, '', 1, '2', 0, '2011-10-17 00:19:43', '127.0.0.1'),
(39, 106, 2, 1, 'adkfjldsajfskfldfjdkjlakjdlkjgladjglkajgl;adjg;ldakgjda', 0, '', 1, '2', 0, '2011-10-17 00:44:08', '127.0.0.1'),
(40, 104, 2, 1, 'alkdjglakjglakjgoaij34j90g8jzcxvjj20tjasodfkdfl', 0, '', 1, '2', 0, '2011-10-17 01:25:24', '127.0.0.1'),
(41, 101, 2, 1, 'alksdfjldasjfksdjflksdjlfksd', 0, '', 0, '', 0, '2011-10-17 13:57:27', '127.0.0.1'),
(42, 100, 2, 1, 'I''m really witty', 1, '2', 0, '', 0, '2011-10-19 19:55:04', '127.0.0.1'),
(45, 98, 2, 1, 'i am a rooster.', 0, '', 1, '2', 0, '2011-11-06 16:43:00', '::1'),
(46, 104, 2, 1, 'herp derp', 0, '', 1, '2', 0, '2011-12-10 14:34:43', '127.0.0.1'),
(47, 99, 2, 1, 'tweet', 0, '', 0, '', 0, '2011-12-10 14:34:55', '127.0.0.1'),
(48, 97, 2, 1, 'a caption', 0, '', 0, '', 0, '2011-12-10 17:51:28', '127.0.0.1'),
(49, 106, 2, 1, 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', 0, '', 1, '2', 0, '2011-12-10 22:10:46', '127.0.0.1'),
(50, 91, 2, 1, 'Something witty here.', 0, '', 1, '2', 0, '2011-12-11 17:21:00', '127.0.0.1'),
(51, 115, 2, 1, 'write a caption', 0, '', 0, '', 0, '2011-12-14 02:47:14', '127.0.0.1'),
(52, 114, 2, 1, 'adlfjsdlfjsdf', 0, '', 0, '', 0, '2011-12-14 02:47:33', '127.0.0.1'),
(53, 114, 2, 1, 'jkkjkjkjnklkmlkml', 0, '', 1, '2', 0, '2011-12-14 02:56:22', '127.0.0.1'),
(54, 118, 2, 1, 'a caption\n', 0, '', 0, '', 0, '2011-12-14 11:06:40', '127.0.0.1'),
(55, 119, 2, 1, 'another caption\n', 0, '', 0, '', 0, '2011-12-14 15:17:51', '127.0.0.1'),
(56, 121, 2, 1, 'aldsjkflksdjflsdfkld', 0, '', 0, '', 0, '2011-12-15 17:24:34', '127.0.0.1'),
(57, 116, 2, 1, 'are you impressed?', 0, '', 0, '', 0, '2011-12-16 00:48:32', '127.0.0.1'),
(58, 117, 2, 1, 'ijljk', 0, '', 0, '', 0, '2011-12-16 00:48:51', '127.0.0.1'),
(59, 121, 2, 1, 'mutt mutt', 0, '', 0, '', 0, '2011-12-16 01:31:32', '127.0.0.1'),
(60, 121, 2, 1, 'LOL', 0, '', 1, '2', 0, '2011-12-16 10:53:29', '127.0.0.1'),
(61, 121, 2, 1, 'herp derp', 0, '', 0, '', 0, '2011-12-18 14:17:43', '127.0.0.1'),
(62, 124, 51, 1, 'HMMMMM', 0, '', 0, '', 0, '2011-12-21 19:46:11', '127.0.0.1'),
(63, 124, 51, 1, 'fuck you!!!!!', 0, '', 0, '', 0, '2011-12-21 19:47:47', '127.0.0.1'),
(64, 124, 2, 1, 'hmm', 0, '', 0, '', 0, '2011-12-22 02:25:07', '127.0.0.1'),
(65, 124, 2, 1, 'jquery test', 0, '', 0, '', 0, '2011-12-23 01:17:50', '127.0.0.1'),
(66, 37, 2, 1, 'what the fuck', 0, '', 0, '', 0, '2011-12-23 01:44:45', '127.0.0.1'),
(67, 50, 2, 1, 'test caption', 0, '', 0, '', 0, '2011-12-23 01:48:03', '127.0.0.1'),
(68, 50, 2, 1, 'caption caption', 0, '', 0, '', 0, '2011-12-23 01:48:35', '127.0.0.1'),
(69, 33, 60, 1, 'cool caption', 0, '', 0, '', 0, '2011-12-23 02:25:26', '127.0.0.1'),
(70, 124, 62, 1, 'GOD', 0, '', 0, '', 0, '2011-12-23 19:57:41', '127.0.0.1'),
(114, 115, 62, 1, 'asdkfjslfkds', 0, '', 0, '', 0, '2011-12-24 04:32:29', '127.0.0.1'),
(115, 115, 62, 1, 'sdkjfkdfsd', 0, '', 0, '', 0, '2011-12-24 04:32:32', '127.0.0.1'),
(116, 115, 62, 1, 'skfslksfsd', 0, '', 0, '', 0, '2011-12-24 04:32:36', '127.0.0.1'),
(118, 110, 62, 1, 'CAPTION', 0, '', 0, '', 0, '2011-12-24 11:49:12', '127.0.0.1'),
(137, 97, 2, 1, 'testeststest', 0, '', 0, '', 0, '2011-12-24 15:42:51', '127.0.0.1'),
(339, 106, 62, 1, 'caption', 0, '', 0, '', 0, '2011-12-24 22:39:58', '127.0.0.1'),
(340, 106, 62, 1, 'caption caption caption', 0, '', 0, '', 0, '2011-12-24 22:40:49', '127.0.0.1'),
(341, 106, 62, 1, 'more captions', 0, '', 0, '', 0, '2011-12-24 22:40:55', '127.0.0.1'),
(345, 124, 62, 1, 'fervor', 0, '', 0, '', 0, '2011-12-24 22:42:44', '127.0.0.1'),
(363, 123, 62, 1, 'addddictive qualities', 0, '', 0, '', 0, '2011-12-25 00:53:42', '127.0.0.1'),
(397, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:28', '127.0.0.1'),
(398, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:33', '127.0.0.1'),
(399, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:36', '127.0.0.1'),
(400, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:39', '127.0.0.1'),
(401, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:41', '127.0.0.1'),
(402, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:44', '127.0.0.1'),
(403, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:46', '127.0.0.1'),
(404, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:48', '127.0.0.1'),
(405, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:50', '127.0.0.1'),
(406, 89, 2, 1, 'sdfsdafd', 0, '', 0, '', 0, '2011-12-25 12:12:54', '127.0.0.1'),
(421, 131, 2, 1, 'asdfkjsdlkjdskfsdlf', 0, '', 0, '', 0, '2011-12-25 16:13:50', '127.0.0.1'),
(422, 131, 2, 1, 'lkjlasjsfs', 0, '', 0, '', 0, '2011-12-25 16:13:54', '127.0.0.1'),
(423, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:13:57', '127.0.0.1'),
(424, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:01', '127.0.0.1'),
(425, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:05', '127.0.0.1'),
(426, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:07', '127.0.0.1'),
(427, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:10', '127.0.0.1'),
(428, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:14', '127.0.0.1'),
(429, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:15', '127.0.0.1'),
(430, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:18', '127.0.0.1'),
(431, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:20', '127.0.0.1'),
(432, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:29', '127.0.0.1'),
(433, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:32', '127.0.0.1'),
(434, 131, 2, 1, 'asdfksfjdsfjldsf', 0, '', 0, '', 0, '2011-12-25 16:14:37', '127.0.0.1'),
(439, 131, 2, 1, 'alkdjfdsf', 0, '', 0, '', 0, '2011-12-25 22:10:06', '127.0.0.1'),
(440, 131, 2, 1, 'asdfsfsfasdf', 0, '', 0, '', 0, '2011-12-25 23:24:17', '127.0.0.1'),
(441, 131, 2, 1, 'asdfsfsfasdf', 0, '', 0, '', 0, '2011-12-25 23:24:24', '127.0.0.1'),
(442, 131, 2, 1, 'XPsfs', 0, '', 0, '', 0, '2011-12-25 23:37:51', '127.0.0.1'),
(443, 131, 2, 1, 'asdsfs', 0, '', 0, '', 0, '2011-12-25 23:38:35', '127.0.0.1'),
(444, 131, 2, 1, 'asdsfs', 0, '', 0, '', 0, '2011-12-25 23:38:38', '127.0.0.1'),
(445, 131, 2, 1, 'asdfsf', 0, '', 0, '', 0, '2011-12-25 23:39:18', '127.0.0.1'),
(446, 131, 2, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:46:25', '127.0.0.1'),
(447, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:46:55', '127.0.0.1'),
(448, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:46:58', '127.0.0.1'),
(449, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:47:00', '127.0.0.1'),
(450, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:47:02', '127.0.0.1'),
(451, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:47:05', '127.0.0.1'),
(452, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-25 23:47:09', '127.0.0.1'),
(453, 131, 2, 1, 'sdfsf', 0, '', 0, '', 0, '2011-12-25 23:51:48', '127.0.0.1'),
(454, 131, 62, 1, 'sdfsf', 0, '', 0, '', 0, '2011-12-25 23:53:01', '127.0.0.1'),
(455, 131, 2, 1, 'sfsfdflkasdf', 0, '', 0, '', 0, '2011-12-25 23:55:03', '127.0.0.1'),
(456, 131, 62, 1, 'asdfsf', 0, '', 0, '', 0, '2011-12-25 23:57:37', '127.0.0.1'),
(457, 131, 2, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 00:03:18', '127.0.0.1'),
(458, 131, 2, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 00:49:51', '127.0.0.1'),
(459, 131, 2, 1, 'adsdfsdf', 0, '', 0, '', 0, '2011-12-26 00:50:02', '127.0.0.1'),
(460, 131, 2, 1, 'asdfsdfdf', 0, '', 0, '', 0, '2011-12-26 00:50:07', '127.0.0.1'),
(461, 131, 2, 1, 'asdfsfds', 0, '', 0, '', 0, '2011-12-26 00:52:05', '127.0.0.1'),
(462, 131, 2, 1, 'asdfsfsd', 0, '', 0, '', 0, '2011-12-26 00:53:26', '127.0.0.1'),
(463, 131, 62, 1, 'asdfsafs', 0, '', 0, '', 0, '2011-12-26 02:08:51', '127.0.0.1'),
(464, 131, 62, 1, 'zxdsfsa', 0, '', 0, '', 0, '2011-12-26 02:11:59', '127.0.0.1'),
(465, 131, 62, 1, 'asdfsfsdfsfsdf', 0, '', 0, '', 0, '2011-12-26 02:14:21', '127.0.0.1'),
(466, 131, 62, 1, 'adfsfsf', 0, '', 0, '', 0, '2011-12-26 02:15:12', '127.0.0.1'),
(467, 131, 62, 1, 'asdsf', 0, '', 0, '', 0, '2011-12-26 02:15:23', '127.0.0.1'),
(468, 131, 62, 1, 'asdfsf', 0, '', 0, '', 0, '2011-12-26 02:16:51', '127.0.0.1'),
(469, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 02:24:27', '127.0.0.1'),
(470, 131, 3, 1, 'asdsfsdf', 0, '', 0, '', 0, '2011-12-26 02:26:03', '127.0.0.1'),
(471, 131, 3, 1, 'HOW ABOUT NOW?', 0, '', 0, '', 0, '2011-12-26 02:26:26', '127.0.0.1'),
(472, 131, 62, 1, 'im better', 0, '', 0, '', 0, '2011-12-26 02:28:41', '127.0.0.1'),
(473, 131, 62, 1, 'im better', 0, '', 0, '', 0, '2011-12-26 02:28:49', '127.0.0.1'),
(474, 131, 3, 1, 'asdfsdfsdf', 0, '', 0, '', 0, '2011-12-26 02:29:11', '127.0.0.1'),
(475, 131, 62, 1, 'adfsdfsdf', 0, '', 0, '', 0, '2011-12-26 02:30:38', '127.0.0.1'),
(476, 131, 3, 1, 'adfsfsdf', 0, '', 0, '', 0, '2011-12-26 02:31:04', '127.0.0.1'),
(477, 131, 2, 1, 'aasdfsfsdf', 0, '', 0, '', 0, '2011-12-26 02:33:15', '127.0.0.1'),
(478, 131, 2, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 02:33:31', '127.0.0.1'),
(479, 131, 2, 1, 'asdfsf', 0, '', 0, '', 0, '2011-12-26 02:33:37', '127.0.0.1'),
(480, 131, 2, 1, 'asdfsfsdfsd', 0, '', 0, '', 0, '2011-12-26 02:33:46', '127.0.0.1'),
(481, 131, 2, 1, 'ASDF', 0, '', 0, '', 0, '2011-12-26 02:34:12', '127.0.0.1'),
(482, 131, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 02:34:26', '127.0.0.1'),
(483, 131, 62, 1, 'adsfsdf', 0, '', 0, '', 0, '2011-12-26 02:34:41', '127.0.0.1'),
(484, 131, 2, 1, 'asdfsfs', 0, '', 0, '', 0, '2011-12-26 02:34:53', '127.0.0.1'),
(485, 131, 2, 1, 'asdfsfsfsdf', 0, '', 0, '', 0, '2011-12-26 02:35:03', '127.0.0.1'),
(486, 131, 62, 1, 'asdffjust dance', 0, '', 0, '', 0, '2011-12-26 02:40:51', '127.0.0.1'),
(487, 131, 62, 1, 'asdffjust dance', 0, '', 0, '', 0, '2011-12-26 02:41:04', '127.0.0.1'),
(488, 131, 2, 1, 'asdffjust dance', 0, '', 0, '', 0, '2011-12-26 02:41:24', '127.0.0.1'),
(489, 131, 62, 1, 'adfsdf', 0, '', 0, '', 0, '2011-12-26 02:41:51', '127.0.0.1'),
(490, 137, 3, 1, 'caption', 0, '', 0, '', 0, '2011-12-26 03:52:41', '127.0.0.1'),
(496, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:39:11', '127.0.0.1'),
(497, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:39:24', '127.0.0.1'),
(498, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:39:45', '127.0.0.1'),
(499, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:39:48', '127.0.0.1'),
(500, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:39:52', '127.0.0.1'),
(501, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:40:03', '127.0.0.1'),
(502, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:40:07', '127.0.0.1'),
(503, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:40:10', '127.0.0.1'),
(504, 137, 62, 1, 'what the fuck??', 0, '', 0, '', 0, '2011-12-26 12:40:26', '127.0.0.1'),
(505, 137, 3, 1, 'bulletproof', 0, '', 0, '', 0, '2011-12-26 12:42:06', '127.0.0.1'),
(506, 137, 3, 1, 'bulletproof', 0, '', 0, '', 0, '2011-12-26 12:42:08', '127.0.0.1'),
(507, 137, 62, 1, 'asfdsd', 0, '', 0, '', 0, '2011-12-26 12:45:16', '127.0.0.1'),
(508, 137, 3, 1, 'SDFSFS', 0, '', 0, '', 0, '2011-12-26 12:45:42', '127.0.0.1'),
(509, 137, 62, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 12:57:11', '127.0.0.1'),
(510, 137, 62, 1, 'asdfsdfsdfd', 0, '', 0, '', 0, '2011-12-26 12:57:30', '127.0.0.1'),
(511, 137, 62, 1, 'asdfsfsfsdfsaf', 0, '', 0, '', 0, '2011-12-26 12:59:21', '127.0.0.1'),
(512, 137, 62, 1, 'asdfsfsdfsd', 0, '', 0, '', 0, '2011-12-26 12:59:25', '127.0.0.1'),
(513, 137, 62, 1, 'adsfsfsdfsf', 0, '', 0, '', 0, '2011-12-26 12:59:30', '127.0.0.1'),
(514, 137, 62, 1, 'asdfsfsf', 0, '', 0, '', 0, '2011-12-26 12:59:43', '127.0.0.1'),
(515, 137, 62, 1, 'asdfssdasdfs', 0, '', 0, '', 0, '2011-12-26 12:59:50', '127.0.0.1'),
(516, 137, 62, 1, 'asdfsfsdf', 0, '', 0, '', 0, '2011-12-26 13:00:02', '127.0.0.1'),
(517, 137, 62, 1, 'asdsdfdf', 0, '', 0, '', 0, '2011-12-26 13:00:11', '127.0.0.1'),
(518, 137, 62, 1, 'asdfssa', 0, '', 0, '', 0, '2011-12-26 13:00:54', '127.0.0.1'),
(519, 137, 63, 1, 'asdfsfds', 0, '', 0, '', 0, '2011-12-26 13:09:37', '127.0.0.1'),
(520, 136, 64, 1, 'asfsdsfsadfsf', 0, '', 0, '', 0, '2011-12-26 13:18:47', '127.0.0.1'),
(521, 136, 64, 1, 'asdfsfsafd', 0, '', 0, '', 0, '2011-12-26 13:18:53', '127.0.0.1'),
(522, 136, 64, 1, 'asdsdfasdfasdf', 0, '', 0, '', 0, '2011-12-26 13:19:01', '127.0.0.1'),
(523, 136, 64, 1, 'asdfsaf', 0, '', 0, '', 0, '2011-12-26 13:20:20', '127.0.0.1'),
(524, 136, 64, 1, 'ASDSA', 0, '', 0, '', 0, '2011-12-26 13:20:26', '127.0.0.1'),
(525, 137, 64, 1, 'asdfsafs', 0, '', 0, '', 0, '2011-12-26 13:24:15', '127.0.0.1'),
(526, 137, 64, 1, 'safsafsd', 0, '', 0, '', 0, '2011-12-26 13:30:20', '127.0.0.1'),
(527, 137, 64, 1, 'aasdfs', 0, '', 0, '', 0, '2011-12-26 13:30:30', '127.0.0.1'),
(528, 137, 64, 1, 'asdfsafs', 0, '', 0, '', 0, '2011-12-26 13:30:41', '127.0.0.1'),
(529, 137, 64, 1, 'asdsafsdf', 0, '', 0, '', 0, '2011-12-26 13:30:56', '127.0.0.1'),
(530, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:04', '127.0.0.1'),
(531, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:10', '127.0.0.1'),
(532, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:14', '127.0.0.1'),
(533, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:23', '127.0.0.1'),
(534, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:29', '127.0.0.1'),
(535, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:34', '127.0.0.1'),
(536, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:37', '127.0.0.1'),
(537, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:48', '127.0.0.1'),
(538, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:31:57', '127.0.0.1'),
(539, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:01', '127.0.0.1'),
(540, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:06', '127.0.0.1'),
(541, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:12', '127.0.0.1'),
(542, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:19', '127.0.0.1'),
(543, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:26', '127.0.0.1'),
(544, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:30', '127.0.0.1'),
(545, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:34', '127.0.0.1'),
(546, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:40', '127.0.0.1'),
(547, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:46', '127.0.0.1'),
(548, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:49', '127.0.0.1'),
(549, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:53', '127.0.0.1'),
(550, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:32:57', '127.0.0.1'),
(551, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:01', '127.0.0.1'),
(552, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:05', '127.0.0.1'),
(553, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:14', '127.0.0.1'),
(554, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:18', '127.0.0.1'),
(555, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:21', '127.0.0.1'),
(556, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:25', '127.0.0.1'),
(557, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:29', '127.0.0.1'),
(558, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:34', '127.0.0.1'),
(559, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:37', '127.0.0.1'),
(560, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:40', '127.0.0.1'),
(561, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:42', '127.0.0.1'),
(562, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:45', '127.0.0.1'),
(563, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:56', '127.0.0.1'),
(564, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:33:58', '127.0.0.1'),
(565, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:01', '127.0.0.1'),
(566, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:04', '127.0.0.1'),
(567, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:07', '127.0.0.1'),
(568, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:11', '127.0.0.1'),
(569, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:16', '127.0.0.1'),
(570, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:19', '127.0.0.1'),
(571, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:21', '127.0.0.1'),
(572, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:26', '127.0.0.1'),
(573, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:29', '127.0.0.1'),
(574, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:33', '127.0.0.1'),
(575, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:35', '127.0.0.1'),
(576, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:39', '127.0.0.1'),
(577, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:41', '127.0.0.1'),
(578, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:43', '127.0.0.1'),
(579, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:51', '127.0.0.1'),
(580, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:55', '127.0.0.1'),
(581, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:34:57', '127.0.0.1'),
(582, 137, 64, 1, 'asdf', 0, '', 0, '', 0, '2011-12-26 13:35:01', '127.0.0.1'),
(583, 137, 64, 1, 'asdfaf', 0, '', 0, '', 0, '2011-12-26 13:40:25', '127.0.0.1'),
(584, 137, 64, 1, 'asd', 0, '', 0, '', 0, '2011-12-26 13:41:17', '127.0.0.1'),
(585, 135, 65, 1, 'SDASFA', 0, '', 0, '', 0, '2011-12-26 13:48:42', '127.0.0.1'),
(586, 135, 65, 1, 'adfaasdfsdf', 0, '', 0, '', 0, '2011-12-26 13:48:52', '127.0.0.1'),
(587, 135, 65, 1, 'TERP WEP', 0, '', 0, '', 0, '2011-12-26 13:49:07', '127.0.0.1'),
(588, 135, 65, 1, 'merrrrrrrrrrrrpppp', 0, '', 0, '', 0, '2011-12-26 13:49:13', '127.0.0.1'),
(589, 137, 65, 1, 'asdfsdf', 0, '', 0, '', 0, '2011-12-26 13:52:54', '127.0.0.1'),
(590, 137, 65, 1, 'dsdddd', 0, '', 0, '', 0, '2011-12-26 13:53:00', '127.0.0.1'),
(591, 137, 65, 1, 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa', 0, '', 0, '', 0, '2011-12-26 13:53:18', '127.0.0.1'),
(592, 137, 65, 1, 'sssssssssssssssssssssss', 0, '', 0, '', 0, '2011-12-26 13:53:23', '127.0.0.1'),
(593, 137, 65, 1, 'ssssssssssssss', 0, '', 0, '', 0, '2011-12-26 13:53:26', '127.0.0.1'),
(594, 137, 65, 1, 'sssssssssssssssss', 0, '', 0, '', 0, '2011-12-26 13:53:30', '127.0.0.1'),
(595, 137, 65, 1, 'sssssssssssssssssssssssssssssss', 0, '', 0, '', 0, '2011-12-26 13:53:34', '127.0.0.1'),
(596, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:53:59', '127.0.0.1'),
(597, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:04', '127.0.0.1'),
(598, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:09', '127.0.0.1'),
(599, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:13', '127.0.0.1'),
(600, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:16', '127.0.0.1'),
(601, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:18', '127.0.0.1'),
(602, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:22', '127.0.0.1'),
(603, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:25', '127.0.0.1'),
(604, 137, 65, 1, 'ffffffffffffffffffffffUUUUUUUUUUUUUUuuuuuuuuuuu', 0, '', 0, '', 0, '2011-12-26 13:54:28', '127.0.0.1'),
(605, 136, 65, 1, 'ff', 0, '', 0, '', 0, '2011-12-26 13:55:23', '127.0.0.1'),
(608, 137, 65, 1, 'asfasfas', 0, '', 0, '', 0, '2011-12-26 15:11:24', '127.0.0.1'),
(609, 137, 65, 1, 'asdfasdf', 0, '', 0, '', 0, '2011-12-26 15:11:28', '127.0.0.1'),
(610, 137, 65, 1, 'asdfasdf', 0, '', 0, '', 0, '2011-12-26 15:11:31', '127.0.0.1'),
(611, 137, 65, 1, 'asdasfasd', 0, '', 0, '', 0, '2011-12-26 15:11:36', '127.0.0.1'),
(612, 137, 66, 1, 'asdfasfas', 0, '', 0, '', 0, '2011-12-26 20:01:44', '127.0.0.1'),
(613, 137, 66, 1, 'asdfasfas', 0, '', 0, '', 0, '2011-12-26 20:01:48', '127.0.0.1'),
(614, 137, 66, 1, 'asdfasfas', 0, '', 0, '', 0, '2011-12-26 20:01:52', '127.0.0.1'),
(615, 137, 66, 1, 'asdfasfas', 0, '', 0, '', 0, '2011-12-26 20:01:59', '127.0.0.1'),
(616, 137, 66, 1, 'asdfasfas', 0, '', 0, '', 0, '2011-12-26 20:02:02', '127.0.0.1'),
(617, 137, 66, 1, 'asdfasfas', 0, '', 0, '', 0, '2011-12-26 20:02:05', '127.0.0.1'),
(618, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:10:44', '127.0.0.1'),
(619, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:10:48', '127.0.0.1'),
(620, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:10:52', '127.0.0.1'),
(621, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:10:56', '127.0.0.1'),
(622, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:04', '127.0.0.1'),
(623, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:07', '127.0.0.1'),
(624, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:11', '127.0.0.1'),
(625, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:14', '127.0.0.1'),
(626, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:17', '127.0.0.1'),
(627, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:24', '127.0.0.1'),
(628, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:33', '127.0.0.1'),
(629, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:35', '127.0.0.1'),
(630, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:39', '127.0.0.1'),
(631, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:44', '127.0.0.1'),
(632, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:47', '127.0.0.1'),
(633, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:50', '127.0.0.1'),
(634, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:53', '127.0.0.1'),
(635, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:11:57', '127.0.0.1'),
(636, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:12:01', '127.0.0.1'),
(637, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:12:04', '127.0.0.1'),
(638, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:12:23', '127.0.0.1'),
(639, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:12:26', '127.0.0.1'),
(640, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:12:30', '127.0.0.1'),
(641, 137, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:12:33', '127.0.0.1'),
(642, 136, 66, 1, 'asdfasdasdf', 0, '', 0, '', 0, '2011-12-26 20:13:51', '127.0.0.1'),
(643, 135, 66, 1, '"something really witty here"', 0, '', 0, '', 0, '2011-12-26 20:26:02', '127.0.0.1'),
(644, 137, 66, 1, 'asdfasfs', 0, '', 0, '', 0, '2011-12-26 21:30:44', '127.0.0.1'),
(645, 137, 66, 1, 'aaaaaa', 0, '', 0, '', 0, '2011-12-26 21:31:01', '127.0.0.1'),
(646, 137, 66, 1, 'aaaa', 0, '', 0, '', 0, '2011-12-26 21:31:06', '127.0.0.1'),
(647, 137, 66, 1, 'asdasfasdf', 0, '', 0, '', 0, '2011-12-26 21:31:40', '127.0.0.1'),
(648, 137, 66, 1, 'asdasfadfasd', 0, '', 0, '', 0, '2011-12-26 21:31:44', '127.0.0.1'),
(650, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:23:43', '127.0.0.1'),
(651, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:23:46', '127.0.0.1'),
(652, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:23:48', '127.0.0.1'),
(653, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:23:50', '127.0.0.1'),
(654, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:23:54', '127.0.0.1'),
(655, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:23:57', '127.0.0.1'),
(656, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:00', '127.0.0.1'),
(657, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:03', '127.0.0.1'),
(658, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:07', '127.0.0.1'),
(659, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:10', '127.0.0.1'),
(660, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:13', '127.0.0.1'),
(661, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:16', '127.0.0.1'),
(662, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:19', '127.0.0.1'),
(663, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:23', '127.0.0.1'),
(664, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:25', '127.0.0.1'),
(665, 137, 67, 1, 'adkjfaskjf', 0, '', 0, '', 0, '2011-12-27 15:24:27', '127.0.0.1'),
(666, 137, 67, 1, 'aksdfjalj', 0, '', 0, '', 0, '2011-12-27 15:24:46', '127.0.0.1'),
(667, 137, 67, 1, 'askfdjasdljfskaf', 0, '', 0, '', 0, '2011-12-27 15:24:50', '127.0.0.1'),
(668, 137, 67, 1, 'asdkfjasldfjsd', 0, '', 0, '', 0, '2011-12-27 15:26:06', '127.0.0.1');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__config`
--
CREATE TABLE IF NOT EXISTS `memeje__config` (
`id_config` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT '',
`ckey` varchar(100) CHARACTER SET latin1 NOT NULL DEFAULT '',
`value` varchar(255) CHARACTER SET latin1 NOT NULL DEFAULT '',
`f_type` varchar(20) CHARACTER SET latin1 NOT NULL DEFAULT '',
`f_key` text CHARACTER SET latin1,
`f_value` text CHARACTER SET latin1,
`is_editable` tinyint(4) NOT NULL DEFAULT '1',
`comment` text CHARACTER SET latin1,
`id_seq` int(11) DEFAULT '0',
PRIMARY KEY (`id_config`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=241 ;
--
-- Dumping data for table `memeje__config`
--
INSERT INTO `memeje__config` (`id_config`, `name`, `ckey`, `value`, `f_type`, `f_key`, `f_value`, `is_editable`, `comment`, `id_seq`) VALUES
(62, 'GENDER', 'M', 'Male', 'text', '', '', 0, '', 0),
(63, 'GENDER', 'F', 'Female', 'text', '', '', 0, '', 0),
(71, 'IMAGE', 'image_orig', 'image/orig/', 'text', '', '', 0, '', 0),
(72, 'IMAGE', 'image_thumb', 'image/thumb/', 'text', '', '', 0, '', 0),
(73, 'IMAGE', 'image_prev', 'image/prev/', 'text', '', '', 0, '', 0),
(74, 'IMAGE', 'preview_orig', 'preview/orig/', 'text', '', '', 0, '', 0),
(75, 'IMAGE', 'preview_thumb', 'preview/thumb/', 'text', '', '', 0, '', 0),
(84, 'LANGUAGE', 'English', 'en', 'text', '', '', 0, '', 0),
(90, 'IMAGE', 'thumb_width', '100', 'text', '', '', 0, '', 2),
(91, 'IMAGE', 'thumb_height', '100', 'text', '', '', 0, '', 1),
(92, 'ADMIN_THEME', 'css', 'blue', 'dropdown', 'red,blue,black,brown,purple,green,orange', 'red,blue,black,brown,purple,green,orange', 0, 'Please choose red,blue,black,brown,purple,green,orange.', 1),
(93, 'AUDIT', 'status', '1', 'radio', '1,0', 'Enabled,Disabled', 0, '', 1),
(101, 'SITE_ADMIN', 'email', 'afixi.upendra@gmail.com', 'text', '', '', 1, '', 1),
(102, 'SITE_ADMIN', 'admin_email', 'admin_email', 'text', '', '', 0, '', 2),
(104, 'CONTENT_IMAGES', 'image_width', '800', 'text', '', '', 0, '', 2),
(105, 'CONTENT_IMAGES', 'image_height', '450', 'text', '', '', 0, '', 1),
(106, 'CONTENT_IMAGES', 'content_orig', '/var/www/html/waf_res/logo/images/', 'text', '', '', 0, '', 1),
(107, 'CONTENT_IMAGES', 'orig_url', 'waf_res/waf_content/orig/', 'text', '', '', 0, '', 2),
(108, 'CONTENT_IMAGES', 'image_display', '/waf_content/images/', 'text', '', '', 0, '', 4),
(109, 'CONTENT_IMAGES', 'company_logo', '/var/www/html/waf_res/logo/thumb/', 'text', '', '', 0, '', 3),
(110, 'PAGINATE', 'rec_per_page', '10', 'text', '', '', 1, '', 2),
(111, 'PAGINATE', 'show_page', '5', 'text', '', '', 1, '', 1),
(114, 'PAGINATE_ADMIN', 'rec_per_page', '20', '', '', '', 1, '', 2),
(115, 'PAGINATE_ADMIN', 'show_page', '5', '', '', '', 1, '', 1),
(116, 'USER_TYPE', '1', 'Admin', 'text', '', '', 0, '', 0),
(117, 'USER_TYPE', '2', 'Director', 'text', '', '', 0, '', 0),
(118, 'USER_TYPE', '3', 'Account Specifier', 'text', '', '', 0, '', 0),
(119, 'USER_TYPE', '4', 'Account', 'text', '', '', 0, '', 0),
(120, 'USER_TYPE', '99', 'Developer', 'text', '', '', 0, '', 0),
(125, 'MULTI_LANG', 'islang', '1', 'text', '', '', 0, 'Set 0 to disable and 1 to enable\n', 0),
(136, 'PAYPAL', 'business', 'afixi._1312949792_biz@gmail.com', 'text', '', '', 0, 'Set your paypal business account.', 2),
(137, 'PAYPAL', 'paypal_mode', 'sandbox', 'radio', 'sandbox,live', 'Sandbox,Live', 0, 'You can set your paypal mode.', 1),
(138, 'IMAGE_HANDLER', 'library', 'gd', 'text', NULL, NULL, 1, 'im: for image magick\ngd : to use GD library', 1),
(140, 'FORGOT_PASSWORD', 'password_type', '0', 'radio', '1,0', 'encripted,normal', 0, 'Choose encrypted to store your password in encryption format otherwise normal.', 1),
(144, 'AA', 'text test', 'testvalue', 'text', '', '', 0, 'testvalue', 2),
(146, 'AA', 'radio test', '0', 'radio', '0,1', 'a,b', 0, 'radio1', 4),
(147, 'AA', 'check test', '1,2', 'checkbox', '0,1,2', 'cricket,football,chess', 0, 'hobbies', 5),
(148, 'AA', 'drop down', '2', 'dropdown', '1,2,3,4', 'programmer,tester,designer,ui expert', 0, 'drop down', 6),
(167, 'PAYPALPRO', 'API_USERNAME', 'afixi._1312949792_biz_api1.gmail.com', 'text', NULL, NULL, 1, 'API user: The user that is identified as making the call. you can also use your own API username that you created on PayPal’s sandbox or the PayPal live site.', 9),
(168, 'PAYPALPRO', 'API_PASSWORD', '1312949831', 'text', NULL, NULL, 1, 'API_password: The password associated with the API user.If you are using your own API username, enter the API password that was generated by PayPal below.', 10),
(169, 'PAYPALPRO', 'API_SIGNATURE', 'A-3Q72jBWlHzhKLpPce-5g.i25pgAN0ZF.RKm0Fh4Z5x.gqzIwkPKWlt', 'text', NULL, NULL, 1, 'API_Signature:The Signature associated with the API user. which is generated by paypal.', 11),
(171, 'PAYPALPRO', 'USE_PROXY', 'FALSE,USE_PROXY: Set this variable to TRUE to route all the API requests through proxy.', 'text', NULL, NULL, 1, 'USE_PROXY: Set this variable to TRUE to route all the API requests through proxy.', 12),
(172, 'PAYPALPRO', 'PROXY_HOST', '127.0.0.1,PROXY_HOST: Set the host name or the IP address of proxy server.', 'text', NULL, NULL, 1, 'PROXY_HOST: Set the host name or the IP address of proxy server.', 13),
(173, 'PAYPALPRO', 'PROXY_PORT', '808,PROXY_PORT: Set proxy port.NOTE : PROXY_HOST and PROXY_PORT will be read only if USE_PROXY is set to TRUE.', 'text', NULL, NULL, 1, 'PROXY_PORT: Set proxy port.NOTE : PROXY_HOST and PROXY_PORT will be read only if USE_PROXY is set to TRUE.', 14),
(175, 'PAYPALPRO', 'VERSION', '58.0,Version: this is the API version in the request.It is a mandatory parameter for each API request.', 'text', NULL, NULL, 1, 'Version: this is the API version in the request.It is a mandatory parameter for each API request.', 15),
(176, 'PAYPALPRO', 'paypal_mode', '', 'radio', 'sandbox,live', 'Sandbox,Live', 1, 'Setting of paypal mode fro transaction.For testing select Sandbox and for production set it to Live.', 1),
(177, 'PAYPALPRO', 'currency_code', 'USD', 'dropdown', 'USD,AUD', 'USD,AUD', 1, 'Currency code for Paypal.', 2),
(178, 'PAYPALPRO', 'paymentaction', 'Sale,This is to be set for instant payment through credit card.(Other values are Authorization and Order)', 'text', NULL, NULL, 1, 'This is to be set for instant payment through credit card.(Other values are Authorization and Order)', 3),
(179, 'PAYPALPRO', 'maxfailedpayments', '1,The number of scheduled payments that can fail before the profile is automatically suspended.', 'text', NULL, NULL, 1, 'The number of scheduled payments that can fail before the profile is automatically suspended.', 6),
(180, 'PAYPALPRO', 'billingfrequency', '1,Number of billing periods that make up one billing cycle.', 'text', NULL, NULL, 1, 'Number of billing periods that make up one billing cycle.', 4),
(181, 'PAYPALPRO', 'totalbillingcycle', '6,The number of billing cycles for payment period.', 'text', NULL, NULL, 1, 'The number of billing cycles for payment period.', 5),
(182, 'PAYPALPRO', 'initamt', '0,Initial non-recurring payment amount due immediately upon profile creation.', 'text', NULL, NULL, 1, 'Initial non-recurring payment amount due immediately upon profile creation.', 8),
(183, 'PAYPALPRO', 'description', 'Your recurring payment description,Description about transaction.', 'text', NULL, NULL, 1, 'Description about transaction.', 7),
(184, 'CATEGORY', '1', 'Funny', 'text', NULL, NULL, 1, '', 0),
(185, 'CATEGORY', '2', 'Love', 'text', NULL, NULL, 1, NULL, 0),
(186, 'CATEGORY', '3', 'Trees', 'text', NULL, NULL, 1, NULL, 0),
(187, 'CATEGORY', '4', 'Everyday', 'text', NULL, NULL, 1, NULL, 0),
(188, 'IMAGE', 'premade_image', 'image/orig/premade_images/', 'text', NULL, NULL, 0, '', 0),
(189, 'IMAGE', 'avtar_orig', 'image/orig/avatar/', 'text', NULL, NULL, 0, '', 0),
(190, 'IMAGE', 'avtar_thumb', 'image/thumb/avatar/', 'text', NULL, NULL, 0, '', 0),
(191, 'LIVEFEED_COLOR', 'reply', '#FFFF00', 'text', NULL, NULL, 1, 'Live feed color when replied.', 0),
(192, 'LIVEFEED_COLOR', 'agree', '#33CC00', 'text', NULL, NULL, 1, 'Live feed color when honoured', 0),
(193, 'LIVEFEED_COLOR', 'disagree', '#FF0000', 'text', NULL, NULL, 1, 'Live feed color when dishonored ', 0),
(194, 'IMAGE', 'ques_orig', 'image/orig/question/', 'text', NULL, NULL, 0, '', 0),
(195, 'IMAGE', 'ques_thumb', 'image/thumb/question/', 'text', NULL, NULL, 0, '', 0),
(198, 'IMAGE', 'badge_orig', 'image/orig/badge/', 'text', NULL, NULL, 0, '', 0),
(199, 'IMAGE', 'badge_thumb', 'image/thumb/badge/', 'text', NULL, NULL, 0, '', 0),
(200, 'LIVEFEED_COLOR', 'add_caption', '#8E35EF', 'text', NULL, NULL, 1, 'Live feed color when once caption added to the meme.', 0),
(201, 'GLORY_CATEGORY', '1', 'Common', 'text', '', '', 0, '', 0),
(202, 'GLORY_CATEGORY', '2', 'Medium', 'text', '', '', 0, '', 0),
(203, 'GLORY_CATEGORY', '3', 'Rare', 'text', '', '', 0, '', 0),
(204, 'IMAGE', 'gloryicon_orig', 'image/orig/glory_icon/', 'text', '', '', 0, '', 0),
(205, 'IMAGE', 'gloryicon_thumb', 'image/thumb/glory_icon/', 'text', '', '', 0, '', 0),
(206, 'IMAGE', 'glorybadge_orig', 'image/orig/glory_badge/', 'text', '', '', 0, '', 0),
(207, 'IMAGE', 'glorybadge_thumb', 'image/thumb/glory_badge/', 'text', '', '', 0, '', 0),
(208, 'BADGE_TYPE', 'reply', 'Replies', 'text', NULL, NULL, 1, '', 1),
(209, 'BADGE_TYPE', 'exp_point', 'Experience point', 'text', NULL, NULL, 1, '', 2),
(210, 'BADGE_TYPE', 'ques_week_won', 'Question of the week won', 'text', NULL, NULL, 1, '', 3),
(211, 'BADGE_TYPE', 'duels_won', 'Duels won', 'text', NULL, NULL, 1, '', 4),
(212, 'BADGE_TYPE', 'id_meme', 'NO of meme post', 'text', NULL, NULL, 1, NULL, 5),
(213, 'SEARCH_TYPE', '1', 'Search', 'text', NULL, NULL, 0, '', 0),
(214, 'SEARCH_TYPE', '2', 'Meme post', 'text', NULL, NULL, 0, '', 0),
(215, 'ALLOT_POINTS', 'meme_insert', 'Meme post', 'text', NULL, NULL, 0, 'Add points when a meme post', 0),
(216, 'ALLOT_POINTS', 'answer_to_meme', 'Reply', 'text', NULL, NULL, 0, '', 0),
(217, 'ALLOT_POINTS', 'insert_caption', 'Add caption', 'text', NULL, NULL, 0, '', 0),
(218, 'FACEBOOK', 'api_key', '213764722000439', 'text', NULL, NULL, 1, '', 0),
(219, 'FACEBOOK', 'secret_key', '59fab34c926f3ac596bac25c568e1b55', 'text', NULL, NULL, 1, '', 0),
(220, 'FACEBOOK', 'app_id', '213764722000439', 'text', NULL, NULL, 1, 'Application Id', 0),
(221, 'IMAGE', 'meme_orig', 'image/orig/meme/', 'text', NULL, NULL, 0, '', 0),
(222, 'IMAGE', 'premade_image_thumb', 'image/thumb/premade_images/', 'text', NULL, NULL, 0, 'Premade image thumb path', 0),
(223, 'FLAGGING_ACTION', '1', 'Approve', 'text', NULL, NULL, 0, '', 0),
(224, 'FLAGGING_ACTION', '2', 'Disapprove', 'text', NULL, NULL, 1, NULL, 0),
(225, 'FLAGGING_ACTION', '3', 'Ignore', 'text', NULL, NULL, 1, NULL, 0),
(227, 'TWITTER', 'Consumer_secret', 'fZFP6bvDECRqAAT1wrgRsVMEqyQJqYmD3Edez1jzotA', 'text', NULL, NULL, 1, NULL, 0),
(228, 'TWITTER', 'Consumer_key', '0agkdh484xwmMvLLprLvTQ', 'text', NULL, NULL, 1, NULL, 0),
(229, 'PREMADE_CATEGORY', '1', 'Part', 'text', NULL, NULL, 1, '', 0),
(230, 'PREMADE_CATEGORY', '2', 'Happy', 'text', NULL, NULL, 1, '', 0),
(231, 'PREMADE_CATEGORY', '3', 'Laugh', 'text', NULL, NULL, 1, '', 0),
(232, 'PREMADE_CATEGORY', '4', 'Sexytime', 'text', NULL, NULL, 1, '', 0),
(233, 'PREMADE_CATEGORY', '5', 'Determined', 'text', NULL, NULL, 1, '', 0),
(234, 'NOTIFY_TYPE', '1', 'accepted your friend request.', 'text', NULL, NULL, 1, 'when a user accept your friend request.', 0),
(235, 'NOTIFY_TYPE', '2', 'invited you to duel.', 'text', NULL, NULL, 1, 'when a user get a duel invitation', 0),
(236, 'NOTIFY_TYPE', '3', 'accepted your duel invitation.', 'text', NULL, NULL, 1, 'when a user accepted your duel invitation.', 0),
(237, 'NOTIFY_TYPE', '4', 'got an achievement.', 'text', NULL, NULL, 1, 'when a user get a new badge.', 0),
(238, 'NOTIFY_TYPE', '5', 'has sent you a friend request.', 'text', NULL, NULL, 1, 'when a user get a friend request', 0),
(239, 'NOTIFY_TYPE', '6', 'tagged you on a meme.', 'text', '', '', 1, 'Notification message for tagging.', 0),
(240, 'ALLOT_POINTS', 'honour', 'Honour', 'text', NULL, NULL, 0, 'For honoring a meme.', 0);
-- --------------------------------------------------------
--
-- Table structure for table `memeje__content`
--
CREATE TABLE IF NOT EXISTS `memeje__content` (
`id_content` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`cmscode` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`meta_description` text COLLATE utf8_unicode_ci,
`meta_keywords` text COLLATE utf8_unicode_ci,
`title` text COLLATE utf8_unicode_ci,
`description` text COLLATE utf8_unicode_ci,
`language` varchar(50) CHARACTER SET latin1 DEFAULT NULL,
`ip` varchar(20) CHARACTER SET latin1 NOT NULL DEFAULT '',
`ctime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_update_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id_content`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `memeje__content`
--
INSERT INTO `memeje__content` (`id_content`, `name`, `cmscode`, `meta_description`, `meta_keywords`, `title`, `description`, `language`, `ip`, `ctime`, `last_update_time`) VALUES
(1, 'aboutus', 'aboutus', '', '', '', '<p style="text-align: justify;"><span style="font-size: larger;">Afixi is a software development company specializing in Web Applications, Mailing and Server software solutions and security. Afixi is a sister concern of Neuron Consultants Pvt. Ltd., a 13 year old IT development company. Founded in April, 2002 at Bangalore, India, Afixi caters to clients around the world. In the few months of its existence, Afixi has carved a niche for itself amongst its clients. Currently, it has clients in the US, UK, Switzerland, Japan and many other countries. Afixi is appreciated by its clients for its quality service, quick turnaround times, and easy communication with fast responses, honest business practices and reasonable pricing. It provides direct access to its clients to its timesheets and project management system, thereby letting them monitor the progress and actively participating in their projects.</span></p><p style="text-align: justify;"><span style="font-size: larger;">Members of the Afixi Technologies have been conceptualising and executing customized software and web based solutions to their clients from many years, successfully deploying national and international projects.</span></p><p style="text-align: justify;"><span style="font-size: larger;">We can design and deliver simple or thorough solutions to meet a business need. We will endeavour to build websites that : <img width="6" height="6" alt="" src="http://www.afixi.com/images/bullet1.gif" /> match your vision and capture the passion you have for your business and serving your customers.<br /> <br /> <img width="6" height="6" alt="" src="http://www.afixi.com/images/bullet1.gif" /> maximize the money-making potential of every business.<br /> <br /> We ensure that we really understand your business, what makes it so unique and what you want to achieve. We match that with our knowledge of the Internet, specifically in terms of what works and what doesn''t. This is combined with a spark of inspiration and innovation where first-class designers and programmers build the whole thing.</span></p>', 'en', '117.201.162.225', '2011-07-29 05:01:44', '2011-08-26 04:41:41'),
(3, 'How to get achievement', 'howtogetachievement', '', '', 'How to get achievement', '<p style="text-align: justify;"><span style="font-size: larger;">Avatar game set to come out for the Xbox 360 next week is going to set records ... in rental sales. Whoever set the Achievements for this game was either extremely lazy, or just didn''t give a damn. You see, within the first two minutes of playing this game, you can earn all 1000 Achievement points by just pressing one button over and over.</span></p>', 'en', '117.201.162.225', '2011-08-26 04:38:47', '0000-00-00 00:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__donate`
--
CREATE TABLE IF NOT EXISTS `memeje__donate` (
`id_donate` int(11) NOT NULL AUTO_INCREMENT,
`amount` float DEFAULT '0',
`donated_by` int(11) DEFAULT '0',
`name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`payer_email` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`payment_status` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`txn_id` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`donated_on` datetime DEFAULT NULL,
`add_date` datetime NOT NULL,
PRIMARY KEY (`id_donate`),
KEY `amount` (`amount`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `memeje__donate`
--
INSERT INTO `memeje__donate` (`id_donate`, `amount`, `donated_by`, `name`, `payer_email`, `payment_status`, `txn_id`, `donated_on`, `add_date`) VALUES
(1, 2.55, 2, 'Test User', 'afixi._1312949689_per@gmail.com', 'Pending', '9PY650050W782625D', '2011-08-12 07:02:02', '2011-08-12 07:03:27'),
(2, 2.56, 2, 'Test User', 'afixi._1312949689_per@gmail.com', 'Pending', '21S84322PD4838543', '2011-08-12 06:15:00', '2011-08-12 07:18:01'),
(3, 2.57, 2, 'Test User', 'afixi._1312949689_per@gmail.com', 'Pending', '9R392227LW9290130', '2011-08-12 07:25:44', '2011-08-12 07:27:12'),
(4, 2.58, 2, 'Test User', 'afixi._1291880012_per@gmail.com', 'Pending', '0NR82092K7933860M', '2011-08-12 07:33:04', '2011-08-12 07:34:08'),
(5, 2.59, 2, 'Test User', 'afixi._1291880012_per@gmail.com', 'Completed', '48T51951WC989241F', '2011-08-12 07:31:35', '2011-08-12 07:36:53'),
(6, 6.22, 0, 'Test User', 'afixi._1312949689_per@gmail.com', 'Completed', '3X051550NN013950S', '2011-08-15 20:47:19', '2011-08-15 20:55:48'),
(7, 2.1, 2, 'Test User', 'afixi._1312949689_per@gmail.com', 'Completed', '7YY47017VC6989947', '2011-08-16 06:07:47', '2011-08-16 06:09:54'),
(8, 5, 34, 'Test User', 'afixi._1311243379_per@gmail.com', 'Pending', '3YW91524UT169705J', '2011-08-18 06:21:12', '2011-08-18 06:24:29'),
(9, 2.22, 24, 'Test User', 'afixi._1312949689_per@gmail.com', 'Pending', '5A315046J8926805H', '2011-08-18 21:11:38', '2011-08-18 21:14:57'),
(10, 5.66, 4, 'Test User', 'afixi._1312949689_per@gmail.com', 'Pending', '0FK18041BF835544S', '2011-08-19 00:27:42', '2011-08-19 00:28:58');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__duel`
--
CREATE TABLE IF NOT EXISTS `memeje__duel` (
`id_duel` int(11) NOT NULL AUTO_INCREMENT,
`duelled_by` int(11) NOT NULL COMMENT 'id_user who challenged.',
`duelled_to` int(11) NOT NULL COMMENT 'id_user to whom challenged.',
`own_meme` int(11) DEFAULT NULL COMMENT 'id_meme posted by the user who challenged.',
`duelled_meme` int(11) DEFAULT NULL COMMENT 'id_meme posted by the user who accepted the challenge.',
`is_accepted` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 if accepted.',
`is_ignored` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 if ignored.',
`is_cancelled` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 if cancelled',
`is_read` tinyint(1) NOT NULL DEFAULT '0',
`add_date` datetime NOT NULL,
`duelled_date` datetime DEFAULT NULL,
`own_ip` varchar(20) COLLATE utf8_unicode_ci NOT NULL COMMENT 'ip of user who challenged from.',
`duelled_ip` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'ip of user who accepted or posted a meme from.',
PRIMARY KEY (`id_duel`),
KEY `is_read` (`is_read`),
KEY `is_cancelled` (`is_cancelled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Contains the info. about all duels.' AUTO_INCREMENT=6 ;
--
-- Dumping data for table `memeje__duel`
--
INSERT INTO `memeje__duel` (`id_duel`, `duelled_by`, `duelled_to`, `own_meme`, `duelled_meme`, `is_accepted`, `is_ignored`, `is_cancelled`, `is_read`, `add_date`, `duelled_date`, `own_ip`, `duelled_ip`) VALUES
(5, 36, 35, 10, 9, 1, 0, 0, 0, '2011-09-02 00:25:27', NULL, '204.28.119.192', '204.28.119.192');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__duel_meme`
--
CREATE TABLE IF NOT EXISTS `memeje__duel_meme` (
`id_duel_meme` int(11) NOT NULL AUTO_INCREMENT,
`id_user` int(11) NOT NULL,
`id_question` int(11) NOT NULL DEFAULT '0',
`title` varchar(300) COLLATE utf8_unicode_ci NOT NULL,
`image` varchar(300) COLLATE utf8_unicode_ci NOT NULL,
`category` int(11) NOT NULL,
`can_all_comment` tinyint(4) NOT NULL,
`can_all_view` tinyint(4) NOT NULL,
`tagged_user` text COLLATE utf8_unicode_ci,
`is_transfered_to_meme` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 if transfered to meme table.',
`add_date` datetime NOT NULL,
`ip` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_duel_meme`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=11 ;
--
-- Dumping data for table `memeje__duel_meme`
--
INSERT INTO `memeje__duel_meme` (`id_duel_meme`, `id_user`, `id_question`, `title`, `image`, `category`, `can_all_comment`, `can_all_view`, `tagged_user`, `is_transfered_to_meme`, `add_date`, `ip`) VALUES
(9, 35, 0, 'Haha duplicates', '9_23_55_SoMuchWin.png', 1, 1, 1, '36', 1, '0000-00-00 00:00:00', '204.28.119.192'),
(10, 36, 0, 'not good', '10_9_41_SonMeGusta.png', 1, 1, 1, '35', 1, '0000-00-00 00:00:00', '204.28.119.192');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__feature`
--
CREATE TABLE IF NOT EXISTS `memeje__feature` (
`id_feature` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(50) COLLATE utf8_unicode_ci DEFAULT '',
`description` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`no_of_suggestion` int(11) NOT NULL DEFAULT '0',
`activation` int(5) NOT NULL,
`add_date` datetime DEFAULT NULL,
`ip` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id_feature`),
KEY `no_of_suggestion` (`no_of_suggestion`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=5 ;
--
-- Dumping data for table `memeje__feature`
--
INSERT INTO `memeje__feature` (`id_feature`, `title`, `description`, `no_of_suggestion`, `activation`, `add_date`, `ip`) VALUES
(1, 'Better Editor Than MS Paint', 'You can edit ur meme with better features or better editors and make ur meme much more what u need.', 3, 1, '2011-08-17 05:57:26', '117.197.253.132'),
(2, 'Share or not share', 'Share your memes directly from your account to facebook.', 5, 1, '2011-08-17 05:57:56', '117.197.253.132'),
(3, 'Points to be noted', 'Here we are providing opportunity to get some of points ,which makes u help a lot increasing ur ran', 3, 1, '2011-08-17 05:58:38', '117.197.254.18'),
(4, 'Testing Memeje', '"This for testing memeje editor". Hello testing', 2, 1, '2011-08-18 21:58:06', '117.197.232.204');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__flag`
--
CREATE TABLE IF NOT EXISTS `memeje__flag` (
`id_flag` int(11) NOT NULL AUTO_INCREMENT,
`id_meme` int(11) NOT NULL,
`id_user` int(11) NOT NULL,
`flag_action` int(11) DEFAULT NULL COMMENT 'Action taken by Admin. i.e 1 if Approved,2 if Disapproved and 3 if Igoned.',
`add_date` datetime NOT NULL,
`ip` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_flag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=14 ;
--
-- Dumping data for table `memeje__flag`
--
INSERT INTO `memeje__flag` (`id_flag`, `id_meme`, `id_user`, `flag_action`, `add_date`, `ip`) VALUES
(1, 26, 35, NULL, '2011-08-20 18:22:58', '108.205.200.122'),
(2, 42, 4, NULL, '2011-08-23 00:41:03', '117.197.253.54'),
(3, 38, 4, NULL, '2011-08-23 00:47:44', '117.197.253.54'),
(4, 40, 34, NULL, '2011-08-23 00:57:50', '117.197.253.54'),
(5, 38, 2, NULL, '2011-08-23 04:02:05', '117.197.253.54'),
(6, 35, 2, NULL, '2011-08-23 04:14:13', '117.197.253.54'),
(7, 34, 2, NULL, '2011-08-23 04:17:13', '117.197.253.54'),
(8, 29, 2, NULL, '2011-08-23 04:19:57', '117.197.253.54'),
(9, 15, 2, NULL, '2011-08-23 04:23:13', '117.197.253.54'),
(10, 5, 2, NULL, '2011-08-23 04:31:38', '117.197.253.54'),
(11, 20, 3, NULL, '2011-08-24 18:27:42', '67.160.197.181'),
(12, 97, 37, NULL, '2011-09-03 01:25:39', '117.201.148.167'),
(13, 130, 2, NULL, '2011-12-24 23:16:38', '127.0.0.1');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__frnd_request`
--
CREATE TABLE IF NOT EXISTS `memeje__frnd_request` (
`id_frnd_request` int(11) NOT NULL AUTO_INCREMENT,
`requested_by` int(11) NOT NULL,
`requested_to` int(11) NOT NULL,
`req_status` tinyint(2) NOT NULL COMMENT '1 for accepted 2 for rejected',
`is_read` tinyint(1) NOT NULL DEFAULT '0',
`add_date` datetime NOT NULL,
`ip` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_frnd_request`),
KEY `requested_by` (`requested_by`,`requested_to`),
KEY `req_status` (`req_status`),
KEY `is_read` (`is_read`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=46 ;
--
-- Dumping data for table `memeje__frnd_request`
--
INSERT INTO `memeje__frnd_request` (`id_frnd_request`, `requested_by`, `requested_to`, `req_status`, `is_read`, `add_date`, `ip`) VALUES
(1, 2, 23, 0, 0, '2011-08-22 22:58:12', '117.197.243.122'),
(2, 2, 32, 0, 0, '2011-08-22 22:58:12', '117.197.243.122'),
(3, 2, 33, 0, 0, '2011-08-22 22:58:12', '117.197.243.122'),
(6, 3, 34, 1, 0, '2011-08-22 23:01:15', '117.197.243.122'),
(7, 34, 3, 2, 0, '2011-08-22 23:03:39', '117.197.243.122'),
(8, 3, 34, 1, 0, '2011-08-22 23:04:25', '117.197.243.122'),
(9, 3, 10, 1, 0, '2011-08-22 23:37:20', '117.197.253.54'),
(10, 10, 3, 2, 0, '2011-08-22 23:37:57', '117.197.253.54'),
(11, 34, 3, 2, 0, '2011-08-22 23:40:50', '117.197.253.54'),
(12, 10, 3, 2, 0, '2011-08-22 23:41:01', '117.197.253.54'),
(13, 10, 34, 2, 0, '2011-08-22 23:43:20', '117.197.253.54'),
(14, 3, 34, 1, 0, '2011-08-22 23:43:38', '117.197.253.54'),
(15, 34, 10, 1, 0, '2011-08-22 23:49:00', '117.197.253.54'),
(16, 10, 34, 2, 0, '2011-08-22 23:50:01', '117.197.253.54'),
(17, 34, 10, 1, 0, '2011-08-22 23:50:36', '117.197.253.54'),
(18, 1, 2, 1, 0, '2011-08-23 18:21:39', '75.36.207.218'),
(19, 4, 2, 1, 0, '2011-08-23 21:31:39', '117.201.160.173'),
(20, 4, 3, 1, 0, '2011-08-23 21:31:40', '117.201.160.173'),
(21, 4, 5, 1, 0, '2011-08-23 21:31:40', '117.201.160.173'),
(23, 4, 8, 0, 0, '2011-08-23 21:31:41', '117.201.160.173'),
(24, 3, 10, 1, 0, '2011-08-23 23:21:07', '117.201.160.173'),
(25, 2, 35, 1, 0, '2011-08-24 18:53:15', '204.28.119.130'),
(26, 3, 36, 0, 0, '2011-08-25 14:51:33', '67.160.197.181'),
(27, 3, 10, 1, 0, '2011-08-25 21:49:30', '117.197.233.105'),
(28, 35, 3, 1, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(29, 35, 4, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(30, 35, 5, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(31, 35, 6, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(32, 35, 8, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(33, 35, 9, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(34, 35, 10, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(35, 35, 13, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(36, 35, 15, 0, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(37, 35, 36, 1, 0, '2011-08-27 15:05:29', '204.28.119.168'),
(38, 32, 34, 1, 0, '2011-09-03 02:54:46', '117.201.148.167'),
(39, 51, 2, 1, 0, '2011-12-21 19:43:27', '127.0.0.1'),
(42, 59, 2, 1, 0, '2011-12-22 23:34:43', '127.0.0.1'),
(43, 2, 62, 0, 0, '2011-12-23 20:00:29', '127.0.0.1'),
(44, 78, 2, 0, 0, '2012-02-29 13:55:40', '::1'),
(45, 78, 6, 0, 0, '2012-03-17 03:11:17', '::1');
-- --------------------------------------------------------
--
-- Table structure for table `memeje__leaderboard`
--
CREATE TABLE IF NOT EXISTS `memeje__leaderboard` (
`id_leaderboard` int(11) NOT NULL AUTO_INCREMENT,
`id_user` int(11) NOT NULL,
`exp_points` int(11) DEFAULT NULL,
`duels_won` int(11) DEFAULT NULL,
`badges` int(11) DEFAULT NULL,
`ques_week_won` int(11) DEFAULT NULL,
PRIMARY KEY (`id_leaderboard`),
KEY `id_leaderboard` (`id_leaderboard`,`id_user`,`exp_points`,`duels_won`,`badges`,`ques_week_won`),
KEY `id_user` (`id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `memeje__level`
--
CREATE TABLE IF NOT EXISTS `memeje__level` (
`level` int(11) NOT NULL AUTO_INCREMENT,
`xp_to_level` int(11) NOT NULL,
PRIMARY KEY (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
--
-- Dumping data for table `memeje__level`
--
INSERT INTO `memeje__level` (`level`, `xp_to_level`) VALUES
(1, 30),
(2, 80),
(3, 140),
(4, 212),
(5, 299),
(6, 406),
(7, 541),
(8, 715),
(9, 943),
(10, 1243),
(11, 1633),
(12, 2132),
(13, 2713),
(14, 3248),
(15, 3783);
-- --------------------------------------------------------
--
-- Table structure for table `memeje__login`
--
CREATE TABLE IF NOT EXISTS `memeje__login` (
`id_login` int(10) NOT NULL AUTO_INCREMENT,
`id_user` int(10) NOT NULL DEFAULT '0',
`ip` varchar(20) NOT NULL DEFAULT '',
`date_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`email` varchar(150) NOT NULL DEFAULT '',
`failure_attempt` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_login`),
KEY `id_user` (`id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1223 ;
--
-- Dumping data for table `memeje__login`
--
INSERT INTO `memeje__login` (`id_login`, `id_user`, `ip`, `date_login`, `email`, `failure_attempt`) VALUES
(1, 1, '117.201.162.188', '2011-07-16 07:12:47', 'sabri@mail.afixiindia.com', 0),
(2, 1, '117.201.162.188', '2011-07-16 07:19:37', 'sabri@mail.afixiindia.com', 0),
(3, 1, '117.201.162.188', '2011-07-16 07:20:13', 'sabri@mail.afixiindia.com', 0),
(4, 5, '117.201.162.188', '2011-07-16 07:24:29', 'biswa@mail.afixiindia.com', 0),
(6, 1, '117.201.162.188', '2011-07-16 07:26:31', 'sabri@mail.afixiindia.com', 0),
(7, 5, '117.201.162.188', '2011-07-16 07:26:48', 'biswa@mail.afixiindia.com', 0),
(8, 1, '117.201.162.188', '2011-07-16 07:30:47', 'sabri@mail.afixiindia.com', 0),
(9, 4, '117.201.162.188', '2011-07-16 07:39:19', 'upendra@mail.afixiindia.com', 0),
(10, 1, '117.201.162.188', '2011-07-16 07:48:23', 'sabri@mail.afixiindia.com', 0),
(11, 1, '117.201.162.188', '2011-07-16 07:51:13', 'sabri@mail.afixiindia.com', 0),
(12, 1, '75.36.200.220', '2011-07-17 00:59:45', 'sabri@mail.afixiindia.com', 0),
(13, 2, '117.197.246.64', '2011-07-17 22:52:34', 'jagannath@mail.afixiindia.com', 0),
(14, 2, '117.197.246.64', '2011-07-17 22:53:40', 'jagannath@mail.afixiindia.com', 0),
(15, 3, '117.197.246.64', '2011-07-17 22:55:57', 'tanmaya@mail.afixiindia.com', 0),
(16, 4, '117.197.246.64', '2011-07-17 22:57:09', 'upendra@mail.afixiindia.com', 0),
(17, 2, '117.197.246.64', '2011-07-17 22:59:25', 'jagannath@mail.afixiindia.com', 0),
(18, 8, '117.197.246.64', '2011-07-17 23:00:21', 'arun@mail.afixiindia.com', 0),
(19, 15, '117.197.246.64', '2011-07-17 23:58:33', 'sasmita@mail.afixiindia.com', 0),
(20, 15, '117.197.242.21', '2011-07-18 00:16:04', 'sasmita@mail.afixiindia.com', 0),
(21, 2, '117.197.242.21', '2011-07-18 00:21:33', 'jagannath@mail.afixiindia.com', 0),
(22, 15, '117.197.242.21', '2011-07-18 02:08:53', 'sasmita@mail.afixiindia.com', 0),
(23, 3, '117.197.242.21', '2011-07-18 04:15:35', 'tanmaya@mail.afixiindia.com', 0),
(24, 1, '117.197.242.21', '2011-07-18 04:43:14', 'sabri@mail.afixiindia.com', 0),
(25, 2, '117.197.242.21', '2011-07-18 04:47:49', 'jagannath@mail.afixiindia.com', 0),
(26, 2, '117.197.242.21', '2011-07-18 05:02:59', 'jagannath@mail.afixiindia.com', 0),
(27, 2, '117.197.242.21', '2011-07-18 05:36:39', 'jagannath@mail.afixiindia.com', 0),
(28, 30, '117.197.242.21', '2011-07-18 06:34:17', 'biswal805@gmail.com', 0),
(29, 30, '117.197.242.21', '2011-07-18 06:43:12', 'biswal805@gmail.com', 0),
(30, 30, '117.197.242.21', '2011-07-18 06:53:43', 'biswal805@gmail.com', 0),
(31, 31, '117.197.242.21', '2011-07-18 06:53:46', 'afixi.sasmita@gmail.com', 0),
(32, 31, '117.197.242.21', '2011-07-18 06:56:19', 'afixi.sasmita@gmail.com', 0),
(33, 30, '117.197.242.21', '2011-07-18 06:56:39', 'biswal805@gmail.com', 0),
(34, 30, '117.197.242.21', '2011-07-18 07:01:23', 'biswal805@gmail.com', 0),
(35, 30, '117.197.242.21', '2011-07-18 07:01:49', 'biswal805@gmail.com', 0),
(36, 30, '117.197.242.21', '2011-07-18 07:05:14', 'biswal805@gmail.com', 0),
(37, 15, '117.197.242.21', '2011-07-18 07:06:25', 'sasmita@mail.afixiindia.com', 0),
(38, 15, '117.197.242.21', '2011-07-18 07:07:55', 'sasmita@mail.afixiindia.com', 0),
(39, 30, '117.197.242.21', '2011-07-18 22:21:29', 'biswal805@gmail.com', 0),
(40, 32, '117.197.242.21', '2011-07-18 23:03:02', 'afixi.jagannath@gmail.com', 0),
(41, 32, '117.197.242.21', '2011-07-18 23:03:30', 'afixi.jagannath@gmail.com', 0),
(42, 1, '204.28.119.130', '2011-07-18 23:29:48', 'sabri@mail.afixiindia.com', 0),
(43, 30, '117.197.242.21', '2011-07-18 23:35:42', 'biswal805@gmail.com', 0),
(44, 32, '117.197.242.21', '2011-07-18 23:38:02', 'afixi.jagannath@gmail.com', 0),
(45, 31, '117.197.242.21', '2011-07-18 23:39:30', 'afixi.sasmita@gmail.com', 0),
(46, 33, '117.197.246.58', '2011-07-19 01:45:21', 'manassahoo66@gmail.com', 0),
(47, 1, '117.197.253.71', '2011-07-19 05:48:58', 'sabri@mail.afixiindia.com', 0),
(48, 4, '117.197.253.71', '2011-07-19 07:13:27', 'upendra@mail.afixiindia.com', 0),
(49, 2, '117.197.253.71', '2011-07-19 07:48:29', 'jagannath@mail.afixiindia.com', 0),
(50, 15, '117.197.253.71', '2011-07-19 07:48:47', 'sasmita@mail.afixiindia.com', 0),