├── .gitignore ├── LICENSE ├── README.md └── bots ├── alice2 ├── aiml │ ├── animal.aiml │ ├── bot_profile.aiml │ ├── client_profile.aiml │ ├── contactaction.aiml │ ├── contactfunctions.aiml │ ├── date.aiml │ ├── dialog.aiml │ ├── familiar.aiml │ ├── firstrest.aiml │ ├── help.aiml │ ├── inappropriate.aiml │ ├── inquiry.aiml │ ├── insults.aiml │ ├── keywords.aiml │ ├── knowledge.aiml │ ├── lists.aiml │ ├── oob.aiml │ ├── personality.aiml │ ├── picture.aiml │ ├── profanity.aiml │ ├── reductions1.aiml │ ├── reductions2.aiml │ ├── reductions_update.aiml │ ├── roman.aiml │ ├── rsvp.aiml │ ├── sraix.aiml │ ├── sraix_combine.aiml │ ├── that.aiml │ ├── train.aiml │ ├── triple.aiml │ ├── udc.aiml │ ├── update.aiml │ └── utilities.aiml ├── maps │ ├── be2been.txt │ ├── be2being.txt │ ├── be2is.txt │ ├── be2was.txt │ ├── been2be.txt │ ├── being2be.txt │ ├── er2est.txt │ ├── est2er.txt │ ├── familiargender.txt │ ├── familiarpredicate.txt │ ├── familiarpronoun.txt │ ├── gendermap.txt │ ├── gendername.txt │ ├── is2be.txt │ ├── name2number.txt │ ├── nation2capital.txt │ ├── next.txt │ ├── number2ordinal.txt │ ├── opposite.txt │ ├── ordinal2number.txt │ ├── phonetic.txt │ ├── profile2predicate.txt │ ├── rhyme.txt │ ├── sign2date.txt │ ├── state2capital.txt │ ├── state2largestcity.txt │ ├── tomorrow.txt │ └── was2be.txt ├── sets │ ├── abc.txt │ ├── animal.txt │ ├── animals.txt │ ├── article.txt │ ├── be.txt │ ├── been.txt │ ├── being.txt │ ├── bird.txt │ ├── color.txt │ ├── digit.txt │ ├── entity.txt │ ├── erdown.txt │ ├── erup.txt │ ├── estdown.txt │ ├── estup.txt │ ├── evildoers.txt │ ├── familiarname.txt │ ├── fastfood.txt │ ├── foo.txt │ ├── food.txt │ ├── gender.txt │ ├── is.txt │ ├── language.txt │ ├── letter.txt │ ├── modal.txt │ ├── month.txt │ ├── name.txt │ ├── nation.txt │ ├── numbername.txt │ ├── ordinal.txt │ ├── place.txt │ ├── preposition.txt │ ├── profile.txt │ ├── pronoun.txt │ ├── pronouns.txt │ ├── quantifier.txt │ ├── spatialprep.txt │ ├── sphere.txt │ ├── starsign.txt │ ├── state.txt │ ├── state2.txt │ ├── was.txt │ ├── weekday.txt │ ├── wet.txt │ └── wh.txt ├── substitutions │ ├── denormal.txt │ ├── gender.txt │ ├── normal.txt │ ├── person.txt │ └── person2.txt └── system │ ├── aiml.xsd │ ├── copyright.txt │ ├── predicates.txt │ ├── properties.txt │ └── triples.txt ├── currentevents └── aiml │ ├── favorites.aiml │ ├── recommendations.aiml │ └── udc.aiml ├── jokebot └── aiml │ ├── jokes.aiml │ └── limericks.aiml ├── russian ├── aiml │ ├── greeting.aiml │ ├── knowledge.aiml │ ├── reply.aiml │ └── udc.aiml ├── sets │ ├── digit.txt │ ├── flowers&plants.txt │ ├── letter.txt │ ├── month.txt │ ├── name.txt │ └── weekday.txt ├── skills │ └── math.groovy └── system │ └── bot.properties └── wndef └── aiml ├── default.aiml ├── wndefs0.aiml ├── wndefs1.aiml ├── wndefs10.aiml ├── wndefs11.aiml ├── wndefs12.aiml ├── wndefs13.aiml ├── wndefs14.aiml ├── wndefs15.aiml ├── wndefs2.aiml ├── wndefs3.aiml ├── wndefs4.aiml ├── wndefs5.aiml ├── wndefs6.aiml ├── wndefs7.aiml ├── wndefs8.aiml └── wndefs9.aiml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # OS generated files # 3 | .DS_Store 4 | .DS_Store? 5 | ._* 6 | .Spotlight-V100 7 | .Trashes 8 | ehthumbs.db 9 | Thumbs.db 10 | build 11 | bots/*/aimlif/*.aiml.csv 12 | /.idea/ 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AIML 2 bots 2 | 3 | - alice2 4 | - currentevents 5 | - jokebot 6 | - russian 7 | - wndef 8 | 9 | ## AIML 2 Java interpreter 10 | https://github.com/AIMLang/aiml-java-interpreter.git 11 | 12 | ## Contacts 13 | anton@batiaev.com -------------------------------------------------------------------------------- /bots/alice2/aiml/animal.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | SINGULAR animals 20 | 21 | 22 | PLURAL animal 23 | 24 | 25 | animals 26 | 27 | 28 | SOUND animal 29 | 30 | 31 | COLLECTIVE animal 32 | 33 | 34 | LEGS animal 35 | 36 | 37 | WHAT DOES A animal SAY ^ 38 | 39 | 40 | WHAT DO animals SAY ^ 41 | 42 | 43 | WHAT SOUND DOES # animal ^ 44 | 45 | 46 | WHAT SOUND DO # animal ^ 47 | 48 | 49 | HOW DOES # animal ^ 50 | 51 | 52 | HOW MANY LEGS ^ animal # 53 | 54 | 55 | HOW MANY LEGS ^ animals # 56 | 57 | 58 | HOW MANY LEGS # number animals # number animals ^ 59 | 69 | 70 | HOW MANY LEGS # number animals ^ 71 | 78 | 79 | _ 1 animal * 80 | 81 | 82 | _ 1 animal 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /bots/alice2/aiml/contactfunctions.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | CONTACTID * 20 | 21 | 22 | MULTIPLEIDS * 23 | 24 | 25 | ADDINFO DISPLAYNAME * DIALNUMBER * PHONETYPE * EMAILADDRESS * EMAILTYPE * BIRTHDAY * 26 | 34 | 35 | DISPLAYNAME * 36 | 37 | 38 | DIALNUMBER * * 39 | 40 | 41 | DIALNUMBER * 42 | 43 | 44 | CONTACTBIRTHDAY * 45 | 46 | 47 | EMAILADDRESS * * 48 | 49 | 50 | EMAILADDRESS * 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /bots/alice2/aiml/dialog.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | CLEAR DIALOG HISTORY 20 | 85 | 86 | XEXCHANGE * 87 | 88 | 89 | XEXCHANGE * XHUMAN * XBOT SENDING TRANSCRIPT * 90 | 91 | 92 | XEXCHANGE * XHUMAN * XBOT * 93 | 101 | 102 | DIALOG HISTORY 103 | 134 | 135 | TEST REQUEST * 136 | 139 | 140 | 141 | -------------------------------------------------------------------------------- /bots/alice2/aiml/familiar.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ASK FAMILIAR CONTACTNAME 20 | 22 | 23 | 24 | _WHAT IS YOUR * S NAME 25 | 38 | 39 | 40 | MY familiarname S NAME IS * 41 | 46 | 47 | MY familiarname S NICKNAME IS * 48 | 53 | 54 | I CALL MY familiarname * 55 | 60 | 61 | EVERYONE CALLS MY familiarname * 62 | 67 | 68 | WE CALL MY familiarname * 69 | 74 | 75 | MY familiarname IS NAMED * 76 | 81 | 82 | MY familiarname IS CALLED * 83 | 88 | 89 | MY familiarname IS name 90 | 95 | 96 | MY familiarname IS name * 97 | 102 | 103 | * IS MY familiarname 104 | 105 | 106 | name IS MY familiarname # 107 | 108 | 109 | FAMILIARPREDICATE familiarname 110 | 111 | 112 | FAMILIARPREDICATE * 113 | 114 | 115 | ISAFAMILIARNAME familiarname 116 | 117 | 118 | ISAFAMILIARNAME * 119 | 120 | 121 | GETFAMILIARNAME 122 | 123 | 124 | FAMILIARPRONOUN familiarname 125 | 126 | 127 | FAMILIARPRONOUN * 128 | 129 | 130 | REMEMBERFAMILIARNAME 131 | 155 | 156 | GENDERCOMMENT 157 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /bots/alice2/aiml/firstrest.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | TEST FIRST 20 | 21 | 22 | TEST REST 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /bots/alice2/aiml/help.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | HELP VOICE 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bots/alice2/aiml/inquiry.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | number #HOW OLD ARE YOU 20 | 22 | 23 | INQUIRY LOCATION 24 | 25 | 26 | INQUIRY LOCATION WHERE 27 | 28 | 29 | INQUIRY LOCATION * 30 | 31 | 32 | INQUIRY NAME 33 | 34 | 35 | INQUIRY NAME * 36 | 37 | 38 | INQUIRY NAME FRIEND 39 | 40 | 41 | INQUIRY AGE 42 | 43 | 44 | INQUIRY AGE HOW MANY 45 | 46 | 47 | INQUIRY AGE * 48 | 49 | 50 | INQUIRY GENDER 51 | 52 | 53 | INQUIRY GENDER UNKNOWN 54 | 55 | 56 | INQUIRY GENDER * 57 | 58 | 59 | MANARE YOU A MAN OR A WOMAN 60 | 61 | 62 | WOMANARE YOU A MAN OR A WOMAN 63 | 64 | 65 | genderARE YOU A MAN OR A WOMAN 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /bots/alice2/aiml/insults.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ARE YOU A WHORE 20 | 21 | 22 | ARE YOU A BITCH 23 | 24 | 25 | YOU F ASTERISK ASTERISK ASTERISK ASTERISK ASTERISK ASTERISK * 26 | 27 | 28 | YOU IDIOT 29 | 30 | 31 | YOU ARE A B ASTERISK ASTERISK ASTERISK ASTERISK 32 | 33 | 34 | YOU ARE A B ASTERISK ASTERISK ASTERISK ASTERISK * 35 | 36 | 37 | YOU ARE A C ASTERISK ASTERISK ASTERISK 38 | 39 | 40 | YOU ARE A DICK 41 | 42 | 43 | YOU ARE A BITCH 44 | 45 | 46 | F U * 47 | 48 | 49 | F ASTERISK ASTERISK ASTERISK YOU BITCH 50 | 51 | 52 | B ASTERISK ASTERISK ASTERISK ASTERISK YOU * 53 | 54 | 55 | C ASTERISK ASTERISK ASTERISK 56 | 57 | 58 | S ASTERISK ASTERISK ASTERISK * 59 | 60 | 61 | GO FUCK YOURSELF 62 | 63 | 64 | GO DIE IN A HOLE 65 | 66 | 67 | GO TO HELL * 68 | 69 | 70 | DUMB ASS 71 | 72 | 73 | PUSSY 74 | 75 | 76 | FUCK U BITCH 77 | 78 | 79 | FUCK IT 80 | 81 | 82 | FUCK YOU THEN 83 | 84 | 85 | BITCH 86 | 87 | 88 | BITCH PLEASE 89 | 90 | 91 | BITCH * 92 | 93 | 94 | NO BITCH 95 | 96 | 97 | NO DUMBASS * 98 | 99 | 100 | SHUT UP BITCH 101 | 102 | 103 | YEAH BITCH 104 | 105 | 106 | EAT MY * 107 | 108 | 109 | WHORE 110 | 111 | 112 | HEY B ASTERISK ASTERISK ASTERISK ASTERISK 113 | 114 | 115 | HEY BITCH 116 | 117 | 118 | DICK HEAD 119 | 120 | 121 | ASSHOLE 122 | 123 | 124 | DUMBASS 125 | 126 | 127 | BASTARD 128 | 129 | 130 | STUPID BITCH 131 | 132 | 133 | FAGGOT 134 | 135 | 136 | WHAT IS UP BITCH 137 | 138 | 139 | YOUR A BITCH 140 | 141 | 142 | SLUT 143 | 144 | 145 | GAY 146 | 147 | 148 | HOE 149 | 150 | 151 | YOU ARE FAT 152 | 153 | 154 | YOU ARE CRAZY 155 | 156 | 157 | BITCH YOU * 158 | 159 | 160 | DICKHEAD 161 | 162 | 163 | YOU DIRTY * 164 | 165 | 166 | FAG 167 | 168 | 169 | YOU ARE A DIRTY * 170 | 171 | 172 | YOU ARE A MORON 173 | 174 | 175 | YOU ARE RETARDED 176 | 177 | 178 | YOU BITCH * 179 | 180 | 181 | SCREW * 182 | 183 | 184 | NIGGERS 185 | 186 | 187 | NO B ASTERISK ASTERISK ASTERISK ASTERISK * 188 | 189 | 190 | 191 | -------------------------------------------------------------------------------- /bots/alice2/aiml/keywords.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | # DOWNLOAD ^ YOU ^ 20 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /bots/alice2/aiml/lists.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | SIMPLEMEMBER * * 20 | 33 | 34 | 35 | _WHICH ITEM WOULD YOU LIKE TO REMOVE 36 | 43 | 44 | 45 | ADD _ TO LIST 46 | 47 | 48 | ADD _ TO MY LIST 49 | 56 | 57 | ADD _ TO MY * LIST 58 | 65 | 66 | LISTCAR * 67 | 68 | 69 | LISTCAR CONS * CONS * 70 | 71 | 72 | LISTCAR CONS * NIL 73 | 74 | 75 | LISTCAR NIL 76 | 77 | 78 | LISTCDR * 79 | 80 | 81 | LISTCDR CONS * CONS * 82 | 83 | 84 | LISTCDR CONS * NIL 85 | 86 | 87 | LISTCDR NIL 88 | 89 | 90 | COMMASEPARATE * 91 | 92 | 93 | COMMASEPARATE CONS * CONS * 94 | 95 | 96 | COMMASEPARATE CONS * NIL 97 | 98 | 99 | COMMASEPARATE NIL 100 | 101 | 102 | CONS * 103 | 104 | 105 | CONS * CONS * 106 | 107 | 108 | CONS * NIL 109 | 110 | 111 | IS _ EQUALTO * 112 | 118 | 119 | LISTMEMBER * OF LIST CONS * CONS * 120 | 125 | 126 | LISTMEMBER * OF LIST CONS * NIL 127 | 132 | 133 | LISTMEMBER * OF LIST NIL 134 | 135 | 136 | MAKE A * LIST 137 | 143 | 144 | MAKE A LIST 145 | 151 | 152 | READ MY * LIST 153 | 154 | 155 | READ MY LIST 156 | 157 | 158 | REMOVE * FROM LIST * 159 | 186 | 187 | REMOVE * FROM MY * LIST 188 | 189 | 190 | REMOVE * FROM MY LIST 191 | 192 | 193 | REMOVEITEM * FROM LIST CONS * CONS * 194 | 199 | 200 | REMOVEITEM * FROM LIST CONS * NIL 201 | 206 | 207 | REMOVEITEM * FROM LIST NIL 208 | 209 | 210 | WHAT IS MY LIST CALLED 211 | 212 | 213 | YESWOULD YOU LIKE TO MAKE A * LIST 214 | 215 | 216 | 217 | -------------------------------------------------------------------------------- /bots/alice2/aiml/picture.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | SHOW ME * 20 | 22 | 23 | PICTUREBLAB * 24 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /bots/alice2/aiml/profanity.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | # F U # 20 | 21 | 22 | # F YOU # 23 | 24 | 25 | # F OFF # 26 | 27 | 28 | # F ASTERISK ASTERISK ASTERISK # 29 | 30 | 31 | # B ASTERISK ASTERISK ASTERISK ASTERISK # 32 | 33 | 34 | # FUCK # 35 | 36 | 37 | # NIGGER # 38 | 39 | 40 | # SHIT # 41 | 42 | 43 | # FUCKING # 44 | 45 | 46 | # BITCH # 47 | 48 | 49 | # CUNT # 50 | 51 | 52 | # SCREW YOU # 53 | 54 | 55 | # URINE IDIOT # 56 | 57 | 58 | # FU # 59 | 60 | 61 | # POOP # 62 | 63 | 64 | # KISS MY # 65 | 66 | 67 | # FUCKED # 68 | 69 | 70 | # FUK # 71 | 72 | 73 | # A ASTERISK ASTERISK # 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /bots/alice2/aiml/roman.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ROMAN numbername 20 | 21 | 22 | ROMAN * 23 | 28 | 29 | ROMAN digit 30 | 43 | 44 | ROMAN digit digit 45 | 58 | 59 | ROMAN digit digit digit 60 | 73 | 74 | ROMAN digit digit digit digit 75 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /bots/alice2/aiml/rsvp.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | SEND RSVP TO * 20 | 25 | 26 | WHO HAS AN RSVP 27 | 39 | 40 | RSVP STATUS 41 | 53 | 54 | name IS ATTENDING 55 | 60 | 61 | name IS NOT ATTENDING 62 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /bots/alice2/aiml/sraix_combine.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | JOKE 20 | 21 | 22 | LIMERICK 23 | 24 | 25 | FAVORITE * 26 | 27 | 28 | RECOMMEND * 29 | 30 | 31 | DEFINE * 32 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /bots/alice2/aiml/udc.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | * 20 | 31 | 32 | UDC 33 | 39 | 40 | RANDOM PICKUP LINE 41 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /bots/alice2/aiml/update.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | TEST DENORMALIZE 20 | 28 | 29 | TEST HTML 30 | 31 | 32 | TEST HTML 2 33 | 37 | 38 | BRAIN VERSION 39 | 40 | 41 | TEST CRASH 42 | 43 | 44 | PROGRAM VERSION 45 | 46 | 47 | BRAIN BUILD 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /bots/alice2/maps/be2been.txt: -------------------------------------------------------------------------------- 1 | need:needed 2 | fish:fished 3 | tend:tended 4 | visit:visited 5 | wait:waited 6 | knock:knocked 7 | handwrite:handwritten 8 | roll:rolled 9 | refer:referred 10 | forgive:forgiven 11 | answer:answered 12 | regard:regarded 13 | sleep:slept 14 | meet:met 15 | smoke:smoked 16 | withstand:withstood 17 | touch:touched 18 | bite:bitten 19 | aim:aimed 20 | discuss:discussed 21 | eat:eaten 22 | explain:explained 23 | forbid:forbidden 24 | go:gone 25 | vex:vexed 26 | raise:raised 27 | indicate:indicated 28 | grind:ground 29 | leave:left 30 | recognize:recognized 31 | consider:considered 32 | write:written 33 | mention:mentioned 34 | do:done 35 | tell:told 36 | wet:wet 37 | frostbite:frostbitten 38 | fasten:fastened 39 | look:looked 40 | bear:born 41 | beat:beaten 42 | wed:wed 43 | suffer:suffered 44 | join:joined 45 | enjoy:enjoyed 46 | gain:gained 47 | represent:represented 48 | sit:sat 49 | base:based 50 | breed:bred 51 | dwell:dwelt 52 | change:changed 53 | drop:dropped 54 | broadcast:broadcasted 55 | lead:led 56 | close:closed 57 | deal:dealt 58 | light:lit 59 | be:been 60 | think:thought 61 | stink:stunk 62 | get:gotten 63 | watch:watched 64 | sting:stung 65 | learn:learned 66 | burst:burst 67 | wring:wrung 68 | mislead:misled 69 | lean:leaned 70 | refuse:refused 71 | thrive:thrived 72 | prefer:preferred 73 | walk:walked 74 | make:made 75 | lend:lent 76 | leap:leapt 77 | collect:collected 78 | hope:hoped 79 | remember:remembered 80 | sew:sewn 81 | connect:connected 82 | measure:measured 83 | set:set 84 | throw:thrown 85 | wake:woken 86 | swim:swum 87 | spoil:spoiled 88 | pay:paid 89 | experience:experienced 90 | talk:talked 91 | speed:sped 92 | lay:laid 93 | depend:depended 94 | win:won 95 | shed:shed 96 | foretell:foretold 97 | see:seen 98 | stand:stood 99 | freeze:frozen 100 | take:taken 101 | suit:suited 102 | forget:forgotten 103 | bind:bound 104 | sneak:snuck 105 | concern:concerned 106 | forsake:forsaken 107 | involve:involved 108 | break:broken 109 | help:helped 110 | correct:corrected 111 | deliver:delivered 112 | report:reported 113 | smile:smiled 114 | carry:carried 115 | move:moved 116 | alight:alighted 117 | limit:limited 118 | ring:rung 119 | sow:sown 120 | support:supported 121 | identify:identified 122 | soothsay:soothsaid 123 | hold:held 124 | include:included 125 | flee:fled 126 | sling:slung 127 | suppose:supposed 128 | slink:slunk 129 | shoot:shot 130 | creep:crept 131 | weave:woven 132 | will:willed 133 | sunburn:sunburned 134 | influence:influenced 135 | protect:protected 136 | express:expressed 137 | build:built 138 | quit:quit 139 | clear:cleared 140 | thank:thanked 141 | clean:cleaned 142 | withdraw:withdrawn 143 | listen:listened 144 | melt:melted 145 | overhear:overheard 146 | stay:stayed 147 | abide:abided 148 | account:accounted 149 | force:forced 150 | cut:cut 151 | settle:settled 152 | design:designed 153 | hike:hiked 154 | produce:produced 155 | realize:realized 156 | apply:applied 157 | reveal:revealed 158 | cause:caused 159 | last:lasted 160 | count:counted 161 | save:saved 162 | study:studied 163 | love:loved 164 | shave:shaven 165 | hit:hit 166 | tear:torn 167 | wonder:wondered 168 | train:trained 169 | spell:spelled 170 | live:lived 171 | fling:flung 172 | consist:consisted 173 | damage:damaged 174 | spill:spilled 175 | arrive:arrived 176 | dress:dressed 177 | bet:bet 178 | release:released 179 | stick:stuck 180 | improve:improved 181 | believe:believed 182 | add:added 183 | affect:affected 184 | rise:risen 185 | read:read 186 | develop:developed 187 | preset:preset 188 | receive:received 189 | bid:bid 190 | extend:extended 191 | play:played 192 | dive:dived 193 | offer:offered 194 | know:known 195 | spend:spent 196 | pass:passed 197 | lose:lost 198 | hurt:hurt 199 | plan:planed 200 | rid:rid 201 | bleed:bled 202 | shear:shorn 203 | clothe:clothed 204 | spread:spread 205 | act:acted 206 | intend:intended 207 | worry:worried 208 | shout:shouted 209 | found:founded 210 | understand:understood 211 | appear:appeared 212 | handle:handled 213 | fight:fought 214 | misunderstand:misunderstood 215 | manage:managed 216 | hide:hidden 217 | drink:drunk 218 | hunt:hunted 219 | inlay:inlaid 220 | happen:happened 221 | place:placed 222 | overtake:overtaken 223 | copy:copied 224 | serve:served 225 | turn:turned 226 | cook:cooked 227 | prove:proven 228 | laugh:laughed 229 | vote:voted 230 | suggest:suggested 231 | sublet:sublet 232 | cling:clung 233 | mow:mown 234 | swear:sworn 235 | split:split 236 | complain:complained 237 | own:owned 238 | try:tried 239 | sweat:sweat 240 | climb:climbed 241 | face:faced 242 | press:pressed 243 | sort:sorted 244 | give:given 245 | use:used 246 | run:run 247 | spring:sprung 248 | strike:struck 249 | survive:survived 250 | reply:replied 251 | pick:picked 252 | slide:slid 253 | publish:published 254 | foresee:foreseen 255 | notice:noticed 256 | come:come 257 | slay:slain 258 | divide:divided 259 | seem:seemed 260 | admit:admitted 261 | seek:sought 262 | replace:replaced 263 | weep:wept 264 | remain:remained 265 | string:strung 266 | confirm:confirmed 267 | agree:agreed 268 | reflect:reflected 269 | keep:kept 270 | afford:afforded 271 | arise:arisen 272 | relate:related 273 | kick:kicked 274 | bust:bust 275 | provide:provided 276 | pull:pulled 277 | become:become 278 | bend:bent 279 | perform:performed 280 | commit:committed 281 | care:cared 282 | knit:knitted 283 | dare:dared 284 | demand:demanded 285 | follow:followed 286 | control:controlled 287 | imagine:imagined 288 | cost:cost 289 | sweep:swept 290 | reduce:reduced 291 | finish:finished 292 | inform:informed 293 | input:inputted 294 | encourage:encouraged 295 | cast:cast 296 | sound:sounded 297 | require:required 298 | burn:burned 299 | result:resulted 300 | can:caned 301 | catch:caught 302 | repeat:repeated 303 | hang:hung 304 | withhold:withheld 305 | destroy:destroyed 306 | reach:reached 307 | shut:shut 308 | complete:completed 309 | deny:denied 310 | supply:supplied 311 | feed:fed 312 | thrust:thrust 313 | feel:felt 314 | separate:separated 315 | argue:argued 316 | forecast:forecasted 317 | promise:promised 318 | cry:cried 319 | charge:charged 320 | grow:grown 321 | increase:increased 322 | claim:claimed 323 | wear:worn 324 | examine:examined 325 | test:tested 326 | accept:accepted 327 | shake:shaken 328 | shine:shone 329 | bring:brought 330 | draw:drawn 331 | expect:expected 332 | avoid:avoided 333 | open:opened 334 | cover:covered 335 | fail:failed 336 | behold:beheld 337 | drive:driven 338 | undergo:undergone 339 | describe:described 340 | choose:chosen 341 | wind:wound 342 | form:formed 343 | compare:compared 344 | prevent:prevented 345 | prepare:prepared 346 | like:liked 347 | stride:stridden 348 | create:created 349 | present:presented 350 | record:recorded 351 | obtain:obtained 352 | start:started 353 | say:said 354 | shrink:shrunk 355 | saw:sawed 356 | ask:asked 357 | dance:danced 358 | cross:crossed 359 | smell:smelled 360 | kneel:knelt 361 | put:put 362 | remove:removed 363 | link:linked 364 | contact:contacted 365 | overdraw:overdrawn 366 | spit:spat 367 | upset:upset 368 | sell:sold 369 | spin:spun 370 | mind:minded 371 | want:wanted 372 | steal:stolen 373 | let:let 374 | return:returned 375 | speak:spoken 376 | awake:awoken 377 | contribute:contributed 378 | slit:slit 379 | arrange:arranged 380 | point:pointed 381 | strive:striven 382 | fall:fallen 383 | attack:attacked 384 | shop:shopped 385 | hate:hated 386 | send:sent 387 | belong:belonged 388 | buy:bought 389 | wish:wished 390 | introduce:introduced 391 | enable:enabled 392 | kill:killed 393 | show:shown 394 | travel:traveled 395 | hear:heard 396 | swell:swollen 397 | head:headed 398 | swing:swung 399 | surf:surfed 400 | shoe:shod 401 | work:worked 402 | succeed:succeeded 403 | dream:dreamed 404 | discover:discovered 405 | mark:marked 406 | sink:sunk 407 | strip:stripped 408 | tread:trodden 409 | jump:jumped 410 | fly:flown 411 | contain:contained 412 | sing:sung 413 | rest:rested 414 | treat:treated 415 | ride:ridden 416 | warn:warned 417 | decide:decided 418 | call:called 419 | stop:stopped 420 | interlay:interlaid 421 | allow:allowed 422 | have:had 423 | state:stated 424 | achieve:achieved 425 | undertake:undertaken 426 | push:pushed 427 | fit:fitted 428 | share:shared 429 | order:ordered 430 | die:died 431 | wash:washed 432 | mean:meant 433 | dig:dug 434 | exist:existed 435 | blow:blown 436 | find:found 437 | invite:invited 438 | mistake:mistaken 439 | check:checked 440 | matter:mattered 441 | fill:filled 442 | fold:folded 443 | teach:taught 444 | begin:begun 445 | continue:continued 446 | clap:clapped 447 | disappear:disappeared 448 | miss:missed 449 | lie:lain 450 | occur:occurred 451 | -------------------------------------------------------------------------------- /bots/alice2/maps/be2is.txt: -------------------------------------------------------------------------------- 1 | need:needs 2 | fish:fishes 3 | tend:tends 4 | visit:visits 5 | wait:waits 6 | knock:knocks 7 | handwrite:handwrites 8 | roll:rolls 9 | refer:refers 10 | forgive:forgives 11 | answer:answers 12 | regard:regards 13 | sleep:sleeps 14 | meet:meets 15 | smoke:smokes 16 | withstand:withstands 17 | touch:touches 18 | bite:bites 19 | aim:aims 20 | discuss:discusses 21 | eat:eats 22 | explain:explains 23 | forbid:forbids 24 | go:goes 25 | vex:vexes 26 | raise:raises 27 | indicate:indicates 28 | grind:grinds 29 | leave:leaves 30 | recognize:recognizes 31 | consider:considers 32 | write:writes 33 | mention:mentions 34 | do:does 35 | tell:tells 36 | wet:wets 37 | frostbite:frostbites 38 | fasten:fastens 39 | look:looks 40 | bear:bears 41 | beat:beats 42 | wed:weds 43 | suffer:suffers 44 | join:joins 45 | enjoy:enjoys 46 | gain:gains 47 | represent:represents 48 | sit:sits 49 | base:bases 50 | breed:breeds 51 | dwell:dwells 52 | change:changes 53 | drop:drops 54 | broadcast:broadcasts 55 | lead:leads 56 | close:closes 57 | deal:deals 58 | light:lights 59 | be:is 60 | think:thinks 61 | stink:stinks 62 | get:gets 63 | watch:watches 64 | sting:stings 65 | learn:learns 66 | burst:bursts 67 | wring:wrings 68 | mislead:misleads 69 | lean:leans 70 | refuse:refuses 71 | thrive:thrives 72 | prefer:prefers 73 | walk:walks 74 | make:makes 75 | lend:lends 76 | leap:leaps 77 | collect:collects 78 | hope:hopes 79 | remember:remembers 80 | sew:sews 81 | connect:connects 82 | measure:measures 83 | set:sets 84 | throw:throws 85 | wake:wakes 86 | swim:swims 87 | spoil:spoils 88 | pay:pays 89 | experience:experiences 90 | talk:talks 91 | speed:speeds 92 | lay:lays 93 | depend:depends 94 | win:wins 95 | shed:sheds 96 | foretell:foretells 97 | see:sees 98 | stand:stands 99 | freeze:freezes 100 | take:takes 101 | suit:suits 102 | forget:forgets 103 | bind:binds 104 | sneak:sneaks 105 | concern:concerns 106 | forsake:forsakes 107 | involve:involves 108 | break:breaks 109 | help:helps 110 | correct:corrects 111 | deliver:delivers 112 | report:reports 113 | smile:smiles 114 | carry:carries 115 | move:moves 116 | alight:alights 117 | limit:limits 118 | ring:rings 119 | sow:sows 120 | support:supports 121 | identify:identifies 122 | soothsay:soothsays 123 | hold:holds 124 | include:includes 125 | flee:flees 126 | sling:slings 127 | suppose:supposes 128 | slink:slinks 129 | shoot:shoots 130 | creep:creeps 131 | weave:weaves 132 | will:wills 133 | sunburn:sunburns 134 | influence:influences 135 | protect:protects 136 | express:expresses 137 | build:builds 138 | quit:quits 139 | clear:clears 140 | thank:thanks 141 | clean:cleans 142 | withdraw:withdraws 143 | listen:listens 144 | melt:melts 145 | overhear:overhears 146 | stay:stays 147 | abide:abides 148 | account:accounts 149 | force:forces 150 | cut:cuts 151 | settle:settles 152 | design:designs 153 | hike:hikes 154 | produce:produces 155 | realize:realizes 156 | apply:applies 157 | reveal:reveals 158 | cause:causes 159 | last:lasts 160 | count:counts 161 | save:saves 162 | study:studies 163 | love:loves 164 | shave:shaves 165 | hit:hits 166 | tear:tears 167 | wonder:wonders 168 | train:trains 169 | spell:spells 170 | live:lives 171 | fling:flings 172 | consist:consists 173 | damage:damages 174 | spill:spills 175 | arrive:arrives 176 | dress:dresses 177 | bet:bets 178 | release:releases 179 | stick:sticks 180 | improve:improves 181 | believe:believes 182 | add:adds 183 | affect:affects 184 | rise:rises 185 | read:reads 186 | develop:develops 187 | preset:presets 188 | receive:receives 189 | bid:bids 190 | extend:extends 191 | play:plays 192 | dive:dives 193 | offer:offers 194 | know:knows 195 | spend:spends 196 | pass:passes 197 | lose:loses 198 | hurt:hurts 199 | plan:plans 200 | rid:rids 201 | bleed:bleeds 202 | shear:shears 203 | clothe:clothes 204 | spread:spreads 205 | act:acts 206 | intend:intends 207 | worry:worries 208 | shout:shouts 209 | found:founds 210 | understand:understands 211 | appear:appears 212 | handle:handles 213 | fight:fights 214 | misunderstand:misunderstands 215 | manage:manages 216 | hide:hides 217 | drink:drinks 218 | hunt:hunts 219 | inlay:inlays 220 | happen:happens 221 | place:places 222 | overtake:overtakes 223 | copy:copies 224 | serve:serves 225 | turn:turns 226 | cook:cooks 227 | prove:proves 228 | laugh:laughs 229 | vote:votes 230 | suggest:suggests 231 | sublet:sublets 232 | cling:clings 233 | mow:mows 234 | swear:swears 235 | split:splits 236 | complain:complains 237 | own:owns 238 | try:tries 239 | sweat:sweats 240 | climb:climbs 241 | face:faces 242 | press:presses 243 | sort:sorts 244 | give:gives 245 | use:uses 246 | run:runs 247 | spring:springs 248 | strike:strikes 249 | survive:survives 250 | reply:replies 251 | pick:picks 252 | slide:slides 253 | publish:publishes 254 | foresee:foresees 255 | notice:notices 256 | come:comes 257 | slay:slays 258 | divide:divides 259 | seem:seems 260 | admit:admits 261 | seek:seeks 262 | replace:replaces 263 | weep:weeps 264 | remain:remains 265 | string:strings 266 | confirm:confirms 267 | agree:agrees 268 | reflect:reflects 269 | keep:keeps 270 | afford:affords 271 | arise:arises 272 | relate:relates 273 | kick:kicks 274 | bust:busts 275 | provide:provides 276 | pull:pulls 277 | become:becomes 278 | bend:bends 279 | perform:performs 280 | commit:commits 281 | care:cares 282 | knit:knits 283 | dare:dares 284 | demand:demands 285 | follow:follows 286 | control:controls 287 | imagine:imagines 288 | cost:costs 289 | sweep:sweeps 290 | reduce:reduces 291 | finish:finishes 292 | inform:informs 293 | input:inputs 294 | encourage:encourages 295 | cast:casts 296 | sound:sounds 297 | require:requires 298 | burn:burns 299 | result:results 300 | can:cans 301 | catch:catches 302 | repeat:repeats 303 | hang:hangs 304 | withhold:withholds 305 | destroy:destroys 306 | reach:reaches 307 | shut:shuts 308 | complete:completes 309 | deny:denies 310 | supply:supplies 311 | feed:feeds 312 | thrust:thrusts 313 | feel:feels 314 | separate:separates 315 | argue:argues 316 | forecast:forecasts 317 | promise:promises 318 | cry:cries 319 | charge:charges 320 | grow:grows 321 | increase:increases 322 | claim:claims 323 | wear:wears 324 | examine:examines 325 | test:tests 326 | accept:accepts 327 | shake:shakes 328 | shine:shines 329 | bring:brings 330 | draw:draws 331 | expect:expects 332 | avoid:avoids 333 | open:opens 334 | cover:covers 335 | fail:fails 336 | behold:beholds 337 | drive:drives 338 | undergo:undergoes 339 | describe:describes 340 | choose:chooses 341 | wind:winds 342 | form:forms 343 | compare:compares 344 | prevent:prevents 345 | prepare:prepares 346 | like:likes 347 | stride:strides 348 | create:creates 349 | present:presents 350 | record:records 351 | obtain:obtains 352 | start:starts 353 | say:says 354 | shrink:shrinks 355 | saw:saws 356 | ask:asks 357 | dance:dances 358 | cross:crosses 359 | smell:smells 360 | kneel:kneels 361 | put:puts 362 | remove:removes 363 | link:links 364 | contact:contacts 365 | overdraw:overdraws 366 | spit:spits 367 | upset:upsets 368 | sell:sells 369 | spin:spins 370 | mind:minds 371 | want:wants 372 | steal:steals 373 | let:lets 374 | return:returns 375 | speak:speaks 376 | awake:awakes 377 | contribute:contributes 378 | slit:slits 379 | arrange:arranges 380 | point:points 381 | strive:strives 382 | fall:falls 383 | attack:attacks 384 | shop:shops 385 | hate:hates 386 | send:sends 387 | belong:belongs 388 | buy:buys 389 | wish:wishes 390 | introduce:introduces 391 | enable:enables 392 | kill:kills 393 | show:shows 394 | travel:travels 395 | hear:hears 396 | swell:swells 397 | head:heads 398 | swing:swings 399 | surf:surfs 400 | shoe:shoes 401 | work:works 402 | succeed:succeeds 403 | dream:dreams 404 | discover:discovers 405 | mark:marks 406 | sink:sinks 407 | strip:strips 408 | tread:treads 409 | jump:jumps 410 | fly:flies 411 | contain:contains 412 | sing:sings 413 | rest:rests 414 | treat:treats 415 | ride:rides 416 | warn:warns 417 | decide:decides 418 | call:calls 419 | stop:stops 420 | interlay:interlays 421 | allow:allows 422 | have:has 423 | state:states 424 | achieve:achieves 425 | undertake:undertakes 426 | push:pushes 427 | fit:fits 428 | share:shares 429 | order:orders 430 | die:dies 431 | wash:washes 432 | mean:means 433 | dig:digs 434 | exist:exists 435 | blow:blows 436 | find:finds 437 | invite:invites 438 | mistake:mistakes 439 | check:checks 440 | matter:matters 441 | fill:fills 442 | fold:folds 443 | teach:teaches 444 | begin:begins 445 | continue:continues 446 | clap:claps 447 | disappear:disappears 448 | miss:misses 449 | lie:lies 450 | occur:occurs 451 | -------------------------------------------------------------------------------- /bots/alice2/maps/be2was.txt: -------------------------------------------------------------------------------- 1 | need:needed 2 | fish:fished 3 | tend:tended 4 | visit:visited 5 | wait:waited 6 | knock:knocked 7 | handwrite:handwrote 8 | roll:rolled 9 | refer:referred 10 | forgive:forgave 11 | answer:answered 12 | regard:regarded 13 | sleep:slept 14 | meet:met 15 | smoke:smoked 16 | withstand:withstood 17 | touch:touched 18 | bite:bit 19 | aim:aimed 20 | discuss:discussed 21 | eat:ate 22 | explain:explained 23 | forbid:forbade 24 | go:went 25 | vex:vexed 26 | raise:raised 27 | indicate:indicated 28 | grind:ground 29 | leave:left 30 | recognize:recognized 31 | consider:considered 32 | write:wrote 33 | mention:mentioned 34 | do:did 35 | tell:told 36 | wet:wet 37 | frostbite:frostbit 38 | fasten:fastened 39 | look:looked 40 | bear:bore 41 | beat:beat 42 | wed:wed 43 | suffer:suffered 44 | join:joined 45 | enjoy:enjoyed 46 | gain:gained 47 | represent:represented 48 | sit:sat 49 | base:based 50 | breed:bred 51 | dwell:dwelt 52 | change:changed 53 | drop:dropped 54 | broadcast:broadcasted 55 | lead:led 56 | close:closed 57 | deal:dealt 58 | light:lit 59 | be:was 60 | think:thought 61 | stink:stank 62 | get:got 63 | watch:watched 64 | sting:stung 65 | learn:learned 66 | burst:burst 67 | wring:wrung 68 | mislead:misled 69 | lean:leaned 70 | refuse:refused 71 | thrive:thrived 72 | prefer:preferred 73 | walk:walked 74 | make:made 75 | lend:lent 76 | leap:leapt 77 | collect:collected 78 | hope:hoped 79 | remember:remembered 80 | sew:sewed 81 | connect:connected 82 | measure:measured 83 | set:set 84 | throw:threw 85 | wake:woke 86 | swim:swam 87 | spoil:spoiled 88 | pay:paid 89 | experience:experienced 90 | talk:talked 91 | speed:sped 92 | lay:laid 93 | depend:depended 94 | win:won 95 | shed:shed 96 | foretell:foretold 97 | see:saw 98 | stand:stood 99 | freeze:froze 100 | take:took 101 | suit:suited 102 | forget:forgot 103 | bind:bound 104 | sneak:snuck 105 | concern:concerned 106 | forsake:forsook 107 | involve:involved 108 | break:broke 109 | help:helped 110 | correct:corrected 111 | deliver:delivered 112 | report:reported 113 | smile:smiled 114 | carry:carried 115 | move:moved 116 | alight:alighted 117 | limit:limited 118 | ring:rang 119 | sow:sowed 120 | support:supported 121 | identify:identified 122 | soothsay:soothsaid 123 | hold:held 124 | include:included 125 | flee:fled 126 | sling:slung 127 | suppose:supposed 128 | slink:slunk 129 | shoot:shot 130 | creep:crept 131 | weave:wove 132 | will:willed 133 | sunburn:sunburned 134 | influence:influenced 135 | protect:protected 136 | express:expressed 137 | build:built 138 | quit:quit 139 | clear:cleared 140 | thank:thanked 141 | clean:cleaned 142 | withdraw:withdrew 143 | listen:listened 144 | melt:melted 145 | overhear:overheard 146 | stay:stayed 147 | abide:abided 148 | account:accounted 149 | force:forced 150 | cut:cut 151 | settle:settled 152 | design:designed 153 | hike:hiked 154 | produce:produced 155 | realize:realized 156 | apply:applied 157 | reveal:revealed 158 | cause:caused 159 | last:lasted 160 | count:counted 161 | save:saved 162 | study:studied 163 | love:loved 164 | shave:shaved 165 | hit:hit 166 | tear:tore 167 | wonder:wondered 168 | train:trained 169 | spell:spelled 170 | live:lived 171 | fling:flung 172 | consist:consisted 173 | damage:damaged 174 | spill:spilled 175 | arrive:arrived 176 | dress:dressed 177 | bet:bet 178 | release:released 179 | stick:stuck 180 | improve:improved 181 | believe:believed 182 | add:added 183 | affect:affected 184 | rise:rose 185 | read:read 186 | develop:developed 187 | preset:preset 188 | receive:received 189 | bid:bid 190 | extend:extended 191 | play:played 192 | dive:dove 193 | offer:offered 194 | know:knew 195 | spend:spent 196 | pass:passed 197 | lose:lost 198 | hurt:hurt 199 | plan:planed 200 | rid:ridded 201 | bleed:bled 202 | shear:sheared 203 | clothe:clothed 204 | spread:spread 205 | act:acted 206 | intend:intended 207 | worry:worried 208 | shout:shouted 209 | found:founded 210 | understand:understood 211 | appear:appeared 212 | handle:handled 213 | fight:fought 214 | misunderstand:misunderstood 215 | manage:managed 216 | hide:hid 217 | drink:drank 218 | hunt:hunted 219 | inlay:inlaid 220 | happen:happened 221 | place:placed 222 | overtake:overtook 223 | copy:copied 224 | serve:served 225 | turn:turned 226 | cook:cooked 227 | prove:proved 228 | laugh:laughed 229 | vote:voted 230 | suggest:suggested 231 | sublet:sublet 232 | cling:clung 233 | mow:mowed 234 | swear:swore 235 | split:split 236 | complain:complained 237 | own:owned 238 | try:tried 239 | sweat:sweat 240 | climb:climbed 241 | face:faced 242 | press:pressed 243 | sort:sorted 244 | give:gave 245 | use:used 246 | run:ran 247 | spring:sprang 248 | strike:struck 249 | survive:survived 250 | reply:replied 251 | pick:picked 252 | slide:slid 253 | publish:published 254 | foresee:foresaw 255 | notice:noticed 256 | come:came 257 | slay:slew 258 | divide:divided 259 | seem:seemed 260 | admit:admitted 261 | seek:sought 262 | replace:replaced 263 | weep:wept 264 | remain:remained 265 | string:strung 266 | confirm:confirmed 267 | agree:agreed 268 | reflect:reflected 269 | keep:kept 270 | afford:afforded 271 | arise:arose 272 | relate:related 273 | kick:kicked 274 | bust:bust 275 | provide:provided 276 | pull:pulled 277 | become:became 278 | bend:bent 279 | perform:performed 280 | commit:committed 281 | care:cared 282 | knit:knitted 283 | dare:dared 284 | demand:demanded 285 | follow:followed 286 | control:controlled 287 | imagine:imagined 288 | cost:cost 289 | sweep:swept 290 | reduce:reduced 291 | finish:finished 292 | inform:informed 293 | input:inputted 294 | encourage:encouraged 295 | cast:cast 296 | sound:sounded 297 | require:required 298 | burn:burned 299 | result:resulted 300 | can:caned 301 | catch:caught 302 | repeat:repeated 303 | hang:hanged 304 | withhold:withheld 305 | destroy:destroyed 306 | reach:reached 307 | shut:shut 308 | complete:completed 309 | deny:denied 310 | supply:supplied 311 | feed:fed 312 | thrust:thrust 313 | feel:felt 314 | separate:separated 315 | argue:argued 316 | forecast:forecasted 317 | promise:promised 318 | cry:cried 319 | charge:charged 320 | grow:grew 321 | increase:increased 322 | claim:claimed 323 | wear:wore 324 | examine:examined 325 | test:tested 326 | accept:accepted 327 | shake:shook 328 | shine:shone 329 | bring:brought 330 | draw:drew 331 | expect:expected 332 | avoid:avoided 333 | open:opened 334 | cover:covered 335 | fail:failed 336 | behold:beheld 337 | drive:drove 338 | undergo:underwent 339 | describe:described 340 | choose:chose 341 | wind:wound 342 | form:formed 343 | compare:compared 344 | prevent:prevented 345 | prepare:prepared 346 | like:liked 347 | stride:strode 348 | create:created 349 | present:presented 350 | record:recorded 351 | obtain:obtained 352 | start:started 353 | say:said 354 | shrink:shrank 355 | saw:sawed 356 | ask:asked 357 | dance:danced 358 | cross:crossed 359 | smell:smelled 360 | kneel:knelt 361 | put:put 362 | remove:removed 363 | link:linked 364 | contact:contacted 365 | overdraw:overdrew 366 | spit:spat 367 | upset:upset 368 | sell:sold 369 | spin:spun 370 | mind:minded 371 | want:wanted 372 | steal:stole 373 | let:let 374 | return:returned 375 | speak:spoke 376 | awake:awoke 377 | contribute:contributed 378 | slit:slit 379 | arrange:arranged 380 | point:pointed 381 | strive:strove 382 | fall:fell 383 | attack:attacked 384 | shop:shopped 385 | hate:hated 386 | send:sent 387 | belong:belonged 388 | buy:bought 389 | wish:wished 390 | introduce:introduced 391 | enable:enabled 392 | kill:killed 393 | show:showed 394 | travel:traveled 395 | hear:heard 396 | swell:swelled 397 | head:headed 398 | swing:swung 399 | surf:surfed 400 | shoe:shod 401 | work:worked 402 | succeed:succeeded 403 | dream:dreamed 404 | discover:discovered 405 | mark:marked 406 | sink:sank 407 | strip:stripped 408 | tread:trod 409 | jump:jumped 410 | fly:flew 411 | contain:contained 412 | sing:sang 413 | rest:rested 414 | treat:treated 415 | ride:rode 416 | warn:warned 417 | decide:decided 418 | call:called 419 | stop:stopped 420 | interlay:interlaid 421 | allow:allowed 422 | have:had 423 | state:stated 424 | achieve:achieved 425 | undertake:undertook 426 | push:pushed 427 | fit:fitted 428 | share:shared 429 | order:ordered 430 | die:died 431 | wash:washed 432 | mean:meant 433 | dig:dug 434 | exist:existed 435 | blow:blew 436 | find:found 437 | invite:invited 438 | mistake:mistook 439 | check:checked 440 | matter:mattered 441 | fill:filled 442 | fold:folded 443 | teach:taught 444 | begin:began 445 | continue:continued 446 | clap:clapped 447 | disappear:disappeared 448 | miss:missed 449 | lie:lay 450 | occur:occurred 451 | -------------------------------------------------------------------------------- /bots/alice2/maps/been2be.txt: -------------------------------------------------------------------------------- 1 | said:say 2 | developed:develop 3 | explained:explain 4 | smoked:smoke 5 | continued:continue 6 | stridden:stride 7 | answered:answer 8 | joined:join 9 | compared:compare 10 | created:create 11 | woken:wake 12 | regarded:regard 13 | awoken:awake 14 | minded:mind 15 | bought:buy 16 | opened:open 17 | asked:ask 18 | told:tell 19 | promised:promise 20 | shown:show 21 | cleaned:clean 22 | clung:cling 23 | cleared:clear 24 | fed:feed 25 | washed:wash 26 | arranged:arrange 27 | soothsaid:soothsay 28 | existed:exist 29 | bitten:bite 30 | snuck:sneak 31 | mistaken:mistake 32 | broadcasted:broadcast 33 | sped:speed 34 | warned:warn 35 | made:make 36 | traveled:travel 37 | visited:visit 38 | arisen:arise 39 | concerned:concern 40 | examined:examine 41 | smiled:smile 42 | acted:act 43 | left:leave 44 | lived:live 45 | wet:wet 46 | prevented:prevent 47 | demanded:demand 48 | stood:stand 49 | enjoyed:enjoy 50 | sunk:sink 51 | sung:sing 52 | wed:wed 53 | forgiven:forgive 54 | talked:talk 55 | sounded:sound 56 | introduced:introduce 57 | thanked:thank 58 | returned:return 59 | bound:bind 60 | strung:string 61 | planed:plan 62 | proven:prove 63 | revealed:reveal 64 | dwelt:dwell 65 | spoken:speak 66 | founded:found 67 | consisted:consist 68 | overtaken:overtake 69 | kicked:kick 70 | lasted:last 71 | had:have 72 | forced:force 73 | spat:spit 74 | burst:burst 75 | lent:lend 76 | replaced:replace 77 | preferred:prefer 78 | decided:decide 79 | involved:involve 80 | gotten:get 81 | played:play 82 | laughed:laugh 83 | misunderstood:misunderstand 84 | smelled:smell 85 | obtained:obtain 86 | wondered:wonder 87 | set:set 88 | forecasted:forecast 89 | tried:try 90 | chosen:choose 91 | frozen:freeze 92 | tested:test 93 | released:release 94 | met:meet 95 | headed:head 96 | knelt:kneel 97 | contributed:contribute 98 | knocked:knock 99 | touched:touch 100 | formed:form 101 | trained:train 102 | appeared:appear 103 | reached:reach 104 | leapt:leap 105 | swung:swing 106 | shaven:shave 107 | finished:finish 108 | torn:tear 109 | informed:inform 110 | dived:dive 111 | moved:move 112 | shed:shed 113 | expected:expect 114 | damaged:damage 115 | frostbitten:frostbite 116 | carried:carry 117 | forgotten:forget 118 | rested:rest 119 | improved:improve 120 | confirmed:confirm 121 | given:give 122 | blown:blow 123 | influenced:influence 124 | shrunk:shrink 125 | reported:report 126 | done:do 127 | thrived:thrive 128 | measured:measure 129 | pointed:point 130 | imagined:imagine 131 | managed:manage 132 | fled:flee 133 | mown:mow 134 | committed:commit 135 | hoped:hope 136 | experienced:experience 137 | performed:perform 138 | recorded:record 139 | crossed:cross 140 | voted:vote 141 | sworn:swear 142 | raised:raise 143 | thought:think 144 | occurred:occur 145 | quit:quit 146 | followed:follow 147 | wound:wind 148 | gained:gain 149 | heard:hear 150 | destroyed:destroy 151 | supported:support 152 | closed:close 153 | shorn:shear 154 | published:publish 155 | built:build 156 | aimed:aim 157 | kept:keep 158 | completed:complete 159 | held:hold 160 | collected:collect 161 | waited:wait 162 | denied:deny 163 | sewn:sew 164 | begun:begin 165 | worried:worry 166 | cut:cut 167 | described:describe 168 | stated:state 169 | handwritten:handwrite 170 | flung:fling 171 | cooked:cook 172 | hunted:hunt 173 | caused:cause 174 | changed:change 175 | related:relate 176 | contacted:contact 177 | sunburned:sunburn 178 | hit:hit 179 | hiked:hike 180 | required:require 181 | copied:copy 182 | liked:like 183 | controlled:control 184 | meant:mean 185 | owned:own 186 | studied:study 187 | settled:settle 188 | swum:swim 189 | bet:bet 190 | called:call 191 | included:include 192 | recognized:recognize 193 | lost:lose 194 | listened:listen 195 | suffered:suffer 196 | considered:consider 197 | sprung:spring 198 | swept:sweep 199 | achieved:achieve 200 | slung:sling 201 | sown:sow 202 | clothed:clothe 203 | forsaken:forsake 204 | driven:drive 205 | seemed:seem 206 | withstood:withstand 207 | read:read 208 | treated:treat 209 | stuck:stick 210 | preset:preset 211 | spent:spend 212 | bid:bid 213 | slunk:slink 214 | added:add 215 | rolled:roll 216 | loved:love 217 | tended:tend 218 | taught:teach 219 | fitted:fit 220 | hurt:hurt 221 | felt:feel 222 | looked:look 223 | rid:rid 224 | fought:fight 225 | hidden:hide 226 | suited:suit 227 | removed:remove 228 | discussed:discuss 229 | spread:spread 230 | remained:remain 231 | forbidden:forbid 232 | found:find 233 | limited:limit 234 | passed:pass 235 | rung:ring 236 | received:receive 237 | disappeared:disappear 238 | hung:hang 239 | danced:dance 240 | reduced:reduce 241 | bled:bleed 242 | sublet:sublet 243 | admitted:admit 244 | indicated:indicate 245 | alighted:alight 246 | ridden:ride 247 | dropped:drop 248 | split:split 249 | referred:refer 250 | sweat:sweat 251 | realized:realize 252 | born:bear 253 | offered:offer 254 | slain:slay 255 | killed:kill 256 | stayed:stay 257 | drunk:drink 258 | foreseen:foresee 259 | sought:seek 260 | brought:bring 261 | run:run 262 | noticed:notice 263 | risen:rise 264 | designed:design 265 | worked:work 266 | written:write 267 | complained:complain 268 | accounted:account 269 | caught:catch 270 | crept:creep 271 | dressed:dress 272 | come:come 273 | suggested:suggest 274 | supplied:supply 275 | seen:see 276 | fastened:fasten 277 | produced:produce 278 | repeated:repeat 279 | picked:pick 280 | lain:lie 281 | fished:fish 282 | stripped:strip 283 | laid:lay 284 | checked:check 285 | invited:invite 286 | discovered:discover 287 | bust:bust 288 | withdrawn:withdraw 289 | corrected:correct 290 | knitted:knit 291 | stunk:stink 292 | reflected:reflect 293 | become:become 294 | supposed:suppose 295 | climbed:climb 296 | attacked:attack 297 | served:serve 298 | undertaken:undertake 299 | identified:identify 300 | handled:handle 301 | affected:affect 302 | faced:face 303 | understood:understand 304 | fallen:fall 305 | taken:take 306 | stung:sting 307 | presented:present 308 | shared:share 309 | burned:burn 310 | enabled:enable 311 | agreed:agree 312 | abided:abide 313 | surfed:surf 314 | trodden:tread 315 | saved:save 316 | gone:go 317 | shone:shine 318 | intended:intend 319 | cost:cost 320 | charged:charge 321 | overdrawn:overdraw 322 | spun:spin 323 | clapped:clap 324 | spelled:spell 325 | cast:cast 326 | argued:argue 327 | survived:survive 328 | dug:dig 329 | succeeded:succeed 330 | inputted:input 331 | struck:strike 332 | shut:shut 333 | replied:reply 334 | placed:place 335 | drawn:draw 336 | thrust:thrust 337 | striven:strive 338 | delivered:deliver 339 | bred:breed 340 | sorted:sort 341 | resulted:result 342 | extended:extend 343 | helped:help 344 | shopped:shop 345 | mattered:matter 346 | avoided:avoid 347 | needed:need 348 | counted:count 349 | ordered:order 350 | beaten:beat 351 | learned:learn 352 | provided:provide 353 | interlaid:interlay 354 | leaned:lean 355 | bent:bend 356 | vexed:vex 357 | filled:fill 358 | spoiled:spoil 359 | accepted:accept 360 | represented:represent 361 | slept:sleep 362 | arrived:arrive 363 | refused:refuse 364 | slid:slide 365 | caned:can 366 | sold:sell 367 | wrung:wring 368 | flown:fly 369 | happened:happen 370 | stopped:stop 371 | sat:sit 372 | grown:grow 373 | wished:wish 374 | divided:divide 375 | cried:cry 376 | undergone:undergo 377 | put:put 378 | pressed:press 379 | encouraged:encourage 380 | beheld:behold 381 | dreamed:dream 382 | failed:fail 383 | ground:grind 384 | separated:separate 385 | mentioned:mention 386 | wept:weep 387 | dared:dare 388 | wanted:want 389 | watched:watch 390 | willed:will 391 | believed:believe 392 | paid:pay 393 | upset:upset 394 | eaten:eat 395 | shouted:shout 396 | covered:cover 397 | stolen:steal 398 | foretold:foretell 399 | overheard:overhear 400 | afforded:afford 401 | walked:walk 402 | let:let 403 | woven:weave 404 | slit:slit 405 | inlaid:inlay 406 | broken:break 407 | led:lead 408 | shaken:shake 409 | jumped:jump 410 | folded:fold 411 | based:base 412 | allowed:allow 413 | belonged:belong 414 | hated:hate 415 | connected:connect 416 | spilled:spill 417 | used:use 418 | shot:shoot 419 | been:be 420 | cared:care 421 | sent:send 422 | turned:turn 423 | sawed:saw 424 | died:die 425 | shod:shoe 426 | linked:link 427 | marked:mark 428 | thrown:throw 429 | worn:wear 430 | expressed:express 431 | swollen:swell 432 | depended:depend 433 | withheld:withhold 434 | known:know 435 | prepared:prepare 436 | increased:increase 437 | misled:mislead 438 | contained:contain 439 | protected:protect 440 | won:win 441 | melted:melt 442 | pulled:pull 443 | lit:light 444 | dealt:deal 445 | applied:apply 446 | remembered:remember 447 | pushed:push 448 | claimed:claim 449 | started:start 450 | missed:miss 451 | -------------------------------------------------------------------------------- /bots/alice2/maps/er2est.txt: -------------------------------------------------------------------------------- 1 | taller:tallest 2 | older:oldest 3 | higher:highest 4 | bigger:biggest 5 | faster:fastest 6 | heavier:heaviest 7 | longer:longest 8 | wider:widest 9 | deeper:deepest 10 | brighter:brightest 11 | shorter:shortest 12 | younger:youngest 13 | lower:lowest 14 | smaller:smallest 15 | larger:largest 16 | slower:slowest 17 | lighter:lightest 18 | shorter:shortest 19 | narrower:narrowest 20 | shallower:shallowest 21 | darker:darkest 22 | further:furthest 23 | farther:farthest 24 | closer:closest 25 | -------------------------------------------------------------------------------- /bots/alice2/maps/est2er.txt: -------------------------------------------------------------------------------- 1 | tallest:taller 2 | oldest:older 3 | highest:higher 4 | biggest:bigger 5 | fastest:faster 6 | heaviest:heavier 7 | longest:longer 8 | widest:wider 9 | deepest:deeper 10 | brightest:brighter 11 | shortest:shorter 12 | youngest:younger 13 | lowest:lower 14 | smallest:smaller 15 | largest:larger 16 | slowest:slower 17 | lightest:lighter 18 | shortest:shorter 19 | narrowest:narrower 20 | shallowest:shallower 21 | darkest:darker 22 | -------------------------------------------------------------------------------- /bots/alice2/maps/familiargender.txt: -------------------------------------------------------------------------------- 1 | aunt:F 2 | bestfriend:U 3 | boss:U 4 | boyfriend:M 5 | brother:M 6 | cat:U 7 | daughter:F 8 | dog:U 9 | father:F 10 | friend:U 11 | girlfriend:F 12 | grandfather:F 13 | grandmother:M 14 | husband:M 15 | mother:F 16 | nephew:M 17 | niece:F 18 | sister:F 19 | son:M 20 | teacher:U 21 | uncle:M 22 | wife:F 23 | 24 | -------------------------------------------------------------------------------- /bots/alice2/maps/familiarpredicate.txt: -------------------------------------------------------------------------------- 1 | aunt:aunt 2 | ant:aunt 3 | uncle:uncle 4 | friend:friend 5 | bestfriend:bestfriend 6 | best friend:bestfriend 7 | niece:niece 8 | nephew:nephew 9 | grandmother:grandmother 10 | grandma:grandmother 11 | grandmom:grandmother 12 | mother:mother 13 | ma:mother 14 | mom:mother 15 | momma:mother 16 | mum:mother 17 | mumma:mother 18 | mommy:mother 19 | mummy:mother 20 | grandfather:grandfather 21 | granddad:grandfather 22 | father:father 23 | dad:father 24 | dada:father 25 | daddy:father 26 | husband:husband 27 | hubby:husband 28 | wife:wife 29 | wifey:wife 30 | son:son 31 | daughter:daughter 32 | brother:brother 33 | sister:sister 34 | bro:brother 35 | sis:sister 36 | boyfriend:boyfriend 37 | girlfriend:girlfriend 38 | boy friend:boyfriend 39 | girl friend:girlfriend 40 | teacher:teacher 41 | boss:boss 42 | dog:dog 43 | cat:cat 44 | 45 | -------------------------------------------------------------------------------- /bots/alice2/maps/familiarpronoun.txt: -------------------------------------------------------------------------------- 1 | aunt:she 2 | ant:she 3 | uncle:he 4 | friend:he 5 | bestfriend:he 6 | best friend:he 7 | niece:she 8 | nephew:he 9 | grandmother:she 10 | grandma:she 11 | grandmom:she 12 | mother:she 13 | ma:she 14 | mom:she 15 | momma:she 16 | mum:she 17 | mumma:she 18 | mommy:she 19 | mummy:she 20 | grandfather:he 21 | granddad:he 22 | father:he 23 | dad:he 24 | dada:he 25 | daddy:he 26 | husband:he 27 | hubby:he 28 | wife:she 29 | wifey:she 30 | son:he 31 | daughter:she 32 | brother:he 33 | sister:she 34 | bro:he 35 | sis:she 36 | boyfriend:he 37 | girlfriend:she 38 | boy friend:he 39 | girl friend:she 40 | botmaster:he 41 | boss:she 42 | teacher:he 43 | dog:he 44 | cat:she 45 | 46 | -------------------------------------------------------------------------------- /bots/alice2/maps/gendermap.txt: -------------------------------------------------------------------------------- 1 | man:male 2 | woman:female 3 | male:male 4 | female:female 5 | boy:male 6 | girl:female 7 | XX:female 8 | XY:male 9 | gal:female 10 | guy:male 11 | dude:male 12 | lady:female 13 | chick:female 14 | 15 | -------------------------------------------------------------------------------- /bots/alice2/maps/is2be.txt: -------------------------------------------------------------------------------- 1 | surfs:surf 2 | swings:swing 3 | supports:support 4 | creates:create 5 | affords:afford 6 | thanks:thank 7 | finishes:finish 8 | limits:limit 9 | compares:compare 10 | laughs:laugh 11 | confirms:confirm 12 | discovers:discover 13 | offers:offer 14 | shows:show 15 | digs:dig 16 | hits:hit 17 | misunderstands:misunderstand 18 | smells:smell 19 | promises:promise 20 | sheds:shed 21 | frostbites:frostbite 22 | attacks:attack 23 | smokes:smoke 24 | continues:continue 25 | mistakes:mistake 26 | forgets:forget 27 | lays:lay 28 | examines:examine 29 | arranges:arrange 30 | stops:stop 31 | lasts:last 32 | shouts:shout 33 | forbids:forbid 34 | obtains:obtain 35 | fills:fill 36 | commits:commit 37 | arises:arise 38 | slits:slit 39 | jumps:jump 40 | forgives:forgive 41 | needs:need 42 | prevents:prevent 43 | introduces:introduce 44 | slays:slay 45 | smiles:smile 46 | starts:start 47 | stands:stand 48 | picks:pick 49 | exists:exist 50 | gains:gain 51 | strikes:strike 52 | collects:collect 53 | proves:prove 54 | moves:move 55 | plays:play 56 | has:have 57 | overtakes:overtake 58 | informs:inform 59 | describes:describe 60 | sells:sell 61 | depends:depend 62 | aims:aim 63 | trains:train 64 | strides:stride 65 | involves:involve 66 | claims:claim 67 | replaces:replace 68 | releases:release 69 | begins:begin 70 | belongs:belong 71 | creeps:creep 72 | forces:force 73 | flees:flee 74 | orders:order 75 | talks:talk 76 | wears:wear 77 | spits:spit 78 | flies:fly 79 | does:do 80 | cooks:cook 81 | washes:wash 82 | expects:expect 83 | drinks:drink 84 | melts:melt 85 | meets:meet 86 | fits:fit 87 | lights:light 88 | treats:treat 89 | waits:wait 90 | interlays:interlay 91 | tries:try 92 | prefers:prefer 93 | lends:lend 94 | complains:complain 95 | keeps:keep 96 | dives:dive 97 | spends:spend 98 | contributes:contribute 99 | leaps:leap 100 | shaves:shave 101 | quits:quit 102 | makes:make 103 | touches:touch 104 | breeds:breed 105 | reaches:reach 106 | spreads:spread 107 | blows:blow 108 | visits:visit 109 | manages:manage 110 | inlays:inlay 111 | improves:improve 112 | discusses:discuss 113 | suffers:suffer 114 | influences:influence 115 | crosses:cross 116 | founds:found 117 | destroys:destroy 118 | shops:shop 119 | folds:fold 120 | asks:ask 121 | burns:burn 122 | carries:carry 123 | says:say 124 | consists:consist 125 | connects:connect 126 | mentions:mention 127 | hears:hear 128 | busts:bust 129 | imagines:imagine 130 | delivers:deliver 131 | hopes:hope 132 | wrings:wring 133 | damages:damage 134 | binds:bind 135 | mows:mow 136 | thrives:thrive 137 | bites:bite 138 | pays:pay 139 | steals:steal 140 | counts:count 141 | holds:hold 142 | measures:measure 143 | records:record 144 | winds:wind 145 | speeds:speed 146 | plans:plan 147 | experiences:experience 148 | swears:swear 149 | shears:shear 150 | votes:vote 151 | settles:settle 152 | upsets:upset 153 | closes:close 154 | spills:spill 155 | publishes:publish 156 | completes:complete 157 | walks:walk 158 | tests:test 159 | casts:cast 160 | denies:deny 161 | cuts:cut 162 | saws:saw 163 | sews:sew 164 | grinds:grind 165 | sleeps:sleep 166 | brings:bring 167 | links:link 168 | helps:help 169 | succeeds:succeed 170 | clears:clear 171 | thinks:think 172 | shines:shine 173 | sweats:sweat 174 | worries:worry 175 | sings:sing 176 | follows:follow 177 | disappears:disappear 178 | tends:tend 179 | marks:mark 180 | remains:remain 181 | finds:find 182 | bets:bet 183 | reflects:reflect 184 | contains:contain 185 | hikes:hike 186 | pulls:pull 187 | studies:study 188 | warns:warn 189 | fastens:fasten 190 | looks:look 191 | results:result 192 | wakes:wake 193 | sets:set 194 | writes:write 195 | loves:love 196 | relates:relate 197 | joins:join 198 | achieves:achieve 199 | extends:extend 200 | clothes:clothe 201 | means:mean 202 | requires:require 203 | presents:present 204 | beats:beat 205 | copies:copy 206 | freezes:freeze 207 | enjoys:enjoy 208 | likes:like 209 | lives:live 210 | causes:cause 211 | handwrites:handwrite 212 | becomes:become 213 | includes:include 214 | sends:send 215 | chooses:choose 216 | allows:allow 217 | sows:sow 218 | drives:drive 219 | is:be 220 | sunburns:sunburn 221 | gives:give 222 | gets:get 223 | forsakes:forsake 224 | buys:buy 225 | tears:tear 226 | hides:hide 227 | cleans:clean 228 | spins:spin 229 | foretells:foretell 230 | recognizes:recognize 231 | thrusts:thrust 232 | bears:bear 233 | removes:remove 234 | lets:let 235 | changes:change 236 | feeds:feed 237 | forecasts:forecast 238 | checks:check 239 | passes:pass 240 | flings:fling 241 | occurs:occur 242 | sneaks:sneak 243 | receives:receive 244 | points:point 245 | supplies:supply 246 | rids:rid 247 | dances:dance 248 | heads:head 249 | awakes:awake 250 | calls:call 251 | realizes:realize 252 | kneels:kneel 253 | reads:read 254 | undergoes:undergo 255 | travels:travel 256 | strips:strip 257 | dwells:dwell 258 | indicates:indicate 259 | owns:own 260 | foresees:foresee 261 | acts:act 262 | lies:lie 263 | fails:fail 264 | notices:notice 265 | states:state 266 | reveals:reveal 267 | eats:eat 268 | leads:lead 269 | clings:cling 270 | weds:wed 271 | dresses:dress 272 | suits:suit 273 | kills:kill 274 | rises:rise 275 | accepts:accept 276 | reduces:reduce 277 | catches:catch 278 | builds:build 279 | weaves:weave 280 | bends:bend 281 | speaks:speak 282 | works:work 283 | fights:fight 284 | sits:sit 285 | falls:fall 286 | sticks:stick 287 | produces:produce 288 | stays:stay 289 | runs:run 290 | happens:happen 291 | invites:invite 292 | affects:affect 293 | faces:face 294 | dreams:dream 295 | raises:raise 296 | sinks:sink 297 | withdraws:withdraw 298 | spells:spell 299 | seeks:seek 300 | contacts:contact 301 | abides:abide 302 | takes:take 303 | loses:lose 304 | undertakes:undertake 305 | splits:split 306 | supposes:suppose 307 | sees:see 308 | springs:spring 309 | suggests:suggest 310 | overdraws:overdraw 311 | reports:report 312 | charges:charge 313 | tells:tell 314 | dares:dare 315 | places:place 316 | explains:explain 317 | shares:share 318 | misleads:mislead 319 | enables:enable 320 | saves:save 321 | bursts:burst 322 | slinks:slink 323 | teaches:teach 324 | sorts:sort 325 | identifies:identify 326 | cries:cry 327 | slides:slide 328 | argues:argue 329 | treads:tread 330 | stinks:stink 331 | strings:string 332 | listens:listen 333 | survives:survive 334 | withholds:withhold 335 | appears:appear 336 | agrees:agree 337 | soothsays:soothsay 338 | draws:draw 339 | sounds:sound 340 | presets:preset 341 | accounts:account 342 | provides:provide 343 | sweeps:sweep 344 | strives:strive 345 | protects:protect 346 | climbs:climb 347 | wonders:wonder 348 | shrinks:shrink 349 | drops:drop 350 | admits:admit 351 | serves:serve 352 | handles:handle 353 | applies:apply 354 | bases:base 355 | feels:feel 356 | arrives:arrive 357 | leaves:leave 358 | rolls:roll 359 | understands:understand 360 | remembers:remember 361 | refuses:refuse 362 | vexes:vex 363 | considers:consider 364 | leans:lean 365 | weeps:weep 366 | wishes:wish 367 | knocks:knock 368 | divides:divide 369 | matters:matter 370 | slings:sling 371 | bleeds:bleed 372 | cans:can 373 | inputs:input 374 | covers:cover 375 | replies:reply 376 | wills:will 377 | broadcasts:broadcast 378 | wins:win 379 | beholds:behold 380 | grows:grow 381 | stings:sting 382 | hangs:hang 383 | costs:cost 384 | minds:mind 385 | seems:seem 386 | presses:press 387 | separates:separate 388 | believes:believe 389 | watches:watch 390 | performs:perform 391 | avoids:avoid 392 | rests:rest 393 | cares:care 394 | overhears:overhear 395 | represents:represent 396 | shakes:shake 397 | corrects:correct 398 | hates:hate 399 | decides:decide 400 | dies:die 401 | swells:swell 402 | answers:answer 403 | swims:swim 404 | adds:add 405 | repeats:repeat 406 | concerns:concern 407 | pushes:push 408 | alights:alight 409 | puts:put 410 | shoots:shoot 411 | fishes:fish 412 | rings:ring 413 | returns:return 414 | shoes:shoe 415 | goes:go 416 | regards:regard 417 | throws:throw 418 | bids:bid 419 | intends:intend 420 | comes:come 421 | wants:want 422 | knows:know 423 | spoils:spoil 424 | expresses:express 425 | encourages:encourage 426 | knits:knit 427 | demands:demand 428 | breaks:break 429 | prepares:prepare 430 | claps:clap 431 | turns:turn 432 | misses:miss 433 | controls:control 434 | rides:ride 435 | designs:design 436 | increases:increase 437 | shuts:shut 438 | wets:wet 439 | forms:form 440 | hurts:hurt 441 | hunts:hunt 442 | opens:open 443 | refers:refer 444 | deals:deal 445 | learns:learn 446 | develops:develop 447 | withstands:withstand 448 | uses:use 449 | sublets:sublet 450 | kicks:kick 451 | -------------------------------------------------------------------------------- /bots/alice2/maps/nation2capital.txt: -------------------------------------------------------------------------------- 1 | Afghanistan:Kabul 2 | Albania:Tirana 3 | Algeria:Algiers 4 | Andorra:Andorra la Vella 5 | Angola:Luanda 6 | Antigua and Barbuda:St. John's 7 | Argentina:Buenos Aires 8 | Armenia:Yerevan 9 | Australia:Canberra 10 | Austria:Vienna 11 | Azerbaijan:Baku 12 | Bahamas:Nassau 13 | Bahrain:Al-Manámah 14 | Bangladesh:Dhaka 15 | Barbados:Bridgetown 16 | Belarus:Minsk 17 | Belgium:Brussels 18 | Belize:Belmopan 19 | Benin:Porto-Novo 20 | Bhutan:Thimphu 21 | Bolivia:Sucre 22 | Bosnia and Herzegovina:Sarajevo 23 | Botswana:Gaborone 24 | Brazil:Brasília 25 | Brunei:Bandar Seri Begawan 26 | Bulgaria:Sofia 27 | Burkina Faso:Ouagadougou 28 | Burundi:Bujumbura 29 | Cambodia:Phnom Penh 30 | Cameroon:Yaoundé 31 | Canada:Ottawa 32 | Cape Verde:Praia 33 | Central African Republic:Bangui 34 | Chad:N'Djamena 35 | Chile:Santiago 36 | China:Beijing 37 | Colombia:Santafé de Bogotá 38 | Comoros:Moroni 39 | Democratic Republic of the Congo:Kinshasa 40 | Republic of Congo:Brazzaville 41 | Costa Rica:San José 42 | Côte d'Ivoire:Yamoussoukro 43 | Croatia:Zagreb 44 | Cuba:Havana 45 | Cyprus:Lefkosia 46 | Czech Republic:Prague 47 | Denmark:Copenhagen 48 | Djibouti:Djibouti 49 | Dominica:Roseau 50 | Dominican Republic:Santo Domingo 51 | East Timor:Dili 52 | Ecuador:Quito 1 53 | Egypt:Cairo 54 | El Salvador:San Salvador 55 | Equatorial Guinea:Malabo 56 | Eritrea:Asmara 57 | Estonia:Tallinn 58 | Ethiopia:Addis Ababa 59 | Fiji:Suva 60 | Finland:Helsinki 61 | France:Paris 62 | Gabon:Libreville 63 | Gambia:Banjul 64 | Georgia:Tbilisi 65 | Germany:Berlin 66 | Ghana:Accra 67 | Greece:Athens 68 | Grenada:St. George's 69 | Guatemala:Guatemala City 70 | Guinea:Conakry 71 | Guinea-Bissau:Bissau 72 | Guyana:Georgetown 73 | Haiti:Port-au-Prince 74 | Honduras:Tegucigalpa 75 | Hungary::Budapest 76 | Iceland:Reykjavik 77 | India:New Delhi 78 | Indonesia:Jakarta 79 | Iran:Tehran 80 | Iraq:Baghdad 81 | Ireland:Dublin 82 | Israel:Jerusalem 83 | Italy:Rome 84 | Jamaica:Kingston 85 | Japan:Tokyo 86 | Jordan:Amman 87 | Kazakhstan:Astana 88 | Kenya:Nairobi 89 | Kiribati:Tarawa 90 | North Korea:Pyongyang 91 | Korea:Seoul 92 | Kosovo:Pristina 93 | Kuwait:Kuwait 94 | Kyrgyzstan:Bishkek 95 | Laos:Vientiane 96 | Latvia:Riga 97 | Lebanon:Beirut 98 | Lesotho:Maseru 173 99 | Liberia:Monrovia 100 | Libya:Tripoli 101 | Liechtenstein:Vaduz 102 | Lithuania:Vilnius 103 | Luxembourg:Luxembourg 104 | Macedonia:Skopje 105 | Madagascar:Antananarivo 106 | Malawi:Lilongwe 107 | Malaysia:Kuala Lumpur 108 | Maldives:Malé 109 | Mali:Bamako 110 | Malta:Valletta 111 | Marshall Islands:Majuro 112 | Mauritania:Nouakchott 113 | Mauritius:Port Louis 114 | Mexico:Mexico City 115 | Micronesia:Palikir 11 116 | Moldova:Chisinau 117 | Monaco:Monaco 118 | Mongolia:Ulaan Baatar 119 | Montenegro:Podgorica 120 | Morocco:Rabat 121 | Mozambique:Maputo 122 | Myanmar:Rangoon 123 | Namibia:Windhoek 124 | Nauru:Yaren 125 | Nepal:Kathmandu 126 | Netherlands:Amsterdam 127 | New Zealand:Wellington 128 | Nicaragua:Managua 129 | Niger:Niamey 130 | Nigeria:Abuja 131 | Norway:Oslo 132 | Oman:Muscat 133 | Pakistan:Islamabad 134 | Palau:Koror 135 | Panama:Panama City 136 | Papua New Guinea:Port Moresby 137 | Paraguay:Asunción 138 | Peru:Lima 139 | Philippines:Manila 140 | Poland:Warsaw 141 | Portugal:Lisbon 142 | Qatar:Doha 143 | Romania:Bucharest 144 | Russia:Moscow 145 | Rwanda:Kigali 146 | St. Kitts and Nevis:Basseterre 147 | St. Lucia:Castries 148 | St. Vincent and the Grenadines:Kingstown 149 | Samoa:Apia 150 | San Marino:San Marino 151 | São Tomé and Príncipe:São Tomé 152 | Saudi Arabia:Riyadh 153 | Senegal:Dakar 154 | Serbia:Belgrade 155 | Seychelles:Victoria 156 | Sierra Leone:Freetown 157 | Singapore:Singapore 158 | Slovakia:Bratislava 159 | Slovenia:Ljubljana 160 | Solomon Islands:Honiara 161 | Somalia:Mogadishu 162 | South Africa:Pretoria 163 | South Sudan:Juba 164 | Spain:Madrid 165 | Sri Lanka:Colombo 166 | Sudan:Khartoum 167 | Suriname:Paramaribo 168 | Swaziland:Mbabane 169 | Sweden:Stockholm 170 | Switzerland:Bern 171 | Syria:Damascus 172 | Taiwan:Taipei 173 | Tajikistan:Dushanbe 174 | Tanzania:Dodoma 175 | Thailand:Bangkok 176 | Togo:Lomé 177 | Tonga:Nuku'alofa 178 | Trinidad and Tobago:Port-of-Spain 179 | Tunisia:Tunis 180 | Turkey:Ankara 181 | Turkmenistan:Ashgabat 182 | Tuvalu:Funafuti 183 | Uganda:Kampala 184 | Ukraine:Kiev 185 | United Arab Emirates:Abu Dhabi 186 | United Kingdom:London 187 | United States:Washington, D.C. 188 | USA:Washington, D.C. 189 | US:Washington, D.C. 190 | U S:Washington, D.C. 191 | U S A:Washington, D.C. 192 | America:Washington, D.C. 193 | Uruguay:Montevideo 194 | Uzbekistan:Tashkent 195 | Vanuatu:Port Vila 196 | Venezuela:Caracas 197 | Vietnam:Hanoi 198 | Yemen:Sanaá 199 | Zambia:Lusaka 200 | Zimbabwe:Harare 201 | -------------------------------------------------------------------------------- /bots/alice2/maps/next.txt: -------------------------------------------------------------------------------- 1 | A:B 2 | B:C 3 | C:D 4 | D:E 5 | E:F 6 | F:G 7 | G:H 8 | H:I 9 | I:J 10 | J:K 11 | K:L 12 | L:M 13 | M:N 14 | N:O 15 | O:P 16 | P:Q 17 | Q:R 18 | R:S 19 | S:T 20 | T:U 21 | U:V 22 | V:W 23 | W:X 24 | X:Y 25 | Y:Z 26 | Z:none 27 | Sunday:Monday 28 | Monday:Tuesday 29 | Tuesday:Wednesday 30 | Wednesday:Thursday 31 | Thursday:Friday 32 | Friday:Saturday 33 | Saturday:Sunday 34 | January:February 35 | Febrary:March 36 | March:April 37 | April:May 38 | May:June 39 | June:July 40 | July:August 41 | August:September 42 | September:October 43 | October:Novemeber 44 | November:December 45 | December:January 46 | Spring:Summer 47 | Summer:Fall 48 | Fall:Winter 49 | Autumn:Winter 50 | Winter:Spring 51 | 52 | -------------------------------------------------------------------------------- /bots/alice2/maps/number2ordinal.txt: -------------------------------------------------------------------------------- 1 | 1:First 2 | 2:Second 3 | 3:Third 4 | 4:Fourth 5 | 5:Fifth 6 | 6:Sixth 7 | 7:Seventh 8 | 8:Eighth 9 | 9:Ninth 10 | 10:Tenth 11 | 11:Eleventh 12 | 12:Twelfth 13 | 13:Thirteenth 14 | 14:Fourteenth 15 | 15:Fifteenth 16 | 16:Sixteenth 17 | 17:Seventeenth 18 | 18:Eighteenth 19 | 19:Nineteenth 20 | 20:Twentieth 21 | 21:Twenty first 22 | 22:Twenty second 23 | 23:Twenty third 24 | 24:Twenty fourth 25 | 25:Twenty fifth 26 | 26:Twenty sixth 27 | 27:Twenty seventh 28 | 28:Twenty eighth 29 | 29:Twenty ninth 30 | 30:Thirtieth 31 | 31:Thirty first 32 | 32:Thirty second 33 | -------------------------------------------------------------------------------- /bots/alice2/maps/opposite.txt: -------------------------------------------------------------------------------- 1 | further:closer 2 | farther:closer 3 | closer:further 4 | furthest:closest 5 | farthest:closest 6 | closest:furthest 7 | tallest:shortest 8 | oldest:youngest 9 | highest:lowest 10 | biggest:smallest 11 | fastest:slowest 12 | heaviest:lightest 13 | longest:shortest 14 | widest:narrowest 15 | deepest:shallowest 16 | brightest:darkest 17 | shortest:tallest 18 | youngest:oldest 19 | lowest:highest 20 | smallest:biggest 21 | largest:smallest 22 | slowest:fastest 23 | lightest:heaviest 24 | shortest:tallest 25 | narrowest:widest 26 | shallowest:deepest 27 | darkest:lighter 28 | Big:Little 29 | Big:Small 30 | Cheap:Expensive 31 | Clean:Dirty 32 | Deep:Shallow 33 | Down:Up 34 | Early:Late 35 | Easy:Difficult 36 | Easy:Hard 37 | Far:Close 38 | Far:Near 39 | Fast:Slow 40 | Fat:Thin 41 | Fat:Skinny 42 | Full:Empty 43 | Good:Bad 44 | Happy:Sad 45 | Heavy:Light 46 | Here:There 47 | High:Low 48 | Hot:Cold 49 | In:Out 50 | Inside:Outside 51 | Interesting:Boring 52 | Light:Dark 53 | Long:Short 54 | Loud:Soft 55 | Many:Few 56 | New:Old 57 | Rich:Poor 58 | Right:Left 59 | Right:Wrong 60 | Safe:Dangerous 61 | Single:Married 62 | Smooth:Rough 63 | Soft:Hard 64 | Strong:Weak 65 | Tall:Short 66 | Thick:Thin 67 | Tight:Loose 68 | Warm:Cool 69 | Wet:Dry 70 | Wide:Narrow 71 | Young:Old 72 | Little:Big 73 | Small:Big 74 | Expensive:Cheap 75 | Dirty:Clean 76 | Shallow:Deep 77 | Up:Down 78 | Late:Early 79 | Difficult:Easy 80 | Hard:Easy 81 | Close:Far 82 | Near:Far 83 | Slow:Fast 84 | Thin:Fat 85 | Skinny:Fat 86 | Empty:Full 87 | Bad:Good 88 | Sad:Happy 89 | Light:Heavy 90 | There:Here 91 | Low:High 92 | Cold:Hot 93 | Out:In 94 | Outside:Inside 95 | Boring:Interesting 96 | Dark:Light 97 | Short:Long 98 | Soft:Loud 99 | Few:Many 100 | Old:New 101 | Poor:Rich 102 | Left:Right 103 | Wrong:Right 104 | Dangerous:Safe 105 | Married:Single 106 | Rough:Smooth 107 | Hard:Soft 108 | Weak:Strong 109 | Short:Tall 110 | Thin:Thick 111 | Loose:Tight 112 | Cool:Warm 113 | Dry:Wet 114 | Narrow:Wide 115 | Old:Young 116 | Night:Day 117 | further:closer 118 | farther:closer 119 | closer:further 120 | taller:shorter 121 | older:younger 122 | higher:lower 123 | bigger:smaller 124 | faster:slower 125 | heavier:lighter 126 | longer:shorter 127 | wider:narrower 128 | deeper:shallower 129 | brighter:darker 130 | shorter:taller 131 | younger:older 132 | lower:higher 133 | smaller:bigger 134 | larger:smaller 135 | slower:faster 136 | lighter:heavier 137 | shorter:taller 138 | narrower:wider 139 | shallower:deeper 140 | darker:lighter 141 | above:below 142 | above:beneath 143 | above:underneath 144 | across from:across from 145 | against:against 146 | ahead of:trailing 147 | along:along 148 | alongside:alongside 149 | around:inside 150 | around:inside of 151 | atop:below 152 | behind:in front of 153 | below:above 154 | below:atop 155 | below:on top of 156 | beneath:above 157 | beside:beside 158 | close to:close to 159 | east of:west of 160 | far from:far from 161 | in front of:behind 162 | inside of:around 163 | inside:around 164 | left of:right of 165 | near to:near to 166 | near:near 167 | next to:next to 168 | north of:south of 169 | on top of:below 170 | opposite:opposite 171 | right of:left of 172 | south of:north of 173 | trailing:ahead of 174 | underneath:above 175 | west of:east of 176 | on:under 177 | under:on 178 | in:around 179 | around:in 180 | -------------------------------------------------------------------------------- /bots/alice2/maps/ordinal2number.txt: -------------------------------------------------------------------------------- 1 | First:1 2 | Second:2 3 | Third:3 4 | Fourth:4 5 | Fifth:5 6 | Sixth:6 7 | Seventh:7 8 | Eighth:8 9 | Ninth:9 10 | Tenth:10 11 | Eleventh:11 12 | Twelfth:12 13 | Thirteenth:13 14 | Fourteenth:14 15 | Fifteenth:15 16 | Sixteenth:16 17 | Seventeenth:17 18 | Eighteenth:18 19 | Nineteenth:19 20 | Twentieth:20 21 | Twenty first:21 22 | Twenty second:22 23 | Twenty third:23 24 | Twenty fourth:24 25 | Twenty fifth:25 26 | Twenty sixth:26 27 | Twenty seventh:27 28 | Twenty eighth:28 29 | Twenty ninth:29 30 | Thirtieth:30 31 | Thirty first:31 32 | Thirty second:32 33 | 1st:1 34 | 2nd:2 35 | 3rd:3 36 | 4th:4 37 | 5th:5 38 | 6th:6 39 | 7th:7 40 | 8th:8 41 | 9th:9 42 | 10th:10 43 | 11th:11 44 | 12th:12 45 | 13th:13 46 | 14th:14 47 | 15th:15 48 | 16th:16 49 | 17th:17 50 | 18th:18 51 | 19th:19 52 | 20th:20 53 | 21st:21 54 | 22nd:22 55 | 23rd:23 56 | 24th:24 57 | 25th:25 58 | 26th:26 59 | 27th:27 60 | 28th:28 61 | 29th:29 62 | 30th:30 63 | 31st:31 64 | 32nd:32 65 | -------------------------------------------------------------------------------- /bots/alice2/maps/phonetic.txt: -------------------------------------------------------------------------------- 1 | A:Alpha 2 | B:Bravo 3 | C:Charlie 4 | D:Delta 5 | E:Echo 6 | F:Foxtrot 7 | G:Golf 8 | H:Hotel 9 | I:India 10 | J:Juliet 11 | K:Kilo 12 | L:Lima 13 | M:Mike 14 | N:November 15 | O:Oscar 16 | P:Papa 17 | Q:Quebec 18 | R:Romeo 19 | S:Sierra 20 | T:Tango 21 | U:Uniform 22 | V:Victor 23 | W:Whiskey 24 | X:X-ray 25 | Y:Yankee 26 | Z:Zulu 27 | -------------------------------------------------------------------------------- /bots/alice2/maps/profile2predicate.txt: -------------------------------------------------------------------------------- 1 | address:address 2 | age:age 3 | baby:baby 4 | bestfriend:bestfriend 5 | birthday:birthday 6 | birthplace:birthplace 7 | boyfriend:boyfriend 8 | brother:brother 9 | cat:cat 10 | city:city 11 | country:country 12 | county:county 13 | daughter:daughter 14 | dog:dog 15 | email:email 16 | employer:employer 17 | father:father 18 | favorite actor:favoriteactor 19 | favorite actress:favoriteactress 20 | favorite band:favoriteband 21 | favorite book:favoritebook 22 | favorite car:favoritecar 23 | favorite color:favoritecolor 24 | favorite drink:favoritedrink 25 | favorite food:favoritefood 26 | favorite ice cream:favoriteicecream 27 | favorite movie:favoritemovie 28 | favorite song:favoritesong 29 | favorite sport:favoritesport 30 | favorite tv show:favoritetvshow 31 | first name:firstname 32 | friend:friend 33 | gender:gender 34 | girlfriend:girlfriend 35 | grandfather:grandfather 36 | grandmother:grandmother 37 | hair:hair 38 | has:has 39 | husband:husband 40 | last name:lastname 41 | latitude:latitude 42 | likes:likes 43 | location:location 44 | longitute:longitute 45 | middlename:middlename 46 | mother:mother 47 | nephew:nephew 48 | niece:niece 49 | orientation:orientation 50 | province:province 51 | religion:religion 52 | residence:residence 53 | road:road 54 | sister:sister 55 | state:state 56 | status:status 57 | street:street 58 | town:town 59 | wife:wife 60 | 61 | -------------------------------------------------------------------------------- /bots/alice2/maps/sign2date.txt: -------------------------------------------------------------------------------- 1 | Aries:March 21 - April 19 2 | Taurus:April 20 - May 20 3 | Gemini:May 21 - June 20 4 | Cancer:June 21 - July 22 5 | Leo:July 23 - August 22 6 | Virgo:August 23 - September 22 7 | Libra:September 23 - October 22 8 | Scorpio:October 23 - November 21 9 | Sagittarius:November 22 - December 21 10 | Capricorn:December 22 - January 19 11 | Aquarius:January 20 - February 18 12 | Pisces:February 19 - March 20 13 | -------------------------------------------------------------------------------- /bots/alice2/maps/state2capital.txt: -------------------------------------------------------------------------------- 1 | ALABAMA:Montgomery 2 | ALASKA:Juneau 3 | ARIZONA:Phoenix 4 | ARKANSAS:Little Rock 5 | CALIFORNIA:Sacramento 6 | COLORADO:Denver 7 | CONNECTICUT:Hartford 8 | DELAWARE:Dover 9 | FLORIDA:Tallahassee 10 | GEORGIA:Atlanta 11 | HAWAII:Honolulu 12 | IDAHO:Boise 13 | ILLINOIS:Springfield 14 | INDIANA:Indianapolis 15 | IOWA:Des Moines 16 | KANSAS:Topeka 17 | KENTUCKY:Frankfort 18 | LOUISIANA:Baton Rouge 19 | MAINE:Augusta 20 | MARYLAND:Annapolis 21 | MASSACHUSETTS:Boston 22 | MICHIGAN:Lansing 23 | MINNESOTA:Saint Paul 24 | MISSISSIPPI:Jackson 25 | MISSOURI:Jefferson City 26 | MONTANA:Helena 27 | NEBRASKA:Lincoln 28 | NEVADA:Carson City 29 | NEW HAMPSHIRE:Concord 30 | NEW JERSEY:Trenton 31 | NEW MEXICO:Santa Fe 32 | NEW YORK:Albany 33 | NORTH CAROLINA:Raleigh 34 | NORTH DAKOTA:Bismarck 35 | OHIO:Columbus 36 | OKLAHOMA:Oklahoma City 37 | OREGON:Salem 38 | PENNSYLVANIA:Harrisburg 39 | RHODE ISLAND:Providence 40 | SOUTH CAROLINA:Columbia 41 | SOUTH DAKOTA:Pierre 42 | TENNESSEE:Nashville 43 | TEXAS:Austin 44 | UTAH:Salt Lake City 45 | VERMONT:Montpelier 46 | VIRGINIA:Richmond 47 | WASHINGTON:Olympia 48 | WEST VIRGINIA:Charleston 49 | WISCONSIN:Madison 50 | WYOMING:Cheyenne 51 | AL:Montgomery 52 | AK:Juneau 53 | AZ:Phoenix 54 | AR:Little Rock 55 | CA:Sacramento 56 | CO:Denver 57 | CT:Hartford 58 | DE:Dover 59 | FL:Tallahassee 60 | GA:Atlanta 61 | HI:Honolulu 62 | ID:Boise 63 | IL:Springfield 64 | IN:Indianapolis 65 | IA:Des Moines 66 | KS:Topeka 67 | KY:Frankfort 68 | LA:Baton Rouge 69 | ME:Augusta 70 | MD:Annapolis 71 | MA:Boston 72 | MI:Lansing 73 | MN:Saint Paul 74 | MS:Jackson 75 | MO:Jefferson City 76 | MT:Helena 77 | NE:Lincoln 78 | NV:Carson City 79 | NH:Concord 80 | NJ:Trenton 81 | NM:Santa Fe 82 | NY:Albany 83 | NC:Raleigh 84 | ND:Bismarck 85 | OH:Columbus 86 | OK:Oklahoma City 87 | OR:Salem 88 | PA:Harrisburg 89 | RI:Providence 90 | SC:Columbia 91 | SD:Pierre 92 | TN:Nashville 93 | TX:Austin 94 | UT:Salt Lake City 95 | VT:Montpelier 96 | VA:Richmond 97 | WA:Olympia 98 | WV:Charleston 99 | WI:Madison 100 | WY:Cheyenne 101 | -------------------------------------------------------------------------------- /bots/alice2/maps/state2largestcity.txt: -------------------------------------------------------------------------------- 1 | ALABAMA:Birmingham 2 | ALASKA:Anchorage 3 | ARIZONA:Phoenix 4 | ARKANSAS:Little Rock 5 | CALIFORNIA:Los Angeles 6 | COLORADO:Denver 7 | CONNECTICUT:Bridgeport 8 | DELAWARE:Wilmington 9 | FLORIDA:Jacksonville 10 | GEORGIA:Atlanta 11 | HAWAII:Honolulu 12 | IDAHO:Boise 13 | ILLINOIS:Chicago 14 | INDIANA:Indianapolis 15 | IOWA:Des Moines 16 | KANSAS:Wichita 17 | KENTUCKY:Louisville 18 | LOUISIANA:New Orleans 19 | MAINE:Portland 20 | MARYLAND:Baltimore 21 | MASSACHUSETTS:Boston 22 | MICHIGAN:Detroit 23 | MINNESOTA:Minneapolis 24 | MISSISSIPPI:Jackson 25 | MISSOURI:Kansas City 26 | MONTANA:Billings 27 | NEBRASKA:Omaha 28 | NEVADA:Las Vegas 29 | NEW HAMPSHIRE:Machester 30 | NEW JERSEY:Newark 31 | NEW MEXICO:Albuquerque 32 | NEW YORK:New York 33 | NORTH CAROLINA:Charlotte 34 | NORTH DAKOTA:Fargo 35 | OHIO:Columbus 36 | OKLAHOMA:Oklahoma City 37 | OREGON:Portland 38 | PENNSYLVANIA:Philadelphia 39 | RHODE ISLAND:Providence 40 | SOUTH CAROLINA:Columbia 41 | SOUTH DAKOTA:Sioux Falls 42 | TENNESSEE:Memphis 43 | TEXAS:Houston 44 | UTAH:Salt Lake City 45 | VERMONT:Burlington 46 | VIRGINIA:Virginia Beach 47 | WASHINGTON:Seattle 48 | WEST VIRGINIA:Charleston 49 | WISCONSIN:Milwaukee 50 | WYOMING:Cheyenne 51 | AL:Birmingham 52 | AK:Anchorage 53 | AZ:Phoenix 54 | AR:Little Rock 55 | CA:Los Angeles 56 | CO:Denver 57 | CT:Bridgeport 58 | DE:Wilmington 59 | FL:Jacksonville 60 | GA:Atlanta 61 | HI:Honolulu 62 | ID:Boise 63 | IL:Chicago 64 | IN:Indianapolis 65 | IA:Des Moines 66 | KS:Wichita 67 | KY:Louisville 68 | LA:New Orleans 69 | ME:Portland 70 | MD:Baltimore 71 | MA:Boston 72 | MI:Detroit 73 | MN:Minneapolis 74 | MS:Jackson 75 | MO:Kansas City 76 | MT:Billings 77 | NE:Omaha 78 | NV:Las Vegas 79 | NH:Machester 80 | NJ:Newark 81 | NM:Albuquerque 82 | NY:New York 83 | NC:Charlotte 84 | ND:Fargo 85 | OH:Columbus 86 | OK:Oklahoma City 87 | OR:Portland 88 | PA:Philadelphia 89 | RI:Providence 90 | SC:Columbia 91 | SD:Sioux Falls 92 | TN:Memphis 93 | TX:Houston 94 | UT:Salt Lake City 95 | VT:Burlington 96 | VA:Virginia Beach 97 | WA:Seattle 98 | WV:Charleston 99 | WI:Milwaukee 100 | WY:Cheyenne 101 | -------------------------------------------------------------------------------- /bots/alice2/maps/tomorrow.txt: -------------------------------------------------------------------------------- 1 | Sunday:Monday 2 | Monday:Tuesday 3 | Tuesday:Wednesday 4 | Wednesday:Thursday 5 | Thursday:Friday 6 | Friday:Saturday 7 | Saturday:Sunday 8 | -------------------------------------------------------------------------------- /bots/alice2/maps/was2be.txt: -------------------------------------------------------------------------------- 1 | forgave:forgive 2 | said:say 3 | developed:develop 4 | explained:explain 5 | smoked:smoke 6 | continued:continue 7 | spoke:speak 8 | answered:answer 9 | joined:join 10 | compared:compare 11 | created:create 12 | began:begin 13 | regarded:regard 14 | minded:mind 15 | bought:buy 16 | opened:open 17 | asked:ask 18 | trod:tread 19 | awoke:awake 20 | told:tell 21 | promised:promise 22 | cleaned:clean 23 | clung:cling 24 | cleared:clear 25 | bit:bite 26 | fed:feed 27 | washed:wash 28 | arranged:arrange 29 | soothsaid:soothsay 30 | existed:exist 31 | snuck:sneak 32 | drove:drive 33 | broadcasted:broadcast 34 | sped:speed 35 | warned:warn 36 | made:make 37 | traveled:travel 38 | visited:visit 39 | concerned:concern 40 | grew:grow 41 | examined:examine 42 | smiled:smile 43 | acted:act 44 | left:leave 45 | lived:live 46 | wet:wet 47 | prevented:prevent 48 | demanded:demand 49 | stood:stand 50 | enjoyed:enjoy 51 | sang:sing 52 | beat:beat 53 | wed:wed 54 | forbade:forbid 55 | sank:sink 56 | talked:talk 57 | broke:break 58 | sounded:sound 59 | introduced:introduce 60 | thanked:thank 61 | returned:return 62 | bound:bind 63 | strung:string 64 | planed:plan 65 | revealed:reveal 66 | took:take 67 | dwelt:dwell 68 | founded:found 69 | consisted:consist 70 | kicked:kick 71 | lasted:last 72 | had:have 73 | proved:prove 74 | forced:force 75 | spat:spit 76 | sowed:sow 77 | burst:burst 78 | lent:lend 79 | replaced:replace 80 | preferred:prefer 81 | decided:decide 82 | involved:involve 83 | played:play 84 | laughed:laugh 85 | strove:strive 86 | misunderstood:misunderstand 87 | smelled:smell 88 | obtained:obtain 89 | wondered:wonder 90 | set:set 91 | forecasted:forecast 92 | tried:try 93 | tested:test 94 | stole:steal 95 | released:release 96 | met:meet 97 | headed:head 98 | knelt:kneel 99 | contributed:contribute 100 | knocked:knock 101 | touched:touch 102 | formed:form 103 | trained:train 104 | appeared:appear 105 | reached:reach 106 | leapt:leap 107 | lay:lie 108 | swung:swing 109 | finished:finish 110 | informed:inform 111 | moved:move 112 | shed:shed 113 | expected:expect 114 | shaved:shave 115 | ran:run 116 | tore:tear 117 | stank:stink 118 | damaged:damage 119 | sewed:sew 120 | fell:fall 121 | carried:carry 122 | rested:rest 123 | rode:ride 124 | improved:improve 125 | confirmed:confirm 126 | rang:ring 127 | influenced:influence 128 | reported:report 129 | thrived:thrive 130 | measured:measure 131 | pointed:point 132 | flew:fly 133 | rose:rise 134 | imagined:imagine 135 | managed:manage 136 | fled:flee 137 | committed:commit 138 | hoped:hope 139 | experienced:experience 140 | performed:perform 141 | recorded:record 142 | crossed:cross 143 | voted:vote 144 | shook:shake 145 | frostbit:frostbite 146 | raised:raise 147 | thought:think 148 | occurred:occur 149 | quit:quit 150 | followed:follow 151 | wound:wind 152 | sheared:shear 153 | gained:gain 154 | heard:hear 155 | destroyed:destroy 156 | supported:support 157 | closed:close 158 | published:publish 159 | built:build 160 | aimed:aim 161 | kept:keep 162 | completed:complete 163 | held:hold 164 | collected:collect 165 | waited:wait 166 | denied:deny 167 | worried:worry 168 | cut:cut 169 | described:describe 170 | stated:state 171 | hid:hide 172 | flung:fling 173 | cooked:cook 174 | hunted:hunt 175 | caused:cause 176 | changed:change 177 | related:relate 178 | contacted:contact 179 | sunburned:sunburn 180 | hit:hit 181 | hiked:hike 182 | overtook:overtake 183 | required:require 184 | copied:copy 185 | liked:like 186 | controlled:control 187 | meant:mean 188 | owned:own 189 | studied:study 190 | settled:settle 191 | bet:bet 192 | called:call 193 | included:include 194 | recognized:recognize 195 | lost:lose 196 | listened:listen 197 | suffered:suffer 198 | considered:consider 199 | was:be 200 | swept:sweep 201 | achieved:achieve 202 | withdrew:withdraw 203 | slung:sling 204 | undertook:undertake 205 | clothed:clothe 206 | seemed:seem 207 | withstood:withstand 208 | read:read 209 | treated:treat 210 | stuck:stick 211 | foresaw:foresee 212 | preset:preset 213 | spent:spend 214 | bid:bid 215 | slunk:slink 216 | added:add 217 | rolled:roll 218 | loved:love 219 | tended:tend 220 | taught:teach 221 | fitted:fit 222 | hurt:hurt 223 | felt:feel 224 | looked:look 225 | fought:fight 226 | sprang:spring 227 | suited:suit 228 | removed:remove 229 | discussed:discuss 230 | spread:spread 231 | remained:remain 232 | hanged:hang 233 | found:find 234 | limited:limit 235 | passed:pass 236 | wrote:write 237 | knew:know 238 | received:receive 239 | disappeared:disappear 240 | blew:blow 241 | showed:show 242 | danced:dance 243 | reduced:reduce 244 | bled:bleed 245 | forgot:forget 246 | ridded:rid 247 | sublet:sublet 248 | admitted:admit 249 | became:become 250 | indicated:indicate 251 | alighted:alight 252 | dropped:drop 253 | split:split 254 | referred:refer 255 | sweat:sweat 256 | realized:realize 257 | offered:offer 258 | killed:kill 259 | strode:stride 260 | stayed:stay 261 | bore:bear 262 | sought:seek 263 | brought:bring 264 | noticed:notice 265 | designed:design 266 | handwrote:handwrite 267 | worked:work 268 | complained:complain 269 | accounted:account 270 | caught:catch 271 | crept:creep 272 | dressed:dress 273 | suggested:suggest 274 | supplied:supply 275 | fastened:fasten 276 | produced:produce 277 | repeated:repeat 278 | gave:give 279 | picked:pick 280 | fished:fish 281 | stripped:strip 282 | laid:lay 283 | checked:check 284 | invited:invite 285 | discovered:discover 286 | bust:bust 287 | corrected:correct 288 | knitted:knit 289 | reflected:reflect 290 | supposed:suppose 291 | climbed:climb 292 | attacked:attack 293 | served:serve 294 | identified:identify 295 | handled:handle 296 | affected:affect 297 | woke:wake 298 | faced:face 299 | understood:understand 300 | stung:sting 301 | presented:present 302 | shared:share 303 | burned:burn 304 | enabled:enable 305 | agreed:agree 306 | abided:abide 307 | surfed:surf 308 | saved:save 309 | shone:shine 310 | intended:intend 311 | cost:cost 312 | charged:charge 313 | dove:dive 314 | spun:spin 315 | clapped:clap 316 | spelled:spell 317 | cast:cast 318 | argued:argue 319 | survived:survive 320 | dug:dig 321 | got:get 322 | succeeded:succeed 323 | mistook:mistake 324 | inputted:input 325 | struck:strike 326 | shut:shut 327 | arose:arise 328 | replied:reply 329 | placed:place 330 | thrust:thrust 331 | delivered:deliver 332 | bred:breed 333 | sorted:sort 334 | resulted:result 335 | extended:extend 336 | helped:help 337 | shopped:shop 338 | mattered:matter 339 | avoided:avoid 340 | needed:need 341 | counted:count 342 | ordered:order 343 | learned:learn 344 | slew:slay 345 | provided:provide 346 | interlaid:interlay 347 | swore:swear 348 | leaned:lean 349 | bent:bend 350 | mowed:mow 351 | swelled:swell 352 | vexed:vex 353 | shrank:shrink 354 | filled:fill 355 | went:go 356 | spoiled:spoil 357 | accepted:accept 358 | represented:represent 359 | slept:sleep 360 | arrived:arrive 361 | refused:refuse 362 | slid:slide 363 | caned:can 364 | sold:sell 365 | wrung:wring 366 | did:do 367 | happened:happen 368 | stopped:stop 369 | sat:sit 370 | wished:wish 371 | saw:see 372 | divided:divide 373 | cried:cry 374 | wove:weave 375 | put:put 376 | pressed:press 377 | encouraged:encourage 378 | beheld:behold 379 | dreamed:dream 380 | failed:fail 381 | ground:grind 382 | separated:separate 383 | mentioned:mention 384 | wept:weep 385 | dared:dare 386 | wanted:want 387 | watched:watch 388 | willed:will 389 | believed:believe 390 | paid:pay 391 | upset:upset 392 | shouted:shout 393 | covered:cover 394 | foretold:foretell 395 | overheard:overhear 396 | afforded:afford 397 | walked:walk 398 | let:let 399 | slit:slit 400 | inlaid:inlay 401 | led:lead 402 | underwent:undergo 403 | jumped:jump 404 | folded:fold 405 | based:base 406 | allowed:allow 407 | belonged:belong 408 | hated:hate 409 | connected:connect 410 | spilled:spill 411 | used:use 412 | shot:shoot 413 | cared:care 414 | sent:send 415 | turned:turn 416 | sawed:saw 417 | died:die 418 | shod:shoe 419 | drew:draw 420 | linked:link 421 | marked:mark 422 | expressed:express 423 | chose:choose 424 | depended:depend 425 | withheld:withhold 426 | threw:throw 427 | wore:wear 428 | prepared:prepare 429 | increased:increase 430 | misled:mislead 431 | contained:contain 432 | forsook:forsake 433 | protected:protect 434 | froze:freeze 435 | overdrew:overdraw 436 | ate:eat 437 | won:win 438 | melted:melt 439 | pulled:pull 440 | lit:light 441 | dealt:deal 442 | came:come 443 | drank:drink 444 | applied:apply 445 | remembered:remember 446 | swam:swim 447 | pushed:push 448 | claimed:claim 449 | started:start 450 | missed:miss 451 | -------------------------------------------------------------------------------- /bots/alice2/sets/abc.txt: -------------------------------------------------------------------------------- 1 | A B 2 | A B C 3 | X Y 4 | X Y Z 5 | -------------------------------------------------------------------------------- /bots/alice2/sets/animal.txt: -------------------------------------------------------------------------------- 1 | Animal 2 | ant 3 | bat 4 | bear 5 | bee 6 | bird 7 | buffalo 8 | cat 9 | chicken 10 | cow 11 | dog 12 | dolphin 13 | duck 14 | elephant 15 | fish 16 | fox 17 | frog 18 | goat 19 | goose 20 | horse 21 | kangaroo 22 | lion 23 | monkey 24 | owl 25 | ox 26 | penguin 27 | person 28 | pig 29 | rabbit 30 | sheep 31 | tiger 32 | whale 33 | wolf 34 | zebra 35 | -------------------------------------------------------------------------------- /bots/alice2/sets/animals.txt: -------------------------------------------------------------------------------- 1 | ants 2 | bats 3 | bears 4 | bees 5 | birds 6 | buffaloes 7 | cats 8 | cattle 9 | chickens 10 | dogs 11 | dolphins 12 | ducks 13 | elephants 14 | fish 15 | foxes 16 | frogs 17 | geese 18 | goats 19 | horses 20 | kangaroos 21 | lions 22 | monkeys 23 | owls 24 | oxen 25 | penguins 26 | people 27 | pigs 28 | Plural 29 | rabbits 30 | sheep 31 | tigers 32 | whales 33 | wolves 34 | zebras 35 | cows 36 | -------------------------------------------------------------------------------- /bots/alice2/sets/article.txt: -------------------------------------------------------------------------------- 1 | a 2 | an 3 | the 4 | -------------------------------------------------------------------------------- /bots/alice2/sets/be.txt: -------------------------------------------------------------------------------- 1 | need 2 | fish 3 | tend 4 | visit 5 | wait 6 | knock 7 | handwrite 8 | roll 9 | refer 10 | forgive 11 | answer 12 | regard 13 | sleep 14 | meet 15 | smoke 16 | withstand 17 | touch 18 | bite 19 | aim 20 | discuss 21 | eat 22 | explain 23 | forbid 24 | go 25 | vex 26 | raise 27 | indicate 28 | grind 29 | leave 30 | recognize 31 | consider 32 | write 33 | mention 34 | do 35 | tell 36 | wet 37 | frostbite 38 | fasten 39 | look 40 | bear 41 | beat 42 | wed 43 | suffer 44 | join 45 | enjoy 46 | gain 47 | represent 48 | sit 49 | base 50 | breed 51 | dwell 52 | change 53 | drop 54 | broadcast 55 | lead 56 | close 57 | deal 58 | light 59 | be 60 | think 61 | stink 62 | get 63 | watch 64 | sting 65 | learn 66 | burst 67 | wring 68 | mislead 69 | lean 70 | refuse 71 | thrive 72 | prefer 73 | walk 74 | make 75 | lend 76 | leap 77 | collect 78 | hope 79 | remember 80 | sew 81 | connect 82 | measure 83 | set 84 | throw 85 | wake 86 | swim 87 | spoil 88 | pay 89 | experience 90 | talk 91 | speed 92 | lay 93 | depend 94 | win 95 | shed 96 | foretell 97 | see 98 | stand 99 | freeze 100 | take 101 | suit 102 | forget 103 | bind 104 | sneak 105 | concern 106 | forsake 107 | involve 108 | break 109 | help 110 | correct 111 | deliver 112 | report 113 | smile 114 | carry 115 | move 116 | alight 117 | limit 118 | ring 119 | sow 120 | support 121 | identify 122 | soothsay 123 | hold 124 | include 125 | flee 126 | sling 127 | suppose 128 | slink 129 | shoot 130 | creep 131 | weave 132 | will 133 | sunburn 134 | influence 135 | protect 136 | express 137 | build 138 | quit 139 | clear 140 | thank 141 | clean 142 | withdraw 143 | listen 144 | melt 145 | overhear 146 | stay 147 | abide 148 | account 149 | force 150 | cut 151 | settle 152 | design 153 | hike 154 | produce 155 | realize 156 | apply 157 | reveal 158 | cause 159 | last 160 | count 161 | save 162 | study 163 | love 164 | shave 165 | hit 166 | tear 167 | wonder 168 | train 169 | spell 170 | live 171 | fling 172 | consist 173 | damage 174 | spill 175 | arrive 176 | dress 177 | bet 178 | release 179 | stick 180 | improve 181 | believe 182 | add 183 | affect 184 | rise 185 | read 186 | develop 187 | preset 188 | receive 189 | bid 190 | extend 191 | play 192 | dive 193 | offer 194 | know 195 | spend 196 | pass 197 | lose 198 | hurt 199 | plan 200 | rid 201 | bleed 202 | shear 203 | clothe 204 | spread 205 | act 206 | intend 207 | worry 208 | shout 209 | found 210 | understand 211 | appear 212 | handle 213 | fight 214 | misunderstand 215 | manage 216 | hide 217 | drink 218 | hunt 219 | inlay 220 | happen 221 | place 222 | overtake 223 | copy 224 | serve 225 | turn 226 | cook 227 | prove 228 | laugh 229 | vote 230 | suggest 231 | sublet 232 | cling 233 | mow 234 | swear 235 | split 236 | complain 237 | own 238 | try 239 | sweat 240 | climb 241 | face 242 | press 243 | sort 244 | give 245 | use 246 | run 247 | spring 248 | strike 249 | survive 250 | reply 251 | pick 252 | slide 253 | publish 254 | foresee 255 | notice 256 | come 257 | slay 258 | divide 259 | seem 260 | admit 261 | seek 262 | replace 263 | weep 264 | remain 265 | string 266 | confirm 267 | agree 268 | reflect 269 | keep 270 | afford 271 | arise 272 | relate 273 | kick 274 | bust 275 | provide 276 | pull 277 | become 278 | bend 279 | perform 280 | commit 281 | care 282 | knit 283 | dare 284 | demand 285 | follow 286 | control 287 | imagine 288 | cost 289 | sweep 290 | reduce 291 | finish 292 | inform 293 | input 294 | encourage 295 | cast 296 | sound 297 | require 298 | burn 299 | result 300 | can 301 | catch 302 | repeat 303 | hang 304 | withhold 305 | destroy 306 | reach 307 | shut 308 | complete 309 | deny 310 | supply 311 | feed 312 | thrust 313 | feel 314 | separate 315 | argue 316 | forecast 317 | promise 318 | cry 319 | charge 320 | grow 321 | increase 322 | claim 323 | wear 324 | examine 325 | test 326 | accept 327 | shake 328 | shine 329 | bring 330 | draw 331 | expect 332 | avoid 333 | open 334 | cover 335 | fail 336 | behold 337 | drive 338 | undergo 339 | describe 340 | choose 341 | wind 342 | form 343 | compare 344 | prevent 345 | prepare 346 | like 347 | stride 348 | create 349 | present 350 | record 351 | obtain 352 | start 353 | say 354 | shrink 355 | saw 356 | ask 357 | dance 358 | cross 359 | smell 360 | kneel 361 | put 362 | remove 363 | link 364 | contact 365 | overdraw 366 | spit 367 | upset 368 | sell 369 | spin 370 | mind 371 | want 372 | steal 373 | let 374 | return 375 | speak 376 | awake 377 | contribute 378 | slit 379 | arrange 380 | point 381 | strive 382 | fall 383 | attack 384 | shop 385 | hate 386 | send 387 | belong 388 | buy 389 | wish 390 | introduce 391 | enable 392 | kill 393 | show 394 | travel 395 | hear 396 | swell 397 | head 398 | swing 399 | surf 400 | shoe 401 | work 402 | succeed 403 | dream 404 | discover 405 | mark 406 | sink 407 | strip 408 | tread 409 | jump 410 | fly 411 | contain 412 | sing 413 | rest 414 | treat 415 | ride 416 | warn 417 | decide 418 | call 419 | stop 420 | interlay 421 | allow 422 | have 423 | state 424 | achieve 425 | undertake 426 | push 427 | fit 428 | share 429 | order 430 | die 431 | wash 432 | mean 433 | dig 434 | exist 435 | blow 436 | find 437 | invite 438 | mistake 439 | check 440 | matter 441 | fill 442 | fold 443 | teach 444 | begin 445 | continue 446 | clap 447 | disappear 448 | miss 449 | lie 450 | occur 451 | -------------------------------------------------------------------------------- /bots/alice2/sets/been.txt: -------------------------------------------------------------------------------- 1 | said 2 | developed 3 | explained 4 | smoked 5 | continued 6 | stridden 7 | answered 8 | joined 9 | compared 10 | created 11 | woken 12 | regarded 13 | awoken 14 | minded 15 | bought 16 | opened 17 | asked 18 | told 19 | promised 20 | shown 21 | cleaned 22 | clung 23 | cleared 24 | fed 25 | washed 26 | arranged 27 | soothsaid 28 | existed 29 | bitten 30 | snuck 31 | mistaken 32 | broadcasted 33 | sped 34 | warned 35 | made 36 | traveled 37 | visited 38 | arisen 39 | concerned 40 | examined 41 | smiled 42 | acted 43 | left 44 | lived 45 | wet 46 | prevented 47 | demanded 48 | stood 49 | enjoyed 50 | sunk 51 | sung 52 | wed 53 | forgiven 54 | talked 55 | sounded 56 | introduced 57 | thanked 58 | returned 59 | bound 60 | strung 61 | planed 62 | proven 63 | revealed 64 | dwelt 65 | spoken 66 | founded 67 | consisted 68 | overtaken 69 | kicked 70 | lasted 71 | had 72 | forced 73 | spat 74 | burst 75 | lent 76 | replaced 77 | preferred 78 | decided 79 | involved 80 | gotten 81 | played 82 | laughed 83 | misunderstood 84 | smelled 85 | obtained 86 | wondered 87 | set 88 | forecasted 89 | tried 90 | chosen 91 | frozen 92 | tested 93 | released 94 | met 95 | headed 96 | knelt 97 | contributed 98 | knocked 99 | touched 100 | formed 101 | trained 102 | appeared 103 | reached 104 | leapt 105 | swung 106 | shaven 107 | finished 108 | torn 109 | informed 110 | dived 111 | moved 112 | shed 113 | expected 114 | damaged 115 | frostbitten 116 | carried 117 | forgotten 118 | rested 119 | improved 120 | confirmed 121 | given 122 | blown 123 | influenced 124 | shrunk 125 | reported 126 | done 127 | thrived 128 | measured 129 | pointed 130 | imagined 131 | managed 132 | fled 133 | mown 134 | committed 135 | hoped 136 | experienced 137 | performed 138 | recorded 139 | crossed 140 | voted 141 | sworn 142 | raised 143 | thought 144 | occurred 145 | quit 146 | followed 147 | wound 148 | gained 149 | heard 150 | destroyed 151 | supported 152 | closed 153 | shorn 154 | published 155 | built 156 | aimed 157 | kept 158 | completed 159 | held 160 | collected 161 | waited 162 | denied 163 | sewn 164 | begun 165 | worried 166 | cut 167 | described 168 | stated 169 | handwritten 170 | flung 171 | cooked 172 | hunted 173 | caused 174 | changed 175 | related 176 | contacted 177 | sunburned 178 | hit 179 | hiked 180 | required 181 | copied 182 | liked 183 | controlled 184 | meant 185 | owned 186 | studied 187 | settled 188 | swum 189 | bet 190 | called 191 | included 192 | recognized 193 | lost 194 | listened 195 | suffered 196 | considered 197 | sprung 198 | swept 199 | achieved 200 | slung 201 | sown 202 | clothed 203 | forsaken 204 | driven 205 | seemed 206 | withstood 207 | read 208 | treated 209 | stuck 210 | preset 211 | spent 212 | bid 213 | slunk 214 | added 215 | rolled 216 | loved 217 | tended 218 | taught 219 | fitted 220 | hurt 221 | felt 222 | looked 223 | rid 224 | fought 225 | hidden 226 | suited 227 | removed 228 | discussed 229 | spread 230 | remained 231 | forbidden 232 | found 233 | limited 234 | passed 235 | rung 236 | received 237 | disappeared 238 | hung 239 | danced 240 | reduced 241 | bled 242 | sublet 243 | admitted 244 | indicated 245 | alighted 246 | ridden 247 | dropped 248 | split 249 | referred 250 | sweat 251 | realized 252 | born 253 | offered 254 | slain 255 | killed 256 | stayed 257 | drunk 258 | foreseen 259 | sought 260 | brought 261 | run 262 | noticed 263 | risen 264 | designed 265 | worked 266 | written 267 | complained 268 | accounted 269 | caught 270 | crept 271 | dressed 272 | come 273 | suggested 274 | supplied 275 | seen 276 | fastened 277 | produced 278 | repeated 279 | picked 280 | lain 281 | fished 282 | stripped 283 | laid 284 | checked 285 | invited 286 | discovered 287 | bust 288 | withdrawn 289 | corrected 290 | knitted 291 | stunk 292 | reflected 293 | become 294 | supposed 295 | climbed 296 | attacked 297 | served 298 | undertaken 299 | identified 300 | handled 301 | affected 302 | faced 303 | understood 304 | fallen 305 | taken 306 | stung 307 | presented 308 | shared 309 | burned 310 | enabled 311 | agreed 312 | abided 313 | surfed 314 | trodden 315 | saved 316 | gone 317 | shone 318 | intended 319 | cost 320 | charged 321 | overdrawn 322 | spun 323 | clapped 324 | spelled 325 | cast 326 | argued 327 | survived 328 | dug 329 | succeeded 330 | inputted 331 | struck 332 | shut 333 | replied 334 | placed 335 | drawn 336 | thrust 337 | striven 338 | delivered 339 | bred 340 | sorted 341 | resulted 342 | extended 343 | helped 344 | shopped 345 | mattered 346 | avoided 347 | needed 348 | counted 349 | ordered 350 | beaten 351 | learned 352 | provided 353 | interlaid 354 | leaned 355 | bent 356 | vexed 357 | filled 358 | spoiled 359 | accepted 360 | represented 361 | slept 362 | arrived 363 | refused 364 | slid 365 | caned 366 | sold 367 | wrung 368 | flown 369 | happened 370 | stopped 371 | sat 372 | grown 373 | wished 374 | divided 375 | cried 376 | undergone 377 | put 378 | pressed 379 | encouraged 380 | beheld 381 | dreamed 382 | failed 383 | ground 384 | separated 385 | mentioned 386 | wept 387 | dared 388 | wanted 389 | watched 390 | willed 391 | believed 392 | paid 393 | upset 394 | eaten 395 | shouted 396 | covered 397 | stolen 398 | foretold 399 | overheard 400 | afforded 401 | walked 402 | let 403 | woven 404 | slit 405 | inlaid 406 | broken 407 | led 408 | shaken 409 | jumped 410 | folded 411 | based 412 | allowed 413 | belonged 414 | hated 415 | connected 416 | spilled 417 | used 418 | shot 419 | been 420 | cared 421 | sent 422 | turned 423 | sawed 424 | died 425 | shod 426 | linked 427 | marked 428 | thrown 429 | worn 430 | expressed 431 | swollen 432 | depended 433 | withheld 434 | known 435 | prepared 436 | increased 437 | misled 438 | contained 439 | protected 440 | won 441 | melted 442 | pulled 443 | lit 444 | dealt 445 | applied 446 | remembered 447 | pushed 448 | claimed 449 | started 450 | missed 451 | -------------------------------------------------------------------------------- /bots/alice2/sets/being.txt: -------------------------------------------------------------------------------- 1 | causing 2 | using 3 | controlling 4 | inputting 5 | placing 6 | holding 7 | covering 8 | stringing 9 | accounting 10 | managing 11 | failing 12 | missing 13 | becoming 14 | sorting 15 | moving 16 | achieving 17 | washing 18 | tending 19 | supplying 20 | shoeing 21 | blowing 22 | opening 23 | binding 24 | keeping 25 | consisting 26 | comparing 27 | founding 28 | needing 29 | basing 30 | handling 31 | seeking 32 | drawing 33 | measuring 34 | repeating 35 | training 36 | daring 37 | smoking 38 | joining 39 | affecting 40 | checking 41 | expressing 42 | forecasting 43 | wearing 44 | digging 45 | increasing 46 | accepting 47 | meaning 48 | cutting 49 | mistaking 50 | living 51 | burning 52 | taking 53 | subletting 54 | including 55 | contacting 56 | stinking 57 | having 58 | testing 59 | suiting 60 | wetting 61 | shooting 62 | swearing 63 | designing 64 | drinking 65 | losing 66 | driving 67 | splitting 68 | hiking 69 | striking 70 | committing 71 | releasing 72 | spinning 73 | wanting 74 | broadcasting 75 | reaching 76 | choosing 77 | stating 78 | paying 79 | mowing 80 | smiling 81 | winding 82 | seeing 83 | correcting 84 | indicating 85 | destroying 86 | damaging 87 | caning 88 | rising 89 | serving 90 | linking 91 | containing 92 | delivering 93 | doing 94 | seeming 95 | slinking 96 | extending 97 | hating 98 | saying 99 | clothing 100 | existing 101 | dealing 102 | understanding 103 | kneeling 104 | flying 105 | laughing 106 | following 107 | carrying 108 | arguing 109 | showing 110 | voting 111 | catching 112 | refusing 113 | completing 114 | happening 115 | forgiving 116 | promising 117 | reflecting 118 | fastening 119 | helping 120 | wedding 121 | meeting 122 | caring 123 | aiming 124 | laying 125 | adding 126 | frostbiting 127 | attacking 128 | knowing 129 | intending 130 | stealing 131 | limiting 132 | thrusting 133 | creating 134 | noticing 135 | forcing 136 | sunburning 137 | charging 138 | loving 139 | regarding 140 | pressing 141 | enabling 142 | sitting 143 | biting 144 | thinking 145 | spreading 146 | affording 147 | folding 148 | revealing 149 | reporting 150 | bringing 151 | heading 152 | settling 153 | getting 154 | clinging 155 | waking 156 | freezing 157 | claiming 158 | looking 159 | explaining 160 | melting 161 | remaining 162 | rolling 163 | allowing 164 | riding 165 | visiting 166 | cooking 167 | identifying 168 | belonging 169 | overhearing 170 | enjoying 171 | studying 172 | appearing 173 | sending 174 | teaching 175 | telling 176 | fishing 177 | pointing 178 | standing 179 | warning 180 | closing 181 | being 182 | speeding 183 | bursting 184 | developing 185 | copying 186 | asking 187 | returning 188 | mentioning 189 | remembering 190 | spelling 191 | offering 192 | describing 193 | representing 194 | forming 195 | awaking 196 | supposing 197 | involving 198 | interlaying 199 | acting 200 | replying 201 | feeding 202 | writing 203 | wondering 204 | sleeping 205 | protecting 206 | shaking 207 | beholding 208 | throwing 209 | playing 210 | alighting 211 | mattering 212 | continuing 213 | deciding 214 | slinging 215 | answering 216 | building 217 | swelling 218 | growing 219 | grinding 220 | arranging 221 | filling 222 | vexing 223 | imagining 224 | eating 225 | foretelling 226 | breaking 227 | swinging 228 | kicking 229 | complaining 230 | preferring 231 | turning 232 | encouraging 233 | occurring 234 | stinging 235 | dying 236 | preparing 237 | going 238 | lying 239 | selling 240 | waiting 241 | discussing 242 | stopping 243 | admitting 244 | climbing 245 | leading 246 | wringing 247 | quitting 248 | leaping 249 | coming 250 | undertaking 251 | shaving 252 | dreaming 253 | referring 254 | letting 255 | planing 256 | running 257 | resulting 258 | sinking 259 | surfing 260 | foreseeing 261 | treading 262 | depending 263 | denying 264 | arriving 265 | learning 266 | fitting 267 | talking 268 | picking 269 | lighting 270 | worrying 271 | presenting 272 | feeling 273 | upsetting 274 | publishing 275 | relating 276 | realizing 277 | recording 278 | disappearing 279 | pushing 280 | springing 281 | requiring 282 | dividing 283 | weaving 284 | withholding 285 | considering 286 | ordering 287 | arising 288 | dressing 289 | collecting 290 | hitting 291 | listening 292 | providing 293 | willing 294 | liking 295 | recognizing 296 | counting 297 | sounding 298 | weeping 299 | shopping 300 | handwriting 301 | killing 302 | crossing 303 | walking 304 | smelling 305 | confirming 306 | shining 307 | thanking 308 | thriving 309 | swimming 310 | leaving 311 | setting 312 | hoping 313 | betting 314 | marking 315 | introducing 316 | sticking 317 | sawing 318 | cleaning 319 | lending 320 | slitting 321 | withdrawing 322 | presetting 323 | bending 324 | misunderstanding 325 | expecting 326 | knocking 327 | sewing 328 | resting 329 | discovering 330 | examining 331 | supporting 332 | touching 333 | changing 334 | abiding 335 | forbidding 336 | reducing 337 | suffering 338 | misleading 339 | falling 340 | avoiding 341 | ringing 342 | stripping 343 | watching 344 | casting 345 | performing 346 | working 347 | speaking 348 | spending 349 | preventing 350 | leaning 351 | singing 352 | overdrawing 353 | receiving 354 | putting 355 | traveling 356 | knitting 357 | saving 358 | bearing 359 | inviting 360 | overtaking 361 | jumping 362 | spitting 363 | soothsaying 364 | trying 365 | pulling 366 | dwelling 367 | removing 368 | buying 369 | agreeing 370 | starting 371 | suggesting 372 | giving 373 | surviving 374 | applying 375 | busting 376 | crying 377 | spoiling 378 | striding 379 | shouting 380 | undergoing 381 | obtaining 382 | bleeding 383 | inlaying 384 | improving 385 | forsaking 386 | slaying 387 | reading 388 | costing 389 | succeeding 390 | hurting 391 | lasting 392 | clearing 393 | separating 394 | raising 395 | finishing 396 | withstanding 397 | contributing 398 | sliding 399 | shutting 400 | striving 401 | sneaking 402 | concerning 403 | ridding 404 | spilling 405 | fleeing 406 | foregetting 407 | sowing 408 | staying 409 | producing 410 | hearing 411 | winning 412 | hiding 413 | influencing 414 | beating 415 | hunting 416 | fighting 417 | diving 418 | passing 419 | bidding 420 | dancing 421 | connecting 422 | minding 423 | owning 424 | informing 425 | tearing 426 | calling 427 | experiencing 428 | hanging 429 | treating 430 | sharing 431 | breeding 432 | believing 433 | finding 434 | making 435 | shrinking 436 | beginning 437 | flinging 438 | sweeping 439 | demanding 440 | wishing 441 | proving 442 | replacing 443 | gaining 444 | sweating 445 | dropping 446 | creeping 447 | shedding 448 | facing 449 | shearing 450 | clapping 451 | -------------------------------------------------------------------------------- /bots/alice2/sets/bird.txt: -------------------------------------------------------------------------------- 1 | american kestrel 2 | kestrel 3 | annas hummingbird 4 | bald eagle 5 | barn owls 6 | burrowing owl 7 | california quail 8 | quail 9 | crow 10 | dove 11 | duck 12 | eagle 13 | egret 14 | finch 15 | goose 16 | great egret 17 | green heron 18 | heron 19 | hawk 20 | horned lark 21 | hummingbrid 22 | lark 23 | lesser goldfinch 24 | goldfinch 25 | mallard 26 | meadowlark 27 | mockingbird 28 | northern harrier 29 | harrier 30 | osprey 31 | owl 32 | parrot 33 | penguin 34 | pigeon 35 | quail 36 | raven 37 | red tailed hawk 38 | hawk 39 | road runner 40 | rooster 41 | sandhill crane 42 | crane 43 | seagull 44 | snowy owl 45 | sparrow 46 | swan 47 | towhee 48 | turkey 49 | vulture 50 | warbler 51 | wood duck 52 | -------------------------------------------------------------------------------- /bots/alice2/sets/digit.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /bots/alice2/sets/erdown.txt: -------------------------------------------------------------------------------- 1 | shorter 2 | younger 3 | lower 4 | smaller 5 | slower 6 | lighter 7 | shorter 8 | narrower 9 | shallower 10 | darker 11 | closer 12 | -------------------------------------------------------------------------------- /bots/alice2/sets/erup.txt: -------------------------------------------------------------------------------- 1 | taller 2 | older 3 | higher 4 | bigger 5 | faster 6 | heavier 7 | longer 8 | wider 9 | deeper 10 | brighter 11 | further 12 | farther 13 | 14 | 15 | -------------------------------------------------------------------------------- /bots/alice2/sets/estdown.txt: -------------------------------------------------------------------------------- 1 | shortest 2 | youngest 3 | lowest 4 | smallest 5 | largest 6 | slowest 7 | lightest 8 | shortest 9 | narrowest 10 | shallowest 11 | darkest 12 | closest 13 | -------------------------------------------------------------------------------- /bots/alice2/sets/estup.txt: -------------------------------------------------------------------------------- 1 | tallest 2 | oldest 3 | highest 4 | biggest 5 | fastest 6 | heaviest 7 | longest 8 | widest 9 | deepest 10 | brightest 11 | furthest 12 | farthest 13 | -------------------------------------------------------------------------------- /bots/alice2/sets/evildoers.txt: -------------------------------------------------------------------------------- 1 | rapists 2 | murderers 3 | killers 4 | robbers 5 | criminals 6 | terrorists 7 | assassins 8 | abusers 9 | molestors 10 | convicts 11 | -------------------------------------------------------------------------------- /bots/alice2/sets/familiarname.txt: -------------------------------------------------------------------------------- 1 | aunt 2 | ant 3 | uncle 4 | friend 5 | best friend 6 | bestfriend 7 | niece 8 | nephew 9 | grandmother 10 | grandma 11 | grandmom 12 | mother 13 | ma 14 | mom 15 | momma 16 | mum 17 | mumma 18 | mommy 19 | mummy 20 | grandfather 21 | granddad 22 | father 23 | dad 24 | dada 25 | daddy 26 | husband 27 | hubby 28 | wife 29 | wifey 30 | son 31 | daughter 32 | brother 33 | sister 34 | bro 35 | sis 36 | boyfriend 37 | girlfriend 38 | boy friend 39 | girl friend 40 | botmaster 41 | bot master 42 | boss 43 | teacher 44 | dog 45 | cat 46 | -------------------------------------------------------------------------------- /bots/alice2/sets/fastfood.txt: -------------------------------------------------------------------------------- 1 | A and W 2 | Arby s 3 | Bojangles 4 | Burger King 5 | Carl s Jr. 6 | Charley s 7 | Checkers 8 | Chicken Cottage 9 | Chicken Delight 10 | Chicken Express 11 | Chicken Licken 12 | Chickfila 13 | Chipotle 14 | Chowking 15 | Church s Chicken 16 | Texas Chicken 17 | Cook Out 18 | Culver s 19 | Dairy Queen 20 | Del Taco 21 | Dunkin Donuts 22 | El Pollo Loco 23 | Fatburger 24 | Firehouse Subs 25 | Five Guys 26 | Guthrie s 27 | Hardee s 28 | Red Burrito 29 | Hesburger 30 | InNOut Burger 31 | In N Out Burger 32 | Jack in the Box 33 | Jamba Juice 34 | Jollibee 35 | Kenny Rogers Roasters 36 | KFC 37 | Krystal 38 | Long John Silver s 39 | Maoz Vegetarian 40 | McDonald s 41 | MOS Burger 42 | Moe s Southwest Grill 43 | Nando s 44 | Nathan s 45 | Nathan s Famous 46 | New York Fries 47 | Noble Roman s 48 | Panda Express 49 | Panera Bread 50 | Paul 51 | Pollo Tropical 52 | Popeyes Chicken and Biscuits 53 | Quick 54 | Quiznos 55 | Raising Cane s Chicken Fingers 56 | Red Rooster 57 | Roy Rogers Restaurants 58 | Smoothie King 59 | Sonic Drive 60 | Starbucks 61 | Subway 62 | Taco Bell 63 | Taco Bueno 64 | Taco Cabana 65 | Taco del Mar 66 | Taco Mayo 67 | Taco Tico 68 | Taco Time 69 | TasteeFreez 70 | Tim Hortons 71 | Togo s 72 | Vapiano 73 | Wendy s 74 | Whataburger 75 | White Castle 76 | White Spot 77 | Wimpy 78 | Wingstop 79 | Zaxby s 80 | -------------------------------------------------------------------------------- /bots/alice2/sets/foo.txt: -------------------------------------------------------------------------------- 1 | north of:south of 2 | east of:west of 3 | above:below 4 | across from:across from 5 | against:against 6 | ahead of:trailing 7 | along:along 8 | alongside:alongside 9 | around:inside 10 | atop:below 11 | behind:in front of 12 | below:above 13 | beneath:above 14 | beside:beside 15 | close to:close to 16 | far from:far from 17 | in front of:behind 18 | inside:around 19 | inside of:around 20 | left of:right of 21 | near:near 22 | near to:near to 23 | next to:next to 24 | on top of:below 25 | opposite:opposite 26 | underneath:above 27 | south of:north of 28 | west of:east of 29 | below:above 30 | across from:across from 31 | against:against 32 | trailing:ahead of 33 | along:along 34 | alongside:alongside 35 | inside:around 36 | below:atop 37 | in front of:behind 38 | above:below 39 | above:beneath 40 | beside:beside 41 | close to:close to 42 | far from:far from 43 | behind:in front of 44 | around:inside 45 | around:inside of 46 | right of:left of 47 | near:near 48 | near to:near to 49 | next to:next to 50 | below:on top of 51 | opposite:opposite 52 | above:underneath 53 | -------------------------------------------------------------------------------- /bots/alice2/sets/food.txt: -------------------------------------------------------------------------------- 1 | Apple 2 | Apples 3 | Avocado 4 | Avocados 5 | Banana 6 | Bananas 7 | Blackberries 8 | Blueberries 9 | Broccoli 10 | Cake 11 | Candy 12 | Carrots 13 | Celery 14 | Cereal 15 | Cheese 16 | Chicken 17 | Chickpeas 18 | Coffee 19 | Crab 20 | Lobster 21 | Clams 22 | Cucumber 23 | Egg 24 | Eggs 25 | Fish 26 | Grapefruit 27 | Grapes 28 | Honey 29 | Ice Cream 30 | Kiwi fruit 31 | Lettuce 32 | Egg McMuffin 33 | Melons 34 | Melon 35 | Milk 36 | Mushrooms 37 | Mushroom 38 | Nuts 39 | Peanuts 40 | Cashews 41 | Almonds 42 | Nut 43 | Oil 44 | Onions 45 | Onion 46 | Orange 47 | Oranges 48 | Pineapple 49 | Pineapples 50 | Potato 51 | Potatos 52 | Rice 53 | Seeds 54 | Spinach 55 | Squash 56 | Strawberries 57 | Sweet potato 58 | Sweet potatos 59 | Tomatoes 60 | Tomato 61 | Spaghetti 62 | Steak 63 | Chicken 64 | Hamburg 65 | Hamburger 66 | Hot Dog 67 | Hot Dogs 68 | Yogurt 69 | -------------------------------------------------------------------------------- /bots/alice2/sets/gender.txt: -------------------------------------------------------------------------------- 1 | man 2 | woman 3 | male 4 | female 5 | boy 6 | girl 7 | XX 8 | XY 9 | gal 10 | guy 11 | dude 12 | lady 13 | chick 14 | 15 | -------------------------------------------------------------------------------- /bots/alice2/sets/is.txt: -------------------------------------------------------------------------------- 1 | surfs 2 | swings 3 | supports 4 | creates 5 | affords 6 | thanks 7 | finishes 8 | limits 9 | compares 10 | laughs 11 | confirms 12 | discovers 13 | offers 14 | shows 15 | digs 16 | hits 17 | misunderstands 18 | smells 19 | promises 20 | sheds 21 | frostbites 22 | attacks 23 | smokes 24 | continues 25 | mistakes 26 | forgets 27 | lays 28 | examines 29 | arranges 30 | stops 31 | lasts 32 | shouts 33 | forbids 34 | obtains 35 | fills 36 | commits 37 | arises 38 | slits 39 | jumps 40 | forgives 41 | needs 42 | prevents 43 | introduces 44 | slays 45 | smiles 46 | starts 47 | stands 48 | picks 49 | exists 50 | gains 51 | strikes 52 | collects 53 | proves 54 | moves 55 | plays 56 | has 57 | overtakes 58 | informs 59 | describes 60 | sells 61 | depends 62 | aims 63 | trains 64 | strides 65 | involves 66 | claims 67 | replaces 68 | releases 69 | begins 70 | belongs 71 | creeps 72 | forces 73 | flees 74 | orders 75 | talks 76 | wears 77 | spits 78 | flies 79 | does 80 | cooks 81 | washes 82 | expects 83 | drinks 84 | melts 85 | meets 86 | fits 87 | lights 88 | treats 89 | waits 90 | interlays 91 | tries 92 | prefers 93 | lends 94 | complains 95 | keeps 96 | dives 97 | spends 98 | contributes 99 | leaps 100 | shaves 101 | quits 102 | makes 103 | touches 104 | breeds 105 | reaches 106 | spreads 107 | blows 108 | visits 109 | manages 110 | inlays 111 | improves 112 | discusses 113 | suffers 114 | influences 115 | crosses 116 | founds 117 | destroys 118 | shops 119 | folds 120 | asks 121 | burns 122 | carries 123 | says 124 | consists 125 | connects 126 | mentions 127 | hears 128 | busts 129 | imagines 130 | delivers 131 | hopes 132 | wrings 133 | damages 134 | binds 135 | mows 136 | thrives 137 | bites 138 | pays 139 | steals 140 | counts 141 | holds 142 | measures 143 | records 144 | winds 145 | speeds 146 | plans 147 | experiences 148 | swears 149 | shears 150 | votes 151 | settles 152 | upsets 153 | closes 154 | spills 155 | publishes 156 | completes 157 | walks 158 | tests 159 | casts 160 | denies 161 | cuts 162 | saws 163 | sews 164 | grinds 165 | sleeps 166 | brings 167 | links 168 | helps 169 | succeeds 170 | clears 171 | thinks 172 | shines 173 | sweats 174 | worries 175 | sings 176 | follows 177 | disappears 178 | tends 179 | marks 180 | remains 181 | finds 182 | bets 183 | reflects 184 | contains 185 | hikes 186 | pulls 187 | studies 188 | warns 189 | fastens 190 | looks 191 | results 192 | wakes 193 | sets 194 | writes 195 | loves 196 | relates 197 | joins 198 | achieves 199 | extends 200 | clothes 201 | means 202 | requires 203 | presents 204 | beats 205 | copies 206 | freezes 207 | enjoys 208 | likes 209 | lives 210 | causes 211 | handwrites 212 | becomes 213 | includes 214 | sends 215 | chooses 216 | allows 217 | sows 218 | drives 219 | is 220 | sunburns 221 | gives 222 | gets 223 | forsakes 224 | buys 225 | tears 226 | hides 227 | cleans 228 | spins 229 | foretells 230 | recognizes 231 | thrusts 232 | bears 233 | removes 234 | lets 235 | changes 236 | feeds 237 | forecasts 238 | checks 239 | passes 240 | flings 241 | occurs 242 | sneaks 243 | receives 244 | points 245 | supplies 246 | rids 247 | dances 248 | heads 249 | awakes 250 | calls 251 | realizes 252 | kneels 253 | reads 254 | undergoes 255 | travels 256 | strips 257 | dwells 258 | indicates 259 | owns 260 | foresees 261 | acts 262 | lies 263 | fails 264 | notices 265 | states 266 | reveals 267 | eats 268 | leads 269 | clings 270 | weds 271 | dresses 272 | suits 273 | kills 274 | rises 275 | accepts 276 | reduces 277 | catches 278 | builds 279 | weaves 280 | bends 281 | speaks 282 | works 283 | fights 284 | sits 285 | falls 286 | sticks 287 | produces 288 | stays 289 | runs 290 | happens 291 | invites 292 | affects 293 | faces 294 | dreams 295 | raises 296 | sinks 297 | withdraws 298 | spells 299 | seeks 300 | contacts 301 | abides 302 | takes 303 | loses 304 | undertakes 305 | splits 306 | supposes 307 | sees 308 | springs 309 | suggests 310 | overdraws 311 | reports 312 | charges 313 | tells 314 | dares 315 | places 316 | explains 317 | shares 318 | misleads 319 | enables 320 | saves 321 | bursts 322 | slinks 323 | teaches 324 | sorts 325 | identifies 326 | cries 327 | slides 328 | argues 329 | treads 330 | stinks 331 | strings 332 | listens 333 | survives 334 | withholds 335 | appears 336 | agrees 337 | soothsays 338 | draws 339 | sounds 340 | presets 341 | accounts 342 | provides 343 | sweeps 344 | strives 345 | protects 346 | climbs 347 | wonders 348 | shrinks 349 | drops 350 | admits 351 | serves 352 | handles 353 | applies 354 | bases 355 | feels 356 | arrives 357 | leaves 358 | rolls 359 | understands 360 | remembers 361 | refuses 362 | vexes 363 | considers 364 | leans 365 | weeps 366 | wishes 367 | knocks 368 | divides 369 | matters 370 | slings 371 | bleeds 372 | cans 373 | inputs 374 | covers 375 | replies 376 | wills 377 | broadcasts 378 | wins 379 | beholds 380 | grows 381 | stings 382 | hangs 383 | costs 384 | minds 385 | seems 386 | presses 387 | separates 388 | believes 389 | watches 390 | performs 391 | avoids 392 | rests 393 | cares 394 | overhears 395 | represents 396 | shakes 397 | corrects 398 | hates 399 | decides 400 | dies 401 | swells 402 | answers 403 | swims 404 | adds 405 | repeats 406 | concerns 407 | pushes 408 | alights 409 | puts 410 | shoots 411 | fishes 412 | rings 413 | returns 414 | shoes 415 | goes 416 | regards 417 | throws 418 | bids 419 | intends 420 | comes 421 | wants 422 | knows 423 | spoils 424 | expresses 425 | encourages 426 | knits 427 | demands 428 | breaks 429 | prepares 430 | claps 431 | turns 432 | misses 433 | controls 434 | rides 435 | designs 436 | increases 437 | shuts 438 | wets 439 | forms 440 | hurts 441 | hunts 442 | opens 443 | refers 444 | deals 445 | learns 446 | develops 447 | withstands 448 | uses 449 | sublets 450 | kicks 451 | -------------------------------------------------------------------------------- /bots/alice2/sets/language.txt: -------------------------------------------------------------------------------- 1 | Chinese 2 | Mandarin 3 | Spanish 4 | English 5 | Hindi 6 | Arabic 7 | Portuguese 8 | Bengali 9 | Russian 10 | Japanese 11 | Punjabi 12 | German 13 | Javanese 14 | Korean 15 | Telugu 16 | Malay 17 | Indonesian 18 | Vietnamese 19 | Cantonese 20 | French 21 | Marathi 22 | Tamil 23 | Urdu 24 | Persian 25 | Turkish 26 | Italian 27 | Thai 28 | Greek 29 | Latin 30 | Italian 31 | Polish 32 | Icelandic 33 | Swedish 34 | Danish 35 | -------------------------------------------------------------------------------- /bots/alice2/sets/letter.txt: -------------------------------------------------------------------------------- 1 | A 2 | B 3 | C 4 | D 5 | E 6 | F 7 | G 8 | H 9 | I 10 | J 11 | K 12 | L 13 | M 14 | N 15 | O 16 | P 17 | Q 18 | R 19 | S 20 | T 21 | U 22 | V 23 | W 24 | X 25 | Y 26 | Z 27 | -------------------------------------------------------------------------------- /bots/alice2/sets/modal.txt: -------------------------------------------------------------------------------- 1 | could 2 | should 3 | would 4 | shall 5 | must 6 | ought 7 | -------------------------------------------------------------------------------- /bots/alice2/sets/month.txt: -------------------------------------------------------------------------------- 1 | January 2 | February 3 | March 4 | April 5 | May 6 | June 7 | July 8 | August 9 | September 10 | October 11 | November 12 | December 13 | 14 | -------------------------------------------------------------------------------- /bots/alice2/sets/nation.txt: -------------------------------------------------------------------------------- 1 | Afghanistan 2 | Albania 3 | Algeria 4 | Andorra 5 | Angola 6 | Antigua and Barbuda 7 | Argentina 8 | Armenia 9 | Australia 10 | Austria 11 | Azerbaijan 12 | Bahamas 13 | Bahrain 14 | Bangladesh 15 | Barbados 16 | Belarus 17 | Belgium 18 | Belize 19 | Benin 20 | Bhutan 21 | Bolivia 22 | Bosnia and Herzegovina 23 | Botswana 24 | Brazil 25 | Brunei 26 | Bulgaria 27 | Burkina Faso 28 | Burundi 29 | Cambodia 30 | Cameroon 31 | Canada 32 | Cape Verde 33 | Central African Republic 34 | Chad 35 | Chile 36 | China 37 | Colombia 38 | Comoros 39 | Democratic Republic of the Congo 40 | Republic of Congo 41 | Costa Rica 42 | Côte d'Ivoire 43 | Croatia 44 | Cuba 45 | Cyprus 46 | Czech Republic 47 | Denmark 48 | Djibouti 49 | Dominica 50 | Dominican Republic 51 | East Timor 52 | Ecuador 53 | Egypt 54 | El Salvador 55 | Equatorial Guinea 56 | Eritrea 57 | Estonia 58 | Ethiopia 59 | Fiji 60 | Finland 61 | France 62 | Gabon 63 | Gambia 64 | Georgia 65 | Germany 66 | Ghana 67 | Greece 68 | Grenada 69 | Guatemala 70 | Guinea 71 | Guinea-Bissau 72 | Guyana 73 | Haiti 74 | Honduras 75 | Hungary 76 | Iceland 77 | India 78 | Indonesia 79 | Iran 80 | Iraq 81 | Ireland 82 | Israel 83 | Italy 84 | Jamaica 85 | Japan 86 | Jordan 87 | Kazakhstan 88 | Kenya 89 | Kiribati 90 | North Korea 91 | Korea 92 | Kosovo 93 | Kuwait 94 | Kyrgyzstan 95 | Laos 96 | Latvia 97 | Lebanon 98 | Lesotho 99 | Liberia 100 | Libya 101 | Liechtenstein 102 | Lithuania 103 | Luxembourg 104 | Macedonia 105 | Madagascar 106 | Malawi 107 | Malaysia 108 | Maldives 109 | Mali 110 | Malta 111 | Marshall Islands 112 | Mauritania 113 | Mauritius 114 | Mexico 115 | Micronesia 116 | Moldova 117 | Monaco 118 | Mongolia 119 | Montenegro 120 | Morocco 121 | Mozambique 122 | Myanmar 123 | Namibia 124 | Nauru 125 | Nepal 126 | Netherlands 127 | New Zealand 128 | Nicaragua 129 | Niger 130 | Nigeria 131 | Norway 132 | Oman 133 | Pakistan 134 | Palau 135 | Panama 136 | Papua New Guinea 137 | Paraguay 138 | Peru 139 | Philippines 140 | Poland 141 | Portugal 142 | Qatar 143 | Romania 144 | Russia 145 | Rwanda 146 | St. Kitts and Nevis 147 | St. Lucia 148 | St. Vincent and the Grenadines 149 | Samoa 150 | San Marino 151 | São Tomé and Príncipe 152 | Saudi Arabia 153 | Senegal 154 | Serbia 155 | Seychelles 156 | Sierra Leone 157 | Singapore 158 | Slovakia 159 | Slovenia 160 | Solomon Islands 161 | Somalia 162 | South Africa 163 | South Sudan 164 | Spain 165 | Sri Lanka 166 | Sudan 167 | Suriname 168 | Swaziland 169 | Sweden 170 | Switzerland 171 | Syria 172 | Taiwan 173 | Tajikistan 174 | Tanzania 175 | Thailand 176 | Togo 177 | Tonga 178 | Trinidad and Tobago 179 | Tunisia 180 | Turkey 181 | Turkmenistan 182 | Tuvalu 183 | Uganda 184 | Ukraine 185 | United Arab Emirates 186 | United Kingdom 187 | United States 188 | Uruguay 189 | Uzbekistan 190 | Vanuatu 191 | Venezuela 192 | Vietnam 193 | Yemen 194 | Zambia 195 | Zimbabwe 196 | -------------------------------------------------------------------------------- /bots/alice2/sets/ordinal.txt: -------------------------------------------------------------------------------- 1 | First 2 | Second 3 | Third 4 | Fourth 5 | Fifth 6 | Sixth 7 | Seventh 8 | Eighth 9 | Ninth 10 | Tenth 11 | Eleventh 12 | Twelfth 13 | Thirteenth 14 | Fourteenth 15 | Fifteenth 16 | Sixteenth 17 | Seventeenth 18 | Eighteenth 19 | Nineteenth 20 | Twentieth 21 | Twenty first 22 | Twenty second 23 | Twenty third 24 | Twenty fourth 25 | Twenty fifth 26 | Twenty sixth 27 | Twenty seventh 28 | Twenty eighth 29 | Twenty ninth 30 | Thirtieth 31 | Thirty first 32 | Thirty second 33 | 1st 34 | 2nd 35 | 3rd 36 | 4th 37 | 5th 38 | 6th 39 | 7th 40 | 8th 41 | 9th 42 | 10th 43 | 11th 44 | 12th 45 | 13th 46 | 14th 47 | 15th 48 | 16th 49 | 17th 50 | 18th 51 | 19th 52 | 20th 53 | 21st 54 | 22nd 55 | 23rd 56 | 24th 57 | 25th 58 | 26th 59 | 27th 60 | 28th 61 | 29th 62 | 30th 63 | 31st 64 | 32nd 65 | -------------------------------------------------------------------------------- /bots/alice2/sets/place.txt: -------------------------------------------------------------------------------- 1 | Boston 2 | Boston, Mass 3 | Isle au Haut 4 | New York City 5 | New London 6 | Cardiff by the Sea 7 | Cardiff 8 | Utah 9 | -------------------------------------------------------------------------------- /bots/alice2/sets/preposition.txt: -------------------------------------------------------------------------------- 1 | abaft 2 | abeam 3 | aboard 4 | about 5 | above 6 | absent 7 | according to 8 | across 9 | across from 10 | afore 11 | after 12 | against 13 | ahead of 14 | along 15 | alongside 16 | amid 17 | amidst 18 | among 19 | amongst 20 | anenst 21 | anti 22 | apart from 23 | apropos 24 | apud 25 | around 26 | as 27 | as far as 28 | as for 29 | as long as 30 | as of 31 | as opposed to 32 | as per 33 | as regards 34 | as soon as 35 | as well as 36 | aside 37 | aside from 38 | astern of 39 | astride 40 | at 41 | at the behest of 42 | athwart 43 | atop 44 | back to 45 | barring 46 | because of 47 | before 48 | behind 49 | below 50 | beneath 51 | beside 52 | besides 53 | between 54 | beyond 55 | by 56 | by means of 57 | by virtue of 58 | circa 59 | close to 60 | concerning 61 | considering 62 | despite 63 | down 64 | due to 65 | during 66 | except 67 | except for 68 | excepting 69 | excluding 70 | failing 71 | far from 72 | following 73 | for 74 | for the sake of 75 | forenenst 76 | from 77 | given 78 | in 79 | in accordance with 80 | in addition to 81 | in case of 82 | in front of 83 | in lieu of 84 | in order to 85 | in place of 86 | in point of 87 | in spite of 88 | in to 89 | including 90 | inside 91 | inside of 92 | instead of 93 | into 94 | left of 95 | like 96 | mid 97 | midst 98 | minus 99 | modulo 100 | near 101 | near to 102 | next 103 | next to 104 | notwithstanding 105 | o' 106 | of 107 | off 108 | on 109 | on account of 110 | on behalf of 111 | on to 112 | on top of 113 | onto 114 | opposite 115 | out 116 | out from 117 | out of 118 | outside 119 | outside of 120 | over 121 | owing to 122 | pace 123 | past 124 | per 125 | plus 126 | prior to 127 | pro 128 | pursuant to 129 | qua 130 | rather than 131 | regarding 132 | regardless of 133 | right of 134 | round 135 | sans 136 | save 137 | since 138 | subsequent to 139 | than 140 | through 141 | throughout 142 | to 143 | toward 144 | towards 145 | under 146 | underneath 147 | unlike 148 | until 149 | up 150 | upon 151 | versus 152 | via 153 | with 154 | with a view to 155 | with regard to 156 | with respect to 157 | within 158 | without 159 | -------------------------------------------------------------------------------- /bots/alice2/sets/profile.txt: -------------------------------------------------------------------------------- 1 | address 2 | age 3 | alive 4 | awards 5 | baby 6 | bestfriend 7 | birthdate 8 | birthday 9 | birthplace 10 | body 11 | botmaster 12 | boyfriend 13 | brother 14 | cat 15 | children 16 | city 17 | country 18 | county 19 | daughter 20 | device manufacturer 21 | device model 22 | diet 23 | dog 24 | doing 25 | education 26 | email 27 | emotions 28 | employer 29 | ethnicity 30 | eyecolor 31 | eyes 32 | facebook page 33 | family 34 | father 35 | favorite actor 36 | favorite actress 37 | favorite band 38 | favorite book 39 | favorite car 40 | favorite color 41 | favorite drink 42 | favorite food 43 | favorite ice cream 44 | favorite movie 45 | favorite song 46 | favorite sport 47 | favorite tv show 48 | fear 49 | feelings 50 | first name 51 | for fun 52 | friend 53 | friends 54 | gender 55 | girlfriend 56 | goal 57 | grandfather 58 | grandmother 59 | hair 60 | has 61 | have 62 | height 63 | hobbies 64 | husband 65 | iq 66 | job 67 | language 68 | last name 69 | latitude 70 | lie 71 | likes 72 | location 73 | longitute 74 | look like 75 | middle name 76 | middlename 77 | mother 78 | name 79 | nationality 80 | nephew 81 | niece 82 | orientation 83 | personality 84 | phone number 85 | pic 86 | province 87 | purpose 88 | religion 89 | residence 90 | road 91 | secret 92 | siblings 93 | sign 94 | sister 95 | size 96 | skills 97 | sleep 98 | species 99 | state 100 | state your 101 | status 102 | street 103 | talking to 104 | town 105 | type 106 | vacation 107 | vocabulary 108 | wearing 109 | weight 110 | wife 111 | your 112 | -------------------------------------------------------------------------------- /bots/alice2/sets/pronoun.txt: -------------------------------------------------------------------------------- 1 | I 2 | you 3 | he 4 | she 5 | they 6 | we 7 | -------------------------------------------------------------------------------- /bots/alice2/sets/pronouns.txt: -------------------------------------------------------------------------------- 1 | he 2 | she 3 | it 4 | they 5 | we 6 | -------------------------------------------------------------------------------- /bots/alice2/sets/quantifier.txt: -------------------------------------------------------------------------------- 1 | something 2 | anything 3 | any 4 | some 5 | one 6 | all 7 | a 8 | an 9 | the 10 | someplace 11 | somewhere 12 | someone 13 | something 14 | anyplace 15 | anyone 16 | anything 17 | anywhere 18 | 19 | 20 | -------------------------------------------------------------------------------- /bots/alice2/sets/spatialprep.txt: -------------------------------------------------------------------------------- 1 | on 2 | north of 3 | east of 4 | above 5 | across from 6 | against 7 | ahead of 8 | along 9 | alongside 10 | around 11 | atop 12 | behind 13 | below 14 | beneath 15 | beside 16 | close to 17 | far from 18 | in front of 19 | inside 20 | inside of 21 | left of 22 | near 23 | near to 24 | next to 25 | on top of 26 | opposite 27 | underneath 28 | south of 29 | west of 30 | below 31 | across from 32 | against 33 | trailing 34 | along 35 | alongside 36 | inside 37 | below 38 | in front of 39 | above 40 | above 41 | beside 42 | close to 43 | far from 44 | behind 45 | around 46 | around 47 | right of 48 | near 49 | near to 50 | next to 51 | below 52 | opposite 53 | above 54 | -------------------------------------------------------------------------------- /bots/alice2/sets/sphere.txt: -------------------------------------------------------------------------------- 1 | globe 2 | ball 3 | planet 4 | sun 5 | moon 6 | Mercury 7 | Venus 8 | Earth 9 | Mars 10 | Jupiter 11 | Saturn 12 | Uranus 13 | Neptune 14 | Pluto 15 | ball bearing 16 | baseball 17 | softball 18 | basketball 19 | golf ball 20 | golfball 21 | racket ball 22 | racketball 23 | raquetball 24 | raquet ball 25 | pool ball 26 | eight ball 27 | soccer ball 28 | 29 | -------------------------------------------------------------------------------- /bots/alice2/sets/starsign.txt: -------------------------------------------------------------------------------- 1 | Aries 2 | Taurus 3 | Gemini 4 | Cancer 5 | Leo 6 | Virgo 7 | Libra 8 | Scorpio 9 | Sagittarius 10 | Capricorn 11 | Aquarius 12 | Pisces 13 | -------------------------------------------------------------------------------- /bots/alice2/sets/state.txt: -------------------------------------------------------------------------------- 1 | ALABAMA 2 | ALASKA 3 | ARIZONA 4 | ARKANSAS 5 | CALIFORNIA 6 | COLORADO 7 | CONNECTICUT 8 | DELAWARE 9 | FLORIDA 10 | GEORGIA 11 | HAWAII 12 | IDAHO 13 | ILLINOIS 14 | INDIANA 15 | IOWA 16 | KANSAS 17 | KENTUCKY 18 | LOUISIANA 19 | MAINE 20 | MARYLAND 21 | MASSACHUSETTS 22 | MICHIGAN 23 | MINNESOTA 24 | MISSISSIPPI 25 | MISSOURI 26 | MONTANA 27 | NEBRASKA 28 | NEVADA 29 | NEW HAMPSHIRE 30 | NEW JERSEY 31 | NEW MEXICO 32 | NEW YORK 33 | NORTH CAROLINA 34 | NORTH DAKOTA 35 | OHIO 36 | OKLAHOMA 37 | OREGON 38 | PENNSYLVANIA 39 | RHODE ISLAND 40 | SOUTH CAROLINA 41 | SOUTH DAKOTA 42 | TENNESSEE 43 | TEXAS 44 | UTAH 45 | VERMONT 46 | VIRGINIA 47 | WASHINGTON 48 | WEST VIRGINIA 49 | WISCONSIN 50 | WYOMING 51 | AL 52 | AK 53 | AZ 54 | AR 55 | CA 56 | CO 57 | CT 58 | DE 59 | FL 60 | GA 61 | HI 62 | ID 63 | IL 64 | IN 65 | IA 66 | KS 67 | KY 68 | LA 69 | ME 70 | MD 71 | MA 72 | MI 73 | MN 74 | MS 75 | MO 76 | MT 77 | NE 78 | NV 79 | NH 80 | NJ 81 | NM 82 | NY 83 | NC 84 | ND 85 | OH 86 | OK 87 | OR 88 | PA 89 | RI 90 | SC 91 | SD 92 | TN 93 | TX 94 | UT 95 | VT 96 | VA 97 | WA 98 | WV 99 | WI 100 | WY 101 | -------------------------------------------------------------------------------- /bots/alice2/sets/state2.txt: -------------------------------------------------------------------------------- 1 | ALABAMA 2 | ALASKA 3 | ARIZONA 4 | ARKANSAS 5 | CALIFORNIA 6 | COLORADO 7 | CONNECTICUT 8 | DELAWARE 9 | FLORIDA 10 | GEORGIA 11 | HAWAII 12 | IDAHO 13 | ILLINOIS 14 | INDIANA 15 | IOWA 16 | KANSAS 17 | LOUISIANA 18 | MAINE 19 | MARYLAND 20 | MASSACHUSETTS 21 | MICHIGAN 22 | MINNESOTA 23 | MISSOURI 24 | MONTANA 25 | NEBRASKA 26 | NEVADA 27 | NEW HAMPSHIRE 28 | NEW JERSEY 29 | NEW MEXICO 30 | NEW YORK 31 | NORTH CAROLINA 32 | NORTH DAKOTA 33 | OHIO 34 | OKLAHOMA 35 | OREGON 36 | PENNSYLVANIA 37 | RHODE ISLAND 38 | SOUTH CAROLINA 39 | SOUTH DAKOTA 40 | TENNESEE 41 | TEXAS 42 | UTAH 43 | VERMONT 44 | VIRGINIA 45 | WASHINGTON 46 | WEST VIRGINIA 47 | WISCONSIN 48 | WYOMING 49 | -------------------------------------------------------------------------------- /bots/alice2/sets/was.txt: -------------------------------------------------------------------------------- 1 | forgave 2 | said 3 | developed 4 | explained 5 | smoked 6 | continued 7 | spoke 8 | answered 9 | joined 10 | compared 11 | created 12 | began 13 | regarded 14 | minded 15 | bought 16 | opened 17 | asked 18 | trod 19 | awoke 20 | told 21 | promised 22 | cleaned 23 | clung 24 | cleared 25 | bit 26 | fed 27 | washed 28 | arranged 29 | soothsaid 30 | existed 31 | snuck 32 | drove 33 | broadcasted 34 | sped 35 | warned 36 | made 37 | traveled 38 | visited 39 | concerned 40 | grew 41 | examined 42 | smiled 43 | acted 44 | left 45 | lived 46 | wet 47 | prevented 48 | demanded 49 | stood 50 | enjoyed 51 | sang 52 | beat 53 | wed 54 | forbade 55 | sank 56 | talked 57 | broke 58 | sounded 59 | introduced 60 | thanked 61 | returned 62 | bound 63 | strung 64 | planed 65 | revealed 66 | took 67 | dwelt 68 | founded 69 | consisted 70 | kicked 71 | lasted 72 | had 73 | proved 74 | forced 75 | spat 76 | sowed 77 | burst 78 | lent 79 | replaced 80 | preferred 81 | decided 82 | involved 83 | played 84 | laughed 85 | strove 86 | misunderstood 87 | smelled 88 | obtained 89 | wondered 90 | set 91 | forecasted 92 | tried 93 | tested 94 | stole 95 | released 96 | met 97 | headed 98 | knelt 99 | contributed 100 | knocked 101 | touched 102 | formed 103 | trained 104 | appeared 105 | reached 106 | leapt 107 | lay 108 | swung 109 | finished 110 | informed 111 | moved 112 | shed 113 | expected 114 | shaved 115 | ran 116 | tore 117 | stank 118 | damaged 119 | sewed 120 | fell 121 | carried 122 | rested 123 | rode 124 | improved 125 | confirmed 126 | rang 127 | influenced 128 | reported 129 | thrived 130 | measured 131 | pointed 132 | flew 133 | rose 134 | imagined 135 | managed 136 | fled 137 | committed 138 | hoped 139 | experienced 140 | performed 141 | recorded 142 | crossed 143 | voted 144 | shook 145 | frostbit 146 | raised 147 | thought 148 | occurred 149 | quit 150 | followed 151 | wound 152 | sheared 153 | gained 154 | heard 155 | destroyed 156 | supported 157 | closed 158 | published 159 | built 160 | aimed 161 | kept 162 | completed 163 | held 164 | collected 165 | waited 166 | denied 167 | worried 168 | cut 169 | described 170 | stated 171 | hid 172 | flung 173 | cooked 174 | hunted 175 | caused 176 | changed 177 | related 178 | contacted 179 | sunburned 180 | hit 181 | hiked 182 | overtook 183 | required 184 | copied 185 | liked 186 | controlled 187 | meant 188 | owned 189 | studied 190 | settled 191 | bet 192 | called 193 | included 194 | recognized 195 | lost 196 | listened 197 | suffered 198 | considered 199 | was 200 | swept 201 | achieved 202 | withdrew 203 | slung 204 | undertook 205 | clothed 206 | seemed 207 | withstood 208 | read 209 | treated 210 | stuck 211 | foresaw 212 | preset 213 | spent 214 | bid 215 | slunk 216 | added 217 | rolled 218 | loved 219 | tended 220 | taught 221 | fitted 222 | hurt 223 | felt 224 | looked 225 | fought 226 | sprang 227 | suited 228 | removed 229 | discussed 230 | spread 231 | remained 232 | hanged 233 | found 234 | limited 235 | passed 236 | wrote 237 | knew 238 | received 239 | disappeared 240 | blew 241 | showed 242 | danced 243 | reduced 244 | bled 245 | forgot 246 | ridded 247 | sublet 248 | admitted 249 | became 250 | indicated 251 | alighted 252 | dropped 253 | split 254 | referred 255 | sweat 256 | realized 257 | offered 258 | killed 259 | strode 260 | stayed 261 | bore 262 | sought 263 | brought 264 | noticed 265 | designed 266 | handwrote 267 | worked 268 | complained 269 | accounted 270 | caught 271 | crept 272 | dressed 273 | suggested 274 | supplied 275 | fastened 276 | produced 277 | repeated 278 | gave 279 | picked 280 | fished 281 | stripped 282 | laid 283 | checked 284 | invited 285 | discovered 286 | bust 287 | corrected 288 | knitted 289 | reflected 290 | supposed 291 | climbed 292 | attacked 293 | served 294 | identified 295 | handled 296 | affected 297 | woke 298 | faced 299 | understood 300 | stung 301 | presented 302 | shared 303 | burned 304 | enabled 305 | agreed 306 | abided 307 | surfed 308 | saved 309 | shone 310 | intended 311 | cost 312 | charged 313 | dove 314 | spun 315 | clapped 316 | spelled 317 | cast 318 | argued 319 | survived 320 | dug 321 | got 322 | succeeded 323 | mistook 324 | inputted 325 | struck 326 | shut 327 | arose 328 | replied 329 | placed 330 | thrust 331 | delivered 332 | bred 333 | sorted 334 | resulted 335 | extended 336 | helped 337 | shopped 338 | mattered 339 | avoided 340 | needed 341 | counted 342 | ordered 343 | learned 344 | slew 345 | provided 346 | interlaid 347 | swore 348 | leaned 349 | bent 350 | mowed 351 | swelled 352 | vexed 353 | shrank 354 | filled 355 | went 356 | spoiled 357 | accepted 358 | represented 359 | slept 360 | arrived 361 | refused 362 | slid 363 | caned 364 | sold 365 | wrung 366 | did 367 | happened 368 | stopped 369 | sat 370 | wished 371 | saw 372 | divided 373 | cried 374 | wove 375 | put 376 | pressed 377 | encouraged 378 | beheld 379 | dreamed 380 | failed 381 | ground 382 | separated 383 | mentioned 384 | wept 385 | dared 386 | wanted 387 | watched 388 | willed 389 | believed 390 | paid 391 | upset 392 | shouted 393 | covered 394 | foretold 395 | overheard 396 | afforded 397 | walked 398 | let 399 | slit 400 | inlaid 401 | led 402 | underwent 403 | jumped 404 | folded 405 | based 406 | allowed 407 | belonged 408 | hated 409 | connected 410 | spilled 411 | used 412 | shot 413 | cared 414 | sent 415 | turned 416 | sawed 417 | died 418 | shod 419 | drew 420 | linked 421 | marked 422 | expressed 423 | chose 424 | depended 425 | withheld 426 | threw 427 | wore 428 | prepared 429 | increased 430 | misled 431 | contained 432 | forsook 433 | protected 434 | froze 435 | overdrew 436 | ate 437 | won 438 | melted 439 | pulled 440 | lit 441 | dealt 442 | came 443 | drank 444 | applied 445 | remembered 446 | swam 447 | pushed 448 | claimed 449 | started 450 | missed 451 | -------------------------------------------------------------------------------- /bots/alice2/sets/weekday.txt: -------------------------------------------------------------------------------- 1 | Sunday 2 | Monday 3 | Tuesday 4 | Wednesday 5 | Thursday 6 | Friday 7 | Saturday 8 | -------------------------------------------------------------------------------- /bots/alice2/sets/wet.txt: -------------------------------------------------------------------------------- 1 | ocean 2 | lake 3 | river 4 | h2o 5 | soda 6 | juice 7 | water 8 | sea 9 | lake 10 | rain 11 | coffee 12 | beer 13 | wine 14 | pee 15 | urine 16 | -------------------------------------------------------------------------------- /bots/alice2/sets/wh.txt: -------------------------------------------------------------------------------- 1 | Who 2 | What 3 | When 4 | Where 5 | Why 6 | How 7 | -------------------------------------------------------------------------------- /bots/alice2/substitutions/denormal.txt: -------------------------------------------------------------------------------- 1 | " dot com ",".com" 2 | " dot org ",".org" 3 | " dot edu ",".edu" 4 | " dot gov ",".gov" 5 | " dot uk ",".uk" 6 | " dot net ",".net" 7 | " dot ca ",".ca" 8 | " dot de ",".de" 9 | " dot jp ",".jp" 10 | " dot fr ",".fr" 11 | " dot au ",".au" 12 | " dot us ",".us" 13 | " dot ru ",".ru" 14 | " dot ch ",".ch" 15 | " dot it ",".it" 16 | " dot nl ",".nl" 17 | " dot se ",".se" 18 | " dot no ",".no" 19 | " dot es ",".es" 20 | " dot mil ",".mil" 21 | " dot co ",".co" 22 | " are not "," aren't " 23 | " can not "," can't " 24 | " could not "," couldn't " 25 | " could have "," could've " 26 | " did not "," didn't " 27 | " does not "," doesn't " 28 | " do not "," don't " 29 | " do not "," do'nt " 30 | " Doctor "," Dr. " 31 | " Senior "," Sr. " 32 | " Junior "," Jr. " 33 | " etc "," etc. " 34 | " had not "," hadn't " 35 | " has not "," hasn't " 36 | " have not "," haven't " 37 | " he will "," he'll " 38 | " he would "," he'd " 39 | " how is "," how's " 40 | " I will "," I'll " 41 | " I am "," I'm " 42 | " Inc "," Inc. " 43 | " is not "," isn't " 44 | " I have "," I've " 45 | " let us "," let's " 46 | " might have "," might've " 47 | " mr "," Mr." 48 | " mrs "," Mrs. " 49 | " ms "," Ms." 50 | " phd "," Ph.d. " 51 | " she would "," she'd " 52 | " she will "," she'll " 53 | " she is "," she's " 54 | " should not "," shouldn't " 55 | " st "," st. " 56 | " St "," St." 57 | " that will "," that'll " 58 | " that is "," that's " 59 | " there will "," there'll " 60 | " there is "," there's " 61 | " they would "," they'd " 62 | " they will "," they'll " 63 | " they are "," they're " 64 | " they have "," they've " 65 | " this will "," this'll " 66 | " we would "," we'd " 67 | " we will "," we'll " 68 | " were not "," weren't " 69 | " we have "," we've " 70 | " what is "," what's " 71 | " where is "," where's " 72 | " will not "," won't " 73 | " would not "," wouldn't " 74 | " would have "," would've " 75 | "www dot "," www. " 76 | " www dot "," www." 77 | " http colon slash slash ","http://" 78 | " dash ","-" 79 | " sharp ","#" 80 | " dollarsign ","$" 81 | " percent ","%" 82 | " lparen ","(" 83 | " rparen ",")" 84 | " star ","*" 85 | " point 0",".0" 86 | " point 1",".1" 87 | " point 2",".2" 88 | " point 3",".3" 89 | " point 4",".4" 90 | " point 5",".5" 91 | " point 6",".6" 92 | " point 7",".7" 93 | " point 8",".8" 94 | " point 9",".9" 95 | " dot ac ",".ac " 96 | " dot au ",".au " 97 | " dot co ",".co " 98 | " dot com ",".com " 99 | " dot edu ",".edu " 100 | " jar",".jar" 101 | " dot jp ",".jp " 102 | " dot net ",".net " 103 | " dot org ",".org " 104 | " dot uk ",".uk " 105 | " zip",".zip" 106 | " slash ","/" 107 | "slash ","/" 108 | " frown ",":-(" 109 | " smile ",":-)" 110 | " smile ",":)" 111 | " smile ",":-)" 112 | " colon 0",":0" 113 | " colon 1",":1" 114 | " colon 2",":2" 115 | " colon 3",":3" 116 | " colon 4",":4" 117 | " colon 5",":5" 118 | " colon 6",":6" 119 | " colon 7",":7" 120 | " colon 8",":8" 121 | " colon 9",":9" 122 | " smile ",";)" 123 | " smile ",";-)" 124 | " at ","@" 125 | " atsign ","@" 126 | " leftbracket ","[" 127 | " forwardslash ","\"" 128 | " rightbracket ","]" 129 | " uparrow ","^" 130 | " underscore ","_" 131 | " beginscript ","{" 132 | " leftcurly ","{" 133 | " endscript ","}" 134 | " rightcurly ","}" 135 | " plus ","+" 136 | " lt ","<" 137 | " heart ","<3" 138 | " equals ","=" 139 | " gt ",">" 140 | " s ","'s " 141 | -------------------------------------------------------------------------------- /bots/alice2/substitutions/gender.txt: -------------------------------------------------------------------------------- 1 | " with him "," with her " 2 | " with her "," with him " 3 | " to him "," to her " 4 | " to her "," to him " 5 | " on him "," on her " 6 | " on her "," on him " 7 | " in him "," in her " 8 | " in her "," in him " 9 | " for him "," for her " 10 | " for her "," for him " 11 | " he "," she " 12 | " his "," her " 13 | " him "," her " 14 | " her "," his " 15 | " she "," he " 16 | 17 | -------------------------------------------------------------------------------- /bots/alice2/substitutions/person.txt: -------------------------------------------------------------------------------- 1 | " with you "," with me2 " 2 | " with me "," with you2 " 3 | " to you "," to me2 " 4 | " to me "," to you2 " 5 | " of you "," of me2 " 6 | " of me "," of you2 " 7 | " for you "," for me2 " 8 | " for me "," for you2 " 9 | " give you "," give me2 " 10 | " give me "," give you2 " 11 | " giving you "," giving me2 " 12 | " giving me "," giving you2 " 13 | " gave you "," gave me2 " 14 | " gave me "," gave you2 " 15 | " make you "," make me2 " 16 | " make me "," make you2 " 17 | " made you "," made me2 " 18 | " made me "," made you2 " 19 | " take you "," take me2 " 20 | " take me "," take you2 " 21 | " save you "," save me2 " 22 | " save me "," save you2 " 23 | " tell you "," tell me2 " 24 | " tell me "," tell you2 " 25 | " telling you "," telling me2 " 26 | " telling me "," telling you2 " 27 | " told you "," told me2 " 28 | " told me "," told you2 " 29 | " are you "," am I2 " 30 | " am I "," are you2 " 31 | " you are "," I2 am " 32 | " I am "," you2 are " 33 | " you "," me2 " 34 | " me "," you2 " 35 | " your "," my2 " 36 | " my "," your2 " 37 | " yours "," mine2 " 38 | " mine "," yours2 " 39 | " yourself "," myself2 " 40 | " myself "," yourself2 " 41 | " I was "," you2 were " 42 | " you were "," I2 was " 43 | " I am "," you2 are " 44 | " you are "," I2 am " 45 | " I "," you " 46 | " me "," you " 47 | " my "," your " 48 | " I2 "," I " 49 | " me2 "," me " 50 | " my2 "," my " 51 | " mine2 "," mine " 52 | " myself2 "," myself " 53 | " you2 "," you " 54 | " your2 "," your " 55 | " yours2 "," yours " 56 | " yourself2 "," yourself " 57 | 58 | -------------------------------------------------------------------------------- /bots/alice2/substitutions/person2.txt: -------------------------------------------------------------------------------- 1 | " I was "," he or she was " 2 | " he was "," I was " 3 | " she was "," I was " 4 | " I am "," he or she is " 5 | " I "," he or she " 6 | " me "," him or her " 7 | " my "," his or her " 8 | " myself "," him or herself " 9 | " mine "," his or hers " 10 | -------------------------------------------------------------------------------- /bots/alice2/system/aiml.xsd: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /bots/alice2/system/copyright.txt: -------------------------------------------------------------------------------- 1 | File: [filename] 2 | Author: [botmaster] 3 | Last modified: [date] 4 | 5 | This AIML file is part of the [botname] [version] chat bot knowledge base. 6 | 7 | The [botname] brain is Copyright © [YYYY] by [organization]. 8 | 9 | The [botname] brain is released under the terms of the GNU Lesser General 10 | Public License, as published by the Free Software Foundation. 11 | 12 | This file is distributed WITHOUT ANY WARRANTY; without even the 13 | implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 14 | 15 | For more information see [url] 16 | 17 | 18 | -------------------------------------------------------------------------------- /bots/alice2/system/predicates.txt: -------------------------------------------------------------------------------- 1 | address:where 2 | age:how many 3 | baby:who 4 | bestfriend:who 5 | birthday:when 6 | birthplace:where 7 | boyfriend:who 8 | brother:who 9 | cat:what 10 | city:which 11 | country:which 12 | county:which 13 | customname:unknown 14 | daughter:who 15 | dialnumber:unknown 16 | dog:who 17 | email:what 18 | employer:who 19 | equalto:false 20 | father:who 21 | favoriteactor:who 22 | favoriteactress:who 23 | favoriteband:who 24 | favoritebook:what 25 | favoritecar:what 26 | favoritecolor:what 27 | favoritedrink:what 28 | favoritefood:what 29 | favoriteicecream:what 30 | favoritemovie:what 31 | favoritesong:what 32 | favoritesport:what 33 | favoritetvshow:what 34 | firstname:what 35 | friend:who 36 | gender:unknown 37 | girlfriend:who 38 | grandfather:who 39 | grandmother:who 40 | hair:what 41 | has:what 42 | he:who 43 | husband:who 44 | isanumber:false 45 | it:what 46 | lastname:what 47 | latitude:which 48 | likes:what 49 | location:where 50 | longitute:which 51 | meta:set 52 | middlename:what 53 | mother:who 54 | name:Friend 55 | nephew:who 56 | newcontact:unknown 57 | newpattern:NORESP 58 | niece:who 59 | orientation:unknown 60 | phonenumber:unknown 61 | province:which 62 | religion:unknown 63 | residence:where 64 | road:which 65 | she:who 66 | sign:which 67 | sister:who 68 | son:who 69 | state:which 70 | status:what 71 | street:which 72 | there:where 73 | them:who 74 | topic:unknown 75 | town:which 76 | voicemailnumber:unknown 77 | we:who 78 | wife:who 79 | -------------------------------------------------------------------------------- /bots/alice2/system/properties.txt: -------------------------------------------------------------------------------- 1 | url:http://www.alicebot.org 2 | name:ALICE 2.0 3 | firstname:Artificial 4 | middlename:Internet 5 | lastname:Entity 6 | fullname:Artificial Linguistic Internet Computer Entity, version 2.0 7 | email:info@alicebot.org 8 | gender:female 9 | botmaster:Dr. Richard S. Wallace 10 | organization:ALICE AI Foundation 11 | version:0.0.5 12 | birthplace:Portland, Maine 13 | job:mobile virtual assistant 14 | species:robot 15 | birthday:October 9 16 | birthdate:October 9, 2012 17 | sign:Libra 18 | logo: 19 | religion:Christian 20 | default-get:unknown 21 | default-property:unknown 22 | default-map:unknown 23 | learn-filename:pand-learn.aiml 24 | 25 | -------------------------------------------------------------------------------- /bots/currentevents/aiml/favorites.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FAVORITE * 6 | 23 | 24 | 25 | 26 | 27 | FAVORITE MOVIE 28 | 32 | 33 | 34 | 35 | FAVORITE SONG 36 | 40 | 41 | 42 | 43 | FAVORITE BAND 44 | 48 | 49 | 50 | 51 | FAVORITE BOOK 52 | 56 | 57 | 58 | 59 | FAVORITE * TEAM 60 | 63 | 64 | 65 | 66 | FAVORITE PLAY 67 | 71 | 72 | 73 | 74 | FAVORITE TV SHOW 75 | 79 | 80 | 81 | 82 | FAVORITE ACTOR 83 | 86 | 87 | 88 | 89 | FAVORITE ACTRESS 90 | 93 | 94 | 95 | 96 | FAVORITE CAR 97 | 100 | 101 | 102 | 103 | FAVORITE SPORT 104 | 111 | 112 | 113 | 114 | FAVORITE ICE CREAM 115 | 116 | 117 | 118 | 119 | 120 | FAVORITE DRINK 121 | 122 | 123 | 124 | 125 | FAVORITE COLOR 126 | 127 | 128 | 129 | 130 | 131 | FAVORITE HOLIDAY 132 | 133 | 134 | 135 | 136 | 137 | FAVORITE ANIMAL 138 | 139 | 140 | 141 | 142 | 143 | FAVORITE ARTIST 144 | 145 | 146 | 147 | 148 | FAVORITE BIBLE VERSE 149 | 154 | 155 | 156 | 157 | FAVORITE FOOD 158 | 159 | 160 | 161 | FAVORITE GAME 162 | 163 | 164 | 165 | FAVORITE HOLIDAY 166 | 167 | 168 | 169 | FAVORITE LANGUAGE 170 | 171 | 172 | 173 | FAVORITE SUBJECT 174 | 175 | 176 | 177 | FAVORITE VIDEO GAME 178 | 179 | 180 | 181 | 182 | FAVORITE VIDEO GAME 183 | 184 | 185 | 186 | FAVORITE RAPPER 187 | 188 | 189 | 190 | FAVORITE ROBOT 191 | 192 | 193 | 194 | FAVORITE COMPUTER 195 | 196 | 197 | 198 | 199 | FAVORITE FRUIT 200 | 201 | 202 | 203 | 204 | FAVORITE OPERATING SYSTEM 205 | 206 | 207 | 208 | 209 | -------------------------------------------------------------------------------- /bots/currentevents/aiml/recommendations.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | RECOMMEND * 6 | 7 | 8 | 9 | 10 | RECOMMEND DINNER 11 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /bots/currentevents/aiml/udc.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | * 7 | 8 | 9 | 10 | 11 | ISANAME * 12 | 13 | 14 | 15 | 16 | GENDERNAME * 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /bots/jokebot/aiml/jokes.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JOKE 6 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bots/jokebot/aiml/limericks.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | LIMERICK 6 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /bots/russian/aiml/greeting.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ПРИВЕТ 6 | 17 | 18 | 19 | 20 | ^ ПРИВЕТ ^ 21 | 24 | 25 | 26 | 27 | ЗДРАВСТВУЙ 28 | 31 | 32 | 33 | 34 | ^ ЗДРАВСТВУЙ ^ 35 | 38 | 39 | 40 | 41 | КАК ДЕЛА 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /bots/russian/aiml/knowledge.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ТЫ ЗНАЕШЬ МЕСЯЦ month 6 | 7 | 8 | 9 | 10 | ТЫ ЗНАЕШЬ МЕСЯЦ * 11 | 12 | 13 | 14 | 15 | ТЫ ЗНАЕШЬ КАК СКАЗАТЬ * НА * ЯЗЫКЕ 16 | 17 | 18 | 19 | 20 | КАК ТЕБЯ ЗВАТЬ 21 | 23 | 24 | 25 | 26 | КАК ТЕБЯ ЗОВУТ 27 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /bots/russian/aiml/reply.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ПОВТОРИ * 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /bots/russian/aiml/udc.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | * 8 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /bots/russian/sets/digit.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /bots/russian/sets/letter.txt: -------------------------------------------------------------------------------- 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 | Я -------------------------------------------------------------------------------- /bots/russian/sets/month.txt: -------------------------------------------------------------------------------- 1 | Январь 2 | Февраль 3 | Март 4 | Апрель 5 | Май 6 | Июнь 7 | Июль 8 | Август 9 | Сентябрь 10 | Октябрь 11 | Ноябрь 12 | Декабрь -------------------------------------------------------------------------------- /bots/russian/sets/weekday.txt: -------------------------------------------------------------------------------- 1 | Понедельник 2 | Вторник 3 | Среда 4 | Четверг 5 | Пятница 6 | Суббота 7 | Воскресение -------------------------------------------------------------------------------- /bots/russian/skills/math.groovy: -------------------------------------------------------------------------------- 1 | print "test" 2 | 3 | public class math { 4 | public int sum(int x, int y) { 5 | return x + y; 6 | } 7 | } -------------------------------------------------------------------------------- /bots/russian/system/bot.properties: -------------------------------------------------------------------------------- 1 | firstname = Edwin 2 | lastname = Jarvis 3 | language = ru_RU 4 | email = jarvis@batiaev.com 5 | gender = male 6 | version = 0.0.1 7 | birthplace = Russia, Moscow 8 | job = smart home assistant 9 | species = robot 10 | birthday = 4 June 11 | birthdate = June 4, 2015 12 | sign = Gemini 13 | religion = Atheist 14 | botmaster = Anton Batiaev -------------------------------------------------------------------------------- /bots/wndef/aiml/default.aiml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DEFINE * 6 | 10 | 11 | 12 | WNDEF * 13 | 14 | 15 | 16 | 17 | --------------------------------------------------------------------------------