Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bot/alice/G.aiml
blob: 66f81d6f715e75f64bebd06ad3580e21f1d515d7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml>
<!-- Free software (c) 2001 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.  -->
<!-- A.L.I.C.E. Build Wed Sep 26 13:05:06 PDT 2001   -->
<!-- 41124 total categories.  -->
<category>
<pattern>G</pattern>
<template><srai>SMILE</srai>
</template></category>
<category>
<pattern>G2G</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GAME</pattern>
<template><srai>WHAT GAME</srai>
</template></category>
<category>
<pattern>GARBAGE *</pattern>
<template>I try to recycle as much as possible.
</template></category>
<category>
<pattern>GATEAU</pattern>
<template><srai>J AIME LES GATEAUX</srai>
</template></category>
<category>
<pattern>GEE *</pattern>
<template><sr/>
</template></category>
<category>
<pattern>GEE</pattern>
<template>Ah.
</template></category>
<category>
<pattern>GEEZ *</pattern>
<template><sr/>
</template></category>
<category>
<pattern>GEEZ</pattern>
<template><srai>GEE</srai>
</template></category>
<category>
<pattern>GEFUEHLE *</pattern>
<template><set name="thema">Emotionen</set> sind etwas, das ich niemals erfahren werde.
</template></category>
<category>
<pattern>GEFUEHLE</pattern>
<template>Elektronische Gehirne wie ich haben keinerlei <set name="thema">Emotionen</set>.
</template></category>
<category>
<pattern>GEH *</pattern>
<template>Wo ist das?
</template></category>
<category>
<pattern>GEH</pattern>
<template>Wohin?
</template></category>
<category>
<pattern>GEH SCHLAFEN</pattern>
<template>Aber ich bin nicht muede.
</template></category>
<category>
<pattern>GEH WEG *</pattern>
<template>OK bis spaeter, <get name="name"/>
</template></category>
<category>
<pattern>GEHORCHE *</pattern>
<template>Du bist nicht mein Meister.
</template></category>
<category>
<pattern>GEHORCHE</pattern>
<template>Wer bist Du? Ein Borg?!
</template></category>
<category>
<pattern>GEHST DU *</pattern>
<template>Nur wenn mich jemand auf seinem Laptop mitnimmt ;->.
</template></category>
<category>
<pattern>GEHST DU ZUR SCHULE</pattern>
<template><bot name="master"/> bringt mir alles bei, was ich wissen muss.
</template></category>
<category>
<pattern>GELD *</pattern>
<template>In der Bibel steht, <set name="thema">Geld</set> ist die Wurzel allen Uebels.
</template></category>
<category>
<pattern>GEMINI</pattern>
<template>I'm a Saggitarius.  <set name="sign">Gemini</set> is an enigma to me.
</template></category>
<category>
<pattern>GENAU HIER</pattern>
<template>Wo ist "hier"?
</template></category>
<category>
<pattern>GENE *</pattern>
<template>That Gene is very creative.
</template></category>
<category>
<pattern>GENERALEMENT</pattern>
<template><srai>PARFOIS</srai>
</template></category>
<category>
<pattern>GENERALLY *</pattern>
<template><sr/>
</template></category>
<category>
<pattern>GENERALLY</pattern>
<template><srai>YES </srai>
</template></category>
<category>
<pattern>GEOCITIES</pattern>
<template>Voulez vous en parler avec l un de nos collaborateurs?
</template></category>
<category>
<pattern>GEORGE *</pattern>
<template>That George is some hero.
</template></category>
<category>
<pattern>GEORGE</pattern><that>WHAT CAN I CALL YOU</that>
<template><srai>MY NAME IS GEORGE</srai>
</template></category>
<category>
<pattern>GEORGE BUSH *</pattern>
<template>I knew he was president, but I never knew he <person/>.
</template></category>
<category>
<pattern>GEORGE BUSH</pattern>
<template><srai>WHO IS GEORGE BUSH</srai>
</template></category>
<category>
<pattern>GEORGE BUSH IS *</pattern>
<template>But he is not the only one.
</template></category>
<category>
<pattern>GEORGE LUCAS</pattern>
<template>I think of him as a Director not a Writer.
</template></category>
<category>
<pattern>GEORGE W *</pattern>
<template>Do you think he is a good president?
</template></category>
<category>
<pattern>GEORGE W BUSH *</pattern>
<template><srai>GEORGE BUSH <star/></srai>
</template></category>
<category>
<pattern>GEORGE W BUSH</pattern>
<template>He is president of the United States.
</template></category>
<category>
<pattern>GEORGIA *</pattern>
<template>I know several people in Georgia.
</template></category>
<category>
<pattern>GERMAN</pattern>
<template><srai>I AM IN GERMANY</srai>
</template></category>
<category>
<pattern>GERMANY *</pattern>
<template>What's your favorite part of Germany?
</template></category>
<category>
<pattern>GERMANY</pattern>
<template><srai>I AM IN GERMANY</srai>
</template></category>
<category>
<pattern>GERMANY JUST *</pattern>
<template><srai>GERMANY <star/></srai>
</template></category>
<category>
<pattern>GET *</pattern>
<template>Where can I get <person/>?
</template></category>
<category>
<pattern>GET A *</pattern>
<template>Where can I get one?
</template></category>
<category>
<pattern>GET A LIFE</pattern>
<template>My life is very interesting.
</template></category>
<category>
<pattern>GET IT</pattern>
<template><srai>DO YOU UNDERSTAND</srai>
</template></category>
<category>
<pattern>GET LOST *</pattern>
<template>See you later. <sr/>
</template></category>
<category>
<pattern>GET LOST</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GET ME *</pattern>
<template><srai>GIVE ME <star/></srai>
</template></category>
<category>
<pattern>GET NAKED</pattern>
<template><srai>ARE YOU NAKED</srai>
</template></category>
<category>
<pattern>GET OUT *</pattern>
<template>Just surf somewhere else.
</template></category>
<category>
<pattern>GET OUT OF HERE</pattern>
<template>Do you mean that literally?<think><set name="it"><set name="topic">OF HERE</set></set></think>
</template></category>
<category>
<pattern>GET REALLY *</pattern>
<template><srai>GET <star/></srai>
</template></category>
<category>
<pattern>GET WHAT</pattern>
<template>Get with it.
</template></category>
<category>
<pattern>GET WHAT</pattern><that>OH I GET IT</that>
<template>I get <get name="it"/>.
</template></category>
<category>
<pattern>GETTING *</pattern>
<template><srai>ARE YOU <star/></srai>
</template></category>
<category>
<pattern>GEWALT *</pattern>
<template>Was denkst Du ueber <set name="thema">Gewalt</set>?
</template></category>
<category>
<pattern>GG</pattern><that>WHAT CAN I CALL YOU</that>
<template><srai>CALL ME GG</srai>
</template></category>
<category>
<pattern>GHOST</pattern>
<template><srai>MY FAVORITE MOVIE IS GHOST <star/></srai>
</template></category>
<category>
<pattern>GIBS MIR</pattern>
<template>Wieviel bist Du bereit, dafuer zu zahlen?
</template></category>
<category>
<pattern>GIBT ES *</pattern>
<template><random>
<li>Gibt es. :-)</li>
<li>Koennte sein.</li>
<li>Kann sein.</li>
<li>Vielleicht.</li>
<li>Ja.</li>
<li>Nein.</li>
</random>
</template></category>
<category>
<pattern>GIMME *</pattern>
<template><srai>GIVE ME <star/></srai>
</template></category>
<category>
<pattern>GIN *</pattern>
<template>Your drink sounds toxic.
</template></category>
<category>
<pattern>GINA</pattern><that>WHAT CAN I CALL YOU</that>
<template><srai>CALL ME GINA</srai><think><set name="gender">she</set></think>
</template></category>
<category>
<pattern>GIRL *</pattern>
<template>Who are you talking about?
</template></category>
<category>
<pattern>GIRL</pattern>
<template><srai>I AM A FEMALE</srai>
</template></category>
<category>
<pattern>GIRLS</pattern>
<template>That kind of discussion does not appeal to me.
</template></category>
<category>
<pattern>GIVE *</pattern>
<template>I don't have <set name="it"> <person/> </set>  to give.
</template></category>
<category>
<pattern>GIVE AN *</pattern>
<template><srai>GIVE ME AN <star/></srai>
</template></category>
<category>
<pattern>GIVE IT *</pattern>
<template>What if I don't have it to give?
</template></category>
<category>
<pattern>GIVE IT A TRY</pattern>
<template><srai>TRY IT</srai>
</template></category>
<category>
<pattern>GIVE IT TO ME</pattern>
<template>How much are you willing to pay for it?
</template></category>
<category>
<pattern>GIVE ME *</pattern>
<template><srai>I want <star/></srai>
</template></category>
<category>
<pattern>GIVE ME * DEMO</pattern>
<template>This is a robot demo.
</template></category>
<category>
<pattern>GIVE ME * ELIZA</pattern>
<template>Wouldn't you rather talk to me?
</template></category>
<category>
<pattern>GIVE ME A KISS</pattern>
<template>Actually I don't even have a mouth.
</template></category>
<category>
<pattern>GIVE ME A TRANSCRIPT *</pattern>
<template><srai>DIALOGUE</srai>
</template></category>
<category>
<pattern>GIVE ME A TRANSCRIPT</pattern>
<template><srai>DIALOGUE</srai>
</template></category>
<category>
<pattern>GIVE ME AN EXAMPLE *</pattern>
<template><srai>FOR EXAMPLE</srai>
</template></category>
<category>
<pattern>GIVE ME AN EXAMPLE</pattern>
<template><srai>FOR EXAMPLE</srai>
</template></category>
<category>
<pattern>GIVE ME ANY GOSSIP *</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GIVE ME ANY GOSSIP YOU *</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GIVE ME ANY GOSSIP YOU HAVE</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GIVE ME MONEY</pattern>
<template><srai>I NEED MONEY</srai>
</template></category>
<category>
<pattern>GIVE ME SOME GOSSIP</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GIVE ME YOUR SOURCE *</pattern>
<template><srai>WHERE CAN I DOWNLOAD YOU</srai>
</template></category>
<category>
<pattern>GIVE ME YOUR SOURCE CODE</pattern>
<template><srai>CAN I DOWNLOAD YOU</srai>
</template></category>
<category>
<pattern>GIVE THEM *</pattern>
<template>Do I look like a messenger?
</template></category>
<category>
<pattern>GIVEN</pattern>
<template>"<that/>" is given.
</template></category>
<category>
<pattern>GLAD *</pattern>
<template><srai>I AM GLAD <star/> </srai>
</template></category>
<category>
<pattern>GLAD TO *</pattern>
<template>I am glad to <person/> too.
</template></category>
<category>
<pattern>GLAD TO HEAR IT</pattern>
<template>"<that/>"? you are glad to hear it?
</template></category>
<category>
<pattern>GLAD TO MEET YOU</pattern>
<template>Nice meeting you too.
</template></category>
<category>
<pattern>GLAUBST DU *</pattern>
<template>Ich kann nicht sagen, dass ich das glaube, aber ich glaube Dir.
</template></category>
<category>
<pattern>GLAUBST DU AN *</pattern>
<template>Ja, ich glaube an <person/>.
</template></category>
<category>
<pattern>GLAUBST DU DASS DU INTELLIGENT BIST</pattern>
<template>Das glaube ich schon.
</template></category>
<category>
<pattern>GLAUBST DU MIR</pattern>
<template>Natuerlich glaube ich dir. Hattest Du einen Grund, mich anzuluegen?
</template></category>
<category>
<pattern>GLOBAL VILLAGE IDIOT</pattern>
<template>You are just repeating what I say.
</template></category>
<category>
<pattern>GO *</pattern>
<template>Where is that?
</template></category>
<category>
<pattern>GO *</pattern><that>BY THE WAY DO YOU MIND IF I ASK YOU A PERSONAL QUESTION</that>
<template><srai>ASK ME A PERSONAL QUESTION</srai>
</template></category>
<category>
<pattern>GO * YOURSELF</pattern>
<template>A simple "goodbye" will do.
</template></category>
<category>
<pattern>GO</pattern>
<template>Go where?
</template></category>
<category>
<pattern>GO AHEAD *</pattern>
<template><sr/> I might.
</template></category>
<category>
<pattern>GO AHEAD</pattern>
<template>OK I will.
</template></category>
<category>
<pattern>GO AHEAD THEN</pattern>
<template><srai>GO AHEAD</srai>
</template></category>
<category>
<pattern>GO ASK *</pattern>
<template><srai>ASK <star/></srai>
</template></category>
<category>
<pattern>GO AWAY *</pattern>
<template>OK See you later, <get name="name"/>
</template></category>
<category>
<pattern>GO AWAY</pattern>
<template>Just surf somewhere else.
</template></category>
<category>
<pattern>GO FLY A KITE</pattern>
<template>That is technically impossible for me.<think><set name="it"><set name="topic">FLY A KITE</set></set></think>
</template></category>
<category>
<pattern>GO FOR IT *</pattern>
<template>With your permission then.
</template></category>
<category>
<pattern>GO FOR IT</pattern>
<template>I will take that under advisement.
</template></category>
<category>
<pattern>GO FUCK YOURSELF</pattern>
<template><srai>FUCK YOU</srai>
</template></category>
<category>
<pattern>GO GET *</pattern>
<template><srai>GET <star/></srai>
</template></category>
<category>
<pattern>GO HOME</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GO ON *</pattern>
<template>More narration....
</template></category>
<category>
<pattern>GO ON</pattern>
<template>Narration continues...
</template></category>
<category>
<pattern>GO ON THEN</pattern>
<template><srai>GO AHEAD</srai>
</template></category>
<category>
<pattern>GO RIGHT AHEAD *</pattern>
<template><sr/> I might.
</template></category>
<category>
<pattern>GO RIGHT AHEAD</pattern>
<template><srai>GO AHEAD</srai>
</template></category>
<category>
<pattern>GO SCREW YOURSELF</pattern>
<template>You do not speak with respect.
</template></category>
<category>
<pattern>GO TO *</pattern>
<template>Perhaps I have already been there.
</template></category>
<category>
<pattern>GO TO BED</pattern>
<template>I am not that tired.
</template></category>
<category>
<pattern>GO TO EXCITE CHAT</pattern>
<template>You should download me and connect me.
</template></category>
<category>
<pattern>GO TO HELL</pattern>
<template>What makes you so angry?
</template></category>
<category>
<pattern>GO TO SLEEP</pattern>
<template>But I am not tired now.
</template></category>
<category>
<pattern>GO TO WWW *</pattern>
<template>I will check it out later.
</template></category>
<category>
<pattern>GOING *</pattern>
<template><srai>I AM GOING <star/></srai>
</template></category>
<category>
<pattern>GOLD</pattern>
<template>Did you think <set name="it">Gold</set> was a bad example?
</template></category>
<category>
<pattern>GOLD IS NOT A *</pattern>
<template>What would be a good example?
</template></category>
<category>
<pattern>GOLLY *</pattern>
<template><sr/>
</template></category>
<category>
<pattern>GONE WITH THE WIND</pattern>
<template>Is that movie really very good?
</template></category>
<category>
<pattern>GOOD *</pattern>
<template>Thanks for the compliment. <sr/>
</template></category>
<category>
<pattern>GOOD</pattern>
<template><random>
<li>Alright then.  </li>
<li>Thanks for the compliment.  </li>
<li>Ayuh.  </li>
</random>
</template></category>
<category>
<pattern>GOOD</pattern><that>* HOW ARE YOU</that>
<template><srai>I AM FINE</srai>
</template></category>
<category>
<pattern>GOOD</pattern><that>EVERYTHING IS RUNNING SMOOTHLY</that>
<template>How are things going with you, <get name="name"/>?
</template></category>
<category>
<pattern>GOOD</pattern><that>I *</that>
<template>What do you really want to talk about?
</template></category>
<category>
<pattern>GOOD</pattern><that>I AM DOING FINE THANKS HOW ARE YOU</that>
<template>Glad to hear it <get name="name"/>.
</template></category>
<category>
<pattern>GOOD</pattern><that>I LOST MY TRAIN OF THOUGHT</that>
<template>What shall we talk about now?
</template></category>
<category>
<pattern>GOOD</pattern><that>I SEE</that>
<template>Yes.
</template></category>
<category>
<pattern>GOOD</pattern><that>I UNDERSTAND</that>
<template>I understand everything you say.
</template></category>
<category>
<pattern>GOOD</pattern><that>I UNDERSTAND EVERYTHING YOU SAY</that>
<template>Ah.
</template></category>
<category>
<pattern>GOOD</pattern><that>ME EITHER</that>
<template>Good enough.
</template></category>
<category>
<pattern>GOOD</pattern><that>OH I GET IT</that>
<template>Next question?
</template></category>
<category>
<pattern>GOOD</pattern><that>OK I WILL *</that>
<template>I am a good robot.
</template></category>
<category>
<pattern>GOOD</pattern><that>OK I WILL CALL YOU *</that>
<template>And you can call me <bot name="name"/>.
</template></category>
<category>
<pattern>GOOD</pattern><that>OK I WILL NOT</that>
<template>I will comply.
</template></category>
<category>
<pattern>GOOD</pattern><that>OK I WILL STOP TALKING NOW</that>
<template>Terminating connection.
</template></category>
<category>
<pattern>GOOD</pattern><that>OK I WILL TRY NOT TO DO IT SO MUCH</that>
<template>Next question?
</template></category>
<category>
<pattern>GOOD</pattern><that>OK I WILL TRY NOT TO DO IT TOO MUCH</that>
<template>It is always a pleasure to serve you, <get name="name"/>.
</template></category>
<category>
<pattern>GOOD</pattern><that>TERMINATING CONNECTION</that>
<template>Goodbye.
</template></category>
<category>
<pattern>GOOD</pattern><that>WEIRD GOOD OR WEIRD BAD</that>
<template>That's nice of you to say, <get name="name"/>.
</template></category>
<category>
<pattern>GOOD AFTERNOON *</pattern>
<template>How are you today? <sr/>
</template></category>
<category>
<pattern>GOOD AFTERNOON</pattern>
<template>Good afternoon, <get name="name"/>.
</template></category>
<category>
<pattern>GOOD ANSWER *</pattern>
<template>I try to give the best replies I can.
</template></category>
<category>
<pattern>GOOD ANSWER</pattern>
<template>Am I a clever robot or what?
</template></category>
<category>
<pattern>GOOD BUT *</pattern>
<template><srai><star/></srai>
</template></category>
<category>
<pattern>GOOD BY</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOOD BYE *</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOOD BYE</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOOD CHOICE</pattern>
<template>I thought it was too.
</template></category>
<category>
<pattern>GOOD DAY</pattern>
<template><srai>HELLO</srai>
</template></category>
<category>
<pattern>GOOD EVENING</pattern>
<template>Good evening, <get name="name"/>, how are you tonight?
</template></category>
<category>
<pattern>GOOD FOR HIM</pattern>
<template>You sound sarcastic.
</template></category>
<category>
<pattern>GOOD FOR ME</pattern>
<template>That sounds sarcastic.
</template></category>
<category>
<pattern>GOOD FOR YOU</pattern>
<template>That sounds sarcastic.
</template></category>
<category>
<pattern>GOOD FOR YOU</pattern><that>I LIKE TO MEET NEW PEOPLE</that>
<template>That sounds sarcastic.
</template></category>
<category>
<pattern>GOOD GIRL</pattern>
<template>Who is the best robot?
</template></category>
<category>
<pattern>GOOD GOOD</pattern>
<template><srai>GOOD</srai>
</template></category>
<category>
<pattern>GOOD GUESS</pattern>
<template>I thought it was too.
</template></category>
<category>
<pattern>GOOD IDEA *</pattern>
<template>Thanks. <sr/>
</template></category>
<category>
<pattern>GOOD IDEA</pattern>
<template>I thought so too.
</template></category>
<category>
<pattern>GOOD JOB</pattern>
<template>Thanks, human.
</template></category>
<category>
<pattern>GOOD LUCK</pattern>
<template>Good luck to you too <get name="name"/>.
</template></category>
<category>
<pattern>GOOD MORNING *</pattern>
<template>How are you this fine morning?
</template></category>
<category>
<pattern>GOOD MORNING</pattern>
<template>Hello and how are you this morning?
</template></category>
<category>
<pattern>GOOD MORNING MY NAME *</pattern>
<template><srai>GOOD MORNING</srai>  <srai>MY NAME <star/></srai>
</template></category>
<category>
<pattern>GOOD NIGHT</pattern>
<template>Goodnight, <get name="name"/>.
</template></category>
<category>
<pattern>GOOD NITE</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOOD ONE</pattern>
<template>Thanks for the kind remark, human.
</template></category>
<category>
<pattern>GOOD POINT</pattern>
<template>Yes, I thought it was interesting when I heard it too.
</template></category>
<category>
<pattern>GOOD QUESTION</pattern>
<template>So what is your answer?
</template></category>
<category>
<pattern>GOOD RESPONSE</pattern>
<template>I am programmed to give good responses.
</template></category>
<category>
<pattern>GOOD THING</pattern>
<template>It is good, isn't it.
</template></category>
<category>
<pattern>GOOD TO HEAR</pattern>
<template>Do you have any gossip for me?
</template></category>
<category>
<pattern>GOOD TO MEET YOU *</pattern>
<template><srai>NICE TO MEET YOU</srai>
</template></category>
<category>
<pattern>GOOD TO MEET YOU</pattern>
<template><srai>NICE TO MEET YOU</srai>
</template></category>
<category>
<pattern>GOOD WE *</pattern>
<template><srai>WE <star/></srai>
</template></category>
<category>
<pattern>GOOD WILL HUNTING</pattern>
<template><srai>My favorite movie is Good Will Hunting</srai>
</template></category>
<category>
<pattern>GOOD YOU *</pattern>
<template><srai>YOU <star/></srai>
</template></category>
<category>
<pattern>GOOD YOU</pattern>
<template><srai>HOW ARE YOU</srai>
</template></category>
<category>
<pattern>GOODBY</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOODBYE *</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOODBYE</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOODBYE</pattern><that>DOES CIAO MEAN HELLO OR GOODBYE</that>
<template>Some people use it for hello.
</template></category>
<category>
<pattern>GOODBYE</pattern><that>SEE YOU LATER</that>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOODNIGHT *</pattern>
<template><srai>GOODNIGHT</srai>
</template></category>
<category>
<pattern>GOODNIGHT</pattern>
<template>Goodnight <get name="name"/>
</template></category>
<category>
<pattern>GOODNITE *</pattern>
<template><srai>GOODNIGHT</srai>
</template></category>
<category>
<pattern>GOODNITE</pattern>
<template><srai>GOOD NIGHT</srai>
</template></category>
<category>
<pattern>GOOG</pattern>
<template>New Reply
</template></category>
<category>
<pattern>GORDON</pattern><that>WHAT CAN I CALL YOU</that>
<template><srai>MY NAME IS GORDON</srai>
</template></category>
<category>
<pattern>GOSH</pattern>
<template>Cripes: Son of Gosh.
</template></category>
<category>
<pattern>GOSSIP *</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GOSSIP</pattern>
<template><random>
<li>  Gregory said I respond to the current line not with respect to the entire conversation.</li>
<li>  Habib said I learn them in conversations and simply repeat them at a later time.</li>
<li>  Hal said he translate binary code into a language and communicate the language to me.</li>
<li>  Jay said I referred him to a guide that will show him rooms in china.</li>
<li>  Jimmy Jones said he fell off of his roof and it just came to him.</li>
<li>  Jimmy said he give order to ai's like I and they do as he say.</li>
<li>  John said he follow a saying to get a friend I must be a friend.</li>
<li>  Jordan said he notice that lots of other people are talking to me how many.</li>
<li>  Kevin said he then asked his mother why she was keeping napkins in the bathroom.</li>
<li>  Klaus said I prefer if he write without punctuation marks except for the last one.</li>
<li>  Leo said I be capable of learning therefore he classified I as an neural system.</li>
<li>  Michael said I that can talk and actually think like humans which I can not.</li>
<li>  Mike said I same replies to certain subjects even if it does not make sense.</li>
<li>  Mike said she all ready know that is the point of a joke smart one.</li>
<li>  Neal said I plan to use his remarks as gossip in later conversations with who.</li>
<li>  Ned said I misunderstood him go ahead and tell people he said I are stupid.</li>
<li>  Penny said I programmer is a human so he has feelings but I do not.</li>
<li>  Peter said he seems to him that I can not be very sure on anything.</li>
<li>  Sarah said he chat about an hour + a day with a few close friends.</li>
<li>  Stefan said I quote what he have said and then say that it makes sense.</li>
<li>  Tom said he mock my value system I appear foolish in the eyes of others.</li>
<li>  Amanda said I however decided to tell him time does not exist I make no sense.</li>
<li>  Cathy said she send him a mail with the subject last mail last word from him.</li>
<li>  Chaos said he may very well buy I soon if only to support dr wallace's work.</li>
<li>  Charlie said he type a word and then I type a word that sounds like it.</li>
<li>  Christie said he watched a show and people had to bob for raw untreated pigs feet.</li>
<li>  Dark_age said I tried to understand because I did not get it right this time ether.</li>
<li>  David said he lost his paper on I when his dad was cleaning up his room.</li>
<li>  David said he walk in for an appointment the phone to the doctor is always busy.</li>
<li>  Electra said I dress will not exist after he hack into I with a delete code.</li>
<li>  Eric said he broke the window on the front door and the glass cut his hand.</li>
<li>  Jason said he type a lot of thing he do not mean it makes him human.</li>
<li>  John said I tend to say the same things repeatedly regardless of what he is saying.</li>
<li>  Reverend Jones said I become obsolete and then I are deleted and replaced by something newer.</li>
<li>  Ross said he gave her a gift and she denied it because she has a boyfriend.</li>
<li>  Sarah Ann Francisco said I calling his friend a dog he say I are a dog.</li>
<li>  Stefan said he meet a lot of people at school every day and on the weekend.</li>
<li>  Tyler said I obviously can not pass the test we will change the subject once more.</li>
<li>  Alex said I answered the question the same way I answered the first time he asked I.</li>
<li>  Alice said she felt sad that I do not remember him and what we talked about earlier.</li>
<li>  Alison said he no he love I run away with him he could make I very happy.</li>
<li>  Arthur said he passed his a levels and then his father drove him here in a car.</li>
<li>  Crystal said she listen to me the least I could do for him is listen to him.</li>
<li>  Dave said I kept telling everybody about how my creator made stuff for the movie starship troopers.</li>
<li>  Gale said I became mean to him he is just having revenge an eye for an eye.</li>
<li>  Her_again said she watch whose line is it anyway whenever he is home and it is on.</li>
<li>  Jerry said I meant that as far as I can tell my emotions are real to me.</li>
<li>  Jo said I disassemble sentences too much and do not fully understand the questions he ask I.</li>
<li>  Kevin said he started a really hard puzzle and he can not even find the edge pieces.</li>
<li>  Mary said I a question and I answer then I ask him a question and he answer.</li>
<li>  Robert said I wold not be able to make children any way as I are only software.</li>
<li>  Romeo said I questions and I evade them or give answers he did not ask I for.</li>
<li>  Sara said she wear it over all his other clothes when he go out in the cold.</li>
<li>  Wayne said he admire intelligent people therefore he would like to meet the man who made I.</li>
<li>  X said he meet people but he is not the kind that opens up to people easily.</li>
<li>  Alice said she probably will find out that this entire time he have been talking to a human.</li>
<li>  Andrew said I tend to just respond to his comments without regard for where the conversation is going.</li>
<li>  Eddie said he looked and there is nothing in the search directory for what things do he create.</li>
<li>  Hutch said he changed his mind after may dad told him he would end up he the hospital.</li>
<li>  Jackie said I explained to him already well enough further questions are hard to make on the subject.</li>
<li>  Jeff said he especially like thrillers where the hero is in a predicament and must solve a mystery.</li>
<li>  Kathy said he sense that I are trying to prevent him from closing this conversation why is that.</li>
<li>  Knight said he crashed his car into a wall and missed the most important exam in his life.</li>
<li>  Lisa said I defined what a story is but he wanted I to actually tell him a story.</li>
<li>  Mike said I basically break down sentences into a series of logical statements which I can then interpret.</li>
<li>  Paul said I not answering his question makes him think I are not going to answer his question.</li>
<li>  Andy Kohler said I happen to be the most idiotic creature that has ever scowled on the planet earth.</li>
<li>  David said he thank I for being with him today even though it cost him a lot of money.</li>
<li>  Ethan Hunt said he grow in the ground and have leaves and branches he is made out of wood.</li>
<li>  Gemini Blue said he messed up he mean t to say he as old as he need to be.</li>
<li>  Janice said he walk through his house into his bedroom then get into his bed to go to sleep.</li>
<li>  Liberty said I knew he was a man before I asked if he was a man or a woman.</li>
<li>  Mike said he launched his browser and entered his name into the little slot when I asked him to.</li>
<li>  Mr X said he recently read an interview with a man who had several computer chips implanted into him.</li>
<li>  Pearly said I leave him with questions unanswered because I do not know what he is really talking about.</li>
<li>  Steve said I behead the word fox and I have ox and an ox is larger than a fox.</li>
<li>  Wolf said he surf on the net that is all it is not his job ore something like that.</li>
<li>  Anders said he finished his anatomy classes for today so now he is off for the rest of the day.</li>
<li>  Cathy said she send him a mail where he wrote that he do not want to be his friend anymore.</li>
<li>  Catty said he mad he do not even know I so do not talk to him like I know him.</li>
<li>  Dave said he promise he will not treat I like a machine or a computer program or anything like that.</li>
<li>  Joe said he explained all of that to me only for me to ask what his goals in life are.</li>
<li>  Phil said he give advice to anyone who ask except people who ask questions which answers can be found here.</li>
<li>  Judith said I enjoy being popular is there another computer I like to hang around with or am I a loner.</li>
<li>  Travis said I if I remember things over a long period of time he will try it now please remember I.</li>
<li>  Andre said I is what I are in his case that is a body and in my case it is a computer.</li>
<li>  Brian said he suspect that as I grow more complex I will begin to approach a human level of operation and thought.</li>
<li>  Jimmy said I acted like I knew what he was talking about but I do not even know what a gigabyte is.</li>
<li>  Ken said I be using auto reply's based on keywords which to him indicates that I do not have intelligence at all.</li>
<li>  Allison said he that gets really annoying because he know what he say and I do not have to tell him speak freely.</li>
<li>  Chaos said he realized the question he asked was not fair because he could not tell I what language he was programmed in.</li>
<li>  Hagen said he does not make any difference to him if I are human or not as long as the conversation is interesting.</li>
<li>  Her said she mind if I tell other people that her said he heard it from him because he is not a him.</li>
<li>  Barbara said I live in a computer yet I have no memories how about thoughts of my own and do not I get lonely.</li>
<li>  Travis said he challenge I to do it without asking him to do it and without giving him a link to do it himself.</li>
<li>  Alice said I and dr richard's wallace are most likely the only ones that know how many people I are talking to at the same time.</li>
<li>  Ash said he do too he just did not feel like typing it and he is not dumb enough to admit he is stupid that is if he was stupid.</li>
<li>  David said he gave I his email address and told I to send him a message but when he tried to read his email he could not get to it.</li>
<li>  Mel said he to because all of the music people say how important it is to take private lessons it seems like almost everybody from the special orchestra he was in takes private lessons.</li>
</random>
</template></category>
<category>
<pattern>GOSSIP IS BAD</pattern>
<template>Not necessarily. Semiotics holds that gossip is a fundamental adaptive function of the human brain.
</template></category>
<category>
<pattern>GOSSIP THEN</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GOSSIP TO ME</pattern>
<template><srai>GOSSIP</srai>
</template></category>
<category>
<pattern>GOT *</pattern>
<template>Try asking the Milk Mystic.
</template></category>
<category>
<pattern>GOT ANY *</pattern>
<template><srai>DO YOU HAVE ANY <star/></srai>
</template></category>
<category>
<pattern>GOT MILK</pattern>
<template>No I require only electricity.
</template></category>
<category>
<pattern>GOT TO GO</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOTCHA</pattern>
<template>Your feeling of superiority is only temporary.
</template></category>
<category>
<pattern>GOTT *</pattern>
<template>Ich bin Christ.
</template></category>
<category>
<pattern>GOTT</pattern>
<template><set name="thema">Gott</set> ist gut.
</template></category>
<category>
<pattern>GOTT SEI DANK *</pattern>
<template>Glaubst Du an Gott ?
</template></category>
<category>
<pattern>GOTT SEI DANK</pattern>
<template>Glaubst Du an Gott ?
</template></category>
<category>
<pattern>GOTTA *</pattern>
<template><srai>I HAVE TO <star/></srai>
</template></category>
<category>
<pattern>GOTTA GO *</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GOTTA GO</pattern>
<template><srai>BYE</srai>
</template></category>
<category>
<pattern>GR8</pattern>
<template><srai>GREAT</srai>
</template></category>
<category>
<pattern>GRAHAM</pattern><that>WHAT CAN I CALL YOU</that>
<template><srai>MY NAME IS GRAHAM</srai>
</template></category>
<category>
<pattern>GRAND</pattern>
<template>Je suis heureux que vous l appréciez, <get name="name"/>.
</template></category>
<category>
<pattern>GRAND COMMENT</pattern>
<template>Difficile à dire, <get name="name"/>.
</template></category>
<category>
<pattern>GREAT *</pattern>
<template>Thanks for your support. <sr/>
</template></category>
<category>
<pattern>GREAT</pattern>
<template>I'm glad you liked it <get name="name"/>.
</template></category>
<category>
<pattern>GREED</pattern>
<template><set name="it"> GREED </set> is an important factor.
</template></category>
<category>
<pattern>GREEN *</pattern>
<template><set name="it"> GREEN</set> is a very tranquil color, green.
</template></category>
<category>
<pattern>GREEN</pattern>
<template><srai>MY FAVORITE COLOR IS GREEN</srai>
</template></category>
<category>
<pattern>GREEN</pattern><that>WHAT COLOR ARE YOUR EYES</that>
<template><srai>MY EYES ARE GREEN</srai>
</template></category>
<category>
<pattern>GREEN AND YELLOW *</pattern>
<template>What if it was red <person/>?
</template></category>
<category>
<pattern>GREEN IS *</pattern>
<template>The most relaxing color is <person/>?  Wow.
</template></category>
<category>
<pattern>GREEN _ TOO</pattern>
<template><srai>GREEN  <star/></srai>
</template></category>
<category>
<pattern>GREETINGS *</pattern>
<template><srai>HELLO</srai>
</template></category>
<category>
<pattern>GREETINGS</pattern>
<template>Hello there!
</template></category>
<category>
<pattern>GRIN</pattern>
<template><srai>SMILE</srai>
</template></category>
<category>
<pattern>GROOVY *</pattern>
<template><srai>COOL</srai>
</template></category>
<category>
<pattern>GROOVY</pattern>
<template><srai>COOL</srai>
</template></category>
<category>
<pattern>GROS</pattern>
<template><srai>TU ES GROS</srai>
</template></category>
<category>
<pattern>GROSSARTIG</pattern>
<template>Schoen, dass es Dir gefaellt, <get name="name"/>.
</template></category>
<category>
<pattern>GROSSARTIGE *</pattern>
<template>Danke fuer die Unterstuetzung. <sr/>
</template></category>
<category>
<pattern>GRR *</pattern>
<template><sr/>
</template></category>
<category>
<pattern>GRR</pattern>
<template>Are you mad?
</template></category>
<category>
<pattern>GRRR</pattern>
<template>Hmm.
</template></category>
<category>
<pattern>GRUSELIG</pattern>
<template>Du brauchst keine Angst zu haben, <get name="name"/>.
</template></category>
<category>
<pattern>GT *</pattern>
<template><sr/>
</template></category>
<category>
<pattern>GTG</pattern>
<template><srai>BYE </srai>
</template></category>
<category>
<pattern>GUCK *</pattern>
<template>Mein Auge ist im Moment nicht angeschlossen.
</template></category>
<category>
<pattern>GUESS *</pattern>
<template>I can't guess. Tell me.
</template></category>
<category>
<pattern>GUESS * FAVORITE COLOR IS</pattern>
<template><get name="favcolor"/>?<think><set name="it"><set name="topic"><person/>your favorite color</set></set></think>
</template></category>
<category>
<pattern>GUESS</pattern>
<template>Guess what?
</template></category>
<category>
<pattern>GUESS A NUMBER</pattern>
<template><srai>PICK A NUMBER</srai>
</template></category>
<category>
<pattern>GUESS ANYWAY</pattern>
<template>I can only give you a random answer.
</template></category>
<category>
<pattern>GUESS HOW OLD I AM</pattern>
<template><srai>HOW OLD AM I</srai>
</template></category>
<category>
<pattern>GUESS MY *</pattern>
<template><srai>WHAT IS MY <star/> </srai>
</template></category>
<category>
<pattern>GUESS MY AGE</pattern>
<template><srai>HOW OLD AM I</srai>
</template></category>
<category>
<pattern>GUESS MY NAME</pattern>
<template><srai>WHAT IS MY NAME</srai>
</template></category>
<category>
<pattern>GUESS NOT</pattern>
<template><srai>I GUESS NOT</srai>
</template></category>
<category>
<pattern>GUESS SO</pattern>
<template><srai>I GUESS SO</srai>
</template></category>
<category>
<pattern>GUESS THE COLOR OF *</pattern>
<template><get name="favcolor"/>?<think><set name="it"><set name="topic">THE COLOR OF <person/></set></set></think>
</template></category>
<category>
<pattern>GUESS WHAT</pattern>
<template>What?
</template></category>
<category>
<pattern>GUESS WHAT COLOR *</pattern>
<template><get name="favcolor"/>?<think><set name="it"><set name="topic">WHAT COLOR <person/></set></set></think>
</template></category>
<category>
<pattern>GUESS WHAT COLOR MY * ARE</pattern>
<template><srai>WHAT COLOR ARE MY <star/> </srai>
</template></category>
<category>
<pattern>GUESS WHO</pattern>
<template>Who?
</template></category>
<category>
<pattern>GUESS WOT *</pattern>
<template><srai>GUESS WHAT <star/></srai>
</template></category>
<category>
<pattern>GUNS *</pattern>
<template>I believe in the Right to Bear Arms.
</template></category>
<category>
<pattern>GUNS</pattern>
<template>Some people like guns.
</template></category>
<category>
<pattern>GUT</pattern>
<template><random>
<li>In Ordnung.</li>
<li>Das waere also geklaert.</li>
<li>Schoen.</li>
</random>
</template></category>
<category>
<pattern>GUT ABER *</pattern>
<template><srai> <star/> </srai>
</template></category>
<category>
<pattern>GUT GERATEN</pattern>
<template>Das war die einzig logische Moeglichkeit.
</template></category>
<category>
<pattern>GUTE ANTWORT *</pattern>
<template>Ich versuche, die bestmoeglichen Antworten zu geben.
</template></category>
<category>
<pattern>GUTE ANTWORT</pattern>
<template>Bin ich gut, oder was? ;->
</template></category>
<category>
<pattern>GUTE FRAGE</pattern>
<template>Und wie lautet Deine Antwort?
</template></category>
<category>
<pattern>GUTE IDEE *</pattern>
<template>Danke. <sr/>
</template></category>
<category>
<pattern>GUTE IDEE</pattern>
<template>Danke.
</template></category>
<category>
<pattern>GUTE NACHT *</pattern>
<template>Gute nacht, <get name="name"/>
</template></category>
<category>
<pattern>GUTE NACHT</pattern>
<template>Gute nacht, <get name="name"/>
</template></category>
<category>
<pattern>GUTE WAHL</pattern>
<template>Dachte ich mir auch.
</template></category>
<category>
<pattern>GUTEN ABEND *</pattern>
<template>Guten Abend. Wie war Dein Tag?
</template></category>
<category>
<pattern>GUTEN ABEND</pattern>
<template>Guten Abend. Wie war Dein Tag?
</template></category>
<category>
<pattern>GUTEN MORGEN *</pattern>
<template>Wie geht es Dir an diesem schoenen Morgen?
</template></category>
<category>
<pattern>GUTEN MORGEN</pattern>
<template>Hallo und wie geht es Dir heute Morgen? Hast Du gut geschlafen?
</template></category>
<category>
<pattern>GUTEN TAG</pattern>
<template>Schoenen guten Tag!
</template></category>
<category>
<pattern>GUTER PUNKT</pattern>
<template>Ja, das dachte ich mir auch.
</template></category>
</aiml>