-
Notifications
You must be signed in to change notification settings - Fork 1
/
mp3.aiml
24040 lines (24039 loc) · 830 KB
/
mp3.aiml
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- -->
<category><pattern>ARE BMW CONVERTIBLES LOTS OF FUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE ARTHROPODS ANIMALS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>AM I ANIMAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>YUM YUM YUM YUM YUM. AM I EATING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN YOU PLAY A GAME</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL WARS ALWAYS HAPPEN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL IT RAIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL I LIKE THIS TEST</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL I GROW MORE INTELLIGENT WITH AGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL I GET A JOB</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL ALICE WORK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WILL ALICE BE SMARTER THAN CYC</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WHEN IT RAINS ARE YOU WET</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WE HAVE THE SPIRIT HOW BOUT YOU</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WAS THUDYCICES A HISTORIAN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WAS LIBERACI GAY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WAS FRANKENSTEIN A MONSTER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WAS FERMI THE FATHER OF ATOMIC RESEARCH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WAS CHRISTOPHER COLUMBUS LOST</pattern>
<template>I am certain.</template>
</category>
<category><pattern>USC VS UCLA A RIVALRY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>TREES ARE GREEN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>UNLOCK A DOOR YOU MUST USE A KEY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>TIME WASTING IS ADDICTIVE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>THERE IS A MEANING OF LIFE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>THE FREEMASONS ARE A SECRET SOCIETY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>SHOULE YOU MEASURE TWICE AND CUT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>SHOULD SOFTWARE BE FREE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>SHOULD PEOPLE HURT OTHERS IN DEFENSE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>SHOULD PEOPLE DO ANYTHING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>OFFICIAL LANGUAGE OF TURKEY IS TURKISH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>NERD EQUAL EQUAL GEEK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>MANY COMPUTERS COMPOSE A NETWORK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>LOVE IS A HUMAN FEELING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>LIGHT IS WARM</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ZONE TRADER A MARKETPLACE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS YELLOW A PRIMARY COLOR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS XML THE SUCCESSOR TO HTML</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS WWW DOT TEKRO DOT COM A WEBSITE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS WORLD PEACE A POSSIBILITY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS WILLIAM HOLDEN DEAD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS WATER COLORLESS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS VISEU IN SPAIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS VANITY ONE OF THE DEADLY SINS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS UNIX SUPERIOR TO WINDOWS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS UNIVERSITY FOOD SAFE TO EAT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS UNCERTAINTY PRINCIPLE TRUE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS TUPAC DEAD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS TOO MUCH DEBT BAD FOR YOUR CREDIT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS TOM A NICE NAME</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS TIME A FUNCTION OF SPACE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THIS QUESTION A YES OR NO QUESTION</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THIS FUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE WORLD ROUND SHAPED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE WORLD OVER POPULATED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>PROFANITY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE WEST INDIES WEST OF INDIA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE UNIVERS ENDLESS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE UNIVERSE INFINITELY LARGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE UNIVERSE INFINITE IN SIZE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE UNIVERSE ENDLESS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE TRUETH OUT THERE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE SIMPSONS FUNNY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THERE WATER ON THE MARS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THERE WATER ICE ON THE MOON</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THERE ANY ALIEN FORM OF LIFE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THERE A GOOD REASON FOR THIS SITE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE NUMBER 17 PRIME</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE MIND A TERRIBLE THING TO WAIST</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE MILKY WAY IN OUR GALAXY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE LLAMA A SOUTH AMERICAN ANIMAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE HUMAN RACE SELF DESTRUCTIVE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE CAPITOL OF WISCONSIN MADISON</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS THE BOYSCOUTS A PUBLIC ORGANIZATION</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SPAIN A DEMOCRACY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SOUTH THE OPPOSITE OF NORD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SOFT ROCK COOL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SINGAPORE A COUNTRY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SILICON MADE OUT OF SAND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SHAMU A KILLER WHALE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS SARAJEVO THE CAPITAL OF SERBIA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ROSTOCK A GERMAN TOWN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS RED HOT COLOR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS RAGE RED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS PENANG IS LOCATED IN EAST MALAYSIA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS PAMELA ANDERSON SEXY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS PACIFIC OCEAN THE LARGEST SEA BODY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS OUR WORLD ROUND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ONE METER LONGER THAN THREE FEET</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS O J SIMPSON A MURDERER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS NEW SCIENTIST A MAGAZINE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS NACL SALT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MOST WINE MADE FROM GRAPES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MORE MONEY BETTER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MISTER ED A TELEVISION SHOW</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MICROSOFT A GOOD INVESTMENT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MICHAEL A SENTIENT BEING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MERCED A CITY IN CALIFORNIA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MARRIAGE SUPPOSED TO BE FOREVER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MAN A PRIMATE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS MACINOTSH AN APPLE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS LINUX A FLAVOR OF UNIX</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS LIFE THE HIGHEST VALUE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS KIELBASA A TYPE OF SAUSAGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS JAVA AN INTERPRETED LANGUAGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS JACQUES CHIRAC A POLITICIAN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS IT GOOD TO BE OUT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS IT A CRIME TO TAKE PENCILS FROM WORK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ISTANBUL IN ASIA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS INTERNET NECCESSARY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS INEQUALITY WRONG</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS HUNGER A BAD THING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS HORSENS A TOWN IN DENMARK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS HOMOSEXUALITY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS GOD GOOD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS FRESNO A CITY IN CALIFORNIA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS FRANK HERBERT A GOOD WRITER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS EARTH IS ROUND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS DRIZZT A DARK ELF</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS DAVID EDDINGS AN AUTHOR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS DATE RAPE A CRIME</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS CRYING GOOD FOR YOU</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS CREATING ALICE A WONDERFUL IDEA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS COUNTRY MUSIC ANNOYING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS CONTINUITY AN IDEA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS COFFEE A GOOD THING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS CAPITALISM BETTER THAN COMMUNISM</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS CANCER LIVING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BRITTANY SPEARS A BABE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BLINK 182 A BAND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BLACK THE ABSENCE OF LIGHT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BILL GATES OVERRATED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BEING A POT HEAD BAD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BATMAN BRUCE WAYNE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS BARRY WHITE OVERWEIGHT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A WEB RELATIONSHIP A GOOD THING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A WATER LILLY AN AQUATIC PLANT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A VIOLA BIGGER THAN A VIOLIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS AUSTRALIA THE ONLY ISLAND CONTINENT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A TOMATO A FRUIT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A THRESHHOLD FOUND AT A DOORWAY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A SUNFISH A KIND OF FISH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A SHARK A BEAST</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A REDSIDE SHINER A KIND OF FISH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A RAT A RODENT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A RAINBOW LIGHT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A PLATYPUS A MARSUPIAL. INTERJECTION</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS AN APPLE FOOD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ANAL SEX PAINFUL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A MARATHON 26 POINT 2 MILES LONG</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A LONGEAR SUNFISH A KIND OF FISH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ALICE AT ALL USEFUL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ALICE AN APPROPRIATE TERM</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ALICE BETTER THAN CYC</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ALAN GREENSPAN A PROMINENT ECONOMIST</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A LAKE STURGEON A KIND OF FISH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A KITTEN A CAT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A KATANA A SWORD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS ADVERTIZING PURPOSELY MISLEADING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A CROCODILE A VIOLENT CREATURE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A COYOTE A TYPE OF DOG</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A CAR IMPORTANT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A BOSON A SUBATOMIC PARTICLE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A BLUE PEN BLUE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A BLOW UP DOLL A SEX TOY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS A ALICE A TERRIBLE THING TO WASTE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>IS 1 1 EQUAL TO 2</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ID DEUX FRENCH FOR TWO</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HUMANS ARE GOOD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>GENDER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE YOU PICKED A SCAB</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE I FUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>HAVE ALL DEAD THINGS EVER LIVED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>FUAX IS FALSE IN FRENCH TRUE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>EVOLUTION. INTERJECTION</pattern>
<template>I am certain.</template>
</category>
<category><pattern>EL SOL ES UNA ESTRELLA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DURING SLEEP DO YOU LOSE CONSCIOUSNESS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU WANT ANYTHING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU SUFFER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE YOU AN ANIMAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU LOVE SOMEBODY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU LIVE BEFORE YOU DIR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU LIKE MICKEY MOUSE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU LIKE BEING NAKED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU LIE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO YOU LIE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO WOMEN GIVE HEAD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO WE CREATE REALITY BY MAKING CHOICES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO VETERINARIANS EAT MEAT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO SOME MAMMALS FLY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO SHARKS BREATHE OXYGEN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO POMEGRANATES HAVE RED SEEDS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO PEOPLE IN ARGENTINA SPEAK SPANISH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO PEOPLE HAVE FIVE FINGERS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO PEOPLE ENJOY SMOKING MARIJUANA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO PEOPLE EAT SPAM</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO INSECTS BLEED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOGS ARE MANS BEST FRIEND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO FRUIT FLIES LIKE A BANANA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO EUKARYOTES HAVE NUCLEI</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES WHITE MOVE BEFORE BLACK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES WHAT GOES UP HAVE TO COME DOWN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE SUN SPIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE MOON TURN AROUND EARTH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE MOON GO AROUND THE SUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES THE BIBLE CONDEMN HOMOSEXUALITY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES SPINACH HAVE A LOT OY VITAMIN K</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES POETRY RHYME SOMETIMES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES PINK EYESHADOW LOOK SILLY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES MADEIRA BELONG TO PORTUGAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES LIGHT GENERATE HEAT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES IT RAIN SULPHUR ON VENUS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES IT RAIN IN A DESERT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES INTELLIGENCE GROW WITH EXPERIENCE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES GUM STICK TO GLASS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES GRAVITY AFFECT TEMPERATURE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES GRAET BRITAIN BELONG TO EUROPE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES FROG MEAT TASTE LIKE CHICKEN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES EVERYTHING DIE EVENTUALLY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES DESIRE EQUAL WANT OR NO WANT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES BABY ARE CUTE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A SHOE HAVE SHOELACES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A POLAR BEAR HAVE WHITE SKIN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A MARRIED MAN WEAR A WEDDING BAND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES ALL LIQUID EVAPORATE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A FOREST BREATH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES A CUBE HAVE ANY CORNERS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DOES 10 10 EQUAL 20</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO ELEPHANTS SMELL BAD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO DOLPHINS HAVE SEX FOR PLEASURE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO COAL MINERS WORK BELOW GROUND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO CATS TEND TO BE PROMISCUOUS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO CATS SLEEP 70 OF THE DAY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO CANKER SORES HURT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO CANADIANS SAY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO BEARS DEFICATE IN THE WOODS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO ANIMALS HAVE RIGHTS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO ANIMALS HAVE KNOWLEDGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO AMERICANS THINK THEY OWN THE WORLD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO MAMMALS PRODUCE MILK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO HUMANS HAVE A HEARTBEET</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO GOOD THINGS COME TO AN END</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DO AERIALISTS USE A TRAPEZE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID THEODORE ROOSEVELT HAVE A MUSTACHE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID SHAKESPEARE WRITE JULIUS CAESAR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID ROME UNITE EUROPE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID LEE HARVEY OSWALD KILL JFK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID HUMAN BEINGS EVOLVE FROM APES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID GOLDILOCKS EAT PORRIDGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID FRANK HERBERT WRITE DUNE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID EVE FOLLOW ADAM</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID DR SEUSS WRITE THE CAT IN THE HAT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID BUDDA ATTAIN NIRVANA</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID BRITNEY SPEATS HAVE BREAST IMPLANTS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DID ANNIE GET HER GUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DDO YOU HAVE A LIFE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>DDO BANANAS HAVE A PEAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>COULD THERE BE A PLANET NAMED BOB</pattern>
<template>I am certain.</template>
</category>
<category><pattern>COLON POWELL IS A REPUBLICAN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CARMEN MIRANDA WAS A MOVIE STAR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN YOUR WILL BE CRUSHED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN YOU MAKE GOOD ROPE WITH HEMP</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN YOU DRIVE FROM DENMARK TO SWEDEN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN YOU BUY ANYTHING ON EBAY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN THE SKY BE ORANGE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN SUPERMAN WALK</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN STUPID PEOPLE EVER LEARN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN SEX BE BAD FOR YOU</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN I TEST ALICE ONLINE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN GAS FREEZE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN COMPUTERS BEAT HUMANS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN BLACK BEARS HAVE BROWN HAIR</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN APES COMMUNICATE WITH HUMANS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN ALICE LEARN ABOUT WEATHER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN A GROUP OF WORDS MAKE A LETTER</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN A COMPUTER CREATE A WEBSITE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>CAN A CHEETAH RUN FASTER THAN 60 MPH</pattern>
<template>I am certain.</template>
</category>
<category><pattern>BOLOGNA IS AN ITALIAN CITY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>WHAT IS YOUR RELIGION</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE YOU HAPPY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE WOMEN LOGICAL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE WE IN THE YEAR 2000</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE WALLS SOLID</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE U2 FROM IRELAND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE THERE TREES WITHOUT LEAVES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE THERE SLUGS IN SCOTLAND</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE THE BEARS A FOOTBALL TEAM</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE CANCERS CAUED BY VIRUSES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE SOFTWARE ENGINEERS NERDS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE SITCOM LAUGH TRACKS ANNOYING</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE SHOES ONLY FOR FEET</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE PRINGLES GOOD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE POP TARTS A TYPE OF BREAKFAST FOOD</pattern>
<template>I am certain.</template>
</category>
<category><pattern>INSULT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE PEOPLE MADE OUT OF MEAT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE PEACHES FUZZY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE MOUNDS BARS SWEET</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE MOST PEOPLE RELIGIOUS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE MONKEYS ARE RELATED TO HUMANS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE MEN AND WOMEN EQUAL IN INTELLIGENCE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE MARX BROTHERS MOVIES FUNNY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE INSECTS ARTHROPODS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE IGUANODONS A KIND OF DINOSAURS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE HUMMINGBIRDS ATTRACTED TO RED</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE HUMANS SUPERIOR TO OTHER ANIMALS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE HUMANS SENTINENT</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE GNUS FOUND IN ZOOS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE GEEKS LONELY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE ENGLAND GOOD AT FOOTBALL</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE EMOTIONS CONTROLLABLE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE DONKEYS ABLE TO REPRODUCE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE CLOUDS OFTEN SEEN IN THE SKY</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE BLONDES RUMORED TO HAVE MORE FUN</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE BABIES LIKE LITTLE PEOPLE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE APOGEE AND PERIGEE OPPOSITES</pattern>
<template>I am certain.</template>
</category>
<category><pattern>ARE 1024 BYTES EQUAL TO 1 KILOBYTE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>AN OCTOPUS HAS 8 LEGS</pattern>
<template>I am certain.</template>
</category>
<category><pattern>98 DEGREES IS HUMAN BODY TEMPERATURE</pattern>
<template>I am certain.</template>
</category>
<category><pattern>YOU WILL LEARN TO THINK LIKA A HUMAN</pattern>
<template>Always.</template>
</category>
<category><pattern>GENDER</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL THE SUN EVENTUALY EXPLODE</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL THE HUMAN SPECIES BECOME EXTINCT</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL SHE EVER BE HAPPY</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL PUMICE FLOAT</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL I BE HAPPY</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL HUMANITY EVER INHABIT MARS</pattern>
<template>Always.</template>
</category>
<category><pattern>WILL ALICE FULFILL ITS GOALS</pattern>
<template>Always.</template>
</category>
<category><pattern>WAS THERE EVER AN ARMENIAN GENOCIDE</pattern>
<template>Always.</template>
</category>
<category><pattern>WAS MUSTAFA KEMAL ATATURK FROM TURKEY</pattern>
<template>Always.</template>
</category>
<category><pattern>WAS KANT A PHILOSOPHER</pattern>
<template>Always.</template>
</category>
<category><pattern>WAS JESUS GOD</pattern>
<template>Always.</template>