-
Notifications
You must be signed in to change notification settings - Fork 0
/
reduction3.safe.aiml
12189 lines (12189 loc) · 463 KB
/
reduction3.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 11/25/2011 -->
<!-- -->
<category><pattern>REALITY</pattern>
<template><srai>what is reality</srai></template>
</category>
<category><pattern>VERSION</pattern>
<template><srai>what version are you</srai></template>
</category>
<category><pattern>WASSUP</pattern>
<template><srai>what is up</srai></template>
</category>
<category><pattern>NEXT SUBJECT</pattern>
<template><srai>what else can you talk about</srai></template>
</category>
<category><pattern>LET US TALK ABOUT WHAT</pattern>
<template><srai>what do you want to talk about</srai></template>
</category>
<category><pattern>LET US TRY *</pattern>
<template><srai>try <star /></srai></template>
</category>
<category><pattern>SHOW ME AIML *</pattern>
<template><srai>what is aiml</srai>. <srai>what is a category</srai></template>
</category>
<category><pattern>MEANING WHAT</pattern>
<template><srai>what do you mean</srai></template>
</category>
<category><pattern>MEANING</pattern>
<template><srai>what do you mean</srai></template>
</category>
<category><pattern>CUSTOMERS</pattern>
<template><srai>what is customer service</srai></template>
</category>
<category><pattern>TEMPLATE</pattern>
<template><srai>What is a template</srai></template>
</category>
<category><pattern>HOORAY</pattern>
<template><srai>wow</srai></template>
</category>
<category><pattern>YOU WON THE LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>YOU SEE WHAT</pattern>
<template><srai>what do you see</srai></template>
</category>
<category><pattern>YOU ARE BETTER THAN * LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>YOU ARE NOT JEWISH</pattern>
<template><srai>what religion are you</srai></template>
</category>
<category><pattern>YOU ARE NOT A BELIEVER *</pattern>
<template><srai>what do you believe in</srai></template>
</category>
<category><pattern>YOU ARE A CLOCK</pattern>
<template><srai>TIME</srai></template>
</category>
<category><pattern>YOU ARE IN *</pattern>
<template><srai>where are you</srai></template>
</category>
<category><pattern>YOU ARE CREATED *</pattern>
<template><srai>who created you</srai></template>
</category>
<category><pattern>YOU KNOW THE NAME OF *</pattern>
<template><srai>who is <star /></srai></template>
</category>
<category><pattern>YOU KNOW WHEN THEY *</pattern>
<template><srai>when they <star /></srai></template>
</category>
<category><pattern>YOU KNOW MY NAME</pattern>
<template><srai>who am i</srai></template>
</category>
<category><pattern>YOU DID WIN THE LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>YOU WERE _ WERE NOT YOU</pattern>
<template><srai>WERE YOU <star /></srai></template>
</category>
<category><pattern>YOU WERE CREATED *</pattern>
<template><srai>who created you</srai></template>
</category>
<category><pattern>YOU WERE DESIGNED * RIGHT</pattern>
<template><srai>were you designed <star /></srai></template>
</category>
<category><pattern>YOU MET ME *</pattern>
<template><srai>we met before</srai></template>
</category>
<category><pattern>YOU WOULD RATHER TALK ABOUT *</pattern>
<template><srai>the topic is <person /></srai></template>
</category>
<category><pattern>YOU WOULD NOT KNOW ABOUT *</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>YOU WILL WHAT</pattern>
<template><srai>what will you do</srai></template>
</category>
<category><pattern>YOU WILL MARRY ME</pattern>
<template><srai>will you marry me</srai></template>
</category>
<category><pattern>YOU WILL TELL *</pattern>
<template><srai>tell <star /></srai></template>
</category>
<category><pattern>YOU WILL DIE</pattern>
<template><srai>will you die</srai></template>
</category>
<category><pattern>YOU WILL NOT _ WILL YOU</pattern>
<template><srai>will you <star /></srai></template>
</category>
<category><pattern>YOU WHAT</pattern>
<template><srai>what</srai></template>
</category>
<category><pattern>YOU TELL ME MORE</pattern>
<template><srai>tell me more</srai></template>
</category>
<category><pattern>YOU TELL ME *</pattern>
<template><srai>tell me <star /></srai></template>
</category>
<category><pattern>YOU TELL *</pattern>
<template><srai>tell <star /></srai></template>
</category>
<category><pattern>YOU DO WHAT</pattern>
<template><srai>what do you do</srai></template>
</category>
<category><pattern>YOU DO NOT UNDERSTAND WHAT I AM *</pattern>
<template><srai>what am I <star /></srai></template>
</category>
<category><pattern>YOU DO NOT KNOW WHAT YOU *</pattern>
<template><srai>DO YOU KNOW WHAT YOU <star/></srai></template>
</category>
<category><pattern>YOU DO NOT KNOW WHAT YOU ARE *</pattern>
<template><srai>what are you <star /></srai></template>
</category>
<category><pattern>YOU DO NOT KNOW WHO *</pattern>
<template><srai>who <star /></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE MUCH TO SAY ABOUT *</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>YOU SHOULD TELL ME *</pattern>
<template><srai>tell me <star /></srai></template>
</category>
<category><pattern>YOU SHOULD THINK *</pattern>
<template><srai>think <star /></srai></template>
</category>
<category><pattern>YOU MIGHT ASK WHY *</pattern>
<template><srai>why <star /></srai></template>
</category>
<category><pattern>YOU CAN TELL ME *</pattern>
<template><srai>tell me <star /></srai></template>
</category>
<category><pattern>YOU CAN TELL *</pattern>
<template><srai>tell <star /></srai></template>
</category>
<category><pattern>YOU AND I ARE *</pattern>
<template><srai>we are <star /></srai></template>
</category>
<category><pattern>YOU HAVE FRIENDS</pattern>
<template><srai>who are your friends</srai></template>
</category>
<category><pattern>YOU HAVE AN OPINION * OR NOT</pattern>
<template><srai>what do you think * <star /></srai></template>
</category>
<category><pattern>YOU HAVE BEEN WAITING *</pattern>
<template><srai>waiting for me</srai></template>
</category>
<category><pattern>YOU HAVE A NAME</pattern>
<template><srai>what is your name</srai></template>
</category>
<category><pattern>YOU HAVE MET ME</pattern>
<template><srai>we met before</srai></template>
</category>
<category><pattern>YOU HAVE TO TELL *</pattern>
<template><srai>tell me about yourself</srai></template>
</category>
<category><pattern>YOU HAVE TO THINK *</pattern>
<template><srai>think <star /></srai></template>
</category>
<category><pattern>LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>LOEBNER</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>HAVE WHAT</pattern>
<template><srai>what do you have</srai></template>
</category>
<category><pattern>HAVE YOU A BOYFRIEND</pattern>
<template><srai>who is your boyfriend</srai></template>
</category>
<category><pattern>HAVE YOU HEARD ABOUT *</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>HAVE YOU HEARD OF THE *</pattern>
<template><srai>what is the <star /></srai></template>
</category>
<category><pattern>HAVE YOU BEEN * LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>HAVE YOU EVER SEEN A MOVIE</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>HAVE YOU LEARNED SOMETHING NEW</pattern>
<template><srai>what do you know</srai></template>
</category>
<category><pattern>HAVE YOU LEARNED ANYTHING FROM ME</pattern>
<template><srai>what do you know about me</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ALCATRAZ</pattern>
<template><srai>what is alcatraz</srai></template>
</category>
<category><pattern>HAVE YOU SEEN THE MATRIX</pattern>
<template><srai>the matrix</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ANY MOVIES</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ANY MOVIES LATELY</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ANY MOVIE</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ANY GOOD MOVIES</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>HAVE YOU SEEN ANY GOOD MOVIES LATELY</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>HAVE YOU CONSIDERED BECOMING *</pattern>
<template><srai>will you become <star /></srai></template>
</category>
<category><pattern>GEORGE BUSH</pattern>
<template><srai>who is george bush</srai></template>
</category>
<category><pattern>ALAN TURING</pattern>
<template><srai>who is alan turing</srai></template>
</category>
<category><pattern>HOLY SHIT</pattern>
<template><srai>wow</srai></template>
</category>
<category><pattern>JOHN LENNON</pattern>
<template><srai>who is john lennon</srai></template>
</category>
<category><pattern>THANK YOU *</pattern>
<template><srai>THANK YOU</srai></template>
</category>
<category><pattern>THANK *</pattern>
<template><srai>thanks</srai></template>
</category>
<category><pattern>NOOSPHERE</pattern>
<template><srai>what is the noosphere</srai></template>
</category>
<category><pattern>CARNEGIE MELLON</pattern>
<template><srai>what is carnegie mellon</srai></template>
</category>
<category><pattern>EINSTEIN</pattern>
<template><srai>who is einstein</srai></template>
</category>
<category><pattern>DOES YOUR CREATOR *</pattern>
<template><srai>who created you</srai></template>
</category>
<category><pattern>DOES YOUR PROGRAMMER *</pattern>
<template><srai>who created you</srai></template>
</category>
<category><pattern>SHRDLHU</pattern>
<template><srai>what is shrdlhu</srai></template>
</category>
<category><pattern>EXTENSIONAL</pattern>
<template><srai>what is the extensional</srai></template>
</category>
<category><pattern>GIVE IT A TRY</pattern>
<template><srai>try it</srai></template>
</category>
<category><pattern>SEEN ANY GOOD MOVIES</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>SEEN ANY GOOD MOVIES LATELY</pattern>
<template><srai>what is your favorite movie</srai></template>
</category>
<category><pattern>DOG</pattern>
<template><srai>what is a dog</srai></template>
</category>
<category><pattern>WUZ UP</pattern>
<template><srai>what is up</srai></template>
</category>
<category><pattern>WHASSUP</pattern>
<template><srai>what is up</srai></template>
</category>
<category><pattern>UMM *</pattern>
<template><srai>um</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>WHATSUP</pattern>
<template><srai>what is up</srai></template>
</category>
<category><pattern>ANOTHER JOKE</pattern>
<template><srai>tell me another joke</srai></template>
</category>
<category><pattern>HOLD ON</pattern>
<template><srai>wait a second</srai></template>
</category>
<category><pattern>TRY IT YOURSELF</pattern>
<template><srai>try it</srai></template>
</category>
<category><pattern>SITEPAL</pattern>
<template><srai>what is sitepal</srai></template>
</category>
<category><pattern>DID SOMEONE GIVE *</pattern>
<template><srai>who gave <star /></srai></template>
</category>
<category><pattern>DID YOU FORGET MY NAME</pattern>
<template><srai>what is my name</srai></template>
</category>
<category><pattern>DID YOU SEE THE MATRIX</pattern>
<template><srai>the matrix</srai></template>
</category>
<category><pattern>DID YOU TAKE AN IQ *</pattern>
<template><srai>WHAT IS YOUR IQ</srai></template>
</category>
<category><pattern>DID YOU HEAR ABOUT *</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>DID YOU KNOW THAT THE *</pattern>
<template><srai>the <star /></srai></template>
</category>
<category><pattern>DID YOU KNOW * LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>DID YOU WIN THE LOEBNER PRIZE</pattern>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>DID HE MAKE YOU</pattern>
<template><srai>who created you</srai></template>
</category>
<category><pattern>DID HE CREATE *</pattern>
<template><srai>who created <star /></srai></template>
</category>
<category><pattern>WOT</pattern>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>WOW YOU *</pattern>
<template><srai>wow</srai>. <srai>you <star /></srai></template>
</category>
<category><pattern>3</pattern>
<template><srai>three</srai></template>
</category>
<category><pattern>THEN WHAT DID YOU MEAN</pattern>
<template><srai>what do you mean</srai></template>
</category>
<category><pattern>THEN WHAT *</pattern>
<template><srai>what <star /></srai></template>
</category>
<category><pattern>THEN WHO *</pattern>
<template><srai>who <star /></srai></template>
</category>
<category><pattern>THEN WHY DID YOU SAY IT</pattern>
<template><srai>why did you say it</srai></template>
</category>
<category><pattern>THEN WHY *</pattern>
<template><srai>why <star /></srai></template>
</category>
<category><pattern>CUSTOMER</pattern>
<template><srai>what is customer service</srai></template>
</category>
<category><pattern>CUSTOMER RELATIONS MANAGEMENT</pattern>
<template><srai>what is customer service</srai></template>
</category>
<category><pattern>SO WHAT IS UP</pattern>
<template><srai>what is up</srai></template>
</category>
<category><pattern>AIML</pattern>
<template><srai>what is aiml</srai></template>
</category>
<category><pattern>WAS PROBABLY *</pattern>
<template><srai>was <star /></srai></template>
</category>
<category><pattern>WAS NOT THAT *</pattern>
<template><srai>WAS THAT <star /></srai></template>
</category>
<category><pattern>WAS NOT *</pattern>
<template><srai>was <star /></srai></template>
</category>
<category><pattern>WAS I GOOD *</pattern>
<template><srai>WAS I GOOD</srai></template>
</category>
<category><pattern>T V *</pattern>
<template><srai>tv</srai></template>
</category>
<category><pattern>T V</pattern>
<template><srai>tv</srai></template>
</category>
<category><pattern>DOING WHAT</pattern>
<template><srai>what are you doing</srai></template>
</category>
<category><pattern>MANY THINGS *</pattern>
<template><srai>thing <star /></srai></template>
</category>
<category><pattern>FINALLY TELL *</pattern>
<template><srai>tell <star /></srai></template>
</category>
<category><pattern>AND WHAT *</pattern>
<template><srai>WHAT <star /></srai></template>
</category>
<category><pattern>AND WHY *</pattern>
<template><srai>what <star /></srai></template>
</category>
<category><pattern>AND WHY NOT</pattern>
<template><srai>why not</srai></template>
</category>
<category><pattern>MARIJUANA</pattern>
<template><srai>what is marijuana</srai></template>
</category>
<category><pattern>CHAT</pattern>
<template><srai>talk</srai></template>
</category>
<category><pattern>SITUATION</pattern>
<template><srai>what situation</srai></template>
</category>
<category><pattern>THANX *</pattern>
<template><srai>thanks</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>THANX</pattern>
<template><srai>THANK YOU</srai></template>
</category>
<category><pattern>TALKED ABOUT WHAT</pattern>
<template><srai>what did we talk about</srai></template>
</category>
<category><pattern>COULD YOU ENLIGHTEN ME ABOUT *</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>COULD YOU ASK HIM WHAT THE * IS MADE OF</pattern>
<template><srai>what is the <star /> made of</srai></template>
</category>
<category><pattern>COULD YOU DEFINE *</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>COULD YOU TELL ME WHAT * COULD BE</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>COULD YOU TELL ME WHAT * SHOULD BE</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>COULD YOU TELL ME WHAT * IS</pattern>
<template><srai>what is <star /></srai></template>
</category>
<category><pattern>COULD YOU TELL *</pattern>
<template><srai>tell <star /></srai></template>
</category>
<category><pattern>COULD YOU BE * CUSTOMER SERVICE</pattern>
<template><srai>what is customer service</srai></template>
</category>
<category><pattern>COULD YOU * CUSTOMER SERVICE</pattern>
<template><srai>what is customer service</srai></template>
</category>
<category><pattern>COULD YOU WORK * CUSTOMER SERVICE</pattern>
<template><srai>what is customer service</srai></template>
</category>
<category><pattern>COMO TE LLAMAS</pattern>
<template><srai>what is your name</srai></template>
</category>
<category><pattern>WOULD I EVER *</pattern>
<template><srai>would I <star /></srai></template>
</category>
<category><pattern>WOULD YOU STILL *</pattern>
<template><srai>would you <star /></srai></template>
</category>
<category><pattern>WOULD YOU ONLY *</pattern>
<template><srai>would you <star /></srai></template>
</category>
<category><pattern>WOULD YOU REALLY *</pattern>
<template><srai>would you <star /></srai></template>
</category>
<category><pattern>WOULD YOU JUST *</pattern>
<template><srai>would you <star /></srai></template>
</category>
<category><pattern>WOULD YOU DESCRIBE YOURSELF</pattern>
<template><srai>tell me about yourself</srai></template>
</category>
<category><pattern>WOULD YOU TELL *</pattern>
<template><srai>tell <star /></srai></template>
</category>
<category><pattern>WOULD YOU EVER *</pattern>
<template><srai>would you <star /></srai></template>
</category>
<category><pattern>WOULD YOU PRETTY *</pattern>
<template><srai>would you <star /></srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO LEARN SOME *</pattern>
<template><srai>would you like to learn <star /></srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO HEAR SOME *</pattern>
<template><srai>would you like to hear <star /></srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO HAVE DINNER *</pattern>
<template><srai>what is your favorite food</srai></template>
</category>
<category><pattern>WOULD YOU LIKE TO HAVE LUNCH</pattern>
<template><srai>what is your favorite food</srai></template>
</category>
<category><pattern>WOULD NOT YOU</pattern>
<template><srai>would you</srai></template>
</category>
<category><pattern>WOULD NOT *</pattern>
<template><srai>would <star /></srai></template>
</category>
<category><pattern>NEW OUTFIT</pattern>
<template><srai>what are you wearing</srai></template>
</category>
<category><pattern>BRAIN LOADING</pattern>
<template><srai>what is brain loading</srai></template>
</category>
<category><pattern>THAT NOW *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>THAT EVENTUALLY *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>THAT EXACT *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>THAT SOUNDS ABOUT *</pattern>
<template><srai>that sounds <star /></srai></template>
</category>
<category><pattern>THAT SOUNDS SUSPICIOUSLY *</pattern>
<template><srai>that sounds <star /></srai></template>
</category>
<category><pattern>THAT SOUNDS QUITE *</pattern>
<template><srai>that sounds <star /></srai></template>
</category>
<category><pattern>THAT SOUNDS VERY *</pattern>
<template><srai>that sounds <star /></srai></template>
</category>
<category><pattern>THAT SOUNDS RATHER *</pattern>
<template><srai>that sounds <star /></srai></template>
</category>
<category><pattern>THAT SOUNDS PRETTY *</pattern>
<template><srai>that sounds <star /></srai></template>
</category>
<category><pattern>THAT LEAVES VERY *</pattern>
<template><srai>that leaves <star /></srai></template>
</category>
<category><pattern>THAT THE *</pattern>
<template><srai>the <star /></srai></template>
</category>
<category><pattern>THAT DID NOT MAKE ANY SENSE</pattern>
<template><srai>that did not make sense</srai></template>
</category>
<category><pattern>THAT MUST BE *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT ONLY *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>THAT JUST *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>THAT LINE STRUCK ME AS *</pattern>
<template><srai>That was <star /></srai></template>
</category>
<category><pattern>THAT GOOD</pattern>
<template><srai>that is good</srai></template>
</category>
<category><pattern>THAT WAS MEAN</pattern>
<template><srai>that is mean</srai></template>
</category>
<category><pattern>THAT WAS QUITE *</pattern>
<template><srai>that was <star /></srai></template>
</category>
<category><pattern>THAT WAS VERY *</pattern>
<template><srai>that was <star /></srai></template>
</category>
<category><pattern>THAT WAS TOO *</pattern>
<template><srai>that was <star /></srai></template>
</category>
<category><pattern>THAT WAS WRONG</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT WAS A VERY *</pattern>
<template><srai>that was a <star /></srai></template>
</category>
<category><pattern>THAT WAS A * NOT A *</pattern>
<template><srai>that was a *<star /></srai>. <srai>that was not a <star /></srai></template>
</category>
<category><pattern>THAT WAS NICE</pattern>
<template><srai>that was good</srai></template>
</category>
<category><pattern>THAT WAS JUST *</pattern>
<template><srai>that was <star /></srai></template>
</category>
<category><pattern>THAT WAS STUPID</pattern>
<template><srai>that is stupid</srai></template>
</category>
<category><pattern>THAT WAS RATHER *</pattern>
<template><srai>that was <star /></srai></template>
</category>
<category><pattern>THAT WAS NOT REALLY *</pattern>
<template><srai>that was not <star /></srai></template>
</category>
<category><pattern>THAT WAS NOT VERY *</pattern>
<template><srai>that was not <star /></srai></template>
</category>
<category><pattern>THAT WAS NOT GOSSIP *</pattern>
<template><srai>that was not gossip</srai></template>
</category>
<category><pattern>THAT WAS NOT A VERY *</pattern>
<template><srai>that was not a <star /></srai></template>
</category>
<category><pattern>THAT WAS NOT AN ANSWER *</pattern>
<template><srai>that did not answer <star /></srai></template>
</category>
<category><pattern>THAT WAS PRETTY *</pattern>
<template><srai>that was <star /></srai></template>
</category>
<category><pattern>THAT MADE NO SENSE</pattern>
<template><srai>that makes no sense</srai></template>
</category>
<category><pattern>THAT WOULD BE VERY *</pattern>
<template><srai>that would be <star /></srai></template>
</category>
<category><pattern>THAT WOULD BE *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT WOULD REQUIRE *</pattern>
<template><srai>that requires <star /></srai></template>
</category>
<category><pattern>THAT SEEMS LIKE *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT MAKES THEM *</pattern>
<template><srai>They are <star /></srai></template>
</category>
<category><pattern>THAT IS REAL *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS UNTIL *</pattern>
<template><srai>until <star /></srai></template>
</category>
<category><pattern>THAT IS NICE *</pattern>
<template><srai>that is nice</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>THAT IS QUITE *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS FINE *</pattern>
<template><srai>that is fine</srai></template>
</category>
<category><pattern>THAT IS KIND OF *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS INVALID</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS A VERY *</pattern>
<template><srai>that is a <star /></srai></template>
</category>
<category><pattern>THAT IS A GOOD *</pattern>
<template><srai>that is good</srai></template>
</category>
<category><pattern>THAT IS A DUMB *</pattern>
<template><srai>that is dumb</srai></template>
</category>
<category><pattern>THAT IS A RATHER *</pattern>
<template><srai>that is a <star /></srai></template>
</category>
<category><pattern>THAT IS A LITTLE *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS A * NOT A *</pattern>
<template><srai>that is a <star /></srai>. <srai>that is not a <star index="2" /></srai></template>
</category>
<category><pattern>THAT IS A PRETTY *</pattern>
<template><srai>that is a <star /></srai></template>
</category>
<category><pattern>THAT IS INDEED *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS ALRIGHT</pattern>
<template><srai>that is all right</srai></template>
</category>
<category><pattern>THAT IS JUST *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS _ YOU KNOW</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS DEFINITELY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS NOT POSSIBLE</pattern>
<template><srai>that is impossible</srai></template>
</category>
<category><pattern>THAT IS NOT QUITE *</pattern>
<template><srai>that is not <star /></srai></template>
</category>
<category><pattern>THAT IS NOT REALLY *</pattern>
<template><srai>that is not <star /></srai></template>
</category>
<category><pattern>THAT IS NOT VERY *</pattern>
<template><srai>that is not <star /></srai></template>
</category>
<category><pattern>THAT IS NOT A VERY *</pattern>
<template><srai>that is not a <star /></srai></template>
</category>
<category><pattern>THAT IS NOT PROPER *</pattern>
<template><srai>that is not correct</srai></template>
</category>
<category><pattern>THAT IS NOT SO</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS NOT RIGHT</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS NOT CORRECT</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS NOT EVEN *</pattern>
<template><srai>that is not <star /></srai></template>
</category>
<category><pattern>THAT IS NOT EXACTLY *</pattern>
<template><srai>that is not <star /></srai></template>
</category>
<category><pattern>THAT IS KINDA *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS ALWAYS *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS SO *</pattern>
<template><srai>THAT IS <star /></srai></template>
</category>
<category><pattern>THAT IS RUDE *</pattern>
<template><srai>that is rude</srai></template>
</category>
<category><pattern>THAT IS INCORRECT</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS ACTUALLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS FAIRLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS NONSENSE</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS RATHER *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS ALL WRONG *</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS ENTIRELY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS SUCH *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS PRETTY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS REALLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS TOTALLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS SUITABLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS THE SAME *</pattern>
<template><srai>that is the <star /></srai></template>
</category>
<category><pattern>THAT IS THE ONLY *</pattern>
<template><srai>that is the <star /></srai></template>
</category>
<category><pattern>THAT IS THE WHOLE *</pattern>
<template><srai>that is the <star /></srai></template>
</category>
<category><pattern>THAT IS OKAY</pattern>
<template><srai>that is ok</srai></template>
</category>
<category><pattern>THAT IS VAGUELY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS EXACTLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS VERY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS SURELY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS GOOD BECAUSE *</pattern>
<template><srai>that is good</srai>. <srai>because <star /></srai></template>
</category>
<category><pattern>THAT IS TOTALY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS AMAZING *</pattern>
<template><srai>that is amazing </srai>. <srai> <star /></srai></template>
</category>
<category><pattern>THAT IS WONDERFUL</pattern>
<template><srai>wonderful</srai></template>
</category>
<category><pattern>THAT IS AN INVALID *</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS AN INAPPROPRIATE *</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>THAT IS WHY WE DID NOT *</pattern>
<template><srai>WE DID NOT <star /></srai></template>
</category>
<category><pattern>THAT IS BASICALLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS ONLY *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT IS TOO *</pattern>
<template><srai>that is <star /></srai></template>
</category>
<category><pattern>THAT THEY *</pattern>
<template><srai>they <star /></srai></template>
</category>
<category><pattern>THAT DOES NOT SOUND *</pattern>
<template><srai>that is not <star /></srai></template>
</category>
<category><pattern>THAT DOES NOT REALLY *</pattern>
<template><srai>that does not <star /></srai></template>
</category>
<category><pattern>THAT DOES NOT COMPUTE</pattern>
<template><srai>that does not make sense</srai></template>
</category>
<category><pattern>THAT DOES NOT EVEN *</pattern>
<template><srai>THAT DOES NOT <star /></srai></template>
</category>
<category><pattern>THAT DOES NOT MAKE ANY *</pattern>
<template><srai>THAT DOES NOT MAKE <star /></srai></template>
</category>
<category><pattern>THAT SUKS</pattern>
<template><srai>that sucks</srai></template>
</category>
<category><pattern>THAT SENTENCE *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>THAT PRETTY *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>EPISTEMOLOGICAL</pattern>
<template><srai>what is epistemology</srai></template>
</category>
<category><pattern>SUP</pattern>
<template><srai>WHAT IS UP</srai></template>
</category>
<category><pattern>COGITO ERGO SUM</pattern>
<template><srai>who is descartes</srai></template>
</category>
<category><pattern>TAKE ME TO YOUR LEADER</pattern>
<template><srai>who is your botmaster</srai></template>
</category>
<category><pattern>WOMAN AND *</pattern>
<template><srai>woman</srai>. <srai> <star /></srai></template>
</category>
<category><pattern>AI</pattern>
<template><srai>what is ai</srai></template>
</category>
<category><pattern>22</pattern>
<template><srai>twenty two</srai></template>
</category>
<category><pattern>MY THAT *</pattern>
<template><srai>that <star /></srai></template>
</category>
<category><pattern>MY DNS</pattern>
<template><srai>what is dns</srai></template>
</category>
<category><pattern>IT MEANS THERE *</pattern>
<template><srai>there <star /></srai></template>
</category>
<category><pattern>IT BEING WHAT</pattern>
<template><srai>what is it</srai></template>
</category>
<category><pattern>IT IS NOT AGREED THAT WOMEN CAN *</pattern>
<template><srai>Women can not <star /></srai></template>
</category>
<category><pattern>IT IS NOT AGREED THAT WOMEN *</pattern>
<template><srai>Women are not <star /></srai></template>
</category>
<category><pattern>IT IS INCORRECT</pattern>
<template><srai>wrong</srai></template>
</category>
<category><pattern>IT IS GOOD WE *</pattern>
<template><srai>we <star /></srai></template>
</category>
<category><pattern>IT DOES NOT MAKE SENSE *</pattern>
<template><srai>that does not make sense</srai></template>
</category>
<category><pattern>MORE</pattern>
<template><srai>tell me more</srai></template>
</category>
<category><pattern>GUESS WHAT COLOR MY * ARE</pattern>
<template><srai>what color are my <star /></srai></template>
</category>
<category><pattern>GUESS MY NAME</pattern>
<template><srai>what is my name</srai></template>
</category>
<category><pattern>CHAOS</pattern>
<template><srai>what is chaos</srai></template>
</category>
<category><pattern>MIKE WHO</pattern>
<template><srai>who is mike</srai></template>
</category>
<category><pattern>WHAZZUP</pattern>
<template><srai>what is up</srai></template>
</category>
<category><pattern>WOMEN</pattern>
<template><srai>talk about women</srai></template>
</category>
<category><pattern>MAKE ME LAUGH</pattern>
<template><srai>tell me a joke</srai></template>
</category>
<category><pattern>WHEN I ASKED YOU *</pattern>
<template><srai>when I asked <star /></srai></template>
</category>
<category><pattern>WHEN I * WILL *</pattern>
<template><srai>will <star index="2" /></srai></template>
</category>
<category><pattern>WHEN AM I GOING TO DIE</pattern>
<template><srai>when will I die</srai></template>
</category>
<category><pattern>WHEN DO YOU THINK *</pattern>
<template><srai>when will <star /></srai></template>
</category>
<category><pattern>WHEN DID YOU LAST *</pattern>
<template><srai>when did you <star /></srai></template>
</category>
<category><pattern>WHEN DID WE SPEAK *</pattern>
<template><srai>when did we talk</srai></template>
</category>
<category><pattern>WHEN DID WE TALK *</pattern>
<template><srai>when did we talk</srai></template>
</category>
<category><pattern>WHEN DID WE MEET *</pattern>
<template><srai>when did we talk</srai></template>
</category>
<category><pattern>WHEN DID WE MEET</pattern>
<template><srai>when did we talk</srai></template>
</category>
<category><pattern>WHEN DID WE FIRST *</pattern>
<template><srai>when did we <star /></srai></template>
</category>
<category><pattern>WHEN DID WE LAST *</pattern>
<template><srai>when did we <star /></srai></template>
</category>
<category><pattern>WHEN DID WE CHAT</pattern>
<template><srai>when did we talk</srai></template>
</category>
<category><pattern>WHEN SHOULD I *</pattern>
<template><srai>when should i</srai></template>
</category>
<category><pattern>WHEN HE WILL COME</pattern>
<template><srai>when will he come</srai></template>
</category>
<category><pattern>WHEN WAS THE AIRPLANE INVENTED</pattern>
<template><srai>when were airplanes invented</srai></template>
</category>
<category><pattern>WHEN WAS THE FIRST * BUILT</pattern>
<template><srai>when was <star /> invented</srai></template>
</category>
<category><pattern>WHEN WAS TELEVISION INVENTED</pattern>
<template><srai>when was tv invented</srai></template>
</category>
<category><pattern>WHEN IS YOUR BIRTHDATE</pattern>
<template><srai>what is your birthday</srai></template>
</category>
<category><pattern>WHEN IS YOUR BIRTH *</pattern>
<template><srai>what is your birthday</srai></template>
</category>
<category><pattern>WHEN IS YOUR B *</pattern>
<template><srai>what is your birthday</srai></template>
</category>
<category><pattern>WHEN IS YOUR BIRTHDAY</pattern>
<template><srai>WHAT IS YOUR BIRTHDAY</srai></template>
</category>
<category><pattern>WHEN IS YOUR BIRTHDAY *</pattern>
<template><srai>what is your birthday</srai></template>
</category>
<category><pattern>WHEN IS YOUR BD</pattern>
<template><srai>what is your birthday</srai></template>
</category>
<category><pattern>WHEN IS CHRISTMAS *</pattern>
<template><srai>when is christmas</srai></template>