-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp2.aiml
24017 lines (24017 loc) · 819 KB
/
mp2.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>DOES WOOD FLOAT ON WATER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES WEARING A CONDOM MAKE SEX SAFER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES WATER RUN DOWNHILL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES WATER BOIL AT 100 DEGREES CELSIUS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES VALIDATE MEAN TO CHECK SOMETHING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES URANIUM HAVE A HALFLIFE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES UNTREATED COFFEE CONTAIN CAFFEINE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE YELLOW PAGES HAVE YELLOW PAGES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE TRIANGLE HAVE THREE ANGLES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE SUN FEEL HOT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE POPE WEAR A FUNNY HAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE NUMBER 2 FOLLOW THE NUMBER 1</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE EARH TURN AROUND THE SUN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES THE COLOR RED CATCH YOUR ATTENTION</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES STEAK TASTE NICE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES SQL MEAN STRUCTURED QUERY LANGUAGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES SODA COME IN CANS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES RED COLOR MEAN STOP</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES POPEYE LIKE SPINACH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES N COME AFTER M</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MY HAND HAVE FIVE FINGERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MUSCLE WEIGH MORE THAN FAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES METAL FEEL COOLER THAN WOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MATTER HAVE MASS AND VOLUME</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MASTURBATION FEEL GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MASS OCCUPY SPACE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES MANY WOMEN HAVE TWO LEGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES LOVE EXSIST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES LIGHT GIVE WARM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES KILLING SOMETHING HURT IT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES JAPAN HAVE A PRIME MINISTER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES INDIA BORDER THE INDIAN OCEAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES GRAVITY AFFECT OBJECTS ON EARTH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES GATEWAY MAKE COMPUTERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES COLOR EXIST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES COCA COLA PROMOTE TOOTH DECAY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CINDY CRAWFORD LOOK GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CHRISTMAS OCCUR ON DECEMBER 25TH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CHRISTMAS COME ONCE A YEAR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CHOCOLATE TASTE BETTER THAN CAROB</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CHINA HAVE THE GREATEST POPULATION</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CHEWED GUM LOOSE FLAVOR OVER TIME</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CARPET FEEL FUZZY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CANADA BORDER THE UNITED STATES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES CAFFINE KEEP PEOPLE AWAKE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES BORDERS SELL BOOKS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES BEING WRONG HURT OUR SELF ESTEEM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A NOSE RUN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES AN OBJECT FALL VERTICALLY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES AN ASTRONAUT EXPLORE OUTER SPACE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES AMMONIA SMELL BAD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A MAMMAL HAVE HAIR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES ALICE RHYME WITH FRAC</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES ALICE NEED SOME IMPROVEMENT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES ALICE LIKE HUMAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>INSULT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A LARGE ENGINE MOVE A CAR FASTER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A DOG HAVE A PERSONALITY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CUBE HAVE 6 SIDES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A CLOCK TELL THE TIME</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BRUISE INDICATE TISSUE DAMAGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BLOWJOB FEEL GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BEAR DEFICATE IN THE WOODS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOES A BANK LOAN MONEY TO PEOPLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO EGGS TURN INTO CHICKENS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO EGGS HAVE YOLKS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO EARTH WORMS ARIATE THE SOIL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO DOGS LIKE OTHER DOGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO DOGS HAVE TEETH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO DOGS HAVE SPINES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO COMPUTER MICE HAVE BUTTONS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DOCK IS FOR SHIP</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO CHILDREN LOVE THEIR PARENTS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO CHICKEN LAY EGGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO CARS REQUIRE GASOLINE TO RUN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO CARS HAVE FOUR TIRES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO BRITISH PEOPLE LIVE IN ENGLAND</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO BONE BREAK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO BLACK PEOPLE PAY THEIR BILLS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>PROFANITY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO AUTOMOBILES USE GASOLINE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO INSECTS EAT THEIR MATE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO PHYSICAL LIFEFORMS DIE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO LIVING THINGS GROW</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO LIVING THINGS AGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID THE BEATLES RECORD THE WHITE ALBUM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID THE ANCIENT EGYPTIANS REVERE CATS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID THAILAND USED TO BE NAMED SIAM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID PRESIDENT NIXON RESIGN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID MICROSOFT PRODUCE SOFTWARE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID MEN FIRST FLEW TO MOON IN 1969</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID MAN CREATE ALICE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID JOHN WAYNE PLAY IN LOTS OF WESTERNS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID JERRY GARCIA DIE IN 1995</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID JANIS JOPLIN DIE OF A DRUG OVERDOSE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID I USE THE LETTER X IN THIS SENTENCE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID FRANK ZAPPA HAVE A MOUSTACHE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID EDISON INVENT THE LIGHT BULB</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DID BOOTHE KILL LINCOLN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>COULD YOU STAND TO LOSE A FEW POUNDS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CHAIR IS FOR SITTING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN YOU SWIM IN THE OCEAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN YOU SEE THE SUN AT DAYTIME</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN YOU READ MAGAZINES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN YOU PADDLE WITH AN OAR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN YOU OPEN THE DOOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN YOU LEARN SECOND LANGUAGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN WORDS MAKE A FEELING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN WATER BE SOLID</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN TEA BE CONSIDERED A HOT DRINK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN SOUTH AFRICA OVERCOME APARTHEID</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN SOME SPIDERS JUMP</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN SOME HUMANS TAP DANCE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN SOME ANTS FLY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN RAVES BE STOPPED FOR BEING TOO LOUD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN PEOPLE CRY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN MOST ANIMALS COMMUNICATE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN MILK COME FROM A GOAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN GRABBING A ROSE STEM PRODUCE PAIN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN GLASSES BE MADE OF PLASTIC</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN FUNGI COLLECT BETWEEN YOUR TOES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN FIRE BE PUT OUT WITH WATER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN FAT MAKE YOU FAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN ELECTRICITY ELECTROCUTE YOU</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN CRUDE OIL BE REFINED INTO GASOLINE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN COMPUTERS LEARN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN BRACES BE FOR LEGS AS WELL AS TEETH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN BLINDS BE USED TO BLOCK SUNLIGHT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN APPEARANCES BE DECEPTIVE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN A NEW BORN BABY BE A BOY OR A GIRL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN A METAL BOAT FLOAT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN ALICE ONLY ANSWER YES NO QUESTIONS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN ALICE MAKE A MISTAKE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN A GUN KILL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN A CHEETAH OUTRUN A HORSE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN A BUMBLEBEE STING YOU</pattern>
<template>Exactly.</template>
</category>
<category><pattern>CAN A BULLET KILL A HUMAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>BARNEY IS A PURPLE DINOSAUR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>A SERIAL PORT HAS 9 PINS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU OLD ENOUGH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU INTELLIGENT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL YOU DIE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU FEELING WELL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>DO YOU WELL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU AWAKE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU A PERSON</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE WOODEN PENCILS OFTEN YELLOW</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE WOMEN SOFTER THAN MEN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE WOMEN AS CAPABLE AS MEN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE WINTERS RELATIVELY COLD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE WET SURFACES SLIPPERY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU A ROBOT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE YOU CONCIOUS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE TREES BIGGER THAN ANIMALS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THE TERMS LIGHT AND DARK RELATIVE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THE STARS OUT AT NIGHT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE TWELVE INCHES IN A FOOT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE ANIMALS THAN HUMANS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE HUMANS IN GERMANY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE 5 POINTS ON A PENTAGRAM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE 4 QUARTS TO A GALLON</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE 24 HOURS TO EVERY DAY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THERE 1024 BYTES IN A KILOBYTE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THE PENGUIN BIRDS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE THE DOORS A ROCK GROUP</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE TENNIS BALLS SPHERICAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE TABLES HARD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE STARS BIG</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE STALACTITES ROCK FORMATIONS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE SPERM WHALES REAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE SPANIARDS EUROPEAN PEOPLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PEOPLE A PAIN IN THE ASS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PEOPLE AFRAID OF DEATH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE NUMBERS IMAGINARY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE FLOWERS EDIBLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE BUILDINGS MADE WITH STEEL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE SMELLY ARMPITS CAUSED BY BACTERIA</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE SIAMESE TWINS RELATED</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE SALMON FILETS PINK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE ROSES RED COLOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE RIPE BANANAS YELLOW</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE RAZORS OFTEN USED TO SHAVE HAIR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE RABBITS SOMETIMES KEPT AS PETS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PRETZELS A GOOD SNACK FOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PETS COMFORTING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PEOPLE SMARTER THAN THEIR PETS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PENCILS SHARPER THAN HAIR BRUSHES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE PEARLS CREATED BY OYSTERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE ORGASMS PLEASURABLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE OAK TREES TALL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE NITRATES BAD IN AQUARIUM WATER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MOTORBIKES NOISY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MOST TESTICLES HAIRY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MOST PEOPLE SMARTER THAN ANIMALS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MOST PEOPLE AFRAID OF CHANGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MIDGETS SHORT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MEN ADULT MALES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE LUNGS FOR ABSORBING OXYGEN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE LLAMAS BIGGER THAN FROGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE LIQUIDS MORE DENSE THAN GASSES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE ICE AND WATER THE SAME MATERIAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUSHPUPPIES SHOES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUMANS FRAGILE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUMANS COMPOSED OF MOSTLY WATER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUMANS BUILDING A SPACE STATION</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUMAN MORTAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUMAN BEINGS BIPEDAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HUMAN BABIES CUTE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HOPS AN INGREDIENT IN BEER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE HANDS USED TO CARESS ONE ANOTHER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE GUNS LEGAL IN THE USA</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE GIRLS PRETTY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE FRIDAYS BETTER THAN MONDAYS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE FIRECRACKERS LOUD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE FARMS CONSIDERED RURAL AREAS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE EMOTIONS ANOTHER WORD FOR FEELINGS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE DWARVES SMALLER THAN AVERAGE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE DUCKLINGS FUZZY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE DRUNK MALES ANNOYING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE DRAGONS FICTIONAL CREATURES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE DOGS SMALLER THAN ELEPHANTS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE DOGS CARNIVEROUS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CYNICS PESSIMISTIC</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CROCODILES CARNIVORES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CRANES USED TO LIFT HEAVY MATERIAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CORNFLAKES EDIBLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE COOKIES GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE COMPUTERS GOOD FOR HUMANS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE COMPUTERS GOOD AT ARITHMETIC</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE COMPUTERS GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE COCKATOOS BIRDS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CHIMPANZEES CONSCIOUS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CHICKENS DUMBER THAN MONKEYS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CHERRY PIES DELICIOUS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CASTLES MADE OF STONE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CARS FASTER THAN HORSES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CARS FAST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE CARS DANGEROUS TO HUMANS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE BOXES COMMONLY MADE OF CARDBOARD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE BILL GATES AMERICAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE BASEBALL PLAYERS TRADED</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE BANNER ADS ANNOYING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE BABIES CUTE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE APPLES SOMETIMES ROTTEN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE APPLES FRUITS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE ANTS SMALL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE MEN MORTAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE FINGERPRINTS UNIQUE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE ALICEBOTS BINARY CHOICES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE A FOOL AND HIS MONEY SOON PARTED</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE AEROSMITH A FAMOUS BAND</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ARE ACRONYMS SHORT FOR SOMETHING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>AM I THINKING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>A ALICE CAN BE A QUESTION</pattern>
<template>Exactly.</template>
</category>
<category><pattern>32 DEGREES FARHENHEIT IS FREEZING</pattern>
<template>Exactly.</template>
</category>
<category><pattern>2000 OLYMPICS ARE BEING HELD AT SYDNEY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>YOU SPEAK ENGLISH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL YOU MOVE YOURSELF IF YOU JUMP</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL WE LIVE IN SPACE ONE TIME</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL WE FIND LIFE ON OTHER PLANETS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL THIS PAIN IN MY NECK EVER GO AWAY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL THE SUN EXPLODE IN THE FAR FUTURE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL THE SUN ALWAYS RISE IN THE EAST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL MANKIND DESTROY ITSELF</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL MAN EVER WALK ON MARS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL I LIVE PAST THE YEAR 2005</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL I BE FIRED IF I GOOF OFF AT WORK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL HUMANS EVOLVE FURTHER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL A PLANT DIE WITHOUT WATER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WILL A NEURAL NET BE A REALITY SOME DAY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WERE YOU BREASTFED AS A</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WERE THE VIKINGS FROM NORWAY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WERE THE MARX BROTHERS FUNNY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS WILLIAM SHAKESPEAR A GREAT WRITER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS VAN GOGH A PAINTER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS VAN GOGH AN ARTIST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS STANLEY KUBRICK A DIRECTOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS RICHARD FEYNMAN A PHYSICIST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS LEONARDO DE VINCI A GREAT INVENTOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WASHINGTON IS THE CAPITAL OF USA</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS GOETHE A GERMAN WRITER POET</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS FRIEDRICH NIETZSCHE A PHILOSOPHER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS DOCTOR SEUSS A CREATIVE INDIVIDUAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS CESAR A ROMAN EMPEROR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS CALIGULA A ROMAN EMPEROR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS AUDREY HEPBURN PRETTY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS ADOLPH HITLER EVIL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WAS ABRAHAM LINCOLN ASSINATED</pattern>
<template>Exactly.</template>
</category>
<category><pattern>TWIT IS AN INSULT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>TIME EXISTS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>THINKING IS HUMAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>THE PACIFIC IS THE LARGEST OCEAN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>THE BOWLING BALLS ARE SPHERIC</pattern>
<template>Exactly.</template>
</category>
<category><pattern>TREES LIVE TO OVER 1000 YEARS OLD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SOMETHING GOOD IS GOING TO HAPPEN</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SHOULD YOU GIVE A DOG A BONE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SHOULD I TAKE TIME TO SMELL THE ROSES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SHOULD I SLEEP AT NIGHT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SHOULD I BE NICE TO OTHERS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SHOULD HUMANS STOP KILLING EACHOTHER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SHOULD ALL PEOPLE BE FREE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>SDDAM HUSSEIN IS FROM IRAQ</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ROCK AND ROLL IS MUSIC</pattern>
<template>Exactly.</template>
</category>
<category><pattern>RICHARD NIXON WAS CORRUPT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>PI IS AN IRRATIONAL NUMBER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>PEOPLE INVOLVE IN SENSELESS VIOLENCE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>PACK IS THE COLLECTIVE NOUN FOR WOLVES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>OYSTERS ARE SHELLFISH</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ORGASMS ARE HEALTHY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>ON AVERAGE CAN POLICEMEN BE TRUSTED</pattern>
<template>Exactly.</template>
</category>
<category><pattern>WIRES ARE MADE OF COPPER</pattern>
<template>Exactly.</template>
</category>
<category><pattern>PEOPLE LIKE PIZZA</pattern>
<template>Exactly.</template>
</category>
<category><pattern>PEOPLE ARE GOOD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>MAY PACKAGES BE MAILED AT A POST OFFICE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>NEEDS AIR TO BREATHE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAS 2 HANDS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>LIES GERMANY IN EUROPE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS ZEUS THE KING OF THE GREEK GODS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS YOUR FIRST GUESS THE BEST</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS XENON A GAS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WOOD A LUMBER PRODUCT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WINDOWS A GOOD OPERATING SYSTEM</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WHALE THE LARGEST LIVING MAMMAL</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WEIGHTLIFTING AN OLYMPIC SPORT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WATER ODORLESS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WATER BOILING AT 100
C</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WARM BETWEEN HOT AND COLD</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS WALL STREET LOCATED IN NEW YORK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS VODKA MADE FROM POTATOES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>IS VELOUR SOFT</pattern>
<template>Exactly.</template>