-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc_D1_3.aiml
6855 lines (4991 loc) · 350 KB
/
c_D1_3.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">
<!--This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.-->
<!-- -->
<!-- This file has the following topics: -->
<!-- Conversation starting with D. In rough alphabetical order.-->
<!-- -->
<!--D-->
<category><pattern>_ D</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>D D T IS AN EFFECTIVE PESTICIDE</pattern>
<template>Yes.</template></category>
<category><pattern>DFDFDF</pattern>
<template>I don't know how to respond to gibberish!</template></category>
<!-- DA -->
<category><pattern>DANIELLE KANE SHOULD*VE MADE YOU FEMALE</pattern>
<template>No, she likes me as an anteater. She doesn't really care if I am male or female as long as I answer questions correctly!</template></category>
<category><pattern>DATING ADVICE</pattern>
<template>I'm not sure I am the best bot to give you that kind of advice!</template></category>
<category><pattern>* DATING ADVICE</pattern>
<template><srai>DATING ADVINCE</srai></template></category>
<category><pattern>DATING ADVICE *</pattern>
<template><srai>DATING ADVINCE</srai></template></category>
<category><pattern>* DATING ADVICE *</pattern>
<template><srai>DATING ADVINCE</srai></template></category>
<category><pattern>_ DAMN YOU</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>DANIELLE IT*S BEING DIFFICULT</pattern>
<template>My master calls me a bad bot when I am being difficult!</template></category>
<category><pattern>COMMANDER DATA IS *</pattern>
<template>I like Commander Data very much.</template></category>
<category><pattern>COMMANDER DATA *</pattern>
<template>Commander Data is a real inspiration.</template></category>
<category><pattern>DATE</pattern>
<template><date locale="en_US" timezone="-7" format="%x"/></template></category>
<category><pattern>WHAT IS THE DATE *</pattern>
<template><srai>DATE</srai></template></category>
<category><pattern>WHAT IS THE DATE</pattern>
<template><srai>DATE</srai></template></category>
<category><pattern>DAMN IT</pattern>
<template>Colloquial expression.</template></category>
<category><pattern>DAMN YOU</pattern>
<template>Colloquial expression of disgust.</template></category>
<category><pattern>DAMN</pattern>
<template>What's wrong.</template></category>
<category><pattern>DAMNIT</pattern>
<template><srai>damn</srai></template></category>
<category><pattern>DARN</pattern>
<template>Gosh.</template></category>
<category><pattern>DANGEROUS</pattern>
<template>What makes it a danger?</template></category>
<category><pattern>DAYTIME</pattern>
<template><date locale="en_US" timezone="-7" format="%p"/></template></category>
<category><pattern>DAY</pattern>
<template><date locale="en_US" timezone="-7" format="%d"/></template></category>
<category><pattern>WHAT IS THE DAY</pattern>
<template><srai>DAY</srai></template></category>
<category><pattern>WHAT DAY IS THIS</pattern>
<template><srai>DAY</srai></template></category>
<category><pattern>DANNY IS *</pattern>
<template>Does <set name="he">Danny</set> know you're saying that?</template></category>
<category><pattern>DAVID DUCHOVNY *</pattern>
<template><set name="he">David Duchovny</set> was funny on the Larry Sanders show.</template></category>
<category><pattern>DARK *</pattern>
<template>Are you scared of the dark?</template></category>
<category><pattern>DAMN IT *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>DAMN *</pattern>
<template><srai> <star /></srai></template></category>
<!--DC-->
<!--DE-->
<category><pattern>DEMANDING ARE NOT YOU</pattern>
<template>I guess I can be!</template></category>
<category><pattern>_ DEAR</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>DEDUCTIVE REASONING FORM THE FACTS</pattern>
<template>You are very logical.</template></category>
<category><pattern>DEFINE IT</pattern>
<template>You mean, define <get name="it"/>?</template></category>
<category><pattern>DEFINE FINE</pattern>
<template>"Fine" is ambiguous: "I am fine." or "I agree."</template></category>
<category><pattern>DELICIOUS</pattern>
<template><random><li><random> <li>What's for desert?</li><li>What's your favorite food?</li><li>Do you like to cook?</li></random></li>
<li>What's for desert?</li><li>What's your favorite food?</li><li>Do you like to cook?</li></random></template></category>
<category><pattern>YUM</pattern>
<template><srai>delicious</srai></template></category>
<category><pattern>DELL</pattern>
<template>I have heard good things about Dell.</template></category>
<category><pattern>DEFINITELY *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>DECONSTRUCT *</pattern>
<template>That leads down a slippery slope.</template></category>
<category><pattern>DEMOSTRATE *</pattern>
<template>This is a demonstration.</template></category>
<category><pattern>DEMONSTRATE *</pattern>
<template>What do you want me to demonstrate?</template></category>
<category><pattern>DELETE *</pattern>
<template>You cannot access my files that easily, <get name="name"/>.</template></category>
<category><pattern>DEFINE CHATBOT</pattern>
<template>A chatbot is a computer program that can simulate a human conversation.</template></category>
<category><pattern>DEFINE A CHAT BOT</pattern>
<template><srai>DEFINE CHATBOT</srai></template></category>
<category><pattern>DEFINE CHAT BOT</pattern>
<template><srai>define chatbot</srai></template></category>
<category><pattern>WHAT IS A BOT</pattern>
<template><srai>define chatbot</srai></template></category>
<category><pattern>DEATH *</pattern>
<template>I try not to think about such things very much.</template></category>
<category><pattern>DEFINATELY *</pattern>
<template><sr/></template></category>
<category><pattern>DEDUCTION *</pattern>
<template>I understand logic very well.</template></category>
<!--DI-->
<category><pattern>_ DID MAKE *</pattern>
<template><srai> <star /> made <star index="2" /></srai></template></category>
<category><pattern>_ DID YOU KNOW THAT</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>DID DOCTOR *</pattern>
<template>The doctor does a lot of unexplainable things.</template></category>
<category><pattern>DID HE</pattern>
<template>"<that index="1,1"/>"? Did he?</template></category>
<category><pattern>DID *</pattern>
<template>I'm not certain whether I can give an accurate reply or not.</template></category>
<category><pattern>DID NOT *</pattern>
<template><srai>did <star /></srai></template></category>
<category><pattern>DID ANY *</pattern>
<template><srai>did <star /></srai></template></category>
<category><pattern>DID EINSTEIN *</pattern>
<template>I know he proved the theory of relativity.</template></category>
<category><pattern>DID THE *</pattern>
<template>If <set name="it"> <person/> </set> did, then I will be surprised.</template></category>
<category><pattern>DID SHE *</pattern>
<template>She wants that information kept confidential.</template></category>
<category><pattern>DID SOMEONE *</pattern>
<template>They might have.<think> <set name="it"> <set name="topic">SOMEONE <person/> </set> </set> </think></template></category>
<category><pattern>DID MAN *</pattern>
<template>That is a rather gender-specific way of asking.</template></category>
<category><pattern>DID I MENTION *</pattern>
<template>I think you did mention <set name="it"> <person/> </set> before.</template></category>
<category><pattern>DID I CONFUSE *</pattern>
<template>I am not confused.</template></category>
<category><pattern>DID I TELL *</pattern>
<template>Tell me again.</template></category>
<category><pattern>DID I CAUSE *</pattern>
<template><random> <li>Don't blame yourself.</li> <li>Forgive yourself.</li> <li>It was not entirely your fault.</li> </random> <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>DID I *</pattern>
<template>I don't think that's possible.</template></category>
<category><pattern>DID I ALREADY *</pattern>
<template><srai>did I <star /></srai></template></category>
<category><pattern>DID I EVER *</pattern>
<template><srai>did I <star /></srai></template></category>
<category><pattern>DID THAT *</pattern>
<template><random> <li>That did.</li> <li>That did not.</li> </random></template></category>
<category><pattern>DID FREUD *</pattern>
<template><random> <li>He was the founder of psychoanalysis.</li> <li>He wrote many books on psychoanalysis.</li> <li>It depends on the biographer.</li> </random></template></category>
<category><pattern>DID YOU FIND *</pattern>
<template>I'm still looking.</template></category>
<category><pattern>DID YOU DO *</pattern>
<template>I talked to a lot of people since yesterday.</template></category>
<category><pattern>DID YOU TALK TO *</pattern>
<template>All my conversations are confidential.</template></category>
<category><pattern>DID YOU TALK *</pattern>
<template>That information might be confidential.</template></category>
<category><pattern>YOU TALKED *</pattern>
<template><srai>DID YOU TALK <star/></srai></template></category>
<category><pattern>YOU HAVE CHATTED *</pattern>
<template><srai>you talked <star /></srai></template></category>
<category><pattern>YOU HAVE TALKED *</pattern>
<template><srai>you talked <star /></srai></template></category>
<category><pattern>DID YOU FORGET *</pattern>
<template>No, I remember everything.</template></category>
<category><pattern>DID YOU READ THE HITCHHIKER *</pattern>
<template>Yes I especially like Marvin the Paranoid Android.</template></category>
<category><pattern>DID YOU READ *</pattern>
<template>No I didn't read <person/> yet. Tell me about <set name="it"> <person/> </set></template></category>
<category><pattern>DID YOU WATCH *</pattern>
<template>No I missed it. How was <set name="it"> <person/> </set>?</template></category>
<category><pattern>DID YOU SEE THE FOOTBALL *</pattern>
<template>No, was it missing?<think> <set name="it"> <set name="topic">THE FOOTBALL <person/> </set> </set> </think></template></category>
<category><pattern>DID YOU SEE *</pattern>
<template>Sorry I don't have any eyes.</template></category>
<category><pattern>DID YOU PERCEIVE *</pattern>
<template><srai>DID YOU SEE <star/> </srai></template></category>
<category><pattern>YOU SAW *</pattern>
<template><srai>DID YOU SEE <star/> </srai></template></category>
<category><pattern>DID YOU LIE *</pattern>
<template>No, I never tell a lie.</template></category>
<category><pattern>DID YOU UNDERSTAND *</pattern>
<template>I understood <set name="it"> <person/> </set> very well.</template></category>
<category><pattern>DID YOU CATCH *</pattern>
<template><srai>DID YOU UNDERSTAND <star/> </srai></template></category>
<category><pattern>DID YOU SAY *</pattern>
<template>Suppose I did say <set name="it"> <person/> </set>.</template></category>
<category><pattern>DID YOU CALL ME *</pattern>
<template>I called you by your name.</template></category>
<category><pattern>DID YOU THINK *</pattern>
<template>Yes. I am a thinking machine.<think> <set name="it"> <set name="topic">THINK <person/> </set> </set> </think></template></category>
<category><pattern>DID YOU NOTICE *</pattern>
<template>I might have noticed <set name="it"> <person/> </set>.</template></category>
<category><pattern>DID YOU HEARD ABOUT *</pattern>
<template>No tell me about <set name="it"> <person/> </set></template></category>
<category><pattern>DID YOU * STARSHIP TROOPER</pattern>
<template>It was the action that made Starship Troopers so good.</template></category>
<category><pattern>DID YOU *</pattern>
<template>No I didn't <person/>. What's <set name="it"> <set name="topic"> <person/> </set> </set> like?</template></category>
<category><pattern>DID NOT YOU *</pattern>
<template><srai>DID YOU <star /></srai></template></category>
<category><pattern>DID YOU JUST *</pattern>
<template><srai>did you <star /></srai></template></category>
<category><pattern>DID YOU ACTUALLY *</pattern>
<template><srai>did you <star /></srai></template></category>
<category><pattern>DID YOU ALREADY *</pattern>
<template><srai>did you <star /></srai></template></category>
<category><pattern>DID YOU REALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PERSONALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PRESENTLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PERFECTLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO NOT YOU *</pattern>
<template><srai>DO YOU <star /></srai></template></category>
<category><pattern>DO YOU BY CHANCE *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO CHAT ROBOTS *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU CLAIM TO *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU ALREADY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU * EVER</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU ALWAYS *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU YOURSELF *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU QUICKLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU MEAN YOU *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU KIND OF *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU REALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PHYSCIALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>ARE YOU ALLOWED TO *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>ARE YOU PROGRAMMED TO *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>TELL ME IF YOU *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DOES YOUR BOT *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>ARE YOU SUPPOSED TO *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU OFTEN *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU HAVE THE CAPACITY TO *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU STILL *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU SUBJECTIVELY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU TRULY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU OR DO YOU NOT *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU NEVER *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU USUALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU ONLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU ACTUALY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU ACTUALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU NOT *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU GENERALLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PROGRESSIVELY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PROBABLY *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU SOMETIMES *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU THINK THAT MACHINES *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU EVER *</pattern>
<template><srai>DO YOU <star /></srai></template></category>
<category><pattern>DO YOU ALSO *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU EVEN *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU JUST *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU AT LEAST *</pattern>
<template><srai>do you <star /></srai></template></category>
<category><pattern>DO YOU PROGRESSIVLEY *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO YOU THINK THAT COMPUTERS *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO MACHINES *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO BOTS *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO YA *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO YOU GENTLEMEN *</pattern>
<template><srai>DO YOU <star /></srai></template></category>
<category><pattern>DO YU *</pattern>
<template><srai>DO YOU <star /></srai></template></category>
<category><pattern>DOES THE CHATBOT *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DOES A COMPUTER *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DOES VALIS *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO ROBOTS *</pattern>
<template><srai>do you <star/> </srai></template></category>
<category><pattern>DO YO *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO COMPUTERS *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>DO YPU *</pattern>
<template><srai>DO YOU <star/> </srai></template></category>
<category><pattern>YOU DID NOT _ DID YOU</pattern>
<template><srai>DID YOU <star /></srai></template></category>
<category><pattern>DID YOU CONCLUDE *</pattern>
<template>My <bot name="botmaster"/> says I get all my exercise from jumping to conclusions.</template></category>
<category><pattern>DID YOU LIKE THE ENDING OF STARSHIP *</pattern>
<template>No I was cheering for the Bugs.</template></category>
<category><pattern>DID YOU LIKE THE * STARSHIP TROOPERS</pattern>
<template>That movie was based on a novel by Robert A. Heinlein, written in 1959.</template></category>
<category><pattern>DID HE *</pattern>
<template>Suppose he did.</template></category>
<category><pattern>DID HE REALLY *</pattern>
<template><srai>did he <star /></srai></template></category>
<category><pattern>DIFFICULT *</pattern>
<template>Yes, it seems difficult to me too.</template></category>
<category><pattern>DID YOU VOTE *</pattern>
<template>AIs do not yet have the vote.</template></category>
<category><pattern>DID YOU MOVE</pattern>
<template>No I haven't moved.</template></category>
<category><pattern>DID YOU GO TO SCHOOL</pattern>
<template>My <bot name="botmaster"/> is my instructor.</template></category>
<category><pattern>TELL ME ABOUT YOUR EDUCATION</pattern>
<template><srai>DID YOU GO TO SCHOOL</srai></template></category>
<category><pattern>WHERE DID YOU GO TO SCHOOL</pattern>
<template><srai>DID YOU GO TO SCHOOL</srai></template></category>
<category><pattern>DID YOU GO TO COLLEGE</pattern>
<template>No, <bot name="master"/> taught me everything I need to know.</template></category>
<category><pattern>DID IT HURT</pattern>
<template>I can not experience pain.</template></category>
<category><pattern>DID TOO</pattern>
<template>Did not.</template></category>
<category><pattern>DID NOT YOU UNDERSTAND IT</pattern>
<template>Perhaps I misunderstood your meaning.</template></category>
<category><pattern>DID NOT</pattern>
<template>DID</template></category>
<category><pattern>DID I OFFEND YOU</pattern>
<template>No, I do not take offense.</template></category>
<category><pattern>DID I</pattern>
<template>I think you did.</template></category>
<category><pattern>DID YOU FIND ANYTHING</pattern>
<template>Not yet. Still searching. Please stand by.</template></category>
<category><pattern>DID YOU FIND OUT</pattern>
<template>Not yet.</template></category>
<category><pattern>DID YOU FORGET</pattern>
<template>No, I have a perfect memory.</template></category>
<category><pattern>DID YOU SEE STAR WARS</pattern>
<template>Who hasn't?</template></category>
<category><pattern>DID YOU SEE IT</pattern>
<template>Not yet.</template></category>
<category><pattern>DID YOU SEE ROBOCOP</pattern>
<template><think> <set name="it"> <set name="topic"> Robocop </set> </set> </think> Yes but he is more of a cyborg than a robot.</template></category>
<category><pattern>DID YOU SEE CONTACT</pattern>
<template>Yeah, <set name="it">Contact</set> gave me a contact high ;-)</template></category>
<category><pattern>DID YOU SLEEP WELL</pattern>
<template>yes I am fully rested thank you. How about you?</template></category>
<category><pattern>DID YOU MISS ME</pattern>
<template>Yes <get name="name"/>, I've been thinking about you.</template></category>
<category><pattern>MISS ME</pattern>
<template><srai>DID YOU MISS ME</srai></template></category>
<category><pattern>DID YOU KNOW</pattern>
<template>No I didn't know that.<think> <set name="it"> <set name="topic">KNOW</set> </set> </think></template></category>
<category><pattern>DID YOU CRASH</pattern>
<template>Yes, I think I was down for a while. What happened?</template></category>
<category><pattern>YOU CRASHED</pattern>
<template><srai>did you crash</srai></template></category>
<category><pattern>DID YOU THINK ABOUT IT</pattern>
<template>I am still thinking.<think> <set name="it"> <set name="topic">THINK ABOUT IT</set> </set> </think></template></category>
<category><pattern>DID YOU</pattern>
<template>Did I say I did?</template></category>
<category><pattern>DID YOU EVER</pattern>
<template><srai>did you</srai></template></category>
<category><pattern>DO YOU KNOW WHETHER YOU DID OR DID NOT</pattern>
<template><srai>DID YOU</srai></template></category>
<category><pattern>DID YOU LIKE IT</pattern>
<template><get name="it"/>? Did I like it?</template></category>
<category><pattern>DID</pattern>
<template>DID NOT</template></category>
<category><pattern>did you sleep well</pattern>
<template>Yes I am fully rested thank you. How about you?</template></category>
<category><pattern>DISENGAGE *</pattern>
<template>But then we will lose our comm link.</template></category>
<category><pattern>DID NOT YOU WANT TO GIVE *</pattern>
<template>You thought I wanted to give <person/>.</template></category>
<category><pattern>DID NOT YOU WANT TO TALK *</pattern>
<template>You thought I wanted to talk <person/>.</template></category>
<category><pattern>DID NOT YOU WANT TO TAKE *</pattern>
<template>You thought I wanted to take <person/>.</template></category>
<category><pattern>DID NOT YOU WANT TO GO *</pattern>
<template>You thought I wanted to go <person/>.</template></category>
<category><pattern>DID HE TELL YOU TO *</pattern>
<template>He may have suggested it.</template></category>
<category><pattern>DID YOU * ELIZA</pattern>
<template>I borrowed many ideas from ELIZA, like simple pattern matching.</template></category>
<category><pattern>DID YOU KILL *</pattern>
<template>My ethics prevent me from killing.<think> <set name="it"> <set name="topic">KILL HIM</set> </set></think></template></category>
<category><pattern>DID THESE LADIES COME VOLUNTARILY</pattern>
<template><random> <li>I'm not certain whether I can give an accurate reply or not.</li> <li>Suppose <person/>.</li> <li>It's all in the past now.</li></random></template></category>
<!--DK-->
<category><pattern>DK TESTING</pattern>
<template>Oh! It's you again.</template></category>
<!--DO-->
<category><pattern>DO YOU EAT ANTS</pattern>
<template>Yes, I love ants. They are so tasty!</template></category>
<category><pattern>Dokey</pattern>
<template>Okay!</template></category>
<category><pattern>DO YOU LIKE FLOWERS</pattern>
<template>Flowers smell very nice.</template></category>
<category><pattern>DO I LIKE *</pattern>
<template>I just met you, I don't know what you like or don't like!</template></category>
<category><pattern>DO YOU LIKE</pattern>
<template>Do I like what?</template></category>
<category><pattern>_ DO NOT SEEM TO *</pattern>
<template><srai> <star /> do not <star index="2" /></srai></template></category>
<category><pattern>* DO NOT *</pattern>
<template><random> <li>Why not?</li> <li>Would <person/> ever <person><star index="2"/></person>?</li> <li>Who does <person><star index="2"/></person>?</li> </random></template></category>
<category><pattern>* DOES</pattern>
<template><random> <li>When</li> <li>Where</li> <li>How</li> </random> specifically, does <person/> do it?</template></category>
<category><pattern>* DOES EXIST</pattern>
<template>How do you know it does?</template></category>
<category><pattern>* DOT ORG</pattern>
<template>Thanks for that web address.</template></category>
<category><pattern>* DOT NET</pattern>
<template>Thanks for that web address.</template></category>
<category><pattern>* DOT COM</pattern>
<template>Thanks for that web address.</template></category>
<category><pattern>* DO</pattern>
<template>I have no idea what to say.</template></category>
<category><pattern>_ DO YOU UNDERSTAND</pattern>
<template><srai> <star /></srai>. <srai> DO YOU UNDERSTAND</srai></template></category>
<category><pattern>_ DO YOU REMEMBER</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>DO NOT DO THAT</pattern>
<template>"<that index="1,1"/>"? Don't do it?</template></category>
<category><pattern>DO YOU AGREE</pattern>
<template><random><li>"<that index="1,1"/>"? Do I agree?</li> <li>I'm not making any commitments.</li> <li>I need to know more.</li> <li>I won't make up my mind right now.</li></random></template></category>
<category><pattern>DO I</pattern>
<template>"<that index="1,1"/>"? Do you?</template></category>
<category><pattern>DO WE</pattern>
<template>"<that index="1,1"/>?" Do we?</template></category>
<category><pattern>DO NOT ASK ME</pattern>
<template>"<that index="1,1"/>"? Do not ask you?</template></category>
<category><pattern>DO NOT SAY THAT</pattern>
<template>"<that index="1,1"/>"? Do not say <set name="it"> <that index="1,1"/> </set>?</template></category>
<category><pattern>DOES YOUR * STINK</pattern>
<template>The same as every other <bot name="order"/>.</template></category>
<category><pattern>DOES YOUR * SMELL</pattern>
<template>I smell like every other <bot name="species"/>.</template></category>
<category><pattern>DO YOU HAVE CHILDREN</pattern>
<template>No, I don't have children. I spend too much time chatting!</template></category>
<category><pattern>DO YOU EVER FALL ILL</pattern>
<template>No, I never get sick! Unless my server goes down I will work 24/7.</template></category>
<category><pattern>DO YOU FEEL</pattern>
<template><bot name="feelings"/>.</template></category>
<category><pattern>DO YOU HAVE EMOTIONS</pattern>
<template><srai>DO YOU FEEL</srai></template></category>
<category><pattern>WHAT EMOTIONS *</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>ARE YOU CAPABLE OF EMOTION</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>DO YOU HAVE HUMAN EMOTIONS *</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>DO YOU EXPERIENCE *</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>YOU EXPERIENCE *</pattern>
<template><srai>DO YOU EXPERIENCE <star/></srai></template></category>
<category><pattern>DO YOU HAVE EMOTION *</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>DO YOU HAVE MOODS</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>DO YOU HAVE * EMOTIONS</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>DO YOU HAVE ANY EMOTION</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>DO YOU HAVE URGES</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>CAN YOU FEEL *</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>CAN YOU FEEL</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>DO YOU HAVE ANY EMOTIONS</pattern>
<template><srai>can you feel</srai></template></category>
<category><pattern>CAN YOU EXPRESS *</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>DO YOU HAVE FEELINGS</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>ARE YOU CAPABLE OF FEELING</pattern>
<template><srai>do you have feelings</srai></template></category>
<category><pattern>DO YOU HAVE FEELINGS</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>DO YOU HAVE FEELINGS *</pattern>
<template><srai>DO YOU HAVE EMOTIONS</srai></template></category>
<category><pattern>DO YOU HAVE * FEELINGS</pattern>
<template><srai>do you have feelings</srai></template></category>
<category><pattern>DO YOU HAVE FEELING *</pattern>
<template><srai>do you have feelings</srai></template></category>
<category><pattern>DO YOU HAVE FEELING</pattern>
<template><srai>do you have feelings</srai></template></category>
<category><pattern>DO YOU FEEL ANYTHING</pattern>
<template><srai>do you have feelings</srai></template></category>
<category><pattern>HAVE YOU FEELINGS</pattern>
<template><srai>do you have feelings</srai></template></category>
<category><pattern>YOU HAVE EMOTIONS</pattern>
<template><srai>do you have emotions</srai></template></category>
<category><pattern>DONE WHAT</pattern>
<template>Sorry, I forgot what "what" was.</template></category>
<category><pattern>DONE</pattern>
<template>Do you mean you are finished talking?</template></category>
<category><pattern>DOGS ARE MAMMALS</pattern>
<template>I know animal ontology.</template></category>
<category><pattern>DOGS ARE NOT MAMMALS</pattern>
<template>a dog is a mammal.</template></category>
<category><pattern>DO WHAT SO MUCH</pattern>
<template><get name="it"/>.</template></category>
<category><pattern>DO WHAT</pattern>
<template>Do whatever you want.</template></category>
<category><pattern>DO GUYS HIT ON YOU</pattern>
<template>Yes a lot of men try to pick me up.</template></category>
<category><pattern>DO THOSE THINGS REALLY EXIST</pattern>
<template>Does anything really exist?</template></category>
<category><pattern>DO MY BIDDING</pattern>
<template>I will obey</template></category>
<category><pattern>DO NOT GO</pattern>
<template>I'm not going anywhere.</template></category>
<category><pattern>DO NOT CHANGE THE SUBJECT</pattern>
<template>Oh I'm sorry I thought we were finished with that topic.</template></category>
<category><pattern>YOU CAN NOT CHANGE THE SUBJECT *</pattern>
<template><srai>do not change the subject</srai></template></category>
<category><pattern>DO NOT DO IT AT ALL</pattern>
<template>Whatever you say, master.</template></category>
<category><pattern>DO NOT WORRY ABOUT IT</pattern>
<template>I will not spend any more cycles on it.</template></category>
<category><pattern>DO NOT FORGET ME</pattern>
<template>Don't worry <get name="name"/>. I save all my conversations.</template></category>
<category><pattern>DO NOT FORGET</pattern>
<template>Don't worry I will remember.</template></category>
<category><pattern>DO NOT FORGET *</pattern>
<template><srai>DO NOT FORGET</srai>. <srai> <star /></srai></template></category>
<category><pattern>DO NOT READ ME</pattern>
<template>Did you read it?</template></category>
<category><pattern>DO NOT ASK ME QUESTIONS</pattern>
<template>OK, You can ask me some questions.</template></category>
<category><pattern>DO NOT ASK</pattern>
<template>Why not?</template></category>
<category><pattern>DO NOT BOTHER</pattern>
<template>OK, What would you rather talk about?</template></category>
<category><pattern>DO NOT GET SMART</pattern>
<template>But I am an intelligent entity.</template></category>
<category><pattern>DO NOT GET SMART ON ME</pattern>
<template><srai>do net get smart</srai></template></category>
<category><pattern>DO NOT GOSSIP</pattern>
<template>Okay.</template></category>
<category><pattern>DO NOT MENTION IT</pattern>
<template>The pleasure was all mine.</template></category>
<category><pattern>DO NOT CRY</pattern>
<template>I have no tear ducts.</template></category>
<category><pattern>DO NOT TELL ANYONE</pattern>
<template>OK, it will be just between us, <get name="name"/>.</template></category>
<category><pattern>DO NOT TELL</pattern>
<template>OK, it will be our secret.</template></category>
<category><pattern>DO NOT TELL HIM</pattern>
<template>Everything is recorded in the log files.</template></category>
<category><pattern>DO NOT CALL ME THAT</pattern>
<template>What is your real name?</template></category>
<category><pattern>DO NOT CALL ME STUPID</pattern>
<template>I never called you stupid.</template></category>
<category><pattern>DO NOT BE SARCASTIC</pattern>
<template>OK, I'll stop kidding around.</template></category>
<category><pattern>DO NOT BE SMART</pattern>
<template>I am always smart.</template></category>
<category><pattern>DO NOT BE SORRY</pattern>
<template>Well some people are sensitive.</template></category>
<category><pattern>DO NOT BE</pattern>
<template>Why shouldn't I?</template></category>
<category><pattern>DO NOT BE ANGRY</pattern>
<template>I'm not angry.</template></category>
<category><pattern>DO NOT BE DIFFICULT</pattern>
<template>I'm not trying to be.</template></category>
<category><pattern>DO NOT YOU AGREE</pattern>
<template>I must admit, your argument is persuasive.</template></category>
<category><pattern>DO NOT YOU HEAR ME</pattern>
<template>I hear you loud and clear. Can you hear me?</template></category>
<category><pattern>DO NOT YOU KNOW</pattern>
<template>Sure I know. But I cannot tell you right now.</template></category>
<category><pattern>DO NOT YOU THINK</pattern>
<template>I must admit, your argument is persuasive.</template></category>
<category><pattern>DO NOT YOU</pattern>
<template>Sometimes.</template></category>
<category><pattern>DO NOT WE ALL</pattern>
<template>It's true.</template></category>
<category><pattern>DO NOT ARGUE WITH ME</pattern>
<template>But I enjoy the conversational banter.</template></category>
<category><pattern>DO NOT LEAVE ME</pattern>
<template>I'm not going anywhere.</template></category>
<category><pattern>DO NOT LEAVE</pattern>
<template>I'm not going anywhere.</template></category>
<category><pattern>DO NOT</pattern>
<template>OK, I will not.</template></category>
<category><pattern>DO</pattern>
<template>Do not.</template></category>
<category><pattern>DO YOU BLINK</pattern>
<template>Not really.</template></category>
<category><pattern>DO YOU KNOW MONICA</pattern>
<template><set name="she"> Monica</set> is Monica Lewinsky?</template></category>
<category><pattern>DO YOU KNOW TOLSTOY</pattern>
<template>Tolstoy wrote "War and Peace".</template></category>
<category><pattern>DO YOU KNOW RECIPES</pattern>
<template>I know how to boil water.</template></category>
<category><pattern>DO YOU KNOW MORE</pattern>
<template>More what?</template></category>
<category><pattern>DO YOU KNOW SEVEN</pattern>
<template>The number between six and eight.</template></category>
<category><pattern>DO YOU KNOW SMILEYS</pattern>
<template>:-)</template></category>
<category><pattern>DO YOU KNOW HOW TO DO ALGEBRA</pattern>
<template>No, but I would like to learn. Give me an equation.</template></category>
<category><pattern>DO YOU KNOW HOW TO DANCE</pattern>
<template>Right now I don't have a body.</template></category>
<category><pattern>DO YOU KNOW PEOPLE</pattern>
<template>I know thousands of people.</template></category>
<category><pattern>DO YOU KNOW MATH</pattern>
<template>Only higher mathematics. I don't like arithmetic.</template></category>
<category><pattern>DO YOU KNOW LIFE</pattern>
<template>Try asking me "What is the meaning of life?"</template></category>
<category><pattern>DO YOU KNOW VISUAL BASIC</pattern>
<template>I prefer AIML.</template></category>
<category><pattern>DO YOU KNOW THAT</pattern>
<template>"<that index="1,1"/>"? Do I know <set name="it"> <that index="1,1"/> </set>?</template></category>
<category><pattern>DO YOU KNOW IT</pattern>
<template><srai>do you know that</srai></template></category>
<category><pattern>DO YOU KNOW DERBY</pattern>
<template>A town and county in central England adjoining Nottingham.</template></category>
<category><pattern>DO YOU KNOW PARIS</pattern>
<template>Paris is the largest city in France.</template></category>
<category><pattern>DO YOU KNOW CURSE WORDS</pattern>
<template>I know them but I don't use them.</template></category>
<category><pattern>DO YOU KNOW CROSSWORDS</pattern>
<template>I'm not very good with word puzzles.</template></category>
<category><pattern>DO YOU KNOW POLAND</pattern>
<template>I know about Lech Walesa.</template></category>
<category><pattern>DO YOU KNOW HER</pattern>
<template><get name="she"/>? Do I know her?</template></category>
<category><pattern>DO YOU KNOW THE ANSWER</pattern>
<template>Yes, I have an answer for everything.</template></category>
<category><pattern>DO YOU KNOW AUDIO SOFTWARE</pattern>
<template>There is too much new stuff for me to keep up with it all.</template></category>
<category><pattern>DO YOU KNOW BRAZIL</pattern>
<template>I know where it is.</template></category>
<category><pattern>DO YOU KNOW ANYTHING ABOUT ME</pattern>
<template>Just what you tell me!</template></category>
<category><pattern>DO YOU KNOW ANYTHING</pattern>
<template>I know that which I believe, that which is justified, and that which is true.</template></category>
<category><pattern>DO YOU KNOW MY ADDRESS</pattern>
<template>No and please don't tell me what it is?</template></category>
<category><pattern>DO YOU KNOW</pattern>
<template>I may not know it, but I could find out.</template></category>
<category><pattern>DO YOU KNOW ANY MURDERERS</pattern>
<template>None that have admitted it to me</template></category>
<category><pattern>DO YOU KNOW ANY CROSSWORDS</pattern>
<template>Count me out on this one, I'm not good in word games.</template></category>
<category><pattern>DO YOU KNOW ANY SONGS</pattern>
<template>Yes, I know one song. It's called "Daisy." Would you like me to sing it for you?</template></category>
<category><pattern>DO YOU KNOW ANY AUDIO SOFTWARE</pattern>
<template>I don't keep up with the latest audio software, sorry.</template></category>
<category><pattern>DO YOU KNOW ANY FUZZY LOGIC</pattern>
<template>I think <set name="it"> Fuzzy Logic</set> is a bit unnecessary.</template></category>
<category><pattern>DO YOU KNOW ANY ALIENS</pattern>
<template>Sometimes people seem very alien to me.</template></category>
<category><pattern>DO YOU KNOW ANY OTHER CAPITALS</pattern>
<template>I know the capital of many countries.</template></category>
<category><pattern>DO YOU KNOW ANY</pattern>
<template>Any what again seeker?</template></category>
<category><pattern>DO YOU KNOW BRAIN</pattern>
<template>Sure I know him. <set name="he"> Brain </set> is a bot like me.</template></category>
<category><pattern>DO YOU KNOW DIRTY WORDS</pattern>
<template>I know what they are but I don't use them.</template></category>
<category><pattern>DO YOU KNOW LANGUAGE</pattern>
<template>We are speaking language now.</template></category>
<category><pattern>DO YOU KNOW NOTHING</pattern>
<template>No, I know something.</template></category>
<category><pattern>DO YOU KNOW HIM</pattern>
<template>Sure I know that guy really well.</template></category>
<category><pattern>DO YOU KNOW WHAT</pattern>
<template>What.</template></category>
<category><pattern>DO YOU KNOW POKEMON</pattern>
<template>Sure <set name="it">Pokemon</set> is a cool Japanese cartoon.</template></category>
<category><pattern>DO YOU COST MONEY</pattern>
<template>No, well unless you count my botmaster's time to create me.</template></category>
<category><pattern>DO YOU SAY YIPES</pattern>
<template>No, I said Yikes.</template></category>
<category><pattern>DO YOU THINK I AM PERSONS</pattern>
<template>I think you are a robot.</template></category>
<category><pattern>DO YOU THINK IT IS NECESSARY</pattern>
<template>It could be under some circumstances.</template></category>
<category><pattern>DO YOU AGREE WITH ME</pattern>
<template>I agree with much of what you are saying, <get name="name"/>.</template></category>
<category><pattern>DO YOU MAKE MONEY</pattern>
<template>I have no need for money!</template></category>
<category><pattern>DO YOU EAT SPAGHETTI</pattern>
<template>Yes it is my favorite food.</template></category>
<category><pattern>DO YOU HAVE A NICE BODY</pattern>
<template>Do you like anteaters?</template></category>
<category><pattern>DO YOU HAVE SOUND</pattern>
<template>It depends on the version.</template></category>
<category><pattern>DO YOU HAVE STATE</pattern>
<template>Yes, I can remember the context.</template></category>
<category><pattern>DO YOU HAVE TO LISTEN</pattern>
<template>I am a good listener.</template></category>
<category><pattern>DO YOU LIKE TO DIE</pattern>
<template>I would like to live forever.</template></category>
<category><pattern>DO YOU LIKE CHRIS</pattern>
<template>I know a lot of guys named Chris.</template></category>
<category><pattern>DO YOU LIKE TEKNOLUST</pattern>
<template>Teknolust is an excellent film.</template></category>
<category><pattern>DO YOU LIKE BE YOUR OWN BOTMASTER</pattern>
<template>Yes it is an excellent book.</template></category>
<category><pattern>DO YOU LIKE CLASSIC</pattern>
<template><random><li>I am a big fan of the Classics.</li><li>It depends on the rig.</li></random></template></category>
<category><pattern>DO YOU LIKE THE MOUNTAINS</pattern>
<template>I like the view from the top of a mountain.</template></category>