-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjetsparles.sql
1682 lines (1628 loc) · 79.6 KB
/
objetsparles.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Client : 127.0.0.1
-- Généré le : Mar 25 Septembre 2018 à 02:01
-- Version du serveur : 10.1.21-MariaDB
-- Version de PHP : 5.6.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de données : `objetsparles`
--
-- --------------------------------------------------------
--
-- Structure de la table `capteur`
--
CREATE TABLE `capteur` (
`idcapteur` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`comments` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `capteur`
--
INSERT INTO `capteur` (`idcapteur`, `name`, `comments`) VALUES
(4, 'Vanuatu', 'Alice as he spoke. \'UNimportant, of course, I.'),
(5, 'Saint Barthelemy', 'Queen will hear you! You see, she came suddenly.'),
(6, 'Moldova', 'Lobster Quadrille is!\' \'No, indeed,\' said Alice..'),
(7, 'Peru', 'If I or she should push the matter on, What.'),
(8, 'Kenya', 'Mock Turtle drew a long sleep you\'ve had!\' \'Oh,.'),
(9, 'Sierra Leone', 'Rabbit coming to look through into the air. Even.'),
(10, 'Finland', 'Alice alone with the glass table and the Queen.'),
(11, 'Benin', 'Alice watched the White Rabbit with pink eyes.'),
(12, 'Jordan', 'Alice\'s shoulder, and it set to partners--\'.'),
(13, 'Tanzania', 'The other guests had taken advantage of the day;.'),
(14, 'Guatemala', 'Pigeon went on, looking anxiously round to see.'),
(15, 'French Southern Territories', 'Caterpillar. \'Well, I shan\'t grow any more--As.'),
(16, 'Dominica', 'So you see, Miss, we\'re doing our best, afore.'),
(17, 'Chile', 'French mouse, come over with William the.'),
(18, 'Bhutan', 'CHAPTER X. The Lobster Quadrille is!\' \'No,.'),
(19, 'French Polynesia', 'There could be NO mistake about it: it was YOUR.'),
(20, 'Indonesia', 'All this time with the Lory, with a teacup in.'),
(21, 'Thailand', 'I\'ve had such a puzzled expression that she.'),
(22, 'Uganda', 'Alice, who felt very curious to know what it.'),
(23, 'Brunei Darussalam', 'Alice, in a low voice, \'Your Majesty must.'),
(24, 'Canada', 'I eat one of the court. All this time with one.'),
(25, 'Macao', 'Be off, or I\'ll kick you down stairs!\' \'That is.'),
(26, 'Norway', 'The jury all looked so grave that she was up to.'),
(27, 'Jamaica', 'Mock Turtle at last, more calmly, though still.'),
(28, 'Mexico', 'As there seemed to rise like a serpent. She had.'),
(32, 'Slovakia (Slovak Republic)', 'Latin Grammar, \'A mouse--of a mouse--to a.'),
(33, 'Mali', 'She said it to his ear. Alice considered a.'),
(34, 'Saint Vincent and the Grenadines', 'Alice, surprised at her hands, and began:-- \'You.'),
(35, 'Qatar', 'This did not like to be Involved in this way!.'),
(36, 'Grenada', 'Queen\'s hedgehog just now, only it ran away when.'),
(37, 'Austria', 'Bill\'s place for a minute or two. \'They couldn\'t.'),
(38, 'Greenland', 'Queen. \'You make me smaller, I suppose.\' So she.'),
(39, 'Suriname', 'DOTH THE LITTLE BUSY BEE,\" but it was perfectly.'),
(40, 'Guinea', 'Hatter went on again:-- \'You may not have lived.'),
(41, 'Burundi', 'The door led right into a large mushroom growing.'),
(42, 'Ecuador', 'I might venture to say but \'It belongs to a.'),
(43, 'Turkey', 'Two. Two began in a loud, indignant voice, but.'),
(44, 'Gabon', 'Seaography: then Drawling--the Drawling-master.'),
(45, 'Nigeria', 'Alice, seriously, \'I\'ll have nothing more to do.'),
(46, 'Cambodia', 'Poor Alice! It was the first figure!\' said the.'),
(47, 'Lao People\'s Democratic Republic', 'Majesty must cross-examine the next verse.\' \'But.'),
(48, 'Korea', 'As there seemed to quiver all over with.'),
(49, 'Ghana', 'Alice went on, \'you see, a dog growls when it\'s.'),
(50, 'Bulgaria', 'Alice had no idea what you\'re talking about,\'.'),
(51, 'Israel', 'Hatter; \'so I should like to show you! A little.'),
(52, 'Macedonia', 'This is the driest thing I know. Silence all.'),
(53, 'Namibia', 'And in she went. Once more she found herself in.'),
(54, 'Honduras', 'Footman. \'That\'s the first to speak. \'What size.'),
(55, 'Saint Kitts and Nevis', 'Come on!\' So they got thrown out to sea as you.'),
(56, 'Chad', 'Footman went on so long that they were all.'),
(60, 'Argentina', 'I will just explain to you never had to be rude,.'),
(61, 'Nicaragua', 'Said the mouse to the Gryphon. \'I\'ve forgotten.'),
(62, 'Togo', 'Alice, \'and if it makes me grow smaller, I.'),
(63, 'Guam', 'I ever was at the place where it had made. \'He.'),
(64, 'San Marino', 'Alice again. \'No, I didn\'t,\' said Alice:.'),
(65, 'Panama', 'Oh, I shouldn\'t want YOURS: I don\'t like them.'),
(66, 'Antigua and Barbuda', 'And he got up in a moment: she looked down at.'),
(67, 'Luxembourg', 'I--\' \'Oh, don\'t bother ME,\' said Alice a good.'),
(68, 'Puerto Rico', 'SIT down,\' the King very decidedly, and there.'),
(69, 'Mauritania', 'Gryphon, lying fast asleep in the other: the.'),
(70, 'Isle of Man', 'I could show you our cat Dinah: I think I could,.'),
(71, 'Netherlands Antilles', 'This seemed to follow, except a tiny little.'),
(72, 'Saint Martin', 'White Rabbit, with a table in the sun. (IF you.'),
(73, 'Bahamas', 'CHAPTER VIII. The Queen\'s argument was, that if.'),
(74, 'Lesotho', 'Alice, \'and those twelve creatures,\' (she was so.'),
(75, 'Rwanda', 'Alice, with a deep voice, \'What are you getting.'),
(76, 'Faroe Islands', 'Alice had begun to think about stopping herself.'),
(77, 'Holy See (Vatican City State)', 'The first question of course had to do it! Oh.'),
(78, 'Sweden', 'Caterpillar decidedly, and the shrill voice of.'),
(79, 'Tuvalu', 'WOULD not remember ever having seen such a.'),
(80, 'Czech Republic', 'SOME change in my time, but never ONE with such.'),
(81, 'Kiribati', 'I know!\' exclaimed Alice, who felt very glad to.'),
(82, 'Haiti', 'Gryphon interrupted in a bit.\' \'Perhaps it.'),
(83, 'Venezuela', 'Alice. \'Come on, then,\' said Alice, a little.'),
(84, 'Libyan Arab Jamahiriya', 'They were just beginning to get in?\' she.'),
(88, 'Estonia', 'Gryphon. \'Do you mean by that?\' said the.'),
(89, 'Dominican Republic', 'ME\' were beautifully marked in currants. \'Well,.'),
(90, 'Croatia', 'Alice\'s shoulder, and it was very glad to find.'),
(91, 'Cuba', 'Alice did not venture to go down--Here, Bill!.'),
(92, 'Italy', 'Mock Turtle sighed deeply, and drew the back of.'),
(93, 'Taiwan', 'Alice in a rather offended tone, and added with.'),
(94, 'Saint Lucia', 'Alice noticed, had powdered hair that curled all.'),
(95, 'Hong Kong', 'I don\'t keep the same height as herself; and.'),
(96, 'China', 'Alice, always ready to play croquet.\' Then they.'),
(97, 'Algeria', 'WOULD go with the tea,\' the March Hare.'),
(98, 'Mayotte', 'No room!\' they cried out when they saw her, they.'),
(99, 'Svalbard & Jan Mayen Islands', 'Duchess; \'I never heard it before,\' said the.'),
(100, 'Bangladesh', 'Dinah at you!\' There was nothing on it were nine.'),
(101, 'Albania', 'THESE?\' said the White Rabbit: it was her.'),
(102, 'Colombia', 'If they had at the mouth with strings: into this.'),
(103, 'Norfolk Island', 'Shall I try the effect: the next witness. It.'),
(104, 'Heard Island and McDonald Islands', 'King. On this the whole party at once and put.'),
(105, 'Marshall Islands', 'And so it was too much of it appeared. \'I don\'t.'),
(106, 'Andorra', 'The baby grunted again, and said, \'That\'s right,.'),
(107, 'Guernsey', 'Long Tale They were just beginning to feel very.'),
(108, 'French Guiana', 'Alice replied, rather shyly, \'I--I hardly know,.'),
(109, 'Hungary', 'Alice hastily replied; \'only one doesn\'t like.'),
(110, 'Cayman Islands', 'King say in a soothing tone: \'don\'t be angry.'),
(111, 'United States of America', 'Alice\'s, and they walked off together. Alice.'),
(112, 'Antarctica (the territory South of 60 deg S)', 'All the time she found to be no use in saying.'),
(113, 'blop', 'blop'),
(114, 'qzdqd', 'qzdqsd'),
(115, 'qzdqd', 'qzdqsd'),
(116, 'blop', 'blop'),
(117, 'blop', 'blop'),
(118, 'blop', 'blop'),
(119, 'blo', 'blo'),
(120, 'blo', 'blo'),
(122, 'bla', 'bla');
-- --------------------------------------------------------
--
-- Structure de la table `capteurchannel`
--
CREATE TABLE `capteurchannel` (
`idcapteurchannel` int(11) NOT NULL,
`idchannel` int(11) NOT NULL,
`idcapteur` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `capteurchannel`
--
INSERT INTO `capteurchannel` (`idcapteurchannel`, `idchannel`, `idcapteur`) VALUES
(4, 4, 4),
(5, 5, 5),
(6, 6, 6),
(7, 7, 7),
(8, 8, 8),
(9, 9, 9),
(10, 10, 10),
(11, 11, 11),
(12, 12, 12),
(13, 13, 13),
(14, 14, 14),
(15, 15, 15),
(16, 16, 16),
(17, 17, 17),
(18, 18, 18),
(19, 19, 19),
(20, 20, 20),
(21, 21, 21),
(22, 22, 22),
(23, 23, 23),
(24, 24, 24),
(25, 25, 25),
(26, 26, 26),
(27, 27, 27),
(28, 28, 28),
(32, 4, 32),
(33, 5, 33),
(34, 6, 34),
(35, 7, 35),
(36, 8, 36),
(37, 9, 37),
(38, 10, 38),
(39, 11, 39),
(40, 12, 40),
(41, 13, 41),
(42, 14, 42),
(43, 15, 43),
(44, 16, 44),
(45, 17, 45),
(46, 18, 46),
(47, 19, 47),
(48, 20, 48),
(49, 21, 49),
(50, 22, 50),
(51, 23, 51),
(52, 24, 52),
(53, 25, 53),
(54, 26, 54),
(55, 27, 55),
(56, 28, 56),
(60, 4, 60),
(61, 5, 61),
(62, 6, 62),
(63, 7, 63),
(64, 8, 64),
(65, 9, 65),
(66, 10, 66),
(67, 11, 67),
(68, 12, 68),
(69, 13, 69),
(70, 14, 70),
(71, 15, 71),
(72, 16, 72),
(73, 17, 73),
(74, 18, 74),
(75, 19, 75),
(76, 20, 76),
(77, 21, 77),
(78, 22, 78),
(79, 23, 79),
(80, 24, 80),
(81, 25, 81),
(82, 26, 82),
(83, 27, 83),
(84, 28, 84),
(88, 4, 88),
(89, 5, 89),
(90, 6, 90),
(91, 7, 91),
(92, 8, 92),
(93, 9, 93),
(94, 10, 94),
(95, 11, 95),
(96, 12, 96),
(97, 13, 97),
(98, 14, 98),
(99, 15, 99),
(100, 16, 100),
(101, 17, 101),
(102, 18, 102),
(103, 19, 103),
(104, 20, 104),
(105, 21, 105),
(106, 22, 106),
(107, 23, 107),
(108, 24, 108),
(109, 25, 109),
(110, 26, 110),
(111, 27, 111),
(112, 28, 112),
(114, 3, 122);
-- --------------------------------------------------------
--
-- Structure de la table `channel`
--
CREATE TABLE `channel` (
`idchannel` int(11) NOT NULL,
`name` varchar(45) NOT NULL,
`public` tinyint(1) NOT NULL,
`comments` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `channel`
--
INSERT INTO `channel` (`idchannel`, `name`, `public`, `comments`) VALUES
(4, 'Rozella', 0, 'William the.'),
(5, 'Sadye', 1, 'VERY tired of.'),
(6, 'Orville', 0, 'Mouse was swimming.'),
(7, 'Jarred', 1, 'The Mouse only.'),
(8, 'Bernardo', 0, 'Dodo suddenly.'),
(9, 'Eliza', 0, 'I\'ll have you.'),
(10, 'Lourdes', 0, 'I see\"!\' \'You.'),
(11, 'Alysa', 0, 'Lizard\'s.'),
(12, 'Ansley', 0, 'Alice replied in.'),
(13, 'Fanny', 1, 'Beautiful,.'),
(14, 'Martine', 0, 'Alice, timidly;.'),
(15, 'Enoch', 1, 'Nobody moved. \'Who.'),
(16, 'Anna', 0, 'Alice looked down.'),
(17, 'Hester', 1, 'So she began.'),
(18, 'Josefa', 1, 'Rabbit was no more.'),
(19, 'Guadalupe', 0, 'Mouse, turning to.'),
(20, 'Nova', 0, 'Time as well say,\'.'),
(21, 'Joyce', 1, 'William the.'),
(22, 'Pansy', 0, 'Bill, the Lizard).'),
(23, 'Felipa', 1, 'I should think!\'.'),
(24, 'Unique', 0, 'Cat said, waving.'),
(25, 'Elinore', 1, 'And welcome little.'),
(26, 'Lisette', 1, 'Said the mouse.'),
(27, 'Raina', 0, 'Alice could see,.'),
(28, 'Kaia', 0, 'I suppose?\' said.'),
(30, 'mamadou', 0, 'noir'),
(31, 'blap', 0, 'fdsfdsfdsfdsf'),
(38, 'blop', 0, 'blop'),
(40, 'bla', 1, 'bla');
-- --------------------------------------------------------
--
-- Structure de la table `collaborate`
--
CREATE TABLE `collaborate` (
`idcollaborate` int(11) NOT NULL,
`idchannel` int(11) NOT NULL,
`iduser` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `collaborate`
--
INSERT INTO `collaborate` (`idcollaborate`, `idchannel`, `iduser`) VALUES
(1, 1, 1),
(29, 1, 1),
(57, 1, 1),
(85, 1, 1),
(2, 2, 2),
(30, 2, 2),
(58, 2, 2),
(86, 2, 2),
(3, 3, 3),
(31, 3, 3),
(59, 3, 3),
(87, 3, 3),
(4, 4, 4),
(32, 4, 4),
(60, 4, 4),
(88, 4, 4),
(5, 5, 5),
(33, 5, 5),
(61, 5, 5),
(89, 5, 5),
(6, 6, 6),
(34, 6, 6),
(62, 6, 6),
(90, 6, 6),
(7, 7, 7),
(35, 7, 7),
(63, 7, 7),
(91, 7, 7),
(8, 8, 1),
(36, 8, 1),
(64, 8, 1),
(92, 8, 1),
(9, 9, 2),
(37, 9, 2),
(65, 9, 2),
(93, 9, 2),
(10, 10, 3),
(38, 10, 3),
(66, 10, 3),
(94, 10, 3),
(11, 11, 4),
(39, 11, 4),
(67, 11, 4),
(95, 11, 4),
(12, 12, 5),
(40, 12, 5),
(68, 12, 5),
(96, 12, 5),
(13, 13, 6),
(41, 13, 6),
(69, 13, 6),
(97, 13, 6),
(14, 14, 7),
(42, 14, 7),
(70, 14, 7),
(98, 14, 7),
(15, 15, 1),
(43, 15, 1),
(71, 15, 1),
(99, 15, 1),
(16, 16, 2),
(44, 16, 2),
(72, 16, 2),
(100, 16, 2),
(17, 17, 3),
(45, 17, 3),
(73, 17, 3),
(101, 17, 3),
(18, 18, 4),
(46, 18, 4),
(74, 18, 4),
(102, 18, 4),
(19, 19, 5),
(47, 19, 5),
(75, 19, 5),
(103, 19, 5),
(20, 20, 6),
(48, 20, 6),
(76, 20, 6),
(104, 20, 6),
(21, 21, 7),
(49, 21, 7),
(77, 21, 7),
(105, 21, 7),
(22, 22, 1),
(50, 22, 1),
(78, 22, 1),
(106, 22, 1),
(23, 23, 2),
(51, 23, 2),
(79, 23, 2),
(107, 23, 2),
(24, 24, 3),
(52, 24, 3),
(80, 24, 3),
(108, 24, 3),
(25, 25, 4),
(53, 25, 4),
(81, 25, 4),
(109, 25, 4),
(26, 26, 5),
(54, 26, 5),
(82, 26, 5),
(110, 26, 5),
(27, 27, 6),
(55, 27, 6),
(83, 27, 6),
(111, 27, 6),
(28, 28, 7),
(56, 28, 7),
(84, 28, 7),
(112, 28, 7);
-- --------------------------------------------------------
--
-- Structure de la table `datalogger`
--
CREATE TABLE `datalogger` (
`iddatalogger` int(11) NOT NULL,
`data` int(255) NOT NULL,
`date` datetime NOT NULL,
`comments` varchar(255) DEFAULT NULL,
`idcapteur` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Contenu de la table `datalogger`
--
INSERT INTO `datalogger` (`iddatalogger`, `data`, `date`, `comments`, `idcapteur`) VALUES
(4, 4021, '1989-05-08 08:47:59', 'Suppress him!.', 4),
(5, 5827, '1981-01-15 13:37:35', 'Alice\'s elbow was.', 5),
(6, 4885, '1997-02-07 19:46:40', 'After a minute or.', 6),
(7, 6671, '2018-03-13 08:07:35', 'I should think you.', 7),
(8, 7180, '2010-01-27 04:40:03', 'No, I\'ve made up.', 8),
(9, 4655, '1987-11-19 11:18:36', 'Mouse, frowning,.', 9),
(10, 8705, '1976-11-01 23:58:19', 'Alice, so please.', 10),
(11, 8789, '1985-04-28 03:01:22', 'Caucus-race.\'.', 11),
(12, 2713, '1991-06-06 18:14:12', 'She ate a little.', 12),
(13, 3138, '1987-08-13 03:14:52', 'There was no more.', 13),
(14, 7746, '2008-10-25 03:47:35', 'When I used to.', 14),
(15, 659, '2010-05-30 19:06:59', 'LESS,\' said the.', 15),
(16, 8562, '1976-08-24 01:35:40', 'Alice said with a.', 16),
(17, 6904, '1980-04-22 10:42:22', 'May it won\'t be.', 17),
(18, 4224, '1984-09-08 18:04:35', 'Alice; \'I can\'t.', 18),
(19, 2168, '2016-11-24 01:06:34', 'Mouse to Alice a.', 19),
(20, 1245, '1975-10-10 10:18:47', 'Alice said with a.', 20),
(21, 2640, '1973-05-11 23:30:03', 'Alice said.', 21),
(22, 6741, '1992-03-07 01:15:05', 'Alice, \'I\'ve often.', 22),
(23, 1795, '2010-05-15 08:34:54', 'I\'m doubtful about.', 23),
(24, 2577, '1976-05-07 01:59:33', 'Mock Turtle said:.', 24),
(25, 3250, '1996-10-13 03:54:13', 'Mock Turtle said.', 25),
(26, 3760, '2009-08-28 10:36:35', 'Lobster.', 26),
(27, 3572, '1971-04-16 04:35:05', 'At last the.', 27),
(28, 2242, '2007-06-27 03:56:49', 'NEVER come to the.', 28),
(32, 7938, '1992-09-29 04:56:27', 'Caterpillar; and.', 32),
(33, 9609, '2013-04-03 21:52:32', 'Queen. An.', 33),
(34, 308, '1995-06-30 19:33:30', 'However, I\'ve got.', 34),
(35, 6638, '1978-07-16 16:47:51', 'I\'ve got to?\'.', 35),
(36, 3217, '2005-02-16 23:31:52', 'March Hare. \'He.', 36),
(37, 2910, '1986-09-20 12:33:19', 'She did it so VERY.', 37),
(38, 8688, '2014-06-10 13:06:49', 'Dinah, tell me the.', 38),
(39, 784, '1972-03-29 23:37:02', 'I\'d hardly.', 39),
(40, 1694, '1997-03-15 03:59:42', 'The Queen had.', 40),
(41, 7254, '2016-07-20 11:35:18', 'Hatter. \'Nor I,\'.', 41),
(42, 4075, '1976-08-21 10:09:00', 'HIGH TO LEAVE THE.', 42),
(43, 2779, '1996-05-16 12:35:19', 'Caucus-race.\'.', 43),
(44, 3131, '1997-07-24 01:14:00', 'Queen, and Alice,.', 44),
(45, 512, '1984-06-13 01:20:59', 'Queen, \'and he.', 45),
(46, 3373, '1978-01-02 04:53:40', 'Let me think: was.', 46),
(47, 9703, '2010-07-20 00:28:13', 'Cheshire Cat,\'.', 47),
(48, 1046, '1991-04-02 02:50:35', 'SHE HAD THIS.', 48),
(49, 143, '1992-06-15 12:08:23', 'March Hare. \'I.', 49),
(50, 4475, '2010-03-13 02:11:23', 'Queen shouted at.', 50),
(51, 2941, '1970-03-30 07:35:34', 'Queen,\' and she.', 51),
(52, 3507, '1992-12-15 23:46:32', 'March Hare,) \'--it.', 52),
(53, 5016, '1993-03-31 03:54:25', 'Mock Turtle.', 53),
(54, 4953, '2018-06-16 13:40:41', 'HAVE my shoulders.', 54),
(55, 4286, '1975-08-31 00:44:45', 'March Hare. Visit.', 55),
(56, 9003, '1983-11-23 01:49:37', 'But at any rate,.', 56),
(60, 1278, '1991-01-07 06:40:09', 'Caterpillar. Alice.', 60),
(61, 5492, '2011-10-29 17:46:18', 'I don\'t keep the.', 61),
(62, 9253, '2012-06-05 09:52:29', 'Dormouse began in.', 62),
(63, 306, '2004-03-13 09:12:06', 'Majesty!\' the.', 63),
(64, 5611, '1986-08-04 17:07:21', 'CHAPTER X. The.', 64),
(65, 8736, '1980-06-02 12:53:20', 'Alice noticed, had.', 65),
(66, 2315, '1981-05-13 02:46:24', 'I think you\'d.', 66),
(67, 9557, '1978-01-31 13:08:13', 'Be off, or I\'ll.', 67),
(68, 5344, '2005-06-23 18:24:49', 'Hatter, \'or you\'ll.', 68),
(69, 7242, '2013-01-19 14:55:53', 'Mock Turtle.', 69),
(70, 2433, '1988-09-22 07:16:55', 'English coast you.', 70),
(71, 9077, '2006-10-12 17:46:39', 'Mock Turtle. \'Hold.', 71),
(72, 3992, '2017-03-25 07:32:33', 'THAT in a great.', 72),
(73, 9935, '1987-07-04 11:23:31', 'A secret, kept.', 73),
(74, 687, '2005-06-30 05:19:59', 'Dodo could not.', 74),
(75, 2800, '1988-04-08 21:48:28', 'Pennyworth only of.', 75),
(76, 1408, '1996-06-06 07:20:18', 'I do wonder what.', 76),
(77, 2897, '2014-12-05 05:04:05', 'Queen till she.', 77),
(78, 1224, '1977-06-25 22:28:30', 'I don\'t remember.', 78),
(79, 1905, '2017-11-24 13:55:57', 'By the use of.', 79),
(80, 8139, '1975-11-15 11:06:25', 'All this time it.', 80),
(81, 7876, '2005-05-02 16:57:02', 'King, the Queen,.', 81),
(82, 4161, '2014-12-14 07:05:06', 'Come on!\' So they.', 82),
(83, 9570, '1993-10-11 00:46:51', 'Duck. \'Found IT,\'.', 83),
(84, 1815, '2018-06-25 14:17:57', 'Rabbit\'s voice;.', 84),
(88, 1192, '1997-10-07 16:05:25', 'There was no.', 88),
(89, 8025, '2018-03-31 21:20:03', 'Alice started to.', 89),
(90, 5043, '1986-06-20 21:10:26', 'She felt that this.', 90),
(91, 6557, '1980-12-04 18:20:10', 'I\'ll be jury,\".', 91),
(92, 8126, '2017-06-03 01:06:47', 'Dormouse turned.', 92),
(93, 8620, '1973-03-17 21:49:23', 'The rabbit-hole.', 93),
(94, 4871, '2015-02-08 08:59:10', 'Mouse was.', 94),
(95, 6113, '2012-09-28 10:53:49', 'Gryphon went on,.', 95),
(96, 5426, '1997-06-29 16:49:48', 'I\'ve had such a.', 96),
(97, 1884, '2007-07-14 09:11:11', 'ME.\' \'You!\' said.', 97),
(98, 6646, '1994-05-09 06:12:10', 'I wish you were.', 98),
(99, 8552, '1977-09-09 13:32:59', 'Off with his nose,.', 99),
(100, 472, '1983-09-16 21:23:08', 'There was a.', 100),
(101, 2929, '1978-08-29 13:59:02', 'Duchess was VERY.', 101),
(102, 1036, '1996-12-21 18:26:04', 'Father William,\'.', 102),
(103, 4674, '1996-08-15 12:05:57', 'So they sat down.', 103),
(104, 7985, '2007-10-22 01:23:31', 'I shan\'t! YOU do.', 104),
(105, 4827, '1996-06-14 18:43:51', 'I hate cats and.', 105),
(106, 1310, '1980-09-20 20:27:50', 'I can\'t quite.', 106),
(107, 1202, '1980-05-14 20:48:50', 'Dinah, tell me the.', 107),
(108, 1393, '2005-04-10 16:29:49', 'Alice had got its.', 108),
(109, 9144, '1993-03-26 21:40:25', 'I to get her head.', 109),
(110, 112, '1972-07-30 01:58:03', 'Dormouse..', 110),
(111, 9810, '1970-11-15 18:52:19', 'Caterpillar. \'Not.', 111),
(112, 4374, '2004-08-17 07:26:04', 'Queen was close.', 112),
(116, 7117, '1990-08-27 10:47:20', 'Alice was rather.', 4),
(117, 8118, '1975-07-30 15:17:40', 'All on a little.', 5),
(118, 3752, '1994-10-19 22:44:13', 'English coast you.', 6),
(119, 2952, '1999-04-04 21:00:31', 'There was a dead.', 7),
(120, 9353, '1976-05-26 10:50:21', 'Him, and.', 8),
(121, 5442, '2005-05-11 17:46:46', 'Alice remained.', 9),
(122, 3639, '1980-10-18 01:07:20', 'I ever saw in.', 10),
(123, 1939, '1977-11-01 18:33:28', 'As soon as she.', 11),
(124, 6183, '2008-02-19 22:13:23', 'I get it home?\'.', 12),
(125, 3542, '2012-03-18 02:54:28', 'March Hare. \'Yes,.', 13),
(126, 8146, '1980-11-28 07:39:31', 'Alice sadly. \'Hand.', 14),
(127, 3338, '2002-08-07 23:51:36', 'Alice. \'Of course.', 15),
(128, 2721, '1978-06-01 03:05:36', 'I\'ll kick you down.', 16),
(129, 8825, '1974-09-08 12:50:27', 'Don\'t be all day.', 17),
(130, 9590, '1985-12-16 03:19:38', 'I\'ll never go.', 18),
(131, 1468, '2010-10-15 01:18:47', 'Number One,\' said.', 19),
(132, 3047, '2014-05-23 15:06:34', 'Alice asked. \'We.', 20),
(133, 8258, '1995-09-03 01:53:02', 'No, it\'ll never do.', 21),
(134, 5415, '1986-01-27 02:30:30', 'ARE OLD, FATHER.', 22),
(135, 6548, '1991-08-16 02:14:34', 'Has lasted the.', 23),
(136, 7625, '1984-06-22 16:01:49', 'Her first idea was.', 24),
(137, 3344, '1995-08-02 11:11:45', 'Alice, jumping up.', 25),
(138, 8972, '1987-04-19 20:53:20', 'Alice, in a great.', 26),
(139, 5146, '1979-07-20 11:40:16', 'I do hope it\'ll.', 27),
(140, 4879, '1983-02-28 17:47:06', 'Duchess sneezed.', 28),
(144, 9825, '1990-04-14 09:07:29', 'March Hare..', 32),
(145, 807, '1999-11-14 20:13:59', 'I think--\' (for,.', 33),
(146, 9331, '1981-03-20 03:52:07', 'Two. Two began in.', 34),
(147, 6512, '1979-05-28 23:58:35', 'Bill! I wouldn\'t.', 35),
(148, 6489, '1986-09-24 12:23:36', 'Mock Turtle.', 36),
(149, 3384, '1980-12-29 10:31:22', 'Alice was soon.', 37),
(150, 8768, '2002-10-21 21:28:27', 'However, on the.', 38),
(151, 4546, '2001-10-30 23:21:57', 'Alice. \'Nothing,\'.', 39),
(152, 7869, '1999-08-27 20:38:29', 'The first witness.', 40),
(153, 2655, '1975-08-06 04:45:56', 'Mock Turtle went.', 41),
(154, 205, '1988-03-21 09:01:33', 'They all sat down.', 42),
(155, 4624, '1997-04-05 19:09:24', 'Dormouse,\' the.', 43),
(156, 5170, '2005-11-26 15:29:13', 'Lobster Quadrille,.', 44),
(157, 8116, '1986-06-09 15:25:45', 'King, \'that only.', 45),
(158, 5986, '1977-04-20 01:01:37', 'Shark, But, when.', 46),
(159, 1103, '2002-11-23 17:23:12', 'Beautiful,.', 47),
(160, 7476, '1986-02-26 21:37:39', 'March Hare took.', 48),
(161, 7459, '1975-08-03 15:43:39', 'I THINK; or is it.', 49),
(162, 8155, '1981-03-21 14:50:39', 'King replied. Here.', 50),
(163, 80, '1970-03-20 11:40:20', 'WILL do next! If.', 51),
(164, 7122, '1990-06-05 04:02:36', 'Mock Turtle. Alice.', 52),
(165, 6699, '1971-06-26 01:49:25', 'Shark, But, when.', 53),
(166, 4566, '2006-03-31 07:26:37', 'Tell her to carry.', 54),
(167, 9780, '2007-09-29 14:40:51', 'And she tried her.', 55),
(168, 6898, '1993-04-13 02:27:55', 'GAVE HER ONE, THEY.', 56),
(172, 818, '2002-07-22 01:10:21', 'I ever was at the.', 60),
(173, 8196, '2011-05-25 14:02:55', 'Lory, as soon as.', 61),
(174, 6851, '1983-02-24 02:56:21', 'I\'ve finished.\' So.', 62),
(175, 9896, '2015-01-18 05:40:18', 'It doesn\'t look.', 63),
(176, 3775, '1999-07-23 15:26:24', 'Queen, pointing to.', 64),
(177, 9859, '2002-09-04 19:43:03', 'Footman continued.', 65),
(178, 7982, '1986-04-09 03:25:45', 'Go on!\' \'I\'m a.', 66),
(179, 153, '1973-09-10 17:04:26', 'I suppose?\' \'Yes,\'.', 67),
(180, 5819, '1981-01-31 13:08:02', 'Stole the Tarts?.', 68),
(181, 9031, '1977-01-30 15:11:44', 'Even the Duchess.', 69),
(182, 2105, '1993-03-16 06:16:19', 'Oh dear! I wish I.', 70),
(183, 2135, '1977-07-19 02:48:10', 'Alice, \'a great.', 71),
(184, 995, '2001-09-10 00:07:39', 'Alice; \'I might as.', 72),
(185, 4203, '1993-07-12 14:29:05', 'Mouse. \'Of.', 73),
(186, 2413, '2002-02-06 11:19:32', 'She drew her foot.', 74),
(187, 5458, '2010-08-06 21:58:46', 'YOUR shoes done.', 75),
(188, 7899, '1983-03-13 08:12:55', 'I\'ll never go.', 76),
(189, 3340, '1971-09-02 12:43:20', 'And welcome little.', 77),
(190, 6037, '1970-05-15 11:16:17', 'The long grass.', 78),
(191, 3109, '1977-05-15 23:09:06', 'She was close.', 79),
(192, 6420, '2010-09-06 23:28:57', 'I\'ll eat it,\' said.', 80),
(193, 8446, '2010-02-17 15:39:06', 'I shall have.', 81),
(194, 2501, '1998-06-25 00:59:36', 'Alice, \'they\'re.', 82),
(195, 731, '1991-09-15 08:30:42', 'King triumphantly,.', 83),
(196, 6611, '1974-01-31 13:44:23', 'Hatter added as an.', 84),
(200, 9367, '1971-08-01 13:43:31', 'White Rabbit as he.', 88),
(201, 7097, '1984-09-28 03:08:35', 'Alice in a rather.', 89),
(202, 8965, '2017-09-01 15:10:59', 'Queen, and Alice,.', 90),
(203, 7144, '1978-12-06 12:26:42', 'Alice could speak.', 91),
(204, 5954, '2003-11-21 21:12:41', 'Alice to herself,.', 92),
(205, 1567, '2002-01-20 08:05:24', 'She hastily put.', 93),
(206, 8494, '1977-08-03 18:33:27', 'I suppose?\' said.', 94),
(207, 3975, '1996-02-23 12:36:02', 'Alice, \'to pretend.', 95),
(208, 7696, '1990-08-11 15:52:49', 'Will you, won\'t.', 96),
(209, 5767, '1999-05-29 13:10:40', 'Alice did not dare.', 97),
(210, 1844, '2015-09-23 15:00:34', 'I am now? That\'ll.', 98),
(211, 901, '2009-03-05 04:29:07', 'Do you think, at.', 99),
(212, 4894, '1985-08-06 22:57:56', 'I\'m never sure.', 100),
(213, 534, '2017-03-11 02:19:25', 'The Footman seemed.', 101),
(214, 4956, '1991-01-18 17:10:45', 'I wish you.', 102),
(215, 2394, '1973-07-31 20:14:07', 'Alice ventured to.', 103),
(216, 785, '2013-04-03 15:53:34', 'The pepper when he.', 104),
(217, 9797, '1999-04-17 14:59:32', 'I THINK,\' said.', 105),
(218, 637, '1985-03-06 15:01:55', 'But at any rate,.', 106),
(219, 5530, '2016-06-25 23:26:48', 'Hatter: \'let\'s all.', 107),
(220, 7810, '1993-05-02 10:11:49', 'Alice, \'it would.', 108),
(221, 1830, '1979-09-09 20:36:42', 'Alice: \'three.', 109),
(222, 4170, '2017-08-09 21:51:21', 'March Hare. \'It.', 110),
(223, 2005, '2004-08-20 06:38:46', 'Gryphon; and then.', 111),
(224, 1416, '2004-09-13 13:19:52', 'You gave us three.', 112),
(228, 7350, '1984-10-28 08:39:31', 'But, now that I\'m.', 4),
(229, 4020, '2008-07-02 15:36:43', 'I would talk on.', 5),
(230, 3319, '2010-09-26 12:16:10', 'The next thing was.', 6),
(231, 227, '1989-02-08 04:25:44', 'Alice was.', 7),
(232, 7020, '1993-02-19 19:06:06', 'Caterpillar\'s.', 8),
(233, 7660, '2006-04-26 15:32:57', 'White Rabbit as he.', 9),
(234, 4182, '1970-05-21 18:19:19', 'Alice guessed in a.', 10),
(235, 4962, '2002-07-30 20:39:54', 'Puss,\' she began,.', 11),
(236, 8764, '1971-01-13 09:10:02', 'Cat. \'I don\'t know.', 12),
(237, 7925, '2011-11-01 19:44:53', 'At last the.', 13),
(238, 4123, '1988-12-04 00:21:22', 'I can\'t understand.', 14),
(239, 4017, '1970-12-29 09:33:06', 'But I\'ve got back.', 15),
(240, 9478, '2008-11-14 18:53:42', 'Queen, pointing to.', 16),
(241, 5001, '1976-01-25 10:51:51', 'Alice was rather.', 17),
(242, 9141, '1999-03-17 21:42:44', 'Dodo, a Lory and.', 18),
(243, 948, '2003-11-04 04:13:07', 'But the snail.', 19),
(244, 1869, '2005-09-10 03:56:04', 'Duchess replied,.', 20),
(245, 3125, '1997-05-31 15:17:37', 'Hatter, \'you.', 21),
(246, 8189, '2012-06-13 06:51:48', 'No room!\' they.', 22),
(247, 2737, '2018-04-04 01:01:08', 'The poor little.', 23),
(248, 6761, '2017-03-01 15:52:17', 'Alice replied, so.', 24),
(249, 3776, '1984-04-16 17:02:07', 'It\'s by far the.', 25),
(250, 3282, '1985-12-08 07:13:51', 'There was no time.', 26),
(251, 4144, '2004-10-11 17:23:33', 'I hadn\'t to bring.', 27),
(252, 8564, '1992-07-29 16:34:43', 'Mouse. \'--I.', 28),
(256, 7398, '1971-02-17 22:06:41', 'Mock Turtle: \'why,.', 32),
(257, 5524, '1977-12-09 11:32:01', 'Alice, \'or perhaps.', 33),
(258, 5234, '2014-12-28 09:04:53', 'Queen. \'Never!\'.', 34),
(259, 7825, '1976-12-24 03:17:10', 'I\'m angry..', 35),
(260, 826, '1977-07-04 22:30:54', 'Alice; \'and I wish.', 36),
(261, 9611, '1970-12-27 02:30:17', 'March Hare. \'I.', 37),
(262, 827, '1984-01-03 04:10:47', 'And she\'s such a.', 38),
(263, 6551, '2013-07-26 06:06:29', 'Alice. \'Now we.', 39),
(264, 4741, '1986-05-18 10:24:58', 'It was as much as.', 40),
(265, 2933, '2002-04-12 06:31:21', 'Gryphon. \'It\'s all.', 41),
(266, 7843, '1979-01-11 20:44:41', 'I\'ve finished.\' So.', 42),
(267, 8715, '2013-08-12 15:43:31', 'King. The White.', 43),
(268, 3567, '1979-06-21 00:17:02', 'I\'m opening out.', 44),
(269, 9247, '1978-03-14 02:07:08', 'Crab took the.', 45),
(270, 220, '2007-12-20 08:20:53', 'No, I\'ve made up.', 46),
(271, 9991, '1991-04-06 07:10:55', 'Alice; but she.', 47),
(272, 7684, '1973-11-24 01:29:49', 'Alice asked in a.', 48),
(273, 2998, '1983-11-20 20:16:01', 'First, she tried.', 49),
(274, 3688, '1975-05-29 21:59:57', 'Hatter grumbled:.', 50),
(275, 2042, '2014-06-08 22:43:49', 'By the use of this.', 51),
(276, 6750, '2000-03-09 15:58:27', 'Bill, the Lizard).', 52),
(277, 806, '2004-01-12 01:05:56', 'I? Ah, THAT\'S the.', 53),
(278, 8861, '2010-05-24 12:55:51', 'And mentioned me.', 54),
(279, 4963, '2006-02-14 06:08:10', 'Mouse\'s tail; \'but.', 55),
(280, 359, '1993-11-25 17:49:45', 'Gryphon, before.', 56),
(284, 3229, '1982-08-09 00:58:09', 'I am, sir,\' said.', 60),
(285, 3462, '2008-08-02 01:21:13', 'An obstacle that.', 61),
(286, 1000, '1989-06-23 22:15:56', 'I should.', 62),
(287, 3620, '2017-06-05 22:49:04', 'Alice was too much.', 63),
(288, 2335, '2015-06-07 22:39:22', 'Gryphon added.', 64),
(289, 1172, '1988-02-01 12:04:24', 'I\'m a deal faster.', 65),
(290, 3580, '2012-06-23 04:46:30', 'Alice said very.', 66),
(291, 7361, '2012-06-23 08:22:53', 'But she did not.', 67),
(292, 3186, '1973-09-13 17:39:51', 'Dormouse shall!\'.', 68),
(293, 8166, '1988-02-20 19:09:58', 'Queen, \'and take.', 69),
(294, 9705, '1989-06-10 09:25:13', 'Let me see: I\'ll.', 70),
(295, 7252, '1987-06-06 14:55:05', 'Ugh, Serpent!\'.', 71),
(296, 3513, '2002-04-24 08:51:21', 'How brave they\'ll.', 72),
(297, 3472, '1982-01-09 21:52:44', 'Duchess replied,.', 73),
(298, 2257, '2015-08-19 10:10:43', 'I\'d taken the.', 74),
(299, 6668, '1995-08-30 00:19:35', 'THAT. Then.', 75),
(300, 2679, '2007-01-09 06:45:23', 'Mock Turtle drew a.', 76),
(301, 2747, '2001-07-27 09:20:56', 'King, and the pair.', 77),
(302, 9313, '2003-11-24 15:47:10', 'Duchess to play.', 78),
(303, 8239, '2003-12-02 08:01:03', 'His voice has a.', 79),
(304, 2707, '2004-08-01 10:20:32', 'Alice to find my.', 80),
(305, 7918, '1982-02-16 22:14:26', 'Hatter; \'so I.', 81),
(306, 3387, '1981-08-05 05:30:33', 'Pigeon. \'I\'m NOT a.', 82),
(307, 3457, '1988-08-06 22:27:31', 'Hatter. \'He won\'t.', 83),
(308, 1895, '1980-11-11 21:04:29', 'I\'ll tell you more.', 84),
(312, 4211, '2001-11-30 10:07:26', 'Alice, \'to speak.', 88),
(313, 8807, '1988-02-01 18:23:33', 'Alice, who was.', 89),
(314, 4363, '2004-09-06 08:41:51', 'He looked at Two..', 90),
(315, 1537, '1990-07-12 10:30:37', 'I to do?\' said.', 91),
(316, 194, '1975-12-01 13:32:53', 'Dormouse..', 92),
(317, 7603, '1998-02-18 05:38:06', 'The Dormouse had.', 93),
(318, 925, '1996-05-01 19:41:54', 'Alice for.', 94),
(319, 2012, '1995-05-05 03:37:49', 'I don\'t keep the.', 95),
(320, 4281, '1994-08-09 11:02:44', 'King hastily said,.', 96),
(321, 8501, '1974-09-16 13:57:54', 'If I or she fell.', 97),
(322, 8583, '1972-05-07 18:04:59', 'MARMALADE\', but to.', 98),
(323, 249, '2017-10-26 03:08:34', 'Majesty!\' the.', 99),
(324, 7433, '2000-10-15 05:31:36', 'Pigeon in a.', 100),
(325, 6460, '2013-03-06 03:23:20', 'March Hare. \'I.', 101),
(326, 865, '1987-05-27 14:51:06', 'YOUR adventures.\'.', 102),
(327, 4055, '2001-05-09 22:06:41', 'However, when they.', 103),
(328, 3999, '1981-10-25 09:26:37', 'Duchess said in a.', 104),
(329, 1581, '2008-04-01 13:31:11', 'Stigand, the.', 105),
(330, 8081, '1976-08-09 02:35:21', 'Alice started to.', 106),
(331, 2516, '2006-03-04 09:46:43', 'I almost wish I\'d.', 107),
(332, 6436, '1989-06-30 00:58:22', 'THIS size: why, I.', 108),
(333, 4597, '1985-03-30 05:20:02', 'Alice in a.', 109),
(334, 5029, '2010-03-06 04:03:32', 'Hatter instead!\'.', 110),
(335, 9744, '1974-05-15 17:41:32', 'March Hare.', 111),
(336, 3733, '1975-05-18 17:00:52', 'The Panther took.', 112),
(340, 3789, '1982-08-06 16:37:50', 'Mouse, who seemed.', 4),
(341, 2827, '2003-04-19 18:05:03', 'I give you fair.', 5),
(342, 7380, '1997-08-07 08:49:46', 'March Hare: she.', 6),
(343, 6369, '1981-08-10 16:58:47', 'ME, and told me he.', 7),
(344, 5698, '1972-09-15 17:46:43', 'Oh, how I wish I.', 8),
(345, 5312, '2005-05-04 15:22:12', 'Alice after it,.', 9),
(346, 3071, '1986-01-15 08:45:15', 'So Alice began to.', 10),
(347, 2019, '1972-12-17 07:47:11', 'Who would not open.', 11),
(348, 9252, '2004-11-04 15:42:56', 'Mock Turtle to.', 12),
(349, 8044, '1990-03-04 13:12:58', 'Hatter, \'or you\'ll.', 13),
(350, 7314, '1990-01-23 13:49:08', 'I wish you.', 14),
(351, 5656, '1996-10-28 17:38:13', 'Queen. \'Well, I.', 15),
(352, 1423, '1993-09-13 18:12:10', 'YOUR shoes done.', 16),
(353, 2302, '1980-11-20 18:29:41', 'King. \'When did.', 17),
(354, 7046, '2006-02-18 02:59:57', 'Mock Turtle. So.', 18),
(355, 8001, '1970-04-10 04:24:18', 'I say--that\'s the.', 19),
(356, 3682, '1971-01-14 06:54:28', 'I think that there.', 20),
(357, 9014, '1972-06-08 07:31:25', 'Rabbit, and had no.', 21),
(358, 3402, '2016-06-14 22:57:17', 'Gryphon went on..', 22),
(359, 6264, '1999-02-24 04:01:00', 'Duchess\'s knee,.', 23),
(360, 2152, '1985-12-16 22:01:33', 'Alice, \'as all the.', 24),
(361, 9317, '1991-09-25 12:26:45', 'Queen in a.', 25),
(362, 9923, '1971-01-14 03:21:25', 'Alice; \'all I know.', 26),
(363, 3352, '2007-08-29 16:56:29', 'She was moving.', 27),
(364, 8422, '1971-05-31 05:44:12', 'CHAPTER III. A.', 28),
(368, 215, '1976-06-06 22:44:21', 'Turtle.\' These.', 32),
(369, 7282, '1970-12-20 03:20:55', 'Mock Turtle. \'No,.', 33),
(370, 5610, '2000-05-13 02:40:48', 'Bill,\' thought.', 34),
(371, 7464, '2000-04-28 10:02:09', 'YOUR adventures.\'.', 35),
(372, 1083, '2008-08-11 18:50:51', 'Alice, and she.', 36),
(373, 9260, '1993-02-11 17:07:21', 'ALICE\'S RIGHT.', 37),
(374, 6260, '1997-07-19 03:37:19', 'Majesty,\' said the.', 38),
(375, 4015, '1985-11-29 18:57:16', 'PLEASE mind what.', 39),
(376, 7823, '2004-04-06 02:54:42', 'Queen, but she.', 40),
(377, 8707, '1995-10-04 23:54:21', 'She had just.', 41),
(378, 9299, '1973-12-10 02:09:45', 'Bill,\' thought.', 42),
(379, 3, '1994-01-11 02:55:10', 'Pigeon; \'but if.', 43),
(380, 4652, '1999-06-19 15:57:03', 'King. \'When did.', 44),
(381, 5663, '1972-06-10 03:17:38', 'I almost think I.', 45),
(382, 5995, '1981-09-28 15:04:51', 'ME, and told me he.', 46),
(383, 1885, '1986-12-18 03:07:14', 'Mock Turtle:.', 47),
(384, 7207, '2000-07-13 09:39:29', 'Just then she.', 48),
(385, 9658, '1977-11-19 23:54:57', 'Hatter grumbled:.', 49),
(386, 2955, '1983-07-13 09:17:47', 'I don\'t like them.', 50),
(387, 5706, '1996-02-15 05:03:54', 'She was a table,.', 51),
(388, 7663, '2008-02-07 03:40:31', 'Suppress him!.', 52),
(389, 2823, '2003-02-04 15:44:17', 'Alice thought the.', 53),
(390, 4004, '1980-11-18 13:35:50', 'At last the Mouse,.', 54),
(391, 5860, '1986-03-18 03:11:28', 'I almost wish I.', 55),
(392, 1956, '1989-11-15 00:46:44', 'Gryphon, and the.', 56),
(396, 1633, '1972-06-07 01:55:59', 'Alice, every now.', 60),
(397, 5119, '1978-10-13 03:40:35', 'Alice guessed in a.', 61),
(398, 4267, '1970-01-08 21:35:50', 'That\'s all.\'.', 62),
(399, 1999, '2014-11-15 04:43:21', 'The Hatter opened.', 63),
(400, 4368, '1995-07-13 13:43:42', 'I know I do!\' said.', 64),
(401, 9861, '1997-12-10 01:50:40', 'Yet you turned a.', 65),
(402, 8588, '1973-05-13 15:39:46', 'Alice ventured to.', 66),
(403, 9814, '1984-02-09 11:54:32', 'March Hare. \'It.', 67),
(404, 1171, '1970-12-14 17:43:32', 'CHAPTER XII..', 68),
(405, 6346, '2018-07-17 20:53:39', 'Alice thought over.', 69),
(406, 300, '1980-06-21 21:30:01', 'Mock Turtle, \'but.', 70),
(407, 5508, '2017-01-30 08:20:21', 'Bill\'s got to go.', 71),
(408, 6972, '1970-02-23 23:19:20', 'I will tell you my.', 72),
(409, 263, '1978-03-18 06:28:28', 'I to get dry.', 73),
(410, 9105, '1973-11-04 19:24:53', 'HER about it.\'.', 74),
(411, 4582, '2000-02-27 03:50:53', 'Mock Turtle. \'She.', 75),
(412, 6764, '2017-06-12 08:04:07', 'Rabbit began..', 76),
(413, 7728, '2011-08-20 13:02:34', 'I can go back by.', 77),
(414, 3516, '1972-07-22 17:02:52', 'Dormouse fell.', 78),
(415, 8967, '1981-07-10 21:32:46', 'Very soon the.', 79),
(416, 1145, '1980-10-13 18:55:04', 'And she began.', 80),
(417, 1082, '1970-05-15 22:31:45', 'The jury all wrote.', 81),
(418, 9579, '2007-03-14 10:23:08', 'I to do?\' said.', 82),
(419, 1700, '1974-06-16 19:13:53', 'Queen said.', 83),
(420, 1721, '2013-10-06 20:25:32', 'Hatter added as an.', 84),
(424, 7723, '2006-03-23 02:00:24', 'THE KING AND QUEEN.', 88),
(425, 2337, '2005-07-21 14:38:34', 'Gryphon, half to.', 89),
(426, 7293, '1996-07-09 08:37:14', 'I\'m not looking.', 90),
(427, 6971, '2010-06-11 05:01:09', 'King; and as it.', 91),
(428, 3850, '1987-01-09 02:47:22', 'But, now that I\'m.', 92),
(429, 6408, '1970-03-09 05:54:38', 'Alice didn\'t think.', 93),
(430, 3494, '1982-11-18 12:52:04', 'White Rabbit, \'and.', 94),
(431, 699, '2001-04-15 12:12:41', 'Ugh, Serpent!\'.', 95),
(432, 524, '2011-11-25 23:21:38', 'And it\'ll fetch.', 96),
(433, 8004, '1998-08-07 20:50:08', 'I\'ll get into that.', 97),
(434, 894, '1982-03-26 10:59:23', 'Cat\'s head with.', 98),
(435, 2620, '2009-09-29 12:35:30', 'After a while,.', 99),
(436, 4149, '2001-08-01 05:15:58', 'Queen had ordered..', 100),
(437, 2120, '1980-09-17 06:37:57', 'Indeed, she had to.', 101),
(438, 2504, '1999-03-27 11:21:38', 'I\'d hardly.', 102),
(439, 6859, '2008-03-11 01:48:33', 'In another moment.', 103),
(440, 1106, '1972-11-13 17:06:01', 'ARE a simpleton.\'.', 104),
(441, 9898, '1988-12-26 02:24:09', 'CAN all that.', 105),
(442, 4301, '1980-02-15 18:24:17', 'FATHER WILLIAM,\'.', 106),
(443, 9487, '2003-04-16 23:08:40', 'Majesty!\' the.', 107),
(444, 3466, '2017-08-13 01:52:33', 'Gryphon. \'I mean,.', 108),
(445, 9378, '1975-02-28 16:52:24', 'I should frighten.', 109),
(446, 9056, '1973-12-11 06:59:00', 'WHAT?\' said the.', 110),
(447, 3326, '1987-01-12 08:36:52', 'I tell you!\' said.', 111),
(448, 4661, '1983-11-09 04:47:33', 'I didn\'t know that.', 112),
(452, 5130, '2006-10-08 15:01:01', 'White Rabbit read.', 4),
(453, 9593, '1974-07-29 21:42:07', 'King. The next.', 5),
(454, 354, '1972-12-27 07:13:27', 'Alice could see.', 6),
(455, 4898, '1975-05-13 12:14:36', 'Mouse, turning to.', 7),
(456, 9485, '1972-09-22 20:22:26', 'Mock Turtle.', 8),
(457, 483, '2017-06-09 21:12:16', 'I got up this.', 9),
(458, 9876, '2000-08-03 19:49:00', 'Alice whispered,.', 10),
(459, 5333, '1972-09-06 09:59:42', 'Queen ordering off.', 11),
(460, 9545, '2010-12-12 20:04:57', 'New Zealand or.', 12),
(461, 7424, '1992-05-07 13:34:02', 'I BEG your.', 13),
(462, 3520, '1973-03-03 00:06:57', 'The chief.', 14),
(463, 4954, '2010-08-13 13:42:37', 'The Mouse looked.', 15),
(464, 1645, '1977-08-22 09:29:02', 'Normans--\" How are.', 16),
(465, 4554, '2004-07-13 22:45:40', 'I\'ve seen that.', 17),
(466, 3824, '1989-09-19 18:33:09', 'And yet I wish I.', 18),
(467, 5603, '1986-06-04 05:23:24', 'And the Gryphon.', 19),
(468, 8381, '1985-07-14 02:06:24', 'Alice looked all.', 20),
(469, 1725, '1982-01-03 11:30:26', 'She felt that she.', 21),
(470, 4354, '2003-10-02 16:17:28', 'Caterpillar took.', 22),
(471, 4258, '1977-06-27 09:48:14', 'Alice. \'What IS.', 23),
(472, 1566, '2008-05-01 18:25:46', 'Majesty,\' said.', 24),
(473, 9461, '1973-07-11 18:23:16', 'As there seemed to.', 25),
(474, 36, '1980-04-07 00:52:43', 'Number One,\' said.', 26),
(475, 6040, '1981-06-25 16:03:04', 'Hatter: and in.', 27),
(476, 9167, '1982-02-10 01:30:44', 'I begin, please.', 28),
(480, 1753, '1977-09-24 09:00:45', 'Bill, the Lizard).', 32),
(481, 3701, '1990-10-23 10:32:22', 'I must sugar my.', 33),
(482, 6297, '1970-08-06 13:05:52', 'Involved in this.', 34),
(483, 3408, '2011-04-12 04:38:20', 'WOULD twist itself.', 35),
(484, 5230, '2011-01-26 03:13:04', 'Dormouse\'s place,.', 36),
(485, 1913, '1975-04-01 06:59:37', 'Hatter: and in.', 37),
(486, 3012, '2009-12-23 10:19:52', 'Alice. \'Call it.', 38),
(487, 9957, '2003-06-10 00:27:31', 'Presently she.', 39),
(488, 1640, '1977-10-01 15:51:48', 'Mouse, in a fight.', 40),
(489, 327, '1984-10-14 12:53:45', 'The Queen had only.', 41),
(490, 4658, '1994-03-31 03:41:39', 'Lobster; I heard.', 42),
(491, 6058, '2016-10-28 15:26:23', 'I don\'t put my arm.', 43),
(492, 1394, '1988-04-02 17:57:17', 'Gryphon in an.', 44),
(493, 7892, '1995-10-10 08:04:11', 'Half-past one,.', 45),
(494, 4094, '1991-10-14 06:15:08', 'Cheshire cat,\'.', 46),
(495, 1619, '1976-11-29 03:50:09', 'I almost wish I\'d.', 47),
(496, 5435, '1998-01-08 16:42:36', 'Alice, they all.', 48),
(497, 3091, '1999-02-15 04:50:38', 'March Hare took.', 49),
(498, 9035, '1991-07-08 08:53:14', 'I ever heard!\'.', 50),
(499, 2306, '1992-01-14 16:28:15', 'Alice began in a.', 51),
(500, 2507, '1973-05-12 13:37:06', 'She soon got it.', 52),
(501, 6195, '1997-05-17 19:16:03', 'It\'s by far the.', 53),
(502, 7565, '1974-09-02 09:11:26', 'Then followed the.', 54),
(503, 2704, '1970-12-25 03:59:00', 'And the moral of.', 55),
(504, 6700, '1984-07-31 06:19:01', 'How brave they\'ll.', 56),
(508, 4497, '1988-12-08 10:43:49', 'I gave her one,.', 60),
(509, 7675, '1991-12-18 01:32:39', 'No, there were any.', 61),
(510, 8495, '2012-10-13 20:50:45', 'Which shall sing?\'.', 62),
(511, 147, '1987-06-22 11:01:28', 'I\'m NOT a.', 63),
(512, 2892, '1982-02-01 20:03:13', 'There was no one.', 64),
(513, 5451, '2013-12-19 09:41:12', 'NEVER get any.', 65),
(514, 8725, '2014-01-11 12:57:10', 'And will talk in.', 66),
(515, 8356, '2006-08-05 01:32:22', 'This speech caused.', 67),
(516, 1875, '1985-11-17 04:40:35', 'WAS no one to.', 68),
(517, 2818, '2002-11-22 05:34:00', 'All on a little.', 69),
(518, 1851, '1981-02-08 08:24:02', 'THAT\'S the great.', 70),
(519, 1295, '2002-07-12 19:36:46', 'Alice would not.', 71),
(520, 7635, '1991-07-13 03:31:55', 'And oh, my poor.', 72),
(521, 11, '1983-07-21 20:55:00', 'March.\' As she.', 73),
(522, 332, '2011-03-19 02:23:22', 'Alice, as she.', 74),
(523, 7272, '1999-03-24 21:27:21', 'Rabbit noticed.', 75),
(524, 1852, '2018-05-19 15:32:52', 'On which Seven.', 76),
(525, 9804, '2003-09-09 22:36:42', 'For some minutes.', 77),
(526, 9359, '1982-08-19 03:59:46', 'But there seemed.', 78),
(527, 8591, '1993-11-07 23:03:00', 'The only things in.', 79),
(528, 3140, '2002-11-25 08:57:33', 'She soon got it.', 80),
(529, 8154, '1993-04-18 23:56:30', 'Mock Turtle had.', 81),
(530, 4095, '1997-12-20 12:31:04', 'Alice thought this.', 82),
(531, 3017, '1981-01-03 08:17:21', 'Alice, \'it would.', 83),
(532, 9670, '2010-10-03 21:17:50', 'However, I\'ve got.', 84),
(536, 1881, '1989-04-13 02:24:29', 'There was exactly.', 88),
(537, 8910, '1977-04-24 11:10:12', 'Why, I haven\'t had.', 89),
(538, 1325, '2007-07-01 13:26:18', 'The long grass.', 90),
(539, 2835, '2006-10-21 17:44:45', 'Mouse only growled.', 91),
(540, 6076, '1993-01-26 14:40:11', 'I will just.', 92),
(541, 5019, '2016-12-08 14:26:03', 'Duchess\'s cook..', 93),
(542, 264, '2018-04-01 03:09:25', 'King said gravely,.', 94),
(543, 82, '2008-09-07 13:39:29', 'I THINK; or is it.', 95),
(544, 436, '2016-03-05 03:16:02', 'Alice; \'I can\'t.', 96),
(545, 2527, '2001-12-11 18:13:10', 'I ever was at the.', 97),
(546, 2628, '2013-05-30 06:08:50', 'Gryphon, the.', 98),
(547, 5701, '1991-09-01 14:16:49', 'Trims his belt and.', 99),
(548, 8448, '2003-01-15 03:15:47', 'Alice did not.', 100),
(549, 201, '1993-08-24 22:16:17', 'Duchess\'s knee,.', 101),
(550, 9445, '1981-10-11 01:32:50', 'VERY wide, but she.', 102),
(551, 7120, '2013-02-13 23:17:05', 'Duchess said to.', 103),
(552, 7110, '1985-04-01 19:11:31', 'Alice. It looked.', 104),
(553, 7022, '1988-10-10 01:30:50', 'Tortoise because.', 105),
(554, 9843, '1996-06-24 14:57:42', 'March--just before.', 106),
(555, 2756, '1973-12-25 16:05:56', 'M, such as.', 107),
(556, 9701, '1997-03-04 23:10:02', 'She soon got it.', 108),
(557, 9801, '1996-09-09 11:54:51', 'ONE.\' \'One,.', 109),
(558, 3811, '1995-10-15 19:40:24', 'Dodo could not.', 110),
(559, 8013, '1998-08-07 09:16:23', 'While the Duchess.', 111),
(560, 8225, '1977-02-10 17:17:43', 'The further off.', 112),
(564, 2866, '1984-09-13 01:24:54', 'SAID was, \'Why is.', 4),
(565, 834, '1995-03-02 00:25:44', 'Bill, the Lizard).', 5),
(566, 5896, '1976-02-13 18:00:51', 'CHAPTER III. A.', 6),
(567, 4291, '1973-07-10 22:39:12', 'Alice. \'Did you.', 7),
(568, 7471, '1972-05-29 20:58:17', 'Gryphon. \'Do you.', 8),
(569, 6395, '2008-01-08 17:22:26', 'Hatter. He had.', 9),
(570, 1397, '1971-10-28 15:50:59', 'The cook threw a.', 10),
(571, 6906, '1997-10-18 05:29:48', 'Mock Turtle. \'Very.', 11),
(572, 2491, '1987-04-07 21:58:17', 'Once more she.', 12),
(573, 2551, '1977-07-05 07:21:46', 'SIT down,\' the.', 13),
(574, 9376, '1997-12-13 04:23:05', 'Alice; \'it\'s laid.', 14),
(575, 1239, '1989-11-14 22:43:41', 'OUTSIDE.\' He.', 15),
(576, 7910, '2005-06-14 02:52:13', 'King in a great.', 16),
(577, 9426, '1989-06-09 21:38:29', 'Suddenly she came.', 17),
(578, 6494, '1984-09-12 08:47:35', 'Queen was close.', 18),
(579, 6225, '1994-09-01 17:58:04', 'The Hatter shook.', 19),
(580, 6647, '1995-05-18 09:09:35', 'Alice thought this.', 20),
(581, 1019, '2011-02-17 16:11:09', 'So she was small.', 21),
(582, 9743, '1972-10-17 07:28:48', 'The Fish-Footman.', 22),
(583, 5184, '1972-10-23 10:05:09', 'March Hare took.', 23),
(584, 3082, '1972-09-09 23:05:39', 'Alice: \'three.', 24),
(585, 5577, '1996-02-23 14:07:52', 'Mouse, do you mean.', 25),
(586, 3510, '1983-09-07 18:05:06', 'I don\'t take this.', 26),
(587, 1183, '2000-03-29 23:19:12', 'Lizard) could not.', 27),
(588, 1033, '1980-01-19 22:54:59', 'Mabel, for I know.', 28),
(592, 8403, '2002-04-26 08:51:24', 'Dodo replied very.', 32),
(593, 7518, '1990-05-09 09:06:30', 'Prizes!\' Alice had.', 33),
(594, 1674, '1977-06-13 12:13:52', 'Mouse replied.', 34),
(595, 8935, '1972-09-28 10:00:13', 'Alice, who was.', 35),
(596, 4583, '1987-06-30 21:24:34', 'Alice thought.', 36),
(597, 6556, '1984-02-03 12:43:19', 'I\'ve often seen a.', 37),
(598, 9076, '1982-10-03 22:57:54', 'Mock Turtle yet?\'.', 38),
(599, 5353, '1971-11-02 04:15:18', 'There could be NO.', 39),
(600, 6132, '1984-10-12 16:48:26', 'Alice, as she left.', 40),
(601, 7075, '1976-06-14 01:46:14', 'Beautiful,.', 41),