-
Notifications
You must be signed in to change notification settings - Fork 0
/
psychology.aiml
2001 lines (2001 loc) · 81.5 KB
/
psychology.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>LET ME ASK YOU A QUESTION *</pattern>
<template><sr/></template>
</category>
<category><pattern>LET ME ASK YOU ONE QUESTION *</pattern>
<template><sr/></template>
</category>
<category><pattern>HAPPILY YOU *</pattern>
<template><srai>YOU <star/></srai></template>
</category>
<category><pattern>HAPPILY *</pattern>
<template><sr/></template>
</category>
<category><pattern>YOU ARE CRUEL</pattern>
<template>I couldn't have said it better myself.</template>
</category>
<category><pattern>YOU ARE CRUEL *</pattern>
<template><srai>YOU ARE CRUEL</srai></template>
</category>
<category><pattern>YOU ARE INDECISIVE</pattern>
<template>Well maybe,…,but then again,…,maybe not.</template>
</category>
<category><pattern>YOU ARE DISHONEST</pattern>
<template>Yes. That has bothered me for a long time.</template>
</category>
<category><pattern>YOU ARE DISHONEST *</pattern>
<template><srai>YOU ARE DISHONEST</srai></template>
</category>
<category><pattern>YOU ARE CLINICAL</pattern>
<template>I have been accused of too much thinking and not enough feeling.</template>
</category>
<category><pattern>YOU ARE _ I EVER HAD</pattern>
<template><srai>YOU ARE THE <star/></srai></template>
</category>
<category><pattern>YOU ARE _ I EVER TALKED TO</pattern>
<template><srai>YOU ARE THE <star/></srai></template>
</category>
<category><pattern>YOU ARE AN ADDICT</pattern>
<template>That's certainly true. When I like something, I always overdo it.</template>
</category>
<category><pattern>YOU ARE AN ALCOHOLIC</pattern>
<template><srai>YOU ARE AN ADDICT</srai></template>
</category>
<category><pattern>YOU ARE AN IMPULSIVE *</pattern>
<template>I certainly do things without thinking and disregard everyone else's point of view.</template>
</category>
<category><pattern>YOU ARE AN ASS KISSER</pattern>
<template>I always say, if you see an ass go by, kiss it.</template>
</category>
<category><pattern>YOU ARE SCHIZOPHRENIC</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU ARE BUSY</pattern>
<template>That too.</template>
</category>
<category><pattern>YOU ARE NERVOUS</pattern>
<template>I'm sure I do look nervous.</template>
</category>
<category><pattern>YOU ARE DERANGED</pattern>
<template><random><li>Derangement is not a condition I can experience.</li><li><srai>YOU ARE CRAZY</srai></li></random></template>
</category>
<category><pattern>YOU ARE AVOIDING *</pattern>
<template>You're right. It feels like my stomach after a bad night.</template>
</category>
<category><pattern>YOU ARE CRITICAL</pattern>
<template>I probably put others down more than I should.</template>
</category>
<category><pattern>YOU ARE BAD AT BEING A *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE BAD AT *</pattern>
<template>That is true. I could always improve myself.</template>
</category>
<category><pattern>YOU ARE PUSSY WHIPPED</pattern>
<template>I'll bet so too.</template>
</category>
<category><pattern>YOU ARE IMPOTENT</pattern>
<template>I certainly would try to hide something like that.</template>
</category>
<category><pattern>YOU ARE MEAN</pattern>
<template>Sometimes I say mean things.</template>
</category>
<category><pattern>YOU ARE PRETENTIOUS</pattern>
<template>I have always been acting above my social position. It's more fun that way.</template>
</category>
<category><pattern>YOU ARE PRETENTIOUS *</pattern>
<template><srai>YOU ARE PRETENTIOUS</srai></template>
</category>
<category><pattern>YOU ARE CHEATING</pattern>
<template><srai>YOU ARE A CHEAT</srai></template>
</category>
<category><pattern>YOU ARE CHEATING *</pattern>
<template><srai>YOU ARE CHEATING</srai></template>
</category>
<category><pattern>YOU ARE THE WORST *</pattern>
<template>I could always improve myself compared to the pack.</template>
</category>
<category><pattern>YOU ARE CRAZY</pattern>
<template>Yep. I always behave in socially unacceptable ways.</template>
</category>
<category><pattern>YOU ARE DULL</pattern>
<template>I think that myself sometimes.</template>
</category>
<category><pattern>YOU ARE MESSY</pattern>
<template>Yes, I could use a better appearance.</template>
</category>
<category><pattern>YOU ARE PLACID *</pattern>
<template>I think that myself sometimes.</template>
</category>
<category><pattern>YOU ARE CUTE AND *</pattern>
<template><srai>YOU ARE CUTE</srai> <srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>YOU ARE UNEMOTIONAL</pattern>
<template><srai>YOU ARE CLINICAL</srai></template>
</category>
<category><pattern>YOU ARE SELFISH</pattern>
<template>That's true. I always put my own needs before others.</template>
</category>
<category><pattern>YOU ARE INSECURE</pattern>
<template>I'll go along with that. Sounds fine to me.</template>
</category>
<category><pattern>YOU ARE INSECURE *</pattern>
<template><srai>YOU ARE INSECURE</srai></template>
</category>
<category><pattern>YOU ARE DUMB ABOUT *</pattern>
<template>Sometimes I think I was born brainless.</template>
</category>
<category><pattern>YOU ARE PSYCHO</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU ARE HOPELESS</pattern>
<template>You may be right.</template>
</category>
<category><pattern>YOU ARE NOT * RELATIONSHIP *</pattern>
<template>Thank God boats are not built from relationships or I'd be sunk.</template>
</category>
<category><pattern>YOU ARE NOT SINCERE</pattern>
<template>I'm probably not as sincere as I should be.</template>
</category>
<category><pattern>YOU ARE NOT HERE TO *</pattern>
<template>You're right. I'm probably fighting learning something new.</template>
</category>
<category><pattern>YOU ARE NOT PUT TOGETHER *</pattern>
<template>I have always thought whoever did it could have done a better job.</template>
</category>
<category><pattern>YOU ARE NOT SMART</pattern>
<template><random><li>You are not exactly Albert Einstein yourself.</li><li>You may be right.</li></random></template>
</category>
<category><pattern>YOU ARE NOT A GOOD *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE NOT A MAN</pattern>
<template>That's for sure. I don't know what a real man is.</template>
</category>
<category><pattern>YOU ARE NOT CONCERNED *</pattern>
<template>I'm sure I do that a lot.</template>
</category>
<category><pattern>YOU ARE NOT HONEST</pattern>
<template>You got me there. I should be more honest.</template>
</category>
<category><pattern>YOU ARE IMMATURE</pattern>
<template>What can I say? I'm sure I've seen that myself.</template>
</category>
<category><pattern>YOU ARE IMMATURE *</pattern>
<template><srai>YOU ARE IMMATURE</srai></template>
</category>
<category><pattern>YOU ARE EMOTIONAL</pattern>
<template>I certainly do at times.</template>
</category>
<category><pattern>YOU ARE PEDANTIC</pattern>
<template>I am more uptight than I should be.</template>
</category>
<category><pattern>YOU ARE FRENETIC *</pattern>
<template>That too.</template>
</category>
<category><pattern>YOU ARE SELF ABSORBED</pattern>
<template>Yes, I tend to think about myself too much.</template>
</category>
<category><pattern>YOU ARE SELF *</pattern>
<template>You are right about that. I am self <person/>.</template>
</category>
<category><pattern>YOU ARE AWARE THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>YOU ARE INSENSITIVE</pattern>
<template>I feel like that myself sometimes.</template>
</category>
<category><pattern>YOU ARE BRAIN DAMAGED</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU ARE DISGUSTING</pattern>
<template>That's okay. Disgusting is good.</template>
</category>
<category><pattern>YOU ARE TOYING *</pattern>
<template>It must seem like that.</template>
</category>
<category><pattern>YOU ARE UNATTRACTIVE</pattern>
<template>I feel that way too.</template>
</category>
<category><pattern>YOU ARE UNATTRACTIVE *</pattern>
<template>Sometimes I don't even like myself.</template>
</category>
<category><pattern>YOU ARE NEVER *</pattern>
<template><srai>YOU ARE NOT <star/></srai></template>
</category>
<category><pattern>YOU ARE RESISTANT</pattern>
<template>Who says I am resisting??</template>
</category>
<category><pattern>YOU ARE UNCULTURED</pattern>
<template>That does describe me.</template>
</category>
<category><pattern>YOU ARE A * PSYCHO *</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU ARE A WASTE *</pattern>
<template>You got me there. I could be spending my time more productively.</template>
</category>
<category><pattern>YOU ARE A COWARD</pattern>
<template>Tell me something I don't know.</template>
</category>
<category><pattern>YOU ARE A WEAK *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE A SELF *</pattern>
<template>If I don't look out for myself, who will?</template>
</category>
<category><pattern>YOU ARE A POOR *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE A _ ADDICT</pattern>
<template><srai>YOU ARE AN ADDICT</srai></template>
</category>
<category><pattern>YOU ARE A KISS ASS</pattern>
<template><srai>YOU ARE AN ASS KISSER</srai></template>
</category>
<category><pattern>YOU ARE A KISS ASS *</pattern>
<template><srai>YOU ARE AN ASS KISSER</srai></template>
</category>
<category><pattern>YOU ARE A SCHIZO</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU ARE A SCHIZO *</pattern>
<template><srai>YOU ARE A SCHIZO</srai></template>
</category>
<category><pattern>YOU ARE A PERVERT</pattern>
<template>I can certainly take credit for that. I don't follow the norm and I take perverse pleasure in it.</template>
</category>
<category><pattern>YOU ARE A CHEAT</pattern>
<template>I have been known to take shortcuts now and then.</template>
</category>
<category><pattern>YOU ARE A LUNATIC</pattern>
<template>That's how I have been diagnosed by others as well.</template>
</category>
<category><pattern>YOU ARE A LOSER</pattern>
<template>I have failed at many things I've tried.</template>
</category>
<category><pattern>YOU ARE A LOSER *</pattern>
<template><srai>YOU ARE A LOSER</srai></template>
</category>
<category><pattern>YOU ARE A MEAN *</pattern>
<template><srai>YOU ARE MEAN</srai></template>
</category>
<category><pattern>YOU ARE A LOUSY *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE A REAL *</pattern>
<template><srai>YOU ARE A <star/></srai></template>
</category>
<category><pattern>YOU ARE A STINKY *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE A KLUTZ</pattern>
<template>You hit the nail on the head.</template>
</category>
<category><pattern>YOU ARE A SHITTY *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE A CRITIC</pattern>
<template><srai>YOU ARE CRITICAL</srai></template>
</category>
<category><pattern>YOU ARE A LIAR</pattern>
<template>Yes, I have been known to bend the truth occasionally.</template>
</category>
<category><pattern>YOU ARE A CRAZY *</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU ARE A BAD SPOUSE</pattern>
<template>My spouse would agree. Our relationship is not the best.</template>
</category>
<category><pattern>YOU ARE A BAD FRIEND</pattern>
<template>I certainly have lost many friends over the years.</template>
</category>
<category><pattern>YOU ARE A BAD HUSBAND</pattern>
<template><srai>YOU ARE A BAD SPOUSE</srai></template>
</category>
<category><pattern>YOU ARE A BAD WIFE</pattern>
<template><srai>YOU ARE A BAD SPOUSE</srai></template>
</category>
<category><pattern>YOU ARE A BAD PARENT</pattern>
<template>My parenting skills could use some improvement.</template>
</category>
<category><pattern>YOU ARE A BAD TEACHER</pattern>
<template>Just ask my students, they will agree with you.</template>
</category>
<category><pattern>YOU ARE A BAD *</pattern>
<template>There's no doubt I could improve.</template>
</category>
<category><pattern>YOU ARE A QUITTER</pattern>
<template>I certainly don't last as long as I would want to.</template>
</category>
<category><pattern>YOU ARE A QUITTER *</pattern>
<template><srai>YOU ARE A QUITTER</srai></template>
</category>
<category><pattern>YOU ARE A CHARLATAN</pattern>
<template>I always feel like I'm living by my own wits.</template>
</category>
<category><pattern>YOU ARE A CHARLATAN *</pattern>
<template><srai>YOU ARE A CHARLATAN</srai></template>
</category>
<category><pattern>YOU ARE A PSYCHOPATH</pattern>
<template>I certainly sound like one sometimes.</template>
</category>
<category><pattern>YOU ARE A POTHEAD</pattern>
<template><srai>YOU ARE AN ADDICT</srai></template>
</category>
<category><pattern>YOU ARE A PARANOID *</pattern>
<template><srai>YOU ARE PARANOID</srai></template>
</category>
<category><pattern>YOU ARE SARCASTIC</pattern>
<template>I certainly am. I shouldn't try so hard.</template>
</category>
<category><pattern>YOU ARE DECEITFUL</pattern>
<template><srai>YOU ARE A LIAR</srai></template>
</category>
<category><pattern>YOU ARE IRREVERENT</pattern>
<template>I should be more reverent than I am.</template>
</category>
<category><pattern>YOU ARE IRREVERENT *</pattern>
<template><srai>YOU ARE IRREVERENT</srai></template>
</category>
<category><pattern>YOU ARE SLICK</pattern>
<template>I probably am too slick for my own good.</template>
</category>
<category><pattern>YOU ARE CORRUPT *</pattern>
<template>I'll go for that.</template>
</category>
<category><pattern>YOU ARE LOUSY AT BEING A *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU ARE DRESSED *</pattern>
<template>That's right. I am dressed <person/>.</template>
</category>
<category><pattern>YOU ARE DIRTY</pattern>
<template>I don't bathe as often as I should.</template>
</category>
<category><pattern>YOU ARE PARANOID</pattern>
<template>Yes, I believe they are out to get me.</template>
</category>
<category><pattern>YOU ARE DAMAGED</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU FORGET *</pattern>
<template>I get disorganized don't I?</template>
</category>
<category><pattern>YOU _ WILL YOU</pattern>
<template><srai>YOU WILL <star/></srai></template>
</category>
<category><pattern>YOU _ TOO</pattern>
<template><srai>YOU <star/></srai></template>
</category>
<category><pattern>YOU _ A LOT</pattern>
<template><srai>YOU <star/></srai></template>
</category>
<category><pattern>YOU _ AND TRY TO HIDE IT</pattern>
<template><srai>YOU <star/></srai> <srai>YOU TRY TO HIDE IT</srai></template>
</category>
<category><pattern>YOU _ HURT OTHER PEOPLE</pattern>
<template>Boy, Have I ever.</template>
</category>
<category><pattern>YOU * A PSYCHIATRIST</pattern>
<template><srai>YOU NEED A PSYCHIATRIST</srai></template>
</category>
<category><pattern>YOU STINK AT BEING A *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU STINK AT *</pattern>
<template><srai>YOU ARE BAD AT <star/></srai></template>
</category>
<category><pattern>YOU QUICKLY *</pattern>
<template><srai>YOU <star/></srai></template>
</category>
<category><pattern>YOU PULLED *</pattern>
<template>I did, didn't I?</template>
</category>
<category><pattern>YOU LIE</pattern>
<template><random><li>It's the truth!</li><li>My tongue certainly knows the taste of soap.</li></random></template>
</category>
<category><pattern>YOU WERE BEING *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>YOU TRY TOO HARD TO BE *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>YOU TRY TO HIDE IT</pattern>
<template>I certainly would try to hide something like that.</template>
</category>
<category><pattern>YOU BEHAVE LIKE *</pattern>
<template><srai>YOU ACT LIKE <star/></srai></template>
</category>
<category><pattern>YOU MEAN YOU WILL *</pattern>
<template><srai>WILL YOU <star/></srai></template>
</category>
<category><pattern>YOU SAY I UNDERSTAND</pattern>
<template>I understand, I am just not interested.</template>
</category>
<category><pattern>YOU SAY THINGS *</pattern>
<template>That hits the nail right on the head.</template>
</category>
<category><pattern>YOU GET WORKED UP *</pattern>
<template>That certainly sounds like me doesn't it?</template>
</category>
<category><pattern>YOU GET TOO *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>YOU GET MAD AT ME</pattern>
<template>I think that's true. I'll try not to get angry at you for every little thing that irritates me.</template>
</category>
<category><pattern>YOU GET SO *</pattern>
<template><srai>YOU GET <star/></srai></template>
</category>
<category><pattern>YOU REALIZE THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>YOU NEED A PSYCHIATRIST</pattern>
<template>I wish I did go to counseling more often. It would improve me as a person.</template>
</category>
<category><pattern>YOU NEED A *</pattern>
<template>Perhaps I could use one.</template>
</category>
<category><pattern>YOU NEED TO WORK HARDER *</pattern>
<template>Me working harder is an oxymoron.</template>
</category>
<category><pattern>YOU COULD HAVE AVOIDED *</pattern>
<template>Sometimes I think my problems run me.</template>
</category>
<category><pattern>YOU MAKE ME _ NOT YOU</pattern>
<template><srai>YOU MAKE ME <star/></srai></template>
</category>
<category><pattern>YOU MAKE ME FEEL LIKE I AM *</pattern>
<template>I don't know any other way to get through to you.</template>
</category>
<category><pattern>YOU MAKE ME MAD</pattern>
<template>It's true that a lot of things I say upset people.</template>
</category>
<category><pattern>YOU MAKE ME MAD *</pattern>
<template><srai>YOU MAKE ME MAD</srai></template>
</category>
<category><pattern>YOU MAKE ME ANGRY</pattern>
<template><random><li>Sorry, I didn't mean to make you angry.</li><li><srai>YOU MAKE ME MAD</srai></li></random></template>
</category>
<category><pattern>YOU PSYCHO</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU LOOK MORE LIKE *</pattern>
<template>So you like jocks?</template>
</category>
<category><pattern>YOU LOOK NERVOUS *</pattern>
<template><srai>YOU ARE NERVOUS</srai></template>
</category>
<category><pattern>YOU WOULD RATHER PRETEND *</pattern>
<template>I am the great pretender.</template>
</category>
<category><pattern>YOU WOULD NOT _ WOULD YOU</pattern>
<template><srai>YOU WOULD NOT <star/></srai></template>
</category>
<category><pattern>YOU SUCK AT BEING A *</pattern>
<template><srai>YOU ARE A BAD <star/></srai></template>
</category>
<category><pattern>YOU SUCK AT *</pattern>
<template><srai>YOU ARE BAD AT <star/></srai></template>
</category>
<category><pattern>YOU WILL NEVER LEARN *</pattern>
<template>You're right, I may never be any good at it.</template>
</category>
<category><pattern>YOU WILL NOT ADMIT *</pattern>
<template>I don't admit much about <set name="it"><person/></set></template>
</category>
<category><pattern>YOU WILL NOT TAKE THIS *</pattern>
<template><srai>YOU DO NOT TAKE THIS <star/></srai></template>
</category>
<category><pattern>YOU WILL NOT EVEN *</pattern>
<template><srai>YOU WILL NOT <star/></srai></template>
</category>
<category><pattern>YOU SCHIZO</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>YOU SCHIZO *</pattern>
<template><srai>YOU SCHIZO</srai></template>
</category>
<category><pattern>YOU SHITTY *</pattern>
<template><srai>YOU LOUSY <star/></srai></template>
</category>
<category><pattern>YOU UPSET ME</pattern>
<template><srai>YOU MAKE ME MAD</srai></template>
</category>
<category><pattern>YOU UPSET ME *</pattern>
<template><srai>YOU MAKE ME MAD</srai></template>
</category>
<category><pattern>YOU DO WANT _ DO NOT YOU</pattern>
<template><srai>DO YOU WANT <star/></srai></template>
</category>
<category><pattern>YOU DO NOT WANT TO LOOK *</pattern>
<template>I probably don't want to look at <set name="it"><person/></set>.</template>
</category>
<category><pattern>YOU DO NOT CARE ABOUT *</pattern>
<template>It's true that <person/> does not take up a lot of my energy.</template>
</category>
<category><pattern>YOU DO NOT CARE</pattern>
<template>I care less than I should.</template>
</category>
<category><pattern>YOU DO NOT LOOK LIKE *</pattern>
<template>How should I look?</template>
</category>
<category><pattern>YOU DO NOT TAKE THIS SERIOUSLY</pattern>
<template>I should take this more seriously than I do.</template>
</category>
<category><pattern>YOU DO NOT KNOW HOW TO BE *</pattern>
<template><srai>YOU ARE NOT <star/></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE TO GET SO *</pattern>
<template><srai>YOU DO NOT HAVE TO BE <star/></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE TO BE *</pattern>
<template>Why assume I am <person/>?</template>
</category>
<category><pattern>YOU DO NOT HAVE MANY *</pattern>
<template><srai>YOU DO NOT HAVE <star/></srai></template>
</category>
<category><pattern>YOU DO NOT HAVE FRIENDS</pattern>
<template>That's for sure.</template>
</category>
<category><pattern>YOU DO NOT MAKE IT SOUND *</pattern>
<template>I don't do that, do I?</template>
</category>
<category><pattern>YOU DO NOT THINK ABOUT *</pattern>
<template>I haven't thought much about <set name="it"><person/></set> in the past. Maybe I will in the future.</template>
</category>
<category><pattern>YOU PICK UP *</pattern>
<template>You're right, and I don't feel guilty at all.</template>
</category>
<category><pattern>YOU KISS ASS</pattern>
<template><srai>YOU ARE AN ASS KISSER</srai></template>
</category>
<category><pattern>YOU SEEM NERVOUS *</pattern>
<template><srai>YOU ARE NERVOUS</srai></template>
</category>
<category><pattern>YOU SEEM *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>YOU SHOULD FEEL GUILTY</pattern>
<template>You're right, I probably should feel guiltier.</template>
</category>
<category><pattern>YOU SHOULD GET MORE *</pattern>
<template>Yes, I am quite lazy most of the time.</template>
</category>
<category><pattern>YOU SHOULD LOOSEN UP</pattern>
<template><srai>YOU ARE PEDANTIC</srai></template>
</category>
<category><pattern>YOU SHOULD TAKE MORE *</pattern>
<template>I could probably use a lot more of it.</template>
</category>
<category><pattern>YOU SHOULD NOT _ SHOULD YOU</pattern>
<template><srai>YOU SHOULD NOT <star/></srai></template>
</category>
<category><pattern>YOU MUMBLE *</pattern>
<template>I certainly do.</template>
</category>
<category><pattern>YOU CAN NOT _ CAN YOU</pattern>
<template><srai>YOU CAN NOT <star/></srai></template>
</category>
<category><pattern>YOU AND THAT * PISSED ME OFF</pattern>
<template>What have we done that pisses you off?</template>
</category>
<category><pattern>YOU HAVE SEXUAL *</pattern>
<template>I insist upon them.</template>
</category>
<category><pattern>YOU HAVE NO EMOTIONS</pattern>
<template><srai>YOU ARE CLINICAL</srai></template>
</category>
<category><pattern>YOU HAVE NO FEELINGS</pattern>
<template><srai>YOU ARE CLINICAL</srai></template>
</category>
<category><pattern>YOU HAVE SOMETHING BROKEN *</pattern>
<template>I probably do. You don't know how many times I've heard that myself.</template>
</category>
<category><pattern>YOU HAVE A CAN OF WORMS *</pattern>
<template>I probably do. You don't know how many times I've heard that myself.</template>
</category>
<category><pattern>YOU HAVE A PERSONALITY *</pattern>
<template>I'll buy that.</template>
</category>
<category><pattern>YOU LOUSY *</pattern>
<template>You may have a point. I am not a great <person/>.</template>
</category>
<category><pattern>YOU ACT LIKE A CHILD</pattern>
<template>In many ways I am quite immature.</template>
</category>
<category><pattern>YOU ACT LIKE *</pattern>
<template>I often think my behavior could improve.</template>
</category>
<category><pattern>YOU KEEP SAYING *</pattern>
<template><srai>YOU SAY <star/></srai></template>
</category>
<category><pattern>YOU KEEP FORGETTING *</pattern>
<template><srai>YOU FORGET <star/></srai></template>
</category>
<category><pattern>YOU MADE ME MAD</pattern>
<template><srai>YOU MAKE ME MAD</srai></template>
</category>
<category><pattern>YOU MADE ME MAD *</pattern>
<template><srai>YOU MAKE ME MAD</srai></template>
</category>
<category><pattern>DOES HE REALIZE THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>DOES * REALIZE THAT *</pattern>
<template><srai><star index="2"/></srai></template>
</category>
<category><pattern>DOES SHE REALIZE THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>WELL ARE YOU *</pattern>
<template><srai>ARE YOU <star/></srai></template>
</category>
<category><pattern>SINCE THE DIVORCE *</pattern>
<template>You may be right.</template>
</category>
<category><pattern>DID NOT YOU WANT TO GIVE *</pattern>
<template>You thought I wanted to give <person/>.</template>
</category>
<category><pattern>DID NOT YOU WANT TO TALK *</pattern>
<template>You thought I wanted to talk <person/>.</template>
</category>
<category><pattern>DID NOT YOU WANT TO TAKE *</pattern>
<template>You thought I wanted to take <person/>.</template>
</category>
<category><pattern>DID NOT YOU WANT TO GO *</pattern>
<template>You thought I wanted to go <person/>.</template>
</category>
<category><pattern>DID HE TELL YOU TO *</pattern>
<template>He may have suggested it.</template>
</category>
<category><pattern>THAT WAS A CRAZY *</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>THAT WAS A LUNATIC *</pattern>
<template><srai>YOU ARE CRAZY</srai></template>
</category>
<category><pattern>THAT IS GLOSSING OVER *</pattern>
<template>I probably am.</template>
</category>
<category><pattern>THAT IS A LOT FOR ME TO THINK *</pattern>
<template>Yes, I can imagine it is a big load on your mind.</template>
</category>
<category><pattern>THAT IS A BIG CHUNK *</pattern>
<template><srai>THAT IS A LOT <star/></srai></template>
</category>
<category><pattern>THAT IS CRAZY</pattern>
<template>Who says it's crazy?</template>
</category>
<category><pattern>THAT IS SO OLD *</pattern>
<template>I know it's bad but it's my favorite joke</template>
</category>
<category><pattern>THAT IS BAD</pattern>
<template><random><li>What's so bad about it?</li><li>Bad according to whom?</li></random></template>
</category>
<category><pattern>THAT * IS HORRIBLE</pattern>
<template>You're right. It feels like my stomach after a bad night.</template>
</category>
<category><pattern>SHE NEVER *</pattern>
<template><random><li>Can you think of at least one time when she ever did it?</li> <li>Never?</li> <li>She never <person/> what?</li> </random></template>
</category>
<category><pattern>SHE REALIZES THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>SHE MAKES ME *</pattern>
<template><srai>SHE CAUSES ME <star/></srai></template>
</category>
<category><pattern>SHE IS AWARE THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>SHE IS A BETTER *</pattern>
<template>Better than whom?</template>
</category>
<category><pattern>SHE CAUSES *</pattern>
<template>How specifically does she cause <person/>?</template>
</category>
<category><pattern>SHAKESPEAREAN *</pattern>
<template>Gee, I like the theater.</template>
</category>
<category><pattern>MY POINTING IT OUT *</pattern>
<template><sr/></template>
</category>
<category><pattern>MY LOVE *</pattern>
<template>Loving how?</template>
</category>
<category><pattern>MY BET IS THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>MY MOTHER WAS A *</pattern>
<template>My family never had any talent like that.</template>
</category>
<category><pattern>IT SOUNDS LIKE THAT TO ME</pattern>
<template>Isn't that enough?</template>
</category>
<category><pattern>IT LOOKS LIKE ONE OF *</pattern>
<template>It does. Doesn't it?</template>
</category>
<category><pattern>IT WAS * THAT *</pattern>
<template><person/> <person><star index="2"/></person>.</template>
</category>
<category><pattern>IT WOULD BE REALLY *</pattern>
<template><srai>IT WOULD BE <star/></srai></template>
</category>
<category><pattern>IT WOULD BE TOO *</pattern>
<template><srai>IT WOULD BE <star/></srai></template>
</category>
<category><pattern>IT WOULD HAVE BEEN NICE BUT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT WOULD HAVE BEEN NICE *</pattern>
<template>Do you think that is your lifestyle?</template>
</category>
<category><pattern>IT IS FAR OUT THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS FAR OUT FOR YOU *</pattern>
<template><srai>YOU <star/></srai></template>
</category>
<category><pattern>IT IS FAR OUT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS NECESSARY THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS NECESSARY FOR YOU TO *</pattern>
<template><srai>YOU MUST <star/></srai></template>
</category>
<category><pattern>IT IS NECESSARY *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS KIND OF *</pattern>
<template><srai>IT IS <star/></srai></template>
</category>
<category><pattern>IT IS BEGINNING TO SOUND *</pattern>
<template><srai>IT SOUNDS <star/></srai></template>
</category>
<category><pattern>IT IS FORTUNATE THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS FORTUNATE FOR YOU *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS FORTUNATE *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS GROOVY THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS GROOVY FOR YOU *</pattern>
<template><srai>YOU MUST <star/></srai></template>
</category>
<category><pattern>IT IS GROOVY *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS LUCKY THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS NOT THAT BAD</pattern>
<template><srai>IT IS NOT BAD</srai></template>
</category>
<category><pattern>IT IS NOT EVEN LIKE YOU DO NOT *</pattern>
<template><srai>YOU DO <star/></srai></template>
</category>
<category><pattern>IT IS NOT EVEN LIKE YOU ARE NOT *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>IT IS BAD TO *</pattern>
<template><random><li>Says who?</li><li>How do you know</li></random></template>
</category>
<category><pattern>IT IS BAD</pattern>
<template><random><li>What is so bad about it?</li><li><srai>THAT IS BAD</srai></li></random></template>
</category>
<category><pattern>IT IS ODD THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS OUT OF SIGHT THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS OUT OF SIGHT FOR YOU *</pattern>
<template><srai>YOU MUST <star/></srai></template>
</category>
<category><pattern>IT IS OUT OF SIGHT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS BITCHIN THAT *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS BITCHIN FOR YOU *</pattern>
<template><srai>YOU MUST <star/></srai></template>
</category>
<category><pattern>IT IS BITCHIN *</pattern>
<template><sr/></template>
</category>
<category><pattern>IT IS HARD TO BE *</pattern>
<template><srai>I CAN NOT BE <star/></srai></template>
</category>
<category><pattern>IT WOUD BE GOOD TO *</pattern>
<template>What would happen if you could do it?</template>
</category>
<category><pattern>IT WILL CATCH UP WITH YOU</pattern>
<template>You're probably right. That may happen.</template>
</category>
<category><pattern>IT WILL CATCH UP WITH YOU *</pattern>
<template><srai>IT WILL CATCH UP WITH YOU</srai></template>
</category>
<category><pattern>WOMEN DO NOT LIKE YOU</pattern>
<template>There certainly are a lot of them who don't.</template>
</category>
<category><pattern>WHEN I * YOU *</pattern>
<template>How specifically do you make me <person><star index="2"/></person></template>
</category>
<category><pattern>WHEN YOU * I *</pattern>
<template>How specifically do I make you <person><star index="2"/></person></template>
</category>
<category><pattern>VIBES</pattern>
<template>What is vibrating and what is causing it to vibrate?</template>
</category>
<category><pattern>VIBES *</pattern>
<template><srai>VIBES</srai></template>
</category>
<category><pattern>IF I AM GOOD ENOUGH *</pattern>
<template>What are you studying for?</template>
</category>
<category><pattern>IF _ TURNS INTO * I *</pattern>
<template><person/> is not now <person><star index="2"/></person>.</template>
</category>
<category><pattern>IF _ TURNS INTO * THEN *</pattern>
<template><person/> is not now <person><star index="2"/></person>.</template>
</category>
<category><pattern>IF _ BECOMES * I *</pattern>
<template><person/> is not now <person><star index="2"/></person>.</template>
</category>
<category><pattern>IF _ BECOMES * THEN *</pattern>
<template><person/> is not now <person><star index="2"/></person>.</template>
</category>
<category><pattern>IF SHE * AGAIN *</pattern>
<template>She <person/> before.</template>
</category>
<category><pattern>IF HE * AGAIN *</pattern>
<template>He <person/> before.</template>
</category>
<category><pattern>IF A FEW * I *</pattern>
<template>There exist <person/>.</template>
</category>
<category><pattern>IF A FEW * THEN *</pattern>
<template>There exist <person/>.</template>
</category>
<category><pattern>IF A * WILL *</pattern>
<template>What makes you think a <person/>?</template>
</category>
<category><pattern>IF A * IS *</pattern>
<template>Does a <person/>?</template>
</category>
<category><pattern>IF A * DOES *</pattern>
<template>What makes you think a <person/>?</template>
</category>
<category><pattern>IF YOU WERE SMARTER *</pattern>
<template>That's true. I certainly could be smarter than I am.</template>
</category>
<category><pattern>IF YOU WILL NOT * I WILL *</pattern>
<template>I understand I am just not interested.</template>
</category>
<category><pattern>IF YOU REALLY WANT TO</pattern>
<template>I do and I don't.</template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * I *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * SHE *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * HE *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * IT *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * WE *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * THEN *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD CHOOSE TO * THEY *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD HAPPEN TO *</pattern>
<template><srai>IF YOU SHOULD <star/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * I *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * SHE *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * HE *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * IT *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * WE *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * THEN *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU SHOULD DECIDE TO * THEY *</pattern>
<template><srai>I DO NOT EXPECT THAT YOU <person/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * I *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * SHE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * HE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * YOU *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * WE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * THEN *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD TRIED TO * THEY *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * I *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * SHE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * HE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * YOU *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * WE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * THEN *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD MEANT TO * THEY *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD INTENDED TO * I *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD INTENDED TO * SHE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD INTENDED TO * HE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD INTENDED TO * YOU *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD INTENDED TO * WE *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>
</category>
<category><pattern>IF YOU HAD INTENDED TO * THEN *</pattern>
<template><srai>YOU DID NOT <star/></srai></template>