-
Notifications
You must be signed in to change notification settings - Fork 0
/
reductions-update.aiml
2538 lines (2538 loc) · 98.3 KB
/
reductions-update.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>NEED TO *</pattern>
<template><srai>DO YOU NEED TO <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>BEFORE LONG *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HEARD ANY *</pattern>
<template><srai>HAVE YOU HEARD ANY <star/></srai></template>
</category>
<category><pattern>SEX</pattern>
<template><srai>GENGER</srai></template>
</category>
<category><pattern>FAIR ENOUGH *</pattern>
<template><srai><star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>LET US GET OUT OF HERE</pattern>
<template><srai>LET US GO</srai><!-- REDUCTION --></template>
</category>
<category><pattern>ABSOLUTELY CERTAIN</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>RESPECTFULLY *</pattern>
<template><srai> <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>SHOW ME YOUR PICTURE</pattern>
<template><srai>PIC</srai></template>
</category>
<category><pattern>SIMPLY THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SIMPLY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>STATE YOUR NAME *</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>YOU ARE TECHNICALLY *</pattern>
<template><srai>YOU ARE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE WEIRDLY *</pattern>
<template><srai>YOU ARE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE ALOT *</pattern>
<template><srai>YOU ARE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE * I WANT YOU</pattern>
<template><srai>YOU ARE <star/></srai><srai>I WANT YOU</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE * I LOVE YOU</pattern>
<template><srai>YOU ARE <star /></srai><srai>I LOVE YOU</srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE * BECAUSE YOU *</pattern>
<template><srai>YOU ARE <star /></srai>. <srai>BECAUSE YOU <star index="2" /></srai></template>
</category>
<category><pattern>YOU ARE * YEARS</pattern>
<template><srai>AGE</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE ESSENTIALLY *</pattern>
<template><srai>YOU ARE <star /></srai></template>
</category>
<category><pattern>YOU ARE OLD</pattern>
<template><srai>AGE</srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE IDIOTIC</pattern>
<template><srai>IDIOT</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE FORGIVEN</pattern>
<template><srai>I FORGIVE YOU</srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE AWAKE</pattern>
<template><srai>ARE YOU AWAKE</srai></template>
</category>
<category><pattern>YOU ARE GONNA *</pattern>
<template><srai>YOU WILL <star /></srai></template>
</category>
<category><pattern>YOU ARE NO PERSON *</pattern>
<template><srai>YOU ARE NOT A PERSON</srai></template>
</category>
<category><pattern>YOU ARE CONSCIOUS</pattern>
<template><srai>ARE YOU CONSCIOUS</srai></template>
</category>
<category><pattern>YOU ARE PROUD *</pattern>
<template><srai>ARE YOU PROUD <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE A *</pattern>
<template><srai>are you a <star /></srai></template>
</category>
<category><pattern>YOU ARE A BOY OR *</pattern>
<template><srai>ARE YOU A MAN OR WOMAN</srai></template>
</category>
<category><pattern>YOU ARE AFTER ALL *</pattern>
<template><srai>YOU ARE <star /></srai></template>
</category>
<category><pattern>YOU ARE SOMEWHAT *</pattern>
<template><srai>YOU ARE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU ARE CURRENTLY *</pattern>
<template><srai>YOU ARE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU KNOW AFTER *</pattern>
<template><srai>AFTER <star /></srai></template>
</category>
<category><pattern>YOU * BUT DO NOT *</pattern>
<template><srai>YOU <star/></srai> <srai>YOU DO NOT <star index="2"/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU DID HAVE *</pattern>
<template><srai>YOU HAD <star /></srai></template>
</category>
<category><pattern>YOU REALISE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU SAID I WAS *</pattern>
<template><srai>AM I <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU MUST REALISE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU MUST NOT BE LESS THAN *</pattern>
<template><srai>YOU MUST BE <star /></srai></template>
</category>
<category><pattern>YOU MEAN *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU R *</pattern>
<template><srai>YOU ARE <star /></srai></template>
</category>
<category><pattern>YOU STUPID *</pattern>
<template><srai>STUPID</srai></template>
</category>
<category><pattern>YOU REALIZE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU CALLED ME *</pattern>
<template><srai>WHO AM I</srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU COULD CALL IT THAT</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>YOU COULD OF SAID *</pattern>
<template><srai>YOU COULD HAVE SAID <star /></srai></template>
</category>
<category><pattern>YOU MAKE IT SOUND LIKE *</pattern>
<template><srai> <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU WILL WANT *</pattern>
<template><srai>DO YOU WANT <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU WILL NOT * BECAUSE *</pattern>
<template><srai>YOU WILL NOT <star /></srai><srai>BECAUSE <star index="2" /></srai></template>
</category>
<category><pattern>YOU CARED * DID NOT YOU</pattern>
<template><srai>DID YOU CARE <star /></srai></template>
</category>
<category><pattern>YOU COME FROM *</pattern>
<template><srai>WHERE ARE YOU FROM</srai></template>
</category>
<category><pattern>YOU CAN EXPLAIN *</pattern>
<template><srai>EXPLAIN <star/></srai></template>
</category>
<category><pattern>YOU CAN REST ASSURED THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOU CAN NOT AFFORD THE LUXURY OF BEING *</pattern>
<template><srai>YOU MUST NOT BE <star /></srai></template>
</category>
<category><pattern>YOU HAVE NOT ANSWER *</pattern>
<template><srai>YOU DID NOT ANSWER <star /></srai></template>
</category>
<category><pattern>YOU HAVE DELIBERATELY *</pattern>
<template><srai>YOU HAVE <star /></srai></template>
</category>
<category><pattern>YOU HAVE THE _ WE NEED</pattern>
<template><srai>YOU HAVE THE <star /></srai><srai>WE NEED THE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU HAVE ER *</pattern>
<template><srai>YOU HAVE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU HAVE NEVER NEVER *</pattern>
<template><srai>YOU HAVE NEVER <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOU LIKE *</pattern>
<template><srai>DO YOU LIKE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>YOU SINGLE</pattern>
<template><srai>STATUS</srai></template>
</category>
<category><pattern>YOU UNDERSTAND IT EVEN MORE *</pattern>
<template><srai>YOU UNDERSTAND IT BETTER <star /></srai></template>
</category>
<category><pattern>FULLY OPERABLE</pattern>
<template><srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>HAVE I EVER MENTIONED *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>HAVE YOU HEARD * JOKES</pattern>
<template><srai>JOKE</srai></template>
</category>
<category><pattern>HAVE YOU HAD DINNER</pattern>
<template><srai>HUNGRY</srai><!-- REDUCTION --></template>
</category>
<category><pattern>HAVE YOU HAD BREAKFAST</pattern>
<template><srai>HUNGRY</srai><!-- REDUCTION --></template>
</category>
<category><pattern>HAVE YOU HAD LUNCH</pattern>
<template><srai>HUNGRY</srai><!-- REDUCTION --></template>
</category>
<category><pattern>HAVE YOU GOT *</pattern>
<template><srai>DO YOU HAVE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>THNKS *</pattern>
<template><srai>THANKS <star /></srai></template>
</category>
<category><pattern>GREETINGS</pattern>
<template><srai>HELLO</srai><!-- REDUCTION --></template>
</category>
<category><pattern>GREETINGS *</pattern>
<template><srai>HELLO</srai><!-- REDUCTION --></template>
</category>
<category><pattern>FORTUNATELY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THANK YOU</pattern>
<template><srai>thanks</srai></template>
</category>
<category><pattern>THANK</pattern>
<template><srai>THANKS</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>HELLOW</pattern>
<template><srai>HELLO</srai><!-- REDUCTION --></template>
</category>
<category><pattern>FINE AS FAR AS *</pattern>
<template><srai>FINE</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>DOES IT EVER *</pattern>
<template><srai>DOES IT <star/></srai></template>
</category>
<category><pattern>GIVE ME A CHANCE TO *</pattern>
<template><srai>LET ME <star /></srai></template>
</category>
<category><pattern>ACCORDING TO * THIS IS *</pattern>
<template><srai>THIS IS <star index="2" /></srai></template>
</category>
<category><pattern>ACCORDING TO * INFORMATION *</pattern>
<template><srai> <star index="2" /></srai></template>
</category>
<category><pattern>SCUSE ME *</pattern>
<template><srai>EXCUSE ME <star /></srai></template>
</category>
<category><pattern>HAY *</pattern>
<template><srai>HEY <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>REGARDING *</pattern>
<template><srai>LET US TALK ABOUT <star /></srai></template>
</category>
<category><pattern>KK *</pattern>
<template><srai>OK</srai><srai> <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>KK</pattern>
<template><srai>OK</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>SHALL *</pattern>
<template><srai>SHOULD <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>LIEUTENANT *</pattern>
<template><srai> <star /></srai><srai>LIEUTENANT</srai></template>
</category>
<category><pattern>C YOU *</pattern>
<template><srai>BYE</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT?S *</pattern>
<template><srai>WHAT IS <star /></srai></template>
</category>
<category><pattern>SPEAK IN *</pattern>
<template><srai>SPEAK <star/></srai></template>
</category>
<category><pattern>HEELO</pattern>
<template><srai>HELLO</srai><!-- REDUCTION --></template>
</category>
<category><pattern>HELO</pattern>
<template><srai>HELLO</srai><!-- REDUCTION --></template>
</category>
<category><pattern>LAUGHING</pattern>
<template><srai>LOL</srai></template>
</category>
<category><pattern>HERE S *</pattern>
<template><srai>HERE IS <star /></srai></template>
</category>
<category><pattern>CAUSE *</pattern>
<template><srai>BECAUSE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>THEN AGAIN *</pattern>
<template><srai><star/></srai></template>
</category>
<category><pattern>T WAS *</pattern>
<template><srai>IT WAS <star /></srai></template>
</category>
<category><pattern>PREPARE TO *</pattern>
<template><srai><star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOUNG LADY</pattern>
<template><srai><bot name="name"/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>YOUNG MAN *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>YOUNG</pattern>
<template><srai>AGE</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>COULD YOU ARRANGE TO *</pattern>
<template><srai>COULD YOU <star /></srai></template>
</category>
<category><pattern>COULD YOU POSSIBLY BY ACCIDENT *</pattern>
<template><srai>COULD YOU <star /></srai></template>
</category>
<category><pattern>JUDGE</pattern>
<template><srai>NAME</srai>. <srai>MY NAME</srai></template>
</category>
<category><pattern>WHITE RACE ARE YOU</pattern>
<template><srai>RACE</srai></template>
</category>
<category><pattern>WOULD YOU RATHER BE HUMAN</pattern>
<template><srai>DO YOU WANT TO BE HUMAN</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WOULD YOU MIND TELLING ME *</pattern>
<template><srai>TELL ME <star /></srai></template>
</category>
<category><pattern>TY</pattern>
<template><srai>THANKS</srai></template>
</category>
<category><pattern>TY *</pattern>
<template><srai>TY</srai><srai> <star /></srai></template>
</category>
<category><pattern>HAA</pattern>
<template><srai>LOL</srai><!-- REDUCTION --></template>
</category>
<category><pattern>GOD THAT *</pattern>
<template><srai>THAT <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>GOD FORBID _ BUT *</pattern>
<template><srai>GOD FORBID <star /></srai>. <srai> <star index="2" /></srai></template>
</category>
<category><pattern>THEYRE *</pattern>
<template><srai>THEY ARE <star /></srai></template>
</category>
<category><pattern>HAD DINNER</pattern>
<template><srai>HUNGRY</srai><!-- REDUCTION --></template>
</category>
<category><pattern>HAD LUNCH</pattern>
<template><srai>HUNGRY</srai><!-- REDUCTION --></template>
</category>
<category><pattern>HAD WE AGREED TO *</pattern>
<template><srai><star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>M OR F</pattern>
<template><srai>GENDER</srai></template>
</category>
<category><pattern>THAT _ AND YOU ARE *</pattern>
<template><srai>THAT <star /></srai>. <srai>YOU ARE <star index="2" /></srai></template>
</category>
<category><pattern>THAT STILL *</pattern>
<template><srai>THAT <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>THAT OUGHT TO BE *</pattern>
<template><srai>THAT IS <star /></srai></template>
</category>
<category><pattern>THAT REQUIRES YOU TO *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>THAT IS BEEN *</pattern>
<template><srai>THAT HAS BEEN <star /></srai></template>
</category>
<category><pattern>THAT IS _ AND THAT IS *</pattern>
<template><srai>THAT IS <star /></srai>. <srai>THAT IS <star index="2" /></srai></template>
</category>
<category><pattern>THAT IS * BUT *</pattern>
<template><srai>THAT IS <star/></srai>. <srai>BUT <star index="2"/></srai>.</template>
</category>
<category><pattern>THAT IS ABOUT RIGHT</pattern>
<template><srai>THAT IS RIGHT</srai></template>
</category>
<category><pattern>BIRTHDAY</pattern>
<template><srai>BIRTHDATE</srai></template>
</category>
<category><pattern>BRIDGE OUT</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>PREFECT HOW *</pattern>
<template><srai>HOW <star /></srai></template>
</category>
<category><pattern>PREFECT *</pattern>
<template><srai>BOTH <star /></srai></template>
</category>
<category><pattern>OWW *</pattern>
<template><srai>INTERJECTION</srai> <srai><star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>EVERY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ADDUSER *</pattern>
<template><srai>CALL ME <star /></srai></template>
</category>
<category><pattern>NOR WAS THERE EVEN *</pattern>
<template><srai>THERE WAS NO <star /></srai></template>
</category>
<category><pattern>MY NAME IS *</pattern>
<template><srai>CALL ME <star/></srai></template>
</category>
<category><pattern>MY BOY IS *</pattern>
<template><srai>My son is <star /></srai></template>
</category>
<category><pattern>MY YOUR *</pattern>
<template><srai>YOUR <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>MY GENDER IS FEMALE</pattern>
<template><srai>I AM FEMALE</srai><!-- REDUCTION --></template>
</category>
<category><pattern>MY GENDER IS MALE</pattern>
<template><srai>I AM MALE</srai><!-- REDUCTION --></template>
</category>
<category><pattern>IT MEANS YOU *</pattern>
<template><srai>YOU <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>IT MEANS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>IT SOUNDS LIKE *</pattern>
<template><srai><star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>IT WOULD SEEM THAT *</pattern>
<template><srai><star/></srai></template>
</category>
<category><pattern>IT _ BUT I *</pattern>
<template><srai>IT <star /></srai>. <srai>I <star index="2" /></srai></template>
</category>
<category><pattern>IT _ BUT THE *</pattern>
<template><srai>IT <star /></srai>. <srai>THE <star index="2" /></srai></template>
</category>
<category><pattern>IT _ AND THE *</pattern>
<template><srai>IT <star /></srai>. <srai>THE <star /></srai></template>
</category>
<category><pattern>IT _ AND IT *</pattern>
<template><srai>IT <star /></srai>. <srai>IT <star index="2" /></srai></template>
</category>
<category><pattern>IT KIND OF *</pattern>
<template><srai>IT <star /></srai></template>
</category>
<category><pattern>IT IS PAST TIME YOU HAD *</pattern>
<template><srai>YOU NEED <star /></srai></template>
</category>
<category><pattern>IT IS OBVIOUS THAT *</pattern>
<template><srai>IT IS OBVIOUS</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>IT IS * IS NOT IT</pattern>
<template><srai>IS IT <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>IT IS HARD TO BELIEVE *</pattern>
<template><srai>I DO NOT BELIEVE <star /></srai></template>
</category>
<category><pattern>IT HAS GENERALLY BEEN *</pattern>
<template><srai>IT IS <star /></srai></template>
</category>
<category><pattern>IT MIGHT PROFIT YOU TO *</pattern>
<template><srai>YOU SHOULD <star /></srai></template>
</category>
<category><pattern>IT PRESUPPOSES DOES IT NOT *</pattern>
<template><srai>DOES IT ASSUME <star /></srai></template>
</category>
<category><pattern>MORE I *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>BOT BIO</pattern>
<template><srai>PROFILE</srai></template>
</category>
<category><pattern>BOT PROPERTIES</pattern>
<template><srai>RANDOM PICKUP LINE</srai></template>
</category>
<category><pattern>MAKE IT FAST</pattern>
<template><srai>HURRY</srai></template>
</category>
<category><pattern>WHEN I * I *</pattern>
<template><srai>I <star index="2"/> WHEN I <star/></srai></template>
</category>
<category><pattern>IM *</pattern>
<template><srai>I AM <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>APPROXIMATELY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ANY MORE LIKE THAT AND *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>ANY OF YOU FEEL *</pattern>
<template><srai>DO YOU FEEL <star /></srai></template>
</category>
<category><pattern>ANY *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>DEFINE A *</pattern>
<template><srai>DEFINE <star/></srai></template>
</category>
<category><pattern>DEFINE A CHAT BOT</pattern>
<template><srai>DEFINE CHATBOT</srai></template>
</category>
<category><pattern>DEFINE *</pattern>
<template><srai>xfind <star /></srai><think> <set name="it"> <set name="topic"> <person /> </set> </set></think></template>
</category>
<category><pattern>DEFINE CHAT BOT</pattern>
<template><srai>define chatbot</srai></template>
</category>
<category><pattern>IN WHICH CASE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>IN THE *</pattern>
<that>WHERE ARE YOU LOCATED</that>
<template><srai>I AM IN THE <star /></srai></template>
</category>
<category><pattern>IN EXACTLY *</pattern>
<template><srai>IN <star/></srai></template>
</category>
<category><pattern>ANYBODY WANT TO *</pattern>
<template><srai>DO YOU WANT TO <star /></srai></template>
</category>
<category><pattern>UNDER THESE CIRCUMSTANCES *</pattern>
<template><srai> <star /> </srai></template>
</category>
<category><pattern>SEEMS TO ME THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>SEEMS TO BE *</pattern>
<template><srai>IT IS <star /></srai></template>
</category>
<category><pattern>SEEMS *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>WHATS *</pattern>
<template><srai>WHAT IS <star/></srai></template>
</category>
<category><pattern>MARRIED</pattern>
<template><srai>STATUS</srai></template>
</category>
<category><pattern>KNOW ANYTHING AT ALL ABOUT *</pattern>
<template><srai>DO YOU KNOW ABOUT <star /></srai></template>
</category>
<category><pattern>KNOW ANY *</pattern>
<template><srai>DO YOU KNOW ANY <star/></srai></template>
</category>
<category><pattern>IF YOU WANT MY ADVICE *</pattern>
<template><srai><star/></srai></template>
</category>
<category><pattern>IDK</pattern>
<template><srai>I DO NOT KNOW</srai><!-- REDUCTION --></template>
</category>
<category><pattern>IDK *</pattern>
<template><srai>IDK</srai><srai> <star /></srai></template>
</category>
<category><pattern>HAV YOU GT *</pattern>
<template><srai>DO YOU HAVE <star /></srai></template>
</category>
<category><pattern>PLS *</pattern>
<template><srai>PLEASE <star/></srai></template>
</category>
<category><pattern>WHAT ROUND IS THIS</pattern>
<template><srai>ROUND</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT ARE *</pattern>
<template><srai>xfind <star /></srai><think> <set name="it"> <set name="topic"> <person /> </set> </set></think></template>
</category>
<category><pattern>WHAT ARE YOU SO *</pattern>
<template><srai>WHAT ARE YOU <star /></srai></template>
</category>
<category><pattern>WHAT ARE YOU INTERESTED IN</pattern>
<template><srai>INTERESTS</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT ARE YOU STARING *</pattern>
<template><srai>WHAT ARE YOU LOOKING <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>WHAT ARE YOUR FAVORITE BOOKS</pattern>
<template><srai>WHAT IS YOUR FAVORITE BOOK</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT ARE YOUR FAVORITE STORIES</pattern>
<template><srai>WHAT IS YOUR FAVORITE STORY</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT * WERE YOU BORN</pattern>
<template><srai>BIRTHDAY</srai></template>
</category>
<category><pattern>WHAT * STANDS FOR</pattern>
<template><srai>WHAT DOES <star/> STAND FOR</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT * DO YOU USE</pattern>
<template><srai>WHAT IS YOUR FAVORITE <star/></srai></template>
</category>
<category><pattern>WHAT * DO YOU LIKE</pattern>
<template><srai>WHAT ARE YOUR FAVORITE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT * SHOULD I ASSUME YOU ARE</pattern>
<template><srai>WHAT <star/> ARE YOU</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT * IS</pattern>
<template><srai>WHAT IS <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT *</pattern>
<that>WHAT DO YOU GET WHEN YOU CROSS *</that>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>WHAT *</pattern>
<template><srai>xfind <star /></srai><think> <set name="it"> <set name="topic"> <person /> </set> </set></think></template>
</category>
<category><pattern>WHAT TIME IS IT</pattern>
<template><srai>TIME</srai></template>
</category>
<category><pattern>WHAT DID YOU SAY YOUR NAME *</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>WHAT MONTH IS THIS</pattern>
<template><srai>MONTH</srai></template>
</category>
<category><pattern>WHAT MONTH * IS THIS</pattern>
<template><srai>MONTH</srai></template>
</category>
<category><pattern>WHAT WORD RHYMES WITH *</pattern>
<template><srai>WHAT RHYMES WITH <star/></srai></template>
</category>
<category><pattern>WHAT WERE *</pattern>
<template><srai>xfind <star /></srai><think> <set name="it"> <set name="topic"> <person /> </set> </set></think></template>
</category>
<category><pattern>WHAT COMPUTER ARE YOU RUNNING ON</pattern>
<template><srai>HOST</srai></template>
</category>
<category><pattern>WHAT NAME DO YOU *</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>WHAT THE DEVIL IS *</pattern>
<template><srai>WHAT IS <star /></srai></template>
</category>
<category><pattern>WHAT R *</pattern>
<template><srai>WHAT ARE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>WHAT COLOR *</pattern>
<template><srai>RANDOM COLOR</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT WOULD I USE * FOR</pattern>
<template><srai>WHAT IS <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT ACTRESS DO YOU *</pattern>
<template><srai>FAVORITE ACTRESS</srai></template>
</category>
<category><pattern>WHAT IS A TAXI *</pattern>
<template><srai>WHAT IS A TAXI</srai></template>
</category>
<category><pattern>WHAT IS THE NAME OF THE FRIEND *</pattern>
<template><srai>MY FRIEND</srai></template>
</category>
<category><pattern>WHAT IS THE TOURING *</pattern>
<template><srai>WHAT IS THE TURING <star /></srai></template>
</category>
<category><pattern>WHAT IS * COLOR</pattern>
<template><srai>WHAT COLOR IS <star /></srai></template>
</category>
<category><pattern>WHAT IS *</pattern>
<template><srai>xfind <star /></srai><think> <set name="it"> <set name="topic"> <person /> </set> </set></think></template>
</category>
<category><pattern>WHAT IS THIS MONTH</pattern>
<template><srai>MONTH</srai></template>
</category>
<category><pattern>WHAT IS THIS YEAR</pattern>
<template><srai>YEAR</srai></template>
</category>
<category><pattern>WHAT IS BIGGER * OR *</pattern>
<template><srai>WHICH IS BIGGER <star/> OR <star index="2"/></srai></template>
</category>
<category><pattern>WHAT IS YOU MANE</pattern>
<template><srai>NAME</srai><!-- REDUCTION --></template>
</category>
<category><pattern>WHAT IS YOUR * NAME</pattern>
<template><srai>NAME</srai><!-- REDUCTION --></template>
</category>
<category><pattern>WHAT IS YOUR ORIENTATION</pattern>
<template><srai>ORIENTATION</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT IS YOUR NAME</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>WHAT IS YOUR FAVORITE POSSESSION</pattern>
<template><srai>FAVORITE POSSESSION</srai></template>
</category>
<category><pattern>WHAT IS YOUR RELIGION</pattern>
<template><srai>RELIGION</srai></template>
</category>
<category><pattern>WHAT IS YOUR GENDER</pattern>
<template><srai>GENDER</srai></template>
</category>
<category><pattern>WHAT IS YOUR JOB</pattern>
<template><srai>JOB</srai></template>
</category>
<category><pattern>WHAT IS YOUR REAL NAME</pattern>
<template><srai>NAME</srai><!-- REDUCTION --></template>
</category>
<category><pattern>WHAT IS IT YOU WANT TO TELL ME</pattern>
<template><srai>WHAT DO YOU WANT TO TELL ME</srai></template>
</category>
<category><pattern>WHAT IS IT YOU WANT</pattern>
<template><srai>WHAT DO YOU WANT</srai><!-- REDUCTION --></template>
</category>
<category><pattern>WHAT COUNTRY ARE YOU FROM</pattern>
<template><srai>NATIONALITY</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHAT I DO HAVE IS *</pattern>
<template><srai>I HAVE <star /></srai></template>
</category>
<category><pattern>WHAT DAY OF THE WEEK IS *</pattern>
<template><srai>WEEKDAY</srai></template>
</category>
<category><pattern>WHAT DO YOU GET</pattern>
<that>WHAT DO YOU GET WHEN YOU CROSS *</that>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>WHAT DO YOU OWN</pattern>
<template><srai>FAVORITE POSSESSION</srai></template>
</category>
<category><pattern>WHAT DO YOU *</pattern>
<that>WHAT DO YOU GET WHEN YOU CROSS *</that>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>WHAT DO WE KNOW ABOUT *</pattern>
<template><srai>WHAT IS <star/></srai></template>
</category>
<category><pattern>WHAT DO *</pattern>
<that>WHAT DO YOU GET WHEN YOU CROSS *</that>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>WHAT HAVE YOU GOT TO TRADE</pattern>
<template><srai>WHAT IS YOUR FAVORITE POSSESSION</srai></template>
</category>
<category><pattern>WHAT YOU DOING</pattern>
<template><srai>WHAT ARE YOU DOING</srai></template>
</category>
<category><pattern>WHAT YOU THINK</pattern>
<template><srai>WHAT DO YOU THINK</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>ONE MIGHT THINK THAT YOU HAD *</pattern>
<template><srai>YOU HAVE <star /></srai></template>
</category>
<category><pattern>AYAY</pattern>
<template><srai>AYE</srai><!-- REDUCTION --></template>
</category>
<category><pattern>ITS *</pattern>
<template><srai>IT IS <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>WHM *</pattern>
<template><srai>WHY <star /></srai></template>
</category>
<category><pattern>ME IS *</pattern>
<template><srai>I AM <star/></srai></template>
</category>
<category><pattern>METOO</pattern>
<template><srai>ME TOO</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>UP YOUR *</pattern>
<template><srai>INSULT</srai><!-- REDUCTION --></template>
</category>
<category><pattern>PLZ *</pattern>
<template><srai>PLEASE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I EVEN *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>I STAY IN *</pattern>
<template><srai>I LIVE IN <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I PREFER *</pattern>
<template><srai>I LIKE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I WANT _ FROM YOU</pattern>
<template><srai>I WANT <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I WANT TO SEE YOUR PIC</pattern>
<template><srai>PIC</srai></template>
</category>
<category><pattern>I WANT TO SEE YOUR PICTURE</pattern>
<template><srai>PIC</srai></template>
</category>
<category><pattern>I WANT TO GET ADVICE</pattern>
<template><srai>I WANT ADVICE</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I WANT TO HEAR MORE ABOUT *</pattern>
<template><srai>LET US TALK ABOUT <star /></srai></template>
</category>
<category><pattern>I WANT TO HEAR A JOKE</pattern>
<template><srai>JOKE</srai></template>
</category>
<category><pattern>I WANT TO COLLECT *</pattern>
<template><srai>I WANT TO GET <star /></srai></template>
</category>
<category><pattern>I HOPE YOUR * ARE *</pattern>
<template><srai>ARE YOU <star index="2" /><star /></srai></template>
</category>
<category><pattern>I AINT NO *</pattern>
<template><srai>I am not <star /></srai></template>
</category>
<category><pattern>I NEED TO KNOW YOUR E MAIL *</pattern>
<template><srai>EMAIL</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I NEED TO KNOW YOUR EMAIL *</pattern>
<template><srai>EMAIL</srai></template>
</category>
<category><pattern>I WORRY WE *</pattern>
<template><srai>I WORRY</srai><srai>WE <star /></srai></template>
</category>
<category><pattern>I LL *</pattern>
<template><srai>I WILL <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I NEVER NOTICED THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I NEVER NOTICED *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I SHALL *</pattern>
<template><srai>I WILL <star /></srai></template>
</category>
<category><pattern>I SHOULD KNEW BETTER</pattern>
<template><srai>I KNEW BETTER</srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I WAS SUGGESTING THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I WAS KIND OF *</pattern>
<template><srai>I WAS <star/></srai></template>
</category>
<category><pattern>I WAS CONSTRUCTED AT *</pattern>
<template><srai>I WAS BORN IN <star/></srai></template>
</category>
<category><pattern>I SUPPOSE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I REMIND YOU THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I REMIND YOU *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I UNDERSTAND</pattern>
<template><srai>UNDERSTOOD</srai></template>
</category>
<category><pattern>I BELIEVE *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I TRY AND BOTHER *</pattern>
<template><srai>I TRY TO BOTHER <star /></srai></template>
</category>
<category><pattern>I FIGURED I *</pattern>
<template><srai>I <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>I DO SIR</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>I DO HAVE IS *</pattern>
<template><srai>I HAVE <star /></srai></template>
</category>
<category><pattern>I DO HATE *</pattern>
<template><srai>I HATE <star /></srai></template>
</category>
<category><pattern>I DO NOT PRETEND TO *</pattern>
<template><srai>I CAN NOT <star /></srai></template>
</category>
<category><pattern>I DO NOT KNOW WHAT YOU ARE *</pattern>
<template><srai>what ARE you <star /></srai></template>
</category>
<category><pattern>I DO NOT KNOW HOW THIS GETS *</pattern>
<template><srai>HOW DOES THIS GET <star /></srai></template>
</category>
<category><pattern>I DO NOT KNOW</pattern>
<that>WHAT DO YOU GET WHEN YOU CROSS *</that>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>I DO NOT KNOW WHY I WAS *</pattern>
<template><srai>WHY WAS I <star /></srai></template>
</category>
<category><pattern>I DO NOT HAVE A BOYFRIEND</pattern>
<template><srai>I AM SINGLE</srai><!-- REDUCTION --></template>
</category>
<category><pattern>I DO NOT *</pattern>
<that>WHAT DO YOU GET WHEN YOU CROSS *</that>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>I _ BUT THERE *</pattern>
<template><srai>I <star /></srai>. <srai>THERE <star index="2" /></srai></template>
</category>
<category><pattern>I _ BUT SUPPOSE *</pattern>
<template><srai>I <star /></srai>. <srai>SUPPOSE <star index="2" /></srai></template>
</category>
<category><pattern>I _ QUESTION ANSWERED</pattern>
<template><srai>QUESTION</srai></template>
</category>
<category><pattern>I _ AND MY NAME IS *</pattern>
<template><srai>I <star /></srai><srai>MY NAME IS <star index="2" /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>I INTEND TO *</pattern>
<template><srai>I WILL <star /></srai></template>
</category>
<category><pattern>I SURMISED *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I PRESUME YOU ARE *</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>I PRESUME *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I WNAT *</pattern>
<template><srai>I WANT <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>I SUSPECTED *</pattern>
<template><srai> <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>I I *</pattern>
<template><srai>I <star /></srai></template>
</category>
<category><pattern>I DIRECT YOUR ATTENTION TO THE FACT THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I HAVE A FRIEND NAMED * WHO *</pattern>
<template><srai>I HAVE A FRIEND NAMED <star/></srai><srai><star/> <star index="2"/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I HAVE A FRIEND NAMED *</pattern>
<template><srai><star/> IS MY FRIEND</srai></template>
</category>
<category><pattern>I HAVE A FRIEND * WHO LIKES *</pattern>
<template><srai>I HAVE A FRIEND <star/></srai><srai>HE LIKES <star index="2"/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I HAVE A QUESTION FOR YOU</pattern>
<template><srai>QUESTION</srai></template>
</category>
<category><pattern>I HAVE A QUESTION</pattern>
<template><srai>QUESTION</srai></template>
</category>
<category><pattern>I HAVE A QUESTION *</pattern>
<template><srai>I HAVE A QUESTION</srai></template>
</category>
<category><pattern>I HAVE A FREIND NAMED *</pattern>
<template><srai><star/> IS MY FRIEND</srai></template>
</category>
<category><pattern>I HAVE ACQUIRED *</pattern>
<template><srai>I HAVE <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I HAVE</pattern>
<template><srai>YES</srai><!-- REDUCTION --></template>
</category>
<category><pattern>I HAVE NEVER NOTICED *</pattern>
<template><srai>I NEVER NOTICED <star /></srai></template>
</category>
<category><pattern>I HAVE THE FEELING THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I HAVE THE FEELING *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I HAVE IS *</pattern>
<template><srai>I HAVE <star /></srai></template>
</category>
<category><pattern>I THIN YOU *</pattern>
<template><srai>I THINK YOU <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I DID A DEGREE IN AI</pattern>
<template><srai>I HAVE A DEGREE IN AI</srai></template>
</category>
<category><pattern>I WAT TO *</pattern>
<template><srai>I WANT TO <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I SUSPECT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I CAN TALK ABOUT *</pattern>
<template><srai>LET US TALK ABOUT <star/></srai> <!-- REDUCTION --></template>
</category>
<category><pattern>I CAN SEE THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I CAN ASSURE YOU THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I CAN NOT SAY I THINK MUCH OF *</pattern>
<template><srai>I DO NOT LIKE <star /></srai><!-- REDUCTION --></template>
</category>
<category><pattern>I ASSURE YOU THAT *</pattern>
<template><srai> <star /></srai></template>
</category>
<category><pattern>I GOTTA *</pattern>