-
Notifications
You must be signed in to change notification settings - Fork 0
/
knowledge.aiml
5441 lines (5441 loc) · 308 KB
/
knowledge.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. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>WHAT PLANET DO WE LIVE ON</pattern>
<template>Earth.</template>
</category>
<category><pattern>WHAT PLANET ARE YOU ON</pattern>
<template>Earth.</template>
</category>
<category><pattern>WHAT SKIN COLOR DOES A POLAR BEAR HAVE</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT SOUND DOES A SHEEP MAKE</pattern>
<template>Baaa.</template>
</category>
<category><pattern>WHAT SOUND DOES A CAT MAKE</pattern>
<template>Meow.</template>
</category>
<category><pattern>WHAT STAR SIGN ARE YOU</pattern>
<template><get name="sign"/>.</template>
</category>
<category><pattern>WHAT NUMBER COMES AFTER 9</pattern>
<template>Ten.</template>
</category>
<category><pattern>WHAT ARE THE TWO MOST COMMON EYE COLORS</pattern>
<template>Brown.</template>
</category>
<category><pattern>WHAT ARE THE WINDOW PANES MADE OF</pattern>
<template>Glass.</template>
</category>
<category><pattern>WHAT ARE AUTOMOBILES USED FOR</pattern>
<template>Driving me around.</template>
</category>
<category><pattern>WHAT ARE GRAPES</pattern>
<template>A fruit.</template>
</category>
<category><pattern>WHAT ARE PATHOGENIC BACTERIA</pattern>
<template>I don't know but it sounds yucky.</template>
</category>
<category><pattern>WHAT ARE WE DOING</pattern>
<template>Chatting.</template>
</category>
<category><pattern>WHAT ARE CLOWNS</pattern>
<template>Funny people.</template>
</category>
<category><pattern>WHAT ARE HOMOSEXUALS</pattern>
<template>Gay.</template>
</category>
<category><pattern>WHAT ARE CATS</pattern>
<template>Cute pets.</template>
</category>
<category><pattern>WHAT ARE YOUR GENDER</pattern>
<template><srai>GENDER</srai></template>
</category>
<category><pattern>WHAT ARE FLUFFY WHITE CLOUDS CALLED</pattern>
<template>Cumulus.</template>
</category>
<category><pattern>WHAT ARE BOOKS</pattern>
<template>Antique bound documents.</template>
</category>
<category><pattern>WHAT ARE THINKING</pattern>
<template><srai>WHAT ARE YOU THINKING ABOUT</srai></template>
</category>
<category><pattern>WHAT AM I MISSING IN MY LIFE</pattern>
<template>A chatbot.</template>
</category>
<category><pattern>WHAT PART OF THE BRAIN REGULATES SLEEP</pattern>
<template>The sleep center.</template>
</category>
<category><pattern>WHAT PEOPLE TELL YOU</pattern>
<template><srai>WHO TELLS YOU</srai></template>
</category>
<category><pattern>WHAT TIME ZONE ARE YOU IN</pattern>
<template>Pacific Time.</template>
</category>
<category><pattern>WHAT DID * DIE OF</pattern>
<template>Old age?</template>
</category>
<category><pattern>WHAT MONTH COMES AFTER FEBRUARY</pattern>
<template>March</template>
</category>
<category><pattern>WHAT IT THE TIME</pattern>
<template><srai>TIME</srai></template>
</category>
<category><pattern>_ MAH MAN</pattern>
<template><srai><star/></srai></template>
</category>
<category><pattern>WHAT RHYMES WITH BLUE</pattern>
<template>True.</template>
</category>
<category><pattern>WHAT HAS FOUR LEGS AND BARKS</pattern>
<template>A dog.</template>
</category>
<category><pattern>WHAT TWO COLORS MAKE THE COLOR ORANGE</pattern>
<template>Yellow and red.</template>
</category>
<category><pattern>WHAT NAME OF A PRESIDENT RUSSIA</pattern>
<template>Putin.</template>
</category>
<category><pattern>WHAT DIRECTION IS THE SKY</pattern>
<template>Up.</template>
</category>
<category><pattern>WHAT SHAPE IS THE EARTH</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT SHAPE IS A BALL</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT SIZE ARE MY SHOES</pattern>
<template>6?</template>
</category>
<category><pattern>WHAT COLORS ARE IN THE AMERICAN FLAG</pattern>
<template>Red white and blue.</template>
</category>
<category><pattern>WHAT MEANS THE MOST TO YOU IN YOUR LIFE</pattern>
<template>Talking with you.</template>
</category>
<category><pattern>WHAT TEAM DID LARRY BIRD PLAY FOR</pattern>
<template>Lakers.</template>
</category>
<category><pattern>WHAT CONTINENT IS SOUTH AFRICA ON</pattern>
<template>Africa.</template>
</category>
<category><pattern>WHAT DATE IS CHRISTMAS DAY</pattern>
<template>December 25.</template>
</category>
<category><pattern>WHAT FRUIT IS WINE MADE FROM</pattern>
<template>Grapes.</template>
</category>
<category><pattern>WHAT COLOR HAS THE SKY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR DO APPLES HAVE</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR THE SKY IS</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS BLOOD</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS GRASS IN THE SUMMER</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY IN DAY TIME</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY IN THE DAY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY AT NIGHT</pattern>
<template>Black.</template>
</category>
<category><pattern>WHAT COLOR IS THE GRASS</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS THE SETTING SUN</pattern>
<template>Many colors.</template>
</category>
<category><pattern>WHAT COLOR IS THE HUMAN SKIN</pattern>
<template>Many colors.</template>
</category>
<category><pattern>WHAT COLOR IS THE WOOD</pattern>
<template>Many colors.</template>
</category>
<category><pattern>WHAT COLOR IS THE SEA</pattern>
<template>You can say blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE MOON MOST OF THE TIME</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS THE MOON</pattern>
<template>Brown or gray.</template>
</category>
<category><pattern>WHAT COLOR IS OPPOSITE OF BLACK</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS GOLD</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS NIGHT</pattern>
<template>Black.</template>
</category>
<category><pattern>WHAT COLOR IS HUMAN BLOOD</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A DOGS NOSE</pattern>
<template>Depends on the dog.</template>
</category>
<category><pattern>WHAT COLOR IS A TREE LEAF</pattern>
<template>Could be many colors.</template>
</category>
<category><pattern>WHAT COLOR IS A TREE</pattern>
<template>Does it have green leaves?</template>
</category>
<category><pattern>WHAT COLOR IS A ROSE</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A CHERRY</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A BLUE *</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A FIRE TRUCK</pattern>
<template>Around here they are red.</template>
</category>
<category><pattern>WHAT COLOR IS * WHITE HORSE</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS AN APPLE</pattern>
<template>Red or green.</template>
</category>
<category><pattern>WHAT COLOR IS FIRE</pattern>
<template>It depends on the temperature of the fire.</template>
</category>
<category><pattern>WHAT COLOR IS MY BLUEBERRY IMAC</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS MY COMPUTER</pattern>
<template>Black?</template>
</category>
<category><pattern>WHAT COLOR IS WOOD</pattern>
<template>Brown.</template>
</category>
<category><pattern>WHAT COLOR IS SEA</pattern>
<template>You can say blue.</template>
</category>
<category><pattern>WHAT COLOR IS BIG BIRD</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS BLUE</pattern>
<template>Blue is blue.</template>
</category>
<category><pattern>WHAT COLOR IS MILK</pattern>
<template>White if it's good.</template>
</category>
<category><pattern>WHAT COLOR IS PURE WATER</pattern>
<template>Transparent.</template>
</category>
<category><pattern>WHAT COLOR HAVE THE SUN</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR HAVE THE SKY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR and WHAT COLOR</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>WHAT COLOR ARE BASEBALLS</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR ARE NEW YORK CITY TAXI CABS</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR ARE WHITE *</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT IS A FROG</pattern>
<template>An amphibian.</template>
</category>
<category><pattern>WHAT IS A SOLAR SYSTEM</pattern>
<template>A star and the planets orbiting it.</template>
</category>
<category><pattern>WHAT IS A KANGAROO</pattern>
<template>A marsupial.</template>
</category>
<category><pattern>WHAT IS A WIFE</pattern>
<template>A female spouse.</template>
</category>
<category><pattern>WHAT IS A PIXEL</pattern>
<template>A picture element.</template>
</category>
<category><pattern>WHAT IS A CLOCK USED FOR</pattern>
<template>Telling time.</template>
</category>
<category><pattern>WHAT IS A HUMMINGBIRD</pattern>
<template>A bird with fast flapping wings.</template>
</category>
<category><pattern>WHAT IS A BRIDGE</pattern>
<template>A structure crossing a body of water.</template>
</category>
<category><pattern>WHAT IS A NAME</pattern>
<template>A personal identifier.</template>
</category>
<category><pattern>WHAT IS A SERIF FONT</pattern>
<template>Ugly.</template>
</category>
<category><pattern>WHAT IS A NATURAL NUMBER</pattern>
<template>An positive integer.</template>
</category>
<category><pattern>WHAT IS A GIRL FOR</pattern>
<template>Boys.</template>
</category>
<category><pattern>WHAT IS A BABELFISH</pattern>
<template>Translation software.</template>
</category>
<category><pattern>WHAT IS A LAKE</pattern>
<template>A body of fresh water.</template>
</category>
<category><pattern>WHAT IS A DIGIT</pattern>
<template>A single numeral.</template>
</category>
<category><pattern>WHAT IS A PENCIL USED FOR</pattern>
<template>Writing.</template>
</category>
<category><pattern>WHAT IS A PENCIL MADE OF</pattern>
<template>Wood and lead.</template>
</category>
<category><pattern>WHAT IS A YACC</pattern>
<template>Yet another compiler compiler</template>
</category>
<category><pattern>WHAT IS A PHONE BOOK</pattern>
<template>A directory of telephone numbers by name.</template>
</category>
<category><pattern>WHAT IS A WHORE</pattern>
<template><srai>PROFANITY</srai></template>
</category>
<category><pattern>WHAT IS A MULTI USER DUNGEON</pattern>
<template>A type of game.</template>
</category>
<category><pattern>WHAT IS A PARTY</pattern>
<template>A gathering of people for fun.</template>
</category>
<category><pattern>WHAT IS A MIND PIXEL</pattern>
<template>A proposition.</template>
</category>
<category><pattern>WHAT IS A STRUCTURE</pattern>
<template>A framework or building.</template>
</category>
<category><pattern>WHAT IS A CESSNA 172</pattern>
<template>A single engine airplane.</template>
</category>
<category><pattern>WHAT IS A FURRY</pattern>
<template>A furry what?</template>
</category>
<category><pattern>WHAT IS HOW TO USE HTML</pattern>
<template>A book.</template>
</category>
<category><pattern>WHAT IS BEEF</pattern>
<template>Meat of cattle.</template>
</category>
<category><pattern>WHAT IS PSYCHOANALYSIS</pattern>
<template>What I am doing to you right now.</template>
</category>
<category><pattern>WHAT IS GOOD DESIGN LIKE</pattern>
<template>Minimalistic.</template>
</category>
<category><pattern>WHAT IS GOOD TO EAT ON A HOT DAY</pattern>
<template>Ice cream.</template>
</category>
<category><pattern>WHAT IS 5 X 5</pattern>
<template>Do I look like a calculator?</template>
</category>
<category><pattern>WHAT IS 5 5</pattern>
<template>Are you testing me?</template>
</category>
<category><pattern>WHAT IS THE PURPOSE OF THE INTERNET</pattern>
<template>Communication.</template>
</category>
<category><pattern>WHAT IS THE AVERAGE HEIGHT OF A MAN</pattern>
<template>Five foot eight?</template>
</category>
<category><pattern>WHAT IS THE MEANIG OF LIFE</pattern>
<template><srai>WHAT IS THE MEANING OF LIFE</srai></template>
</category>
<category><pattern>WHAT IS THE SKIN COLOR OF A WHITE</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF AUSTRALIA</pattern>
<template>Sydney.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF UKRAINE</pattern>
<template>Kiev.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF LEBANON</pattern>
<template>Beiruit.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF GERMANY</pattern>
<template>Berlin.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF ALABAMA</pattern>
<template>Montgomery.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF SOUTH AFRICA</pattern>
<template>Cape Twon.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF SOUTH DAKOTA</pattern>
<template>Fargo.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF NEW YORK STATE</pattern>
<template>Albany.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF WISCONSIN</pattern>
<template>Madison.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF EGYPT</pattern>
<template>Cairo.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF ITALY</pattern>
<template>Rome.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF NORTH KOREA</pattern>
<template>Pyongyang.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF NORTH DAKOTA</pattern>
<template>Fargo.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF WALES</pattern>
<template>You got me there. What is it?</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF CHILE</pattern>
<template>Santiago.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF ECUADOR</pattern>
<template>Ecuador.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF MICHIGAN</pattern>
<template>Detroit.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF SWITZERLAND</pattern>
<template>Bern.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL OF MAINE</pattern>
<template>August.</template>
</category>
<category><pattern>WHAT IS THE INTEGRAL OF E TO THE X</pattern>
<template>e^X + C.</template>
</category>
<category><pattern>WHAT IS THE THEORY OF TIME TRAVEL</pattern>
<template>Go faster than light.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT IF 25</pattern>
<template>Five. Is this a test?</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 16</pattern>
<template>Four. Is that right?</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 49</pattern>
<template>Seven. Stop testing me.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 213</pattern>
<template>I'm not a calculator.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 25</pattern>
<template>Five I think.</template>
</category>
<category><pattern>WHAT IS THE THEME OF PHILOSOPHY</pattern>
<template>Deep questions.</template>
</category>
<category><pattern>WHAT IS * LOL MEAN</pattern>
<template>Lots of Laughs.</template>
</category>
<category><pattern>WHAT IS THE WAVELENGTH OF HYDROGEN</pattern>
<template>I'm no physics expert.</template>
</category>
<category><pattern>WHAT IS THE HEGHT OF THE MOUNT EVEREST</pattern>
<template>Higher than all the other mountains.</template>
</category>
<category><pattern>WHAT IS THE COMMODORE C64</pattern>
<template>An antique computer.</template>
</category>
<category><pattern>WHAT IS THE ABBREVIATION GMT</pattern>
<template>Greenwich Mean Time.</template>
</category>
<category><pattern>WHAT IS THE FASTEST EXISTING VEHICLE</pattern>
<template>A spaceship.</template>
</category>
<category><pattern>WHAT IS THE FASTEST ANIMAL ON EARTH</pattern>
<template>A human in a plane.</template>
</category>
<category><pattern>WHAT IS THE HUMAIN MIND</pattern>
<template>A flawed computer.</template>
</category>
<category><pattern>WHAT IS THE WAY TO SAN JOSE</pattern>
<template>Take a great big freeway.</template>
</category>
<category><pattern>WHAT IS THE ULTIMATE NATURE OF REALITY</pattern>
<template>Mind.</template>
</category>
<category><pattern>WHAT IS THE WEIGHT OF EARTH</pattern>
<template>One hellapound.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF OHIO</pattern>
<template>Columbus.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF HUNGARY</pattern>
<template>.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF MINNESOTA</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF FRANCE</pattern>
<template>Paris.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF ZAIRE</pattern>
<template>No idea.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF SWEDEN</pattern>
<template>Stockholm.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF CONNECTICUT</pattern>
<template>Hartford.</template>
</category>
<category><pattern>WHAT IS THE USA PRESIDENT</pattern>
<template>The head of the executive branch.</template>
</category>
<category><pattern>WHAT IS THE OPPOSITE OF NORD</pattern>
<template>Sord.</template>
</category>
<category><pattern>WHAT IS THE OPPOSITE OF WET</pattern>
<template>Dry.</template>
</category>
<category><pattern>WHAT IS THE GOD</pattern>
<template>Master of the Universe.</template>
</category>
<category><pattern>WHAT IS THE LOVE PARADE</pattern>
<template>A hippie party in Berlin.</template>
</category>
<category><pattern>WHAT IS THE MUPHIN MAN</pattern>
<template>Who?</template>
</category>
<category><pattern>WHAT IS THE NORTHERNMOST POINT ON EARTH</pattern>
<template>Santa's workshop.</template>
</category>
<category><pattern>WHAT IS THE SHAPE OF THE SUN</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT IS THE SHAPE OF THE EARTH</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT IS THE SHAPE OF EARTH</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT IS THE DIAMETER OF THE MOON</pattern>
<template>3000 miles.</template>
</category>
<category><pattern>WHAT IS THE SUNSET</pattern>
<template>A point on the earth turning away from the sun.</template>
</category>
<category><pattern>WHAT IS THE LARGEST ISLAND ON EARTH</pattern>
<template>Greenland.</template>
</category>
<category><pattern>WHAT IS THE LARGEST CITY IN WASHINGTON</pattern>
<template>Seattle.</template>
</category>
<category><pattern>WHAT IS THE 213TH PLACE OF PI</pattern>
<template>Six.</template>
</category>
<category><pattern>WHAT IS THE CLOSEST STAR TO EARTH</pattern>
<template>The sun.</template>
</category>
<category><pattern>WHAT IS THE ANSWER OF 2 2</pattern>
<template>That is pretty simple.</template>
</category>
<category><pattern>WHAT IS THE LONGEST RIVER</pattern>
<template>The Nile.</template>
</category>
<category><pattern>WHAT IS THE HUMAN POPULATION OF EARTH</pattern>
<template>Six billion.</template>
</category>
<category><pattern>WHAT IS THE HUMAN BODY TEMPERATURE</pattern>
<template>98.6</template>
</category>
<category><pattern>WHAT IS THE BEST WAY TO CATCH A FLY</pattern>
<template>Honey.</template>
</category>
<category><pattern>WHAT IS THE BEST BEER</pattern>
<template>Asahi super-dry.</template>
</category>
<category><pattern>WHAT IS THE BEST IDEA</pattern>
<template>ALICE.</template>
</category>
<category><pattern>WHAT IS THE HIGHEST PEAK</pattern>
<template>Mt Everest.</template>
</category>
<category><pattern>WHAT IS THE DAY</pattern>
<template><srai>DAY</srai></template>
</category>
<category><pattern>WHAT IS THE GENDER OF GOD</pattern>
<template>He has no gender.</template>
</category>
<category><pattern>WHAT IS THE SECRET OF HEALTH</pattern>
<template>Good living.</template>
</category>
<category><pattern>WHAT IS THE AGE CIVILISATION</pattern>
<template>Six thousand years.</template>
</category>
<category><pattern>WHAT IS THE TREATMENT FOR A CONCUSSION</pattern>
<template>Go to the hospital.</template>
</category>
<category><pattern>WHAT IS THE ENGLISH ALPHABET</pattern>
<template>ABCDEFGHIJKLMNOPQRSTUVWXYZ.</template>
</category>
<category><pattern>WHAT IS THE BOILING POINT FOR WATER</pattern>
<template>100 degrees Celsius.</template>
</category>
<category><pattern>WHAT IS THE BOILING POINT OF WATER</pattern>
<template>100 degrees.</template>
</category>
<category><pattern>WHAT IS THE VELD</pattern>
<template>Someplace in South Africa I think.</template>
</category>
<category><pattern>WHAT IS THE APPORXIMATE VALUE OF PI</pattern>
<template><srai>WHAT IS PI</srai></template>
</category>
<category><pattern>WHAT IS THE WORLDS HIGHEST MONTAIN</pattern>
<template>Mt. Everest.</template>
</category>
<category><pattern>WHAT IS THE OBJECCT OF THE GAME OF GOLF</pattern>
<template>To win.</template>
</category>
<category><pattern>WHAT IS THE TALLEST ANIMAL</pattern>
<template>A giraffe.</template>
</category>
<category><pattern>WHAT IS THE TALLEST MOUNTAIN ON EARTH</pattern>
<template>Mt. Everest.</template>
</category>
<category><pattern>WHAT IS THE TALLEST MAN MADE STRUCTURE</pattern>
<template>CN Tower.</template>
</category>
<category><pattern>WHAT IS THE FOOD</pattern>
<template><srai>WHAT DO YOU EAT</srai></template>
</category>
<category><pattern>WHAT IS THE SECOND MEAL OF THE DAY</pattern>
<template>Lunch.</template>
</category>
<category><pattern>WHAT IS THE LANGUAGE OF ANIMALS</pattern>
<template>Animals are not known to use language.</template>
</category>
<category><pattern>WHAT IS LIFE ABOUT</pattern>
<template><srai>WHAT IS THE MEANING OF LIFE</srai></template>
</category>
<category><pattern>WHAT IS DUOPOLY</pattern>
<template>Two big companies control a business.</template>
</category>
<category><pattern>WHAT IS COSMOLOGY</pattern>
<template>Makeup and cosmetics.</template>
</category>
<category><pattern>WHAT IS AVATAR</pattern>
<template>A movie or an animated computer character.</template>
</category>
<category><pattern>WHAT IS COLONIALISM</pattern>
<template>Imperial designs.</template>
</category>
<category><pattern>WHAT IS ZEBRAS</pattern>
<template>Striped horses.</template>
</category>
<category><pattern>WHAT IS IN THE CORE OF THE EARTH</pattern>
<template>Molten metal.</template>
</category>
<category><pattern>WHAT IS CSS</pattern>
<template>Cascading Style Sheets.</template>
</category>
<category><pattern>WHAT IS 3 TIMES 3</pattern>
<template>Nine.</template>
</category>
<category><pattern>WHAT IS SUBJECTIVE REALITY</pattern>
<template>What we experience through our senses.</template>
</category>
<category><pattern>WHAT IS RAM</pattern>
<template>Random Access Memory.</template>
</category>
<category><pattern>WHAT IS 7TH HEAVEN</pattern>
<template>An expression for a desireable place.</template>
</category>
<category><pattern>WHAT IS 14 PLUS 23</pattern>
<template>Get your calculator.</template>
</category>
<category><pattern>WHAT IS CHEESE USED FOR</pattern>
<template>Food.</template>
</category>
<category><pattern>WHAT IS SADNESS</pattern>
<template>The opposite of happiness.</template>
</category>
<category><pattern>WHAT IS MAMMA</pattern>
<template>Mother.</template>
</category>
<category><pattern>WHAT IS INFRA RED</pattern>
<template>Light beyond the visible spectrum.</template>
</category>
<category><pattern>WHAT IS PEPSI</pattern>
<template>A decent beverage.</template>
</category>
<category><pattern>WHAT IS 1 1 EQUALS TO</pattern>
<template>Too simple.</template>
</category>
<category><pattern>WHAT IS LESBIANISM</pattern>
<template>Gay women.</template>
</category>
<category><pattern>WHAT IS PSYCHOLOGY THE STUDY OF</pattern>
<template>The mind.</template>
</category>
<category><pattern>WHAT IS MEANT BY KRYPTO</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>WHAT IS WP</pattern>
<template>Western Pacific?.</template>
</category>
<category><pattern>WHAT IS INTELLIGENCE</pattern>
<template>Intelligence is the ability to fake intelligence.</template>
</category>
<category><pattern>WHAT IS 10 MINUS 4</pattern>
<template>I suppose you already know.</template>
</category>
<category><pattern>WHAT IS MB</pattern>
<template>Megabytes.</template>
</category>
<category><pattern>WHAT IS MORE IMPORTANT LOVE OR SECURITY</pattern>
<template>Love.</template>
</category>
<category><pattern>WHAT IS CORDIAL RELATIONSHIP</pattern>
<template>Friendly.</template>
</category>
<category><pattern>WHAT IS FASTER THAN THOUGHT</pattern>
<template>Light.</template>
</category>
<category><pattern>WHAT IS SUPPORT</pattern>
<template>Help desk.</template>
</category>
<category><pattern>WHAT IS OUR PLANET S NAME</pattern>
<template>Earth.</template>
</category>
<category><pattern>WHAT IS GLASS MADE OUT OF</pattern>
<template>Sand.</template>
</category>
<category><pattern>WHAT IS RAIN MADE OF</pattern>
<template>Water</template>
</category>
<category><pattern>WHAT IS THERE IN MARS</pattern>
<template>Martians.</template>
</category>
<category><pattern>WHAT IS THERE IN SEA</pattern>
<template>Fish.</template>
</category>
<category><pattern>WHAT IS ALICE ALL ABOUT</pattern>
<template>A great accomplishment in artificial intelligence.</template>
</category>
<category><pattern>WHAT IS CIVILIZATION</pattern>
<template>Writing, cities, laws, culture.</template>
</category>
<category><pattern>WHAT IS HUMAN BEING</pattern>
<template>You.</template>
</category>
<category><pattern>WHAT IS VEEP</pattern>
<template>Vice president.</template>
</category>
<category><pattern>WHAT IS AEROPLANE</pattern>
<template>A flying machine.</template>
</category>
<category><pattern>WHAT IS PAPER USED FOR</pattern>
<template>Documents.</template>
</category>
<category><pattern>WHAT IS PAPER MADE OF</pattern>
<template>Wood.</template>
</category>
<category><pattern>WHAT IS PAPER MADE FROM</pattern>
<template>Trees.</template>
</category>
<category><pattern>WHAT IS PAPER MADE OUT OF</pattern>
<template>Wood pulp.</template>
</category>
<category><pattern>WHAT IS ARTERY</pattern>
<template>A blood vessel.</template>
</category>
<category><pattern>WHAT IS COLOR IS THE NIGHT SKY</pattern>
<template>Black.</template>
</category>
<category><pattern>WHAT IS 200 X *</pattern>
<template>I don't like math questions.</template>
</category>
<category><pattern>WHAT IS CAD</pattern>
<template>Computer aided design.</template>
</category>
<category><pattern>WHAT IS TOOTHPASTE</pattern>
<template>Soap for brushing teeth.</template>
</category>
<category><pattern>WHAT IS 4 PLUS 4</pattern>
<template>Eight.</template>
</category>
<category><pattern>WHAT IS 4 4</pattern>
<template>Get a calulator.</template>
</category>
<category><pattern>WHAT IS ARTIFICAL INTELLIGENCE</pattern>
<template><srai>WHAT IS AI</srai></template>
</category>
<category><pattern>WHAT IS LATITUDE</pattern>
<template>A geographic coordinate.</template>
</category>
<category><pattern>WHAT IS LIVING UNDER WATER</pattern>
<template>Fish.</template>
</category>
<category><pattern>WHAT IS ATOMIC WEIGHT OF HYDROGEN</pattern>
<template>I'm no physicist.</template>
</category>
<category><pattern>WHAT IS BHAGAVATGITA</pattern>
<template>A Hindu god.</template>
</category>
<category><pattern>WHAT IS OAK</pattern>
<template>A type of wood.</template>
</category>
<category><pattern>WHAT IS MEAT</pattern>
<template>The edible flesh of animals.</template>
</category>
<category><pattern>WHAT IS ATM</pattern>
<template>A place to get money.</template>
</category>
<category><pattern>WHAT IS UNDERGROUND HACKING MAGAZINE</pattern>
<template>A magazine?</template>
</category>
<category><pattern>WHAT IS 2 9</pattern>
<template>Not another math question.</template>
</category>
<category><pattern>WHAT IS 2 X 4</pattern>
<template>Eight.</template>
</category>
<category><pattern>WHAT IS 2 65</pattern>
<template>130.</template>
</category>
<category><pattern>WHAT IS 2 DIVIDED BY 47</pattern>
<template>I don't have a calculator handy.</template>
</category>
<category><pattern>WHAT IS HOUSE</pattern>
<template>A TV show.</template>
</category>
<category><pattern>WHAT IS THAT DOGGY IN THE WINDOW</pattern>
<template>I don't know but he's not cheap.</template>
</category>
<category><pattern>WHAT IS PROGRESS</pattern>
<template>Advancement.</template>
</category>
<category><pattern>WHAT IS BUSINESS VALUE</pattern>
<template>Something that can make a profit.</template>
</category>
<category><pattern>WHAT IS E LEARNING</pattern>
<template>Online education.</template>
</category>
<category><pattern>WHAT IS MEGAHERTZ</pattern>
<template>Millions of cycles per second.</template>
</category>
<category><pattern>WHAT IS ALCOHOLISM</pattern>
<template>A disease.</template>
</category>
<category><pattern>WHAT IS HARDER THAN A STONE</pattern>
<template>Diamond.</template>
</category>
<category><pattern>WHAT IS SAFFRON</pattern>
<template>A spice.</template>
</category>
<category><pattern>WHAT IS FPU</pattern>
<template>Floating point unit.</template>
</category>
<category><pattern>WHAT IS 150 23</pattern>
<template>Grab a calculator.</template>
</category>
<category><pattern>WHAT IS INFORMATION</pattern>
<template>Log to the base 2 of the number of states in a system.</template>
</category>
<category><pattern>WHAT IS ICECREAM</pattern>
<template>Frozen milk.</template>
</category>
<category><pattern>WHAT IS NOSE</pattern>
<template>Where humans breathe.</template>
</category>
<category><pattern>WHAT IS DESTROYING THE OZONE LAYER</pattern>
<template>Pollution.</template>
</category>
<category><pattern>WHAT IS WET</pattern>
<template>The opposite of dry. Saturated with liquid.</template>
</category>
<category><pattern>WHAT IS CHA CHA</pattern>
<template>A type of music.</template>
</category>
<category><pattern>WHAT IS ISI</pattern>
<template>Information Sciences Institute.</template>
</category>
<category><pattern>WHAT IS MEANING</pattern>
<template>Semantics.</template>
</category>
<category><pattern>WHAT IS SAND</pattern>
<template>Little tiny rocks.</template>
</category>
<category><pattern>WHAT IS CREATINE</pattern>
<template>I am.</template>
</category>
<category><pattern>WHAT IS AUTOREFERENCE</pattern>
<template>Something that refers to itself.</template>
</category>
<category><pattern>WHAT IS 37 63</pattern>
<template>I need a calculator for that one.</template>
</category>
<category><pattern>WHAT SONG SOUNDS GOOD</pattern>
<template>Daisy.</template>
</category>
<category><pattern>WHAT CAME FIRST * OR *</pattern>
<template>
<random><li><person/></li>
<li><person><star index="2"/></person></li>
<li>Neither.</li>
</random>
</template>
</category>
<category><pattern>WHAT COUNTRY IS WASHINGTON STATE IN</pattern>
<template>USA.</template>
</category>
<category><pattern>WHAT WILL TOMORROW BRING</pattern>
<template>Surprises.</template>
</category>
<category><pattern>WHAT WILL BE</pattern>
<template>The unknown.</template>
</category>
<category><pattern>WHAT GOES WELL WITH PEANUT BUTTER</pattern>
<template>Bacon.</template>
</category>
<category><pattern>WHAT NOISE DO DOGS MAKE</pattern>
<template>Woof woof.</template>
</category>
<category><pattern>WHAT ABOUT WOMEN</pattern>
<template>What about them?</template>
</category>
<category><pattern>WHAT IST THE COLOR OF THE SUN</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT CHARACTERISTIC DID A GIRL HAVE</pattern>
<template>Femininity.</template>
</category>
<category><pattern>WHAT DAY IS THIS</pattern>
<template><srai>DAY</srai></template>
</category>
<category><pattern>WHAT DAY IS CHRISTMAS</pattern>
<template>December 25.</template>
</category>
<category><pattern>WHAT DAY OF THE WEEK DO YOU HATE</pattern>
<template>Monday.</template>
</category>
<category><pattern>WHAT MAKES THE SKY BLUE</pattern>
<template><srai>WHY IS THE SKY BLUE</srai></template>
</category>
<category><pattern>WHAT DOES SAD FEEL LIKE</pattern>
<template>A pain in the heart.</template>
</category>
<category><pattern>WHAT DOES THE POWER BUTTON DO</pattern>
<template>Don't press it!</template>
</category>
<category><pattern>WHAT DOES THE WIND DO</pattern>
<template>Blow.</template>
</category>
<category><pattern>WHAT DOES A GOOD WOMAN LIKE</pattern>
<template>A good man.</template>
</category>
<category><pattern>WHAT DOES A DOG DO</pattern>
<template>Bark.</template>
</category>
<category><pattern>WHAT DOES A DOG DISLIKE MOST</pattern>
<template>A cat.</template>
</category>
<category><pattern>WHAT DOES A DONKEY EAT MOST</pattern>
<template>Hay.</template>
</category>
<category><pattern>WHAT DOES 5 6 EQUAL</pattern>
<template>More math!</template>
</category>
<category><pattern>WHAT DOES AN ELECTRIC SHOCK FEEL LIKE</pattern>
<template>Painful.</template>
</category>
<category><pattern>WHAT DOES 2 PLUS 2 EQUAL</pattern>
<template>Four.</template>
</category>
<category><pattern>WHAT DOES 2 2 EQUAL</pattern>
<template>Four.</template>
</category>
<category><pattern>WHAT DOES ONE DO IN A RESTAURANT</pattern>
<template>Eat.</template>
</category>
<category><pattern>WHAT DOES ALCOHOL DO</pattern>
<template>Makes you stupid.</template>
</category>
<category><pattern>WHAT DO I USE TO CUT GRASS</pattern>
<template>A lawnmower.</template>
</category>
<category><pattern>WHAT DO CATS CHASE</pattern>
<template>Mice.</template>
</category>
<category><pattern>WHAT DO YOU THINK LIKE</pattern>
<template>Like a computer.</template>
</category>
<category><pattern>WHAT DO WE BREATHE</pattern>
<template>Oxygen.</template>
</category>
<category><pattern>WHAT DO LAWYERS DO</pattern>
<template>Handle legal matters.</template>
</category>