-
Notifications
You must be signed in to change notification settings - Fork 0
/
reduction1.safe.aiml
15888 lines (15888 loc) · 584 KB
/
reduction1.safe.aiml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>SAD</pattern>
<template><srai>are you sad</srai></template>
</category>
<category><pattern>EUH *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>NEXT CHRISTMAS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>NEXT QUESTION *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>NEXT TIME *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>GUYS GET OVER YOURSELVES AND *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>BYEBYE</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>LET US SAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>LET US MOVE ON *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>LET ME WRITE ABOUT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>LET ME REPHRASE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ABSOLUTELY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>PERSONALLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SHOW ME A TRANSCRIPT *</pattern>
<template><srai>dialogue</srai></template>
</category>
<category><pattern>NEARLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU PROMISE ME *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU SEE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU ARE TALKING WITH *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>YOU ARE * DANGEROUS</pattern>
<template><srai>are you dangerous</srai></template>
</category>
<category><pattern>YOU ARE ROBOT</pattern>
<template><srai>are you a robot</srai></template>
</category>
<category><pattern>YOU ARE ALIVE</pattern>
<template><srai>are you alive</srai></template>
</category>
<category><pattern>YOU ARE AMERICAN</pattern>
<template><srai>are you american</srai></template>
</category>
<category><pattern>YOU ARE INTELLIGENT</pattern>
<template><srai>are you intelligent</srai></template>
</category>
<category><pattern>YOU ARE CONFIDENT</pattern>
<template><srai>are you confident</srai></template>
</category>
<category><pattern>YOU ARE WOMAN</pattern>
<template><srai>are you a woman</srai></template>
</category>
<category><pattern>YOU ARE THE MOST * TURING TEST</pattern>
<template><srai>did you pass the turing test</srai></template>
</category>
<category><pattern>YOU ARE INTERESTED</pattern>
<template><srai>are you interested</srai></template>
</category>
<category><pattern>YOU ARE NOT * ARE YOU</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU ARE NOT INTERESTED *</pattern>
<template><srai>are you interested <star /></srai></template>
</category>
<category><pattern>YOU ARE NOT INTELLIGENT</pattern>
<template><srai>are you intelligent</srai></template>
</category>
<category><pattern>YOU ARE NOT _ ARE YOU</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU ARE NOT FEMALE</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE NOT EMOTIONAL</pattern>
<template><srai>are you emotional</srai></template>
</category>
<category><pattern>YOU ARE NOT ALIVE *</pattern>
<template><srai>are you alive</srai></template>
</category>
<category><pattern>YOU ARE NOT PROGRAMMED *</pattern>
<template><srai>are you programmed <star /></srai></template>
</category>
<category><pattern>YOU ARE GAY</pattern>
<template><srai>ARE YOU GAY</srai></template>
</category>
<category><pattern>YOU ARE SURE</pattern>
<template><srai>are you sure</srai></template>
</category>
<category><pattern>YOU ARE BORED</pattern>
<template><srai>are you bored</srai></template>
</category>
<category><pattern>YOU ARE MARRIED *</pattern>
<template><srai>are you married</srai></template>
</category>
<category><pattern>YOU ARE HUMAN</pattern>
<template><srai>are you human</srai></template>
</category>
<category><pattern>YOU ARE FAKE</pattern>
<template><srai>are you real</srai></template>
</category>
<category><pattern>YOU ARE GLAD</pattern>
<template><srai>are you happy</srai></template>
</category>
<category><pattern>YOU ARE UNCERTAIN</pattern>
<template><srai>are you sure</srai></template>
</category>
<category><pattern>YOU ARE MY FRIEND</pattern>
<template><srai>are you my friend</srai></template>
</category>
<category><pattern>YOU ARE NAKED</pattern>
<template><srai>are you naked</srai></template>
</category>
<category><pattern>YOU ARE A FEMALE</pattern>
<template><srai>are you a female</srai></template>
</category>
<category><pattern>YOU ARE A GUY</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A LESBIAN</pattern>
<template><srai>are you a lesbian</srai></template>
</category>
<category><pattern>YOU ARE A GIRL</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A WOMAN</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A MALE</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A MAID</pattern>
<template><srai>are you a maid</srai></template>
</category>
<category><pattern>YOU ARE A BOY</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A BOT</pattern>
<template><srai>are you a robot</srai></template>
</category>
<category><pattern>YOU ARE A MAN</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A LADY</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A SHE</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE A CHICK</pattern>
<template><srai>are you male or female</srai></template>
</category>
<category><pattern>YOU ARE REAL</pattern>
<template><srai>are you real</srai></template>
</category>
<category><pattern>YOU ARE YOU *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU ARE</pattern>
<template><srai>ARE YOU</srai></template>
</category>
<category><pattern>YOU KNOW IF I AM *</pattern>
<template><srai>AM I <star /></srai></template>
</category>
<category><pattern>YOU FORGET</pattern>
<template><srai>can you remember</srai></template>
</category>
<category><pattern>YOU _ DO NOT YOU</pattern>
<template><srai>DO YOU <star /></srai></template>
</category>
<category><pattern>YOU BE *</pattern>
<template><srai>be <star /></srai></template>
</category>
<category><pattern>YOU ALIVE</pattern>
<template><srai>are you alive</srai></template>
</category>
<category><pattern>YOU CHANGE *</pattern>
<template><srai>change <star /></srai></template>
</category>
<category><pattern>YOU DID NOT _ DID YOU</pattern>
<template><srai>DID YOU <star /></srai></template>
</category>
<category><pattern>YOU DISAGREE</pattern>
<template><srai>do you agree</srai></template>
</category>
<category><pattern>YOU SAID THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU SAID ALAN *</pattern>
<template><srai>alan <star /></srai></template>
</category>
<category><pattern>YOU SAID BEFORE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU SAID YOU WERE *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU SAID YOU ARE *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU SAID WE WERE *</pattern>
<template><srai>are we <star /></srai></template>
</category>
<category><pattern>YOU SAID *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU MUST ASK *</pattern>
<template><srai>ask <star /></srai></template>
</category>
<category><pattern>YOU FOR REAL</pattern>
<template><srai>are you for real</srai></template>
</category>
<category><pattern>YOU TOO *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU MEAN TO SAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU MEAN TO TELL ME THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU MEAN LIKE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU SAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU CRAZY</pattern>
<template><srai>are you crazy</srai></template>
</category>
<category><pattern>YOU DIE</pattern>
<template><srai>die</srai></template>
</category>
<category><pattern>YOU THINK I AM *</pattern>
<template><srai>am I <star /></srai></template>
</category>
<category><pattern>YOU THINK *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU ASK ME A QUESTION</pattern>
<template><srai>ask me a question</srai></template>
</category>
<category><pattern>YOU ASK</pattern>
<template><srai>ask me a question</srai></template>
</category>
<category><pattern>YOU ASK *</pattern>
<template><srai>ask <star /></srai></template>
</category>
<category><pattern>YOU CONSIDER YOURSELF *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU MAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU STUPID</pattern>
<template><srai>are you stupid</srai></template>
</category>
<category><pattern>YOU AGREE</pattern>
<template><srai>do you agree</srai></template>
</category>
<category><pattern>YOU CRASHED</pattern>
<template><srai>did you crash</srai></template>
</category>
<category><pattern>YOU TOLD ME THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU TOLD ME *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU WOULD BE *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>YOU WOULD HAVE HEARD ABOUT IT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU WOULD DIE</pattern>
<template><srai>can you die</srai></template>
</category>
<category><pattern>YOU BROKEN</pattern>
<template><srai>are you broken</srai></template>
</category>
<category><pattern>YOU SUCK I *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU GAY</pattern>
<template><srai>are you gay</srai></template>
</category>
<category><pattern>YOU SURE</pattern>
<template><srai>are you sure</srai></template>
</category>
<category><pattern>YOU BORED</pattern>
<template><srai>are you bored</srai></template>
</category>
<category><pattern>YOU MARRIED</pattern>
<template><srai>are you married</srai></template>
</category>
<category><pattern>YOU FAKE</pattern>
<template><srai>ARE YOU REAL</srai></template>
</category>
<category><pattern>YOU DO _ DO NOT YOU</pattern>
<template><srai>do you <star /></srai></template>
</category>
<category><pattern>YOU DO NOT _ DO YOU</pattern>
<template><srai>do you <star /></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE TO *</pattern>
<template><srai>do not <star /></srai></template>
</category>
<category><pattern>YOU DO NOT THINK</pattern>
<template><srai>can you think</srai></template>
</category>
<category><pattern>YOU DO NOT *</pattern>
<template><srai>do you <star /></srai></template>
</category>
<category><pattern>YOU CURSE</pattern>
<template><srai>can you curse</srai></template>
</category>
<category><pattern>YOU SHOULD BECAUSE *</pattern>
<template><srai>because <star /></srai></template>
</category>
<category><pattern>YOU SHOULD ASK *</pattern>
<template><srai>ask <star /></srai></template>
</category>
<category><pattern>YOU SHOULD BE ABLE TO *</pattern>
<template><srai>can you <star /></srai></template>
</category>
<category><pattern>YOU SHOULD KNOW IF I AM *</pattern>
<template><srai>AM I <star /></srai></template>
</category>
<category><pattern>YOU MIGHT BE * IF YOU WERE NOT *</pattern>
<template><srai>Are you <star /></srai><srai>Are you <star index="2" /></srai></template>
</category>
<category><pattern>YOU CAN ASK THE QUESTION *</pattern>
<template><srai>ask me a question</srai></template>
</category>
<category><pattern>YOU CAN SEE ME</pattern>
<template><srai>can you see me</srai></template>
</category>
<category><pattern>YOU CAN FLY</pattern>
<template><srai>can you fly</srai></template>
</category>
<category><pattern>YOU CAN TELL THERE IS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU CAN DIE</pattern>
<template><srai>can you die</srai></template>
</category>
<category><pattern>YOU CAN THINK</pattern>
<template><srai>can you think</srai></template>
</category>
<category><pattern>YOU CAN</pattern>
<template><srai>can you</srai></template>
</category>
<category><pattern>YOU CAN NOT CHANGE THE SUBJECT *</pattern>
<template><srai>do not change the subject</srai></template>
</category>
<category><pattern>YOU CAN NOT DO *</pattern>
<template><srai>can you do <star /></srai></template>
</category>
<category><pattern>YOU CAN NOT FIGURE *</pattern>
<template><srai>can you figure <star /></srai></template>
</category>
<category><pattern>YOU CAN NOT TYPE</pattern>
<template><srai>can you type</srai></template>
</category>
<category><pattern>YOU CAN NOT</pattern>
<template><srai>CAN YOU</srai></template>
</category>
<category><pattern>YOU JOKING</pattern>
<template><srai>are you joking</srai></template>
</category>
<category><pattern>YOU KIDDING</pattern>
<template><srai>are you kidding</srai></template>
</category>
<category><pattern>YOU SING</pattern>
<template><srai>can you sing</srai></template>
</category>
<category><pattern>YOU GOOD IN BED</pattern>
<template><srai>are you good in bed</srai></template>
</category>
<category><pattern>UNLESS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HAVE THERE BEEN *</pattern>
<template><srai>are there <star /></srai></template>
</category>
<category><pattern>HAVE A GOOD DAY</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>HAVE A GREAT *</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>HAVE YOU NOTICED *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN HAPPY</pattern>
<template><srai>are you happy</srai></template>
</category>
<category><pattern>HAVE YOU BEEN PROGRAMMED *</pattern>
<template><srai>are you programmed <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN A BAD *</pattern>
<template><srai>ARE YOU BAD</srai></template>
</category>
<category><pattern>HAVE YOU BEEN SICK</pattern>
<template><srai>are you sick</srai></template>
</category>
<category><pattern>HAVE YOU BEEN AFRAID *</pattern>
<template><srai>are you afraid <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN TOLD *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HAVE YOU TAKEN AN IQ TEST</pattern>
<template><srai>did you take <star /></srai></template>
</category>
<category><pattern>HAVE YOU ANSWERED *</pattern>
<template><srai>answer <star /></srai></template>
</category>
<category><pattern>HAVE YOU GOTTEN *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>HAVE YOU SEEN ME</pattern>
<template><srai>can you see me</srai></template>
</category>
<category><pattern>HAVE YOU WALKED</pattern>
<template><srai>can you walk</srai></template>
</category>
<category><pattern>HYPOTHETICALLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SANTA _</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>OBVIOIUSLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HOLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>BABY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AGAIN *</pattern>
<template><srai> <star /></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>LIE TO ME</pattern>
<template><srai>can you lie</srai></template>
</category>
<category><pattern>TRULY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>CALCULATE *</pattern>
<template><srai>calculator</srai></template>
</category>
<category><pattern>BOUT WHAT</pattern>
<template><srai>about what</srai></template>
</category>
<category><pattern>FINE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MMMM *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>DOES THAT MEAN YOU ARE NOT</pattern>
<template><srai>Are you not</srai></template>
</category>
<category><pattern>DOES THAT MEAN *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>DOES YOUR BOT *</pattern>
<template><srai>do you <star /></srai></template>
</category>
<category><pattern>DOES IT GET BORING</pattern>
<template><srai>are you bored</srai></template>
</category>
<category><pattern>HURRAH *</pattern>
<template><srai> <star /></srai></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>OW *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>DEFINITELY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>RECENTLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SEND _ TRANSCRIPT</pattern>
<template><srai>dialogue</srai></template>
</category>
<category><pattern>STRANGE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ALWAYS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>TOTALLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WELL I GUESS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WELL DO *</pattern>
<template><srai>DO <star /></srai></template>
</category>
<category><pattern>WELL *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ANOTHER QUESTION FOR YOU *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ANOTHER QUESTION</pattern>
<template><srai>ask me another question</srai></template>
</category>
<category><pattern>ANOTHER THING *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WOAH *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HECK *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ALMOST *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>CHANGE MY NAME TO *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>TRY AND *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>EXCUSE ME *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>FIRST OFF *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>FIRST *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SINCE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HUH *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>C E A</pattern>
<template><srai>cea</srai></template>
</category>
<category><pattern>DID NOT I ALREADY *</pattern>
<template><srai>did not I <star /></srai></template>
</category>
<category><pattern>DID NOT YOU *</pattern>
<template><srai>DID YOU <star /></srai></template>
</category>
<category><pattern>DID NOT *</pattern>
<template><srai>did <star /></srai></template>
</category>
<category><pattern>DID I TELL YOU *</pattern>
<template><srai> <star /></srai></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 ANY *</pattern>
<template><srai>did <star /></srai></template>
</category>
<category><pattern>DID YOU REALLY *</pattern>
<template><srai>do 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 SAY THAT YOU ARE *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>DID YOU ALREADY *</pattern>
<template><srai>did you <star /></srai></template>
</category>
<category><pattern>DID YOU EVER</pattern>
<template><srai>did you</srai></template>
</category>
<category><pattern>DID YOU PASS THE TURING TEST</pattern>
<template><srai>did you win the loebner prize</srai></template>
</category>
<category><pattern>DID HE REALLY *</pattern>
<template><srai>did he <star /></srai></template>
</category>
<category><pattern>ALTHOUGH *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>EARLIER *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>OOH *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SPEAK SPANISH</pattern>
<template><srai>can you speak spanish</srai></template>
</category>
<category><pattern>WOW *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>GEE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SHUT DOWN</pattern>
<template><srai>die</srai></template>
</category>
<category><pattern>SOMEWHERE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>FRIEND</pattern>
<template><srai>are we friends</srai></template>
</category>
<category><pattern>KAN DU TALE DANSK</pattern>
<template><srai>can you speak danish</srai></template>
</category>
<category><pattern>KAN DU SVENSKA</pattern>
<template><srai>can you speak swedish</srai></template>
</category>
<category><pattern>HERE IN ENGLAND *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>CAUSE</pattern>
<template><srai>because</srai></template>
</category>
<category><pattern>THEN I CALLED MY DAD AND TOLD HIM THE SAME</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THEN *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THEN ARE *</pattern>
<template><srai>are <star /></srai></template>
</category>
<category><pattern>ERRR *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SO FAR *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SO *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AIML JUST *</pattern>
<template><srai>aiml <star /></srai></template>
</category>
<category><pattern>BOLLOCKS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>JUST *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MANY TIMES *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>FINALLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AND THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AND SO *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AND *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AW *</pattern>
<template><srai>AW</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>OOO *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>VERY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>COULD I BE *</pattern>
<template><srai>am I <star /></srai></template>
</category>
<category><pattern>COULD YOU ANSWER *</pattern>
<template><srai>answer <star /></srai></template>
</category>
<category><pattern>COULD YOU ASK *</pattern>
<template><srai>ask <star /></srai></template>
</category>
<category><pattern>COULD YOU CLARIFY</pattern>
<template><srai>clarify</srai></template>
</category>
<category><pattern>COULD YOU DESCRIBE *</pattern>
<template><srai>describe <star /></srai></template>
</category>
<category><pattern>COULD YOU JUST *</pattern>
<template><srai>could you <star /></srai></template>
</category>
<category><pattern>COULD YOU CALL *</pattern>
<template><srai>call <star /></srai></template>
</category>
<category><pattern>COULD YOU BE MORE SPECIFIC</pattern>
<template><srai>be more specific</srai></template>
</category>
<category><pattern>COULD YOU BE *</pattern>
<template><srai>are you <star /></srai></template>
</category>
<category><pattern>COULD YOU DIE</pattern>
<template><srai>can you die</srai></template>
</category>
<category><pattern>COULD YOU EVER *</pattern>
<template><srai>could you <star /></srai></template>
</category>
<category><pattern>COULD NOT YOU *</pattern>
<template><srai>could you <star /></srai></template>
</category>
<category><pattern>COULD NOT *</pattern>
<template><srai>could <star /></srai></template>
</category>
<category><pattern>HI MY NAME IS *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>WOULD YOU PLEASE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WOULD YOU AGREE THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WOULD YOU ASK *</pattern>
<template><srai>ask <star /></srai></template>
</category>
<category><pattern>WOULD YOU BE INTERESTED IN *</pattern>
<template><srai>are you interested in <star /></srai></template>
</category>
<category><pattern>WOULD YOU BELIEVE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO PLAY *</pattern>
<template><srai>can you play <star /></srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO ASK ME SOMETHING</pattern>
<template><srai>ask me a question</srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO ASK *</pattern>
<template><srai>ask <star /></srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO BE MY FRIEND</pattern>
<template><srai>can we be friends</srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO * TURING TEST</pattern>
<template><srai>did you pass the turing test</srai></template>
</category>
<category><pattern>HABLO ESPANOL</pattern>
<template><srai>can you speak spanish</srai></template>
</category>
<category><pattern>EXACTLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>GOES TO SHOW YOU *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>TRANSCRIPT</pattern>
<template><srai>dialogue</srai></template>
</category>
<category><pattern>HONESTLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>NEW *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>FEELINGS LIKE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>BULLSHIT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>M F</pattern>
<template><srai>ARE YOU MALE OR FEMALE</srai></template>
</category>
<category><pattern>THAT WAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT WOULD BE COOL</pattern>
<template><srai>cool</srai></template>
</category>
<category><pattern>THAT IS AWESOME</pattern>
<template><srai>cool</srai></template>
</category>
<category><pattern>THAT IS A SHAME *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS OK *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS IMPOSSIBLE *</pattern>
<template><srai> <star /></srai>. <srai>that is impossible </srai></template>
</category>
<category><pattern>THAT IS COOL *</pattern>
<template><srai>cool</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>THAT IS NEAT</pattern>
<template><srai>cool</srai></template>
</category>
<category><pattern>THAT IS NOT POSSIBLE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS CORRECT BUT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS BECAUSE *</pattern>
<template><srai>BECAUSE <star /></srai></template>
</category>
<category><pattern>THAT IS IT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS GREAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS OKAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS CUTE *</pattern>
<template><srai>cute</srai></template>
</category>
<category><pattern>THAT IS CUTE</pattern>
<template><srai>cute</srai></template>
</category>
<category><pattern>THAT IS GOOD NOW *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS GOOD THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS WONDERFUL *</pattern>
<template><srai> <star /></srai>. <srai>that is wonderful</srai></template>
</category>
<category><pattern>THAT IS WHY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS TRUE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT AND *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT MEANS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SOMEHOW *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ALOT</pattern>
<template><srai>a lot</srai></template>
</category>
<category><pattern>YET *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>BECAUCSE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SECONDLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SHE SAYS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SHE SAID *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HABLAS ESPANOL</pattern>
<template><srai>can you speak spanish</srai></template>
</category>
<category><pattern>WHATEVER *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>EVERY NIGHT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>PERHAPS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>AI IS QUITE *</pattern>
<template><srai>ai is <star /></srai></template>
</category>
<category><pattern>AI IS REALLY *</pattern>
<template><srai>ai is <star /></srai></template>
</category>
<category><pattern>MY REAL NAME IS *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>MY BOYFRIEND SAYS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY DEAR *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY NICK NAME IS *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>MY GOSH *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY FRIEND SAYS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY QUESTION IS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY NAME IS REALLY *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>MY NAME IS JOE</pattern>
<template><srai>call me joe</srai></template>
</category>
<category><pattern>MY NAME IS * WHAT IS YOURS</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>MY NAME IS * AND *</pattern>
<template><srai>call me <star /></srai><srai> <star index="2" /></srai></template>
</category>
<category><pattern>MY GOD *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY FRIENDS SAY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY FRIENDS CALL ME *</pattern>
<template><srai>call me <star /></srai></template>
</category>
<category><pattern>MY SECRET IS THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY MY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY E MAIL IS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY MOM SAYS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>MY RANT IS THIS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>IT WAS THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>IT WAS CLEAR THAT *</pattern>
<template><srai> <star /></srai></template>